Version Description
Visit the Github release page.
Download this release
Release Info
Developer | nikeo |
Plugin | Nimble Page Builder |
Version | 3.2.8 |
Comparing to | |
See all releases |
Code changes from version 3.2.7 to 3.2.8
- assets/front/css/modules/accordion-module.css +140 -140
- assets/front/css/modules/advanced-list-module.css +112 -112
- assets/front/css/modules/button-module.css +44 -44
- assets/front/css/modules/gallery-module.css +80 -80
- assets/front/css/modules/heading-module.css +11 -11
- assets/front/css/modules/icon-module.css +47 -47
- assets/front/css/modules/image-module.css +77 -77
- assets/front/css/modules/img-slider-module-with-swiper.css +249 -249
- assets/front/css/modules/img-slider-module.css +249 -249
- assets/front/css/modules/menu-module.css +630 -630
- assets/front/css/modules/post-grid-module.css +416 -416
- assets/front/css/modules/quote-module.css +112 -112
- assets/front/css/modules/simple-form-module.css +95 -95
- assets/front/css/modules/social-icons-module.css +31 -31
- assets/front/css/modules/special-image-module.css +125 -125
- assets/front/css/sek-base-light-rtl.css +1141 -1141
- assets/front/css/sek-base-light-rtl.css.map +37 -37
- assets/front/css/sek-base-light.css +1141 -1141
- assets/front/css/sek-base-light.css.map +36 -36
- assets/front/css/sek-base-rtl.css +3352 -3352
- assets/front/css/sek-base.css +3352 -3352
- assets/front/css/sek-wp-comments.css +276 -276
- assets/front/fonts/webfonts/fa-brands-400.svg +0 -1984
assets/front/css/modules/accordion-module.css
CHANGED
@@ -1,142 +1,142 @@
|
|
1 |
/*************************************
|
2 |
* ACCORDION MODULE
|
3 |
-
*************************************/
|
4 |
-
.sek-accord-wrapper {
|
5 |
-
text-align: left;
|
6 |
-
}
|
7 |
-
|
8 |
-
.sek-accord-wrapper .sek-accord-item {
|
9 |
-
border: 1px solid #e3e3e3;
|
10 |
-
overflow: hidden;
|
11 |
-
}
|
12 |
-
|
13 |
-
.sek-accord-wrapper .sek-accord-item:not(:last-child) {
|
14 |
-
margin-bottom: 0px;
|
15 |
-
}
|
16 |
-
|
17 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title {
|
18 |
-
cursor: pointer;
|
19 |
-
color: #565656;
|
20 |
-
background: #ffffff;
|
21 |
-
display: -ms-flexbox;
|
22 |
-
display: flex;
|
23 |
-
-ms-flex-align: center;
|
24 |
-
align-items: center;
|
25 |
-
-ms-flex-pack: justify;
|
26 |
-
justify-content: space-between;
|
27 |
-
padding: 15px 20px;
|
28 |
-
border-top: none;
|
29 |
-
border-right: none;
|
30 |
-
border-left: none;
|
31 |
-
border-bottom: 1px solid #e3e3e3;
|
32 |
-
font-size: 16px;
|
33 |
-
line-height: 1.5em;
|
34 |
-
font-weight: 600;
|
35 |
-
-ms-flex-positive: 1;
|
36 |
-
flex-grow: 1;
|
37 |
-
}
|
38 |
-
|
39 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover * {
|
40 |
-
color: #1e261f;
|
41 |
-
}
|
42 |
-
|
43 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover .expander span {
|
44 |
-
background: #1e261f;
|
45 |
-
}
|
46 |
-
|
47 |
-
[data-sek-expanded="true"] .sek-accord-title * {
|
48 |
-
color: #1e261f;
|
49 |
-
}
|
50 |
-
|
51 |
-
[data-sek-expanded="true"] .sek-accord-title .expander span {
|
52 |
-
background: #1e261f;
|
53 |
-
}
|
54 |
-
|
55 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title {
|
56 |
-
padding-right: 10px;
|
57 |
-
max-width: calc(100% - 30px);
|
58 |
-
}
|
59 |
-
|
60 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title, .sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span {
|
61 |
-
transition: all 0.15s ease-in-out;
|
62 |
-
}
|
63 |
-
|
64 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander {
|
65 |
-
color: #1e261f;
|
66 |
-
width: 30px;
|
67 |
-
height: 30px;
|
68 |
-
padding: 0;
|
69 |
-
margin: 0;
|
70 |
-
outline: none;
|
71 |
-
border: 0;
|
72 |
-
background: none;
|
73 |
-
box-shadow: none;
|
74 |
-
font-size: 1.5em;
|
75 |
-
position: relative;
|
76 |
-
cursor: pointer;
|
77 |
-
}
|
78 |
-
|
79 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span {
|
80 |
-
position: absolute;
|
81 |
-
transition: .3s;
|
82 |
-
background: #565656;
|
83 |
-
border-radius: 2px;
|
84 |
-
}
|
85 |
-
|
86 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:first-of-type {
|
87 |
-
top: 25%;
|
88 |
-
bottom: 25%;
|
89 |
-
width: 10%;
|
90 |
-
left: 45%;
|
91 |
-
}
|
92 |
-
|
93 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:last-of-type {
|
94 |
-
left: 25%;
|
95 |
-
right: 25%;
|
96 |
-
height: 10%;
|
97 |
-
top: 45%;
|
98 |
-
}
|
99 |
-
|
100 |
-
[data-sek-expanded="true"] .expander span:first-of-type, [data-sek-expanded="true"] .expander span:last-of-type {
|
101 |
-
-webkit-transform: rotate(90deg);
|
102 |
-
transform: rotate(90deg);
|
103 |
-
}
|
104 |
-
|
105 |
-
[data-sek-expanded="true"] .expander span:last-of-type {
|
106 |
-
left: 50%;
|
107 |
-
right: 50%;
|
108 |
-
}
|
109 |
-
|
110 |
-
[data-sek-has-global-border="true"][data-sek-has-title-border="true"] [data-sek-expanded="false"] .sek-accord-title {
|
111 |
-
border-bottom: none;
|
112 |
-
}
|
113 |
-
|
114 |
-
[data-sek-has-global-border="true"][data-sek-has-title-border="true"] .sek-accord-item:not(:last-child) {
|
115 |
-
border-bottom: none;
|
116 |
-
}
|
117 |
-
|
118 |
-
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] .sek-accord-title .expander span:first-of-type, .sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] .sek-accord-title .expander span:last-of-type {
|
119 |
-
-webkit-transform: rotate(90deg);
|
120 |
-
transform: rotate(90deg);
|
121 |
-
}
|
122 |
-
|
123 |
-
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] .sek-accord-title .expander span:last-of-type {
|
124 |
-
left: 50%;
|
125 |
-
right: 50%;
|
126 |
-
}
|
127 |
-
|
128 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-content {
|
129 |
-
padding: 15px 20px;
|
130 |
-
background: #f2f2f2;
|
131 |
-
color: #1e261f;
|
132 |
-
font-size: 16px;
|
133 |
-
line-height: 1.5em;
|
134 |
-
}
|
135 |
-
|
136 |
-
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] > .sek-accord-content {
|
137 |
-
display: block;
|
138 |
-
}
|
139 |
-
|
140 |
-
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="false"] > .sek-accord-content {
|
141 |
-
display: none;
|
142 |
-
}
|
1 |
/*************************************
|
2 |
* ACCORDION MODULE
|
3 |
+
*************************************/
|
4 |
+
.sek-accord-wrapper {
|
5 |
+
text-align: left;
|
6 |
+
}
|
7 |
+
|
8 |
+
.sek-accord-wrapper .sek-accord-item {
|
9 |
+
border: 1px solid #e3e3e3;
|
10 |
+
overflow: hidden;
|
11 |
+
}
|
12 |
+
|
13 |
+
.sek-accord-wrapper .sek-accord-item:not(:last-child) {
|
14 |
+
margin-bottom: 0px;
|
15 |
+
}
|
16 |
+
|
17 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title {
|
18 |
+
cursor: pointer;
|
19 |
+
color: #565656;
|
20 |
+
background: #ffffff;
|
21 |
+
display: -ms-flexbox;
|
22 |
+
display: flex;
|
23 |
+
-ms-flex-align: center;
|
24 |
+
align-items: center;
|
25 |
+
-ms-flex-pack: justify;
|
26 |
+
justify-content: space-between;
|
27 |
+
padding: 15px 20px;
|
28 |
+
border-top: none;
|
29 |
+
border-right: none;
|
30 |
+
border-left: none;
|
31 |
+
border-bottom: 1px solid #e3e3e3;
|
32 |
+
font-size: 16px;
|
33 |
+
line-height: 1.5em;
|
34 |
+
font-weight: 600;
|
35 |
+
-ms-flex-positive: 1;
|
36 |
+
flex-grow: 1;
|
37 |
+
}
|
38 |
+
|
39 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover * {
|
40 |
+
color: #1e261f;
|
41 |
+
}
|
42 |
+
|
43 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover .expander span {
|
44 |
+
background: #1e261f;
|
45 |
+
}
|
46 |
+
|
47 |
+
[data-sek-expanded="true"] .sek-accord-title * {
|
48 |
+
color: #1e261f;
|
49 |
+
}
|
50 |
+
|
51 |
+
[data-sek-expanded="true"] .sek-accord-title .expander span {
|
52 |
+
background: #1e261f;
|
53 |
+
}
|
54 |
+
|
55 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title {
|
56 |
+
padding-right: 10px;
|
57 |
+
max-width: calc(100% - 30px);
|
58 |
+
}
|
59 |
+
|
60 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title, .sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span {
|
61 |
+
transition: all 0.15s ease-in-out;
|
62 |
+
}
|
63 |
+
|
64 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander {
|
65 |
+
color: #1e261f;
|
66 |
+
width: 30px;
|
67 |
+
height: 30px;
|
68 |
+
padding: 0;
|
69 |
+
margin: 0;
|
70 |
+
outline: none;
|
71 |
+
border: 0;
|
72 |
+
background: none;
|
73 |
+
box-shadow: none;
|
74 |
+
font-size: 1.5em;
|
75 |
+
position: relative;
|
76 |
+
cursor: pointer;
|
77 |
+
}
|
78 |
+
|
79 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span {
|
80 |
+
position: absolute;
|
81 |
+
transition: .3s;
|
82 |
+
background: #565656;
|
83 |
+
border-radius: 2px;
|
84 |
+
}
|
85 |
+
|
86 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:first-of-type {
|
87 |
+
top: 25%;
|
88 |
+
bottom: 25%;
|
89 |
+
width: 10%;
|
90 |
+
left: 45%;
|
91 |
+
}
|
92 |
+
|
93 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:last-of-type {
|
94 |
+
left: 25%;
|
95 |
+
right: 25%;
|
96 |
+
height: 10%;
|
97 |
+
top: 45%;
|
98 |
+
}
|
99 |
+
|
100 |
+
[data-sek-expanded="true"] .expander span:first-of-type, [data-sek-expanded="true"] .expander span:last-of-type {
|
101 |
+
-webkit-transform: rotate(90deg);
|
102 |
+
transform: rotate(90deg);
|
103 |
+
}
|
104 |
+
|
105 |
+
[data-sek-expanded="true"] .expander span:last-of-type {
|
106 |
+
left: 50%;
|
107 |
+
right: 50%;
|
108 |
+
}
|
109 |
+
|
110 |
+
[data-sek-has-global-border="true"][data-sek-has-title-border="true"] [data-sek-expanded="false"] .sek-accord-title {
|
111 |
+
border-bottom: none;
|
112 |
+
}
|
113 |
+
|
114 |
+
[data-sek-has-global-border="true"][data-sek-has-title-border="true"] .sek-accord-item:not(:last-child) {
|
115 |
+
border-bottom: none;
|
116 |
+
}
|
117 |
+
|
118 |
+
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] .sek-accord-title .expander span:first-of-type, .sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] .sek-accord-title .expander span:last-of-type {
|
119 |
+
-webkit-transform: rotate(90deg);
|
120 |
+
transform: rotate(90deg);
|
121 |
+
}
|
122 |
+
|
123 |
+
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] .sek-accord-title .expander span:last-of-type {
|
124 |
+
left: 50%;
|
125 |
+
right: 50%;
|
126 |
+
}
|
127 |
+
|
128 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-content {
|
129 |
+
padding: 15px 20px;
|
130 |
+
background: #f2f2f2;
|
131 |
+
color: #1e261f;
|
132 |
+
font-size: 16px;
|
133 |
+
line-height: 1.5em;
|
134 |
+
}
|
135 |
+
|
136 |
+
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] > .sek-accord-content {
|
137 |
+
display: block;
|
138 |
+
}
|
139 |
+
|
140 |
+
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="false"] > .sek-accord-content {
|
141 |
+
display: none;
|
142 |
+
}
|
assets/front/css/modules/advanced-list-module.css
CHANGED
@@ -1,112 +1,112 @@
|
|
1 |
-
.sek-module-inner [data-sek-adv-list-type="none"] > ul {
|
2 |
-
list-style-type: none;
|
3 |
-
margin-left: 0 !important;
|
4 |
-
}
|
5 |
-
|
6 |
-
.sek-module-inner [data-sek-adv-list-type="circle"] > ul {
|
7 |
-
list-style-type: circle;
|
8 |
-
}
|
9 |
-
|
10 |
-
.sek-module-inner [data-sek-adv-list-type="disc"] > ul {
|
11 |
-
list-style-type: disc;
|
12 |
-
}
|
13 |
-
|
14 |
-
.sek-module-inner [data-sek-adv-list-type="square"] > ul {
|
15 |
-
list-style-type: square;
|
16 |
-
}
|
17 |
-
|
18 |
-
.sek-module-inner [data-sek-adv-list-type="decimal"] > ol {
|
19 |
-
list-style-type: decimal;
|
20 |
-
}
|
21 |
-
|
22 |
-
.sek-module-inner [data-sek-adv-list-type="lower-alpha"] > ol {
|
23 |
-
list-style-type: lower-alpha;
|
24 |
-
}
|
25 |
-
|
26 |
-
.sek-module-inner [data-sek-adv-list-type="lower-roman"] > ol {
|
27 |
-
list-style-type: lower-roman;
|
28 |
-
}
|
29 |
-
|
30 |
-
.sek-module-inner [data-sek-adv-list-type="upper-roman"] > ol {
|
31 |
-
list-style-type: upper-roman;
|
32 |
-
}
|
33 |
-
|
34 |
-
.sek-module-inner [data-sek-adv-list-type="upper-alpha"] > ol {
|
35 |
-
list-style-type: upper-alpha;
|
36 |
-
}
|
37 |
-
|
38 |
-
.sek-module-inner .sek-adv-list-wrapper ul, .sek-module-inner .sek-adv-list-wrapper ol {
|
39 |
-
padding: 0;
|
40 |
-
line-height: 1.5;
|
41 |
-
margin: 0;
|
42 |
-
margin-left: 25px;
|
43 |
-
}
|
44 |
-
|
45 |
-
.sek-module-inner .sek-adv-list-wrapper ul li, .sek-module-inner .sek-adv-list-wrapper ol li {
|
46 |
-
text-indent: 0px;
|
47 |
-
}
|
48 |
-
|
49 |
-
.sek-module-inner [data-sek-adv-list-layout="vertical"] ul li, .sek-module-inner [data-sek-adv-list-layout="vertical"] ol li {
|
50 |
-
display: list-item;
|
51 |
-
}
|
52 |
-
|
53 |
-
.sek-module-inner [data-sek-adv-list-layout="horizontal"] ul li, .sek-module-inner [data-sek-adv-list-layout="horizontal"] ol li {
|
54 |
-
display: inline-block;
|
55 |
-
}
|
56 |
-
|
57 |
-
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-inner {
|
58 |
-
display: -ms-flexbox;
|
59 |
-
display: flex;
|
60 |
-
}
|
61 |
-
|
62 |
-
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text {
|
63 |
-
-webkit-transition: color 0.2s ease-in-out;
|
64 |
-
-o-transition: color 0.2s ease-in-out;
|
65 |
-
transition: color 0.2s ease-in-out;
|
66 |
-
-webkit-box-align: center;
|
67 |
-
-ms-flex-align: center;
|
68 |
-
align-items: center;
|
69 |
-
display: -webkit-box;
|
70 |
-
display: -ms-flexbox;
|
71 |
-
display: flex;
|
72 |
-
}
|
73 |
-
|
74 |
-
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text p {
|
75 |
-
margin: 0;
|
76 |
-
}
|
77 |
-
|
78 |
-
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text a {
|
79 |
-
cursor: pointer;
|
80 |
-
}
|
81 |
-
|
82 |
-
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text a:hover {
|
83 |
-
text-decoration: underline;
|
84 |
-
}
|
85 |
-
|
86 |
-
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-icon {
|
87 |
-
margin-right: 10px;
|
88 |
-
-ms-flex-negative: 0;
|
89 |
-
flex-shrink: 0;
|
90 |
-
-webkit-box-flex: 0;
|
91 |
-
-ms-flex-positive: 0;
|
92 |
-
flex-grow: 0;
|
93 |
-
}
|
94 |
-
|
95 |
-
.sek-module-inner .sek-adv-list-item [data-sek-icon-border="circle"], .sek-module-inner .sek-adv-list-item [data-sek-icon-border="square"] {
|
96 |
-
border: 1px solid;
|
97 |
-
width: 2.2em;
|
98 |
-
height: 2.2em;
|
99 |
-
display: -ms-flexbox;
|
100 |
-
display: -webkit-box;
|
101 |
-
display: flex;
|
102 |
-
-ms-flex-align: center;
|
103 |
-
-webkit-box-align: center;
|
104 |
-
align-items: center;
|
105 |
-
-webkit-box-pack: center;
|
106 |
-
-ms-flex-pack: center;
|
107 |
-
justify-content: center;
|
108 |
-
}
|
109 |
-
|
110 |
-
.sek-module-inner .sek-adv-list-item [data-sek-icon-border="circle"] {
|
111 |
-
border-radius: 2em;
|
112 |
-
}
|
1 |
+
.sek-module-inner [data-sek-adv-list-type="none"] > ul {
|
2 |
+
list-style-type: none;
|
3 |
+
margin-left: 0 !important;
|
4 |
+
}
|
5 |
+
|
6 |
+
.sek-module-inner [data-sek-adv-list-type="circle"] > ul {
|
7 |
+
list-style-type: circle;
|
8 |
+
}
|
9 |
+
|
10 |
+
.sek-module-inner [data-sek-adv-list-type="disc"] > ul {
|
11 |
+
list-style-type: disc;
|
12 |
+
}
|
13 |
+
|
14 |
+
.sek-module-inner [data-sek-adv-list-type="square"] > ul {
|
15 |
+
list-style-type: square;
|
16 |
+
}
|
17 |
+
|
18 |
+
.sek-module-inner [data-sek-adv-list-type="decimal"] > ol {
|
19 |
+
list-style-type: decimal;
|
20 |
+
}
|
21 |
+
|
22 |
+
.sek-module-inner [data-sek-adv-list-type="lower-alpha"] > ol {
|
23 |
+
list-style-type: lower-alpha;
|
24 |
+
}
|
25 |
+
|
26 |
+
.sek-module-inner [data-sek-adv-list-type="lower-roman"] > ol {
|
27 |
+
list-style-type: lower-roman;
|
28 |
+
}
|
29 |
+
|
30 |
+
.sek-module-inner [data-sek-adv-list-type="upper-roman"] > ol {
|
31 |
+
list-style-type: upper-roman;
|
32 |
+
}
|
33 |
+
|
34 |
+
.sek-module-inner [data-sek-adv-list-type="upper-alpha"] > ol {
|
35 |
+
list-style-type: upper-alpha;
|
36 |
+
}
|
37 |
+
|
38 |
+
.sek-module-inner .sek-adv-list-wrapper ul, .sek-module-inner .sek-adv-list-wrapper ol {
|
39 |
+
padding: 0;
|
40 |
+
line-height: 1.5;
|
41 |
+
margin: 0;
|
42 |
+
margin-left: 25px;
|
43 |
+
}
|
44 |
+
|
45 |
+
.sek-module-inner .sek-adv-list-wrapper ul li, .sek-module-inner .sek-adv-list-wrapper ol li {
|
46 |
+
text-indent: 0px;
|
47 |
+
}
|
48 |
+
|
49 |
+
.sek-module-inner [data-sek-adv-list-layout="vertical"] ul li, .sek-module-inner [data-sek-adv-list-layout="vertical"] ol li {
|
50 |
+
display: list-item;
|
51 |
+
}
|
52 |
+
|
53 |
+
.sek-module-inner [data-sek-adv-list-layout="horizontal"] ul li, .sek-module-inner [data-sek-adv-list-layout="horizontal"] ol li {
|
54 |
+
display: inline-block;
|
55 |
+
}
|
56 |
+
|
57 |
+
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-inner {
|
58 |
+
display: -ms-flexbox;
|
59 |
+
display: flex;
|
60 |
+
}
|
61 |
+
|
62 |
+
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text {
|
63 |
+
-webkit-transition: color 0.2s ease-in-out;
|
64 |
+
-o-transition: color 0.2s ease-in-out;
|
65 |
+
transition: color 0.2s ease-in-out;
|
66 |
+
-webkit-box-align: center;
|
67 |
+
-ms-flex-align: center;
|
68 |
+
align-items: center;
|
69 |
+
display: -webkit-box;
|
70 |
+
display: -ms-flexbox;
|
71 |
+
display: flex;
|
72 |
+
}
|
73 |
+
|
74 |
+
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text p {
|
75 |
+
margin: 0;
|
76 |
+
}
|
77 |
+
|
78 |
+
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text a {
|
79 |
+
cursor: pointer;
|
80 |
+
}
|
81 |
+
|
82 |
+
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text a:hover {
|
83 |
+
text-decoration: underline;
|
84 |
+
}
|
85 |
+
|
86 |
+
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-icon {
|
87 |
+
margin-right: 10px;
|
88 |
+
-ms-flex-negative: 0;
|
89 |
+
flex-shrink: 0;
|
90 |
+
-webkit-box-flex: 0;
|
91 |
+
-ms-flex-positive: 0;
|
92 |
+
flex-grow: 0;
|
93 |
+
}
|
94 |
+
|
95 |
+
.sek-module-inner .sek-adv-list-item [data-sek-icon-border="circle"], .sek-module-inner .sek-adv-list-item [data-sek-icon-border="square"] {
|
96 |
+
border: 1px solid;
|
97 |
+
width: 2.2em;
|
98 |
+
height: 2.2em;
|
99 |
+
display: -ms-flexbox;
|
100 |
+
display: -webkit-box;
|
101 |
+
display: flex;
|
102 |
+
-ms-flex-align: center;
|
103 |
+
-webkit-box-align: center;
|
104 |
+
align-items: center;
|
105 |
+
-webkit-box-pack: center;
|
106 |
+
-ms-flex-pack: center;
|
107 |
+
justify-content: center;
|
108 |
+
}
|
109 |
+
|
110 |
+
.sek-module-inner .sek-adv-list-item [data-sek-icon-border="circle"] {
|
111 |
+
border-radius: 2em;
|
112 |
+
}
|
assets/front/css/modules/button-module.css
CHANGED
@@ -1,46 +1,46 @@
|
|
1 |
/*************************************
|
2 |
* BUTTON MODULE
|
3 |
-
*************************************/
|
4 |
-
[data-sek-module-type="czr_button_module"] .sek-module-inner {
|
5 |
-
text-align: center;
|
6 |
-
}
|
7 |
-
|
8 |
-
.nb-loc .sek-module .sek-module-inner .sek-btn {
|
9 |
-
background: #020202;
|
10 |
-
color: #ffffff;
|
11 |
-
padding: 0.5em 1em;
|
12 |
-
margin: 0.5em;
|
13 |
-
}
|
14 |
-
|
15 |
-
.nb-loc .sek-module .sek-module-inner .sek-btn i {
|
16 |
-
margin: 0 8px;
|
17 |
-
}
|
18 |
-
|
19 |
-
.nb-loc .sek-module .sek-module-inner .sek-btn:hover, .nb-loc .sek-module .sek-module-inner .sek-btn:focus, .nb-loc .sek-module .sek-module-inner .sek-btn:active {
|
20 |
-
color: #ffffff;
|
21 |
-
background-color: #282828;
|
22 |
-
text-decoration: none;
|
23 |
-
}
|
24 |
-
|
25 |
-
[data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:focus, [data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:hover {
|
26 |
-
text-decoration: none;
|
27 |
-
}
|
28 |
-
|
29 |
-
.sek-btn-inner {
|
30 |
-
display: flex;
|
31 |
-
align-items: center;
|
32 |
-
}
|
33 |
-
|
34 |
-
.sek-btn-inner .sek-btn-text {
|
35 |
-
width: 100%;
|
36 |
-
text-align: center;
|
37 |
-
}
|
38 |
-
|
39 |
-
.sek-btn.box-shadow {
|
40 |
-
-webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
41 |
-
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
42 |
-
}
|
43 |
-
|
44 |
-
.sek-btn.box-shadow.push-effect:active {
|
45 |
-
transform: translateY(2px);
|
46 |
-
}
|
1 |
/*************************************
|
2 |
* BUTTON MODULE
|
3 |
+
*************************************/
|
4 |
+
[data-sek-module-type="czr_button_module"] .sek-module-inner {
|
5 |
+
text-align: center;
|
6 |
+
}
|
7 |
+
|
8 |
+
.nb-loc .sek-module .sek-module-inner .sek-btn {
|
9 |
+
background: #020202;
|
10 |
+
color: #ffffff;
|
11 |
+
padding: 0.5em 1em;
|
12 |
+
margin: 0.5em;
|
13 |
+
}
|
14 |
+
|
15 |
+
.nb-loc .sek-module .sek-module-inner .sek-btn i {
|
16 |
+
margin: 0 8px;
|
17 |
+
}
|
18 |
+
|
19 |
+
.nb-loc .sek-module .sek-module-inner .sek-btn:hover, .nb-loc .sek-module .sek-module-inner .sek-btn:focus, .nb-loc .sek-module .sek-module-inner .sek-btn:active {
|
20 |
+
color: #ffffff;
|
21 |
+
background-color: #282828;
|
22 |
+
text-decoration: none;
|
23 |
+
}
|
24 |
+
|
25 |
+
[data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:focus, [data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:hover {
|
26 |
+
text-decoration: none;
|
27 |
+
}
|
28 |
+
|
29 |
+
.sek-btn-inner {
|
30 |
+
display: flex;
|
31 |
+
align-items: center;
|
32 |
+
}
|
33 |
+
|
34 |
+
.sek-btn-inner .sek-btn-text {
|
35 |
+
width: 100%;
|
36 |
+
text-align: center;
|
37 |
+
}
|
38 |
+
|
39 |
+
.sek-btn.box-shadow {
|
40 |
+
-webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
41 |
+
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
42 |
+
}
|
43 |
+
|
44 |
+
.sek-btn.box-shadow.push-effect:active {
|
45 |
+
transform: translateY(2px);
|
46 |
+
}
|
assets/front/css/modules/gallery-module.css
CHANGED
@@ -1,82 +1,82 @@
|
|
1 |
-
.sek-gal-wrapper:not(.nb-auto-column-width) {
|
2 |
-
display: -webkit-box;
|
3 |
-
display: -ms-flexbox;
|
4 |
-
display: flex;
|
5 |
-
-webkit-box-align: center;
|
6 |
-
-ms-flex-align: center;
|
7 |
-
align-items: center;
|
8 |
-
-webkit-box-pack: center;
|
9 |
-
-ms-flex-pack: center;
|
10 |
-
justify-content: center;
|
11 |
-
}
|
12 |
-
|
13 |
-
.sek-gal-wrapper .sek-gal-items {
|
14 |
-
display: -ms-grid;
|
15 |
-
display: grid;
|
16 |
-
-ms-grid-columns: 1fr 20px 1fr;
|
17 |
-
grid-template-columns: 1fr 1fr;
|
18 |
-
-ms-grid-rows: 1fr;
|
19 |
-
grid-template-rows: 1fr;
|
20 |
-
grid-row-gap: 20px;
|
21 |
-
grid-column-gap: 20px;
|
22 |
-
}
|
23 |
-
|
24 |
-
@media all and (-ms-high-contrast: none) {
|
25 |
-
.sek-gal-wrapper .sek-gal-items {
|
26 |
-
display: block !important;
|
27 |
-
}
|
28 |
-
}
|
29 |
-
|
30 |
-
.sek-gal-wrapper .sek-gal-items > *:nth-child(1) {
|
31 |
-
-ms-grid-row: 1;
|
32 |
-
-ms-grid-column: 1;
|
33 |
-
}
|
34 |
-
|
35 |
-
.sek-gal-wrapper .sek-gal-items > *:nth-child(2) {
|
36 |
-
-ms-grid-row: 1;
|
37 |
-
-ms-grid-column: 3;
|
38 |
-
}
|
39 |
-
|
40 |
-
.sek-gal-wrapper .sek-img-gal-item {
|
41 |
-
-webkit-transition: all 0.15s ease-in-out;
|
42 |
-
-moz-transition: all, 0.15s ease-in-out;
|
43 |
-
-ms-transition: all, 0.15s ease-in-out;
|
44 |
-
-o-transition: all, 0.15s ease-in-out;
|
45 |
-
transition: all 0.15s ease-in-out;
|
46 |
-
overflow: hidden;
|
47 |
-
}
|
48 |
-
|
49 |
-
.sek-gal-wrapper .sek-img-gal-item img {
|
50 |
-
height: 100%;
|
51 |
-
width: 100%;
|
52 |
-
object-fit: cover;
|
53 |
-
}
|
54 |
-
|
55 |
-
.sek-gal-wrapper .sek-img-gal-item:hover {
|
56 |
-
opacity: .9;
|
57 |
-
}
|
58 |
-
|
59 |
-
.sek-module-inner .nb-gal-item-box-shadow .sek-gal-items figure {
|
60 |
-
-webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
61 |
-
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
62 |
-
}
|
63 |
-
|
64 |
-
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items.nb-masonry-gal-images-loaded {
|
65 |
-
grid-auto-rows: 5px;
|
66 |
-
}
|
67 |
-
|
68 |
-
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items .sek-img-gal-item img {
|
69 |
-
height: auto;
|
70 |
-
}
|
71 |
-
|
72 |
-
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items.sek-gal-img-natural-height img {
|
73 |
-
height: auto !important;
|
74 |
-
}
|
75 |
-
|
76 |
-
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items.sek-gal-img-height-100-percent img {
|
77 |
-
height: 100%;
|
78 |
-
}
|
79 |
-
|
80 |
/*************************************
|
81 |
* ACCORDION MODULE
|
82 |
-
*************************************/
|
1 |
+
.sek-gal-wrapper:not(.nb-auto-column-width) {
|
2 |
+
display: -webkit-box;
|
3 |
+
display: -ms-flexbox;
|
4 |
+
display: flex;
|
5 |
+
-webkit-box-align: center;
|
6 |
+
-ms-flex-align: center;
|
7 |
+
align-items: center;
|
8 |
+
-webkit-box-pack: center;
|
9 |
+
-ms-flex-pack: center;
|
10 |
+
justify-content: center;
|
11 |
+
}
|
12 |
+
|
13 |
+
.sek-gal-wrapper .sek-gal-items {
|
14 |
+
display: -ms-grid;
|
15 |
+
display: grid;
|
16 |
+
-ms-grid-columns: 1fr 20px 1fr;
|
17 |
+
grid-template-columns: 1fr 1fr;
|
18 |
+
-ms-grid-rows: 1fr;
|
19 |
+
grid-template-rows: 1fr;
|
20 |
+
grid-row-gap: 20px;
|
21 |
+
grid-column-gap: 20px;
|
22 |
+
}
|
23 |
+
|
24 |
+
@media all and (-ms-high-contrast: none) {
|
25 |
+
.sek-gal-wrapper .sek-gal-items {
|
26 |
+
display: block !important;
|
27 |
+
}
|
28 |
+
}
|
29 |
+
|
30 |
+
.sek-gal-wrapper .sek-gal-items > *:nth-child(1) {
|
31 |
+
-ms-grid-row: 1;
|
32 |
+
-ms-grid-column: 1;
|
33 |
+
}
|
34 |
+
|
35 |
+
.sek-gal-wrapper .sek-gal-items > *:nth-child(2) {
|
36 |
+
-ms-grid-row: 1;
|
37 |
+
-ms-grid-column: 3;
|
38 |
+
}
|
39 |
+
|
40 |
+
.sek-gal-wrapper .sek-img-gal-item {
|
41 |
+
-webkit-transition: all 0.15s ease-in-out;
|
42 |
+
-moz-transition: all, 0.15s ease-in-out;
|
43 |
+
-ms-transition: all, 0.15s ease-in-out;
|
44 |
+
-o-transition: all, 0.15s ease-in-out;
|
45 |
+
transition: all 0.15s ease-in-out;
|
46 |
+
overflow: hidden;
|
47 |
+
}
|
48 |
+
|
49 |
+
.sek-gal-wrapper .sek-img-gal-item img {
|
50 |
+
height: 100%;
|
51 |
+
width: 100%;
|
52 |
+
object-fit: cover;
|
53 |
+
}
|
54 |
+
|
55 |
+
.sek-gal-wrapper .sek-img-gal-item:hover {
|
56 |
+
opacity: .9;
|
57 |
+
}
|
58 |
+
|
59 |
+
.sek-module-inner .nb-gal-item-box-shadow .sek-gal-items figure {
|
60 |
+
-webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
61 |
+
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
62 |
+
}
|
63 |
+
|
64 |
+
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items.nb-masonry-gal-images-loaded {
|
65 |
+
grid-auto-rows: 5px;
|
66 |
+
}
|
67 |
+
|
68 |
+
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items .sek-img-gal-item img {
|
69 |
+
height: auto;
|
70 |
+
}
|
71 |
+
|
72 |
+
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items.sek-gal-img-natural-height img {
|
73 |
+
height: auto !important;
|
74 |
+
}
|
75 |
+
|
76 |
+
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items.sek-gal-img-height-100-percent img {
|
77 |
+
height: 100%;
|
78 |
+
}
|
79 |
+
|
80 |
/*************************************
|
81 |
* ACCORDION MODULE
|
82 |
+
*************************************/
|
assets/front/css/modules/heading-module.css
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
/*************************************
|
2 |
* HEADING MODULE
|
3 |
-
*************************************/
|
4 |
-
.sek-module-inner .sek-heading {
|
5 |
-
text-align: center;
|
6 |
-
margin: 0.6em 0;
|
7 |
-
display: block;
|
8 |
-
}
|
9 |
-
|
10 |
-
.sek-module-inner .sek-heading > a {
|
11 |
-
color: inherit;
|
12 |
-
font-size: inherit;
|
13 |
-
}
|
1 |
/*************************************
|
2 |
* HEADING MODULE
|
3 |
+
*************************************/
|
4 |
+
.sek-module-inner .sek-heading {
|
5 |
+
text-align: center;
|
6 |
+
margin: 0.6em 0;
|
7 |
+
display: block;
|
8 |
+
}
|
9 |
+
|
10 |
+
.sek-module-inner .sek-heading > a {
|
11 |
+
color: inherit;
|
12 |
+
font-size: inherit;
|
13 |
+
}
|
assets/front/css/modules/icon-module.css
CHANGED
@@ -1,49 +1,49 @@
|
|
1 |
/*************************************
|
2 |
* ICON MODULE
|
3 |
-
*************************************/
|
4 |
-
[data-sek-module-type="czr_icon_module"] {
|
5 |
-
text-align: center;
|
6 |
-
color: #5a5a5a;
|
7 |
-
font-size: 15px;
|
8 |
-
}
|
9 |
-
|
10 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon,
|
11 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon:hover,
|
12 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon:focus,
|
13 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon:active,
|
14 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon.active {
|
15 |
-
color: inherit;
|
16 |
-
}
|
17 |
-
|
18 |
-
[data-sek-module-type="czr_icon_module"] .box-shadow .sek-icon-wrapper {
|
19 |
-
-webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
20 |
-
-moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
21 |
-
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0;
|
22 |
-
}
|
23 |
-
|
24 |
-
[data-sek-module-type="czr_icon_module"] .sek-icon i {
|
25 |
-
-webkit-transition: all 0.15s ease-in-out;
|
26 |
-
-o-transition: all 0.15s ease-in-out;
|
27 |
-
transition: all 0.15s ease-in-out;
|
28 |
-
}
|
29 |
-
|
30 |
-
[data-sek-module-type="czr_icon_module"] .sek-icon .fas, [data-sek-module-type="czr_icon_module"] .sek-icon .far, [data-sek-module-type="czr_icon_module"] .sek-icon .fab {
|
31 |
-
width: 1em;
|
32 |
-
height: 1em;
|
33 |
-
text-align: center;
|
34 |
-
}
|
35 |
-
|
36 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon {
|
37 |
-
box-shadow: none;
|
38 |
-
-webkit-box-shadow: none;
|
39 |
-
}
|
40 |
-
|
41 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon:hover, [data-sek-module-type="czr_icon_module"] a.sek-icon:focus, [data-sek-module-type="czr_icon_module"] a.sek-icon:active {
|
42 |
-
box-shadow: none;
|
43 |
-
-webkit-box-shadow: none;
|
44 |
-
}
|
45 |
-
|
46 |
-
[data-sek-module-type="czr_icon_module"] .sek-icon-wrapper {
|
47 |
-
display: inline-block;
|
48 |
-
line-height: 1em;
|
49 |
-
}
|
1 |
/*************************************
|
2 |
* ICON MODULE
|
3 |
+
*************************************/
|
4 |
+
[data-sek-module-type="czr_icon_module"] {
|
5 |
+
text-align: center;
|
6 |
+
color: #5a5a5a;
|
7 |
+
font-size: 15px;
|
8 |
+
}
|
9 |
+
|
10 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon,
|
11 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon:hover,
|
12 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon:focus,
|
13 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon:active,
|
14 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon.active {
|
15 |
+
color: inherit;
|
16 |
+
}
|
17 |
+
|
18 |
+
[data-sek-module-type="czr_icon_module"] .box-shadow .sek-icon-wrapper {
|
19 |
+
-webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
20 |
+
-moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
21 |
+
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0;
|
22 |
+
}
|
23 |
+
|
24 |
+
[data-sek-module-type="czr_icon_module"] .sek-icon i {
|
25 |
+
-webkit-transition: all 0.15s ease-in-out;
|
26 |
+
-o-transition: all 0.15s ease-in-out;
|
27 |
+
transition: all 0.15s ease-in-out;
|
28 |
+
}
|
29 |
+
|
30 |
+
[data-sek-module-type="czr_icon_module"] .sek-icon .fas, [data-sek-module-type="czr_icon_module"] .sek-icon .far, [data-sek-module-type="czr_icon_module"] .sek-icon .fab {
|
31 |
+
width: 1em;
|
32 |
+
height: 1em;
|
33 |
+
text-align: center;
|
34 |
+
}
|
35 |
+
|
36 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon {
|
37 |
+
box-shadow: none;
|
38 |
+
-webkit-box-shadow: none;
|
39 |
+
}
|
40 |
+
|
41 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon:hover, [data-sek-module-type="czr_icon_module"] a.sek-icon:focus, [data-sek-module-type="czr_icon_module"] a.sek-icon:active {
|
42 |
+
box-shadow: none;
|
43 |
+
-webkit-box-shadow: none;
|
44 |
+
}
|
45 |
+
|
46 |
+
[data-sek-module-type="czr_icon_module"] .sek-icon-wrapper {
|
47 |
+
display: inline-block;
|
48 |
+
line-height: 1em;
|
49 |
+
}
|
assets/front/css/modules/image-module.css
CHANGED
@@ -1,79 +1,79 @@
|
|
1 |
/*************************************
|
2 |
* IMAGE MODULE
|
3 |
-
*************************************/
|
4 |
-
[data-sek-module-type="czr_image_module"] {
|
5 |
-
text-align: center;
|
6 |
-
}
|
7 |
-
|
8 |
-
[data-sek-module-type="czr_image_module"] img {
|
9 |
-
border: 0 solid #f2f2f2;
|
10 |
-
}
|
11 |
-
|
12 |
-
[data-sek-module-type="czr_image_module"] .box-shadow img {
|
13 |
-
-webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
14 |
-
-moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
15 |
-
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0;
|
16 |
-
}
|
17 |
-
|
18 |
-
/* image module transitions for better animations when effects are used */
|
19 |
-
[data-sek-module-type="czr_image_module"] figure img {
|
20 |
-
-webkit-transition: all 0.2s ease-out;
|
21 |
-
-o-transition: all 0.2s ease-out;
|
22 |
-
transition: all 0.2s ease-out;
|
23 |
-
}
|
24 |
-
|
25 |
-
[data-sek-module-type="czr_image_module"] figure.has-custom-height {
|
26 |
-
overflow: hidden;
|
27 |
-
display: -ms-flexbox;
|
28 |
-
display: flex;
|
29 |
-
-ms-flex-pack: center;
|
30 |
-
justify-content: center;
|
31 |
-
-ms-flex-align: center;
|
32 |
-
align-items: center;
|
33 |
-
}
|
34 |
-
|
35 |
-
[data-sek-module-type="czr_image_module"] figure.has-custom-height img {
|
36 |
-
object-fit: cover;
|
37 |
-
}
|
38 |
-
|
39 |
-
.sek-hover-effect-opacity img:hover {
|
40 |
-
opacity: .7;
|
41 |
-
}
|
42 |
-
|
43 |
-
.sek-hover-effect-zoom-out img:hover {
|
44 |
-
transform: scale(1.05);
|
45 |
-
}
|
46 |
-
|
47 |
-
.sek-hover-effect-zoom-in img:hover {
|
48 |
-
transform: scale(0.95);
|
49 |
-
}
|
50 |
-
|
51 |
-
.sek-hover-effect-move-up img:hover {
|
52 |
-
transform: translateY(-6px);
|
53 |
-
}
|
54 |
-
|
55 |
-
.sek-hover-effect-move-down img:hover {
|
56 |
-
transform: translateY(6px);
|
57 |
-
}
|
58 |
-
|
59 |
-
.sek-hover-effect-blur img:hover {
|
60 |
-
filter: blur(2px);
|
61 |
-
}
|
62 |
-
|
63 |
-
.sek-hover-effect-grayscale img:hover {
|
64 |
-
filter: grayscale(0%);
|
65 |
-
}
|
66 |
-
|
67 |
-
.sek-hover-effect-grayscale img:hover {
|
68 |
-
filter: grayscale(100%);
|
69 |
-
filter: gray;
|
70 |
-
}
|
71 |
-
|
72 |
-
.sek-hover-effect-reverse-grayscale img {
|
73 |
-
filter: grayscale(100%);
|
74 |
-
filter: gray;
|
75 |
-
}
|
76 |
-
|
77 |
-
.sek-hover-effect-reverse-grayscale img:hover {
|
78 |
-
filter: grayscale(0%);
|
79 |
-
}
|
1 |
/*************************************
|
2 |
* IMAGE MODULE
|
3 |
+
*************************************/
|
4 |
+
[data-sek-module-type="czr_image_module"] {
|
5 |
+
text-align: center;
|
6 |
+
}
|
7 |
+
|
8 |
+
[data-sek-module-type="czr_image_module"] img {
|
9 |
+
border: 0 solid #f2f2f2;
|
10 |
+
}
|
11 |
+
|
12 |
+
[data-sek-module-type="czr_image_module"] .box-shadow img {
|
13 |
+
-webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
14 |
+
-moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
15 |
+
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0;
|
16 |
+
}
|
17 |
+
|
18 |
+
/* image module transitions for better animations when effects are used */
|
19 |
+
[data-sek-module-type="czr_image_module"] figure img {
|
20 |
+
-webkit-transition: all 0.2s ease-out;
|
21 |
+
-o-transition: all 0.2s ease-out;
|
22 |
+
transition: all 0.2s ease-out;
|
23 |
+
}
|
24 |
+
|
25 |
+
[data-sek-module-type="czr_image_module"] figure.has-custom-height {
|
26 |
+
overflow: hidden;
|
27 |
+
display: -ms-flexbox;
|
28 |
+
display: flex;
|
29 |
+
-ms-flex-pack: center;
|
30 |
+
justify-content: center;
|
31 |
+
-ms-flex-align: center;
|
32 |
+
align-items: center;
|
33 |
+
}
|
34 |
+
|
35 |
+
[data-sek-module-type="czr_image_module"] figure.has-custom-height img {
|
36 |
+
object-fit: cover;
|
37 |
+
}
|
38 |
+
|
39 |
+
.sek-hover-effect-opacity img:hover {
|
40 |
+
opacity: .7;
|
41 |
+
}
|
42 |
+
|
43 |
+
.sek-hover-effect-zoom-out img:hover {
|
44 |
+
transform: scale(1.05);
|
45 |
+
}
|
46 |
+
|
47 |
+
.sek-hover-effect-zoom-in img:hover {
|
48 |
+
transform: scale(0.95);
|
49 |
+
}
|
50 |
+
|
51 |
+
.sek-hover-effect-move-up img:hover {
|
52 |
+
transform: translateY(-6px);
|
53 |
+
}
|
54 |
+
|
55 |
+
.sek-hover-effect-move-down img:hover {
|
56 |
+
transform: translateY(6px);
|
57 |
+
}
|
58 |
+
|
59 |
+
.sek-hover-effect-blur img:hover {
|
60 |
+
filter: blur(2px);
|
61 |
+
}
|
62 |
+
|
63 |
+
.sek-hover-effect-grayscale img:hover {
|
64 |
+
filter: grayscale(0%);
|
65 |
+
}
|
66 |
+
|
67 |
+
.sek-hover-effect-grayscale img:hover {
|
68 |
+
filter: grayscale(100%);
|
69 |
+
filter: gray;
|
70 |
+
}
|
71 |
+
|
72 |
+
.sek-hover-effect-reverse-grayscale img {
|
73 |
+
filter: grayscale(100%);
|
74 |
+
filter: gray;
|
75 |
+
}
|
76 |
+
|
77 |
+
.sek-hover-effect-reverse-grayscale img:hover {
|
78 |
+
filter: grayscale(0%);
|
79 |
+
}
|
assets/front/css/modules/img-slider-module-with-swiper.css
CHANGED
@@ -1,255 +1,255 @@
|
|
1 |
/*************************************
|
2 |
* IMAGE SLIDER MODULE
|
3 |
-
*************************************/
|
4 |
-
.sek-column-inner [data-sek-module-type="czr_img_slider_module"] {
|
5 |
-
width: calc(100% + 20px);
|
6 |
-
max-width: calc(100% + 20px);
|
7 |
-
}
|
8 |
-
|
9 |
-
[data-sek-module-type="czr_img_slider_module"] {
|
10 |
-
/* SWIPER BULLETS */
|
11 |
-
/* SWIPER ARROWS */
|
12 |
-
}
|
13 |
-
|
14 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-carousel-img [src*="data:image/gif;"] {
|
15 |
-
display: none;
|
16 |
-
}
|
17 |
-
|
18 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-loading .sek-carousel-img img {
|
19 |
-
display: none;
|
20 |
-
}
|
21 |
-
|
22 |
-
.customizer-preview .swiper-wrapper .swiper-lazy-preloader {
|
23 |
-
display: none;
|
24 |
-
}
|
25 |
-
|
26 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper {
|
27 |
-
width: 100%;
|
28 |
-
height: 100%;
|
29 |
-
overflow: hidden;
|
30 |
-
}
|
31 |
-
|
32 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper .swiper-wrapper {
|
33 |
-
display: -ms-flexbox;
|
34 |
-
display: flex;
|
35 |
-
-ms-flex-align: center;
|
36 |
-
align-items: center;
|
37 |
-
height: 400px;
|
38 |
-
}
|
39 |
-
|
40 |
-
@media (max-width: 575.98px) {
|
41 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper .swiper-wrapper {
|
42 |
-
height: 200px;
|
43 |
-
}
|
44 |
-
}
|
45 |
-
|
46 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="nimble-wizard"] .sek-carousel-img {
|
47 |
-
height: 100%;
|
48 |
-
overflow: hidden;
|
49 |
-
}
|
50 |
-
|
51 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="nimble-wizard"] .sek-carousel-img img {
|
52 |
-
max-width: none;
|
53 |
-
opacity: 0;
|
54 |
-
transition: opacity 0.15s ease-in-out;
|
55 |
-
}
|
56 |
-
|
57 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="height-100"] .sek-carousel-img {
|
58 |
-
height: 100%;
|
59 |
-
width: auto;
|
60 |
-
overflow: hidden;
|
61 |
-
}
|
62 |
-
|
63 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="height-100"] .sek-carousel-img img {
|
64 |
-
width: auto;
|
65 |
-
height: 100%;
|
66 |
-
max-width: none;
|
67 |
-
}
|
68 |
-
|
69 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="cover"] .sek-carousel-img {
|
70 |
-
height: 100%;
|
71 |
-
width: 100%;
|
72 |
-
overflow: hidden;
|
73 |
-
display: -ms-flexbox;
|
74 |
-
display: flex;
|
75 |
-
-ms-flex-pack: center;
|
76 |
-
justify-content: center;
|
77 |
-
-ms-flex-align: center;
|
78 |
-
align-items: center;
|
79 |
-
}
|
80 |
-
|
81 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="cover"] .sek-carousel-img img {
|
82 |
-
width: 100%;
|
83 |
-
height: 100%;
|
84 |
-
max-width: none;
|
85 |
-
-o-object-fit: cover;
|
86 |
-
object-fit: cover;
|
87 |
-
}
|
88 |
-
|
89 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide {
|
90 |
-
text-align: center;
|
91 |
-
font-size: 18px;
|
92 |
-
/* Center slide image vertically */
|
93 |
-
display: -ms-flexbox;
|
94 |
-
display: flex;
|
95 |
-
-ms-flex-pack: center;
|
96 |
-
justify-content: center;
|
97 |
-
-ms-flex-align: center;
|
98 |
-
align-items: center;
|
99 |
-
}
|
100 |
-
|
101 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide[data-sek-slide-link] {
|
102 |
-
cursor: pointer;
|
103 |
-
}
|
104 |
-
|
105 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img {
|
106 |
-
width: 100%;
|
107 |
-
}
|
108 |
-
|
109 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img {
|
110 |
-
width: 100%;
|
111 |
-
}
|
112 |
-
|
113 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img.sek-h-centrd {
|
114 |
-
width: auto !important;
|
115 |
-
max-width: none !important;
|
116 |
-
position: relative;
|
117 |
-
opacity: 1;
|
118 |
-
}
|
119 |
-
|
120 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img.sek-v-centrd {
|
121 |
-
height: auto !important;
|
122 |
-
max-height: none !important;
|
123 |
-
vertical-align: top;
|
124 |
-
position: relative;
|
125 |
-
max-width: none !important;
|
126 |
-
opacity: 1;
|
127 |
-
}
|
128 |
-
|
129 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide[data-sek-has-overlay="true"] .sek-carousel-img::after {
|
130 |
-
content: '';
|
131 |
-
left: 0;
|
132 |
-
right: 0;
|
133 |
-
bottom: 0;
|
134 |
-
top: 0;
|
135 |
-
position: absolute;
|
136 |
-
background-color: #000000;
|
137 |
-
opacity: 0.3;
|
138 |
-
}
|
139 |
-
|
140 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-wrapper {
|
141 |
-
height: 100%;
|
142 |
-
width: 100%;
|
143 |
-
-webkit-transform: translate(-50%, -50%);
|
144 |
-
transform: translate(-50%, -50%);
|
145 |
-
-webkit-transform: translate3d(-50%, -50%, 0);
|
146 |
-
transform: translate3d(-50%, -50%, 0);
|
147 |
-
top: 50%;
|
148 |
-
left: 50%;
|
149 |
-
position: absolute;
|
150 |
/* Center slide text vertically
|
151 |
-
=> consistent with defaults in module registration */
|
152 |
-
display: -ms-flexbox;
|
153 |
-
display: flex;
|
154 |
-
-ms-flex-pack: center;
|
155 |
-
justify-content: center;
|
156 |
-
-ms-flex-align: center;
|
157 |
-
align-items: center;
|
158 |
-
}
|
159 |
-
|
160 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-content {
|
161 |
-
height: auto;
|
162 |
-
max-height: 100%;
|
163 |
-
width: 100%;
|
164 |
-
padding: 5%;
|
165 |
-
text-align: center;
|
166 |
-
z-index: 3;
|
167 |
-
overflow: hidden;
|
168 |
-
color: #e2e2e2;
|
169 |
-
font-size: 16px;
|
170 |
-
line-height: 1.5em;
|
171 |
-
}
|
172 |
-
|
173 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-content * {
|
174 |
-
font-size: 16px;
|
175 |
-
line-height: 1.5em;
|
176 |
-
}
|
177 |
-
|
178 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-pagination-bullet-active {
|
179 |
-
background-color: #ffffff;
|
180 |
-
}
|
181 |
-
|
182 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav {
|
183 |
-
cursor: pointer;
|
184 |
-
}
|
185 |
-
|
186 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-chevron {
|
187 |
-
display: inline-block;
|
188 |
-
border-right: 2px solid #ffffff;
|
189 |
-
border-bottom: 2px solid #ffffff;
|
190 |
-
width: 11px;
|
191 |
-
height: 11px;
|
192 |
-
}
|
193 |
-
|
194 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev {
|
195 |
-
left: 0;
|
196 |
-
border-top-left-radius: 0px;
|
197 |
-
border-top-right-radius: 2px;
|
198 |
-
border-bottom-right-radius: 2px;
|
199 |
-
border-bottom-left-radius: 0px;
|
200 |
-
}
|
201 |
-
|
202 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev .sek-chevron {
|
203 |
-
-webkit-transform: rotate(-225deg);
|
204 |
-
transform: rotate(-225deg);
|
205 |
-
}
|
206 |
-
|
207 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next {
|
208 |
-
right: 0;
|
209 |
-
border-top-left-radius: 2px;
|
210 |
-
border-top-right-radius: 0px;
|
211 |
-
border-bottom-right-radius: 0px;
|
212 |
-
border-bottom-left-radius: 2px;
|
213 |
-
}
|
214 |
-
|
215 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next .sek-chevron {
|
216 |
-
-webkit-transform: rotate(-45deg);
|
217 |
-
transform: rotate(-45deg);
|
218 |
-
}
|
219 |
-
|
220 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev, [data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next {
|
221 |
-
position: absolute;
|
222 |
-
z-index: 2;
|
223 |
-
top: calc(50% - 30px);
|
224 |
-
text-align: center;
|
225 |
-
margin-top: 0px;
|
226 |
-
-webkit-backface-visibility: hidden;
|
227 |
-
backface-visibility: hidden;
|
228 |
-
display: block;
|
229 |
-
height: 60px;
|
230 |
-
width: 50px;
|
231 |
-
opacity: 0.6;
|
232 |
-
background-color: rgba(32, 32, 32, 0.4);
|
233 |
-
transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
|
234 |
-
line-height: 64px;
|
235 |
-
cursor: pointer;
|
236 |
-
font-size: 18px;
|
237 |
-
}
|
238 |
-
|
239 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev:hover, [data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next:hover {
|
240 |
-
background-color: rgba(32, 32, 32, 0.7);
|
241 |
-
opacity: 1;
|
242 |
-
width: 100px;
|
243 |
-
}
|
244 |
-
|
245 |
-
@media (max-width: 575.98px) {
|
246 |
-
[data-sek-module-type="czr_img_slider_module"] [data-sek-hide-nav-on-mobile="true"] .swiper-pagination {
|
247 |
-
display: none;
|
248 |
-
}
|
249 |
-
[data-sek-module-type="czr_img_slider_module"] [data-sek-hide-nav-on-mobile="true"] .sek-swiper-nav {
|
250 |
-
display: none;
|
251 |
-
}
|
252 |
-
}
|
253 |
/**
|
254 |
* Swiper 7.0.5
|
255 |
* Most modern mobile touch slider and framework with hardware accelerated transitions
|
1 |
/*************************************
|
2 |
* IMAGE SLIDER MODULE
|
3 |
+
*************************************/
|
4 |
+
.sek-column-inner [data-sek-module-type="czr_img_slider_module"] {
|
5 |
+
width: calc(100% + 20px);
|
6 |
+
max-width: calc(100% + 20px);
|
7 |
+
}
|
8 |
+
|
9 |
+
[data-sek-module-type="czr_img_slider_module"] {
|
10 |
+
/* SWIPER BULLETS */
|
11 |
+
/* SWIPER ARROWS */
|
12 |
+
}
|
13 |
+
|
14 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-carousel-img [src*="data:image/gif;"] {
|
15 |
+
display: none;
|
16 |
+
}
|
17 |
+
|
18 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-loading .sek-carousel-img img {
|
19 |
+
display: none;
|
20 |
+
}
|
21 |
+
|
22 |
+
.customizer-preview .swiper-wrapper .swiper-lazy-preloader {
|
23 |
+
display: none;
|
24 |
+
}
|
25 |
+
|
26 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper {
|
27 |
+
width: 100%;
|
28 |
+
height: 100%;
|
29 |
+
overflow: hidden;
|
30 |
+
}
|
31 |
+
|
32 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper .swiper-wrapper {
|
33 |
+
display: -ms-flexbox;
|
34 |
+
display: flex;
|
35 |
+
-ms-flex-align: center;
|
36 |
+
align-items: center;
|
37 |
+
height: 400px;
|
38 |
+
}
|
39 |
+
|
40 |
+
@media (max-width: 575.98px) {
|
41 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper .swiper-wrapper {
|
42 |
+
height: 200px;
|
43 |
+
}
|
44 |
+
}
|
45 |
+
|
46 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="nimble-wizard"] .sek-carousel-img {
|
47 |
+
height: 100%;
|
48 |
+
overflow: hidden;
|
49 |
+
}
|
50 |
+
|
51 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="nimble-wizard"] .sek-carousel-img img {
|
52 |
+
max-width: none;
|
53 |
+
opacity: 0;
|
54 |
+
transition: opacity 0.15s ease-in-out;
|
55 |
+
}
|
56 |
+
|
57 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="height-100"] .sek-carousel-img {
|
58 |
+
height: 100%;
|
59 |
+
width: auto;
|
60 |
+
overflow: hidden;
|
61 |
+
}
|
62 |
+
|
63 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="height-100"] .sek-carousel-img img {
|
64 |
+
width: auto;
|
65 |
+
height: 100%;
|
66 |
+
max-width: none;
|
67 |
+
}
|
68 |
+
|
69 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="cover"] .sek-carousel-img {
|
70 |
+
height: 100%;
|
71 |
+
width: 100%;
|
72 |
+
overflow: hidden;
|
73 |
+
display: -ms-flexbox;
|
74 |
+
display: flex;
|
75 |
+
-ms-flex-pack: center;
|
76 |
+
justify-content: center;
|
77 |
+
-ms-flex-align: center;
|
78 |
+
align-items: center;
|
79 |
+
}
|
80 |
+
|
81 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="cover"] .sek-carousel-img img {
|
82 |
+
width: 100%;
|
83 |
+
height: 100%;
|
84 |
+
max-width: none;
|
85 |
+
-o-object-fit: cover;
|
86 |
+
object-fit: cover;
|
87 |
+
}
|
88 |
+
|
89 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide {
|
90 |
+
text-align: center;
|
91 |
+
font-size: 18px;
|
92 |
+
/* Center slide image vertically */
|
93 |
+
display: -ms-flexbox;
|
94 |
+
display: flex;
|
95 |
+
-ms-flex-pack: center;
|
96 |
+
justify-content: center;
|
97 |
+
-ms-flex-align: center;
|
98 |
+
align-items: center;
|
99 |
+
}
|
100 |
+
|
101 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide[data-sek-slide-link] {
|
102 |
+
cursor: pointer;
|
103 |
+
}
|
104 |
+
|
105 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img {
|
106 |
+
width: 100%;
|
107 |
+
}
|
108 |
+
|
109 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img {
|
110 |
+
width: 100%;
|
111 |
+
}
|
112 |
+
|
113 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img.sek-h-centrd {
|
114 |
+
width: auto !important;
|
115 |
+
max-width: none !important;
|
116 |
+
position: relative;
|
117 |
+
opacity: 1;
|
118 |
+
}
|
119 |
+
|
120 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img.sek-v-centrd {
|
121 |
+
height: auto !important;
|
122 |
+
max-height: none !important;
|
123 |
+
vertical-align: top;
|
124 |
+
position: relative;
|
125 |
+
max-width: none !important;
|
126 |
+
opacity: 1;
|
127 |
+
}
|
128 |
+
|
129 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide[data-sek-has-overlay="true"] .sek-carousel-img::after {
|
130 |
+
content: '';
|
131 |
+
left: 0;
|
132 |
+
right: 0;
|
133 |
+
bottom: 0;
|
134 |
+
top: 0;
|
135 |
+
position: absolute;
|
136 |
+
background-color: #000000;
|
137 |
+
opacity: 0.3;
|
138 |
+
}
|
139 |
+
|
140 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-wrapper {
|
141 |
+
height: 100%;
|
142 |
+
width: 100%;
|
143 |
+
-webkit-transform: translate(-50%, -50%);
|
144 |
+
transform: translate(-50%, -50%);
|
145 |
+
-webkit-transform: translate3d(-50%, -50%, 0);
|
146 |
+
transform: translate3d(-50%, -50%, 0);
|
147 |
+
top: 50%;
|
148 |
+
left: 50%;
|
149 |
+
position: absolute;
|
150 |
/* Center slide text vertically
|
151 |
+
=> consistent with defaults in module registration */
|
152 |
+
display: -ms-flexbox;
|
153 |
+
display: flex;
|
154 |
+
-ms-flex-pack: center;
|
155 |
+
justify-content: center;
|
156 |
+
-ms-flex-align: center;
|
157 |
+
align-items: center;
|
158 |
+
}
|
159 |
+
|
160 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-content {
|
161 |
+
height: auto;
|
162 |
+
max-height: 100%;
|
163 |
+
width: 100%;
|
164 |
+
padding: 5%;
|
165 |
+
text-align: center;
|
166 |
+
z-index: 3;
|
167 |
+
overflow: hidden;
|
168 |
+
color: #e2e2e2;
|
169 |
+
font-size: 16px;
|
170 |
+
line-height: 1.5em;
|
171 |
+
}
|
172 |
+
|
173 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-content * {
|
174 |
+
font-size: 16px;
|
175 |
+
line-height: 1.5em;
|
176 |
+
}
|
177 |
+
|
178 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-pagination-bullet-active {
|
179 |
+
background-color: #ffffff;
|
180 |
+
}
|
181 |
+
|
182 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav {
|
183 |
+
cursor: pointer;
|
184 |
+
}
|
185 |
+
|
186 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-chevron {
|
187 |
+
display: inline-block;
|
188 |
+
border-right: 2px solid #ffffff;
|
189 |
+
border-bottom: 2px solid #ffffff;
|
190 |
+
width: 11px;
|
191 |
+
height: 11px;
|
192 |
+
}
|
193 |
+
|
194 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev {
|
195 |
+
left: 0;
|
196 |
+
border-top-left-radius: 0px;
|
197 |
+
border-top-right-radius: 2px;
|
198 |
+
border-bottom-right-radius: 2px;
|
199 |
+
border-bottom-left-radius: 0px;
|
200 |
+
}
|
201 |
+
|
202 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev .sek-chevron {
|
203 |
+
-webkit-transform: rotate(-225deg);
|
204 |
+
transform: rotate(-225deg);
|
205 |
+
}
|
206 |
+
|
207 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next {
|
208 |
+
right: 0;
|
209 |
+
border-top-left-radius: 2px;
|
210 |
+
border-top-right-radius: 0px;
|
211 |
+
border-bottom-right-radius: 0px;
|
212 |
+
border-bottom-left-radius: 2px;
|
213 |
+
}
|
214 |
+
|
215 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next .sek-chevron {
|
216 |
+
-webkit-transform: rotate(-45deg);
|
217 |
+
transform: rotate(-45deg);
|
218 |
+
}
|
219 |
+
|
220 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev, [data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next {
|
221 |
+
position: absolute;
|
222 |
+
z-index: 2;
|
223 |
+
top: calc(50% - 30px);
|
224 |
+
text-align: center;
|
225 |
+
margin-top: 0px;
|
226 |
+
-webkit-backface-visibility: hidden;
|
227 |
+
backface-visibility: hidden;
|
228 |
+
display: block;
|
229 |
+
height: 60px;
|
230 |
+
width: 50px;
|
231 |
+
opacity: 0.6;
|
232 |
+
background-color: rgba(32, 32, 32, 0.4);
|
233 |
+
transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
|
234 |
+
line-height: 64px;
|
235 |
+
cursor: pointer;
|
236 |
+
font-size: 18px;
|
237 |
+
}
|
238 |
+
|
239 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev:hover, [data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next:hover {
|
240 |
+
background-color: rgba(32, 32, 32, 0.7);
|
241 |
+
opacity: 1;
|
242 |
+
width: 100px;
|
243 |
+
}
|
244 |
+
|
245 |
+
@media (max-width: 575.98px) {
|
246 |
+
[data-sek-module-type="czr_img_slider_module"] [data-sek-hide-nav-on-mobile="true"] .swiper-pagination {
|
247 |
+
display: none;
|
248 |
+
}
|
249 |
+
[data-sek-module-type="czr_img_slider_module"] [data-sek-hide-nav-on-mobile="true"] .sek-swiper-nav {
|
250 |
+
display: none;
|
251 |
+
}
|
252 |
+
}
|
253 |
/**
|
254 |
* Swiper 7.0.5
|
255 |
* Most modern mobile touch slider and framework with hardware accelerated transitions
|
assets/front/css/modules/img-slider-module.css
CHANGED
@@ -1,252 +1,252 @@
|
|
1 |
/*************************************
|
2 |
* IMAGE SLIDER MODULE
|
3 |
-
*************************************/
|
4 |
-
.sek-column-inner [data-sek-module-type="czr_img_slider_module"] {
|
5 |
-
width: calc(100% + 20px);
|
6 |
-
max-width: calc(100% + 20px);
|
7 |
-
}
|
8 |
-
|
9 |
-
[data-sek-module-type="czr_img_slider_module"] {
|
10 |
-
/* SWIPER BULLETS */
|
11 |
-
/* SWIPER ARROWS */
|
12 |
-
}
|
13 |
-
|
14 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-carousel-img [src*="data:image/gif;"] {
|
15 |
-
display: none;
|
16 |
-
}
|
17 |
-
|
18 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-loading .sek-carousel-img img {
|
19 |
-
display: none;
|
20 |
-
}
|
21 |
-
|
22 |
-
.customizer-preview .swiper-wrapper .swiper-lazy-preloader {
|
23 |
-
display: none;
|
24 |
-
}
|
25 |
-
|
26 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper {
|
27 |
-
width: 100%;
|
28 |
-
height: 100%;
|
29 |
-
overflow: hidden;
|
30 |
-
}
|
31 |
-
|
32 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper .swiper-wrapper {
|
33 |
-
display: -ms-flexbox;
|
34 |
-
display: flex;
|
35 |
-
-ms-flex-align: center;
|
36 |
-
align-items: center;
|
37 |
-
height: 400px;
|
38 |
-
}
|
39 |
-
|
40 |
-
@media (max-width: 575.98px) {
|
41 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper .swiper-wrapper {
|
42 |
-
height: 200px;
|
43 |
-
}
|
44 |
-
}
|
45 |
-
|
46 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="nimble-wizard"] .sek-carousel-img {
|
47 |
-
height: 100%;
|
48 |
-
overflow: hidden;
|
49 |
-
}
|
50 |
-
|
51 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="nimble-wizard"] .sek-carousel-img img {
|
52 |
-
max-width: none;
|
53 |
-
opacity: 0;
|
54 |
-
transition: opacity 0.15s ease-in-out;
|
55 |
-
}
|
56 |
-
|
57 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="height-100"] .sek-carousel-img {
|
58 |
-
height: 100%;
|
59 |
-
width: auto;
|
60 |
-
overflow: hidden;
|
61 |
-
}
|
62 |
-
|
63 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="height-100"] .sek-carousel-img img {
|
64 |
-
width: auto;
|
65 |
-
height: 100%;
|
66 |
-
max-width: none;
|
67 |
-
}
|
68 |
-
|
69 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="cover"] .sek-carousel-img {
|
70 |
-
height: 100%;
|
71 |
-
width: 100%;
|
72 |
-
overflow: hidden;
|
73 |
-
display: -ms-flexbox;
|
74 |
-
display: flex;
|
75 |
-
-ms-flex-pack: center;
|
76 |
-
justify-content: center;
|
77 |
-
-ms-flex-align: center;
|
78 |
-
align-items: center;
|
79 |
-
}
|
80 |
-
|
81 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="cover"] .sek-carousel-img img {
|
82 |
-
width: 100%;
|
83 |
-
height: 100%;
|
84 |
-
max-width: none;
|
85 |
-
-o-object-fit: cover;
|
86 |
-
object-fit: cover;
|
87 |
-
}
|
88 |
-
|
89 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide {
|
90 |
-
text-align: center;
|
91 |
-
font-size: 18px;
|
92 |
-
/* Center slide image vertically */
|
93 |
-
display: -ms-flexbox;
|
94 |
-
display: flex;
|
95 |
-
-ms-flex-pack: center;
|
96 |
-
justify-content: center;
|
97 |
-
-ms-flex-align: center;
|
98 |
-
align-items: center;
|
99 |
-
}
|
100 |
-
|
101 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide[data-sek-slide-link] {
|
102 |
-
cursor: pointer;
|
103 |
-
}
|
104 |
-
|
105 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img {
|
106 |
-
width: 100%;
|
107 |
-
}
|
108 |
-
|
109 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img {
|
110 |
-
width: 100%;
|
111 |
-
}
|
112 |
-
|
113 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img.sek-h-centrd {
|
114 |
-
width: auto !important;
|
115 |
-
max-width: none !important;
|
116 |
-
position: relative;
|
117 |
-
opacity: 1;
|
118 |
-
}
|
119 |
-
|
120 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img.sek-v-centrd {
|
121 |
-
height: auto !important;
|
122 |
-
max-height: none !important;
|
123 |
-
vertical-align: top;
|
124 |
-
position: relative;
|
125 |
-
max-width: none !important;
|
126 |
-
opacity: 1;
|
127 |
-
}
|
128 |
-
|
129 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide[data-sek-has-overlay="true"] .sek-carousel-img::after {
|
130 |
-
content: '';
|
131 |
-
left: 0;
|
132 |
-
right: 0;
|
133 |
-
bottom: 0;
|
134 |
-
top: 0;
|
135 |
-
position: absolute;
|
136 |
-
background-color: #000000;
|
137 |
-
opacity: 0.3;
|
138 |
-
}
|
139 |
-
|
140 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-wrapper {
|
141 |
-
height: 100%;
|
142 |
-
width: 100%;
|
143 |
-
-webkit-transform: translate(-50%, -50%);
|
144 |
-
transform: translate(-50%, -50%);
|
145 |
-
-webkit-transform: translate3d(-50%, -50%, 0);
|
146 |
-
transform: translate3d(-50%, -50%, 0);
|
147 |
-
top: 50%;
|
148 |
-
left: 50%;
|
149 |
-
position: absolute;
|
150 |
/* Center slide text vertically
|
151 |
-
=> consistent with defaults in module registration */
|
152 |
-
display: -ms-flexbox;
|
153 |
-
display: flex;
|
154 |
-
-ms-flex-pack: center;
|
155 |
-
justify-content: center;
|
156 |
-
-ms-flex-align: center;
|
157 |
-
align-items: center;
|
158 |
-
}
|
159 |
-
|
160 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-content {
|
161 |
-
height: auto;
|
162 |
-
max-height: 100%;
|
163 |
-
width: 100%;
|
164 |
-
padding: 5%;
|
165 |
-
text-align: center;
|
166 |
-
z-index: 3;
|
167 |
-
overflow: hidden;
|
168 |
-
color: #e2e2e2;
|
169 |
-
font-size: 16px;
|
170 |
-
line-height: 1.5em;
|
171 |
-
}
|
172 |
-
|
173 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-content * {
|
174 |
-
font-size: 16px;
|
175 |
-
line-height: 1.5em;
|
176 |
-
}
|
177 |
-
|
178 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-pagination-bullet-active {
|
179 |
-
background-color: #ffffff;
|
180 |
-
}
|
181 |
-
|
182 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav {
|
183 |
-
cursor: pointer;
|
184 |
-
}
|
185 |
-
|
186 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-chevron {
|
187 |
-
display: inline-block;
|
188 |
-
border-right: 2px solid #ffffff;
|
189 |
-
border-bottom: 2px solid #ffffff;
|
190 |
-
width: 11px;
|
191 |
-
height: 11px;
|
192 |
-
}
|
193 |
-
|
194 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev {
|
195 |
-
left: 0;
|
196 |
-
border-top-left-radius: 0px;
|
197 |
-
border-top-right-radius: 2px;
|
198 |
-
border-bottom-right-radius: 2px;
|
199 |
-
border-bottom-left-radius: 0px;
|
200 |
-
}
|
201 |
-
|
202 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev .sek-chevron {
|
203 |
-
-webkit-transform: rotate(-225deg);
|
204 |
-
transform: rotate(-225deg);
|
205 |
-
}
|
206 |
-
|
207 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next {
|
208 |
-
right: 0;
|
209 |
-
border-top-left-radius: 2px;
|
210 |
-
border-top-right-radius: 0px;
|
211 |
-
border-bottom-right-radius: 0px;
|
212 |
-
border-bottom-left-radius: 2px;
|
213 |
-
}
|
214 |
-
|
215 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next .sek-chevron {
|
216 |
-
-webkit-transform: rotate(-45deg);
|
217 |
-
transform: rotate(-45deg);
|
218 |
-
}
|
219 |
-
|
220 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev, [data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next {
|
221 |
-
position: absolute;
|
222 |
-
z-index: 2;
|
223 |
-
top: calc(50% - 30px);
|
224 |
-
text-align: center;
|
225 |
-
margin-top: 0px;
|
226 |
-
-webkit-backface-visibility: hidden;
|
227 |
-
backface-visibility: hidden;
|
228 |
-
display: block;
|
229 |
-
height: 60px;
|
230 |
-
width: 50px;
|
231 |
-
opacity: 0.6;
|
232 |
-
background-color: rgba(32, 32, 32, 0.4);
|
233 |
-
transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
|
234 |
-
line-height: 64px;
|
235 |
-
cursor: pointer;
|
236 |
-
font-size: 18px;
|
237 |
-
}
|
238 |
-
|
239 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev:hover, [data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next:hover {
|
240 |
-
background-color: rgba(32, 32, 32, 0.7);
|
241 |
-
opacity: 1;
|
242 |
-
width: 100px;
|
243 |
-
}
|
244 |
-
|
245 |
-
@media (max-width: 575.98px) {
|
246 |
-
[data-sek-module-type="czr_img_slider_module"] [data-sek-hide-nav-on-mobile="true"] .swiper-pagination {
|
247 |
-
display: none;
|
248 |
-
}
|
249 |
-
[data-sek-module-type="czr_img_slider_module"] [data-sek-hide-nav-on-mobile="true"] .sek-swiper-nav {
|
250 |
-
display: none;
|
251 |
-
}
|
252 |
-
}
|
1 |
/*************************************
|
2 |
* IMAGE SLIDER MODULE
|
3 |
+
*************************************/
|
4 |
+
.sek-column-inner [data-sek-module-type="czr_img_slider_module"] {
|
5 |
+
width: calc(100% + 20px);
|
6 |
+
max-width: calc(100% + 20px);
|
7 |
+
}
|
8 |
+
|
9 |
+
[data-sek-module-type="czr_img_slider_module"] {
|
10 |
+
/* SWIPER BULLETS */
|
11 |
+
/* SWIPER ARROWS */
|
12 |
+
}
|
13 |
+
|
14 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-carousel-img [src*="data:image/gif;"] {
|
15 |
+
display: none;
|
16 |
+
}
|
17 |
+
|
18 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-loading .sek-carousel-img img {
|
19 |
+
display: none;
|
20 |
+
}
|
21 |
+
|
22 |
+
.customizer-preview .swiper-wrapper .swiper-lazy-preloader {
|
23 |
+
display: none;
|
24 |
+
}
|
25 |
+
|
26 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper {
|
27 |
+
width: 100%;
|
28 |
+
height: 100%;
|
29 |
+
overflow: hidden;
|
30 |
+
}
|
31 |
+
|
32 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper .swiper-wrapper {
|
33 |
+
display: -ms-flexbox;
|
34 |
+
display: flex;
|
35 |
+
-ms-flex-align: center;
|
36 |
+
align-items: center;
|
37 |
+
height: 400px;
|
38 |
+
}
|
39 |
+
|
40 |
+
@media (max-width: 575.98px) {
|
41 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper .swiper-wrapper {
|
42 |
+
height: 200px;
|
43 |
+
}
|
44 |
+
}
|
45 |
+
|
46 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="nimble-wizard"] .sek-carousel-img {
|
47 |
+
height: 100%;
|
48 |
+
overflow: hidden;
|
49 |
+
}
|
50 |
+
|
51 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="nimble-wizard"] .sek-carousel-img img {
|
52 |
+
max-width: none;
|
53 |
+
opacity: 0;
|
54 |
+
transition: opacity 0.15s ease-in-out;
|
55 |
+
}
|
56 |
+
|
57 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="height-100"] .sek-carousel-img {
|
58 |
+
height: 100%;
|
59 |
+
width: auto;
|
60 |
+
overflow: hidden;
|
61 |
+
}
|
62 |
+
|
63 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="height-100"] .sek-carousel-img img {
|
64 |
+
width: auto;
|
65 |
+
height: 100%;
|
66 |
+
max-width: none;
|
67 |
+
}
|
68 |
+
|
69 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="cover"] .sek-carousel-img {
|
70 |
+
height: 100%;
|
71 |
+
width: 100%;
|
72 |
+
overflow: hidden;
|
73 |
+
display: -ms-flexbox;
|
74 |
+
display: flex;
|
75 |
+
-ms-flex-pack: center;
|
76 |
+
justify-content: center;
|
77 |
+
-ms-flex-align: center;
|
78 |
+
align-items: center;
|
79 |
+
}
|
80 |
+
|
81 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="cover"] .sek-carousel-img img {
|
82 |
+
width: 100%;
|
83 |
+
height: 100%;
|
84 |
+
max-width: none;
|
85 |
+
-o-object-fit: cover;
|
86 |
+
object-fit: cover;
|
87 |
+
}
|
88 |
+
|
89 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide {
|
90 |
+
text-align: center;
|
91 |
+
font-size: 18px;
|
92 |
+
/* Center slide image vertically */
|
93 |
+
display: -ms-flexbox;
|
94 |
+
display: flex;
|
95 |
+
-ms-flex-pack: center;
|
96 |
+
justify-content: center;
|
97 |
+
-ms-flex-align: center;
|
98 |
+
align-items: center;
|
99 |
+
}
|
100 |
+
|
101 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide[data-sek-slide-link] {
|
102 |
+
cursor: pointer;
|
103 |
+
}
|
104 |
+
|
105 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img {
|
106 |
+
width: 100%;
|
107 |
+
}
|
108 |
+
|
109 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img {
|
110 |
+
width: 100%;
|
111 |
+
}
|
112 |
+
|
113 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img.sek-h-centrd {
|
114 |
+
width: auto !important;
|
115 |
+
max-width: none !important;
|
116 |
+
position: relative;
|
117 |
+
opacity: 1;
|
118 |
+
}
|
119 |
+
|
120 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img.sek-v-centrd {
|
121 |
+
height: auto !important;
|
122 |
+
max-height: none !important;
|
123 |
+
vertical-align: top;
|
124 |
+
position: relative;
|
125 |
+
max-width: none !important;
|
126 |
+
opacity: 1;
|
127 |
+
}
|
128 |
+
|
129 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide[data-sek-has-overlay="true"] .sek-carousel-img::after {
|
130 |
+
content: '';
|
131 |
+
left: 0;
|
132 |
+
right: 0;
|
133 |
+
bottom: 0;
|
134 |
+
top: 0;
|
135 |
+
position: absolute;
|
136 |
+
background-color: #000000;
|
137 |
+
opacity: 0.3;
|
138 |
+
}
|
139 |
+
|
140 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-wrapper {
|
141 |
+
height: 100%;
|
142 |
+
width: 100%;
|
143 |
+
-webkit-transform: translate(-50%, -50%);
|
144 |
+
transform: translate(-50%, -50%);
|
145 |
+
-webkit-transform: translate3d(-50%, -50%, 0);
|
146 |
+
transform: translate3d(-50%, -50%, 0);
|
147 |
+
top: 50%;
|
148 |
+
left: 50%;
|
149 |
+
position: absolute;
|
150 |
/* Center slide text vertically
|
151 |
+
=> consistent with defaults in module registration */
|
152 |
+
display: -ms-flexbox;
|
153 |
+
display: flex;
|
154 |
+
-ms-flex-pack: center;
|
155 |
+
justify-content: center;
|
156 |
+
-ms-flex-align: center;
|
157 |
+
align-items: center;
|
158 |
+
}
|
159 |
+
|
160 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-content {
|
161 |
+
height: auto;
|
162 |
+
max-height: 100%;
|
163 |
+
width: 100%;
|
164 |
+
padding: 5%;
|
165 |
+
text-align: center;
|
166 |
+
z-index: 3;
|
167 |
+
overflow: hidden;
|
168 |
+
color: #e2e2e2;
|
169 |
+
font-size: 16px;
|
170 |
+
line-height: 1.5em;
|
171 |
+
}
|
172 |
+
|
173 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-content * {
|
174 |
+
font-size: 16px;
|
175 |
+
line-height: 1.5em;
|
176 |
+
}
|
177 |
+
|
178 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-pagination-bullet-active {
|
179 |
+
background-color: #ffffff;
|
180 |
+
}
|
181 |
+
|
182 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav {
|
183 |
+
cursor: pointer;
|
184 |
+
}
|
185 |
+
|
186 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-chevron {
|
187 |
+
display: inline-block;
|
188 |
+
border-right: 2px solid #ffffff;
|
189 |
+
border-bottom: 2px solid #ffffff;
|
190 |
+
width: 11px;
|
191 |
+
height: 11px;
|
192 |
+
}
|
193 |
+
|
194 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev {
|
195 |
+
left: 0;
|
196 |
+
border-top-left-radius: 0px;
|
197 |
+
border-top-right-radius: 2px;
|
198 |
+
border-bottom-right-radius: 2px;
|
199 |
+
border-bottom-left-radius: 0px;
|
200 |
+
}
|
201 |
+
|
202 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev .sek-chevron {
|
203 |
+
-webkit-transform: rotate(-225deg);
|
204 |
+
transform: rotate(-225deg);
|
205 |
+
}
|
206 |
+
|
207 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next {
|
208 |
+
right: 0;
|
209 |
+
border-top-left-radius: 2px;
|
210 |
+
border-top-right-radius: 0px;
|
211 |
+
border-bottom-right-radius: 0px;
|
212 |
+
border-bottom-left-radius: 2px;
|
213 |
+
}
|
214 |
+
|
215 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next .sek-chevron {
|
216 |
+
-webkit-transform: rotate(-45deg);
|
217 |
+
transform: rotate(-45deg);
|
218 |
+
}
|
219 |
+
|
220 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev, [data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next {
|
221 |
+
position: absolute;
|
222 |
+
z-index: 2;
|
223 |
+
top: calc(50% - 30px);
|
224 |
+
text-align: center;
|
225 |
+
margin-top: 0px;
|
226 |
+
-webkit-backface-visibility: hidden;
|
227 |
+
backface-visibility: hidden;
|
228 |
+
display: block;
|
229 |
+
height: 60px;
|
230 |
+
width: 50px;
|
231 |
+
opacity: 0.6;
|
232 |
+
background-color: rgba(32, 32, 32, 0.4);
|
233 |
+
transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
|
234 |
+
line-height: 64px;
|
235 |
+
cursor: pointer;
|
236 |
+
font-size: 18px;
|
237 |
+
}
|
238 |
+
|
239 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev:hover, [data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next:hover {
|
240 |
+
background-color: rgba(32, 32, 32, 0.7);
|
241 |
+
opacity: 1;
|
242 |
+
width: 100px;
|
243 |
+
}
|
244 |
+
|
245 |
+
@media (max-width: 575.98px) {
|
246 |
+
[data-sek-module-type="czr_img_slider_module"] [data-sek-hide-nav-on-mobile="true"] .swiper-pagination {
|
247 |
+
display: none;
|
248 |
+
}
|
249 |
+
[data-sek-module-type="czr_img_slider_module"] [data-sek-hide-nav-on-mobile="true"] .sek-swiper-nav {
|
250 |
+
display: none;
|
251 |
+
}
|
252 |
+
}
|
assets/front/css/modules/menu-module.css
CHANGED
@@ -1,634 +1,634 @@
|
|
1 |
/*************************************
|
2 |
* MENU MODULE
|
3 |
-
*************************************/
|
4 |
-
.sek-nav-wrap {
|
5 |
-
position: relative;
|
6 |
-
display: -ms-flexbox;
|
7 |
-
display: flex;
|
8 |
-
-ms-flex-wrap: wrap;
|
9 |
-
flex-wrap: wrap;
|
10 |
-
-ms-flex-align: center;
|
11 |
-
align-items: center;
|
12 |
-
-ms-flex-pack: end;
|
13 |
-
justify-content: flex-end;
|
14 |
-
padding: .5rem 0;
|
15 |
-
}
|
16 |
-
|
17 |
-
.sek-mobile-menu-expanded-below .sek-nav-wrap {
|
18 |
-
padding: 0;
|
19 |
-
}
|
20 |
-
|
21 |
-
.sek-nav-collapse {
|
22 |
-
-ms-flex-preferred-size: 100%;
|
23 |
-
flex-basis: 100%;
|
24 |
-
-ms-flex-positive: 1;
|
25 |
-
flex-grow: 1;
|
26 |
-
-ms-flex-align: center;
|
27 |
-
align-items: center;
|
28 |
-
}
|
29 |
-
|
30 |
-
.sek-nav {
|
31 |
-
display: -ms-flexbox;
|
32 |
-
display: flex;
|
33 |
-
-ms-flex-wrap: wrap;
|
34 |
-
flex-wrap: wrap;
|
35 |
-
-ms-flex-direction: column;
|
36 |
-
flex-direction: column;
|
37 |
-
}
|
38 |
-
|
39 |
-
.sek-module .sek-module-inner .sek-nav {
|
40 |
-
margin-right: -10px !important;
|
41 |
-
margin-left: -10px !important;
|
42 |
-
}
|
43 |
-
|
44 |
-
.sek-module .sek-module-inner .sek-nav,
|
45 |
-
.sek-module .sek-module-inner .sek-nav ul {
|
46 |
-
list-style: none !important;
|
47 |
-
padding: 0 !important;
|
48 |
-
margin: 0 !important;
|
49 |
-
}
|
50 |
-
|
51 |
-
.sek-module .sek-module-inner .sek-nav li {
|
52 |
-
list-style: none;
|
53 |
-
padding: 0;
|
54 |
-
}
|
55 |
-
|
56 |
-
.sek-module .sek-module-inner .sek-nav li > ul li {
|
57 |
-
padding: 0;
|
58 |
-
}
|
59 |
-
|
60 |
-
.sek-nav li {
|
61 |
-
font-size: 16px;
|
62 |
-
}
|
63 |
-
|
64 |
-
.sek-nav li a {
|
65 |
-
line-height: 1.5em;
|
66 |
-
padding: .6em .8em;
|
67 |
-
display: -ms-flexbox;
|
68 |
-
display: flex;
|
69 |
-
-ms-flex-align: center;
|
70 |
-
align-items: center;
|
71 |
-
-ms-flex-pack: justify;
|
72 |
-
justify-content: space-between;
|
73 |
-
color: inherit;
|
74 |
-
overflow: hidden;
|
75 |
-
}
|
76 |
-
|
77 |
-
.sek-nav-wrap .sek-nav li a {
|
78 |
-
text-decoration: none;
|
79 |
-
}
|
80 |
-
|
81 |
-
.sek-nav li a:hover .sek-nav__title {
|
82 |
-
text-decoration: underline;
|
83 |
-
}
|
84 |
-
|
85 |
-
.sek-nav li:not(:last-of-type) {
|
86 |
-
border-bottom: 1px solid;
|
87 |
-
border-color: rgba(49, 49, 49, 0.09);
|
88 |
-
}
|
89 |
-
|
90 |
-
.sek-nav .menu-item-has-children,
|
91 |
-
.sek-nav .page_item_has_children {
|
92 |
-
position: relative;
|
93 |
-
}
|
94 |
-
|
95 |
-
.sek-nav .menu-item-has-children > a::after,
|
96 |
-
.sek-nav .page_item_has_children > a::after {
|
97 |
-
content: "\203A";
|
98 |
-
font-family: "Arial Unicode MS", Arial;
|
99 |
-
moz-osx-font-smoothing: grayscale;
|
100 |
-
-webkit-font-smoothing: antialiased;
|
101 |
-
display: none;
|
102 |
-
font-style: normal;
|
103 |
-
font-variant: normal;
|
104 |
-
text-rendering: auto;
|
105 |
-
font-weight: 900;
|
106 |
-
transition: all 0.3s ease;
|
107 |
-
-webkit-transform-style: preserve-3d;
|
108 |
-
transform-style: preserve-3d;
|
109 |
-
-webkit-backface-visibility: hidden;
|
110 |
-
backface-visibility: hidden;
|
111 |
-
-webkit-perspective: 1000px;
|
112 |
-
perspective: 1000px;
|
113 |
-
padding: 0 .45em;
|
114 |
-
font-size: 1em;
|
115 |
-
position: relative;
|
116 |
-
-webkit-transform: translateZ(0) rotate(90deg);
|
117 |
-
transform: translateZ(0) rotate(90deg);
|
118 |
-
-ms-transform: rotate(90deg);
|
119 |
-
}
|
120 |
-
|
121 |
-
.sek-nav .menu-item-has-children.show > a::after,
|
122 |
-
.sek-nav .page_item_has_children.show > a::after {
|
123 |
-
-webkit-transform: translateZ(0) rotate(-90deg) !important;
|
124 |
-
transform: translateZ(0) rotate(-90deg) !important;
|
125 |
-
-ms-transform: rotate(-90deg) !important;
|
126 |
-
}
|
127 |
-
|
128 |
-
.sek-nav .sub-menu,
|
129 |
-
.sek-nav .children {
|
130 |
-
position: static;
|
131 |
-
float: none;
|
132 |
-
list-style: none;
|
133 |
-
border-radius: 0;
|
134 |
-
border: 0;
|
135 |
-
margin: 0;
|
136 |
-
padding: 0;
|
137 |
-
font-size: inherit;
|
138 |
-
}
|
139 |
-
|
140 |
-
@media (min-width: 768px) {
|
141 |
-
.sek-nav .sub-menu,
|
142 |
-
.sek-nav .children {
|
143 |
-
position: absolute;
|
144 |
-
display: none;
|
145 |
-
top: 100%;
|
146 |
-
left: 0;
|
147 |
-
z-index: 1000;
|
148 |
-
min-width: 10rem;
|
149 |
-
max-width: 50vw;
|
150 |
-
}
|
151 |
-
}
|
152 |
-
|
153 |
-
@media (min-width: 768px) {
|
154 |
-
.sek-nav {
|
155 |
-
-ms-flex-direction: row;
|
156 |
-
flex-direction: row;
|
157 |
-
}
|
158 |
-
.sek-nav .menu-item-has-children > a::after,
|
159 |
-
.sek-nav .page_item_has_children > a::after {
|
160 |
-
display: inline-block;
|
161 |
-
}
|
162 |
-
.sek-nav > li:not(:last-of-type) {
|
163 |
-
border-bottom: none;
|
164 |
-
}
|
165 |
-
.sek-nav > li > a {
|
166 |
-
padding: 5px;
|
167 |
-
}
|
168 |
-
.sek-module .sek-module-inner .sek-nav li {
|
169 |
-
margin: 0 5px;
|
170 |
-
}
|
171 |
-
.sek-module .sek-module-inner .sek-nav li > ul li {
|
172 |
-
padding: 0 0 0 .9rem;
|
173 |
-
}
|
174 |
-
.sek-nav-collapse {
|
175 |
-
display: -ms-flexbox !important;
|
176 |
-
display: flex !important;
|
177 |
-
-ms-flex-preferred-size: auto;
|
178 |
-
flex-basis: auto;
|
179 |
-
justify-content: flex-end;
|
180 |
-
-webkit-box-pack: end;
|
181 |
-
-ms-flex-pack: end;
|
182 |
-
}
|
183 |
-
.sek-mobile-menu-expanded-below {
|
184 |
-
display: none !important;
|
185 |
-
}
|
186 |
-
.sek-nav-toggler {
|
187 |
-
display: none;
|
188 |
-
}
|
189 |
-
.sek-dropdown-menu {
|
190 |
-
background: white;
|
191 |
-
box-shadow: 1px 2px 2px 2px rgba(0, 0, 0, 0.15);
|
192 |
-
}
|
193 |
-
.sek-nav .sek-dropdown-menu li {
|
194 |
-
padding: 0 10px !important;
|
195 |
-
margin: 0 !important;
|
196 |
-
}
|
197 |
-
.sek-nav .sek-dropdown-menu li a {
|
198 |
-
padding: 10px 12px;
|
199 |
-
}
|
200 |
-
.sek-dropdown-menu ul {
|
201 |
-
left: 100%;
|
202 |
-
}
|
203 |
-
.sek-dropdown-menu .sek-menu-link__row-reverse {
|
204 |
-
-ms-flex-direction: row-reverse !important;
|
205 |
-
flex-direction: row-reverse !important;
|
206 |
-
}
|
207 |
-
.sek-dropdown-menu .sek-nav__title {
|
208 |
-
word-break: normal;
|
209 |
-
white-space: nowrap;
|
210 |
-
}
|
211 |
-
.sek-dropdown-submenu .sek-dropdown-menu {
|
212 |
-
top: 15px;
|
213 |
-
}
|
214 |
-
.sek-submenu-fade .sek-dropdown-menu a {
|
215 |
-
transition: all 0.25s ease;
|
216 |
-
-webkit-transform: translate(0, 0);
|
217 |
-
transform: translate(0, 0);
|
218 |
-
}
|
219 |
-
.sek-submenu-fade .sek-dropdown-menu a:hover {
|
220 |
-
-webkit-transform: translate(3px, 0);
|
221 |
-
transform: translate(3px, 0);
|
222 |
-
}
|
223 |
-
.sek-submenu-fade .page_item_has_children,
|
224 |
-
.sek-submenu-fade .menu-item-has-children {
|
225 |
-
-webkit-perspective: 1000px;
|
226 |
-
perspective: 1000px;
|
227 |
-
}
|
228 |
-
.sek-submenu-fade .page_item_has_children > ul,
|
229 |
-
.sek-submenu-fade .menu-item-has-children > ul {
|
230 |
-
position: fixed;
|
231 |
-
opacity: 0;
|
232 |
-
visibility: hidden;
|
233 |
-
display: block;
|
234 |
-
transition: all 0.25s ease-in-out;
|
235 |
-
-webkit-transform: translate(0, -10px);
|
236 |
-
transform: translate(0, -10px);
|
237 |
-
}
|
238 |
-
.sek-submenu-fade .page_item_has_children:not(.show),
|
239 |
-
.sek-submenu-fade .menu-item-has-children:not(.show) {
|
240 |
-
overflow: hidden;
|
241 |
-
}
|
242 |
-
.sek-submenu-fade .page_item_has_children:not(.show) ul,
|
243 |
-
.sek-submenu-fade .menu-item-has-children:not(.show) ul {
|
244 |
-
pointer-events: none;
|
245 |
-
cursor: not-allowed;
|
246 |
-
}
|
247 |
-
.sek-submenu-fade li.show {
|
248 |
-
-webkit-perspective: none;
|
249 |
-
perspective: none;
|
250 |
-
}
|
251 |
-
.sek-submenu-fade li.show > ul {
|
252 |
-
position: absolute;
|
253 |
-
visibility: visible;
|
254 |
-
opacity: 1;
|
255 |
-
-webkit-transform: translate(0, 0);
|
256 |
-
transform: translate(0, 0);
|
257 |
-
}
|
258 |
-
.nb-collapsible-mobile-menu .nb-dd-mm-toggle-wrapper {
|
259 |
-
display: none;
|
260 |
-
}
|
261 |
-
}
|
262 |
-
|
263 |
-
.sek-dropdown-submenu > a::after {
|
264 |
-
-webkit-transform: translateZ(0) rotate(0deg) !important;
|
265 |
-
transform: translateZ(0) rotate(0deg) !important;
|
266 |
-
-ms-transform: rotate(0deg) !important;
|
267 |
-
}
|
268 |
-
|
269 |
-
.sek-dropdown-submenu > a[class*=-reverse]::after {
|
270 |
-
top: .1em;
|
271 |
-
-webkit-transform: translateZ(0) rotate(-180deg) !important;
|
272 |
-
transform: translateZ(0) rotate(-180deg) !important;
|
273 |
-
-ms-transform: rotate(-180deg) !important;
|
274 |
-
}
|
275 |
-
|
276 |
-
.sek-dropdown-menu {
|
277 |
-
position: static;
|
278 |
-
float: none;
|
279 |
-
list-style: none;
|
280 |
-
border-radius: 0;
|
281 |
-
border: 0;
|
282 |
-
margin: 0;
|
283 |
-
padding: 0;
|
284 |
-
font-size: inherit;
|
285 |
-
}
|
286 |
-
|
287 |
-
@media (min-width: 768px) {
|
288 |
-
.sek-dropdown-menu {
|
289 |
-
position: absolute;
|
290 |
-
display: none;
|
291 |
-
top: 100%;
|
292 |
-
left: 0;
|
293 |
-
z-index: 1000;
|
294 |
-
min-width: 10rem;
|
295 |
-
max-width: 50vw;
|
296 |
-
}
|
297 |
-
}
|
298 |
-
|
299 |
-
.show > .sek-dropdown-menu {
|
300 |
-
display: block;
|
301 |
-
}
|
302 |
-
|
303 |
-
.sek-dropdown-menu .sek-nav .sek-nav__title {
|
304 |
-
word-break: break-word;
|
305 |
-
white-space: normal;
|
306 |
-
}
|
307 |
-
|
308 |
-
.sek-dropdown-menu.open-right {
|
309 |
-
left: 0;
|
310 |
-
right: auto;
|
311 |
-
}
|
312 |
-
|
313 |
-
.sek-dropdown-menu.open-right ul:not(.open-left),
|
314 |
-
.sek-dropdown-menu ul.open-right {
|
315 |
-
left: 100%;
|
316 |
-
right: auto;
|
317 |
-
top: 0;
|
318 |
-
}
|
319 |
-
|
320 |
-
.sek-dropdown-menu.open-left {
|
321 |
-
left: auto;
|
322 |
-
right: 0;
|
323 |
-
}
|
324 |
-
|
325 |
-
.sek-dropdown-menu.open-left ul:not(.open-right),
|
326 |
-
.sek-dropdown-menu ul.open-left {
|
327 |
-
right: 100%;
|
328 |
-
left: auto;
|
329 |
-
}
|
330 |
-
|
331 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] {
|
332 |
-
overflow: auto;
|
333 |
-
max-height: 80vh;
|
334 |
-
padding-bottom: 10px;
|
335 |
-
}
|
336 |
-
|
337 |
-
nav.nb-collapsible-mobile-menu li .sub-menu li a {
|
338 |
-
font-size: 0.88em;
|
339 |
-
}
|
340 |
-
|
341 |
-
nav.nb-collapsible-mobile-menu li .sub-menu li > a {
|
342 |
-
padding: .6em 32px;
|
343 |
-
}
|
344 |
-
|
345 |
-
nav.nb-collapsible-mobile-menu li .sub-menu li li > a {
|
346 |
-
padding: .6em 60px;
|
347 |
-
}
|
348 |
-
|
349 |
-
nav.nb-collapsible-mobile-menu li .sub-menu li li li > a {
|
350 |
-
padding: .6em 80px;
|
351 |
-
}
|
352 |
-
|
353 |
-
nav.nb-collapsible-mobile-menu li .sub-menu li li li li > a {
|
354 |
-
padding: .6em 100px;
|
355 |
-
}
|
356 |
-
|
357 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state] {
|
358 |
-
display: none;
|
359 |
-
}
|
360 |
-
|
361 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] {
|
362 |
-
display: block;
|
363 |
-
}
|
364 |
-
|
365 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"],
|
366 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] li,
|
367 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] ul {
|
368 |
-
background: #ffffff;
|
369 |
-
}
|
370 |
-
|
371 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .sub-menu,
|
372 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] li {
|
373 |
-
position: relative;
|
374 |
-
}
|
375 |
-
|
376 |
-
[data-sek-is-mobile-vertical-menu="yes"] .sek-nav li a {
|
377 |
-
min-height: 45px;
|
378 |
-
box-sizing: border-box;
|
379 |
-
justify-content: flex-start;
|
380 |
-
-webkit-box-pack: start;
|
381 |
-
-ms-flex-pack: start;
|
382 |
-
}
|
383 |
-
|
384 |
-
[data-sek-is-mobile-vertical-menu="yes"] .sub-menu {
|
385 |
-
display: none;
|
386 |
-
}
|
387 |
-
|
388 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .sub-menu {
|
389 |
-
display: none;
|
390 |
-
}
|
391 |
-
|
392 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .sub-menu.expanded {
|
393 |
-
display: block;
|
394 |
-
}
|
395 |
-
|
396 |
/*
|
397 |
* Mobile dropdown on click
|
398 |
-
*/
|
399 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .page_item_has_children > a,
|
400 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .menu-item-has-children > a {
|
401 |
-
padding-right: 60px;
|
402 |
-
}
|
403 |
-
|
404 |
-
.nb-dd-mm-toggle-wrapper {
|
405 |
-
position: absolute;
|
406 |
-
top: 1px;
|
407 |
-
right: 0;
|
408 |
-
text-align: center;
|
409 |
-
line-height: 1;
|
410 |
-
bottom: 1px;
|
411 |
-
height: 45px;
|
412 |
-
width: 60px;
|
413 |
-
}
|
414 |
-
|
415 |
-
.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .nb-dd-mm-toggle-wrapper {
|
416 |
-
display: block;
|
417 |
-
}
|
418 |
-
|
419 |
-
.nb-dd-mm-toggle {
|
420 |
-
background: none !important;
|
421 |
-
-webkit-appearance: none;
|
422 |
-
outline: none;
|
423 |
-
border: none;
|
424 |
-
padding: 0;
|
425 |
-
cursor: pointer;
|
426 |
-
display: block;
|
427 |
-
height: 45px;
|
428 |
-
width: 60px;
|
429 |
-
box-sizing: border-box;
|
430 |
-
overflow: hidden;
|
431 |
-
}
|
432 |
-
|
433 |
-
.nb-dd-mm-toggle i {
|
434 |
-
display: block;
|
435 |
-
transition: all .3s ease;
|
436 |
-
-webkit-transform-style: preserve-3d;
|
437 |
-
transform-style: preserve-3d;
|
438 |
-
-webkit-backface-visibility: hidden;
|
439 |
-
backface-visibility: hidden;
|
440 |
-
width: 100%;
|
441 |
-
color: #000000;
|
442 |
-
}
|
443 |
-
|
444 |
-
li.expanded > .nb-dd-mm-toggle-wrapper .nb-arrow-for-mobile-menu {
|
445 |
-
-webkit-transform: rotate(-180deg);
|
446 |
-
transform: rotate(-180deg);
|
447 |
-
}
|
448 |
-
|
449 |
-
.nb-arrow-for-mobile-menu::after {
|
450 |
-
content: "\25BE";
|
451 |
-
font-family: "Arial Unicode MS", Arial;
|
452 |
-
moz-osx-font-smoothing: grayscale;
|
453 |
-
-webkit-font-smoothing: antialiased;
|
454 |
-
font-style: normal;
|
455 |
-
font-variant: normal;
|
456 |
-
text-rendering: auto;
|
457 |
-
font-weight: 900;
|
458 |
-
transition: all 0.3s ease;
|
459 |
-
-webkit-transform-style: preserve-3d;
|
460 |
-
transform-style: preserve-3d;
|
461 |
-
-webkit-backface-visibility: hidden;
|
462 |
-
backface-visibility: hidden;
|
463 |
-
-webkit-perspective: 1000px;
|
464 |
-
perspective: 1000px;
|
465 |
-
padding: 0 .45em;
|
466 |
-
font-size: 18px;
|
467 |
-
line-height: 45px;
|
468 |
-
position: relative;
|
469 |
-
}
|
470 |
-
|
471 |
-
.nb-loc .sek-module-inner nav .sek-nav-toggler {
|
472 |
-
-webkit-appearance: none !important;
|
473 |
-
cursor: pointer;
|
474 |
-
height: 40px;
|
475 |
-
width: 40px;
|
476 |
-
padding: 0;
|
477 |
-
vertical-align: middle;
|
478 |
-
}
|
479 |
-
|
480 |
-
.nb-loc .sek-module-inner nav .sek-nav-toggler, .nb-loc .sek-module-inner nav .sek-nav-toggler:hover, .nb-loc .sek-module-inner nav .sek-nav-toggler:focus {
|
481 |
-
background: 0 0;
|
482 |
-
background-color: rgba(0, 0, 0, 0);
|
483 |
-
color: black;
|
484 |
-
outline: none;
|
485 |
-
border: none;
|
486 |
-
}
|
487 |
-
|
488 |
-
.sek-ham__span-wrapper {
|
489 |
-
height: 12px;
|
490 |
-
position: relative;
|
491 |
-
display: block;
|
492 |
-
}
|
493 |
-
|
494 |
-
.sek-ham__span-wrapper .line {
|
495 |
-
display: block;
|
496 |
-
height: 1.5px;
|
497 |
-
position: absolute;
|
498 |
-
left: 10px;
|
499 |
-
border-radius: 5px;
|
500 |
-
background-clip: padding-box;
|
501 |
-
transition: all ease .35s;
|
502 |
-
-webkit-backface-visibility: hidden;
|
503 |
-
backface-visibility: hidden;
|
504 |
-
border-top: 1.5px solid;
|
505 |
-
}
|
506 |
-
|
507 |
-
.sek-ham__span-wrapper .line-1 {
|
508 |
-
top: 0;
|
509 |
-
}
|
510 |
-
|
511 |
-
.sek-ham__span-wrapper .line-2 {
|
512 |
-
top: 50%;
|
513 |
-
}
|
514 |
-
|
515 |
-
.sek-ham__span-wrapper .line-3 {
|
516 |
-
top: 100%;
|
517 |
-
}
|
518 |
-
|
519 |
-
.sek-nav-toggler .line-1 {
|
520 |
-
-webkit-transform: translate(-3px, 6px) rotate(45deg);
|
521 |
-
transform: translate(-3px, 6px) rotate(45deg);
|
522 |
-
width: 28px;
|
523 |
-
}
|
524 |
-
|
525 |
-
.sek-nav-toggler .line-2 {
|
526 |
-
opacity: 0;
|
527 |
-
}
|
528 |
-
|
529 |
-
.sek-nav-toggler .line-3 {
|
530 |
-
-webkit-transform: translate(-3px, -6px) rotate(-45deg);
|
531 |
-
transform: translate(-3px, -6px) rotate(-45deg);
|
532 |
-
width: 28px;
|
533 |
-
}
|
534 |
-
|
535 |
-
.sek-nav-toggler.sek-collapsed .line {
|
536 |
-
width: 20px;
|
537 |
-
-webkit-transform: translate(0, 0) rotate(0);
|
538 |
-
transform: translate(0, 0) rotate(0);
|
539 |
-
opacity: 1;
|
540 |
-
}
|
541 |
-
|
542 |
-
.sek-nav-toggler.sek-collapsed.hovering .line {
|
543 |
-
-webkit-transform: translateX(-3px);
|
544 |
-
transform: translateX(-3px);
|
545 |
-
width: 26px;
|
546 |
-
}
|
547 |
-
|
548 |
-
.nb-module-menu-search {
|
549 |
-
position: relative;
|
550 |
-
}
|
551 |
-
|
552 |
-
[data-sek-is-mobile-vertical-menu="yes"] .nb-module-menu-search {
|
553 |
-
display: none;
|
554 |
-
}
|
555 |
-
|
556 |
-
.nb-svg-search-icon {
|
557 |
-
cursor: pointer;
|
558 |
-
padding: 0;
|
559 |
-
}
|
560 |
-
|
561 |
-
.nb-module-menu-search .nb-search-expand {
|
562 |
-
display: none;
|
563 |
-
background: #fff;
|
564 |
-
position: absolute;
|
565 |
-
z-index: 100;
|
566 |
-
top: 49px;
|
567 |
-
right: 0;
|
568 |
-
left: 0;
|
569 |
-
width: 340px;
|
570 |
-
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
|
571 |
-
}
|
572 |
-
|
573 |
-
.nb-search-expand .nb-search-expand-inner {
|
574 |
-
border: 1px solid #eee;
|
575 |
-
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.15);
|
576 |
-
transition: -webkit-transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;
|
577 |
-
transition: height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;
|
578 |
-
transition: transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;
|
579 |
-
transition: transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;
|
580 |
-
padding: 15px;
|
581 |
-
}
|
582 |
-
|
583 |
-
.nb-search-expand .nb-search-expand-inner [role=search].search-form label::after {
|
584 |
-
content: none;
|
585 |
-
}
|
586 |
-
|
587 |
-
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner [role=search].search-form {
|
588 |
-
display: -ms-flexbox;
|
589 |
-
display: flex;
|
590 |
-
float: none;
|
591 |
-
}
|
592 |
-
|
593 |
-
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner label input[type=search] {
|
594 |
-
max-width: 100%;
|
595 |
-
}
|
596 |
-
|
597 |
-
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner input[type=submit], [data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search form input[type=submit] {
|
598 |
-
margin: 0;
|
599 |
-
background: #808080 !important;
|
600 |
-
color: #fff;
|
601 |
-
font-size: 16px;
|
602 |
-
padding: 10px 10px;
|
603 |
-
font-weight: normal;
|
604 |
-
display: inline-block;
|
605 |
-
border: none;
|
606 |
-
cursor: pointer;
|
607 |
-
border-radius: 3px;
|
608 |
-
}
|
609 |
-
|
610 |
-
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner input[type=search], [data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search input[type=search],
|
611 |
-
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner input[type=submit], [data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search form input[type=submit] {
|
612 |
-
text-transform: none !important;
|
613 |
-
}
|
614 |
-
|
615 |
-
.nb-mobile-search {
|
616 |
-
display: none;
|
617 |
-
}
|
618 |
-
|
619 |
-
[data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search {
|
620 |
-
display: block;
|
621 |
-
padding: 6px 14px 15px;
|
622 |
-
}
|
623 |
-
|
624 |
-
[data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search input {
|
625 |
-
font-size: 16px;
|
626 |
-
}
|
627 |
-
|
628 |
-
.nb-search-expand-inner input[type="search"], .nb-mobile-search input[type="search"] {
|
629 |
-
color: #000000 !important;
|
630 |
-
}
|
631 |
-
|
632 |
-
.nb-search-expand-inner input[type="submit"], .nb-mobile-search input[type="submit"] {
|
633 |
-
color: #ffffff !important;
|
634 |
-
}
|
1 |
/*************************************
|
2 |
* MENU MODULE
|
3 |
+
*************************************/
|
4 |
+
.sek-nav-wrap {
|
5 |
+
position: relative;
|
6 |
+
display: -ms-flexbox;
|
7 |
+
display: flex;
|
8 |
+
-ms-flex-wrap: wrap;
|
9 |
+
flex-wrap: wrap;
|
10 |
+
-ms-flex-align: center;
|
11 |
+
align-items: center;
|
12 |
+
-ms-flex-pack: end;
|
13 |
+
justify-content: flex-end;
|
14 |
+
padding: .5rem 0;
|
15 |
+
}
|
16 |
+
|
17 |
+
.sek-mobile-menu-expanded-below .sek-nav-wrap {
|
18 |
+
padding: 0;
|
19 |
+
}
|
20 |
+
|
21 |
+
.sek-nav-collapse {
|
22 |
+
-ms-flex-preferred-size: 100%;
|
23 |
+
flex-basis: 100%;
|
24 |
+
-ms-flex-positive: 1;
|
25 |
+
flex-grow: 1;
|
26 |
+
-ms-flex-align: center;
|
27 |
+
align-items: center;
|
28 |
+
}
|
29 |
+
|
30 |
+
.sek-nav {
|
31 |
+
display: -ms-flexbox;
|
32 |
+
display: flex;
|
33 |
+
-ms-flex-wrap: wrap;
|
34 |
+
flex-wrap: wrap;
|
35 |
+
-ms-flex-direction: column;
|
36 |
+
flex-direction: column;
|
37 |
+
}
|
38 |
+
|
39 |
+
.sek-module .sek-module-inner .sek-nav {
|
40 |
+
margin-right: -10px !important;
|
41 |
+
margin-left: -10px !important;
|
42 |
+
}
|
43 |
+
|
44 |
+
.sek-module .sek-module-inner .sek-nav,
|
45 |
+
.sek-module .sek-module-inner .sek-nav ul {
|
46 |
+
list-style: none !important;
|
47 |
+
padding: 0 !important;
|
48 |
+
margin: 0 !important;
|
49 |
+
}
|
50 |
+
|
51 |
+
.sek-module .sek-module-inner .sek-nav li {
|
52 |
+
list-style: none;
|
53 |
+
padding: 0;
|
54 |
+
}
|
55 |
+
|
56 |
+
.sek-module .sek-module-inner .sek-nav li > ul li {
|
57 |
+
padding: 0;
|
58 |
+
}
|
59 |
+
|
60 |
+
.sek-nav li {
|
61 |
+
font-size: 16px;
|
62 |
+
}
|
63 |
+
|
64 |
+
.sek-nav li a {
|
65 |
+
line-height: 1.5em;
|
66 |
+
padding: .6em .8em;
|
67 |
+
display: -ms-flexbox;
|
68 |
+
display: flex;
|
69 |
+
-ms-flex-align: center;
|
70 |
+
align-items: center;
|
71 |
+
-ms-flex-pack: justify;
|
72 |
+
justify-content: space-between;
|
73 |
+
color: inherit;
|
74 |
+
overflow: hidden;
|
75 |
+
}
|
76 |
+
|
77 |
+
.sek-nav-wrap .sek-nav li a {
|
78 |
+
text-decoration: none;
|
79 |
+
}
|
80 |
+
|
81 |
+
.sek-nav li a:hover .sek-nav__title {
|
82 |
+
text-decoration: underline;
|
83 |
+
}
|
84 |
+
|
85 |
+
.sek-nav li:not(:last-of-type) {
|
86 |
+
border-bottom: 1px solid;
|
87 |
+
border-color: rgba(49, 49, 49, 0.09);
|
88 |
+
}
|
89 |
+
|
90 |
+
.sek-nav .menu-item-has-children,
|
91 |
+
.sek-nav .page_item_has_children {
|
92 |
+
position: relative;
|
93 |
+
}
|
94 |
+
|
95 |
+
.sek-nav .menu-item-has-children > a::after,
|
96 |
+
.sek-nav .page_item_has_children > a::after {
|
97 |
+
content: "\203A";
|
98 |
+
font-family: "Arial Unicode MS", Arial;
|
99 |
+
moz-osx-font-smoothing: grayscale;
|
100 |
+
-webkit-font-smoothing: antialiased;
|
101 |
+
display: none;
|
102 |
+
font-style: normal;
|
103 |
+
font-variant: normal;
|
104 |
+
text-rendering: auto;
|
105 |
+
font-weight: 900;
|
106 |
+
transition: all 0.3s ease;
|
107 |
+
-webkit-transform-style: preserve-3d;
|
108 |
+
transform-style: preserve-3d;
|
109 |
+
-webkit-backface-visibility: hidden;
|
110 |
+
backface-visibility: hidden;
|
111 |
+
-webkit-perspective: 1000px;
|
112 |
+
perspective: 1000px;
|
113 |
+
padding: 0 .45em;
|
114 |
+
font-size: 1em;
|
115 |
+
position: relative;
|
116 |
+
-webkit-transform: translateZ(0) rotate(90deg);
|
117 |
+
transform: translateZ(0) rotate(90deg);
|
118 |
+
-ms-transform: rotate(90deg);
|
119 |
+
}
|
120 |
+
|
121 |
+
.sek-nav .menu-item-has-children.show > a::after,
|
122 |
+
.sek-nav .page_item_has_children.show > a::after {
|
123 |
+
-webkit-transform: translateZ(0) rotate(-90deg) !important;
|
124 |
+
transform: translateZ(0) rotate(-90deg) !important;
|
125 |
+
-ms-transform: rotate(-90deg) !important;
|
126 |
+
}
|
127 |
+
|
128 |
+
.sek-nav .sub-menu,
|
129 |
+
.sek-nav .children {
|
130 |
+
position: static;
|
131 |
+
float: none;
|
132 |
+
list-style: none;
|
133 |
+
border-radius: 0;
|
134 |
+
border: 0;
|
135 |
+
margin: 0;
|
136 |
+
padding: 0;
|
137 |
+
font-size: inherit;
|
138 |
+
}
|
139 |
+
|
140 |
+
@media (min-width: 768px) {
|
141 |
+
.sek-nav .sub-menu,
|
142 |
+
.sek-nav .children {
|
143 |
+
position: absolute;
|
144 |
+
display: none;
|
145 |
+
top: 100%;
|
146 |
+
left: 0;
|
147 |
+
z-index: 1000;
|
148 |
+
min-width: 10rem;
|
149 |
+
max-width: 50vw;
|
150 |
+
}
|
151 |
+
}
|
152 |
+
|
153 |
+
@media (min-width: 768px) {
|
154 |
+
.sek-nav {
|
155 |
+
-ms-flex-direction: row;
|
156 |
+
flex-direction: row;
|
157 |
+
}
|
158 |
+
.sek-nav .menu-item-has-children > a::after,
|
159 |
+
.sek-nav .page_item_has_children > a::after {
|
160 |
+
display: inline-block;
|
161 |
+
}
|
162 |
+
.sek-nav > li:not(:last-of-type) {
|
163 |
+
border-bottom: none;
|
164 |
+
}
|
165 |
+
.sek-nav > li > a {
|
166 |
+
padding: 5px;
|
167 |
+
}
|
168 |
+
.sek-module .sek-module-inner .sek-nav li {
|
169 |
+
margin: 0 5px;
|
170 |
+
}
|
171 |
+
.sek-module .sek-module-inner .sek-nav li > ul li {
|
172 |
+
padding: 0 0 0 .9rem;
|
173 |
+
}
|
174 |
+
.sek-nav-collapse {
|
175 |
+
display: -ms-flexbox !important;
|
176 |
+
display: flex !important;
|
177 |
+
-ms-flex-preferred-size: auto;
|
178 |
+
flex-basis: auto;
|
179 |
+
justify-content: flex-end;
|
180 |
+
-webkit-box-pack: end;
|
181 |
+
-ms-flex-pack: end;
|
182 |
+
}
|
183 |
+
.sek-mobile-menu-expanded-below {
|
184 |
+
display: none !important;
|
185 |
+
}
|
186 |
+
.sek-nav-toggler {
|
187 |
+
display: none;
|
188 |
+
}
|
189 |
+
.sek-dropdown-menu {
|
190 |
+
background: white;
|
191 |
+
box-shadow: 1px 2px 2px 2px rgba(0, 0, 0, 0.15);
|
192 |
+
}
|
193 |
+
.sek-nav .sek-dropdown-menu li {
|
194 |
+
padding: 0 10px !important;
|
195 |
+
margin: 0 !important;
|
196 |
+
}
|
197 |
+
.sek-nav .sek-dropdown-menu li a {
|
198 |
+
padding: 10px 12px;
|
199 |
+
}
|
200 |
+
.sek-dropdown-menu ul {
|
201 |
+
left: 100%;
|
202 |
+
}
|
203 |
+
.sek-dropdown-menu .sek-menu-link__row-reverse {
|
204 |
+
-ms-flex-direction: row-reverse !important;
|
205 |
+
flex-direction: row-reverse !important;
|
206 |
+
}
|
207 |
+
.sek-dropdown-menu .sek-nav__title {
|
208 |
+
word-break: normal;
|
209 |
+
white-space: nowrap;
|
210 |
+
}
|
211 |
+
.sek-dropdown-submenu .sek-dropdown-menu {
|
212 |
+
top: 15px;
|
213 |
+
}
|
214 |
+
.sek-submenu-fade .sek-dropdown-menu a {
|
215 |
+
transition: all 0.25s ease;
|
216 |
+
-webkit-transform: translate(0, 0);
|
217 |
+
transform: translate(0, 0);
|
218 |
+
}
|
219 |
+
.sek-submenu-fade .sek-dropdown-menu a:hover {
|
220 |
+
-webkit-transform: translate(3px, 0);
|
221 |
+
transform: translate(3px, 0);
|
222 |
+
}
|
223 |
+
.sek-submenu-fade .page_item_has_children,
|
224 |
+
.sek-submenu-fade .menu-item-has-children {
|
225 |
+
-webkit-perspective: 1000px;
|
226 |
+
perspective: 1000px;
|
227 |
+
}
|
228 |
+
.sek-submenu-fade .page_item_has_children > ul,
|
229 |
+
.sek-submenu-fade .menu-item-has-children > ul {
|
230 |
+
position: fixed;
|
231 |
+
opacity: 0;
|
232 |
+
visibility: hidden;
|
233 |
+
display: block;
|
234 |
+
transition: all 0.25s ease-in-out;
|
235 |
+
-webkit-transform: translate(0, -10px);
|
236 |
+
transform: translate(0, -10px);
|
237 |
+
}
|
238 |
+
.sek-submenu-fade .page_item_has_children:not(.show),
|
239 |
+
.sek-submenu-fade .menu-item-has-children:not(.show) {
|
240 |
+
overflow: hidden;
|
241 |
+
}
|
242 |
+
.sek-submenu-fade .page_item_has_children:not(.show) ul,
|
243 |
+
.sek-submenu-fade .menu-item-has-children:not(.show) ul {
|
244 |
+
pointer-events: none;
|
245 |
+
cursor: not-allowed;
|
246 |
+
}
|
247 |
+
.sek-submenu-fade li.show {
|
248 |
+
-webkit-perspective: none;
|
249 |
+
perspective: none;
|
250 |
+
}
|
251 |
+
.sek-submenu-fade li.show > ul {
|
252 |
+
position: absolute;
|
253 |
+
visibility: visible;
|
254 |
+
opacity: 1;
|
255 |
+
-webkit-transform: translate(0, 0);
|
256 |
+
transform: translate(0, 0);
|
257 |
+
}
|
258 |
+
.nb-collapsible-mobile-menu .nb-dd-mm-toggle-wrapper {
|
259 |
+
display: none;
|
260 |
+
}
|
261 |
+
}
|
262 |
+
|
263 |
+
.sek-dropdown-submenu > a::after {
|
264 |
+
-webkit-transform: translateZ(0) rotate(0deg) !important;
|
265 |
+
transform: translateZ(0) rotate(0deg) !important;
|
266 |
+
-ms-transform: rotate(0deg) !important;
|
267 |
+
}
|
268 |
+
|
269 |
+
.sek-dropdown-submenu > a[class*=-reverse]::after {
|
270 |
+
top: .1em;
|
271 |
+
-webkit-transform: translateZ(0) rotate(-180deg) !important;
|
272 |
+
transform: translateZ(0) rotate(-180deg) !important;
|
273 |
+
-ms-transform: rotate(-180deg) !important;
|
274 |
+
}
|
275 |
+
|
276 |
+
.sek-dropdown-menu {
|
277 |
+
position: static;
|
278 |
+
float: none;
|
279 |
+
list-style: none;
|
280 |
+
border-radius: 0;
|
281 |
+
border: 0;
|
282 |
+
margin: 0;
|
283 |
+
padding: 0;
|
284 |
+
font-size: inherit;
|
285 |
+
}
|
286 |
+
|
287 |
+
@media (min-width: 768px) {
|
288 |
+
.sek-dropdown-menu {
|
289 |
+
position: absolute;
|
290 |
+
display: none;
|
291 |
+
top: 100%;
|
292 |
+
left: 0;
|
293 |
+
z-index: 1000;
|
294 |
+
min-width: 10rem;
|
295 |
+
max-width: 50vw;
|
296 |
+
}
|
297 |
+
}
|
298 |
+
|
299 |
+
.show > .sek-dropdown-menu {
|
300 |
+
display: block;
|
301 |
+
}
|
302 |
+
|
303 |
+
.sek-dropdown-menu .sek-nav .sek-nav__title {
|
304 |
+
word-break: break-word;
|
305 |
+
white-space: normal;
|
306 |
+
}
|
307 |
+
|
308 |
+
.sek-dropdown-menu.open-right {
|
309 |
+
left: 0;
|
310 |
+
right: auto;
|
311 |
+
}
|
312 |
+
|
313 |
+
.sek-dropdown-menu.open-right ul:not(.open-left),
|
314 |
+
.sek-dropdown-menu ul.open-right {
|
315 |
+
left: 100%;
|
316 |
+
right: auto;
|
317 |
+
top: 0;
|
318 |
+
}
|
319 |
+
|
320 |
+
.sek-dropdown-menu.open-left {
|
321 |
+
left: auto;
|
322 |
+
right: 0;
|
323 |
+
}
|
324 |
+
|
325 |
+
.sek-dropdown-menu.open-left ul:not(.open-right),
|
326 |
+
.sek-dropdown-menu ul.open-left {
|
327 |
+
right: 100%;
|
328 |
+
left: auto;
|
329 |
+
}
|
330 |
+
|
331 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] {
|
332 |
+
overflow: auto;
|
333 |
+
max-height: 80vh;
|
334 |
+
padding-bottom: 10px;
|
335 |
+
}
|
336 |
+
|
337 |
+
nav.nb-collapsible-mobile-menu li .sub-menu li a {
|
338 |
+
font-size: 0.88em;
|
339 |
+
}
|
340 |
+
|
341 |
+
nav.nb-collapsible-mobile-menu li .sub-menu li > a {
|
342 |
+
padding: .6em 32px;
|
343 |
+
}
|
344 |
+
|
345 |
+
nav.nb-collapsible-mobile-menu li .sub-menu li li > a {
|
346 |
+
padding: .6em 60px;
|
347 |
+
}
|
348 |
+
|
349 |
+
nav.nb-collapsible-mobile-menu li .sub-menu li li li > a {
|
350 |
+
padding: .6em 80px;
|
351 |
+
}
|
352 |
+
|
353 |
+
nav.nb-collapsible-mobile-menu li .sub-menu li li li li > a {
|
354 |
+
padding: .6em 100px;
|
355 |
+
}
|
356 |
+
|
357 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state] {
|
358 |
+
display: none;
|
359 |
+
}
|
360 |
+
|
361 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] {
|
362 |
+
display: block;
|
363 |
+
}
|
364 |
+
|
365 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"],
|
366 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] li,
|
367 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] ul {
|
368 |
+
background: #ffffff;
|
369 |
+
}
|
370 |
+
|
371 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .sub-menu,
|
372 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] li {
|
373 |
+
position: relative;
|
374 |
+
}
|
375 |
+
|
376 |
+
[data-sek-is-mobile-vertical-menu="yes"] .sek-nav li a {
|
377 |
+
min-height: 45px;
|
378 |
+
box-sizing: border-box;
|
379 |
+
justify-content: flex-start;
|
380 |
+
-webkit-box-pack: start;
|
381 |
+
-ms-flex-pack: start;
|
382 |
+
}
|
383 |
+
|
384 |
+
[data-sek-is-mobile-vertical-menu="yes"] .sub-menu {
|
385 |
+
display: none;
|
386 |
+
}
|
387 |
+
|
388 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .sub-menu {
|
389 |
+
display: none;
|
390 |
+
}
|
391 |
+
|
392 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .sub-menu.expanded {
|
393 |
+
display: block;
|
394 |
+
}
|
395 |
+
|
396 |
/*
|
397 |
* Mobile dropdown on click
|
398 |
+
*/
|
399 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .page_item_has_children > a,
|
400 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .menu-item-has-children > a {
|
401 |
+
padding-right: 60px;
|
402 |
+
}
|
403 |
+
|
404 |
+
.nb-dd-mm-toggle-wrapper {
|
405 |
+
position: absolute;
|
406 |
+
top: 1px;
|
407 |
+
right: 0;
|
408 |
+
text-align: center;
|
409 |
+
line-height: 1;
|
410 |
+
bottom: 1px;
|
411 |
+
height: 45px;
|
412 |
+
width: 60px;
|
413 |
+
}
|
414 |
+
|
415 |
+
.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .nb-dd-mm-toggle-wrapper {
|
416 |
+
display: block;
|
417 |
+
}
|
418 |
+
|
419 |
+
.nb-dd-mm-toggle {
|
420 |
+
background: none !important;
|
421 |
+
-webkit-appearance: none;
|
422 |
+
outline: none;
|
423 |
+
border: none;
|
424 |
+
padding: 0;
|
425 |
+
cursor: pointer;
|
426 |
+
display: block;
|
427 |
+
height: 45px;
|
428 |
+
width: 60px;
|
429 |
+
box-sizing: border-box;
|
430 |
+
overflow: hidden;
|
431 |
+
}
|
432 |
+
|
433 |
+
.nb-dd-mm-toggle i {
|
434 |
+
display: block;
|
435 |
+
transition: all .3s ease;
|
436 |
+
-webkit-transform-style: preserve-3d;
|
437 |
+
transform-style: preserve-3d;
|
438 |
+
-webkit-backface-visibility: hidden;
|
439 |
+
backface-visibility: hidden;
|
440 |
+
width: 100%;
|
441 |
+
color: #000000;
|
442 |
+
}
|
443 |
+
|
444 |
+
li.expanded > .nb-dd-mm-toggle-wrapper .nb-arrow-for-mobile-menu {
|
445 |
+
-webkit-transform: rotate(-180deg);
|
446 |
+
transform: rotate(-180deg);
|
447 |
+
}
|
448 |
+
|
449 |
+
.nb-arrow-for-mobile-menu::after {
|
450 |
+
content: "\25BE";
|
451 |
+
font-family: "Arial Unicode MS", Arial;
|
452 |
+
moz-osx-font-smoothing: grayscale;
|
453 |
+
-webkit-font-smoothing: antialiased;
|
454 |
+
font-style: normal;
|
455 |
+
font-variant: normal;
|
456 |
+
text-rendering: auto;
|
457 |
+
font-weight: 900;
|
458 |
+
transition: all 0.3s ease;
|
459 |
+
-webkit-transform-style: preserve-3d;
|
460 |
+
transform-style: preserve-3d;
|
461 |
+
-webkit-backface-visibility: hidden;
|
462 |
+
backface-visibility: hidden;
|
463 |
+
-webkit-perspective: 1000px;
|
464 |
+
perspective: 1000px;
|
465 |
+
padding: 0 .45em;
|
466 |
+
font-size: 18px;
|
467 |
+
line-height: 45px;
|
468 |
+
position: relative;
|
469 |
+
}
|
470 |
+
|
471 |
+
.nb-loc .sek-module-inner nav .sek-nav-toggler {
|
472 |
+
-webkit-appearance: none !important;
|
473 |
+
cursor: pointer;
|
474 |
+
height: 40px;
|
475 |
+
width: 40px;
|
476 |
+
padding: 0;
|
477 |
+
vertical-align: middle;
|
478 |
+
}
|
479 |
+
|
480 |
+
.nb-loc .sek-module-inner nav .sek-nav-toggler, .nb-loc .sek-module-inner nav .sek-nav-toggler:hover, .nb-loc .sek-module-inner nav .sek-nav-toggler:focus {
|
481 |
+
background: 0 0;
|
482 |
+
background-color: rgba(0, 0, 0, 0);
|
483 |
+
color: black;
|
484 |
+
outline: none;
|
485 |
+
border: none;
|
486 |
+
}
|
487 |
+
|
488 |
+
.sek-ham__span-wrapper {
|
489 |
+
height: 12px;
|
490 |
+
position: relative;
|
491 |
+
display: block;
|
492 |
+
}
|
493 |
+
|
494 |
+
.sek-ham__span-wrapper .line {
|
495 |
+
display: block;
|
496 |
+
height: 1.5px;
|
497 |
+
position: absolute;
|
498 |
+
left: 10px;
|
499 |
+
border-radius: 5px;
|
500 |
+
background-clip: padding-box;
|
501 |
+
transition: all ease .35s;
|
502 |
+
-webkit-backface-visibility: hidden;
|
503 |
+
backface-visibility: hidden;
|
504 |
+
border-top: 1.5px solid;
|
505 |
+
}
|
506 |
+
|
507 |
+
.sek-ham__span-wrapper .line-1 {
|
508 |
+
top: 0;
|
509 |
+
}
|
510 |
+
|
511 |
+
.sek-ham__span-wrapper .line-2 {
|
512 |
+
top: 50%;
|
513 |
+
}
|
514 |
+
|
515 |
+
.sek-ham__span-wrapper .line-3 {
|
516 |
+
top: 100%;
|
517 |
+
}
|
518 |
+
|
519 |
+
.sek-nav-toggler .line-1 {
|
520 |
+
-webkit-transform: translate(-3px, 6px) rotate(45deg);
|
521 |
+
transform: translate(-3px, 6px) rotate(45deg);
|
522 |
+
width: 28px;
|
523 |
+
}
|
524 |
+
|
525 |
+
.sek-nav-toggler .line-2 {
|
526 |
+
opacity: 0;
|
527 |
+
}
|
528 |
+
|
529 |
+
.sek-nav-toggler .line-3 {
|
530 |
+
-webkit-transform: translate(-3px, -6px) rotate(-45deg);
|
531 |
+
transform: translate(-3px, -6px) rotate(-45deg);
|
532 |
+
width: 28px;
|
533 |
+
}
|
534 |
+
|
535 |
+
.sek-nav-toggler.sek-collapsed .line {
|
536 |
+
width: 20px;
|
537 |
+
-webkit-transform: translate(0, 0) rotate(0);
|
538 |
+
transform: translate(0, 0) rotate(0);
|
539 |
+
opacity: 1;
|
540 |
+
}
|
541 |
+
|
542 |
+
.sek-nav-toggler.sek-collapsed.hovering .line {
|
543 |
+
-webkit-transform: translateX(-3px);
|
544 |
+
transform: translateX(-3px);
|
545 |
+
width: 26px;
|
546 |
+
}
|
547 |
+
|
548 |
+
.nb-module-menu-search {
|
549 |
+
position: relative;
|
550 |
+
}
|
551 |
+
|
552 |
+
[data-sek-is-mobile-vertical-menu="yes"] .nb-module-menu-search {
|
553 |
+
display: none;
|
554 |
+
}
|
555 |
+
|
556 |
+
.nb-svg-search-icon {
|
557 |
+
cursor: pointer;
|
558 |
+
padding: 0;
|
559 |
+
}
|
560 |
+
|
561 |
+
.nb-module-menu-search .nb-search-expand {
|
562 |
+
display: none;
|
563 |
+
background: #fff;
|
564 |
+
position: absolute;
|
565 |
+
z-index: 100;
|
566 |
+
top: 49px;
|
567 |
+
right: 0;
|
568 |
+
left: 0;
|
569 |
+
width: 340px;
|
570 |
+
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
|
571 |
+
}
|
572 |
+
|
573 |
+
.nb-search-expand .nb-search-expand-inner {
|
574 |
+
border: 1px solid #eee;
|
575 |
+
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.15);
|
576 |
+
transition: -webkit-transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;
|
577 |
+
transition: height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;
|
578 |
+
transition: transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;
|
579 |
+
transition: transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;
|
580 |
+
padding: 15px;
|
581 |
+
}
|
582 |
+
|
583 |
+
.nb-search-expand .nb-search-expand-inner [role=search].search-form label::after {
|
584 |
+
content: none;
|
585 |
+
}
|
586 |
+
|
587 |
+
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner [role=search].search-form {
|
588 |
+
display: -ms-flexbox;
|
589 |
+
display: flex;
|
590 |
+
float: none;
|
591 |
+
}
|
592 |
+
|
593 |
+
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner label input[type=search] {
|
594 |
+
max-width: 100%;
|
595 |
+
}
|
596 |
+
|
597 |
+
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner input[type=submit], [data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search form input[type=submit] {
|
598 |
+
margin: 0;
|
599 |
+
background: #808080 !important;
|
600 |
+
color: #fff;
|
601 |
+
font-size: 16px;
|
602 |
+
padding: 10px 10px;
|
603 |
+
font-weight: normal;
|
604 |
+
display: inline-block;
|
605 |
+
border: none;
|
606 |
+
cursor: pointer;
|
607 |
+
border-radius: 3px;
|
608 |
+
}
|
609 |
+
|
610 |
+
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner input[type=search], [data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search input[type=search],
|
611 |
+
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner input[type=submit], [data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search form input[type=submit] {
|
612 |
+
text-transform: none !important;
|
613 |
+
}
|
614 |
+
|
615 |
+
.nb-mobile-search {
|
616 |
+
display: none;
|
617 |
+
}
|
618 |
+
|
619 |
+
[data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search {
|
620 |
+
display: block;
|
621 |
+
padding: 6px 14px 15px;
|
622 |
+
}
|
623 |
+
|
624 |
+
[data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search input {
|
625 |
+
font-size: 16px;
|
626 |
+
}
|
627 |
+
|
628 |
+
.nb-search-expand-inner input[type="search"], .nb-mobile-search input[type="search"] {
|
629 |
+
color: #000000 !important;
|
630 |
+
}
|
631 |
+
|
632 |
+
.nb-search-expand-inner input[type="submit"], .nb-mobile-search input[type="submit"] {
|
633 |
+
color: #ffffff !important;
|
634 |
+
}
|
assets/front/css/modules/post-grid-module.css
CHANGED
@@ -1,418 +1,418 @@
|
|
1 |
/*************************************
|
2 |
* POST GRID MODULE
|
3 |
-
*************************************/
|
4 |
-
.sek-post-grid-wrapper {
|
5 |
-
margin-top: 1.5rem;
|
6 |
-
margin-bottom: 1.5rem;
|
7 |
-
}
|
8 |
-
|
9 |
-
.sek-post-grid-wrapper .sek-grid-items {
|
10 |
-
grid-row-gap: 25px;
|
11 |
-
}
|
12 |
-
|
13 |
-
.sek-post-grid-wrapper .sek-grid-items.sek-list-layout article > *:not(:last-child):not(.sek-pg-thumbnail) {
|
14 |
-
margin-bottom: 10px;
|
15 |
-
}
|
16 |
-
|
17 |
-
.sek-post-grid-wrapper .sek-grid-items.sek-grid-layout article > *:not(:last-child) {
|
18 |
-
margin-bottom: 10px;
|
19 |
-
}
|
20 |
-
|
21 |
-
.sek-post-grid-wrapper .sek-grid-items article {
|
22 |
-
overflow: hidden;
|
23 |
-
}
|
24 |
-
|
25 |
-
.sek-post-grid-wrapper .sek-grid-items article > :first-child {
|
26 |
-
margin-top: 0 !important;
|
27 |
-
}
|
28 |
-
|
29 |
-
.sek-post-grid-wrapper .sek-grid-items article > :last-child {
|
30 |
-
margin-top: 0 !important;
|
31 |
-
}
|
32 |
-
|
33 |
-
.sek-post-grid-wrapper .sek-grid-items article > *:not(:last-child) {
|
34 |
-
margin-top: 0 !important;
|
35 |
-
}
|
36 |
-
|
37 |
-
.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > *:not(:last-child) {
|
38 |
-
margin-top: 0 !important;
|
39 |
-
margin-bottom: 10px;
|
40 |
-
}
|
41 |
-
|
42 |
-
.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > :first-child {
|
43 |
-
margin-top: 0 !important;
|
44 |
-
}
|
45 |
-
|
46 |
-
.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > :last-child {
|
47 |
-
margin-top: 0 !important;
|
48 |
-
}
|
49 |
-
|
50 |
-
.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article {
|
51 |
-
box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);
|
52 |
-
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
|
53 |
-
}
|
54 |
-
|
55 |
-
.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article:hover {
|
56 |
-
-webkit-transform: translateY(-4px);
|
57 |
-
transform: translateY(-4px);
|
58 |
-
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18), 0 10px 10px rgba(0, 0, 0, 0.15);
|
59 |
-
}
|
60 |
-
|
61 |
-
.sek-post-grid-wrapper .sek-pg-thumbnail {
|
62 |
-
background: inherit;
|
63 |
-
overflow: hidden;
|
64 |
-
}
|
65 |
-
|
66 |
-
.sek-post-grid-wrapper .sek-pg-thumbnail img {
|
67 |
-
box-shadow: 0 5px 5px 0 rgba(18, 63, 82, 0.035), 0 0 0 1px rgba(176, 181, 193, 0.2);
|
68 |
-
border-radius: 4px;
|
69 |
-
}
|
70 |
-
|
71 |
-
.sek-post-grid-wrapper .sek-pg-thumbnail a {
|
72 |
-
display: block;
|
73 |
-
position: relative;
|
74 |
-
}
|
75 |
-
|
76 |
-
.sek-post-grid-wrapper .sek-pg-thumbnail img {
|
77 |
-
display: block;
|
78 |
-
width: 100%;
|
79 |
-
height: auto;
|
80 |
-
}
|
81 |
-
|
82 |
-
.sek-post-grid-wrapper.nb-thumb-box-shadow article .sek-pg-thumbnail img {
|
83 |
-
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
84 |
-
}
|
85 |
-
|
86 |
-
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a {
|
87 |
-
height: 0;
|
88 |
-
padding-top: 65%;
|
89 |
-
}
|
90 |
-
|
91 |
-
@media all and (-ms-high-contrast: none) {
|
92 |
-
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a {
|
93 |
-
height: auto !important;
|
94 |
-
padding-top: inherit !important;
|
95 |
-
}
|
96 |
-
}
|
97 |
-
|
98 |
-
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img {
|
99 |
-
position: absolute;
|
100 |
-
height: 100%;
|
101 |
-
width: 100%;
|
102 |
-
max-height: none;
|
103 |
-
max-width: none;
|
104 |
-
top: 0;
|
105 |
-
left: 0;
|
106 |
-
right: 0;
|
107 |
-
bottom: 0;
|
108 |
-
-o-object-fit: cover;
|
109 |
-
object-fit: cover;
|
110 |
-
}
|
111 |
-
|
112 |
-
@media all and (-ms-high-contrast: none) {
|
113 |
-
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img {
|
114 |
-
height: auto !important;
|
115 |
-
position: relative;
|
116 |
-
}
|
117 |
-
}
|
118 |
-
|
119 |
-
.sek-post-grid-wrapper .sek-pg-metas > span:not(:last-child)::after {
|
120 |
-
content: "\B7";
|
121 |
-
vertical-align: middle;
|
122 |
-
margin: 0 5px;
|
123 |
-
line-height: 1;
|
124 |
-
}
|
125 |
-
|
126 |
-
.sek-post-grid-wrapper .sek-pg-content {
|
127 |
-
text-align: left;
|
128 |
-
}
|
129 |
-
|
130 |
-
.sek-post-grid-wrapper .sek-excerpt > :last-child {
|
131 |
-
margin-bottom: 0;
|
132 |
-
}
|
133 |
-
|
134 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-category {
|
135 |
-
line-height: 1.2em;
|
136 |
-
color: #767676;
|
137 |
-
}
|
138 |
-
|
139 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-category a {
|
140 |
-
text-transform: uppercase;
|
141 |
-
font-size: 13px;
|
142 |
-
text-decoration: none;
|
143 |
-
color: #767676;
|
144 |
-
}
|
145 |
-
|
146 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-category a:hover {
|
147 |
-
color: inherit;
|
148 |
-
text-decoration: underline;
|
149 |
-
}
|
150 |
-
|
151 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title {
|
152 |
-
font-size: 28px;
|
153 |
-
line-height: 1.1em;
|
154 |
-
}
|
155 |
-
|
156 |
-
@media (max-width: 991.98px) {
|
157 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title {
|
158 |
-
font-size: 22px;
|
159 |
-
}
|
160 |
-
}
|
161 |
-
|
162 |
-
@media (max-width: 575.98px) {
|
163 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title {
|
164 |
-
font-size: 20px;
|
165 |
-
}
|
166 |
-
}
|
167 |
-
|
168 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {
|
169 |
-
text-decoration: none;
|
170 |
-
color: #121212;
|
171 |
-
font-size: 28px;
|
172 |
-
font-weight: 400;
|
173 |
-
line-height: 1.1em;
|
174 |
-
-ms-word-wrap: break-word;
|
175 |
-
word-wrap: break-word;
|
176 |
-
}
|
177 |
-
|
178 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a:hover {
|
179 |
-
color: #666;
|
180 |
-
}
|
181 |
-
|
182 |
-
@media (max-width: 991.98px) {
|
183 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {
|
184 |
-
font-size: 22px;
|
185 |
-
}
|
186 |
-
}
|
187 |
-
|
188 |
-
@media (max-width: 575.98px) {
|
189 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {
|
190 |
-
font-size: 20px;
|
191 |
-
}
|
192 |
-
}
|
193 |
-
|
194 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas {
|
195 |
-
line-height: 1.2em;
|
196 |
-
}
|
197 |
-
|
198 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas span, .nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas a {
|
199 |
-
text-transform: uppercase;
|
200 |
-
font-size: 13px;
|
201 |
-
letter-spacing: 1px;
|
202 |
-
color: #767676;
|
203 |
-
}
|
204 |
-
|
205 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas a:hover {
|
206 |
-
text-decoration: underline;
|
207 |
-
color: inherit;
|
208 |
-
}
|
209 |
-
|
210 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-content p {
|
211 |
-
margin: 0 0 10px 0;
|
212 |
-
line-height: 1.3em;
|
213 |
-
font-size: 14px;
|
214 |
-
color: #555;
|
215 |
-
}
|
216 |
-
|
217 |
-
.sek-post-grid-wrapper .sek-list-layout {
|
218 |
-
display: -ms-grid;
|
219 |
-
display: grid;
|
220 |
-
-ms-grid-columns: minmax(0, 1fr);
|
221 |
-
grid-template-columns: minmax(0, 1fr);
|
222 |
-
}
|
223 |
-
|
224 |
-
@media all and (-ms-high-contrast: none) {
|
225 |
-
.sek-post-grid-wrapper .sek-list-layout {
|
226 |
-
display: block !important;
|
227 |
-
}
|
228 |
-
}
|
229 |
-
|
230 |
-
.sek-post-grid-wrapper .sek-list-layout article {
|
231 |
-
display: -ms-grid;
|
232 |
-
display: grid;
|
233 |
-
-ms-grid-columns: minmax(0, 1fr);
|
234 |
-
grid-template-columns: minmax(0, 1fr);
|
235 |
-
-ms-grid-rows: 1fr;
|
236 |
-
grid-template-rows: 1fr;
|
237 |
-
grid-column-gap: 20px;
|
238 |
-
}
|
239 |
-
|
240 |
-
@media all and (-ms-high-contrast: none) {
|
241 |
-
.sek-post-grid-wrapper .sek-list-layout article {
|
242 |
-
display: block !important;
|
243 |
-
padding-top: 10px;
|
244 |
-
}
|
245 |
-
}
|
246 |
-
|
247 |
-
.sek-post-grid-wrapper .sek-list-layout article > *:nth-child(1) {
|
248 |
-
-ms-grid-row: 1;
|
249 |
-
-ms-grid-column: 1;
|
250 |
-
}
|
251 |
-
|
252 |
-
.sek-post-grid-wrapper .sek-list-layout article.sek-has-thumb {
|
253 |
-
-ms-grid-columns: 30% minmax(0, 1fr);
|
254 |
-
grid-template-columns: 30% minmax(0, 1fr);
|
255 |
-
}
|
256 |
-
|
257 |
-
.sek-post-grid-wrapper .sek-list-layout article .sek-pg-thumbnail {
|
258 |
-
margin-bottom: 0;
|
259 |
-
-ms-flex-item-align: start;
|
260 |
-
align-self: flex-start;
|
261 |
-
}
|
262 |
-
|
263 |
-
.sek-post-grid-wrapper .sek-grid-layout {
|
264 |
-
display: -ms-grid;
|
265 |
-
display: grid;
|
266 |
-
-ms-grid-columns: 1fr 20px 1fr;
|
267 |
-
grid-template-columns: 1fr 1fr;
|
268 |
-
-ms-grid-rows: 1fr;
|
269 |
-
grid-template-rows: 1fr;
|
270 |
-
grid-row-gap: 20px;
|
271 |
-
grid-column-gap: 20px;
|
272 |
-
}
|
273 |
-
|
274 |
-
@media all and (-ms-high-contrast: none) {
|
275 |
-
.sek-post-grid-wrapper .sek-grid-layout {
|
276 |
-
display: block !important;
|
277 |
-
}
|
278 |
-
}
|
279 |
-
|
280 |
-
.sek-post-grid-wrapper .sek-grid-layout > *:nth-child(1) {
|
281 |
-
-ms-grid-row: 1;
|
282 |
-
-ms-grid-column: 1;
|
283 |
-
}
|
284 |
-
|
285 |
-
.sek-post-grid-wrapper .sek-grid-layout > *:nth-child(2) {
|
286 |
-
-ms-grid-row: 1;
|
287 |
-
-ms-grid-column: 3;
|
288 |
-
}
|
289 |
-
|
290 |
-
.sek-module-inner .nb-masonry-post-grid .sek-grid-items.nb-masonry-grid-images-loaded {
|
291 |
-
grid-auto-rows: 5px;
|
292 |
-
}
|
293 |
-
|
294 |
-
.sek-module-inner .nb-masonry-post-grid .sek-grid-items article {
|
295 |
-
overflow: hidden;
|
296 |
-
}
|
297 |
-
|
298 |
-
.sek-module-inner .nb-masonry-post-grid .sek-grid-items.sek-thumb-no-custom-height .sek-pg-thumbnail a {
|
299 |
-
height: auto;
|
300 |
-
padding-top: 0;
|
301 |
-
}
|
302 |
-
|
303 |
-
.sek-module-inner .nb-masonry-post-grid .sek-grid-items.sek-thumb-no-custom-height .sek-pg-thumbnail img {
|
304 |
-
position: relative;
|
305 |
-
height: auto;
|
306 |
-
width: 100%;
|
307 |
-
}
|
308 |
-
|
309 |
-
.sek-module-inner .nb-item-box-shadow .sek-grid-items article {
|
310 |
-
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
311 |
-
}
|
312 |
-
|
313 |
-
.sek-post-navigation #sek-nav-below {
|
314 |
-
background-color: #f7f8f9;
|
315 |
-
margin-top: 20px;
|
316 |
-
padding: 5px;
|
317 |
-
}
|
318 |
-
|
319 |
-
.sek-post-navigation #sek-nav-below .sek-pagination {
|
320 |
-
text-align: center;
|
321 |
-
}
|
322 |
-
|
323 |
-
.sek-post-navigation #sek-nav-below .sek-pagination ul {
|
324 |
-
display: inline-block;
|
325 |
-
vertical-align: middle;
|
326 |
-
margin: 0;
|
327 |
-
}
|
328 |
-
|
329 |
-
.sek-post-navigation #sek-nav-below .sek-pagination .page-numbers {
|
330 |
-
font-family: inherit;
|
331 |
-
opacity: 0.7;
|
332 |
-
text-decoration: none !important;
|
333 |
-
}
|
334 |
-
|
335 |
-
.sek-post-navigation #sek-nav-below .sek-pagination .current {
|
336 |
-
font-weight: 600;
|
337 |
-
opacity: 1;
|
338 |
-
}
|
339 |
-
|
340 |
-
.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list > * {
|
341 |
-
margin: 0 5px;
|
342 |
-
}
|
343 |
-
|
344 |
-
.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list {
|
345 |
-
margin: 0 -5px;
|
346 |
-
}
|
347 |
-
|
348 |
-
.sek-post-navigation #sek-nav-below nav {
|
349 |
-
padding-top: 20px;
|
350 |
-
padding-bottom: 20px;
|
351 |
-
}
|
352 |
-
|
353 |
-
.sek-post-navigation #sek-nav-below ul.sek-czr-pager {
|
354 |
-
margin: 0;
|
355 |
-
}
|
356 |
-
|
357 |
-
.sek-post-navigation #sek-nav-below li {
|
358 |
-
display: inline-block;
|
359 |
-
font-size: 16px;
|
360 |
-
}
|
361 |
-
|
362 |
-
.sek-post-navigation #sek-nav-below a, .sek-post-navigation #sek-nav-below .sek-meta-nav-title {
|
363 |
-
text-transform: uppercase;
|
364 |
-
letter-spacing: 2px;
|
365 |
-
color: #5A5A5A;
|
366 |
-
}
|
367 |
-
|
368 |
-
.sek-post-navigation #sek-nav-below a:hover, .sek-post-navigation #sek-nav-below .sek-meta-nav-title:hover {
|
369 |
-
color: #3b3b3b;
|
370 |
-
opacity: 1 !important;
|
371 |
-
}
|
372 |
-
|
373 |
-
.sek-post-navigation #sek-nav-below .sek-czr-pager > li {
|
374 |
-
display: block;
|
375 |
-
}
|
376 |
-
|
377 |
-
.sek-post-navigation #sek-nav-below .sek-nav-dir {
|
378 |
-
display: block;
|
379 |
-
}
|
380 |
-
|
381 |
-
.sek-post-navigation #sek-nav-below .sek-nav-dir > a {
|
382 |
-
max-width: 100%;
|
383 |
-
}
|
384 |
-
|
385 |
-
.sek-post-navigation #sek-nav-below a i.arrow {
|
386 |
-
font-size: 0.9em;
|
387 |
-
}
|
388 |
-
|
389 |
-
.sek-post-navigation #sek-nav-below .page-numbers, .sek-post-navigation #sek-nav-below a {
|
390 |
-
font-family: inherit;
|
391 |
-
line-height: 30px;
|
392 |
-
height: 30px;
|
393 |
-
display: inline-block;
|
394 |
-
vertical-align: middle;
|
395 |
-
transition: all 0.3s ease;
|
396 |
-
position: relative;
|
397 |
-
}
|
398 |
-
|
399 |
-
.sek-post-navigation #sek-nav-below .sek-meta-nav {
|
400 |
-
display: -ms-flexbox;
|
401 |
-
display: flex;
|
402 |
-
transition: all .2s,.6s ease;
|
403 |
-
opacity: .7;
|
404 |
-
}
|
405 |
-
|
406 |
-
.sek-post-navigation #sek-nav-below a:hover .sek-meta-nav {
|
407 |
-
opacity: 1;
|
408 |
-
text-decoration: underline;
|
409 |
-
}
|
410 |
-
|
411 |
-
.sek-post-navigation #sek-nav-below .sek-meta-nav-title {
|
412 |
-
display: inline-block;
|
413 |
-
overflow: hidden;
|
414 |
-
text-overflow: ellipsis;
|
415 |
-
white-space: nowrap;
|
416 |
-
vertical-align: middle;
|
417 |
-
font-size: 0.9em;
|
418 |
-
}
|
1 |
/*************************************
|
2 |
* POST GRID MODULE
|
3 |
+
*************************************/
|
4 |
+
.sek-post-grid-wrapper {
|
5 |
+
margin-top: 1.5rem;
|
6 |
+
margin-bottom: 1.5rem;
|
7 |
+
}
|
8 |
+
|
9 |
+
.sek-post-grid-wrapper .sek-grid-items {
|
10 |
+
grid-row-gap: 25px;
|
11 |
+
}
|
12 |
+
|
13 |
+
.sek-post-grid-wrapper .sek-grid-items.sek-list-layout article > *:not(:last-child):not(.sek-pg-thumbnail) {
|
14 |
+
margin-bottom: 10px;
|
15 |
+
}
|
16 |
+
|
17 |
+
.sek-post-grid-wrapper .sek-grid-items.sek-grid-layout article > *:not(:last-child) {
|
18 |
+
margin-bottom: 10px;
|
19 |
+
}
|
20 |
+
|
21 |
+
.sek-post-grid-wrapper .sek-grid-items article {
|
22 |
+
overflow: hidden;
|
23 |
+
}
|
24 |
+
|
25 |
+
.sek-post-grid-wrapper .sek-grid-items article > :first-child {
|
26 |
+
margin-top: 0 !important;
|
27 |
+
}
|
28 |
+
|
29 |
+
.sek-post-grid-wrapper .sek-grid-items article > :last-child {
|
30 |
+
margin-top: 0 !important;
|
31 |
+
}
|
32 |
+
|
33 |
+
.sek-post-grid-wrapper .sek-grid-items article > *:not(:last-child) {
|
34 |
+
margin-top: 0 !important;
|
35 |
+
}
|
36 |
+
|
37 |
+
.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > *:not(:last-child) {
|
38 |
+
margin-top: 0 !important;
|
39 |
+
margin-bottom: 10px;
|
40 |
+
}
|
41 |
+
|
42 |
+
.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > :first-child {
|
43 |
+
margin-top: 0 !important;
|
44 |
+
}
|
45 |
+
|
46 |
+
.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > :last-child {
|
47 |
+
margin-top: 0 !important;
|
48 |
+
}
|
49 |
+
|
50 |
+
.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article {
|
51 |
+
box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);
|
52 |
+
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
|
53 |
+
}
|
54 |
+
|
55 |
+
.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article:hover {
|
56 |
+
-webkit-transform: translateY(-4px);
|
57 |
+
transform: translateY(-4px);
|
58 |
+
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18), 0 10px 10px rgba(0, 0, 0, 0.15);
|
59 |
+
}
|
60 |
+
|
61 |
+
.sek-post-grid-wrapper .sek-pg-thumbnail {
|
62 |
+
background: inherit;
|
63 |
+
overflow: hidden;
|
64 |
+
}
|
65 |
+
|
66 |
+
.sek-post-grid-wrapper .sek-pg-thumbnail img {
|
67 |
+
box-shadow: 0 5px 5px 0 rgba(18, 63, 82, 0.035), 0 0 0 1px rgba(176, 181, 193, 0.2);
|
68 |
+
border-radius: 4px;
|
69 |
+
}
|
70 |
+
|
71 |
+
.sek-post-grid-wrapper .sek-pg-thumbnail a {
|
72 |
+
display: block;
|
73 |
+
position: relative;
|
74 |
+
}
|
75 |
+
|
76 |
+
.sek-post-grid-wrapper .sek-pg-thumbnail img {
|
77 |
+
display: block;
|
78 |
+
width: 100%;
|
79 |
+
height: auto;
|
80 |
+
}
|
81 |
+
|
82 |
+
.sek-post-grid-wrapper.nb-thumb-box-shadow article .sek-pg-thumbnail img {
|
83 |
+
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
84 |
+
}
|
85 |
+
|
86 |
+
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a {
|
87 |
+
height: 0;
|
88 |
+
padding-top: 65%;
|
89 |
+
}
|
90 |
+
|
91 |
+
@media all and (-ms-high-contrast: none) {
|
92 |
+
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a {
|
93 |
+
height: auto !important;
|
94 |
+
padding-top: inherit !important;
|
95 |
+
}
|
96 |
+
}
|
97 |
+
|
98 |
+
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img {
|
99 |
+
position: absolute;
|
100 |
+
height: 100%;
|
101 |
+
width: 100%;
|
102 |
+
max-height: none;
|
103 |
+
max-width: none;
|
104 |
+
top: 0;
|
105 |
+
left: 0;
|
106 |
+
right: 0;
|
107 |
+
bottom: 0;
|
108 |
+
-o-object-fit: cover;
|
109 |
+
object-fit: cover;
|
110 |
+
}
|
111 |
+
|
112 |
+
@media all and (-ms-high-contrast: none) {
|
113 |
+
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img {
|
114 |
+
height: auto !important;
|
115 |
+
position: relative;
|
116 |
+
}
|
117 |
+
}
|
118 |
+
|
119 |
+
.sek-post-grid-wrapper .sek-pg-metas > span:not(:last-child)::after {
|
120 |
+
content: "\B7";
|
121 |
+
vertical-align: middle;
|
122 |
+
margin: 0 5px;
|
123 |
+
line-height: 1;
|
124 |
+
}
|
125 |
+
|
126 |
+
.sek-post-grid-wrapper .sek-pg-content {
|
127 |
+
text-align: left;
|
128 |
+
}
|
129 |
+
|
130 |
+
.sek-post-grid-wrapper .sek-excerpt > :last-child {
|
131 |
+
margin-bottom: 0;
|
132 |
+
}
|
133 |
+
|
134 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-category {
|
135 |
+
line-height: 1.2em;
|
136 |
+
color: #767676;
|
137 |
+
}
|
138 |
+
|
139 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-category a {
|
140 |
+
text-transform: uppercase;
|
141 |
+
font-size: 13px;
|
142 |
+
text-decoration: none;
|
143 |
+
color: #767676;
|
144 |
+
}
|
145 |
+
|
146 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-category a:hover {
|
147 |
+
color: inherit;
|
148 |
+
text-decoration: underline;
|
149 |
+
}
|
150 |
+
|
151 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title {
|
152 |
+
font-size: 28px;
|
153 |
+
line-height: 1.1em;
|
154 |
+
}
|
155 |
+
|
156 |
+
@media (max-width: 991.98px) {
|
157 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title {
|
158 |
+
font-size: 22px;
|
159 |
+
}
|
160 |
+
}
|
161 |
+
|
162 |
+
@media (max-width: 575.98px) {
|
163 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title {
|
164 |
+
font-size: 20px;
|
165 |
+
}
|
166 |
+
}
|
167 |
+
|
168 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {
|
169 |
+
text-decoration: none;
|
170 |
+
color: #121212;
|
171 |
+
font-size: 28px;
|
172 |
+
font-weight: 400;
|
173 |
+
line-height: 1.1em;
|
174 |
+
-ms-word-wrap: break-word;
|
175 |
+
word-wrap: break-word;
|
176 |
+
}
|
177 |
+
|
178 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a:hover {
|
179 |
+
color: #666;
|
180 |
+
}
|
181 |
+
|
182 |
+
@media (max-width: 991.98px) {
|
183 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {
|
184 |
+
font-size: 22px;
|
185 |
+
}
|
186 |
+
}
|
187 |
+
|
188 |
+
@media (max-width: 575.98px) {
|
189 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {
|
190 |
+
font-size: 20px;
|
191 |
+
}
|
192 |
+
}
|
193 |
+
|
194 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas {
|
195 |
+
line-height: 1.2em;
|
196 |
+
}
|
197 |
+
|
198 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas span, .nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas a {
|
199 |
+
text-transform: uppercase;
|
200 |
+
font-size: 13px;
|
201 |
+
letter-spacing: 1px;
|
202 |
+
color: #767676;
|
203 |
+
}
|
204 |
+
|
205 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas a:hover {
|
206 |
+
text-decoration: underline;
|
207 |
+
color: inherit;
|
208 |
+
}
|
209 |
+
|
210 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-content p {
|
211 |
+
margin: 0 0 10px 0;
|
212 |
+
line-height: 1.3em;
|
213 |
+
font-size: 14px;
|
214 |
+
color: #555;
|
215 |
+
}
|
216 |
+
|
217 |
+
.sek-post-grid-wrapper .sek-list-layout {
|
218 |
+
display: -ms-grid;
|
219 |
+
display: grid;
|
220 |
+
-ms-grid-columns: minmax(0, 1fr);
|
221 |
+
grid-template-columns: minmax(0, 1fr);
|
222 |
+
}
|
223 |
+
|
224 |
+
@media all and (-ms-high-contrast: none) {
|
225 |
+
.sek-post-grid-wrapper .sek-list-layout {
|
226 |
+
display: block !important;
|
227 |
+
}
|
228 |
+
}
|
229 |
+
|
230 |
+
.sek-post-grid-wrapper .sek-list-layout article {
|
231 |
+
display: -ms-grid;
|
232 |
+
display: grid;
|
233 |
+
-ms-grid-columns: minmax(0, 1fr);
|
234 |
+
grid-template-columns: minmax(0, 1fr);
|
235 |
+
-ms-grid-rows: 1fr;
|
236 |
+
grid-template-rows: 1fr;
|
237 |
+
grid-column-gap: 20px;
|
238 |
+
}
|
239 |
+
|
240 |
+
@media all and (-ms-high-contrast: none) {
|
241 |
+
.sek-post-grid-wrapper .sek-list-layout article {
|
242 |
+
display: block !important;
|
243 |
+
padding-top: 10px;
|
244 |
+
}
|
245 |
+
}
|
246 |
+
|
247 |
+
.sek-post-grid-wrapper .sek-list-layout article > *:nth-child(1) {
|
248 |
+
-ms-grid-row: 1;
|
249 |
+
-ms-grid-column: 1;
|
250 |
+
}
|
251 |
+
|
252 |
+
.sek-post-grid-wrapper .sek-list-layout article.sek-has-thumb {
|
253 |
+
-ms-grid-columns: 30% minmax(0, 1fr);
|
254 |
+
grid-template-columns: 30% minmax(0, 1fr);
|
255 |
+
}
|
256 |
+
|
257 |
+
.sek-post-grid-wrapper .sek-list-layout article .sek-pg-thumbnail {
|
258 |
+
margin-bottom: 0;
|
259 |
+
-ms-flex-item-align: start;
|
260 |
+
align-self: flex-start;
|
261 |
+
}
|
262 |
+
|
263 |
+
.sek-post-grid-wrapper .sek-grid-layout {
|
264 |
+
display: -ms-grid;
|
265 |
+
display: grid;
|
266 |
+
-ms-grid-columns: 1fr 20px 1fr;
|
267 |
+
grid-template-columns: 1fr 1fr;
|
268 |
+
-ms-grid-rows: 1fr;
|
269 |
+
grid-template-rows: 1fr;
|
270 |
+
grid-row-gap: 20px;
|
271 |
+
grid-column-gap: 20px;
|
272 |
+
}
|
273 |
+
|
274 |
+
@media all and (-ms-high-contrast: none) {
|
275 |
+
.sek-post-grid-wrapper .sek-grid-layout {
|
276 |
+
display: block !important;
|
277 |
+
}
|
278 |
+
}
|
279 |
+
|
280 |
+
.sek-post-grid-wrapper .sek-grid-layout > *:nth-child(1) {
|
281 |
+
-ms-grid-row: 1;
|
282 |
+
-ms-grid-column: 1;
|
283 |
+
}
|
284 |
+
|
285 |
+
.sek-post-grid-wrapper .sek-grid-layout > *:nth-child(2) {
|
286 |
+
-ms-grid-row: 1;
|
287 |
+
-ms-grid-column: 3;
|
288 |
+
}
|
289 |
+
|
290 |
+
.sek-module-inner .nb-masonry-post-grid .sek-grid-items.nb-masonry-grid-images-loaded {
|
291 |
+
grid-auto-rows: 5px;
|
292 |
+
}
|
293 |
+
|
294 |
+
.sek-module-inner .nb-masonry-post-grid .sek-grid-items article {
|
295 |
+
overflow: hidden;
|
296 |
+
}
|
297 |
+
|
298 |
+
.sek-module-inner .nb-masonry-post-grid .sek-grid-items.sek-thumb-no-custom-height .sek-pg-thumbnail a {
|
299 |
+
height: auto;
|
300 |
+
padding-top: 0;
|
301 |
+
}
|
302 |
+
|
303 |
+
.sek-module-inner .nb-masonry-post-grid .sek-grid-items.sek-thumb-no-custom-height .sek-pg-thumbnail img {
|
304 |
+
position: relative;
|
305 |
+
height: auto;
|
306 |
+
width: 100%;
|
307 |
+
}
|
308 |
+
|
309 |
+
.sek-module-inner .nb-item-box-shadow .sek-grid-items article {
|
310 |
+
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
311 |
+
}
|
312 |
+
|
313 |
+
.sek-post-navigation #sek-nav-below {
|
314 |
+
background-color: #f7f8f9;
|
315 |
+
margin-top: 20px;
|
316 |
+
padding: 5px;
|
317 |
+
}
|
318 |
+
|
319 |
+
.sek-post-navigation #sek-nav-below .sek-pagination {
|
320 |
+
text-align: center;
|
321 |
+
}
|
322 |
+
|
323 |
+
.sek-post-navigation #sek-nav-below .sek-pagination ul {
|
324 |
+
display: inline-block;
|
325 |
+
vertical-align: middle;
|
326 |
+
margin: 0;
|
327 |
+
}
|
328 |
+
|
329 |
+
.sek-post-navigation #sek-nav-below .sek-pagination .page-numbers {
|
330 |
+
font-family: inherit;
|
331 |
+
opacity: 0.7;
|
332 |
+
text-decoration: none !important;
|
333 |
+
}
|
334 |
+
|
335 |
+
.sek-post-navigation #sek-nav-below .sek-pagination .current {
|
336 |
+
font-weight: 600;
|
337 |
+
opacity: 1;
|
338 |
+
}
|
339 |
+
|
340 |
+
.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list > * {
|
341 |
+
margin: 0 5px;
|
342 |
+
}
|
343 |
+
|
344 |
+
.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list {
|
345 |
+
margin: 0 -5px;
|
346 |
+
}
|
347 |
+
|
348 |
+
.sek-post-navigation #sek-nav-below nav {
|
349 |
+
padding-top: 20px;
|
350 |
+
padding-bottom: 20px;
|
351 |
+
}
|
352 |
+
|
353 |
+
.sek-post-navigation #sek-nav-below ul.sek-czr-pager {
|
354 |
+
margin: 0;
|
355 |
+
}
|
356 |
+
|
357 |
+
.sek-post-navigation #sek-nav-below li {
|
358 |
+
display: inline-block;
|
359 |
+
font-size: 16px;
|
360 |
+
}
|
361 |
+
|
362 |
+
.sek-post-navigation #sek-nav-below a, .sek-post-navigation #sek-nav-below .sek-meta-nav-title {
|
363 |
+
text-transform: uppercase;
|
364 |
+
letter-spacing: 2px;
|
365 |
+
color: #5A5A5A;
|
366 |
+
}
|
367 |
+
|
368 |
+
.sek-post-navigation #sek-nav-below a:hover, .sek-post-navigation #sek-nav-below .sek-meta-nav-title:hover {
|
369 |
+
color: #3b3b3b;
|
370 |
+
opacity: 1 !important;
|
371 |
+
}
|
372 |
+
|
373 |
+
.sek-post-navigation #sek-nav-below .sek-czr-pager > li {
|
374 |
+
display: block;
|
375 |
+
}
|
376 |
+
|
377 |
+
.sek-post-navigation #sek-nav-below .sek-nav-dir {
|
378 |
+
display: block;
|
379 |
+
}
|
380 |
+
|
381 |
+
.sek-post-navigation #sek-nav-below .sek-nav-dir > a {
|
382 |
+
max-width: 100%;
|
383 |
+
}
|
384 |
+
|
385 |
+
.sek-post-navigation #sek-nav-below a i.arrow {
|
386 |
+
font-size: 0.9em;
|
387 |
+
}
|
388 |
+
|
389 |
+
.sek-post-navigation #sek-nav-below .page-numbers, .sek-post-navigation #sek-nav-below a {
|
390 |
+
font-family: inherit;
|
391 |
+
line-height: 30px;
|
392 |
+
height: 30px;
|
393 |
+
display: inline-block;
|
394 |
+
vertical-align: middle;
|
395 |
+
transition: all 0.3s ease;
|
396 |
+
position: relative;
|
397 |
+
}
|
398 |
+
|
399 |
+
.sek-post-navigation #sek-nav-below .sek-meta-nav {
|
400 |
+
display: -ms-flexbox;
|
401 |
+
display: flex;
|
402 |
+
transition: all .2s,.6s ease;
|
403 |
+
opacity: .7;
|
404 |
+
}
|
405 |
+
|
406 |
+
.sek-post-navigation #sek-nav-below a:hover .sek-meta-nav {
|
407 |
+
opacity: 1;
|
408 |
+
text-decoration: underline;
|
409 |
+
}
|
410 |
+
|
411 |
+
.sek-post-navigation #sek-nav-below .sek-meta-nav-title {
|
412 |
+
display: inline-block;
|
413 |
+
overflow: hidden;
|
414 |
+
text-overflow: ellipsis;
|
415 |
+
white-space: nowrap;
|
416 |
+
vertical-align: middle;
|
417 |
+
font-size: 0.9em;
|
418 |
+
}
|
assets/front/css/modules/quote-module.css
CHANGED
@@ -1,114 +1,114 @@
|
|
1 |
/*************************************
|
2 |
* QUOTE MODULE
|
3 |
-
*************************************/
|
4 |
-
.sek-quote p {
|
5 |
-
margin: 0 0 .5em;
|
6 |
-
padding: 0;
|
7 |
-
}
|
8 |
-
|
9 |
-
.sek-quote .sek-cite {
|
10 |
-
font-size: 14px;
|
11 |
-
line-height: 1.5em;
|
12 |
-
font-style: inherit;
|
13 |
-
}
|
14 |
-
|
15 |
-
.sek-quote[data-sek-quote-design="none"] {
|
16 |
-
border-left: none;
|
17 |
-
}
|
18 |
-
|
19 |
-
.sek-quote .sek-quote-content {
|
20 |
-
font-weight: 400;
|
21 |
-
font-size: 1.2em;
|
22 |
-
line-height: 1.5em;
|
23 |
-
color: inherit;
|
24 |
-
}
|
25 |
-
|
26 |
-
.sek-quote.sek-quote-design {
|
27 |
-
background: none;
|
28 |
-
font-style: inherit;
|
29 |
-
margin-right: 0;
|
30 |
-
margin-left: 0;
|
31 |
-
padding: 15px 0;
|
32 |
-
border: none;
|
33 |
-
}
|
34 |
-
|
35 |
-
.sek-quote.sek-quote-design > * {
|
36 |
-
padding: 0;
|
37 |
-
margin: 0;
|
38 |
-
}
|
39 |
-
|
40 |
-
.sek-quote.sek-quote-design::before, .sek-quote.sek-quote-design::after {
|
41 |
-
display: none;
|
42 |
-
}
|
43 |
-
|
44 |
-
.sek-quote.sek-quote-design .sek-cite {
|
45 |
-
padding: 0;
|
46 |
-
font-weight: normal;
|
47 |
-
}
|
48 |
-
|
49 |
-
.sek-quote.sek-quote-design .sek-cite::before {
|
50 |
-
display: none;
|
51 |
-
}
|
52 |
-
|
53 |
-
.sek-quote.sek-quote-design .sek-quote-inner {
|
54 |
-
color: inherit;
|
55 |
-
}
|
56 |
-
|
57 |
-
.sek-quote.sek-quote-design.sek-quote-icon-before .sek-quote-inner {
|
58 |
-
padding-left: calc( 10px + 0.7 * 50px);
|
59 |
-
}
|
60 |
-
|
61 |
-
.sek-quote.sek-quote-design.sek-border-before {
|
62 |
-
padding-left: 15px;
|
63 |
-
border-left: 5px solid rgba(0, 0, 0, 0.1);
|
64 |
-
}
|
65 |
-
|
66 |
-
.sek-quote.sek-quote-design.sek-border-before .sek-cite {
|
67 |
-
clear: both;
|
68 |
-
display: block;
|
69 |
-
margin-top: 1.5em;
|
70 |
-
position: relative;
|
71 |
-
padding-left: 2.2em;
|
72 |
-
padding-right: 0.25em;
|
73 |
-
}
|
74 |
-
|
75 |
-
.sek-quote.sek-quote-design.sek-border-before .sek-cite::before {
|
76 |
-
display: block;
|
77 |
-
content: '';
|
78 |
-
top: 1em;
|
79 |
-
position: absolute;
|
80 |
-
background: none;
|
81 |
-
width: 2em;
|
82 |
-
height: auto;
|
83 |
-
left: 0;
|
84 |
-
border-top: 1px solid;
|
85 |
-
}
|
86 |
-
|
87 |
-
.sek-quote.sek-quote-design.sek-quote-icon-before {
|
88 |
-
position: relative;
|
89 |
-
display: flex;
|
90 |
-
}
|
91 |
-
|
92 |
-
.sek-quote.sek-quote-design.sek-quote-icon-before .sek-quote-content *:last-child {
|
93 |
-
margin-bottom: .75em;
|
94 |
-
}
|
95 |
-
|
96 |
-
.sek-quote.sek-quote-design.sek-quote-icon-before::before {
|
97 |
-
content: "\275D";
|
98 |
-
font-family: "Arial Unicode MS", Code2000;
|
99 |
-
font-size: 50px;
|
100 |
-
line-height: 1em;
|
101 |
-
color: #ccc;
|
102 |
-
font-style: normal;
|
103 |
-
text-align: center;
|
104 |
-
-moz-osx-font-smoothing: grayscale;
|
105 |
-
-webkit-font-smoothing: antialiased;
|
106 |
-
font-variant: normal;
|
107 |
-
text-rendering: auto;
|
108 |
-
display: flex;
|
109 |
-
width: auto;
|
110 |
-
margin: 0;
|
111 |
-
left: 0;
|
112 |
-
position: absolute;
|
113 |
-
top: 10px;
|
114 |
-
}
|
1 |
/*************************************
|
2 |
* QUOTE MODULE
|
3 |
+
*************************************/
|
4 |
+
.sek-quote p {
|
5 |
+
margin: 0 0 .5em;
|
6 |
+
padding: 0;
|
7 |
+
}
|
8 |
+
|
9 |
+
.sek-quote .sek-cite {
|
10 |
+
font-size: 14px;
|
11 |
+
line-height: 1.5em;
|
12 |
+
font-style: inherit;
|
13 |
+
}
|
14 |
+
|
15 |
+
.sek-quote[data-sek-quote-design="none"] {
|
16 |
+
border-left: none;
|
17 |
+
}
|
18 |
+
|
19 |
+
.sek-quote .sek-quote-content {
|
20 |
+
font-weight: 400;
|
21 |
+
font-size: 1.2em;
|
22 |
+
line-height: 1.5em;
|
23 |
+
color: inherit;
|
24 |
+
}
|
25 |
+
|
26 |
+
.sek-quote.sek-quote-design {
|
27 |
+
background: none;
|
28 |
+
font-style: inherit;
|
29 |
+
margin-right: 0;
|
30 |
+
margin-left: 0;
|
31 |
+
padding: 15px 0;
|
32 |
+
border: none;
|
33 |
+
}
|
34 |
+
|
35 |
+
.sek-quote.sek-quote-design > * {
|
36 |
+
padding: 0;
|
37 |
+
margin: 0;
|
38 |
+
}
|
39 |
+
|
40 |
+
.sek-quote.sek-quote-design::before, .sek-quote.sek-quote-design::after {
|
41 |
+
display: none;
|
42 |
+
}
|
43 |
+
|
44 |
+
.sek-quote.sek-quote-design .sek-cite {
|
45 |
+
padding: 0;
|
46 |
+
font-weight: normal;
|
47 |
+
}
|
48 |
+
|
49 |
+
.sek-quote.sek-quote-design .sek-cite::before {
|
50 |
+
display: none;
|
51 |
+
}
|
52 |
+
|
53 |
+
.sek-quote.sek-quote-design .sek-quote-inner {
|
54 |
+
color: inherit;
|
55 |
+
}
|
56 |
+
|
57 |
+
.sek-quote.sek-quote-design.sek-quote-icon-before .sek-quote-inner {
|
58 |
+
padding-left: calc( 10px + 0.7 * 50px);
|
59 |
+
}
|
60 |
+
|
61 |
+
.sek-quote.sek-quote-design.sek-border-before {
|
62 |
+
padding-left: 15px;
|
63 |
+
border-left: 5px solid rgba(0, 0, 0, 0.1);
|
64 |
+
}
|
65 |
+
|
66 |
+
.sek-quote.sek-quote-design.sek-border-before .sek-cite {
|
67 |
+
clear: both;
|
68 |
+
display: block;
|
69 |
+
margin-top: 1.5em;
|
70 |
+
position: relative;
|
71 |
+
padding-left: 2.2em;
|
72 |
+
padding-right: 0.25em;
|
73 |
+
}
|
74 |
+
|
75 |
+
.sek-quote.sek-quote-design.sek-border-before .sek-cite::before {
|
76 |
+
display: block;
|
77 |
+
content: '';
|
78 |
+
top: 1em;
|
79 |
+
position: absolute;
|
80 |
+
background: none;
|
81 |
+
width: 2em;
|
82 |
+
height: auto;
|
83 |
+
left: 0;
|
84 |
+
border-top: 1px solid;
|
85 |
+
}
|
86 |
+
|
87 |
+
.sek-quote.sek-quote-design.sek-quote-icon-before {
|
88 |
+
position: relative;
|
89 |
+
display: flex;
|
90 |
+
}
|
91 |
+
|
92 |
+
.sek-quote.sek-quote-design.sek-quote-icon-before .sek-quote-content *:last-child {
|
93 |
+
margin-bottom: .75em;
|
94 |
+
}
|
95 |
+
|
96 |
+
.sek-quote.sek-quote-design.sek-quote-icon-before::before {
|
97 |
+
content: "\275D";
|
98 |
+
font-family: "Arial Unicode MS", Code2000;
|
99 |
+
font-size: 50px;
|
100 |
+
line-height: 1em;
|
101 |
+
color: #ccc;
|
102 |
+
font-style: normal;
|
103 |
+
text-align: center;
|
104 |
+
-moz-osx-font-smoothing: grayscale;
|
105 |
+
-webkit-font-smoothing: antialiased;
|
106 |
+
font-variant: normal;
|
107 |
+
text-rendering: auto;
|
108 |
+
display: flex;
|
109 |
+
width: auto;
|
110 |
+
margin: 0;
|
111 |
+
left: 0;
|
112 |
+
position: absolute;
|
113 |
+
top: 10px;
|
114 |
+
}
|
assets/front/css/modules/simple-form-module.css
CHANGED
@@ -1,97 +1,97 @@
|
|
1 |
/*************************************
|
2 |
* SIMPLE FORM MODULE
|
3 |
-
*************************************/
|
4 |
-
.sek-simple-form-wrapper input[type=text], .sek-simple-form-wrapper textarea {
|
5 |
-
font-size: 16px;
|
6 |
-
width: 100% !important;
|
7 |
-
padding: 0.4em 0.5em;
|
8 |
-
border-radius: 3px;
|
9 |
-
box-sizing: border-box;
|
10 |
-
outline: none;
|
11 |
-
font-weight: normal;
|
12 |
-
max-width: 100%;
|
13 |
-
border: none;
|
14 |
-
color: #555555;
|
15 |
-
background-color: #ffffff;
|
16 |
-
}
|
17 |
-
|
18 |
-
.sek-simple-form-wrapper textarea {
|
19 |
-
height: auto;
|
20 |
-
max-height: 150px;
|
21 |
-
}
|
22 |
-
|
23 |
-
.sek-simple-form-wrapper .sek-form-field {
|
24 |
-
margin-bottom: 15px;
|
25 |
-
clear: both;
|
26 |
-
}
|
27 |
-
|
28 |
-
.sek-simple-form-wrapper label {
|
29 |
-
color: #444444;
|
30 |
-
font-weight: bold;
|
31 |
-
text-align: left;
|
32 |
-
margin: 0;
|
33 |
-
padding: 0 0 3px 0;
|
34 |
-
width: auto;
|
35 |
-
display: block;
|
36 |
-
}
|
37 |
-
|
38 |
-
.sek-simple-form-wrapper.use-outset-shadow .sek-form-field input[type="text"], .sek-simple-form-wrapper.use-outset-shadow .sek-form-field textarea {
|
39 |
-
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
40 |
-
}
|
41 |
-
|
42 |
-
.sek-simple-form-wrapper.use-inset-shadow .sek-form-field input[type="text"], .sek-simple-form-wrapper.use-inset-shadow .sek-form-field textarea {
|
43 |
-
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
44 |
-
}
|
45 |
-
|
46 |
-
.sek-simple-form-wrapper #sek-form-respond {
|
47 |
-
padding: 20px 0;
|
48 |
-
}
|
49 |
-
|
50 |
-
.sek-simple-form-wrapper input[type="checkbox"] + label {
|
51 |
-
display: inline;
|
52 |
-
font-weight: bold;
|
53 |
-
margin-left: 0.5rem;
|
54 |
-
}
|
55 |
-
|
56 |
-
.sek-form-message {
|
57 |
-
padding: 10px;
|
58 |
-
margin: 10px 0;
|
59 |
-
text-align: center;
|
60 |
-
line-height: 1.5em;
|
61 |
-
font-size: 16px;
|
62 |
-
border-radius: 4px;
|
63 |
-
}
|
64 |
-
|
65 |
-
.sek-form-message.sek-mail-failure {
|
66 |
-
color: #ff0000;
|
67 |
-
border: 1px solid #ff0000;
|
68 |
-
background: none;
|
69 |
-
background: rgba(255, 0, 0, 0.05);
|
70 |
-
}
|
71 |
-
|
72 |
-
.sek-form-message.sek-mail-success {
|
73 |
-
color: #008000;
|
74 |
-
border: 1px solid #008000;
|
75 |
-
background: none;
|
76 |
-
background: rgba(0, 128, 0, 0.05);
|
77 |
-
}
|
78 |
-
|
79 |
-
.sek-form-message.sek-mail-aborted {
|
80 |
-
color: #ffa500;
|
81 |
-
border: 1px solid #ffa500;
|
82 |
-
background: none;
|
83 |
-
background: rgba(255, 165, 0, 0.05);
|
84 |
-
}
|
85 |
-
|
86 |
-
.grecaptcha-badge {
|
87 |
-
z-index: 1;
|
88 |
-
}
|
89 |
-
|
90 |
-
.sek-hide-rc-badge .grecaptcha-badge {
|
91 |
-
display: none;
|
92 |
-
}
|
93 |
-
|
94 |
-
.sek-show-rc-badge .grecaptcha-badge {
|
95 |
-
display: block;
|
96 |
-
visibility: visible !important;
|
97 |
-
}
|
1 |
/*************************************
|
2 |
* SIMPLE FORM MODULE
|
3 |
+
*************************************/
|
4 |
+
.sek-simple-form-wrapper input[type=text], .sek-simple-form-wrapper textarea {
|
5 |
+
font-size: 16px;
|
6 |
+
width: 100% !important;
|
7 |
+
padding: 0.4em 0.5em;
|
8 |
+
border-radius: 3px;
|
9 |
+
box-sizing: border-box;
|
10 |
+
outline: none;
|
11 |
+
font-weight: normal;
|
12 |
+
max-width: 100%;
|
13 |
+
border: none;
|
14 |
+
color: #555555;
|
15 |
+
background-color: #ffffff;
|
16 |
+
}
|
17 |
+
|
18 |
+
.sek-simple-form-wrapper textarea {
|
19 |
+
height: auto;
|
20 |
+
max-height: 150px;
|
21 |
+
}
|
22 |
+
|
23 |
+
.sek-simple-form-wrapper .sek-form-field {
|
24 |
+
margin-bottom: 15px;
|
25 |
+
clear: both;
|
26 |
+
}
|
27 |
+
|
28 |
+
.sek-simple-form-wrapper label {
|
29 |
+
color: #444444;
|
30 |
+
font-weight: bold;
|
31 |
+
text-align: left;
|
32 |
+
margin: 0;
|
33 |
+
padding: 0 0 3px 0;
|
34 |
+
width: auto;
|
35 |
+
display: block;
|
36 |
+
}
|
37 |
+
|
38 |
+
.sek-simple-form-wrapper.use-outset-shadow .sek-form-field input[type="text"], .sek-simple-form-wrapper.use-outset-shadow .sek-form-field textarea {
|
39 |
+
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
40 |
+
}
|
41 |
+
|
42 |
+
.sek-simple-form-wrapper.use-inset-shadow .sek-form-field input[type="text"], .sek-simple-form-wrapper.use-inset-shadow .sek-form-field textarea {
|
43 |
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
44 |
+
}
|
45 |
+
|
46 |
+
.sek-simple-form-wrapper #sek-form-respond {
|
47 |
+
padding: 20px 0;
|
48 |
+
}
|
49 |
+
|
50 |
+
.sek-simple-form-wrapper input[type="checkbox"] + label {
|
51 |
+
display: inline;
|
52 |
+
font-weight: bold;
|
53 |
+
margin-left: 0.5rem;
|
54 |
+
}
|
55 |
+
|
56 |
+
.sek-form-message {
|
57 |
+
padding: 10px;
|
58 |
+
margin: 10px 0;
|
59 |
+
text-align: center;
|
60 |
+
line-height: 1.5em;
|
61 |
+
font-size: 16px;
|
62 |
+
border-radius: 4px;
|
63 |
+
}
|
64 |
+
|
65 |
+
.sek-form-message.sek-mail-failure {
|
66 |
+
color: #ff0000;
|
67 |
+
border: 1px solid #ff0000;
|
68 |
+
background: none;
|
69 |
+
background: rgba(255, 0, 0, 0.05);
|
70 |
+
}
|
71 |
+
|
72 |
+
.sek-form-message.sek-mail-success {
|
73 |
+
color: #008000;
|
74 |
+
border: 1px solid #008000;
|
75 |
+
background: none;
|
76 |
+
background: rgba(0, 128, 0, 0.05);
|
77 |
+
}
|
78 |
+
|
79 |
+
.sek-form-message.sek-mail-aborted {
|
80 |
+
color: #ffa500;
|
81 |
+
border: 1px solid #ffa500;
|
82 |
+
background: none;
|
83 |
+
background: rgba(255, 165, 0, 0.05);
|
84 |
+
}
|
85 |
+
|
86 |
+
.grecaptcha-badge {
|
87 |
+
z-index: 1;
|
88 |
+
}
|
89 |
+
|
90 |
+
.sek-hide-rc-badge .grecaptcha-badge {
|
91 |
+
display: none;
|
92 |
+
}
|
93 |
+
|
94 |
+
.sek-show-rc-badge .grecaptcha-badge {
|
95 |
+
display: block;
|
96 |
+
visibility: visible !important;
|
97 |
+
}
|
assets/front/css/modules/social-icons-module.css
CHANGED
@@ -1,33 +1,33 @@
|
|
1 |
/*************************************
|
2 |
* SOCIAL ICONS MODULE
|
3 |
-
*************************************/
|
4 |
-
[data-sek-module-type="czr_social_icons_module"] .sek-module-inner .sek-social-icons-wrapper {
|
5 |
-
margin: 10px 0;
|
6 |
-
}
|
7 |
-
|
8 |
-
.nb-loc .sek-module-inner .sek-social-icons-wrapper {
|
9 |
-
text-align: center;
|
10 |
-
}
|
11 |
-
|
12 |
-
.nb-loc .sek-module-inner .sek-social-icons-wrapper > *:not(:last-child) {
|
13 |
-
padding-right: 8px;
|
14 |
-
}
|
15 |
-
|
16 |
-
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li {
|
17 |
-
display: inline-block;
|
18 |
-
}
|
19 |
-
|
20 |
-
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li a {
|
21 |
-
color: #707070;
|
22 |
-
}
|
23 |
-
|
24 |
-
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
25 |
-
font-size: 28px;
|
26 |
-
line-height: 1.5em;
|
27 |
-
}
|
28 |
-
|
29 |
-
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
30 |
-
-webkit-transition: all 0.2s ease-in-out;
|
31 |
-
-o-transition: all 0.2s ease-in-out;
|
32 |
-
transition: all 0.2s ease-in-out;
|
33 |
-
}
|
1 |
/*************************************
|
2 |
* SOCIAL ICONS MODULE
|
3 |
+
*************************************/
|
4 |
+
[data-sek-module-type="czr_social_icons_module"] .sek-module-inner .sek-social-icons-wrapper {
|
5 |
+
margin: 10px 0;
|
6 |
+
}
|
7 |
+
|
8 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper {
|
9 |
+
text-align: center;
|
10 |
+
}
|
11 |
+
|
12 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > *:not(:last-child) {
|
13 |
+
padding-right: 8px;
|
14 |
+
}
|
15 |
+
|
16 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li {
|
17 |
+
display: inline-block;
|
18 |
+
}
|
19 |
+
|
20 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li a {
|
21 |
+
color: #707070;
|
22 |
+
}
|
23 |
+
|
24 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
25 |
+
font-size: 28px;
|
26 |
+
line-height: 1.5em;
|
27 |
+
}
|
28 |
+
|
29 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
30 |
+
-webkit-transition: all 0.2s ease-in-out;
|
31 |
+
-o-transition: all 0.2s ease-in-out;
|
32 |
+
transition: all 0.2s ease-in-out;
|
33 |
+
}
|
assets/front/css/modules/special-image-module.css
CHANGED
@@ -1,127 +1,127 @@
|
|
1 |
/*************************************
|
2 |
* NIMBLE IMAGE MODULE
|
3 |
-
*************************************/
|
4 |
-
.sek-nimble-image-wrapper {
|
5 |
-
max-width: 100%;
|
6 |
-
overflow: hidden;
|
7 |
-
width: 100%;
|
8 |
-
position: relative;
|
9 |
-
display: block;
|
10 |
-
background-position: center center;
|
11 |
-
background-size: cover;
|
12 |
-
display: flex;
|
13 |
-
align-items: center;
|
14 |
-
justify-content: center;
|
15 |
-
backface-visibility: hidden;
|
16 |
-
transform-style: preserve-3d;
|
17 |
-
}
|
18 |
-
|
19 |
-
.sek-nimble-image-wrapper::before {
|
20 |
-
content: '';
|
21 |
-
display: block;
|
22 |
-
padding-top: 100%;
|
23 |
-
}
|
24 |
-
|
25 |
-
.nb-loc [data-sek-level] .sek-module-inner .sek-nimble-image-wrapper a {
|
26 |
-
color: #ffffff;
|
27 |
-
}
|
28 |
-
|
29 |
-
.nb-loc [data-sek-level] .sek-module-inner .sek-nimble-image-wrapper a:hover {
|
30 |
-
color: #ffffff;
|
31 |
-
}
|
32 |
-
|
33 |
-
.sek-nimble-image-wrapper .nb-icon-text-wrapper {
|
34 |
-
position: absolute;
|
35 |
-
width: 100%;
|
36 |
-
height: 100%;
|
37 |
-
z-index: 1;
|
38 |
-
top: 0;
|
39 |
-
display: -webkit-box;
|
40 |
-
display: -moz-box;
|
41 |
-
display: -ms-flexbox;
|
42 |
-
display: -webkit-flex;
|
43 |
-
display: flex;
|
44 |
-
-ms-flex-direction: column;
|
45 |
-
flex-direction: column;
|
46 |
-
align-items: center;
|
47 |
-
justify-content: center;
|
48 |
-
}
|
49 |
-
|
50 |
-
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-icon {
|
51 |
-
font-size: 80px;
|
52 |
-
line-height: 1em;
|
53 |
-
color: #000000;
|
54 |
-
transition: all .3s ease;
|
55 |
-
}
|
56 |
-
|
57 |
-
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text, .sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text * {
|
58 |
-
color: #000000;
|
59 |
-
font-size: 16px;
|
60 |
-
line-height: 1.5em;
|
61 |
-
font-weight: 400;
|
62 |
-
transition: all .3s ease;
|
63 |
-
}
|
64 |
-
|
65 |
-
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text p {
|
66 |
-
margin: 0;
|
67 |
-
padding: 0;
|
68 |
-
}
|
69 |
-
|
70 |
-
.sek-nimble-image-wrapper.nb-icon-has-hover-color:hover .nb-pro-img-icon {
|
71 |
-
color: #969696;
|
72 |
-
}
|
73 |
-
|
74 |
-
.sek-nimble-image-mask {
|
75 |
-
position: absolute;
|
76 |
-
border-color: #fff;
|
77 |
-
left: 0;
|
78 |
-
right: 0;
|
79 |
-
top: 0;
|
80 |
-
bottom: 0;
|
81 |
-
overflow: hidden;
|
82 |
-
z-index: 1;
|
83 |
-
display: flex;
|
84 |
-
align-items: center;
|
85 |
-
justify-content: center;
|
86 |
-
}
|
87 |
-
|
88 |
-
.sek-nimble-image-mask::before {
|
89 |
-
position: absolute;
|
90 |
-
content: '';
|
91 |
-
z-index: 1;
|
92 |
-
border: 150vw solid;
|
93 |
-
border-color: inherit;
|
94 |
-
box-sizing: content-box;
|
95 |
-
transition: all .3s ease;
|
96 |
-
-webkit-backface-visibility: hidden;
|
97 |
-
backface-visibility: hidden;
|
98 |
-
}
|
99 |
-
|
100 |
-
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand:hover .sek-nimble-image-mask::before,
|
101 |
-
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink .sek-nimble-image-mask::before,
|
102 |
-
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-expanded .sek-nimble-image-mask::before {
|
103 |
-
width: 88%;
|
104 |
-
padding-bottom: 88%;
|
105 |
-
}
|
106 |
-
|
107 |
-
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink:hover .sek-nimble-image-mask::before,
|
108 |
-
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand .sek-nimble-image-mask::before,
|
109 |
-
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-shrinked .sek-nimble-image-mask::before {
|
110 |
-
width: 63%;
|
111 |
-
padding-bottom: 63%;
|
112 |
-
}
|
113 |
-
|
114 |
-
.sek-nimble-image-wrapper.nb-circle-mask .sek-nimble-image-mask::before {
|
115 |
-
border-radius: 50%;
|
116 |
-
}
|
117 |
-
|
118 |
-
.sek-nimble-image {
|
119 |
-
position: absolute;
|
120 |
-
width: 100%;
|
121 |
-
height: 100%;
|
122 |
-
background-position: center center;
|
123 |
-
background-size: cover;
|
124 |
-
background-repeat: no-repeat;
|
125 |
-
z-index: 0;
|
126 |
-
top: 0;
|
127 |
-
}
|
1 |
/*************************************
|
2 |
* NIMBLE IMAGE MODULE
|
3 |
+
*************************************/
|
4 |
+
.sek-nimble-image-wrapper {
|
5 |
+
max-width: 100%;
|
6 |
+
overflow: hidden;
|
7 |
+
width: 100%;
|
8 |
+
position: relative;
|
9 |
+
display: block;
|
10 |
+
background-position: center center;
|
11 |
+
background-size: cover;
|
12 |
+
display: flex;
|
13 |
+
align-items: center;
|
14 |
+
justify-content: center;
|
15 |
+
backface-visibility: hidden;
|
16 |
+
transform-style: preserve-3d;
|
17 |
+
}
|
18 |
+
|
19 |
+
.sek-nimble-image-wrapper::before {
|
20 |
+
content: '';
|
21 |
+
display: block;
|
22 |
+
padding-top: 100%;
|
23 |
+
}
|
24 |
+
|
25 |
+
.nb-loc [data-sek-level] .sek-module-inner .sek-nimble-image-wrapper a {
|
26 |
+
color: #ffffff;
|
27 |
+
}
|
28 |
+
|
29 |
+
.nb-loc [data-sek-level] .sek-module-inner .sek-nimble-image-wrapper a:hover {
|
30 |
+
color: #ffffff;
|
31 |
+
}
|
32 |
+
|
33 |
+
.sek-nimble-image-wrapper .nb-icon-text-wrapper {
|
34 |
+
position: absolute;
|
35 |
+
width: 100%;
|
36 |
+
height: 100%;
|
37 |
+
z-index: 1;
|
38 |
+
top: 0;
|
39 |
+
display: -webkit-box;
|
40 |
+
display: -moz-box;
|
41 |
+
display: -ms-flexbox;
|
42 |
+
display: -webkit-flex;
|
43 |
+
display: flex;
|
44 |
+
-ms-flex-direction: column;
|
45 |
+
flex-direction: column;
|
46 |
+
align-items: center;
|
47 |
+
justify-content: center;
|
48 |
+
}
|
49 |
+
|
50 |
+
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-icon {
|
51 |
+
font-size: 80px;
|
52 |
+
line-height: 1em;
|
53 |
+
color: #000000;
|
54 |
+
transition: all .3s ease;
|
55 |
+
}
|
56 |
+
|
57 |
+
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text, .sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text * {
|
58 |
+
color: #000000;
|
59 |
+
font-size: 16px;
|
60 |
+
line-height: 1.5em;
|
61 |
+
font-weight: 400;
|
62 |
+
transition: all .3s ease;
|
63 |
+
}
|
64 |
+
|
65 |
+
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text p {
|
66 |
+
margin: 0;
|
67 |
+
padding: 0;
|
68 |
+
}
|
69 |
+
|
70 |
+
.sek-nimble-image-wrapper.nb-icon-has-hover-color:hover .nb-pro-img-icon {
|
71 |
+
color: #969696;
|
72 |
+
}
|
73 |
+
|
74 |
+
.sek-nimble-image-mask {
|
75 |
+
position: absolute;
|
76 |
+
border-color: #fff;
|
77 |
+
left: 0;
|
78 |
+
right: 0;
|
79 |
+
top: 0;
|
80 |
+
bottom: 0;
|
81 |
+
overflow: hidden;
|
82 |
+
z-index: 1;
|
83 |
+
display: flex;
|
84 |
+
align-items: center;
|
85 |
+
justify-content: center;
|
86 |
+
}
|
87 |
+
|
88 |
+
.sek-nimble-image-mask::before {
|
89 |
+
position: absolute;
|
90 |
+
content: '';
|
91 |
+
z-index: 1;
|
92 |
+
border: 150vw solid;
|
93 |
+
border-color: inherit;
|
94 |
+
box-sizing: content-box;
|
95 |
+
transition: all .3s ease;
|
96 |
+
-webkit-backface-visibility: hidden;
|
97 |
+
backface-visibility: hidden;
|
98 |
+
}
|
99 |
+
|
100 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand:hover .sek-nimble-image-mask::before,
|
101 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink .sek-nimble-image-mask::before,
|
102 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-expanded .sek-nimble-image-mask::before {
|
103 |
+
width: 88%;
|
104 |
+
padding-bottom: 88%;
|
105 |
+
}
|
106 |
+
|
107 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink:hover .sek-nimble-image-mask::before,
|
108 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand .sek-nimble-image-mask::before,
|
109 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-shrinked .sek-nimble-image-mask::before {
|
110 |
+
width: 63%;
|
111 |
+
padding-bottom: 63%;
|
112 |
+
}
|
113 |
+
|
114 |
+
.sek-nimble-image-wrapper.nb-circle-mask .sek-nimble-image-mask::before {
|
115 |
+
border-radius: 50%;
|
116 |
+
}
|
117 |
+
|
118 |
+
.sek-nimble-image {
|
119 |
+
position: absolute;
|
120 |
+
width: 100%;
|
121 |
+
height: 100%;
|
122 |
+
background-position: center center;
|
123 |
+
background-size: cover;
|
124 |
+
background-repeat: no-repeat;
|
125 |
+
z-index: 0;
|
126 |
+
top: 0;
|
127 |
+
}
|
assets/front/css/sek-base-light-rtl.css
CHANGED
@@ -1,1172 +1,1172 @@
|
|
1 |
-
/* -------------------------------------------------------------------------- */
|
2 |
/* <SCOPED RESET>
|
3 |
-
/* -------------------------------------------------------------------------- */
|
4 |
-
.sektion-wrapper *,
|
5 |
-
.sektion-wrapper *::before,
|
6 |
-
.sektion-wrapper *::after {
|
7 |
-
box-sizing: border-box;
|
8 |
-
}
|
9 |
-
|
10 |
-
.sektion-wrapper span, .sektion-wrapper applet, .sektion-wrapper object, .sektion-wrapper iframe,
|
11 |
-
.sektion-wrapper h1, .sektion-wrapper h2, .sektion-wrapper h3, .sektion-wrapper h4, .sektion-wrapper h5, .sektion-wrapper h6, .sektion-wrapper p, .sektion-wrapper blockquote, .sektion-wrapper pre,
|
12 |
-
.sektion-wrapper a, .sektion-wrapper abbr, .sektion-wrapper acronym, .sektion-wrapper address, .sektion-wrapper big, .sektion-wrapper cite, .sektion-wrapper code,
|
13 |
-
.sektion-wrapper del, .sektion-wrapper dfn, .sektion-wrapper em, .sektion-wrapper img, .sektion-wrapper ins, .sektion-wrapper kbd, .sektion-wrapper q, .sektion-wrapper s, .sektion-wrapper samp,
|
14 |
-
.sektion-wrapper small, .sektion-wrapper strike, .sektion-wrapper strong, .sektion-wrapper sub, .sektion-wrapper sup, .sektion-wrapper tt, .sektion-wrapper var,
|
15 |
-
.sektion-wrapper b, .sektion-wrapper u, .sektion-wrapper i, .sektion-wrapper center,
|
16 |
-
.sektion-wrapper dl, .sektion-wrapper dt, .sektion-wrapper dd, .sektion-wrapper ol, .sektion-wrapper ul, .sektion-wrapper li,
|
17 |
-
.sektion-wrapper fieldset, .sektion-wrapper form, .sektion-wrapper label, .sektion-wrapper legend,
|
18 |
-
.sektion-wrapper table, .sektion-wrapper caption, .sektion-wrapper tbody, .sektion-wrapper tfoot, .sektion-wrapper thead, .sektion-wrapper tr, .sektion-wrapper th, .sektion-wrapper td,
|
19 |
-
.sektion-wrapper article, .sektion-wrapper aside, .sektion-wrapper canvas, .sektion-wrapper details, .sektion-wrapper embed,
|
20 |
-
.sektion-wrapper figure:not([class*="wp-block-"]), .sektion-wrapper figcaption, .sektion-wrapper footer, .sektion-wrapper header, .sektion-wrapper hgroup,
|
21 |
-
.sektion-wrapper menu, .sektion-wrapper nav, .sektion-wrapper output, .sektion-wrapper ruby, .sektion-wrapper section, .sektion-wrapper summary,
|
22 |
-
.sektion-wrapper time, .sektion-wrapper mark, .sektion-wrapper audio, .sektion-wrapper video {
|
23 |
-
border: none;
|
24 |
-
font-size: inherit;
|
25 |
-
line-height: inherit;
|
26 |
-
margin: 0;
|
27 |
-
padding: 0;
|
28 |
-
}
|
29 |
-
|
30 |
-
.sektion-wrapper blockquote::before,
|
31 |
-
.sektion-wrapper blockquote::after, .sektion-wrapper q:before, .sektion-wrapper q:after {
|
32 |
-
content: "";
|
33 |
-
}
|
34 |
-
|
35 |
-
.sektion-wrapper ol, .sektion-wrapper ul {
|
36 |
-
list-style: none;
|
37 |
-
}
|
38 |
-
|
39 |
-
.sektion-wrapper img {
|
40 |
-
max-width: 100%;
|
41 |
-
vertical-align: middle;
|
42 |
-
border-style: none;
|
43 |
-
display: inline;
|
44 |
-
}
|
45 |
-
|
46 |
-
.sektion-wrapper svg:not(:root) {
|
47 |
-
overflow: hidden;
|
48 |
-
}
|
49 |
-
|
50 |
-
.sektion-wrapper embed, .sektion-wrapper iframe, .sektion-wrapper object {
|
51 |
-
max-width: 100%;
|
52 |
-
}
|
53 |
-
|
54 |
-
/* -------------------------------------------------------------------------- */
|
55 |
/* </SCOPED RESET>
|
56 |
-
/* -------------------------------------------------------------------------- */
|
57 |
-
/* make sure that the location level occupies 100% of the width */
|
58 |
-
[data-sek-level="location"] {
|
59 |
-
clear: both;
|
60 |
-
font-size: 16px;
|
61 |
-
}
|
62 |
-
|
63 |
-
/* To make vertical alignment possible in sections */
|
64 |
-
.sek-section, .sek-column, .sek-module {
|
65 |
-
display: flex;
|
66 |
-
align-items: center;
|
67 |
-
}
|
68 |
-
|
69 |
-
.sek-column-inner, .sek-module-inner {
|
70 |
-
-ms-flex: 0 0 100%;
|
71 |
-
flex: 0 0 100%;
|
72 |
-
max-width: 100%;
|
73 |
-
}
|
74 |
-
|
75 |
/* To allow horizontal centering of modules
|
76 |
@see https://github.com/presscustomizr/nimble-builder/issues/119
|
77 |
-
*/
|
78 |
-
/* - sections in locations */
|
79 |
-
/* - columns in sections */
|
80 |
-
/* - modules in columns */
|
81 |
-
.sek-column-inner {
|
82 |
-
display: flex;
|
83 |
-
flex-direction: column;
|
84 |
-
}
|
85 |
-
|
86 |
-
.sek-module {
|
87 |
-
align-self: center;
|
88 |
-
width: 100%;
|
89 |
-
max-width: 100%;
|
90 |
-
}
|
91 |
-
|
92 |
/* a nested sektion should reset its parent column padding
|
93 |
@see https://github.com/presscustomizr/nimble-builder/issues/25
|
94 |
-
*/
|
95 |
-
[data-sek-is-nested="true"] .sek-container-fluid {
|
96 |
-
padding-right: 0;
|
97 |
-
padding-left: 0;
|
98 |
-
}
|
99 |
-
|
100 |
-
/* MODULE PLACEHOLDER */
|
101 |
/*@font-face {
|
102 |
font-family: 'Material Icons';
|
103 |
font-style: normal;
|
104 |
font-weight: 400;
|
105 |
src: url('../fonts/material-icons/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2') format('woff2');
|
106 |
-
}*/
|
107 |
-
/* @see https://github.com/google/material-design-icons/blob/master/iconfont/material-icons.css */
|
108 |
-
.sek-module-placeholder {
|
109 |
-
text-align: center;
|
110 |
-
}
|
111 |
-
|
112 |
-
.sek-module-placeholder .material-icons {
|
113 |
-
font-size: inherit;
|
114 |
-
color: #cfcfcf;
|
115 |
-
}
|
116 |
-
|
117 |
-
/* LEVEL VISIBILITY BY DEVICE */
|
118 |
-
/* NIMBLE TEMPLATE GENERAL STYLING */
|
119 |
-
/* <inspired by Twenty Seventeed WP theme> */
|
120 |
-
.sek-screen-reader-text {
|
121 |
-
border: 0;
|
122 |
-
clip: rect(0, 0, 0, 0);
|
123 |
-
height: 1px;
|
124 |
-
overflow: hidden;
|
125 |
-
padding: 0;
|
126 |
-
position: absolute !important;
|
127 |
-
width: 1px;
|
128 |
-
word-wrap: normal !important;
|
129 |
-
}
|
130 |
-
|
131 |
-
#nimble-page {
|
132 |
-
position: relative;
|
133 |
-
word-wrap: break-word;
|
134 |
-
}
|
135 |
-
|
136 |
-
/* </inspired by Twenty Seventeen WP theme> */
|
137 |
-
/* Nimble btn in admin top bar */
|
138 |
-
#wpadminbar .sek-nimble-icon {
|
139 |
-
display: inline-block;
|
140 |
-
}
|
141 |
-
|
142 |
-
#wpadminbar .sek-nimble-icon img {
|
143 |
-
width: 28px;
|
144 |
-
position: absolute;
|
145 |
-
top: 2px;
|
146 |
-
-webkit-filter: grayscale(100%);
|
147 |
-
filter: grayscale(100%);
|
148 |
-
-webkit-filter: gray;
|
149 |
-
filter: gray;
|
150 |
-
-webkit-transition: all 0.3s ease-in-out;
|
151 |
-
-moz-transition: all, 0.3s ease-in-out;
|
152 |
-
-ms-transition: all, 0.3s ease-in-out;
|
153 |
-
-o-transition: all, 0.3s ease-in-out;
|
154 |
-
transition: all 0.3s ease-in-out;
|
155 |
-
-webkit-box-shadow: none;
|
156 |
-
box-shadow: none;
|
157 |
-
}
|
158 |
-
|
159 |
-
#wpadminbar .sek-nimble-icon:hover img {
|
160 |
-
-webkit-filter: none;
|
161 |
-
filter: none;
|
162 |
-
-webkit-filter: none;
|
163 |
-
filter: none;
|
164 |
-
}
|
165 |
-
|
166 |
-
#wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title {
|
167 |
-
padding-left: 30px;
|
168 |
-
}
|
169 |
-
|
170 |
-
[data-sek-has-bg="true"] {
|
171 |
-
background-size: cover;
|
172 |
-
background-repeat: no-repeat;
|
173 |
-
background-position: 50% 50%;
|
174 |
-
}
|
175 |
-
|
176 |
-
[data-sek-level="location"] [data-sek-bg-parallax="true"] {
|
177 |
-
background-attachment: fixed;
|
178 |
-
background-size: cover;
|
179 |
-
}
|
180 |
-
|
181 |
-
[data-sek-level="location"] .sek-has-bg {
|
182 |
-
position: relative;
|
183 |
-
}
|
184 |
-
|
185 |
-
@supports (-webkit-overflow-scrolling: touch) {
|
186 |
-
body [data-sek-level="location"] [data-sek-bg-parallax="true"], body [data-sek-level="location"] [data-sek-bg-fixed="true"] {
|
187 |
-
background-attachment: scroll;
|
188 |
-
}
|
189 |
-
}
|
190 |
-
|
191 |
-
[data-sek-level="location"] [data-sek-level] {
|
192 |
-
-webkit-transition: 0s linear;
|
193 |
-
-o-transition: 0s linear;
|
194 |
-
transition: 0s linear;
|
195 |
-
-webkit-transition-property: background-position;
|
196 |
-
-o-transition-property: background-position;
|
197 |
-
transition-property: background-position;
|
198 |
-
}
|
199 |
-
|
200 |
-
.sek-module .sek-module-inner .alx-tab.thumbs-enabled > li {
|
201 |
-
padding-left: 94px;
|
202 |
-
}
|
203 |
-
|
204 |
-
.sek-module .sek-module-inner .widget_hu_tabs ul,
|
205 |
-
.sek-module .sek-module-inner .widget_hu_tabs ol {
|
206 |
-
margin-left: 0;
|
207 |
-
margin-bottom: 0;
|
208 |
-
}
|
209 |
-
|
210 |
-
.sek-module .sek-module-inner .widget_hu_tabs .alx-tabs-nav {
|
211 |
-
margin-bottom: 10px;
|
212 |
-
}
|
213 |
-
|
214 |
-
[data-sek-level].sek-level-has-shadow {
|
215 |
-
-webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
216 |
-
-moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
217 |
-
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
218 |
-
}
|
219 |
-
|
220 |
-
.customizer-preview [data-sek-level].sek-level-has-shadow {
|
221 |
-
-webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
|
222 |
-
-moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
|
223 |
-
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
|
224 |
-
}
|
225 |
-
|
226 |
-
[data-sek-level][data-sek-video-bg-src] {
|
227 |
-
position: relative;
|
228 |
-
}
|
229 |
-
|
230 |
-
[data-sek-level] embed,
|
231 |
-
[data-sek-level] iframe,
|
232 |
-
[data-sek-level] object,
|
233 |
-
[data-sek-level] video {
|
234 |
-
max-width: 100%;
|
235 |
-
width: 100%;
|
236 |
-
margin: 0;
|
237 |
-
line-height: 1;
|
238 |
-
border: none;
|
239 |
-
}
|
240 |
-
|
241 |
-
[data-sek-level] .sek-custom-embed {
|
242 |
-
line-height: 0;
|
243 |
-
}
|
244 |
-
|
245 |
-
[data-sek-level] .sek-bg-video-wrapper,
|
246 |
-
[data-sek-level] .sek-background {
|
247 |
-
height: 100%;
|
248 |
-
width: 100%;
|
249 |
-
top: 0;
|
250 |
-
left: 0;
|
251 |
-
position: absolute !important;
|
252 |
-
overflow: hidden;
|
253 |
-
z-index: 0;
|
254 |
-
direction: ltr;
|
255 |
-
}
|
256 |
-
|
257 |
-
[data-sek-level] .sek-bg-video-wrapper {
|
258 |
-
-webkit-transition: opacity 0.5s linear;
|
259 |
-
-o-transition: opacity 0.5s linear;
|
260 |
-
transition: opacity 0.5s linear;
|
261 |
-
pointer-events: none;
|
262 |
-
opacity: 0;
|
263 |
-
}
|
264 |
-
|
265 |
-
[data-sek-level] .sek-bg-video-wrapper.sek-bg-loading {
|
266 |
-
opacity: 0;
|
267 |
-
visibility: hidden;
|
268 |
-
}
|
269 |
-
|
270 |
-
[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-vimeo-element {
|
271 |
-
max-width: none;
|
272 |
-
}
|
273 |
-
|
274 |
-
[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-video-local, [data-sek-level] .sek-background-vimeo-element {
|
275 |
-
position: absolute;
|
276 |
-
top: 50%;
|
277 |
-
left: 50%;
|
278 |
-
-webkit-transform: translateX(-50%) translateY(-50%);
|
279 |
-
-ms-transform: translateX(-50%) translateY(-50%);
|
280 |
-
transform: translateX(-50%) translateY(-50%);
|
281 |
-
}
|
282 |
-
|
283 |
-
[data-sek-level] .sek-background-video-local {
|
284 |
-
-o-object-fit: cover;
|
285 |
-
object-fit: cover;
|
286 |
-
}
|
287 |
-
|
288 |
-
.sek-module-inner .sek-debug-modules {
|
289 |
-
margin: 1em;
|
290 |
-
padding: 5px;
|
291 |
-
border: 1px solid rgba(221, 221, 221, 0.43);
|
292 |
-
box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);
|
293 |
-
-webkit-box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);
|
294 |
-
background-color: #fff;
|
295 |
-
font-size: 15px;
|
296 |
-
font-weight: normal;
|
297 |
-
color: #6d6d6d;
|
298 |
-
background: rgba(255, 255, 255, 0.6);
|
299 |
-
}
|
300 |
-
|
301 |
-
@media (max-width: 575px) {
|
302 |
-
.customizer-preview [data-sek-video-bg-on-mobile="false"] .sek-bg-video-wrapper {
|
303 |
-
display: none;
|
304 |
-
}
|
305 |
-
}
|
306 |
-
|
307 |
-
.sek-animate-candidate:not(.sek-animate-displayed-before-starting) {
|
308 |
-
opacity: 0;
|
309 |
-
}
|
310 |
-
|
311 |
-
.sek-overflow-hidden-while-animating {
|
312 |
-
overflow: hidden;
|
313 |
-
}
|
314 |
-
|
315 |
-
.nb-scroll-down #nimble-header:not(.sek-header-mobile-menu-expanded), .nb-scroll-up #nimble-header:not(.sek-header-mobile-menu-expanded) {
|
316 |
-
background-color: rgba(255, 255, 255, 0.9);
|
317 |
-
}
|
318 |
-
|
319 |
-
.mfp-wrap button.mfp-arrow, .mfp-wrap button.mfp-close {
|
320 |
-
background: none !important;
|
321 |
-
background: transparent !important;
|
322 |
-
}
|
323 |
-
|
324 |
-
.mfp-wrap img.mfp-img {
|
325 |
-
padding: 40px 0 0;
|
326 |
-
}
|
327 |
-
|
328 |
-
.mfp-wrap::after {
|
329 |
-
bottom: 20px;
|
330 |
-
}
|
331 |
-
|
332 |
-
.mfp-wrap .mfp-bottom-bar {
|
333 |
-
margin-top: 0;
|
334 |
-
}
|
335 |
-
|
336 |
-
.sek-service-font, .sek-module .sek-module-inner .sek-btn {
|
337 |
-
font-family: sans-serif;
|
338 |
-
}
|
339 |
-
|
340 |
-
.sek-container {
|
341 |
-
width: 100%;
|
342 |
-
padding-right: 10px;
|
343 |
-
padding-left: 10px;
|
344 |
-
margin-right: auto;
|
345 |
-
margin-left: auto;
|
346 |
-
}
|
347 |
-
|
348 |
-
@media (min-width: 576px) {
|
349 |
-
.sek-container {
|
350 |
-
max-width: 540px;
|
351 |
-
}
|
352 |
-
}
|
353 |
-
|
354 |
-
@media (min-width: 768px) {
|
355 |
-
.sek-container {
|
356 |
-
max-width: 720px;
|
357 |
-
}
|
358 |
-
}
|
359 |
-
|
360 |
-
@media (min-width: 992px) {
|
361 |
-
.sek-container {
|
362 |
-
max-width: 960px;
|
363 |
-
}
|
364 |
-
}
|
365 |
-
|
366 |
-
@media (min-width: 1200px) {
|
367 |
-
.sek-container {
|
368 |
-
max-width: 1140px;
|
369 |
-
}
|
370 |
-
}
|
371 |
-
|
372 |
-
.sek-container-fluid {
|
373 |
-
width: 100%;
|
374 |
-
padding-right: 10px;
|
375 |
-
padding-left: 10px;
|
376 |
-
margin-right: auto;
|
377 |
-
margin-left: auto;
|
378 |
-
}
|
379 |
-
|
380 |
-
.sek-row {
|
381 |
-
display: flex;
|
382 |
-
flex-wrap: wrap;
|
383 |
-
margin-right: -10px;
|
384 |
-
margin-left: -10px;
|
385 |
-
}
|
386 |
-
|
387 |
-
.sek-container-no-padding {
|
388 |
-
padding-right: 0;
|
389 |
-
padding-left: 0;
|
390 |
-
overflow-x: hidden;
|
391 |
-
}
|
392 |
-
|
393 |
-
.sek-no-gutters {
|
394 |
-
margin-right: 0;
|
395 |
-
margin-left: 0;
|
396 |
-
}
|
397 |
-
|
398 |
-
.sek-no-gutters > .sek-col,
|
399 |
-
.sek-no-gutters > [class*="sek-col-"] {
|
400 |
-
padding-right: 0;
|
401 |
-
padding-left: 0;
|
402 |
-
}
|
403 |
-
|
404 |
-
.sek-col-8, .sek-col-9, .sek-col-10, .sek-col-11, .sek-col-12, .sek-col-14, .sek-col-16, .sek-col-20, .sek-col-25, .sek-col-30, .sek-col-33, .sek-col-40, .sek-col-50, .sek-col-60, .sek-col-66, .sek-col-70, .sek-col-75, .sek-col-80, .sek-col-83, .sek-col-90, .sek-col-100, .sek-col-base,
|
405 |
-
.sek-col,
|
406 |
-
.sek-col-auto {
|
407 |
-
position: relative;
|
408 |
-
width: 100%;
|
409 |
-
min-height: 1px;
|
410 |
-
padding-right: 10px;
|
411 |
-
padding-left: 10px;
|
412 |
-
}
|
413 |
-
|
414 |
-
.sek-col-base {
|
415 |
-
flex: 0 0 100%;
|
416 |
-
max-width: 100%;
|
417 |
-
}
|
418 |
-
|
419 |
-
.sek-col {
|
420 |
-
flex-basis: 0;
|
421 |
-
flex-grow: 1;
|
422 |
-
max-width: 100%;
|
423 |
-
}
|
424 |
-
|
425 |
-
.sek-col-auto {
|
426 |
-
flex: 0 0 auto;
|
427 |
-
width: auto;
|
428 |
-
max-width: 100%;
|
429 |
-
}
|
430 |
-
|
431 |
-
@media (min-width: 768px) {
|
432 |
-
.sek-col-8 {
|
433 |
-
flex: 0 0 8.333%;
|
434 |
-
max-width: 8.333%;
|
435 |
-
}
|
436 |
-
.sek-col-9 {
|
437 |
-
flex: 0 0 9.090909%;
|
438 |
-
max-width: 9.090909%;
|
439 |
-
}
|
440 |
-
.sek-col-10 {
|
441 |
-
flex: 0 0 10%;
|
442 |
-
max-width: 10%;
|
443 |
-
}
|
444 |
-
.sek-col-11 {
|
445 |
-
flex: 0 0 11.111%;
|
446 |
-
max-width: 11.111%;
|
447 |
-
}
|
448 |
-
.sek-col-12 {
|
449 |
-
flex: 0 0 12.5%;
|
450 |
-
max-width: 12.5%;
|
451 |
-
}
|
452 |
-
.sek-col-14 {
|
453 |
-
flex: 0 0 14.285%;
|
454 |
-
max-width: 14.285%;
|
455 |
-
}
|
456 |
-
.sek-col-16 {
|
457 |
-
flex: 0 0 16.666%;
|
458 |
-
max-width: 16.666%;
|
459 |
-
}
|
460 |
-
.sek-col-20 {
|
461 |
-
flex: 0 0 20%;
|
462 |
-
max-width: 20%;
|
463 |
-
}
|
464 |
-
.sek-col-25 {
|
465 |
-
flex: 0 0 25%;
|
466 |
-
max-width: 25%;
|
467 |
-
}
|
468 |
-
.sek-col-30 {
|
469 |
-
flex: 0 0 30%;
|
470 |
-
max-width: 30%;
|
471 |
-
}
|
472 |
-
.sek-col-33 {
|
473 |
-
flex: 0 0 33.333%;
|
474 |
-
max-width: 33.333%;
|
475 |
-
}
|
476 |
-
.sek-col-40 {
|
477 |
-
flex: 0 0 40%;
|
478 |
-
max-width: 40%;
|
479 |
-
}
|
480 |
-
.sek-col-50 {
|
481 |
-
flex: 0 0 50%;
|
482 |
-
max-width: 50%;
|
483 |
-
}
|
484 |
-
.sek-col-60 {
|
485 |
-
flex: 0 0 60%;
|
486 |
-
max-width: 60%;
|
487 |
-
}
|
488 |
-
.sek-col-66 {
|
489 |
-
flex: 0 0 66.666%;
|
490 |
-
max-width: 66.666%;
|
491 |
-
}
|
492 |
-
.sek-col-70 {
|
493 |
-
flex: 0 0 70%;
|
494 |
-
max-width: 70%;
|
495 |
-
}
|
496 |
-
.sek-col-75 {
|
497 |
-
flex: 0 0 75%;
|
498 |
-
max-width: 75%;
|
499 |
-
}
|
500 |
-
.sek-col-80 {
|
501 |
-
flex: 0 0 80%;
|
502 |
-
max-width: 80%;
|
503 |
-
}
|
504 |
-
.sek-col-83 {
|
505 |
-
flex: 0 0 83.333%;
|
506 |
-
max-width: 83.333%;
|
507 |
-
}
|
508 |
-
.sek-col-90 {
|
509 |
-
flex: 0 0 90%;
|
510 |
-
max-width: 90%;
|
511 |
-
}
|
512 |
-
.sek-col-100 {
|
513 |
-
flex: 0 0 100%;
|
514 |
-
max-width: 100%;
|
515 |
-
}
|
516 |
-
.sek-order-first {
|
517 |
-
order: -1;
|
518 |
-
}
|
519 |
-
.sek-order-last {
|
520 |
-
order: 13;
|
521 |
-
}
|
522 |
-
.sek-order-0 {
|
523 |
-
order: 0;
|
524 |
-
}
|
525 |
-
.sek-order-1 {
|
526 |
-
order: 1;
|
527 |
-
}
|
528 |
-
.sek-order-2 {
|
529 |
-
order: 2;
|
530 |
-
}
|
531 |
-
.sek-order-3 {
|
532 |
-
order: 3;
|
533 |
-
}
|
534 |
-
.sek-order-4 {
|
535 |
-
order: 4;
|
536 |
-
}
|
537 |
-
.sek-order-5 {
|
538 |
-
order: 5;
|
539 |
-
}
|
540 |
-
.sek-order-6 {
|
541 |
-
order: 6;
|
542 |
-
}
|
543 |
-
.sek-order-7 {
|
544 |
-
order: 7;
|
545 |
-
}
|
546 |
-
.sek-order-8 {
|
547 |
-
order: 8;
|
548 |
-
}
|
549 |
-
.sek-order-9 {
|
550 |
-
order: 9;
|
551 |
-
}
|
552 |
-
.sek-order-10 {
|
553 |
-
order: 10;
|
554 |
-
}
|
555 |
-
.sek-order-11 {
|
556 |
-
order: 11;
|
557 |
-
}
|
558 |
-
.sek-order-12 {
|
559 |
-
order: 12;
|
560 |
-
}
|
561 |
-
}
|
562 |
-
|
563 |
/*
|
564 |
.sek-collapsing {
|
565 |
position: relative;
|
566 |
height: 0;
|
567 |
overflow: hidden;
|
568 |
//@include transition($transition-collapse);
|
569 |
-
}*/
|
570 |
-
.sek-clearfix::after {
|
571 |
-
display: block;
|
572 |
-
clear: both;
|
573 |
-
content: "";
|
574 |
-
}
|
575 |
-
|
576 |
-
.sek-sr-only {
|
577 |
-
position: absolute;
|
578 |
-
width: 1px;
|
579 |
-
height: 1px;
|
580 |
-
padding: 0;
|
581 |
-
overflow: hidden;
|
582 |
-
clip: rect(0, 0, 0, 0);
|
583 |
-
white-space: nowrap;
|
584 |
-
border: 0;
|
585 |
-
}
|
586 |
-
|
587 |
-
.sek-sr-only-focusable:active, .sek-sr-only-focusable:focus {
|
588 |
-
position: static;
|
589 |
-
width: auto;
|
590 |
-
height: auto;
|
591 |
-
overflow: visible;
|
592 |
-
clip: auto;
|
593 |
-
white-space: normal;
|
594 |
-
}
|
595 |
-
|
596 |
-
.sek-embed {
|
597 |
-
position: relative;
|
598 |
-
}
|
599 |
-
|
600 |
-
.sek-embed::before {
|
601 |
-
display: block;
|
602 |
-
content: '';
|
603 |
-
}
|
604 |
-
|
605 |
-
.sek-embed .sek-embed-inner,
|
606 |
-
.sek-embed iframe {
|
607 |
-
position: absolute;
|
608 |
-
width: 100%;
|
609 |
-
height: 100%;
|
610 |
-
top: 0;
|
611 |
-
left: 0;
|
612 |
-
}
|
613 |
-
|
614 |
-
.sektion-wrapper {
|
615 |
-
word-wrap: break-word;
|
616 |
-
}
|
617 |
-
|
618 |
-
.sek-text-right {
|
619 |
-
text-align: right !important;
|
620 |
-
}
|
621 |
-
|
622 |
-
.sek-text-left {
|
623 |
-
text-align: left !important;
|
624 |
-
}
|
625 |
-
|
626 |
-
.sek-module .sek-module-inner ul {
|
627 |
-
list-style: disc;
|
628 |
-
}
|
629 |
-
|
630 |
-
.sek-module .sek-module-inner ol {
|
631 |
-
list-style: decimal;
|
632 |
-
}
|
633 |
-
|
634 |
-
.sek-module .sek-module-inner ol > li::before {
|
635 |
-
content: none;
|
636 |
-
}
|
637 |
-
|
638 |
-
.sek-module .sek-module-inner ul, .sek-module .sek-module-inner ol {
|
639 |
-
padding: 0;
|
640 |
-
line-height: 1.5;
|
641 |
-
margin: 0 1.5rem 3rem 0;
|
642 |
-
}
|
643 |
-
|
644 |
-
.sek-module .sek-module-inner ul > li, .sek-module .sek-module-inner ol > li {
|
645 |
-
padding: .15rem .25rem;
|
646 |
-
}
|
647 |
-
|
648 |
-
.sek-module .sek-module-inner li > ul, .sek-module .sek-module-inner li > ol {
|
649 |
-
margin-bottom: 0;
|
650 |
-
}
|
651 |
-
|
652 |
-
.sek-module-inner pre code, .sek-module-inner tt {
|
653 |
-
box-sizing: border-box;
|
654 |
-
font-size: inherit;
|
655 |
-
white-space: pre-wrap !important;
|
656 |
-
background: transparent;
|
657 |
-
border: none;
|
658 |
-
padding: 0;
|
659 |
-
font-family: monospace;
|
660 |
-
}
|
661 |
-
|
662 |
-
.sek-module-inner pre {
|
663 |
-
background: #f7f8f9;
|
664 |
-
padding: 2.5em;
|
665 |
-
word-wrap: normal;
|
666 |
-
white-space: pre-wrap !important;
|
667 |
-
color: #313131;
|
668 |
-
font-family: monospace !important;
|
669 |
-
}
|
670 |
-
|
671 |
-
.sek-module-inner figure {
|
672 |
-
text-align: center;
|
673 |
-
}
|
674 |
-
|
675 |
-
.sek-module-inner figcaption {
|
676 |
-
text-align: center;
|
677 |
-
}
|
678 |
-
|
679 |
-
.sek-module-inner cite {
|
680 |
-
color: #313131;
|
681 |
-
font-weight: 300;
|
682 |
-
font-style: normal;
|
683 |
-
position: relative;
|
684 |
-
display: inline-block;
|
685 |
-
}
|
686 |
-
|
687 |
-
.sek-module-inner caption, .sek-module-inner code, .sek-module-inner code, .sek-module-inner kbd, .sek-module-inner samp, .sek-module-inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd), .sek-module-inner :root .has-subtle-background-background-color {
|
688 |
-
background-color: #dbdbdb;
|
689 |
-
}
|
690 |
-
|
691 |
-
.sek-module-inner sub {
|
692 |
-
bottom: -0.25em;
|
693 |
-
}
|
694 |
-
|
695 |
-
.sek-module-inner sub, .sek-module-inner sup {
|
696 |
-
font-size: 75%;
|
697 |
-
line-height: 0;
|
698 |
-
position: relative;
|
699 |
-
vertical-align: baseline;
|
700 |
-
}
|
701 |
-
|
702 |
-
.sek-module-inner blockquote {
|
703 |
-
border-right: 5px solid rgba(0, 0, 0, 0.1);
|
704 |
-
background: none;
|
705 |
-
font-size: 1.2em;
|
706 |
-
font-style: inherit;
|
707 |
-
margin-right: 0;
|
708 |
-
margin-left: 0;
|
709 |
-
padding: 15px;
|
710 |
-
}
|
711 |
-
|
712 |
-
.sek-module-inner table {
|
713 |
-
width: 100%;
|
714 |
-
border-collapse: collapse;
|
715 |
/*&:not([id^=wp-calendar]) {
|
716 |
border: 2px solid $grey-lightest;
|
717 |
th { @extend .caps; @extend .letter-spacing-2; font-family: $serviceFont; }
|
718 |
th, td { @extend .demi-small; padding: $base-line-height; border: 1px solid $grey-lightest; }
|
719 |
td { color: $grey-dark; }
|
720 |
-
}*/
|
721 |
-
}
|
722 |
-
|
723 |
-
@media (max-width: 767.98px) {
|
724 |
-
.sek-module-inner table {
|
725 |
-
table-layout: fixed;
|
726 |
-
}
|
727 |
-
}
|
728 |
-
|
729 |
-
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) {
|
730 |
-
border: 2px solid #eceeef;
|
731 |
-
}
|
732 |
-
|
733 |
-
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th {
|
734 |
-
text-transform: uppercase;
|
735 |
-
letter-spacing: 2px;
|
736 |
-
font-family: sans-serif;
|
737 |
-
}
|
738 |
-
|
739 |
-
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th, .sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {
|
740 |
-
font-size: 0.95em;
|
741 |
-
padding: 1.25em;
|
742 |
-
border: 1px solid #eceeef;
|
743 |
-
}
|
744 |
-
|
745 |
-
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {
|
746 |
-
color: #777;
|
747 |
-
}
|
748 |
-
|
749 |
-
.sek-search-form {
|
750 |
-
float: none;
|
751 |
-
}
|
752 |
-
|
753 |
-
.sek-search-form .sek-search-form-group {
|
754 |
-
display: -webkit-box;
|
755 |
-
display: -ms-flexbox;
|
756 |
-
display: flex;
|
757 |
-
}
|
758 |
-
|
759 |
-
.sek-search-form .sek-search-form-group label {
|
760 |
-
position: relative;
|
761 |
-
margin-right: 5px;
|
762 |
-
}
|
763 |
-
|
764 |
-
.sek-search-form .sek-search-form-group label input[type=search] {
|
765 |
-
max-width: 100%;
|
766 |
-
margin: 0;
|
767 |
-
-moz-box-sizing: border-box;
|
768 |
-
-webkit-box-sizing: border-box;
|
769 |
-
box-sizing: border-box;
|
770 |
-
-webkit-border-radius: 0;
|
771 |
-
border-radius: 0;
|
772 |
-
background: #fff;
|
773 |
-
border: 2px solid #ddd;
|
774 |
-
color: #777;
|
775 |
-
display: block;
|
776 |
-
max-width: 100%;
|
777 |
-
padding: 7px 8px;
|
778 |
-
padding-left: 5px;
|
779 |
-
line-height: 1.5em;
|
780 |
-
width: 100%;
|
781 |
-
}
|
782 |
-
|
783 |
-
.sek-search-form .sek-search-form-group [type=submit] {
|
784 |
-
line-height: 15px;
|
785 |
-
margin: 0;
|
786 |
-
background: #808080 !important;
|
787 |
-
color: #fff;
|
788 |
-
font-size: 16px;
|
789 |
-
padding: 10px 10px;
|
790 |
-
font-weight: normal;
|
791 |
-
display: inline-block;
|
792 |
-
border: none;
|
793 |
-
cursor: pointer;
|
794 |
-
border-radius: 3px;
|
795 |
-
}
|
796 |
-
|
797 |
-
.sek-module .sek-module-inner .sek-btn {
|
798 |
-
display: inline-block;
|
799 |
-
font-weight: normal;
|
800 |
-
line-height: 1.25em;
|
801 |
-
text-align: center;
|
802 |
-
/*white-space: nowrap;*/
|
803 |
-
white-space: normal;
|
804 |
-
word-break: break-all;
|
805 |
-
vertical-align: middle;
|
806 |
-
user-select: none;
|
807 |
-
border: 1px solid transparent;
|
808 |
-
padding: 0.5em 1em;
|
809 |
-
border-radius: 2px;
|
810 |
-
border-width: 2px;
|
811 |
-
border-style: solid;
|
812 |
-
font-size: 1em;
|
813 |
-
cursor: pointer;
|
814 |
-
text-decoration: none;
|
815 |
-
text-transform: none;
|
816 |
-
-webkit-transition: all 0.2s ease-in-out;
|
817 |
-
-o-transition: all 0.2s ease-in-out;
|
818 |
-
transition: all 0.2s ease-in-out;
|
819 |
-
}
|
820 |
-
|
821 |
-
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .sek-btn:hover {
|
822 |
-
text-decoration: none;
|
823 |
-
}
|
824 |
-
|
825 |
-
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .focus.sek-btn {
|
826 |
-
outline: 0;
|
827 |
-
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
828 |
-
}
|
829 |
-
|
830 |
-
.sek-module .sek-module-inner .disabled.sek-btn, .sek-module .sek-module-inner .sek-btn:disabled {
|
831 |
-
cursor: not-allowed;
|
832 |
-
opacity: .65;
|
833 |
-
box-shadow: none;
|
834 |
-
}
|
835 |
-
|
836 |
-
.sek-module .sek-module-inner .sek-btn:active, .sek-module .sek-module-inner .active.sek-btn {
|
837 |
-
background-image: none;
|
838 |
-
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
839 |
-
}
|
840 |
-
|
841 |
-
a.sek-btn.disabled,
|
842 |
-
fieldset[disabled] a.sek-btn {
|
843 |
-
pointer-events: none;
|
844 |
-
}
|
845 |
-
|
846 |
-
.sektion-wrapper button,
|
847 |
-
.sektion-wrapper [type="button"],
|
848 |
-
.sektion-wrapper [type="reset"],
|
849 |
-
.sektion-wrapper [type="submit"] {
|
850 |
-
-webkit-appearance: button;
|
851 |
-
}
|
852 |
-
|
853 |
-
.sektion-wrapper button::-moz-focus-inner,
|
854 |
-
.sektion-wrapper [type="button"]::-moz-focus-inner,
|
855 |
-
.sektion-wrapper [type="reset"]::-moz-focus-inner,
|
856 |
-
.sektion-wrapper [type="submit"]::-moz-focus-inner {
|
857 |
-
padding: 0;
|
858 |
-
border-style: none;
|
859 |
-
}
|
860 |
-
|
861 |
-
button.sek-btn,
|
862 |
-
[type="button"].sek-btn,
|
863 |
-
[type="reset"].sek-btn,
|
864 |
-
[type="submit"].sek-btn {
|
865 |
-
-wekbit-appearance: none !important;
|
866 |
-
background: transparent;
|
867 |
-
}
|
868 |
-
|
869 |
-
[data-sek-level="module"] .sek-module-inner {
|
870 |
-
/* WP Search Widget */
|
871 |
-
}
|
872 |
-
|
873 |
-
[data-sek-level="module"] .sek-module-inner .wp-caption figcaption {
|
874 |
-
color: #6d6d6d;
|
875 |
-
font-style: italic;
|
876 |
-
max-width: 100%;
|
877 |
-
font-size: 14px;
|
878 |
-
font-weight: 500;
|
879 |
-
line-height: 1.4;
|
880 |
-
/* Keep wide captions from overflowing their container. */
|
881 |
-
padding: 4px;
|
882 |
-
margin-top: 1rem;
|
883 |
-
}
|
884 |
-
|
885 |
-
[data-sek-level="module"] .sek-module-inner figure {
|
886 |
-
display: block;
|
887 |
-
}
|
888 |
-
|
889 |
-
[data-sek-level="module"] .sek-module-inner .wp-block-image .aligncenter, [data-sek-level="module"] .sek-module-inner .wp-block-image .alignleft, [data-sek-level="module"] .sek-module-inner .wp-block-image .alignright {
|
890 |
-
display: table;
|
891 |
-
}
|
892 |
-
|
893 |
-
[data-sek-level="module"] .sek-module-inner .wp-block-image figcaption {
|
894 |
-
font-size: 13px;
|
895 |
-
text-align: center;
|
896 |
-
}
|
897 |
-
|
898 |
-
[data-sek-level="module"] .sek-module-inner .wp-block-gallery, [data-sek-level="module"] .sek-module-inner ul.blocks-gallery-grid {
|
899 |
-
margin-right: 0;
|
900 |
-
}
|
901 |
-
|
902 |
-
[data-sek-level="module"] .sek-module-inner [class*="wp-block-"]:not(:last-child) {
|
903 |
-
margin-bottom: 1.5em;
|
904 |
-
}
|
905 |
-
|
906 |
-
.sek-col-100 .sek-module-inner .alignfull {
|
907 |
-
margin-left: calc(-100vw / 2 + 100% / 2);
|
908 |
-
margin-right: calc(-100vw / 2 + 100% / 2);
|
909 |
-
max-width: 100vw;
|
910 |
-
width: auto;
|
911 |
-
}
|
912 |
-
|
913 |
-
.sek-col-100 .sek-module-inner .alignwide {
|
914 |
-
margin-left: calc((100% - 80vw) / 2);
|
915 |
-
width: 80vw;
|
916 |
-
max-width: 80vw;
|
917 |
-
}
|
918 |
-
|
919 |
-
[data-sek-level="module"] .sek-module-inner .aligncenter, [data-sek-level="module"] .sek-module-inner .aligncenter img {
|
920 |
-
display: block;
|
921 |
-
margin-left: auto;
|
922 |
-
margin-right: auto;
|
923 |
-
}
|
924 |
-
|
925 |
-
[data-sek-level="module"] .sek-module-inner .alignleft {
|
926 |
-
float: left;
|
927 |
-
}
|
928 |
-
|
929 |
-
[data-sek-level="module"] .sek-module-inner .alignright {
|
930 |
-
float: right;
|
931 |
-
}
|
932 |
-
|
933 |
-
[data-sek-level="module"] .sek-module-inner .alignnone, [data-sek-level="module"] .sek-module-inner .aligncenter, [data-sek-level="module"] .sek-module-inner .alignleft, [data-sek-level="module"] .sek-module-inner .alignright {
|
934 |
-
margin-top: 1.5rem;
|
935 |
-
margin-right: auto;
|
936 |
-
margin-bottom: 1.5rem;
|
937 |
-
margin-left: auto;
|
938 |
-
}
|
939 |
-
|
940 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form {
|
941 |
-
display: -webkit-box;
|
942 |
-
display: -ms-flexbox;
|
943 |
-
display: flex;
|
944 |
-
max-width: 100%;
|
945 |
-
float: left;
|
946 |
-
}
|
947 |
-
|
948 |
-
@media (max-width: 767.98px) {
|
949 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form {
|
950 |
-
float: none;
|
951 |
-
}
|
952 |
-
}
|
953 |
-
|
954 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form label {
|
955 |
-
position: relative;
|
956 |
-
-webkit-box-flex: 1;
|
957 |
-
-ms-flex: 1;
|
958 |
-
flex: 1;
|
959 |
-
margin-right: 5px;
|
960 |
-
}
|
961 |
-
|
962 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form label input {
|
963 |
-
padding-left: 5px;
|
964 |
-
line-height: 20px;
|
965 |
-
width: 100%;
|
966 |
-
max-width: 185px;
|
967 |
-
min-width: 80px;
|
968 |
-
}
|
969 |
-
|
970 |
-
@media (max-width: 767.98px) {
|
971 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form label input {
|
972 |
-
max-width: none;
|
973 |
-
}
|
974 |
-
}
|
975 |
-
|
976 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form input[type=submit] {
|
977 |
-
line-height: 15px;
|
978 |
-
/*width: 25%;*/
|
979 |
-
}
|
980 |
-
|
981 |
-
[data-sek-level="module"] .sek-module-inner input[type="submit"] {
|
982 |
-
background: #808080;
|
983 |
-
color: #fff;
|
984 |
-
padding: 10px 10px;
|
985 |
-
font-weight: normal;
|
986 |
-
display: inline-block;
|
987 |
-
border: none;
|
988 |
-
cursor: pointer;
|
989 |
-
-webkit-border-radius: 3px;
|
990 |
-
border-radius: 3px;
|
991 |
-
}
|
992 |
-
|
993 |
-
[data-sek-level="module"] .sek-module-inner .search-form input[type="search"] {
|
994 |
-
margin: 0;
|
995 |
-
-moz-box-sizing: border-box;
|
996 |
-
-webkit-box-sizing: border-box;
|
997 |
-
box-sizing: border-box;
|
998 |
-
-webkit-border-radius: 0;
|
999 |
-
border-radius: 0;
|
1000 |
-
background: #fff;
|
1001 |
-
border: 2px solid #ddd;
|
1002 |
-
color: #777;
|
1003 |
-
display: block;
|
1004 |
-
max-width: 100%;
|
1005 |
-
padding: 7px 8px;
|
1006 |
-
}
|
1007 |
-
|
1008 |
-
.sektion-wrapper.sek-password-protected {
|
1009 |
-
display: flex;
|
1010 |
-
align-items: center;
|
1011 |
-
justify-content: center;
|
1012 |
-
-ms-flex-direction: column;
|
1013 |
-
flex-direction: column;
|
1014 |
-
}
|
1015 |
-
|
1016 |
-
.sektion-wrapper.sek-password-protected form.post-password-form {
|
1017 |
-
max-width: 450px;
|
1018 |
-
height: auto;
|
1019 |
-
padding: 4em 1em;
|
1020 |
-
font-size: 1em;
|
1021 |
-
}
|
1022 |
-
|
1023 |
-
.sektion-wrapper .sek-module-inner .avatar {
|
1024 |
-
border-radius: 50%;
|
1025 |
-
}
|
1026 |
-
|
1027 |
-
.sek-next-post-link::after, .sek-previous-post-link::before {
|
1028 |
-
width: 15px;
|
1029 |
-
height: 10px;
|
1030 |
-
display: inline-block;
|
1031 |
-
position: relative;
|
1032 |
-
vertical-align: middle;
|
1033 |
-
border-top: 6px solid transparent;
|
1034 |
-
border-bottom: 6px solid transparent;
|
1035 |
-
border-left-color: inherit;
|
1036 |
-
border-right-color: inherit;
|
1037 |
-
}
|
1038 |
-
|
1039 |
-
.sek-previous-post-link::before {
|
1040 |
-
content: '';
|
1041 |
-
border-left: 6px solid;
|
1042 |
-
left: 7px;
|
1043 |
-
}
|
1044 |
-
|
1045 |
-
.sek-next-post-link::after {
|
1046 |
-
content: '';
|
1047 |
-
border-right: 6px solid;
|
1048 |
-
right: 7px;
|
1049 |
-
}
|
1050 |
-
|
1051 |
/*************************************
|
1052 |
* DIVIDER MODULE
|
1053 |
-
*************************************/
|
1054 |
-
[data-sek-module-type="czr_divider_module"] {
|
1055 |
-
text-align: center;
|
1056 |
-
}
|
1057 |
-
|
1058 |
-
[data-sek-module-type="czr_divider_module"] .sek-module-inner {
|
1059 |
-
font-size: 0;
|
1060 |
-
line-height: 0;
|
1061 |
-
}
|
1062 |
-
|
1063 |
-
.sek-module-inner .sek-divider {
|
1064 |
-
border-top: 1px solid #5a5a5a;
|
1065 |
-
display: inline-block;
|
1066 |
-
width: 100%;
|
1067 |
-
margin-top: 15px;
|
1068 |
-
margin-bottom: 15px;
|
1069 |
-
font-size: 1rem;
|
1070 |
-
}
|
1071 |
-
|
1072 |
/*************************************
|
1073 |
* SPACER MODULE
|
1074 |
-
*************************************/
|
1075 |
-
.sek-module-inner .sek-spacer {
|
1076 |
-
height: 20px;
|
1077 |
-
}
|
1078 |
-
|
1079 |
/*************************************
|
1080 |
* TINY MCE EDITOR MODULE
|
1081 |
-
*************************************/
|
1082 |
-
[data-sek-module-type="czr_tiny_mce_editor_module"] a {
|
1083 |
-
text-decoration: underline;
|
1084 |
-
}
|
1085 |
-
|
1086 |
/*************************************
|
1087 |
* SHORTCODE MODULE
|
1088 |
-
*************************************/
|
1089 |
-
[data-sek-module-type="czr_shortcode_module"] [data-sek-use-flexbox="true"] {
|
1090 |
-
display: -webkit-box;
|
1091 |
-
display: -ms-flexbox;
|
1092 |
-
display: flex;
|
1093 |
-
-webkit-box-pack: center;
|
1094 |
-
-ms-flex-pack: center;
|
1095 |
-
justify-content: center;
|
1096 |
-
}
|
1097 |
-
|
1098 |
-
.sek-module-inner {
|
1099 |
-
line-height: 1.5em;
|
1100 |
-
}
|
1101 |
-
|
1102 |
-
.sek-module-inner h1, .sek-module-inner h2, .sek-module-inner h3, .sek-module-inner h4, .sek-module-inner h5, .sek-module-inner h6, .sek-module-inner p {
|
1103 |
-
line-height: 1.5em;
|
1104 |
-
font-weight: 400;
|
1105 |
-
margin: 0.6em 0;
|
1106 |
-
}
|
1107 |
-
|
1108 |
-
.sek-module-inner h1 {
|
1109 |
-
font-size: 2.48em;
|
1110 |
-
}
|
1111 |
-
|
1112 |
-
.sek-module-inner h2 {
|
1113 |
-
font-size: 2.07em;
|
1114 |
-
}
|
1115 |
-
|
1116 |
-
.sek-module-inner h3 {
|
1117 |
-
font-size: 1.73em;
|
1118 |
-
}
|
1119 |
-
|
1120 |
-
.sek-module-inner h4 {
|
1121 |
-
font-size: 1.44em;
|
1122 |
-
}
|
1123 |
-
|
1124 |
-
.sek-module-inner h5 {
|
1125 |
-
font-size: 1.2em;
|
1126 |
-
}
|
1127 |
-
|
1128 |
-
.sek-module-inner h6 {
|
1129 |
-
font-size: 1em;
|
1130 |
-
}
|
1131 |
-
|
1132 |
-
.sek-module-inner p {
|
1133 |
-
margin: 0 0 1em;
|
1134 |
-
padding: 0;
|
1135 |
-
}
|
1136 |
-
|
1137 |
-
.sek-module-inner a {
|
1138 |
-
text-decoration: none;
|
1139 |
-
-webkit-box-shadow: none;
|
1140 |
-
box-shadow: none;
|
1141 |
-
-webkit-transition: color 0.2s ease-in-out;
|
1142 |
-
-o-transition: color 0.2s ease-in-out;
|
1143 |
-
transition: color 0.2s ease-in-out;
|
1144 |
-
}
|
1145 |
-
|
1146 |
-
.sek-module-inner img {
|
1147 |
-
height: auto;
|
1148 |
-
max-width: 100%;
|
1149 |
-
border: none;
|
1150 |
-
-webkit-border-radius: 0;
|
1151 |
-
border-radius: 0;
|
1152 |
-
-webkit-box-shadow: none;
|
1153 |
-
box-shadow: none;
|
1154 |
-
}
|
1155 |
-
|
1156 |
-
[data-sek-module-type="czr_tiny_mce_editor_module"] .sek-module-inner a:not(.wp-block-button__link),
|
1157 |
-
[data-sek-module-type="czr_shortcode_module"] .sek-module-inner a:not(.wp-block-button__link),
|
1158 |
-
[data-sek-module-type="czr_accordion_module"] .sek-module-inner a:not(.wp-block-button__link),
|
1159 |
-
[data-sek-module-type="czr_simple_html_module"] .sek-module-inner a:not(.wp-block-button__link) {
|
1160 |
-
text-decoration: underline;
|
1161 |
-
}
|
1162 |
-
|
1163 |
-
body .sektion-wrapper .sek-row [data-sek-level="module"] .sek-module-inner a:not(.sek-btn):not(.button):focus {
|
1164 |
-
background: none;
|
1165 |
-
}
|
1166 |
-
|
1167 |
-
body .sek-module-inner h1:before, body .sek-module-inner h2:before, body .sek-module-inner h3:before, body .sek-module-inner h4:before, body .sek-module-inner h5:before, body .sek-module-inner h6:before {
|
1168 |
-
content: none;
|
1169 |
-
background: none;
|
1170 |
-
}
|
1171 |
-
|
1172 |
/*# sourceMappingURL=sek-base-light-rtl.css.map */
|
1 |
+
/* -------------------------------------------------------------------------- */
|
2 |
/* <SCOPED RESET>
|
3 |
+
/* -------------------------------------------------------------------------- */
|
4 |
+
.sektion-wrapper *,
|
5 |
+
.sektion-wrapper *::before,
|
6 |
+
.sektion-wrapper *::after {
|
7 |
+
box-sizing: border-box;
|
8 |
+
}
|
9 |
+
|
10 |
+
.sektion-wrapper span, .sektion-wrapper applet, .sektion-wrapper object, .sektion-wrapper iframe,
|
11 |
+
.sektion-wrapper h1, .sektion-wrapper h2, .sektion-wrapper h3, .sektion-wrapper h4, .sektion-wrapper h5, .sektion-wrapper h6, .sektion-wrapper p, .sektion-wrapper blockquote, .sektion-wrapper pre,
|
12 |
+
.sektion-wrapper a, .sektion-wrapper abbr, .sektion-wrapper acronym, .sektion-wrapper address, .sektion-wrapper big, .sektion-wrapper cite, .sektion-wrapper code,
|
13 |
+
.sektion-wrapper del, .sektion-wrapper dfn, .sektion-wrapper em, .sektion-wrapper img, .sektion-wrapper ins, .sektion-wrapper kbd, .sektion-wrapper q, .sektion-wrapper s, .sektion-wrapper samp,
|
14 |
+
.sektion-wrapper small, .sektion-wrapper strike, .sektion-wrapper strong, .sektion-wrapper sub, .sektion-wrapper sup, .sektion-wrapper tt, .sektion-wrapper var,
|
15 |
+
.sektion-wrapper b, .sektion-wrapper u, .sektion-wrapper i, .sektion-wrapper center,
|
16 |
+
.sektion-wrapper dl, .sektion-wrapper dt, .sektion-wrapper dd, .sektion-wrapper ol, .sektion-wrapper ul, .sektion-wrapper li,
|
17 |
+
.sektion-wrapper fieldset, .sektion-wrapper form, .sektion-wrapper label, .sektion-wrapper legend,
|
18 |
+
.sektion-wrapper table, .sektion-wrapper caption, .sektion-wrapper tbody, .sektion-wrapper tfoot, .sektion-wrapper thead, .sektion-wrapper tr, .sektion-wrapper th, .sektion-wrapper td,
|
19 |
+
.sektion-wrapper article, .sektion-wrapper aside, .sektion-wrapper canvas, .sektion-wrapper details, .sektion-wrapper embed,
|
20 |
+
.sektion-wrapper figure:not([class*="wp-block-"]), .sektion-wrapper figcaption, .sektion-wrapper footer, .sektion-wrapper header, .sektion-wrapper hgroup,
|
21 |
+
.sektion-wrapper menu, .sektion-wrapper nav, .sektion-wrapper output, .sektion-wrapper ruby, .sektion-wrapper section, .sektion-wrapper summary,
|
22 |
+
.sektion-wrapper time, .sektion-wrapper mark, .sektion-wrapper audio, .sektion-wrapper video {
|
23 |
+
border: none;
|
24 |
+
font-size: inherit;
|
25 |
+
line-height: inherit;
|
26 |
+
margin: 0;
|
27 |
+
padding: 0;
|
28 |
+
}
|
29 |
+
|
30 |
+
.sektion-wrapper blockquote::before,
|
31 |
+
.sektion-wrapper blockquote::after, .sektion-wrapper q:before, .sektion-wrapper q:after {
|
32 |
+
content: "";
|
33 |
+
}
|
34 |
+
|
35 |
+
.sektion-wrapper ol, .sektion-wrapper ul {
|
36 |
+
list-style: none;
|
37 |
+
}
|
38 |
+
|
39 |
+
.sektion-wrapper img {
|
40 |
+
max-width: 100%;
|
41 |
+
vertical-align: middle;
|
42 |
+
border-style: none;
|
43 |
+
display: inline;
|
44 |
+
}
|
45 |
+
|
46 |
+
.sektion-wrapper svg:not(:root) {
|
47 |
+
overflow: hidden;
|
48 |
+
}
|
49 |
+
|
50 |
+
.sektion-wrapper embed, .sektion-wrapper iframe, .sektion-wrapper object {
|
51 |
+
max-width: 100%;
|
52 |
+
}
|
53 |
+
|
54 |
+
/* -------------------------------------------------------------------------- */
|
55 |
/* </SCOPED RESET>
|
56 |
+
/* -------------------------------------------------------------------------- */
|
57 |
+
/* make sure that the location level occupies 100% of the width */
|
58 |
+
[data-sek-level="location"] {
|
59 |
+
clear: both;
|
60 |
+
font-size: 16px;
|
61 |
+
}
|
62 |
+
|
63 |
+
/* To make vertical alignment possible in sections */
|
64 |
+
.sek-section, .sek-column, .sek-module {
|
65 |
+
display: flex;
|
66 |
+
align-items: center;
|
67 |
+
}
|
68 |
+
|
69 |
+
.sek-column-inner, .sek-module-inner {
|
70 |
+
-ms-flex: 0 0 100%;
|
71 |
+
flex: 0 0 100%;
|
72 |
+
max-width: 100%;
|
73 |
+
}
|
74 |
+
|
75 |
/* To allow horizontal centering of modules
|
76 |
@see https://github.com/presscustomizr/nimble-builder/issues/119
|
77 |
+
*/
|
78 |
+
/* - sections in locations */
|
79 |
+
/* - columns in sections */
|
80 |
+
/* - modules in columns */
|
81 |
+
.sek-column-inner {
|
82 |
+
display: flex;
|
83 |
+
flex-direction: column;
|
84 |
+
}
|
85 |
+
|
86 |
+
.sek-module {
|
87 |
+
align-self: center;
|
88 |
+
width: 100%;
|
89 |
+
max-width: 100%;
|
90 |
+
}
|
91 |
+
|
92 |
/* a nested sektion should reset its parent column padding
|
93 |
@see https://github.com/presscustomizr/nimble-builder/issues/25
|
94 |
+
*/
|
95 |
+
[data-sek-is-nested="true"] .sek-container-fluid {
|
96 |
+
padding-right: 0;
|
97 |
+
padding-left: 0;
|
98 |
+
}
|
99 |
+
|
100 |
+
/* MODULE PLACEHOLDER */
|
101 |
/*@font-face {
|
102 |
font-family: 'Material Icons';
|
103 |
font-style: normal;
|
104 |
font-weight: 400;
|
105 |
src: url('../fonts/material-icons/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2') format('woff2');
|
106 |
+
}*/
|
107 |
+
/* @see https://github.com/google/material-design-icons/blob/master/iconfont/material-icons.css */
|
108 |
+
.sek-module-placeholder {
|
109 |
+
text-align: center;
|
110 |
+
}
|
111 |
+
|
112 |
+
.sek-module-placeholder .material-icons {
|
113 |
+
font-size: inherit;
|
114 |
+
color: #cfcfcf;
|
115 |
+
}
|
116 |
+
|
117 |
+
/* LEVEL VISIBILITY BY DEVICE */
|
118 |
+
/* NIMBLE TEMPLATE GENERAL STYLING */
|
119 |
+
/* <inspired by Twenty Seventeed WP theme> */
|
120 |
+
.sek-screen-reader-text {
|
121 |
+
border: 0;
|
122 |
+
clip: rect(0, 0, 0, 0);
|
123 |
+
height: 1px;
|
124 |
+
overflow: hidden;
|
125 |
+
padding: 0;
|
126 |
+
position: absolute !important;
|
127 |
+
width: 1px;
|
128 |
+
word-wrap: normal !important;
|
129 |
+
}
|
130 |
+
|
131 |
+
#nimble-page {
|
132 |
+
position: relative;
|
133 |
+
word-wrap: break-word;
|
134 |
+
}
|
135 |
+
|
136 |
+
/* </inspired by Twenty Seventeen WP theme> */
|
137 |
+
/* Nimble btn in admin top bar */
|
138 |
+
#wpadminbar .sek-nimble-icon {
|
139 |
+
display: inline-block;
|
140 |
+
}
|
141 |
+
|
142 |
+
#wpadminbar .sek-nimble-icon img {
|
143 |
+
width: 28px;
|
144 |
+
position: absolute;
|
145 |
+
top: 2px;
|
146 |
+
-webkit-filter: grayscale(100%);
|
147 |
+
filter: grayscale(100%);
|
148 |
+
-webkit-filter: gray;
|
149 |
+
filter: gray;
|
150 |
+
-webkit-transition: all 0.3s ease-in-out;
|
151 |
+
-moz-transition: all, 0.3s ease-in-out;
|
152 |
+
-ms-transition: all, 0.3s ease-in-out;
|
153 |
+
-o-transition: all, 0.3s ease-in-out;
|
154 |
+
transition: all 0.3s ease-in-out;
|
155 |
+
-webkit-box-shadow: none;
|
156 |
+
box-shadow: none;
|
157 |
+
}
|
158 |
+
|
159 |
+
#wpadminbar .sek-nimble-icon:hover img {
|
160 |
+
-webkit-filter: none;
|
161 |
+
filter: none;
|
162 |
+
-webkit-filter: none;
|
163 |
+
filter: none;
|
164 |
+
}
|
165 |
+
|
166 |
+
#wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title {
|
167 |
+
padding-left: 30px;
|
168 |
+
}
|
169 |
+
|
170 |
+
[data-sek-has-bg="true"] {
|
171 |
+
background-size: cover;
|
172 |
+
background-repeat: no-repeat;
|
173 |
+
background-position: 50% 50%;
|
174 |
+
}
|
175 |
+
|
176 |
+
[data-sek-level="location"] [data-sek-bg-parallax="true"] {
|
177 |
+
background-attachment: fixed;
|
178 |
+
background-size: cover;
|
179 |
+
}
|
180 |
+
|
181 |
+
[data-sek-level="location"] .sek-has-bg {
|
182 |
+
position: relative;
|
183 |
+
}
|
184 |
+
|
185 |
+
@supports (-webkit-overflow-scrolling: touch) {
|
186 |
+
body [data-sek-level="location"] [data-sek-bg-parallax="true"], body [data-sek-level="location"] [data-sek-bg-fixed="true"] {
|
187 |
+
background-attachment: scroll;
|
188 |
+
}
|
189 |
+
}
|
190 |
+
|
191 |
+
[data-sek-level="location"] [data-sek-level] {
|
192 |
+
-webkit-transition: 0s linear;
|
193 |
+
-o-transition: 0s linear;
|
194 |
+
transition: 0s linear;
|
195 |
+
-webkit-transition-property: background-position;
|
196 |
+
-o-transition-property: background-position;
|
197 |
+
transition-property: background-position;
|
198 |
+
}
|
199 |
+
|
200 |
+
.sek-module .sek-module-inner .alx-tab.thumbs-enabled > li {
|
201 |
+
padding-left: 94px;
|
202 |
+
}
|
203 |
+
|
204 |
+
.sek-module .sek-module-inner .widget_hu_tabs ul,
|
205 |
+
.sek-module .sek-module-inner .widget_hu_tabs ol {
|
206 |
+
margin-left: 0;
|
207 |
+
margin-bottom: 0;
|
208 |
+
}
|
209 |
+
|
210 |
+
.sek-module .sek-module-inner .widget_hu_tabs .alx-tabs-nav {
|
211 |
+
margin-bottom: 10px;
|
212 |
+
}
|
213 |
+
|
214 |
+
[data-sek-level].sek-level-has-shadow {
|
215 |
+
-webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
216 |
+
-moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
217 |
+
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
218 |
+
}
|
219 |
+
|
220 |
+
.customizer-preview [data-sek-level].sek-level-has-shadow {
|
221 |
+
-webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
|
222 |
+
-moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
|
223 |
+
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
|
224 |
+
}
|
225 |
+
|
226 |
+
[data-sek-level][data-sek-video-bg-src] {
|
227 |
+
position: relative;
|
228 |
+
}
|
229 |
+
|
230 |
+
[data-sek-level] embed,
|
231 |
+
[data-sek-level] iframe,
|
232 |
+
[data-sek-level] object,
|
233 |
+
[data-sek-level] video {
|
234 |
+
max-width: 100%;
|
235 |
+
width: 100%;
|
236 |
+
margin: 0;
|
237 |
+
line-height: 1;
|
238 |
+
border: none;
|
239 |
+
}
|
240 |
+
|
241 |
+
[data-sek-level] .sek-custom-embed {
|
242 |
+
line-height: 0;
|
243 |
+
}
|
244 |
+
|
245 |
+
[data-sek-level] .sek-bg-video-wrapper,
|
246 |
+
[data-sek-level] .sek-background {
|
247 |
+
height: 100%;
|
248 |
+
width: 100%;
|
249 |
+
top: 0;
|
250 |
+
left: 0;
|
251 |
+
position: absolute !important;
|
252 |
+
overflow: hidden;
|
253 |
+
z-index: 0;
|
254 |
+
direction: ltr;
|
255 |
+
}
|
256 |
+
|
257 |
+
[data-sek-level] .sek-bg-video-wrapper {
|
258 |
+
-webkit-transition: opacity 0.5s linear;
|
259 |
+
-o-transition: opacity 0.5s linear;
|
260 |
+
transition: opacity 0.5s linear;
|
261 |
+
pointer-events: none;
|
262 |
+
opacity: 0;
|
263 |
+
}
|
264 |
+
|
265 |
+
[data-sek-level] .sek-bg-video-wrapper.sek-bg-loading {
|
266 |
+
opacity: 0;
|
267 |
+
visibility: hidden;
|
268 |
+
}
|
269 |
+
|
270 |
+
[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-vimeo-element {
|
271 |
+
max-width: none;
|
272 |
+
}
|
273 |
+
|
274 |
+
[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-video-local, [data-sek-level] .sek-background-vimeo-element {
|
275 |
+
position: absolute;
|
276 |
+
top: 50%;
|
277 |
+
left: 50%;
|
278 |
+
-webkit-transform: translateX(-50%) translateY(-50%);
|
279 |
+
-ms-transform: translateX(-50%) translateY(-50%);
|
280 |
+
transform: translateX(-50%) translateY(-50%);
|
281 |
+
}
|
282 |
+
|
283 |
+
[data-sek-level] .sek-background-video-local {
|
284 |
+
-o-object-fit: cover;
|
285 |
+
object-fit: cover;
|
286 |
+
}
|
287 |
+
|
288 |
+
.sek-module-inner .sek-debug-modules {
|
289 |
+
margin: 1em;
|
290 |
+
padding: 5px;
|
291 |
+
border: 1px solid rgba(221, 221, 221, 0.43);
|
292 |
+
box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);
|
293 |
+
-webkit-box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);
|
294 |
+
background-color: #fff;
|
295 |
+
font-size: 15px;
|
296 |
+
font-weight: normal;
|
297 |
+
color: #6d6d6d;
|
298 |
+
background: rgba(255, 255, 255, 0.6);
|
299 |
+
}
|
300 |
+
|
301 |
+
@media (max-width: 575px) {
|
302 |
+
.customizer-preview [data-sek-video-bg-on-mobile="false"] .sek-bg-video-wrapper {
|
303 |
+
display: none;
|
304 |
+
}
|
305 |
+
}
|
306 |
+
|
307 |
+
body:not(.customizer-preview) .sek-animate-candidate:not(.sek-animate-displayed-before-starting) {
|
308 |
+
opacity: 0;
|
309 |
+
}
|
310 |
+
|
311 |
+
.sek-overflow-hidden-while-animating {
|
312 |
+
overflow: hidden;
|
313 |
+
}
|
314 |
+
|
315 |
+
.nb-scroll-down #nimble-header:not(.sek-header-mobile-menu-expanded), .nb-scroll-up #nimble-header:not(.sek-header-mobile-menu-expanded) {
|
316 |
+
background-color: rgba(255, 255, 255, 0.9);
|
317 |
+
}
|
318 |
+
|
319 |
+
.mfp-wrap button.mfp-arrow, .mfp-wrap button.mfp-close {
|
320 |
+
background: none !important;
|
321 |
+
background: transparent !important;
|
322 |
+
}
|
323 |
+
|
324 |
+
.mfp-wrap img.mfp-img {
|
325 |
+
padding: 40px 0 0;
|
326 |
+
}
|
327 |
+
|
328 |
+
.mfp-wrap::after {
|
329 |
+
bottom: 20px;
|
330 |
+
}
|
331 |
+
|
332 |
+
.mfp-wrap .mfp-bottom-bar {
|
333 |
+
margin-top: 0;
|
334 |
+
}
|
335 |
+
|
336 |
+
.sek-service-font, .sek-module .sek-module-inner .sek-btn {
|
337 |
+
font-family: sans-serif;
|
338 |
+
}
|
339 |
+
|
340 |
+
.sek-container {
|
341 |
+
width: 100%;
|
342 |
+
padding-right: 10px;
|
343 |
+
padding-left: 10px;
|
344 |
+
margin-right: auto;
|
345 |
+
margin-left: auto;
|
346 |
+
}
|
347 |
+
|
348 |
+
@media (min-width: 576px) {
|
349 |
+
.sek-container {
|
350 |
+
max-width: 540px;
|
351 |
+
}
|
352 |
+
}
|
353 |
+
|
354 |
+
@media (min-width: 768px) {
|
355 |
+
.sek-container {
|
356 |
+
max-width: 720px;
|
357 |
+
}
|
358 |
+
}
|
359 |
+
|
360 |
+
@media (min-width: 992px) {
|
361 |
+
.sek-container {
|
362 |
+
max-width: 960px;
|
363 |
+
}
|
364 |
+
}
|
365 |
+
|
366 |
+
@media (min-width: 1200px) {
|
367 |
+
.sek-container {
|
368 |
+
max-width: 1140px;
|
369 |
+
}
|
370 |
+
}
|
371 |
+
|
372 |
+
.sek-container-fluid {
|
373 |
+
width: 100%;
|
374 |
+
padding-right: 10px;
|
375 |
+
padding-left: 10px;
|
376 |
+
margin-right: auto;
|
377 |
+
margin-left: auto;
|
378 |
+
}
|
379 |
+
|
380 |
+
.sek-row {
|
381 |
+
display: flex;
|
382 |
+
flex-wrap: wrap;
|
383 |
+
margin-right: -10px;
|
384 |
+
margin-left: -10px;
|
385 |
+
}
|
386 |
+
|
387 |
+
.sek-container-no-padding {
|
388 |
+
padding-right: 0;
|
389 |
+
padding-left: 0;
|
390 |
+
overflow-x: hidden;
|
391 |
+
}
|
392 |
+
|
393 |
+
.sek-no-gutters {
|
394 |
+
margin-right: 0;
|
395 |
+
margin-left: 0;
|
396 |
+
}
|
397 |
+
|
398 |
+
.sek-no-gutters > .sek-col,
|
399 |
+
.sek-no-gutters > [class*="sek-col-"] {
|
400 |
+
padding-right: 0;
|
401 |
+
padding-left: 0;
|
402 |
+
}
|
403 |
+
|
404 |
+
.sek-col-8, .sek-col-9, .sek-col-10, .sek-col-11, .sek-col-12, .sek-col-14, .sek-col-16, .sek-col-20, .sek-col-25, .sek-col-30, .sek-col-33, .sek-col-40, .sek-col-50, .sek-col-60, .sek-col-66, .sek-col-70, .sek-col-75, .sek-col-80, .sek-col-83, .sek-col-90, .sek-col-100, .sek-col-base,
|
405 |
+
.sek-col,
|
406 |
+
.sek-col-auto {
|
407 |
+
position: relative;
|
408 |
+
width: 100%;
|
409 |
+
min-height: 1px;
|
410 |
+
padding-right: 10px;
|
411 |
+
padding-left: 10px;
|
412 |
+
}
|
413 |
+
|
414 |
+
.sek-col-base {
|
415 |
+
flex: 0 0 100%;
|
416 |
+
max-width: 100%;
|
417 |
+
}
|
418 |
+
|
419 |
+
.sek-col {
|
420 |
+
flex-basis: 0;
|
421 |
+
flex-grow: 1;
|
422 |
+
max-width: 100%;
|
423 |
+
}
|
424 |
+
|
425 |
+
.sek-col-auto {
|
426 |
+
flex: 0 0 auto;
|
427 |
+
width: auto;
|
428 |
+
max-width: 100%;
|
429 |
+
}
|
430 |
+
|
431 |
+
@media (min-width: 768px) {
|
432 |
+
.sek-col-8 {
|
433 |
+
flex: 0 0 8.333%;
|
434 |
+
max-width: 8.333%;
|
435 |
+
}
|
436 |
+
.sek-col-9 {
|
437 |
+
flex: 0 0 9.090909%;
|
438 |
+
max-width: 9.090909%;
|
439 |
+
}
|
440 |
+
.sek-col-10 {
|
441 |
+
flex: 0 0 10%;
|
442 |
+
max-width: 10%;
|
443 |
+
}
|
444 |
+
.sek-col-11 {
|
445 |
+
flex: 0 0 11.111%;
|
446 |
+
max-width: 11.111%;
|
447 |
+
}
|
448 |
+
.sek-col-12 {
|
449 |
+
flex: 0 0 12.5%;
|
450 |
+
max-width: 12.5%;
|
451 |
+
}
|
452 |
+
.sek-col-14 {
|
453 |
+
flex: 0 0 14.285%;
|
454 |
+
max-width: 14.285%;
|
455 |
+
}
|
456 |
+
.sek-col-16 {
|
457 |
+
flex: 0 0 16.666%;
|
458 |
+
max-width: 16.666%;
|
459 |
+
}
|
460 |
+
.sek-col-20 {
|
461 |
+
flex: 0 0 20%;
|
462 |
+
max-width: 20%;
|
463 |
+
}
|
464 |
+
.sek-col-25 {
|
465 |
+
flex: 0 0 25%;
|
466 |
+
max-width: 25%;
|
467 |
+
}
|
468 |
+
.sek-col-30 {
|
469 |
+
flex: 0 0 30%;
|
470 |
+
max-width: 30%;
|
471 |
+
}
|
472 |
+
.sek-col-33 {
|
473 |
+
flex: 0 0 33.333%;
|
474 |
+
max-width: 33.333%;
|
475 |
+
}
|
476 |
+
.sek-col-40 {
|
477 |
+
flex: 0 0 40%;
|
478 |
+
max-width: 40%;
|
479 |
+
}
|
480 |
+
.sek-col-50 {
|
481 |
+
flex: 0 0 50%;
|
482 |
+
max-width: 50%;
|
483 |
+
}
|
484 |
+
.sek-col-60 {
|
485 |
+
flex: 0 0 60%;
|
486 |
+
max-width: 60%;
|
487 |
+
}
|
488 |
+
.sek-col-66 {
|
489 |
+
flex: 0 0 66.666%;
|
490 |
+
max-width: 66.666%;
|
491 |
+
}
|
492 |
+
.sek-col-70 {
|
493 |
+
flex: 0 0 70%;
|
494 |
+
max-width: 70%;
|
495 |
+
}
|
496 |
+
.sek-col-75 {
|
497 |
+
flex: 0 0 75%;
|
498 |
+
max-width: 75%;
|
499 |
+
}
|
500 |
+
.sek-col-80 {
|
501 |
+
flex: 0 0 80%;
|
502 |
+
max-width: 80%;
|
503 |
+
}
|
504 |
+
.sek-col-83 {
|
505 |
+
flex: 0 0 83.333%;
|
506 |
+
max-width: 83.333%;
|
507 |
+
}
|
508 |
+
.sek-col-90 {
|
509 |
+
flex: 0 0 90%;
|
510 |
+
max-width: 90%;
|
511 |
+
}
|
512 |
+
.sek-col-100 {
|
513 |
+
flex: 0 0 100%;
|
514 |
+
max-width: 100%;
|
515 |
+
}
|
516 |
+
.sek-order-first {
|
517 |
+
order: -1;
|
518 |
+
}
|
519 |
+
.sek-order-last {
|
520 |
+
order: 13;
|
521 |
+
}
|
522 |
+
.sek-order-0 {
|
523 |
+
order: 0;
|
524 |
+
}
|
525 |
+
.sek-order-1 {
|
526 |
+
order: 1;
|
527 |
+
}
|
528 |
+
.sek-order-2 {
|
529 |
+
order: 2;
|
530 |
+
}
|
531 |
+
.sek-order-3 {
|
532 |
+
order: 3;
|
533 |
+
}
|
534 |
+
.sek-order-4 {
|
535 |
+
order: 4;
|
536 |
+
}
|
537 |
+
.sek-order-5 {
|
538 |
+
order: 5;
|
539 |
+
}
|
540 |
+
.sek-order-6 {
|
541 |
+
order: 6;
|
542 |
+
}
|
543 |
+
.sek-order-7 {
|
544 |
+
order: 7;
|
545 |
+
}
|
546 |
+
.sek-order-8 {
|
547 |
+
order: 8;
|
548 |
+
}
|
549 |
+
.sek-order-9 {
|
550 |
+
order: 9;
|
551 |
+
}
|
552 |
+
.sek-order-10 {
|
553 |
+
order: 10;
|
554 |
+
}
|
555 |
+
.sek-order-11 {
|
556 |
+
order: 11;
|
557 |
+
}
|
558 |
+
.sek-order-12 {
|
559 |
+
order: 12;
|
560 |
+
}
|
561 |
+
}
|
562 |
+
|
563 |
/*
|
564 |
.sek-collapsing {
|
565 |
position: relative;
|
566 |
height: 0;
|
567 |
overflow: hidden;
|
568 |
//@include transition($transition-collapse);
|
569 |
+
}*/
|
570 |
+
.sek-clearfix::after {
|
571 |
+
display: block;
|
572 |
+
clear: both;
|
573 |
+
content: "";
|
574 |
+
}
|
575 |
+
|
576 |
+
.sek-sr-only {
|
577 |
+
position: absolute;
|
578 |
+
width: 1px;
|
579 |
+
height: 1px;
|
580 |
+
padding: 0;
|
581 |
+
overflow: hidden;
|
582 |
+
clip: rect(0, 0, 0, 0);
|
583 |
+
white-space: nowrap;
|
584 |
+
border: 0;
|
585 |
+
}
|
586 |
+
|
587 |
+
.sek-sr-only-focusable:active, .sek-sr-only-focusable:focus {
|
588 |
+
position: static;
|
589 |
+
width: auto;
|
590 |
+
height: auto;
|
591 |
+
overflow: visible;
|
592 |
+
clip: auto;
|
593 |
+
white-space: normal;
|
594 |
+
}
|
595 |
+
|
596 |
+
.sek-embed {
|
597 |
+
position: relative;
|
598 |
+
}
|
599 |
+
|
600 |
+
.sek-embed::before {
|
601 |
+
display: block;
|
602 |
+
content: '';
|
603 |
+
}
|
604 |
+
|
605 |
+
.sek-embed .sek-embed-inner,
|
606 |
+
.sek-embed iframe {
|
607 |
+
position: absolute;
|
608 |
+
width: 100%;
|
609 |
+
height: 100%;
|
610 |
+
top: 0;
|
611 |
+
left: 0;
|
612 |
+
}
|
613 |
+
|
614 |
+
.sektion-wrapper {
|
615 |
+
word-wrap: break-word;
|
616 |
+
}
|
617 |
+
|
618 |
+
.sek-text-right {
|
619 |
+
text-align: right !important;
|
620 |
+
}
|
621 |
+
|
622 |
+
.sek-text-left {
|
623 |
+
text-align: left !important;
|
624 |
+
}
|
625 |
+
|
626 |
+
.sek-module .sek-module-inner ul {
|
627 |
+
list-style: disc;
|
628 |
+
}
|
629 |
+
|
630 |
+
.sek-module .sek-module-inner ol {
|
631 |
+
list-style: decimal;
|
632 |
+
}
|
633 |
+
|
634 |
+
.sek-module .sek-module-inner ol > li::before {
|
635 |
+
content: none;
|
636 |
+
}
|
637 |
+
|
638 |
+
.sek-module .sek-module-inner ul, .sek-module .sek-module-inner ol {
|
639 |
+
padding: 0;
|
640 |
+
line-height: 1.5;
|
641 |
+
margin: 0 1.5rem 3rem 0;
|
642 |
+
}
|
643 |
+
|
644 |
+
.sek-module .sek-module-inner ul > li, .sek-module .sek-module-inner ol > li {
|
645 |
+
padding: .15rem .25rem;
|
646 |
+
}
|
647 |
+
|
648 |
+
.sek-module .sek-module-inner li > ul, .sek-module .sek-module-inner li > ol {
|
649 |
+
margin-bottom: 0;
|
650 |
+
}
|
651 |
+
|
652 |
+
.sek-module-inner pre code, .sek-module-inner tt {
|
653 |
+
box-sizing: border-box;
|
654 |
+
font-size: inherit;
|
655 |
+
white-space: pre-wrap !important;
|
656 |
+
background: transparent;
|
657 |
+
border: none;
|
658 |
+
padding: 0;
|
659 |
+
font-family: monospace;
|
660 |
+
}
|
661 |
+
|
662 |
+
.sek-module-inner pre {
|
663 |
+
background: #f7f8f9;
|
664 |
+
padding: 2.5em;
|
665 |
+
word-wrap: normal;
|
666 |
+
white-space: pre-wrap !important;
|
667 |
+
color: #313131;
|
668 |
+
font-family: monospace !important;
|
669 |
+
}
|
670 |
+
|
671 |
+
.sek-module-inner figure {
|
672 |
+
text-align: center;
|
673 |
+
}
|
674 |
+
|
675 |
+
.sek-module-inner figcaption {
|
676 |
+
text-align: center;
|
677 |
+
}
|
678 |
+
|
679 |
+
.sek-module-inner cite {
|
680 |
+
color: #313131;
|
681 |
+
font-weight: 300;
|
682 |
+
font-style: normal;
|
683 |
+
position: relative;
|
684 |
+
display: inline-block;
|
685 |
+
}
|
686 |
+
|
687 |
+
.sek-module-inner caption, .sek-module-inner code, .sek-module-inner code, .sek-module-inner kbd, .sek-module-inner samp, .sek-module-inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd), .sek-module-inner :root .has-subtle-background-background-color {
|
688 |
+
background-color: #dbdbdb;
|
689 |
+
}
|
690 |
+
|
691 |
+
.sek-module-inner sub {
|
692 |
+
bottom: -0.25em;
|
693 |
+
}
|
694 |
+
|
695 |
+
.sek-module-inner sub, .sek-module-inner sup {
|
696 |
+
font-size: 75%;
|
697 |
+
line-height: 0;
|
698 |
+
position: relative;
|
699 |
+
vertical-align: baseline;
|
700 |
+
}
|
701 |
+
|
702 |
+
.sek-module-inner blockquote {
|
703 |
+
border-right: 5px solid rgba(0, 0, 0, 0.1);
|
704 |
+
background: none;
|
705 |
+
font-size: 1.2em;
|
706 |
+
font-style: inherit;
|
707 |
+
margin-right: 0;
|
708 |
+
margin-left: 0;
|
709 |
+
padding: 15px;
|
710 |
+
}
|
711 |
+
|
712 |
+
.sek-module-inner table {
|
713 |
+
width: 100%;
|
714 |
+
border-collapse: collapse;
|
715 |
/*&:not([id^=wp-calendar]) {
|
716 |
border: 2px solid $grey-lightest;
|
717 |
th { @extend .caps; @extend .letter-spacing-2; font-family: $serviceFont; }
|
718 |
th, td { @extend .demi-small; padding: $base-line-height; border: 1px solid $grey-lightest; }
|
719 |
td { color: $grey-dark; }
|
720 |
+
}*/
|
721 |
+
}
|
722 |
+
|
723 |
+
@media (max-width: 767.98px) {
|
724 |
+
.sek-module-inner table {
|
725 |
+
table-layout: fixed;
|
726 |
+
}
|
727 |
+
}
|
728 |
+
|
729 |
+
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) {
|
730 |
+
border: 2px solid #eceeef;
|
731 |
+
}
|
732 |
+
|
733 |
+
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th {
|
734 |
+
text-transform: uppercase;
|
735 |
+
letter-spacing: 2px;
|
736 |
+
font-family: sans-serif;
|
737 |
+
}
|
738 |
+
|
739 |
+
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th, .sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {
|
740 |
+
font-size: 0.95em;
|
741 |
+
padding: 1.25em;
|
742 |
+
border: 1px solid #eceeef;
|
743 |
+
}
|
744 |
+
|
745 |
+
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {
|
746 |
+
color: #777;
|
747 |
+
}
|
748 |
+
|
749 |
+
.sek-search-form {
|
750 |
+
float: none;
|
751 |
+
}
|
752 |
+
|
753 |
+
.sek-search-form .sek-search-form-group {
|
754 |
+
display: -webkit-box;
|
755 |
+
display: -ms-flexbox;
|
756 |
+
display: flex;
|
757 |
+
}
|
758 |
+
|
759 |
+
.sek-search-form .sek-search-form-group label {
|
760 |
+
position: relative;
|
761 |
+
margin-right: 5px;
|
762 |
+
}
|
763 |
+
|
764 |
+
.sek-search-form .sek-search-form-group label input[type=search] {
|
765 |
+
max-width: 100%;
|
766 |
+
margin: 0;
|
767 |
+
-moz-box-sizing: border-box;
|
768 |
+
-webkit-box-sizing: border-box;
|
769 |
+
box-sizing: border-box;
|
770 |
+
-webkit-border-radius: 0;
|
771 |
+
border-radius: 0;
|
772 |
+
background: #fff;
|
773 |
+
border: 2px solid #ddd;
|
774 |
+
color: #777;
|
775 |
+
display: block;
|
776 |
+
max-width: 100%;
|
777 |
+
padding: 7px 8px;
|
778 |
+
padding-left: 5px;
|
779 |
+
line-height: 1.5em;
|
780 |
+
width: 100%;
|
781 |
+
}
|
782 |
+
|
783 |
+
.sek-search-form .sek-search-form-group [type=submit] {
|
784 |
+
line-height: 15px;
|
785 |
+
margin: 0;
|
786 |
+
background: #808080 !important;
|
787 |
+
color: #fff;
|
788 |
+
font-size: 16px;
|
789 |
+
padding: 10px 10px;
|
790 |
+
font-weight: normal;
|
791 |
+
display: inline-block;
|
792 |
+
border: none;
|
793 |
+
cursor: pointer;
|
794 |
+
border-radius: 3px;
|
795 |
+
}
|
796 |
+
|
797 |
+
.sek-module .sek-module-inner .sek-btn {
|
798 |
+
display: inline-block;
|
799 |
+
font-weight: normal;
|
800 |
+
line-height: 1.25em;
|
801 |
+
text-align: center;
|
802 |
+
/*white-space: nowrap;*/
|
803 |
+
white-space: normal;
|
804 |
+
word-break: break-all;
|
805 |
+
vertical-align: middle;
|
806 |
+
user-select: none;
|
807 |
+
border: 1px solid transparent;
|
808 |
+
padding: 0.5em 1em;
|
809 |
+
border-radius: 2px;
|
810 |
+
border-width: 2px;
|
811 |
+
border-style: solid;
|
812 |
+
font-size: 1em;
|
813 |
+
cursor: pointer;
|
814 |
+
text-decoration: none;
|
815 |
+
text-transform: none;
|
816 |
+
-webkit-transition: all 0.2s ease-in-out;
|
817 |
+
-o-transition: all 0.2s ease-in-out;
|
818 |
+
transition: all 0.2s ease-in-out;
|
819 |
+
}
|
820 |
+
|
821 |
+
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .sek-btn:hover {
|
822 |
+
text-decoration: none;
|
823 |
+
}
|
824 |
+
|
825 |
+
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .focus.sek-btn {
|
826 |
+
outline: 0;
|
827 |
+
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
828 |
+
}
|
829 |
+
|
830 |
+
.sek-module .sek-module-inner .disabled.sek-btn, .sek-module .sek-module-inner .sek-btn:disabled {
|
831 |
+
cursor: not-allowed;
|
832 |
+
opacity: .65;
|
833 |
+
box-shadow: none;
|
834 |
+
}
|
835 |
+
|
836 |
+
.sek-module .sek-module-inner .sek-btn:active, .sek-module .sek-module-inner .active.sek-btn {
|
837 |
+
background-image: none;
|
838 |
+
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
839 |
+
}
|
840 |
+
|
841 |
+
a.sek-btn.disabled,
|
842 |
+
fieldset[disabled] a.sek-btn {
|
843 |
+
pointer-events: none;
|
844 |
+
}
|
845 |
+
|
846 |
+
.sektion-wrapper button,
|
847 |
+
.sektion-wrapper [type="button"],
|
848 |
+
.sektion-wrapper [type="reset"],
|
849 |
+
.sektion-wrapper [type="submit"] {
|
850 |
+
-webkit-appearance: button;
|
851 |
+
}
|
852 |
+
|
853 |
+
.sektion-wrapper button::-moz-focus-inner,
|
854 |
+
.sektion-wrapper [type="button"]::-moz-focus-inner,
|
855 |
+
.sektion-wrapper [type="reset"]::-moz-focus-inner,
|
856 |
+
.sektion-wrapper [type="submit"]::-moz-focus-inner {
|
857 |
+
padding: 0;
|
858 |
+
border-style: none;
|
859 |
+
}
|
860 |
+
|
861 |
+
button.sek-btn,
|
862 |
+
[type="button"].sek-btn,
|
863 |
+
[type="reset"].sek-btn,
|
864 |
+
[type="submit"].sek-btn {
|
865 |
+
-wekbit-appearance: none !important;
|
866 |
+
background: transparent;
|
867 |
+
}
|
868 |
+
|
869 |
+
[data-sek-level="module"] .sek-module-inner {
|
870 |
+
/* WP Search Widget */
|
871 |
+
}
|
872 |
+
|
873 |
+
[data-sek-level="module"] .sek-module-inner .wp-caption figcaption {
|
874 |
+
color: #6d6d6d;
|
875 |
+
font-style: italic;
|
876 |
+
max-width: 100%;
|
877 |
+
font-size: 14px;
|
878 |
+
font-weight: 500;
|
879 |
+
line-height: 1.4;
|
880 |
+
/* Keep wide captions from overflowing their container. */
|
881 |
+
padding: 4px;
|
882 |
+
margin-top: 1rem;
|
883 |
+
}
|
884 |
+
|
885 |
+
[data-sek-level="module"] .sek-module-inner figure {
|
886 |
+
display: block;
|
887 |
+
}
|
888 |
+
|
889 |
+
[data-sek-level="module"] .sek-module-inner .wp-block-image .aligncenter, [data-sek-level="module"] .sek-module-inner .wp-block-image .alignleft, [data-sek-level="module"] .sek-module-inner .wp-block-image .alignright {
|
890 |
+
display: table;
|
891 |
+
}
|
892 |
+
|
893 |
+
[data-sek-level="module"] .sek-module-inner .wp-block-image figcaption {
|
894 |
+
font-size: 13px;
|
895 |
+
text-align: center;
|
896 |
+
}
|
897 |
+
|
898 |
+
[data-sek-level="module"] .sek-module-inner .wp-block-gallery, [data-sek-level="module"] .sek-module-inner ul.blocks-gallery-grid {
|
899 |
+
margin-right: 0;
|
900 |
+
}
|
901 |
+
|
902 |
+
[data-sek-level="module"] .sek-module-inner [class*="wp-block-"]:not(:last-child) {
|
903 |
+
margin-bottom: 1.5em;
|
904 |
+
}
|
905 |
+
|
906 |
+
.sek-col-100 .sek-module-inner .alignfull {
|
907 |
+
margin-left: calc(-100vw / 2 + 100% / 2);
|
908 |
+
margin-right: calc(-100vw / 2 + 100% / 2);
|
909 |
+
max-width: 100vw;
|
910 |
+
width: auto;
|
911 |
+
}
|
912 |
+
|
913 |
+
.sek-col-100 .sek-module-inner .alignwide {
|
914 |
+
margin-left: calc((100% - 80vw) / 2);
|
915 |
+
width: 80vw;
|
916 |
+
max-width: 80vw;
|
917 |
+
}
|
918 |
+
|
919 |
+
[data-sek-level="module"] .sek-module-inner .aligncenter, [data-sek-level="module"] .sek-module-inner .aligncenter img {
|
920 |
+
display: block;
|
921 |
+
margin-left: auto;
|
922 |
+
margin-right: auto;
|
923 |
+
}
|
924 |
+
|
925 |
+
[data-sek-level="module"] .sek-module-inner .alignleft {
|
926 |
+
float: left;
|
927 |
+
}
|
928 |
+
|
929 |
+
[data-sek-level="module"] .sek-module-inner .alignright {
|
930 |
+
float: right;
|
931 |
+
}
|
932 |
+
|
933 |
+
[data-sek-level="module"] .sek-module-inner .alignnone, [data-sek-level="module"] .sek-module-inner .aligncenter, [data-sek-level="module"] .sek-module-inner .alignleft, [data-sek-level="module"] .sek-module-inner .alignright {
|
934 |
+
margin-top: 1.5rem;
|
935 |
+
margin-right: auto;
|
936 |
+
margin-bottom: 1.5rem;
|
937 |
+
margin-left: auto;
|
938 |
+
}
|
939 |
+
|
940 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form {
|
941 |
+
display: -webkit-box;
|
942 |
+
display: -ms-flexbox;
|
943 |
+
display: flex;
|
944 |
+
max-width: 100%;
|
945 |
+
float: left;
|
946 |
+
}
|
947 |
+
|
948 |
+
@media (max-width: 767.98px) {
|
949 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form {
|
950 |
+
float: none;
|
951 |
+
}
|
952 |
+
}
|
953 |
+
|
954 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form label {
|
955 |
+
position: relative;
|
956 |
+
-webkit-box-flex: 1;
|
957 |
+
-ms-flex: 1;
|
958 |
+
flex: 1;
|
959 |
+
margin-right: 5px;
|
960 |
+
}
|
961 |
+
|
962 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form label input {
|
963 |
+
padding-left: 5px;
|
964 |
+
line-height: 20px;
|
965 |
+
width: 100%;
|
966 |
+
max-width: 185px;
|
967 |
+
min-width: 80px;
|
968 |
+
}
|
969 |
+
|
970 |
+
@media (max-width: 767.98px) {
|
971 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form label input {
|
972 |
+
max-width: none;
|
973 |
+
}
|
974 |
+
}
|
975 |
+
|
976 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form input[type=submit] {
|
977 |
+
line-height: 15px;
|
978 |
+
/*width: 25%;*/
|
979 |
+
}
|
980 |
+
|
981 |
+
[data-sek-level="module"] .sek-module-inner input[type="submit"] {
|
982 |
+
background: #808080;
|
983 |
+
color: #fff;
|
984 |
+
padding: 10px 10px;
|
985 |
+
font-weight: normal;
|
986 |
+
display: inline-block;
|
987 |
+
border: none;
|
988 |
+
cursor: pointer;
|
989 |
+
-webkit-border-radius: 3px;
|
990 |
+
border-radius: 3px;
|
991 |
+
}
|
992 |
+
|
993 |
+
[data-sek-level="module"] .sek-module-inner .search-form input[type="search"] {
|
994 |
+
margin: 0;
|
995 |
+
-moz-box-sizing: border-box;
|
996 |
+
-webkit-box-sizing: border-box;
|
997 |
+
box-sizing: border-box;
|
998 |
+
-webkit-border-radius: 0;
|
999 |
+
border-radius: 0;
|
1000 |
+
background: #fff;
|
1001 |
+
border: 2px solid #ddd;
|
1002 |
+
color: #777;
|
1003 |
+
display: block;
|
1004 |
+
max-width: 100%;
|
1005 |
+
padding: 7px 8px;
|
1006 |
+
}
|
1007 |
+
|
1008 |
+
.sektion-wrapper.sek-password-protected {
|
1009 |
+
display: flex;
|
1010 |
+
align-items: center;
|
1011 |
+
justify-content: center;
|
1012 |
+
-ms-flex-direction: column;
|
1013 |
+
flex-direction: column;
|
1014 |
+
}
|
1015 |
+
|
1016 |
+
.sektion-wrapper.sek-password-protected form.post-password-form {
|
1017 |
+
max-width: 450px;
|
1018 |
+
height: auto;
|
1019 |
+
padding: 4em 1em;
|
1020 |
+
font-size: 1em;
|
1021 |
+
}
|
1022 |
+
|
1023 |
+
.sektion-wrapper .sek-module-inner .avatar {
|
1024 |
+
border-radius: 50%;
|
1025 |
+
}
|
1026 |
+
|
1027 |
+
.sek-next-post-link::after, .sek-previous-post-link::before {
|
1028 |
+
width: 15px;
|
1029 |
+
height: 10px;
|
1030 |
+
display: inline-block;
|
1031 |
+
position: relative;
|
1032 |
+
vertical-align: middle;
|
1033 |
+
border-top: 6px solid transparent;
|
1034 |
+
border-bottom: 6px solid transparent;
|
1035 |
+
border-left-color: inherit;
|
1036 |
+
border-right-color: inherit;
|
1037 |
+
}
|
1038 |
+
|
1039 |
+
.sek-previous-post-link::before {
|
1040 |
+
content: '';
|
1041 |
+
border-left: 6px solid;
|
1042 |
+
left: 7px;
|
1043 |
+
}
|
1044 |
+
|
1045 |
+
.sek-next-post-link::after {
|
1046 |
+
content: '';
|
1047 |
+
border-right: 6px solid;
|
1048 |
+
right: 7px;
|
1049 |
+
}
|
1050 |
+
|
1051 |
/*************************************
|
1052 |
* DIVIDER MODULE
|
1053 |
+
*************************************/
|
1054 |
+
[data-sek-module-type="czr_divider_module"] {
|
1055 |
+
text-align: center;
|
1056 |
+
}
|
1057 |
+
|
1058 |
+
[data-sek-module-type="czr_divider_module"] .sek-module-inner {
|
1059 |
+
font-size: 0;
|
1060 |
+
line-height: 0;
|
1061 |
+
}
|
1062 |
+
|
1063 |
+
.sek-module-inner .sek-divider {
|
1064 |
+
border-top: 1px solid #5a5a5a;
|
1065 |
+
display: inline-block;
|
1066 |
+
width: 100%;
|
1067 |
+
margin-top: 15px;
|
1068 |
+
margin-bottom: 15px;
|
1069 |
+
font-size: 1rem;
|
1070 |
+
}
|
1071 |
+
|
1072 |
/*************************************
|
1073 |
* SPACER MODULE
|
1074 |
+
*************************************/
|
1075 |
+
.sek-module-inner .sek-spacer {
|
1076 |
+
height: 20px;
|
1077 |
+
}
|
1078 |
+
|
1079 |
/*************************************
|
1080 |
* TINY MCE EDITOR MODULE
|
1081 |
+
*************************************/
|
1082 |
+
[data-sek-module-type="czr_tiny_mce_editor_module"] a {
|
1083 |
+
text-decoration: underline;
|
1084 |
+
}
|
1085 |
+
|
1086 |
/*************************************
|
1087 |
* SHORTCODE MODULE
|
1088 |
+
*************************************/
|
1089 |
+
[data-sek-module-type="czr_shortcode_module"] [data-sek-use-flexbox="true"] {
|
1090 |
+
display: -webkit-box;
|
1091 |
+
display: -ms-flexbox;
|
1092 |
+
display: flex;
|
1093 |
+
-webkit-box-pack: center;
|
1094 |
+
-ms-flex-pack: center;
|
1095 |
+
justify-content: center;
|
1096 |
+
}
|
1097 |
+
|
1098 |
+
.sek-module-inner {
|
1099 |
+
line-height: 1.5em;
|
1100 |
+
}
|
1101 |
+
|
1102 |
+
.sek-module-inner h1, .sek-module-inner h2, .sek-module-inner h3, .sek-module-inner h4, .sek-module-inner h5, .sek-module-inner h6, .sek-module-inner p {
|
1103 |
+
line-height: 1.5em;
|
1104 |
+
font-weight: 400;
|
1105 |
+
margin: 0.6em 0;
|
1106 |
+
}
|
1107 |
+
|
1108 |
+
.sek-module-inner h1 {
|
1109 |
+
font-size: 2.48em;
|
1110 |
+
}
|
1111 |
+
|
1112 |
+
.sek-module-inner h2 {
|
1113 |
+
font-size: 2.07em;
|
1114 |
+
}
|
1115 |
+
|
1116 |
+
.sek-module-inner h3 {
|
1117 |
+
font-size: 1.73em;
|
1118 |
+
}
|
1119 |
+
|
1120 |
+
.sek-module-inner h4 {
|
1121 |
+
font-size: 1.44em;
|
1122 |
+
}
|
1123 |
+
|
1124 |
+
.sek-module-inner h5 {
|
1125 |
+
font-size: 1.2em;
|
1126 |
+
}
|
1127 |
+
|
1128 |
+
.sek-module-inner h6 {
|
1129 |
+
font-size: 1em;
|
1130 |
+
}
|
1131 |
+
|
1132 |
+
.sek-module-inner p {
|
1133 |
+
margin: 0 0 1em;
|
1134 |
+
padding: 0;
|
1135 |
+
}
|
1136 |
+
|
1137 |
+
.sek-module-inner a {
|
1138 |
+
text-decoration: none;
|
1139 |
+
-webkit-box-shadow: none;
|
1140 |
+
box-shadow: none;
|
1141 |
+
-webkit-transition: color 0.2s ease-in-out;
|
1142 |
+
-o-transition: color 0.2s ease-in-out;
|
1143 |
+
transition: color 0.2s ease-in-out;
|
1144 |
+
}
|
1145 |
+
|
1146 |
+
.sek-module-inner img {
|
1147 |
+
height: auto;
|
1148 |
+
max-width: 100%;
|
1149 |
+
border: none;
|
1150 |
+
-webkit-border-radius: 0;
|
1151 |
+
border-radius: 0;
|
1152 |
+
-webkit-box-shadow: none;
|
1153 |
+
box-shadow: none;
|
1154 |
+
}
|
1155 |
+
|
1156 |
+
[data-sek-module-type="czr_tiny_mce_editor_module"] .sek-module-inner a:not(.wp-block-button__link),
|
1157 |
+
[data-sek-module-type="czr_shortcode_module"] .sek-module-inner a:not(.wp-block-button__link),
|
1158 |
+
[data-sek-module-type="czr_accordion_module"] .sek-module-inner a:not(.wp-block-button__link),
|
1159 |
+
[data-sek-module-type="czr_simple_html_module"] .sek-module-inner a:not(.wp-block-button__link) {
|
1160 |
+
text-decoration: underline;
|
1161 |
+
}
|
1162 |
+
|
1163 |
+
body .sektion-wrapper .sek-row [data-sek-level="module"] .sek-module-inner a:not(.sek-btn):not(.button):focus {
|
1164 |
+
background: none;
|
1165 |
+
}
|
1166 |
+
|
1167 |
+
body .sek-module-inner h1:before, body .sek-module-inner h2:before, body .sek-module-inner h3:before, body .sek-module-inner h4:before, body .sek-module-inner h5:before, body .sek-module-inner h6:before {
|
1168 |
+
content: none;
|
1169 |
+
background: none;
|
1170 |
+
}
|
1171 |
+
|
1172 |
/*# sourceMappingURL=sek-base-light-rtl.css.map */
|
assets/front/css/sek-base-light-rtl.css.map
CHANGED
@@ -1,38 +1,38 @@
|
|
1 |
-
{
|
2 |
-
"version": 3,
|
3 |
-
"file": "sek-base-light-rtl.css",
|
4 |
-
"sources": [
|
5 |
-
"../scss/sek-base-light-rtl.scss",
|
6 |
-
"../scss/sek-base-light.scss",
|
7 |
-
"../scss/_1_1_functions.scss",
|
8 |
-
"../scss/_1_2_variables.scss",
|
9 |
-
"../scss/_1_3_mixins.scss",
|
10 |
-
"../scss/mixins/_breakpoints.scss",
|
11 |
-
"../scss/mixins/_screen-reader.scss",
|
12 |
-
"../scss/mixins/_utilities.scss",
|
13 |
-
"../scss/mixins/_transition.scss",
|
14 |
-
"../scss/mixins/_clearfix.scss",
|
15 |
-
"../scss/mixins/_grid.scss",
|
16 |
-
"../scss/mixins/_grid-framework.scss",
|
17 |
-
"../scss/_1_4_reboot.scss",
|
18 |
-
"../scss/_1_5_base.scss",
|
19 |
-
"../scss/_1_6_typography.scss",
|
20 |
-
"../scss/_1_7_grid.scss",
|
21 |
-
"../scss/_1_8_transitions.scss",
|
22 |
-
"../scss/_1_9_utilities.scss",
|
23 |
-
"../scss/utilities/_clearfix.scss",
|
24 |
-
"../scss/utilities/_screenreaders.scss",
|
25 |
-
"../scss/utilities/_embed.scss",
|
26 |
-
"../scss/_2_1_formatting.scss",
|
27 |
-
"../scss/_2_2_buttons.scss",
|
28 |
-
"../scss/_2_3_wpspecifics.scss",
|
29 |
-
"../scss/_3_2_modules_light.scss",
|
30 |
-
"../scss/modules/_divider.scss",
|
31 |
-
"../scss/modules/_spacer.scss",
|
32 |
-
"../scss/modules/_tiny_mce_editor.scss",
|
33 |
-
"../scss/modules/_shortcode.scss",
|
34 |
-
"../scss/_3_3_modules_commons.scss"
|
35 |
-
],
|
36 |
-
"names": [],
|
37 |
-
"mappings": "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"
|
38 |
}
|
1 |
+
{
|
2 |
+
"version": 3,
|
3 |
+
"file": "sek-base-light-rtl.css",
|
4 |
+
"sources": [
|
5 |
+
"../scss/sek-base-light-rtl.scss",
|
6 |
+
"../scss/sek-base-light.scss",
|
7 |
+
"../scss/_1_1_functions.scss",
|
8 |
+
"../scss/_1_2_variables.scss",
|
9 |
+
"../scss/_1_3_mixins.scss",
|
10 |
+
"../scss/mixins/_breakpoints.scss",
|
11 |
+
"../scss/mixins/_screen-reader.scss",
|
12 |
+
"../scss/mixins/_utilities.scss",
|
13 |
+
"../scss/mixins/_transition.scss",
|
14 |
+
"../scss/mixins/_clearfix.scss",
|
15 |
+
"../scss/mixins/_grid.scss",
|
16 |
+
"../scss/mixins/_grid-framework.scss",
|
17 |
+
"../scss/_1_4_reboot.scss",
|
18 |
+
"../scss/_1_5_base.scss",
|
19 |
+
"../scss/_1_6_typography.scss",
|
20 |
+
"../scss/_1_7_grid.scss",
|
21 |
+
"../scss/_1_8_transitions.scss",
|
22 |
+
"../scss/_1_9_utilities.scss",
|
23 |
+
"../scss/utilities/_clearfix.scss",
|
24 |
+
"../scss/utilities/_screenreaders.scss",
|
25 |
+
"../scss/utilities/_embed.scss",
|
26 |
+
"../scss/_2_1_formatting.scss",
|
27 |
+
"../scss/_2_2_buttons.scss",
|
28 |
+
"../scss/_2_3_wpspecifics.scss",
|
29 |
+
"../scss/_3_2_modules_light.scss",
|
30 |
+
"../scss/modules/_divider.scss",
|
31 |
+
"../scss/modules/_spacer.scss",
|
32 |
+
"../scss/modules/_tiny_mce_editor.scss",
|
33 |
+
"../scss/modules/_shortcode.scss",
|
34 |
+
"../scss/_3_3_modules_commons.scss"
|
35 |
+
],
|
36 |
+
"names": [],
|
37 |
+
"mappings": "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"
|
38 |
}
|
assets/front/css/sek-base-light.css
CHANGED
@@ -1,1172 +1,1172 @@
|
|
1 |
-
/* -------------------------------------------------------------------------- */
|
2 |
/* <SCOPED RESET>
|
3 |
-
/* -------------------------------------------------------------------------- */
|
4 |
-
.sektion-wrapper *,
|
5 |
-
.sektion-wrapper *::before,
|
6 |
-
.sektion-wrapper *::after {
|
7 |
-
box-sizing: border-box;
|
8 |
-
}
|
9 |
-
|
10 |
-
.sektion-wrapper span, .sektion-wrapper applet, .sektion-wrapper object, .sektion-wrapper iframe,
|
11 |
-
.sektion-wrapper h1, .sektion-wrapper h2, .sektion-wrapper h3, .sektion-wrapper h4, .sektion-wrapper h5, .sektion-wrapper h6, .sektion-wrapper p, .sektion-wrapper blockquote, .sektion-wrapper pre,
|
12 |
-
.sektion-wrapper a, .sektion-wrapper abbr, .sektion-wrapper acronym, .sektion-wrapper address, .sektion-wrapper big, .sektion-wrapper cite, .sektion-wrapper code,
|
13 |
-
.sektion-wrapper del, .sektion-wrapper dfn, .sektion-wrapper em, .sektion-wrapper img, .sektion-wrapper ins, .sektion-wrapper kbd, .sektion-wrapper q, .sektion-wrapper s, .sektion-wrapper samp,
|
14 |
-
.sektion-wrapper small, .sektion-wrapper strike, .sektion-wrapper strong, .sektion-wrapper sub, .sektion-wrapper sup, .sektion-wrapper tt, .sektion-wrapper var,
|
15 |
-
.sektion-wrapper b, .sektion-wrapper u, .sektion-wrapper i, .sektion-wrapper center,
|
16 |
-
.sektion-wrapper dl, .sektion-wrapper dt, .sektion-wrapper dd, .sektion-wrapper ol, .sektion-wrapper ul, .sektion-wrapper li,
|
17 |
-
.sektion-wrapper fieldset, .sektion-wrapper form, .sektion-wrapper label, .sektion-wrapper legend,
|
18 |
-
.sektion-wrapper table, .sektion-wrapper caption, .sektion-wrapper tbody, .sektion-wrapper tfoot, .sektion-wrapper thead, .sektion-wrapper tr, .sektion-wrapper th, .sektion-wrapper td,
|
19 |
-
.sektion-wrapper article, .sektion-wrapper aside, .sektion-wrapper canvas, .sektion-wrapper details, .sektion-wrapper embed,
|
20 |
-
.sektion-wrapper figure:not([class*="wp-block-"]), .sektion-wrapper figcaption, .sektion-wrapper footer, .sektion-wrapper header, .sektion-wrapper hgroup,
|
21 |
-
.sektion-wrapper menu, .sektion-wrapper nav, .sektion-wrapper output, .sektion-wrapper ruby, .sektion-wrapper section, .sektion-wrapper summary,
|
22 |
-
.sektion-wrapper time, .sektion-wrapper mark, .sektion-wrapper audio, .sektion-wrapper video {
|
23 |
-
border: none;
|
24 |
-
font-size: inherit;
|
25 |
-
line-height: inherit;
|
26 |
-
margin: 0;
|
27 |
-
padding: 0;
|
28 |
-
}
|
29 |
-
|
30 |
-
.sektion-wrapper blockquote::before,
|
31 |
-
.sektion-wrapper blockquote::after, .sektion-wrapper q:before, .sektion-wrapper q:after {
|
32 |
-
content: "";
|
33 |
-
}
|
34 |
-
|
35 |
-
.sektion-wrapper ol, .sektion-wrapper ul {
|
36 |
-
list-style: none;
|
37 |
-
}
|
38 |
-
|
39 |
-
.sektion-wrapper img {
|
40 |
-
max-width: 100%;
|
41 |
-
vertical-align: middle;
|
42 |
-
border-style: none;
|
43 |
-
display: inline;
|
44 |
-
}
|
45 |
-
|
46 |
-
.sektion-wrapper svg:not(:root) {
|
47 |
-
overflow: hidden;
|
48 |
-
}
|
49 |
-
|
50 |
-
.sektion-wrapper embed, .sektion-wrapper iframe, .sektion-wrapper object {
|
51 |
-
max-width: 100%;
|
52 |
-
}
|
53 |
-
|
54 |
-
/* -------------------------------------------------------------------------- */
|
55 |
/* </SCOPED RESET>
|
56 |
-
/* -------------------------------------------------------------------------- */
|
57 |
-
/* make sure that the location level occupies 100% of the width */
|
58 |
-
[data-sek-level="location"] {
|
59 |
-
clear: both;
|
60 |
-
font-size: 16px;
|
61 |
-
}
|
62 |
-
|
63 |
-
/* To make vertical alignment possible in sections */
|
64 |
-
.sek-section, .sek-column, .sek-module {
|
65 |
-
display: flex;
|
66 |
-
align-items: center;
|
67 |
-
}
|
68 |
-
|
69 |
-
.sek-column-inner, .sek-module-inner {
|
70 |
-
-ms-flex: 0 0 100%;
|
71 |
-
flex: 0 0 100%;
|
72 |
-
max-width: 100%;
|
73 |
-
}
|
74 |
-
|
75 |
/* To allow horizontal centering of modules
|
76 |
@see https://github.com/presscustomizr/nimble-builder/issues/119
|
77 |
-
*/
|
78 |
-
/* - sections in locations */
|
79 |
-
/* - columns in sections */
|
80 |
-
/* - modules in columns */
|
81 |
-
.sek-column-inner {
|
82 |
-
display: flex;
|
83 |
-
flex-direction: column;
|
84 |
-
}
|
85 |
-
|
86 |
-
.sek-module {
|
87 |
-
align-self: center;
|
88 |
-
width: 100%;
|
89 |
-
max-width: 100%;
|
90 |
-
}
|
91 |
-
|
92 |
/* a nested sektion should reset its parent column padding
|
93 |
@see https://github.com/presscustomizr/nimble-builder/issues/25
|
94 |
-
*/
|
95 |
-
[data-sek-is-nested="true"] .sek-container-fluid {
|
96 |
-
padding-right: 0;
|
97 |
-
padding-left: 0;
|
98 |
-
}
|
99 |
-
|
100 |
-
/* MODULE PLACEHOLDER */
|
101 |
/*@font-face {
|
102 |
font-family: 'Material Icons';
|
103 |
font-style: normal;
|
104 |
font-weight: 400;
|
105 |
src: url('../fonts/material-icons/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2') format('woff2');
|
106 |
-
}*/
|
107 |
-
/* @see https://github.com/google/material-design-icons/blob/master/iconfont/material-icons.css */
|
108 |
-
.sek-module-placeholder {
|
109 |
-
text-align: center;
|
110 |
-
}
|
111 |
-
|
112 |
-
.sek-module-placeholder .material-icons {
|
113 |
-
font-size: inherit;
|
114 |
-
color: #cfcfcf;
|
115 |
-
}
|
116 |
-
|
117 |
-
/* LEVEL VISIBILITY BY DEVICE */
|
118 |
-
/* NIMBLE TEMPLATE GENERAL STYLING */
|
119 |
-
/* <inspired by Twenty Seventeed WP theme> */
|
120 |
-
.sek-screen-reader-text {
|
121 |
-
border: 0;
|
122 |
-
clip: rect(0, 0, 0, 0);
|
123 |
-
height: 1px;
|
124 |
-
overflow: hidden;
|
125 |
-
padding: 0;
|
126 |
-
position: absolute !important;
|
127 |
-
width: 1px;
|
128 |
-
word-wrap: normal !important;
|
129 |
-
}
|
130 |
-
|
131 |
-
#nimble-page {
|
132 |
-
position: relative;
|
133 |
-
word-wrap: break-word;
|
134 |
-
}
|
135 |
-
|
136 |
-
/* </inspired by Twenty Seventeen WP theme> */
|
137 |
-
/* Nimble btn in admin top bar */
|
138 |
-
#wpadminbar .sek-nimble-icon {
|
139 |
-
display: inline-block;
|
140 |
-
}
|
141 |
-
|
142 |
-
#wpadminbar .sek-nimble-icon img {
|
143 |
-
width: 28px;
|
144 |
-
position: absolute;
|
145 |
-
top: 2px;
|
146 |
-
-webkit-filter: grayscale(100%);
|
147 |
-
filter: grayscale(100%);
|
148 |
-
-webkit-filter: gray;
|
149 |
-
filter: gray;
|
150 |
-
-webkit-transition: all 0.3s ease-in-out;
|
151 |
-
-moz-transition: all, 0.3s ease-in-out;
|
152 |
-
-ms-transition: all, 0.3s ease-in-out;
|
153 |
-
-o-transition: all, 0.3s ease-in-out;
|
154 |
-
transition: all 0.3s ease-in-out;
|
155 |
-
-webkit-box-shadow: none;
|
156 |
-
box-shadow: none;
|
157 |
-
}
|
158 |
-
|
159 |
-
#wpadminbar .sek-nimble-icon:hover img {
|
160 |
-
-webkit-filter: none;
|
161 |
-
filter: none;
|
162 |
-
-webkit-filter: none;
|
163 |
-
filter: none;
|
164 |
-
}
|
165 |
-
|
166 |
-
#wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title {
|
167 |
-
padding-left: 30px;
|
168 |
-
}
|
169 |
-
|
170 |
-
[data-sek-has-bg="true"] {
|
171 |
-
background-size: cover;
|
172 |
-
background-repeat: no-repeat;
|
173 |
-
background-position: 50% 50%;
|
174 |
-
}
|
175 |
-
|
176 |
-
[data-sek-level="location"] [data-sek-bg-parallax="true"] {
|
177 |
-
background-attachment: fixed;
|
178 |
-
background-size: cover;
|
179 |
-
}
|
180 |
-
|
181 |
-
[data-sek-level="location"] .sek-has-bg {
|
182 |
-
position: relative;
|
183 |
-
}
|
184 |
-
|
185 |
-
@supports (-webkit-overflow-scrolling: touch) {
|
186 |
-
body [data-sek-level="location"] [data-sek-bg-parallax="true"], body [data-sek-level="location"] [data-sek-bg-fixed="true"] {
|
187 |
-
background-attachment: scroll;
|
188 |
-
}
|
189 |
-
}
|
190 |
-
|
191 |
-
[data-sek-level="location"] [data-sek-level] {
|
192 |
-
-webkit-transition: 0s linear;
|
193 |
-
-o-transition: 0s linear;
|
194 |
-
transition: 0s linear;
|
195 |
-
-webkit-transition-property: background-position;
|
196 |
-
-o-transition-property: background-position;
|
197 |
-
transition-property: background-position;
|
198 |
-
}
|
199 |
-
|
200 |
-
.sek-module .sek-module-inner .alx-tab.thumbs-enabled > li {
|
201 |
-
padding-left: 94px;
|
202 |
-
}
|
203 |
-
|
204 |
-
.sek-module .sek-module-inner .widget_hu_tabs ul,
|
205 |
-
.sek-module .sek-module-inner .widget_hu_tabs ol {
|
206 |
-
margin-left: 0;
|
207 |
-
margin-bottom: 0;
|
208 |
-
}
|
209 |
-
|
210 |
-
.sek-module .sek-module-inner .widget_hu_tabs .alx-tabs-nav {
|
211 |
-
margin-bottom: 10px;
|
212 |
-
}
|
213 |
-
|
214 |
-
[data-sek-level].sek-level-has-shadow {
|
215 |
-
-webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
216 |
-
-moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
217 |
-
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
218 |
-
}
|
219 |
-
|
220 |
-
.customizer-preview [data-sek-level].sek-level-has-shadow {
|
221 |
-
-webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
|
222 |
-
-moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
|
223 |
-
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
|
224 |
-
}
|
225 |
-
|
226 |
-
[data-sek-level][data-sek-video-bg-src] {
|
227 |
-
position: relative;
|
228 |
-
}
|
229 |
-
|
230 |
-
[data-sek-level] embed,
|
231 |
-
[data-sek-level] iframe,
|
232 |
-
[data-sek-level] object,
|
233 |
-
[data-sek-level] video {
|
234 |
-
max-width: 100%;
|
235 |
-
width: 100%;
|
236 |
-
margin: 0;
|
237 |
-
line-height: 1;
|
238 |
-
border: none;
|
239 |
-
}
|
240 |
-
|
241 |
-
[data-sek-level] .sek-custom-embed {
|
242 |
-
line-height: 0;
|
243 |
-
}
|
244 |
-
|
245 |
-
[data-sek-level] .sek-bg-video-wrapper,
|
246 |
-
[data-sek-level] .sek-background {
|
247 |
-
height: 100%;
|
248 |
-
width: 100%;
|
249 |
-
top: 0;
|
250 |
-
left: 0;
|
251 |
-
position: absolute !important;
|
252 |
-
overflow: hidden;
|
253 |
-
z-index: 0;
|
254 |
-
direction: ltr;
|
255 |
-
}
|
256 |
-
|
257 |
-
[data-sek-level] .sek-bg-video-wrapper {
|
258 |
-
-webkit-transition: opacity 0.5s linear;
|
259 |
-
-o-transition: opacity 0.5s linear;
|
260 |
-
transition: opacity 0.5s linear;
|
261 |
-
pointer-events: none;
|
262 |
-
opacity: 0;
|
263 |
-
}
|
264 |
-
|
265 |
-
[data-sek-level] .sek-bg-video-wrapper.sek-bg-loading {
|
266 |
-
opacity: 0;
|
267 |
-
visibility: hidden;
|
268 |
-
}
|
269 |
-
|
270 |
-
[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-vimeo-element {
|
271 |
-
max-width: none;
|
272 |
-
}
|
273 |
-
|
274 |
-
[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-video-local, [data-sek-level] .sek-background-vimeo-element {
|
275 |
-
position: absolute;
|
276 |
-
top: 50%;
|
277 |
-
left: 50%;
|
278 |
-
-webkit-transform: translateX(-50%) translateY(-50%);
|
279 |
-
-ms-transform: translateX(-50%) translateY(-50%);
|
280 |
-
transform: translateX(-50%) translateY(-50%);
|
281 |
-
}
|
282 |
-
|
283 |
-
[data-sek-level] .sek-background-video-local {
|
284 |
-
-o-object-fit: cover;
|
285 |
-
object-fit: cover;
|
286 |
-
}
|
287 |
-
|
288 |
-
.sek-module-inner .sek-debug-modules {
|
289 |
-
margin: 1em;
|
290 |
-
padding: 5px;
|
291 |
-
border: 1px solid rgba(221, 221, 221, 0.43);
|
292 |
-
box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);
|
293 |
-
-webkit-box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);
|
294 |
-
background-color: #fff;
|
295 |
-
font-size: 15px;
|
296 |
-
font-weight: normal;
|
297 |
-
color: #6d6d6d;
|
298 |
-
background: rgba(255, 255, 255, 0.6);
|
299 |
-
}
|
300 |
-
|
301 |
-
@media (max-width: 575px) {
|
302 |
-
.customizer-preview [data-sek-video-bg-on-mobile="false"] .sek-bg-video-wrapper {
|
303 |
-
display: none;
|
304 |
-
}
|
305 |
-
}
|
306 |
-
|
307 |
-
.sek-animate-candidate:not(.sek-animate-displayed-before-starting) {
|
308 |
-
opacity: 0;
|
309 |
-
}
|
310 |
-
|
311 |
-
.sek-overflow-hidden-while-animating {
|
312 |
-
overflow: hidden;
|
313 |
-
}
|
314 |
-
|
315 |
-
.nb-scroll-down #nimble-header:not(.sek-header-mobile-menu-expanded), .nb-scroll-up #nimble-header:not(.sek-header-mobile-menu-expanded) {
|
316 |
-
background-color: rgba(255, 255, 255, 0.9);
|
317 |
-
}
|
318 |
-
|
319 |
-
.mfp-wrap button.mfp-arrow, .mfp-wrap button.mfp-close {
|
320 |
-
background: none !important;
|
321 |
-
background: transparent !important;
|
322 |
-
}
|
323 |
-
|
324 |
-
.mfp-wrap img.mfp-img {
|
325 |
-
padding: 40px 0 0;
|
326 |
-
}
|
327 |
-
|
328 |
-
.mfp-wrap::after {
|
329 |
-
bottom: 20px;
|
330 |
-
}
|
331 |
-
|
332 |
-
.mfp-wrap .mfp-bottom-bar {
|
333 |
-
margin-top: 0;
|
334 |
-
}
|
335 |
-
|
336 |
-
.sek-service-font, .sek-module .sek-module-inner .sek-btn {
|
337 |
-
font-family: sans-serif;
|
338 |
-
}
|
339 |
-
|
340 |
-
.sek-container {
|
341 |
-
width: 100%;
|
342 |
-
padding-right: 10px;
|
343 |
-
padding-left: 10px;
|
344 |
-
margin-right: auto;
|
345 |
-
margin-left: auto;
|
346 |
-
}
|
347 |
-
|
348 |
-
@media (min-width: 576px) {
|
349 |
-
.sek-container {
|
350 |
-
max-width: 540px;
|
351 |
-
}
|
352 |
-
}
|
353 |
-
|
354 |
-
@media (min-width: 768px) {
|
355 |
-
.sek-container {
|
356 |
-
max-width: 720px;
|
357 |
-
}
|
358 |
-
}
|
359 |
-
|
360 |
-
@media (min-width: 992px) {
|
361 |
-
.sek-container {
|
362 |
-
max-width: 960px;
|
363 |
-
}
|
364 |
-
}
|
365 |
-
|
366 |
-
@media (min-width: 1200px) {
|
367 |
-
.sek-container {
|
368 |
-
max-width: 1140px;
|
369 |
-
}
|
370 |
-
}
|
371 |
-
|
372 |
-
.sek-container-fluid {
|
373 |
-
width: 100%;
|
374 |
-
padding-right: 10px;
|
375 |
-
padding-left: 10px;
|
376 |
-
margin-right: auto;
|
377 |
-
margin-left: auto;
|
378 |
-
}
|
379 |
-
|
380 |
-
.sek-row {
|
381 |
-
display: flex;
|
382 |
-
flex-wrap: wrap;
|
383 |
-
margin-right: -10px;
|
384 |
-
margin-left: -10px;
|
385 |
-
}
|
386 |
-
|
387 |
-
.sek-container-no-padding {
|
388 |
-
padding-right: 0;
|
389 |
-
padding-left: 0;
|
390 |
-
overflow-x: hidden;
|
391 |
-
}
|
392 |
-
|
393 |
-
.sek-no-gutters {
|
394 |
-
margin-right: 0;
|
395 |
-
margin-left: 0;
|
396 |
-
}
|
397 |
-
|
398 |
-
.sek-no-gutters > .sek-col,
|
399 |
-
.sek-no-gutters > [class*="sek-col-"] {
|
400 |
-
padding-right: 0;
|
401 |
-
padding-left: 0;
|
402 |
-
}
|
403 |
-
|
404 |
-
.sek-col-8, .sek-col-9, .sek-col-10, .sek-col-11, .sek-col-12, .sek-col-14, .sek-col-16, .sek-col-20, .sek-col-25, .sek-col-30, .sek-col-33, .sek-col-40, .sek-col-50, .sek-col-60, .sek-col-66, .sek-col-70, .sek-col-75, .sek-col-80, .sek-col-83, .sek-col-90, .sek-col-100, .sek-col-base,
|
405 |
-
.sek-col,
|
406 |
-
.sek-col-auto {
|
407 |
-
position: relative;
|
408 |
-
width: 100%;
|
409 |
-
min-height: 1px;
|
410 |
-
padding-right: 10px;
|
411 |
-
padding-left: 10px;
|
412 |
-
}
|
413 |
-
|
414 |
-
.sek-col-base {
|
415 |
-
flex: 0 0 100%;
|
416 |
-
max-width: 100%;
|
417 |
-
}
|
418 |
-
|
419 |
-
.sek-col {
|
420 |
-
flex-basis: 0;
|
421 |
-
flex-grow: 1;
|
422 |
-
max-width: 100%;
|
423 |
-
}
|
424 |
-
|
425 |
-
.sek-col-auto {
|
426 |
-
flex: 0 0 auto;
|
427 |
-
width: auto;
|
428 |
-
max-width: 100%;
|
429 |
-
}
|
430 |
-
|
431 |
-
@media (min-width: 768px) {
|
432 |
-
.sek-col-8 {
|
433 |
-
flex: 0 0 8.333%;
|
434 |
-
max-width: 8.333%;
|
435 |
-
}
|
436 |
-
.sek-col-9 {
|
437 |
-
flex: 0 0 9.090909%;
|
438 |
-
max-width: 9.090909%;
|
439 |
-
}
|
440 |
-
.sek-col-10 {
|
441 |
-
flex: 0 0 10%;
|
442 |
-
max-width: 10%;
|
443 |
-
}
|
444 |
-
.sek-col-11 {
|
445 |
-
flex: 0 0 11.111%;
|
446 |
-
max-width: 11.111%;
|
447 |
-
}
|
448 |
-
.sek-col-12 {
|
449 |
-
flex: 0 0 12.5%;
|
450 |
-
max-width: 12.5%;
|
451 |
-
}
|
452 |
-
.sek-col-14 {
|
453 |
-
flex: 0 0 14.285%;
|
454 |
-
max-width: 14.285%;
|
455 |
-
}
|
456 |
-
.sek-col-16 {
|
457 |
-
flex: 0 0 16.666%;
|
458 |
-
max-width: 16.666%;
|
459 |
-
}
|
460 |
-
.sek-col-20 {
|
461 |
-
flex: 0 0 20%;
|
462 |
-
max-width: 20%;
|
463 |
-
}
|
464 |
-
.sek-col-25 {
|
465 |
-
flex: 0 0 25%;
|
466 |
-
max-width: 25%;
|
467 |
-
}
|
468 |
-
.sek-col-30 {
|
469 |
-
flex: 0 0 30%;
|
470 |
-
max-width: 30%;
|
471 |
-
}
|
472 |
-
.sek-col-33 {
|
473 |
-
flex: 0 0 33.333%;
|
474 |
-
max-width: 33.333%;
|
475 |
-
}
|
476 |
-
.sek-col-40 {
|
477 |
-
flex: 0 0 40%;
|
478 |
-
max-width: 40%;
|
479 |
-
}
|
480 |
-
.sek-col-50 {
|
481 |
-
flex: 0 0 50%;
|
482 |
-
max-width: 50%;
|
483 |
-
}
|
484 |
-
.sek-col-60 {
|
485 |
-
flex: 0 0 60%;
|
486 |
-
max-width: 60%;
|
487 |
-
}
|
488 |
-
.sek-col-66 {
|
489 |
-
flex: 0 0 66.666%;
|
490 |
-
max-width: 66.666%;
|
491 |
-
}
|
492 |
-
.sek-col-70 {
|
493 |
-
flex: 0 0 70%;
|
494 |
-
max-width: 70%;
|
495 |
-
}
|
496 |
-
.sek-col-75 {
|
497 |
-
flex: 0 0 75%;
|
498 |
-
max-width: 75%;
|
499 |
-
}
|
500 |
-
.sek-col-80 {
|
501 |
-
flex: 0 0 80%;
|
502 |
-
max-width: 80%;
|
503 |
-
}
|
504 |
-
.sek-col-83 {
|
505 |
-
flex: 0 0 83.333%;
|
506 |
-
max-width: 83.333%;
|
507 |
-
}
|
508 |
-
.sek-col-90 {
|
509 |
-
flex: 0 0 90%;
|
510 |
-
max-width: 90%;
|
511 |
-
}
|
512 |
-
.sek-col-100 {
|
513 |
-
flex: 0 0 100%;
|
514 |
-
max-width: 100%;
|
515 |
-
}
|
516 |
-
.sek-order-first {
|
517 |
-
order: -1;
|
518 |
-
}
|
519 |
-
.sek-order-last {
|
520 |
-
order: 13;
|
521 |
-
}
|
522 |
-
.sek-order-0 {
|
523 |
-
order: 0;
|
524 |
-
}
|
525 |
-
.sek-order-1 {
|
526 |
-
order: 1;
|
527 |
-
}
|
528 |
-
.sek-order-2 {
|
529 |
-
order: 2;
|
530 |
-
}
|
531 |
-
.sek-order-3 {
|
532 |
-
order: 3;
|
533 |
-
}
|
534 |
-
.sek-order-4 {
|
535 |
-
order: 4;
|
536 |
-
}
|
537 |
-
.sek-order-5 {
|
538 |
-
order: 5;
|
539 |
-
}
|
540 |
-
.sek-order-6 {
|
541 |
-
order: 6;
|
542 |
-
}
|
543 |
-
.sek-order-7 {
|
544 |
-
order: 7;
|
545 |
-
}
|
546 |
-
.sek-order-8 {
|
547 |
-
order: 8;
|
548 |
-
}
|
549 |
-
.sek-order-9 {
|
550 |
-
order: 9;
|
551 |
-
}
|
552 |
-
.sek-order-10 {
|
553 |
-
order: 10;
|
554 |
-
}
|
555 |
-
.sek-order-11 {
|
556 |
-
order: 11;
|
557 |
-
}
|
558 |
-
.sek-order-12 {
|
559 |
-
order: 12;
|
560 |
-
}
|
561 |
-
}
|
562 |
-
|
563 |
/*
|
564 |
.sek-collapsing {
|
565 |
position: relative;
|
566 |
height: 0;
|
567 |
overflow: hidden;
|
568 |
//@include transition($transition-collapse);
|
569 |
-
}*/
|
570 |
-
.sek-clearfix::after {
|
571 |
-
display: block;
|
572 |
-
clear: both;
|
573 |
-
content: "";
|
574 |
-
}
|
575 |
-
|
576 |
-
.sek-sr-only {
|
577 |
-
position: absolute;
|
578 |
-
width: 1px;
|
579 |
-
height: 1px;
|
580 |
-
padding: 0;
|
581 |
-
overflow: hidden;
|
582 |
-
clip: rect(0, 0, 0, 0);
|
583 |
-
white-space: nowrap;
|
584 |
-
border: 0;
|
585 |
-
}
|
586 |
-
|
587 |
-
.sek-sr-only-focusable:active, .sek-sr-only-focusable:focus {
|
588 |
-
position: static;
|
589 |
-
width: auto;
|
590 |
-
height: auto;
|
591 |
-
overflow: visible;
|
592 |
-
clip: auto;
|
593 |
-
white-space: normal;
|
594 |
-
}
|
595 |
-
|
596 |
-
.sek-embed {
|
597 |
-
position: relative;
|
598 |
-
}
|
599 |
-
|
600 |
-
.sek-embed::before {
|
601 |
-
display: block;
|
602 |
-
content: '';
|
603 |
-
}
|
604 |
-
|
605 |
-
.sek-embed .sek-embed-inner,
|
606 |
-
.sek-embed iframe {
|
607 |
-
position: absolute;
|
608 |
-
width: 100%;
|
609 |
-
height: 100%;
|
610 |
-
top: 0;
|
611 |
-
left: 0;
|
612 |
-
}
|
613 |
-
|
614 |
-
.sektion-wrapper {
|
615 |
-
word-wrap: break-word;
|
616 |
-
}
|
617 |
-
|
618 |
-
.sek-text-right {
|
619 |
-
text-align: right !important;
|
620 |
-
}
|
621 |
-
|
622 |
-
.sek-text-left {
|
623 |
-
text-align: left !important;
|
624 |
-
}
|
625 |
-
|
626 |
-
.sek-module .sek-module-inner ul {
|
627 |
-
list-style: disc;
|
628 |
-
}
|
629 |
-
|
630 |
-
.sek-module .sek-module-inner ol {
|
631 |
-
list-style: decimal;
|
632 |
-
}
|
633 |
-
|
634 |
-
.sek-module .sek-module-inner ol > li::before {
|
635 |
-
content: none;
|
636 |
-
}
|
637 |
-
|
638 |
-
.sek-module .sek-module-inner ul, .sek-module .sek-module-inner ol {
|
639 |
-
padding: 0;
|
640 |
-
line-height: 1.5;
|
641 |
-
margin: 0 0 1.5rem 3rem;
|
642 |
-
}
|
643 |
-
|
644 |
-
.sek-module .sek-module-inner ul > li, .sek-module .sek-module-inner ol > li {
|
645 |
-
padding: .15rem .25rem;
|
646 |
-
}
|
647 |
-
|
648 |
-
.sek-module .sek-module-inner li > ul, .sek-module .sek-module-inner li > ol {
|
649 |
-
margin-bottom: 0;
|
650 |
-
}
|
651 |
-
|
652 |
-
.sek-module-inner pre code, .sek-module-inner tt {
|
653 |
-
box-sizing: border-box;
|
654 |
-
font-size: inherit;
|
655 |
-
white-space: pre-wrap !important;
|
656 |
-
background: transparent;
|
657 |
-
border: none;
|
658 |
-
padding: 0;
|
659 |
-
font-family: monospace;
|
660 |
-
}
|
661 |
-
|
662 |
-
.sek-module-inner pre {
|
663 |
-
background: #f7f8f9;
|
664 |
-
padding: 2.5em;
|
665 |
-
word-wrap: normal;
|
666 |
-
white-space: pre-wrap !important;
|
667 |
-
color: #313131;
|
668 |
-
font-family: monospace !important;
|
669 |
-
}
|
670 |
-
|
671 |
-
.sek-module-inner figure {
|
672 |
-
text-align: center;
|
673 |
-
}
|
674 |
-
|
675 |
-
.sek-module-inner figcaption {
|
676 |
-
text-align: center;
|
677 |
-
}
|
678 |
-
|
679 |
-
.sek-module-inner cite {
|
680 |
-
color: #313131;
|
681 |
-
font-weight: 300;
|
682 |
-
font-style: normal;
|
683 |
-
position: relative;
|
684 |
-
display: inline-block;
|
685 |
-
}
|
686 |
-
|
687 |
-
.sek-module-inner caption, .sek-module-inner code, .sek-module-inner code, .sek-module-inner kbd, .sek-module-inner samp, .sek-module-inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd), .sek-module-inner :root .has-subtle-background-background-color {
|
688 |
-
background-color: #dbdbdb;
|
689 |
-
}
|
690 |
-
|
691 |
-
.sek-module-inner sub {
|
692 |
-
bottom: -0.25em;
|
693 |
-
}
|
694 |
-
|
695 |
-
.sek-module-inner sub, .sek-module-inner sup {
|
696 |
-
font-size: 75%;
|
697 |
-
line-height: 0;
|
698 |
-
position: relative;
|
699 |
-
vertical-align: baseline;
|
700 |
-
}
|
701 |
-
|
702 |
-
.sek-module-inner blockquote {
|
703 |
-
border-left: 5px solid rgba(0, 0, 0, 0.1);
|
704 |
-
background: none;
|
705 |
-
font-size: 1.2em;
|
706 |
-
font-style: inherit;
|
707 |
-
margin-right: 0;
|
708 |
-
margin-left: 0;
|
709 |
-
padding: 15px;
|
710 |
-
}
|
711 |
-
|
712 |
-
.sek-module-inner table {
|
713 |
-
width: 100%;
|
714 |
-
border-collapse: collapse;
|
715 |
/*&:not([id^=wp-calendar]) {
|
716 |
border: 2px solid $grey-lightest;
|
717 |
th { @extend .caps; @extend .letter-spacing-2; font-family: $serviceFont; }
|
718 |
th, td { @extend .demi-small; padding: $base-line-height; border: 1px solid $grey-lightest; }
|
719 |
td { color: $grey-dark; }
|
720 |
-
}*/
|
721 |
-
}
|
722 |
-
|
723 |
-
@media (max-width: 767.98px) {
|
724 |
-
.sek-module-inner table {
|
725 |
-
table-layout: fixed;
|
726 |
-
}
|
727 |
-
}
|
728 |
-
|
729 |
-
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) {
|
730 |
-
border: 2px solid #eceeef;
|
731 |
-
}
|
732 |
-
|
733 |
-
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th {
|
734 |
-
text-transform: uppercase;
|
735 |
-
letter-spacing: 2px;
|
736 |
-
font-family: sans-serif;
|
737 |
-
}
|
738 |
-
|
739 |
-
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th, .sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {
|
740 |
-
font-size: 0.95em;
|
741 |
-
padding: 1.25em;
|
742 |
-
border: 1px solid #eceeef;
|
743 |
-
}
|
744 |
-
|
745 |
-
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {
|
746 |
-
color: #777;
|
747 |
-
}
|
748 |
-
|
749 |
-
.sek-search-form {
|
750 |
-
float: none;
|
751 |
-
}
|
752 |
-
|
753 |
-
.sek-search-form .sek-search-form-group {
|
754 |
-
display: -webkit-box;
|
755 |
-
display: -ms-flexbox;
|
756 |
-
display: flex;
|
757 |
-
}
|
758 |
-
|
759 |
-
.sek-search-form .sek-search-form-group label {
|
760 |
-
position: relative;
|
761 |
-
margin-right: 5px;
|
762 |
-
}
|
763 |
-
|
764 |
-
.sek-search-form .sek-search-form-group label input[type=search] {
|
765 |
-
max-width: 100%;
|
766 |
-
margin: 0;
|
767 |
-
-moz-box-sizing: border-box;
|
768 |
-
-webkit-box-sizing: border-box;
|
769 |
-
box-sizing: border-box;
|
770 |
-
-webkit-border-radius: 0;
|
771 |
-
border-radius: 0;
|
772 |
-
background: #fff;
|
773 |
-
border: 2px solid #ddd;
|
774 |
-
color: #777;
|
775 |
-
display: block;
|
776 |
-
max-width: 100%;
|
777 |
-
padding: 7px 8px;
|
778 |
-
padding-left: 5px;
|
779 |
-
line-height: 1.5em;
|
780 |
-
width: 100%;
|
781 |
-
}
|
782 |
-
|
783 |
-
.sek-search-form .sek-search-form-group [type=submit] {
|
784 |
-
line-height: 15px;
|
785 |
-
margin: 0;
|
786 |
-
background: #808080 !important;
|
787 |
-
color: #fff;
|
788 |
-
font-size: 16px;
|
789 |
-
padding: 10px 10px;
|
790 |
-
font-weight: normal;
|
791 |
-
display: inline-block;
|
792 |
-
border: none;
|
793 |
-
cursor: pointer;
|
794 |
-
border-radius: 3px;
|
795 |
-
}
|
796 |
-
|
797 |
-
.sek-module .sek-module-inner .sek-btn {
|
798 |
-
display: inline-block;
|
799 |
-
font-weight: normal;
|
800 |
-
line-height: 1.25em;
|
801 |
-
text-align: center;
|
802 |
-
/*white-space: nowrap;*/
|
803 |
-
white-space: normal;
|
804 |
-
word-break: break-all;
|
805 |
-
vertical-align: middle;
|
806 |
-
user-select: none;
|
807 |
-
border: 1px solid transparent;
|
808 |
-
padding: 0.5em 1em;
|
809 |
-
border-radius: 2px;
|
810 |
-
border-width: 2px;
|
811 |
-
border-style: solid;
|
812 |
-
font-size: 1em;
|
813 |
-
cursor: pointer;
|
814 |
-
text-decoration: none;
|
815 |
-
text-transform: none;
|
816 |
-
-webkit-transition: all 0.2s ease-in-out;
|
817 |
-
-o-transition: all 0.2s ease-in-out;
|
818 |
-
transition: all 0.2s ease-in-out;
|
819 |
-
}
|
820 |
-
|
821 |
-
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .sek-btn:hover {
|
822 |
-
text-decoration: none;
|
823 |
-
}
|
824 |
-
|
825 |
-
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .focus.sek-btn {
|
826 |
-
outline: 0;
|
827 |
-
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
828 |
-
}
|
829 |
-
|
830 |
-
.sek-module .sek-module-inner .disabled.sek-btn, .sek-module .sek-module-inner .sek-btn:disabled {
|
831 |
-
cursor: not-allowed;
|
832 |
-
opacity: .65;
|
833 |
-
box-shadow: none;
|
834 |
-
}
|
835 |
-
|
836 |
-
.sek-module .sek-module-inner .sek-btn:active, .sek-module .sek-module-inner .active.sek-btn {
|
837 |
-
background-image: none;
|
838 |
-
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
839 |
-
}
|
840 |
-
|
841 |
-
a.sek-btn.disabled,
|
842 |
-
fieldset[disabled] a.sek-btn {
|
843 |
-
pointer-events: none;
|
844 |
-
}
|
845 |
-
|
846 |
-
.sektion-wrapper button,
|
847 |
-
.sektion-wrapper [type="button"],
|
848 |
-
.sektion-wrapper [type="reset"],
|
849 |
-
.sektion-wrapper [type="submit"] {
|
850 |
-
-webkit-appearance: button;
|
851 |
-
}
|
852 |
-
|
853 |
-
.sektion-wrapper button::-moz-focus-inner,
|
854 |
-
.sektion-wrapper [type="button"]::-moz-focus-inner,
|
855 |
-
.sektion-wrapper [type="reset"]::-moz-focus-inner,
|
856 |
-
.sektion-wrapper [type="submit"]::-moz-focus-inner {
|
857 |
-
padding: 0;
|
858 |
-
border-style: none;
|
859 |
-
}
|
860 |
-
|
861 |
-
button.sek-btn,
|
862 |
-
[type="button"].sek-btn,
|
863 |
-
[type="reset"].sek-btn,
|
864 |
-
[type="submit"].sek-btn {
|
865 |
-
-wekbit-appearance: none !important;
|
866 |
-
background: transparent;
|
867 |
-
}
|
868 |
-
|
869 |
-
[data-sek-level="module"] .sek-module-inner {
|
870 |
-
/* WP Search Widget */
|
871 |
-
}
|
872 |
-
|
873 |
-
[data-sek-level="module"] .sek-module-inner .wp-caption figcaption {
|
874 |
-
color: #6d6d6d;
|
875 |
-
font-style: italic;
|
876 |
-
max-width: 100%;
|
877 |
-
font-size: 14px;
|
878 |
-
font-weight: 500;
|
879 |
-
line-height: 1.4;
|
880 |
-
/* Keep wide captions from overflowing their container. */
|
881 |
-
padding: 4px;
|
882 |
-
margin-top: 1rem;
|
883 |
-
}
|
884 |
-
|
885 |
-
[data-sek-level="module"] .sek-module-inner figure {
|
886 |
-
display: block;
|
887 |
-
}
|
888 |
-
|
889 |
-
[data-sek-level="module"] .sek-module-inner .wp-block-image .aligncenter, [data-sek-level="module"] .sek-module-inner .wp-block-image .alignleft, [data-sek-level="module"] .sek-module-inner .wp-block-image .alignright {
|
890 |
-
display: table;
|
891 |
-
}
|
892 |
-
|
893 |
-
[data-sek-level="module"] .sek-module-inner .wp-block-image figcaption {
|
894 |
-
font-size: 13px;
|
895 |
-
text-align: center;
|
896 |
-
}
|
897 |
-
|
898 |
-
[data-sek-level="module"] .sek-module-inner .wp-block-gallery, [data-sek-level="module"] .sek-module-inner ul.blocks-gallery-grid {
|
899 |
-
margin-left: 0;
|
900 |
-
}
|
901 |
-
|
902 |
-
[data-sek-level="module"] .sek-module-inner [class*="wp-block-"]:not(:last-child) {
|
903 |
-
margin-bottom: 1.5em;
|
904 |
-
}
|
905 |
-
|
906 |
-
.sek-col-100 .sek-module-inner .alignfull {
|
907 |
-
margin-left: calc(-100vw / 2 + 100% / 2);
|
908 |
-
margin-right: calc(-100vw / 2 + 100% / 2);
|
909 |
-
max-width: 100vw;
|
910 |
-
width: auto;
|
911 |
-
}
|
912 |
-
|
913 |
-
.sek-col-100 .sek-module-inner .alignwide {
|
914 |
-
margin-left: calc((100% - 80vw) / 2);
|
915 |
-
width: 80vw;
|
916 |
-
max-width: 80vw;
|
917 |
-
}
|
918 |
-
|
919 |
-
[data-sek-level="module"] .sek-module-inner .aligncenter, [data-sek-level="module"] .sek-module-inner .aligncenter img {
|
920 |
-
display: block;
|
921 |
-
margin-left: auto;
|
922 |
-
margin-right: auto;
|
923 |
-
}
|
924 |
-
|
925 |
-
[data-sek-level="module"] .sek-module-inner .alignleft {
|
926 |
-
float: left;
|
927 |
-
}
|
928 |
-
|
929 |
-
[data-sek-level="module"] .sek-module-inner .alignright {
|
930 |
-
float: right;
|
931 |
-
}
|
932 |
-
|
933 |
-
[data-sek-level="module"] .sek-module-inner .alignnone, [data-sek-level="module"] .sek-module-inner .aligncenter, [data-sek-level="module"] .sek-module-inner .alignleft, [data-sek-level="module"] .sek-module-inner .alignright {
|
934 |
-
margin-top: 1.5rem;
|
935 |
-
margin-right: auto;
|
936 |
-
margin-bottom: 1.5rem;
|
937 |
-
margin-left: auto;
|
938 |
-
}
|
939 |
-
|
940 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form {
|
941 |
-
display: -webkit-box;
|
942 |
-
display: -ms-flexbox;
|
943 |
-
display: flex;
|
944 |
-
max-width: 100%;
|
945 |
-
float: right;
|
946 |
-
}
|
947 |
-
|
948 |
-
@media (max-width: 767.98px) {
|
949 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form {
|
950 |
-
float: none;
|
951 |
-
}
|
952 |
-
}
|
953 |
-
|
954 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form label {
|
955 |
-
position: relative;
|
956 |
-
-webkit-box-flex: 1;
|
957 |
-
-ms-flex: 1;
|
958 |
-
flex: 1;
|
959 |
-
margin-right: 5px;
|
960 |
-
}
|
961 |
-
|
962 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form label input {
|
963 |
-
padding-left: 5px;
|
964 |
-
line-height: 20px;
|
965 |
-
width: 100%;
|
966 |
-
max-width: 185px;
|
967 |
-
min-width: 80px;
|
968 |
-
}
|
969 |
-
|
970 |
-
@media (max-width: 767.98px) {
|
971 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form label input {
|
972 |
-
max-width: none;
|
973 |
-
}
|
974 |
-
}
|
975 |
-
|
976 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form input[type=submit] {
|
977 |
-
line-height: 15px;
|
978 |
-
/*width: 25%;*/
|
979 |
-
}
|
980 |
-
|
981 |
-
[data-sek-level="module"] .sek-module-inner input[type="submit"] {
|
982 |
-
background: #808080;
|
983 |
-
color: #fff;
|
984 |
-
padding: 10px 10px;
|
985 |
-
font-weight: normal;
|
986 |
-
display: inline-block;
|
987 |
-
border: none;
|
988 |
-
cursor: pointer;
|
989 |
-
-webkit-border-radius: 3px;
|
990 |
-
border-radius: 3px;
|
991 |
-
}
|
992 |
-
|
993 |
-
[data-sek-level="module"] .sek-module-inner .search-form input[type="search"] {
|
994 |
-
margin: 0;
|
995 |
-
-moz-box-sizing: border-box;
|
996 |
-
-webkit-box-sizing: border-box;
|
997 |
-
box-sizing: border-box;
|
998 |
-
-webkit-border-radius: 0;
|
999 |
-
border-radius: 0;
|
1000 |
-
background: #fff;
|
1001 |
-
border: 2px solid #ddd;
|
1002 |
-
color: #777;
|
1003 |
-
display: block;
|
1004 |
-
max-width: 100%;
|
1005 |
-
padding: 7px 8px;
|
1006 |
-
}
|
1007 |
-
|
1008 |
-
.sektion-wrapper.sek-password-protected {
|
1009 |
-
display: flex;
|
1010 |
-
align-items: center;
|
1011 |
-
justify-content: center;
|
1012 |
-
-ms-flex-direction: column;
|
1013 |
-
flex-direction: column;
|
1014 |
-
}
|
1015 |
-
|
1016 |
-
.sektion-wrapper.sek-password-protected form.post-password-form {
|
1017 |
-
max-width: 450px;
|
1018 |
-
height: auto;
|
1019 |
-
padding: 4em 1em;
|
1020 |
-
font-size: 1em;
|
1021 |
-
}
|
1022 |
-
|
1023 |
-
.sektion-wrapper .sek-module-inner .avatar {
|
1024 |
-
border-radius: 50%;
|
1025 |
-
}
|
1026 |
-
|
1027 |
-
.sek-next-post-link::after, .sek-previous-post-link::before {
|
1028 |
-
width: 15px;
|
1029 |
-
height: 10px;
|
1030 |
-
display: inline-block;
|
1031 |
-
position: relative;
|
1032 |
-
vertical-align: middle;
|
1033 |
-
border-top: 6px solid transparent;
|
1034 |
-
border-bottom: 6px solid transparent;
|
1035 |
-
border-left-color: inherit;
|
1036 |
-
border-right-color: inherit;
|
1037 |
-
}
|
1038 |
-
|
1039 |
-
.sek-previous-post-link::before {
|
1040 |
-
content: '';
|
1041 |
-
border-right: 6px solid;
|
1042 |
-
right: 7px;
|
1043 |
-
}
|
1044 |
-
|
1045 |
-
.sek-next-post-link::after {
|
1046 |
-
content: '';
|
1047 |
-
border-left: 6px solid;
|
1048 |
-
left: 7px;
|
1049 |
-
}
|
1050 |
-
|
1051 |
/*************************************
|
1052 |
* DIVIDER MODULE
|
1053 |
-
*************************************/
|
1054 |
-
[data-sek-module-type="czr_divider_module"] {
|
1055 |
-
text-align: center;
|
1056 |
-
}
|
1057 |
-
|
1058 |
-
[data-sek-module-type="czr_divider_module"] .sek-module-inner {
|
1059 |
-
font-size: 0;
|
1060 |
-
line-height: 0;
|
1061 |
-
}
|
1062 |
-
|
1063 |
-
.sek-module-inner .sek-divider {
|
1064 |
-
border-top: 1px solid #5a5a5a;
|
1065 |
-
display: inline-block;
|
1066 |
-
width: 100%;
|
1067 |
-
margin-top: 15px;
|
1068 |
-
margin-bottom: 15px;
|
1069 |
-
font-size: 1rem;
|
1070 |
-
}
|
1071 |
-
|
1072 |
/*************************************
|
1073 |
* SPACER MODULE
|
1074 |
-
*************************************/
|
1075 |
-
.sek-module-inner .sek-spacer {
|
1076 |
-
height: 20px;
|
1077 |
-
}
|
1078 |
-
|
1079 |
/*************************************
|
1080 |
* TINY MCE EDITOR MODULE
|
1081 |
-
*************************************/
|
1082 |
-
[data-sek-module-type="czr_tiny_mce_editor_module"] a {
|
1083 |
-
text-decoration: underline;
|
1084 |
-
}
|
1085 |
-
|
1086 |
/*************************************
|
1087 |
* SHORTCODE MODULE
|
1088 |
-
*************************************/
|
1089 |
-
[data-sek-module-type="czr_shortcode_module"] [data-sek-use-flexbox="true"] {
|
1090 |
-
display: -webkit-box;
|
1091 |
-
display: -ms-flexbox;
|
1092 |
-
display: flex;
|
1093 |
-
-webkit-box-pack: center;
|
1094 |
-
-ms-flex-pack: center;
|
1095 |
-
justify-content: center;
|
1096 |
-
}
|
1097 |
-
|
1098 |
-
.sek-module-inner {
|
1099 |
-
line-height: 1.5em;
|
1100 |
-
}
|
1101 |
-
|
1102 |
-
.sek-module-inner h1, .sek-module-inner h2, .sek-module-inner h3, .sek-module-inner h4, .sek-module-inner h5, .sek-module-inner h6, .sek-module-inner p {
|
1103 |
-
line-height: 1.5em;
|
1104 |
-
font-weight: 400;
|
1105 |
-
margin: 0.6em 0;
|
1106 |
-
}
|
1107 |
-
|
1108 |
-
.sek-module-inner h1 {
|
1109 |
-
font-size: 2.48em;
|
1110 |
-
}
|
1111 |
-
|
1112 |
-
.sek-module-inner h2 {
|
1113 |
-
font-size: 2.07em;
|
1114 |
-
}
|
1115 |
-
|
1116 |
-
.sek-module-inner h3 {
|
1117 |
-
font-size: 1.73em;
|
1118 |
-
}
|
1119 |
-
|
1120 |
-
.sek-module-inner h4 {
|
1121 |
-
font-size: 1.44em;
|
1122 |
-
}
|
1123 |
-
|
1124 |
-
.sek-module-inner h5 {
|
1125 |
-
font-size: 1.2em;
|
1126 |
-
}
|
1127 |
-
|
1128 |
-
.sek-module-inner h6 {
|
1129 |
-
font-size: 1em;
|
1130 |
-
}
|
1131 |
-
|
1132 |
-
.sek-module-inner p {
|
1133 |
-
margin: 0 0 1em;
|
1134 |
-
padding: 0;
|
1135 |
-
}
|
1136 |
-
|
1137 |
-
.sek-module-inner a {
|
1138 |
-
text-decoration: none;
|
1139 |
-
-webkit-box-shadow: none;
|
1140 |
-
box-shadow: none;
|
1141 |
-
-webkit-transition: color 0.2s ease-in-out;
|
1142 |
-
-o-transition: color 0.2s ease-in-out;
|
1143 |
-
transition: color 0.2s ease-in-out;
|
1144 |
-
}
|
1145 |
-
|
1146 |
-
.sek-module-inner img {
|
1147 |
-
height: auto;
|
1148 |
-
max-width: 100%;
|
1149 |
-
border: none;
|
1150 |
-
-webkit-border-radius: 0;
|
1151 |
-
border-radius: 0;
|
1152 |
-
-webkit-box-shadow: none;
|
1153 |
-
box-shadow: none;
|
1154 |
-
}
|
1155 |
-
|
1156 |
-
[data-sek-module-type="czr_tiny_mce_editor_module"] .sek-module-inner a:not(.wp-block-button__link),
|
1157 |
-
[data-sek-module-type="czr_shortcode_module"] .sek-module-inner a:not(.wp-block-button__link),
|
1158 |
-
[data-sek-module-type="czr_accordion_module"] .sek-module-inner a:not(.wp-block-button__link),
|
1159 |
-
[data-sek-module-type="czr_simple_html_module"] .sek-module-inner a:not(.wp-block-button__link) {
|
1160 |
-
text-decoration: underline;
|
1161 |
-
}
|
1162 |
-
|
1163 |
-
body .sektion-wrapper .sek-row [data-sek-level="module"] .sek-module-inner a:not(.sek-btn):not(.button):focus {
|
1164 |
-
background: none;
|
1165 |
-
}
|
1166 |
-
|
1167 |
-
body .sek-module-inner h1:before, body .sek-module-inner h2:before, body .sek-module-inner h3:before, body .sek-module-inner h4:before, body .sek-module-inner h5:before, body .sek-module-inner h6:before {
|
1168 |
-
content: none;
|
1169 |
-
background: none;
|
1170 |
-
}
|
1171 |
-
|
1172 |
/*# sourceMappingURL=sek-base-light.css.map */
|
1 |
+
/* -------------------------------------------------------------------------- */
|
2 |
/* <SCOPED RESET>
|
3 |
+
/* -------------------------------------------------------------------------- */
|
4 |
+
.sektion-wrapper *,
|
5 |
+
.sektion-wrapper *::before,
|
6 |
+
.sektion-wrapper *::after {
|
7 |
+
box-sizing: border-box;
|
8 |
+
}
|
9 |
+
|
10 |
+
.sektion-wrapper span, .sektion-wrapper applet, .sektion-wrapper object, .sektion-wrapper iframe,
|
11 |
+
.sektion-wrapper h1, .sektion-wrapper h2, .sektion-wrapper h3, .sektion-wrapper h4, .sektion-wrapper h5, .sektion-wrapper h6, .sektion-wrapper p, .sektion-wrapper blockquote, .sektion-wrapper pre,
|
12 |
+
.sektion-wrapper a, .sektion-wrapper abbr, .sektion-wrapper acronym, .sektion-wrapper address, .sektion-wrapper big, .sektion-wrapper cite, .sektion-wrapper code,
|
13 |
+
.sektion-wrapper del, .sektion-wrapper dfn, .sektion-wrapper em, .sektion-wrapper img, .sektion-wrapper ins, .sektion-wrapper kbd, .sektion-wrapper q, .sektion-wrapper s, .sektion-wrapper samp,
|
14 |
+
.sektion-wrapper small, .sektion-wrapper strike, .sektion-wrapper strong, .sektion-wrapper sub, .sektion-wrapper sup, .sektion-wrapper tt, .sektion-wrapper var,
|
15 |
+
.sektion-wrapper b, .sektion-wrapper u, .sektion-wrapper i, .sektion-wrapper center,
|
16 |
+
.sektion-wrapper dl, .sektion-wrapper dt, .sektion-wrapper dd, .sektion-wrapper ol, .sektion-wrapper ul, .sektion-wrapper li,
|
17 |
+
.sektion-wrapper fieldset, .sektion-wrapper form, .sektion-wrapper label, .sektion-wrapper legend,
|
18 |
+
.sektion-wrapper table, .sektion-wrapper caption, .sektion-wrapper tbody, .sektion-wrapper tfoot, .sektion-wrapper thead, .sektion-wrapper tr, .sektion-wrapper th, .sektion-wrapper td,
|
19 |
+
.sektion-wrapper article, .sektion-wrapper aside, .sektion-wrapper canvas, .sektion-wrapper details, .sektion-wrapper embed,
|
20 |
+
.sektion-wrapper figure:not([class*="wp-block-"]), .sektion-wrapper figcaption, .sektion-wrapper footer, .sektion-wrapper header, .sektion-wrapper hgroup,
|
21 |
+
.sektion-wrapper menu, .sektion-wrapper nav, .sektion-wrapper output, .sektion-wrapper ruby, .sektion-wrapper section, .sektion-wrapper summary,
|
22 |
+
.sektion-wrapper time, .sektion-wrapper mark, .sektion-wrapper audio, .sektion-wrapper video {
|
23 |
+
border: none;
|
24 |
+
font-size: inherit;
|
25 |
+
line-height: inherit;
|
26 |
+
margin: 0;
|
27 |
+
padding: 0;
|
28 |
+
}
|
29 |
+
|
30 |
+
.sektion-wrapper blockquote::before,
|
31 |
+
.sektion-wrapper blockquote::after, .sektion-wrapper q:before, .sektion-wrapper q:after {
|
32 |
+
content: "";
|
33 |
+
}
|
34 |
+
|
35 |
+
.sektion-wrapper ol, .sektion-wrapper ul {
|
36 |
+
list-style: none;
|
37 |
+
}
|
38 |
+
|
39 |
+
.sektion-wrapper img {
|
40 |
+
max-width: 100%;
|
41 |
+
vertical-align: middle;
|
42 |
+
border-style: none;
|
43 |
+
display: inline;
|
44 |
+
}
|
45 |
+
|
46 |
+
.sektion-wrapper svg:not(:root) {
|
47 |
+
overflow: hidden;
|
48 |
+
}
|
49 |
+
|
50 |
+
.sektion-wrapper embed, .sektion-wrapper iframe, .sektion-wrapper object {
|
51 |
+
max-width: 100%;
|
52 |
+
}
|
53 |
+
|
54 |
+
/* -------------------------------------------------------------------------- */
|
55 |
/* </SCOPED RESET>
|
56 |
+
/* -------------------------------------------------------------------------- */
|
57 |
+
/* make sure that the location level occupies 100% of the width */
|
58 |
+
[data-sek-level="location"] {
|
59 |
+
clear: both;
|
60 |
+
font-size: 16px;
|
61 |
+
}
|
62 |
+
|
63 |
+
/* To make vertical alignment possible in sections */
|
64 |
+
.sek-section, .sek-column, .sek-module {
|
65 |
+
display: flex;
|
66 |
+
align-items: center;
|
67 |
+
}
|
68 |
+
|
69 |
+
.sek-column-inner, .sek-module-inner {
|
70 |
+
-ms-flex: 0 0 100%;
|
71 |
+
flex: 0 0 100%;
|
72 |
+
max-width: 100%;
|
73 |
+
}
|
74 |
+
|
75 |
/* To allow horizontal centering of modules
|
76 |
@see https://github.com/presscustomizr/nimble-builder/issues/119
|
77 |
+
*/
|
78 |
+
/* - sections in locations */
|
79 |
+
/* - columns in sections */
|
80 |
+
/* - modules in columns */
|
81 |
+
.sek-column-inner {
|
82 |
+
display: flex;
|
83 |
+
flex-direction: column;
|
84 |
+
}
|
85 |
+
|
86 |
+
.sek-module {
|
87 |
+
align-self: center;
|
88 |
+
width: 100%;
|
89 |
+
max-width: 100%;
|
90 |
+
}
|
91 |
+
|
92 |
/* a nested sektion should reset its parent column padding
|
93 |
@see https://github.com/presscustomizr/nimble-builder/issues/25
|
94 |
+
*/
|
95 |
+
[data-sek-is-nested="true"] .sek-container-fluid {
|
96 |
+
padding-right: 0;
|
97 |
+
padding-left: 0;
|
98 |
+
}
|
99 |
+
|
100 |
+
/* MODULE PLACEHOLDER */
|
101 |
/*@font-face {
|
102 |
font-family: 'Material Icons';
|
103 |
font-style: normal;
|
104 |
font-weight: 400;
|
105 |
src: url('../fonts/material-icons/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2') format('woff2');
|
106 |
+
}*/
|
107 |
+
/* @see https://github.com/google/material-design-icons/blob/master/iconfont/material-icons.css */
|
108 |
+
.sek-module-placeholder {
|
109 |
+
text-align: center;
|
110 |
+
}
|
111 |
+
|
112 |
+
.sek-module-placeholder .material-icons {
|
113 |
+
font-size: inherit;
|
114 |
+
color: #cfcfcf;
|
115 |
+
}
|
116 |
+
|
117 |
+
/* LEVEL VISIBILITY BY DEVICE */
|
118 |
+
/* NIMBLE TEMPLATE GENERAL STYLING */
|
119 |
+
/* <inspired by Twenty Seventeed WP theme> */
|
120 |
+
.sek-screen-reader-text {
|
121 |
+
border: 0;
|
122 |
+
clip: rect(0, 0, 0, 0);
|
123 |
+
height: 1px;
|
124 |
+
overflow: hidden;
|
125 |
+
padding: 0;
|
126 |
+
position: absolute !important;
|
127 |
+
width: 1px;
|
128 |
+
word-wrap: normal !important;
|
129 |
+
}
|
130 |
+
|
131 |
+
#nimble-page {
|
132 |
+
position: relative;
|
133 |
+
word-wrap: break-word;
|
134 |
+
}
|
135 |
+
|
136 |
+
/* </inspired by Twenty Seventeen WP theme> */
|
137 |
+
/* Nimble btn in admin top bar */
|
138 |
+
#wpadminbar .sek-nimble-icon {
|
139 |
+
display: inline-block;
|
140 |
+
}
|
141 |
+
|
142 |
+
#wpadminbar .sek-nimble-icon img {
|
143 |
+
width: 28px;
|
144 |
+
position: absolute;
|
145 |
+
top: 2px;
|
146 |
+
-webkit-filter: grayscale(100%);
|
147 |
+
filter: grayscale(100%);
|
148 |
+
-webkit-filter: gray;
|
149 |
+
filter: gray;
|
150 |
+
-webkit-transition: all 0.3s ease-in-out;
|
151 |
+
-moz-transition: all, 0.3s ease-in-out;
|
152 |
+
-ms-transition: all, 0.3s ease-in-out;
|
153 |
+
-o-transition: all, 0.3s ease-in-out;
|
154 |
+
transition: all 0.3s ease-in-out;
|
155 |
+
-webkit-box-shadow: none;
|
156 |
+
box-shadow: none;
|
157 |
+
}
|
158 |
+
|
159 |
+
#wpadminbar .sek-nimble-icon:hover img {
|
160 |
+
-webkit-filter: none;
|
161 |
+
filter: none;
|
162 |
+
-webkit-filter: none;
|
163 |
+
filter: none;
|
164 |
+
}
|
165 |
+
|
166 |
+
#wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title {
|
167 |
+
padding-left: 30px;
|
168 |
+
}
|
169 |
+
|
170 |
+
[data-sek-has-bg="true"] {
|
171 |
+
background-size: cover;
|
172 |
+
background-repeat: no-repeat;
|
173 |
+
background-position: 50% 50%;
|
174 |
+
}
|
175 |
+
|
176 |
+
[data-sek-level="location"] [data-sek-bg-parallax="true"] {
|
177 |
+
background-attachment: fixed;
|
178 |
+
background-size: cover;
|
179 |
+
}
|
180 |
+
|
181 |
+
[data-sek-level="location"] .sek-has-bg {
|
182 |
+
position: relative;
|
183 |
+
}
|
184 |
+
|
185 |
+
@supports (-webkit-overflow-scrolling: touch) {
|
186 |
+
body [data-sek-level="location"] [data-sek-bg-parallax="true"], body [data-sek-level="location"] [data-sek-bg-fixed="true"] {
|
187 |
+
background-attachment: scroll;
|
188 |
+
}
|
189 |
+
}
|
190 |
+
|
191 |
+
[data-sek-level="location"] [data-sek-level] {
|
192 |
+
-webkit-transition: 0s linear;
|
193 |
+
-o-transition: 0s linear;
|
194 |
+
transition: 0s linear;
|
195 |
+
-webkit-transition-property: background-position;
|
196 |
+
-o-transition-property: background-position;
|
197 |
+
transition-property: background-position;
|
198 |
+
}
|
199 |
+
|
200 |
+
.sek-module .sek-module-inner .alx-tab.thumbs-enabled > li {
|
201 |
+
padding-left: 94px;
|
202 |
+
}
|
203 |
+
|
204 |
+
.sek-module .sek-module-inner .widget_hu_tabs ul,
|
205 |
+
.sek-module .sek-module-inner .widget_hu_tabs ol {
|
206 |
+
margin-left: 0;
|
207 |
+
margin-bottom: 0;
|
208 |
+
}
|
209 |
+
|
210 |
+
.sek-module .sek-module-inner .widget_hu_tabs .alx-tabs-nav {
|
211 |
+
margin-bottom: 10px;
|
212 |
+
}
|
213 |
+
|
214 |
+
[data-sek-level].sek-level-has-shadow {
|
215 |
+
-webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
216 |
+
-moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
217 |
+
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
218 |
+
}
|
219 |
+
|
220 |
+
.customizer-preview [data-sek-level].sek-level-has-shadow {
|
221 |
+
-webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
|
222 |
+
-moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
|
223 |
+
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
|
224 |
+
}
|
225 |
+
|
226 |
+
[data-sek-level][data-sek-video-bg-src] {
|
227 |
+
position: relative;
|
228 |
+
}
|
229 |
+
|
230 |
+
[data-sek-level] embed,
|
231 |
+
[data-sek-level] iframe,
|
232 |
+
[data-sek-level] object,
|
233 |
+
[data-sek-level] video {
|
234 |
+
max-width: 100%;
|
235 |
+
width: 100%;
|
236 |
+
margin: 0;
|
237 |
+
line-height: 1;
|
238 |
+
border: none;
|
239 |
+
}
|
240 |
+
|
241 |
+
[data-sek-level] .sek-custom-embed {
|
242 |
+
line-height: 0;
|
243 |
+
}
|
244 |
+
|
245 |
+
[data-sek-level] .sek-bg-video-wrapper,
|
246 |
+
[data-sek-level] .sek-background {
|
247 |
+
height: 100%;
|
248 |
+
width: 100%;
|
249 |
+
top: 0;
|
250 |
+
left: 0;
|
251 |
+
position: absolute !important;
|
252 |
+
overflow: hidden;
|
253 |
+
z-index: 0;
|
254 |
+
direction: ltr;
|
255 |
+
}
|
256 |
+
|
257 |
+
[data-sek-level] .sek-bg-video-wrapper {
|
258 |
+
-webkit-transition: opacity 0.5s linear;
|
259 |
+
-o-transition: opacity 0.5s linear;
|
260 |
+
transition: opacity 0.5s linear;
|
261 |
+
pointer-events: none;
|
262 |
+
opacity: 0;
|
263 |
+
}
|
264 |
+
|
265 |
+
[data-sek-level] .sek-bg-video-wrapper.sek-bg-loading {
|
266 |
+
opacity: 0;
|
267 |
+
visibility: hidden;
|
268 |
+
}
|
269 |
+
|
270 |
+
[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-vimeo-element {
|
271 |
+
max-width: none;
|
272 |
+
}
|
273 |
+
|
274 |
+
[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-video-local, [data-sek-level] .sek-background-vimeo-element {
|
275 |
+
position: absolute;
|
276 |
+
top: 50%;
|
277 |
+
left: 50%;
|
278 |
+
-webkit-transform: translateX(-50%) translateY(-50%);
|
279 |
+
-ms-transform: translateX(-50%) translateY(-50%);
|
280 |
+
transform: translateX(-50%) translateY(-50%);
|
281 |
+
}
|
282 |
+
|
283 |
+
[data-sek-level] .sek-background-video-local {
|
284 |
+
-o-object-fit: cover;
|
285 |
+
object-fit: cover;
|
286 |
+
}
|
287 |
+
|
288 |
+
.sek-module-inner .sek-debug-modules {
|
289 |
+
margin: 1em;
|
290 |
+
padding: 5px;
|
291 |
+
border: 1px solid rgba(221, 221, 221, 0.43);
|
292 |
+
box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);
|
293 |
+
-webkit-box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);
|
294 |
+
background-color: #fff;
|
295 |
+
font-size: 15px;
|
296 |
+
font-weight: normal;
|
297 |
+
color: #6d6d6d;
|
298 |
+
background: rgba(255, 255, 255, 0.6);
|
299 |
+
}
|
300 |
+
|
301 |
+
@media (max-width: 575px) {
|
302 |
+
.customizer-preview [data-sek-video-bg-on-mobile="false"] .sek-bg-video-wrapper {
|
303 |
+
display: none;
|
304 |
+
}
|
305 |
+
}
|
306 |
+
|
307 |
+
body:not(.customizer-preview) .sek-animate-candidate:not(.sek-animate-displayed-before-starting) {
|
308 |
+
opacity: 0;
|
309 |
+
}
|
310 |
+
|
311 |
+
.sek-overflow-hidden-while-animating {
|
312 |
+
overflow: hidden;
|
313 |
+
}
|
314 |
+
|
315 |
+
.nb-scroll-down #nimble-header:not(.sek-header-mobile-menu-expanded), .nb-scroll-up #nimble-header:not(.sek-header-mobile-menu-expanded) {
|
316 |
+
background-color: rgba(255, 255, 255, 0.9);
|
317 |
+
}
|
318 |
+
|
319 |
+
.mfp-wrap button.mfp-arrow, .mfp-wrap button.mfp-close {
|
320 |
+
background: none !important;
|
321 |
+
background: transparent !important;
|
322 |
+
}
|
323 |
+
|
324 |
+
.mfp-wrap img.mfp-img {
|
325 |
+
padding: 40px 0 0;
|
326 |
+
}
|
327 |
+
|
328 |
+
.mfp-wrap::after {
|
329 |
+
bottom: 20px;
|
330 |
+
}
|
331 |
+
|
332 |
+
.mfp-wrap .mfp-bottom-bar {
|
333 |
+
margin-top: 0;
|
334 |
+
}
|
335 |
+
|
336 |
+
.sek-service-font, .sek-module .sek-module-inner .sek-btn {
|
337 |
+
font-family: sans-serif;
|
338 |
+
}
|
339 |
+
|
340 |
+
.sek-container {
|
341 |
+
width: 100%;
|
342 |
+
padding-right: 10px;
|
343 |
+
padding-left: 10px;
|
344 |
+
margin-right: auto;
|
345 |
+
margin-left: auto;
|
346 |
+
}
|
347 |
+
|
348 |
+
@media (min-width: 576px) {
|
349 |
+
.sek-container {
|
350 |
+
max-width: 540px;
|
351 |
+
}
|
352 |
+
}
|
353 |
+
|
354 |
+
@media (min-width: 768px) {
|
355 |
+
.sek-container {
|
356 |
+
max-width: 720px;
|
357 |
+
}
|
358 |
+
}
|
359 |
+
|
360 |
+
@media (min-width: 992px) {
|
361 |
+
.sek-container {
|
362 |
+
max-width: 960px;
|
363 |
+
}
|
364 |
+
}
|
365 |
+
|
366 |
+
@media (min-width: 1200px) {
|
367 |
+
.sek-container {
|
368 |
+
max-width: 1140px;
|
369 |
+
}
|
370 |
+
}
|
371 |
+
|
372 |
+
.sek-container-fluid {
|
373 |
+
width: 100%;
|
374 |
+
padding-right: 10px;
|
375 |
+
padding-left: 10px;
|
376 |
+
margin-right: auto;
|
377 |
+
margin-left: auto;
|
378 |
+
}
|
379 |
+
|
380 |
+
.sek-row {
|
381 |
+
display: flex;
|
382 |
+
flex-wrap: wrap;
|
383 |
+
margin-right: -10px;
|
384 |
+
margin-left: -10px;
|
385 |
+
}
|
386 |
+
|
387 |
+
.sek-container-no-padding {
|
388 |
+
padding-right: 0;
|
389 |
+
padding-left: 0;
|
390 |
+
overflow-x: hidden;
|
391 |
+
}
|
392 |
+
|
393 |
+
.sek-no-gutters {
|
394 |
+
margin-right: 0;
|
395 |
+
margin-left: 0;
|
396 |
+
}
|
397 |
+
|
398 |
+
.sek-no-gutters > .sek-col,
|
399 |
+
.sek-no-gutters > [class*="sek-col-"] {
|
400 |
+
padding-right: 0;
|
401 |
+
padding-left: 0;
|
402 |
+
}
|
403 |
+
|
404 |
+
.sek-col-8, .sek-col-9, .sek-col-10, .sek-col-11, .sek-col-12, .sek-col-14, .sek-col-16, .sek-col-20, .sek-col-25, .sek-col-30, .sek-col-33, .sek-col-40, .sek-col-50, .sek-col-60, .sek-col-66, .sek-col-70, .sek-col-75, .sek-col-80, .sek-col-83, .sek-col-90, .sek-col-100, .sek-col-base,
|
405 |
+
.sek-col,
|
406 |
+
.sek-col-auto {
|
407 |
+
position: relative;
|
408 |
+
width: 100%;
|
409 |
+
min-height: 1px;
|
410 |
+
padding-right: 10px;
|
411 |
+
padding-left: 10px;
|
412 |
+
}
|
413 |
+
|
414 |
+
.sek-col-base {
|
415 |
+
flex: 0 0 100%;
|
416 |
+
max-width: 100%;
|
417 |
+
}
|
418 |
+
|
419 |
+
.sek-col {
|
420 |
+
flex-basis: 0;
|
421 |
+
flex-grow: 1;
|
422 |
+
max-width: 100%;
|
423 |
+
}
|
424 |
+
|
425 |
+
.sek-col-auto {
|
426 |
+
flex: 0 0 auto;
|
427 |
+
width: auto;
|
428 |
+
max-width: 100%;
|
429 |
+
}
|
430 |
+
|
431 |
+
@media (min-width: 768px) {
|
432 |
+
.sek-col-8 {
|
433 |
+
flex: 0 0 8.333%;
|
434 |
+
max-width: 8.333%;
|
435 |
+
}
|
436 |
+
.sek-col-9 {
|
437 |
+
flex: 0 0 9.090909%;
|
438 |
+
max-width: 9.090909%;
|
439 |
+
}
|
440 |
+
.sek-col-10 {
|
441 |
+
flex: 0 0 10%;
|
442 |
+
max-width: 10%;
|
443 |
+
}
|
444 |
+
.sek-col-11 {
|
445 |
+
flex: 0 0 11.111%;
|
446 |
+
max-width: 11.111%;
|
447 |
+
}
|
448 |
+
.sek-col-12 {
|
449 |
+
flex: 0 0 12.5%;
|
450 |
+
max-width: 12.5%;
|
451 |
+
}
|
452 |
+
.sek-col-14 {
|
453 |
+
flex: 0 0 14.285%;
|
454 |
+
max-width: 14.285%;
|
455 |
+
}
|
456 |
+
.sek-col-16 {
|
457 |
+
flex: 0 0 16.666%;
|
458 |
+
max-width: 16.666%;
|
459 |
+
}
|
460 |
+
.sek-col-20 {
|
461 |
+
flex: 0 0 20%;
|
462 |
+
max-width: 20%;
|
463 |
+
}
|
464 |
+
.sek-col-25 {
|
465 |
+
flex: 0 0 25%;
|
466 |
+
max-width: 25%;
|
467 |
+
}
|
468 |
+
.sek-col-30 {
|
469 |
+
flex: 0 0 30%;
|
470 |
+
max-width: 30%;
|
471 |
+
}
|
472 |
+
.sek-col-33 {
|
473 |
+
flex: 0 0 33.333%;
|
474 |
+
max-width: 33.333%;
|
475 |
+
}
|
476 |
+
.sek-col-40 {
|
477 |
+
flex: 0 0 40%;
|
478 |
+
max-width: 40%;
|
479 |
+
}
|
480 |
+
.sek-col-50 {
|
481 |
+
flex: 0 0 50%;
|
482 |
+
max-width: 50%;
|
483 |
+
}
|
484 |
+
.sek-col-60 {
|
485 |
+
flex: 0 0 60%;
|
486 |
+
max-width: 60%;
|
487 |
+
}
|
488 |
+
.sek-col-66 {
|
489 |
+
flex: 0 0 66.666%;
|
490 |
+
max-width: 66.666%;
|
491 |
+
}
|
492 |
+
.sek-col-70 {
|
493 |
+
flex: 0 0 70%;
|
494 |
+
max-width: 70%;
|
495 |
+
}
|
496 |
+
.sek-col-75 {
|
497 |
+
flex: 0 0 75%;
|
498 |
+
max-width: 75%;
|
499 |
+
}
|
500 |
+
.sek-col-80 {
|
501 |
+
flex: 0 0 80%;
|
502 |
+
max-width: 80%;
|
503 |
+
}
|
504 |
+
.sek-col-83 {
|
505 |
+
flex: 0 0 83.333%;
|
506 |
+
max-width: 83.333%;
|
507 |
+
}
|
508 |
+
.sek-col-90 {
|
509 |
+
flex: 0 0 90%;
|
510 |
+
max-width: 90%;
|
511 |
+
}
|
512 |
+
.sek-col-100 {
|
513 |
+
flex: 0 0 100%;
|
514 |
+
max-width: 100%;
|
515 |
+
}
|
516 |
+
.sek-order-first {
|
517 |
+
order: -1;
|
518 |
+
}
|
519 |
+
.sek-order-last {
|
520 |
+
order: 13;
|
521 |
+
}
|
522 |
+
.sek-order-0 {
|
523 |
+
order: 0;
|
524 |
+
}
|
525 |
+
.sek-order-1 {
|
526 |
+
order: 1;
|
527 |
+
}
|
528 |
+
.sek-order-2 {
|
529 |
+
order: 2;
|
530 |
+
}
|
531 |
+
.sek-order-3 {
|
532 |
+
order: 3;
|
533 |
+
}
|
534 |
+
.sek-order-4 {
|
535 |
+
order: 4;
|
536 |
+
}
|
537 |
+
.sek-order-5 {
|
538 |
+
order: 5;
|
539 |
+
}
|
540 |
+
.sek-order-6 {
|
541 |
+
order: 6;
|
542 |
+
}
|
543 |
+
.sek-order-7 {
|
544 |
+
order: 7;
|
545 |
+
}
|
546 |
+
.sek-order-8 {
|
547 |
+
order: 8;
|
548 |
+
}
|
549 |
+
.sek-order-9 {
|
550 |
+
order: 9;
|
551 |
+
}
|
552 |
+
.sek-order-10 {
|
553 |
+
order: 10;
|
554 |
+
}
|
555 |
+
.sek-order-11 {
|
556 |
+
order: 11;
|
557 |
+
}
|
558 |
+
.sek-order-12 {
|
559 |
+
order: 12;
|
560 |
+
}
|
561 |
+
}
|
562 |
+
|
563 |
/*
|
564 |
.sek-collapsing {
|
565 |
position: relative;
|
566 |
height: 0;
|
567 |
overflow: hidden;
|
568 |
//@include transition($transition-collapse);
|
569 |
+
}*/
|
570 |
+
.sek-clearfix::after {
|
571 |
+
display: block;
|
572 |
+
clear: both;
|
573 |
+
content: "";
|
574 |
+
}
|
575 |
+
|
576 |
+
.sek-sr-only {
|
577 |
+
position: absolute;
|
578 |
+
width: 1px;
|
579 |
+
height: 1px;
|
580 |
+
padding: 0;
|
581 |
+
overflow: hidden;
|
582 |
+
clip: rect(0, 0, 0, 0);
|
583 |
+
white-space: nowrap;
|
584 |
+
border: 0;
|
585 |
+
}
|
586 |
+
|
587 |
+
.sek-sr-only-focusable:active, .sek-sr-only-focusable:focus {
|
588 |
+
position: static;
|
589 |
+
width: auto;
|
590 |
+
height: auto;
|
591 |
+
overflow: visible;
|
592 |
+
clip: auto;
|
593 |
+
white-space: normal;
|
594 |
+
}
|
595 |
+
|
596 |
+
.sek-embed {
|
597 |
+
position: relative;
|
598 |
+
}
|
599 |
+
|
600 |
+
.sek-embed::before {
|
601 |
+
display: block;
|
602 |
+
content: '';
|
603 |
+
}
|
604 |
+
|
605 |
+
.sek-embed .sek-embed-inner,
|
606 |
+
.sek-embed iframe {
|
607 |
+
position: absolute;
|
608 |
+
width: 100%;
|
609 |
+
height: 100%;
|
610 |
+
top: 0;
|
611 |
+
left: 0;
|
612 |
+
}
|
613 |
+
|
614 |
+
.sektion-wrapper {
|
615 |
+
word-wrap: break-word;
|
616 |
+
}
|
617 |
+
|
618 |
+
.sek-text-right {
|
619 |
+
text-align: right !important;
|
620 |
+
}
|
621 |
+
|
622 |
+
.sek-text-left {
|
623 |
+
text-align: left !important;
|
624 |
+
}
|
625 |
+
|
626 |
+
.sek-module .sek-module-inner ul {
|
627 |
+
list-style: disc;
|
628 |
+
}
|
629 |
+
|
630 |
+
.sek-module .sek-module-inner ol {
|
631 |
+
list-style: decimal;
|
632 |
+
}
|
633 |
+
|
634 |
+
.sek-module .sek-module-inner ol > li::before {
|
635 |
+
content: none;
|
636 |
+
}
|
637 |
+
|
638 |
+
.sek-module .sek-module-inner ul, .sek-module .sek-module-inner ol {
|
639 |
+
padding: 0;
|
640 |
+
line-height: 1.5;
|
641 |
+
margin: 0 0 1.5rem 3rem;
|
642 |
+
}
|
643 |
+
|
644 |
+
.sek-module .sek-module-inner ul > li, .sek-module .sek-module-inner ol > li {
|
645 |
+
padding: .15rem .25rem;
|
646 |
+
}
|
647 |
+
|
648 |
+
.sek-module .sek-module-inner li > ul, .sek-module .sek-module-inner li > ol {
|
649 |
+
margin-bottom: 0;
|
650 |
+
}
|
651 |
+
|
652 |
+
.sek-module-inner pre code, .sek-module-inner tt {
|
653 |
+
box-sizing: border-box;
|
654 |
+
font-size: inherit;
|
655 |
+
white-space: pre-wrap !important;
|
656 |
+
background: transparent;
|
657 |
+
border: none;
|
658 |
+
padding: 0;
|
659 |
+
font-family: monospace;
|
660 |
+
}
|
661 |
+
|
662 |
+
.sek-module-inner pre {
|
663 |
+
background: #f7f8f9;
|
664 |
+
padding: 2.5em;
|
665 |
+
word-wrap: normal;
|
666 |
+
white-space: pre-wrap !important;
|
667 |
+
color: #313131;
|
668 |
+
font-family: monospace !important;
|
669 |
+
}
|
670 |
+
|
671 |
+
.sek-module-inner figure {
|
672 |
+
text-align: center;
|
673 |
+
}
|
674 |
+
|
675 |
+
.sek-module-inner figcaption {
|
676 |
+
text-align: center;
|
677 |
+
}
|
678 |
+
|
679 |
+
.sek-module-inner cite {
|
680 |
+
color: #313131;
|
681 |
+
font-weight: 300;
|
682 |
+
font-style: normal;
|
683 |
+
position: relative;
|
684 |
+
display: inline-block;
|
685 |
+
}
|
686 |
+
|
687 |
+
.sek-module-inner caption, .sek-module-inner code, .sek-module-inner code, .sek-module-inner kbd, .sek-module-inner samp, .sek-module-inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd), .sek-module-inner :root .has-subtle-background-background-color {
|
688 |
+
background-color: #dbdbdb;
|
689 |
+
}
|
690 |
+
|
691 |
+
.sek-module-inner sub {
|
692 |
+
bottom: -0.25em;
|
693 |
+
}
|
694 |
+
|
695 |
+
.sek-module-inner sub, .sek-module-inner sup {
|
696 |
+
font-size: 75%;
|
697 |
+
line-height: 0;
|
698 |
+
position: relative;
|
699 |
+
vertical-align: baseline;
|
700 |
+
}
|
701 |
+
|
702 |
+
.sek-module-inner blockquote {
|
703 |
+
border-left: 5px solid rgba(0, 0, 0, 0.1);
|
704 |
+
background: none;
|
705 |
+
font-size: 1.2em;
|
706 |
+
font-style: inherit;
|
707 |
+
margin-right: 0;
|
708 |
+
margin-left: 0;
|
709 |
+
padding: 15px;
|
710 |
+
}
|
711 |
+
|
712 |
+
.sek-module-inner table {
|
713 |
+
width: 100%;
|
714 |
+
border-collapse: collapse;
|
715 |
/*&:not([id^=wp-calendar]) {
|
716 |
border: 2px solid $grey-lightest;
|
717 |
th { @extend .caps; @extend .letter-spacing-2; font-family: $serviceFont; }
|
718 |
th, td { @extend .demi-small; padding: $base-line-height; border: 1px solid $grey-lightest; }
|
719 |
td { color: $grey-dark; }
|
720 |
+
}*/
|
721 |
+
}
|
722 |
+
|
723 |
+
@media (max-width: 767.98px) {
|
724 |
+
.sek-module-inner table {
|
725 |
+
table-layout: fixed;
|
726 |
+
}
|
727 |
+
}
|
728 |
+
|
729 |
+
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) {
|
730 |
+
border: 2px solid #eceeef;
|
731 |
+
}
|
732 |
+
|
733 |
+
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th {
|
734 |
+
text-transform: uppercase;
|
735 |
+
letter-spacing: 2px;
|
736 |
+
font-family: sans-serif;
|
737 |
+
}
|
738 |
+
|
739 |
+
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th, .sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {
|
740 |
+
font-size: 0.95em;
|
741 |
+
padding: 1.25em;
|
742 |
+
border: 1px solid #eceeef;
|
743 |
+
}
|
744 |
+
|
745 |
+
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {
|
746 |
+
color: #777;
|
747 |
+
}
|
748 |
+
|
749 |
+
.sek-search-form {
|
750 |
+
float: none;
|
751 |
+
}
|
752 |
+
|
753 |
+
.sek-search-form .sek-search-form-group {
|
754 |
+
display: -webkit-box;
|
755 |
+
display: -ms-flexbox;
|
756 |
+
display: flex;
|
757 |
+
}
|
758 |
+
|
759 |
+
.sek-search-form .sek-search-form-group label {
|
760 |
+
position: relative;
|
761 |
+
margin-right: 5px;
|
762 |
+
}
|
763 |
+
|
764 |
+
.sek-search-form .sek-search-form-group label input[type=search] {
|
765 |
+
max-width: 100%;
|
766 |
+
margin: 0;
|
767 |
+
-moz-box-sizing: border-box;
|
768 |
+
-webkit-box-sizing: border-box;
|
769 |
+
box-sizing: border-box;
|
770 |
+
-webkit-border-radius: 0;
|
771 |
+
border-radius: 0;
|
772 |
+
background: #fff;
|
773 |
+
border: 2px solid #ddd;
|
774 |
+
color: #777;
|
775 |
+
display: block;
|
776 |
+
max-width: 100%;
|
777 |
+
padding: 7px 8px;
|
778 |
+
padding-left: 5px;
|
779 |
+
line-height: 1.5em;
|
780 |
+
width: 100%;
|
781 |
+
}
|
782 |
+
|
783 |
+
.sek-search-form .sek-search-form-group [type=submit] {
|
784 |
+
line-height: 15px;
|
785 |
+
margin: 0;
|
786 |
+
background: #808080 !important;
|
787 |
+
color: #fff;
|
788 |
+
font-size: 16px;
|
789 |
+
padding: 10px 10px;
|
790 |
+
font-weight: normal;
|
791 |
+
display: inline-block;
|
792 |
+
border: none;
|
793 |
+
cursor: pointer;
|
794 |
+
border-radius: 3px;
|
795 |
+
}
|
796 |
+
|
797 |
+
.sek-module .sek-module-inner .sek-btn {
|
798 |
+
display: inline-block;
|
799 |
+
font-weight: normal;
|
800 |
+
line-height: 1.25em;
|
801 |
+
text-align: center;
|
802 |
+
/*white-space: nowrap;*/
|
803 |
+
white-space: normal;
|
804 |
+
word-break: break-all;
|
805 |
+
vertical-align: middle;
|
806 |
+
user-select: none;
|
807 |
+
border: 1px solid transparent;
|
808 |
+
padding: 0.5em 1em;
|
809 |
+
border-radius: 2px;
|
810 |
+
border-width: 2px;
|
811 |
+
border-style: solid;
|
812 |
+
font-size: 1em;
|
813 |
+
cursor: pointer;
|
814 |
+
text-decoration: none;
|
815 |
+
text-transform: none;
|
816 |
+
-webkit-transition: all 0.2s ease-in-out;
|
817 |
+
-o-transition: all 0.2s ease-in-out;
|
818 |
+
transition: all 0.2s ease-in-out;
|
819 |
+
}
|
820 |
+
|
821 |
+
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .sek-btn:hover {
|
822 |
+
text-decoration: none;
|
823 |
+
}
|
824 |
+
|
825 |
+
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .focus.sek-btn {
|
826 |
+
outline: 0;
|
827 |
+
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
828 |
+
}
|
829 |
+
|
830 |
+
.sek-module .sek-module-inner .disabled.sek-btn, .sek-module .sek-module-inner .sek-btn:disabled {
|
831 |
+
cursor: not-allowed;
|
832 |
+
opacity: .65;
|
833 |
+
box-shadow: none;
|
834 |
+
}
|
835 |
+
|
836 |
+
.sek-module .sek-module-inner .sek-btn:active, .sek-module .sek-module-inner .active.sek-btn {
|
837 |
+
background-image: none;
|
838 |
+
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
839 |
+
}
|
840 |
+
|
841 |
+
a.sek-btn.disabled,
|
842 |
+
fieldset[disabled] a.sek-btn {
|
843 |
+
pointer-events: none;
|
844 |
+
}
|
845 |
+
|
846 |
+
.sektion-wrapper button,
|
847 |
+
.sektion-wrapper [type="button"],
|
848 |
+
.sektion-wrapper [type="reset"],
|
849 |
+
.sektion-wrapper [type="submit"] {
|
850 |
+
-webkit-appearance: button;
|
851 |
+
}
|
852 |
+
|
853 |
+
.sektion-wrapper button::-moz-focus-inner,
|
854 |
+
.sektion-wrapper [type="button"]::-moz-focus-inner,
|
855 |
+
.sektion-wrapper [type="reset"]::-moz-focus-inner,
|
856 |
+
.sektion-wrapper [type="submit"]::-moz-focus-inner {
|
857 |
+
padding: 0;
|
858 |
+
border-style: none;
|
859 |
+
}
|
860 |
+
|
861 |
+
button.sek-btn,
|
862 |
+
[type="button"].sek-btn,
|
863 |
+
[type="reset"].sek-btn,
|
864 |
+
[type="submit"].sek-btn {
|
865 |
+
-wekbit-appearance: none !important;
|
866 |
+
background: transparent;
|
867 |
+
}
|
868 |
+
|
869 |
+
[data-sek-level="module"] .sek-module-inner {
|
870 |
+
/* WP Search Widget */
|
871 |
+
}
|
872 |
+
|
873 |
+
[data-sek-level="module"] .sek-module-inner .wp-caption figcaption {
|
874 |
+
color: #6d6d6d;
|
875 |
+
font-style: italic;
|
876 |
+
max-width: 100%;
|
877 |
+
font-size: 14px;
|
878 |
+
font-weight: 500;
|
879 |
+
line-height: 1.4;
|
880 |
+
/* Keep wide captions from overflowing their container. */
|
881 |
+
padding: 4px;
|
882 |
+
margin-top: 1rem;
|
883 |
+
}
|
884 |
+
|
885 |
+
[data-sek-level="module"] .sek-module-inner figure {
|
886 |
+
display: block;
|
887 |
+
}
|
888 |
+
|
889 |
+
[data-sek-level="module"] .sek-module-inner .wp-block-image .aligncenter, [data-sek-level="module"] .sek-module-inner .wp-block-image .alignleft, [data-sek-level="module"] .sek-module-inner .wp-block-image .alignright {
|
890 |
+
display: table;
|
891 |
+
}
|
892 |
+
|
893 |
+
[data-sek-level="module"] .sek-module-inner .wp-block-image figcaption {
|
894 |
+
font-size: 13px;
|
895 |
+
text-align: center;
|
896 |
+
}
|
897 |
+
|
898 |
+
[data-sek-level="module"] .sek-module-inner .wp-block-gallery, [data-sek-level="module"] .sek-module-inner ul.blocks-gallery-grid {
|
899 |
+
margin-left: 0;
|
900 |
+
}
|
901 |
+
|
902 |
+
[data-sek-level="module"] .sek-module-inner [class*="wp-block-"]:not(:last-child) {
|
903 |
+
margin-bottom: 1.5em;
|
904 |
+
}
|
905 |
+
|
906 |
+
.sek-col-100 .sek-module-inner .alignfull {
|
907 |
+
margin-left: calc(-100vw / 2 + 100% / 2);
|
908 |
+
margin-right: calc(-100vw / 2 + 100% / 2);
|
909 |
+
max-width: 100vw;
|
910 |
+
width: auto;
|
911 |
+
}
|
912 |
+
|
913 |
+
.sek-col-100 .sek-module-inner .alignwide {
|
914 |
+
margin-left: calc((100% - 80vw) / 2);
|
915 |
+
width: 80vw;
|
916 |
+
max-width: 80vw;
|
917 |
+
}
|
918 |
+
|
919 |
+
[data-sek-level="module"] .sek-module-inner .aligncenter, [data-sek-level="module"] .sek-module-inner .aligncenter img {
|
920 |
+
display: block;
|
921 |
+
margin-left: auto;
|
922 |
+
margin-right: auto;
|
923 |
+
}
|
924 |
+
|
925 |
+
[data-sek-level="module"] .sek-module-inner .alignleft {
|
926 |
+
float: left;
|
927 |
+
}
|
928 |
+
|
929 |
+
[data-sek-level="module"] .sek-module-inner .alignright {
|
930 |
+
float: right;
|
931 |
+
}
|
932 |
+
|
933 |
+
[data-sek-level="module"] .sek-module-inner .alignnone, [data-sek-level="module"] .sek-module-inner .aligncenter, [data-sek-level="module"] .sek-module-inner .alignleft, [data-sek-level="module"] .sek-module-inner .alignright {
|
934 |
+
margin-top: 1.5rem;
|
935 |
+
margin-right: auto;
|
936 |
+
margin-bottom: 1.5rem;
|
937 |
+
margin-left: auto;
|
938 |
+
}
|
939 |
+
|
940 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form {
|
941 |
+
display: -webkit-box;
|
942 |
+
display: -ms-flexbox;
|
943 |
+
display: flex;
|
944 |
+
max-width: 100%;
|
945 |
+
float: right;
|
946 |
+
}
|
947 |
+
|
948 |
+
@media (max-width: 767.98px) {
|
949 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form {
|
950 |
+
float: none;
|
951 |
+
}
|
952 |
+
}
|
953 |
+
|
954 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form label {
|
955 |
+
position: relative;
|
956 |
+
-webkit-box-flex: 1;
|
957 |
+
-ms-flex: 1;
|
958 |
+
flex: 1;
|
959 |
+
margin-right: 5px;
|
960 |
+
}
|
961 |
+
|
962 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form label input {
|
963 |
+
padding-left: 5px;
|
964 |
+
line-height: 20px;
|
965 |
+
width: 100%;
|
966 |
+
max-width: 185px;
|
967 |
+
min-width: 80px;
|
968 |
+
}
|
969 |
+
|
970 |
+
@media (max-width: 767.98px) {
|
971 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form label input {
|
972 |
+
max-width: none;
|
973 |
+
}
|
974 |
+
}
|
975 |
+
|
976 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form input[type=submit] {
|
977 |
+
line-height: 15px;
|
978 |
+
/*width: 25%;*/
|
979 |
+
}
|
980 |
+
|
981 |
+
[data-sek-level="module"] .sek-module-inner input[type="submit"] {
|
982 |
+
background: #808080;
|
983 |
+
color: #fff;
|
984 |
+
padding: 10px 10px;
|
985 |
+
font-weight: normal;
|
986 |
+
display: inline-block;
|
987 |
+
border: none;
|
988 |
+
cursor: pointer;
|
989 |
+
-webkit-border-radius: 3px;
|
990 |
+
border-radius: 3px;
|
991 |
+
}
|
992 |
+
|
993 |
+
[data-sek-level="module"] .sek-module-inner .search-form input[type="search"] {
|
994 |
+
margin: 0;
|
995 |
+
-moz-box-sizing: border-box;
|
996 |
+
-webkit-box-sizing: border-box;
|
997 |
+
box-sizing: border-box;
|
998 |
+
-webkit-border-radius: 0;
|
999 |
+
border-radius: 0;
|
1000 |
+
background: #fff;
|
1001 |
+
border: 2px solid #ddd;
|
1002 |
+
color: #777;
|
1003 |
+
display: block;
|
1004 |
+
max-width: 100%;
|
1005 |
+
padding: 7px 8px;
|
1006 |
+
}
|
1007 |
+
|
1008 |
+
.sektion-wrapper.sek-password-protected {
|
1009 |
+
display: flex;
|
1010 |
+
align-items: center;
|
1011 |
+
justify-content: center;
|
1012 |
+
-ms-flex-direction: column;
|
1013 |
+
flex-direction: column;
|
1014 |
+
}
|
1015 |
+
|
1016 |
+
.sektion-wrapper.sek-password-protected form.post-password-form {
|
1017 |
+
max-width: 450px;
|
1018 |
+
height: auto;
|
1019 |
+
padding: 4em 1em;
|
1020 |
+
font-size: 1em;
|
1021 |
+
}
|
1022 |
+
|
1023 |
+
.sektion-wrapper .sek-module-inner .avatar {
|
1024 |
+
border-radius: 50%;
|
1025 |
+
}
|
1026 |
+
|
1027 |
+
.sek-next-post-link::after, .sek-previous-post-link::before {
|
1028 |
+
width: 15px;
|
1029 |
+
height: 10px;
|
1030 |
+
display: inline-block;
|
1031 |
+
position: relative;
|
1032 |
+
vertical-align: middle;
|
1033 |
+
border-top: 6px solid transparent;
|
1034 |
+
border-bottom: 6px solid transparent;
|
1035 |
+
border-left-color: inherit;
|
1036 |
+
border-right-color: inherit;
|
1037 |
+
}
|
1038 |
+
|
1039 |
+
.sek-previous-post-link::before {
|
1040 |
+
content: '';
|
1041 |
+
border-right: 6px solid;
|
1042 |
+
right: 7px;
|
1043 |
+
}
|
1044 |
+
|
1045 |
+
.sek-next-post-link::after {
|
1046 |
+
content: '';
|
1047 |
+
border-left: 6px solid;
|
1048 |
+
left: 7px;
|
1049 |
+
}
|
1050 |
+
|
1051 |
/*************************************
|
1052 |
* DIVIDER MODULE
|
1053 |
+
*************************************/
|
1054 |
+
[data-sek-module-type="czr_divider_module"] {
|
1055 |
+
text-align: center;
|
1056 |
+
}
|
1057 |
+
|
1058 |
+
[data-sek-module-type="czr_divider_module"] .sek-module-inner {
|
1059 |
+
font-size: 0;
|
1060 |
+
line-height: 0;
|
1061 |
+
}
|
1062 |
+
|
1063 |
+
.sek-module-inner .sek-divider {
|
1064 |
+
border-top: 1px solid #5a5a5a;
|
1065 |
+
display: inline-block;
|
1066 |
+
width: 100%;
|
1067 |
+
margin-top: 15px;
|
1068 |
+
margin-bottom: 15px;
|
1069 |
+
font-size: 1rem;
|
1070 |
+
}
|
1071 |
+
|
1072 |
/*************************************
|
1073 |
* SPACER MODULE
|
1074 |
+
*************************************/
|
1075 |
+
.sek-module-inner .sek-spacer {
|
1076 |
+
height: 20px;
|
1077 |
+
}
|
1078 |
+
|
1079 |
/*************************************
|
1080 |
* TINY MCE EDITOR MODULE
|
1081 |
+
*************************************/
|
1082 |
+
[data-sek-module-type="czr_tiny_mce_editor_module"] a {
|
1083 |
+
text-decoration: underline;
|
1084 |
+
}
|
1085 |
+
|
1086 |
/*************************************
|
1087 |
* SHORTCODE MODULE
|
1088 |
+
*************************************/
|
1089 |
+
[data-sek-module-type="czr_shortcode_module"] [data-sek-use-flexbox="true"] {
|
1090 |
+
display: -webkit-box;
|
1091 |
+
display: -ms-flexbox;
|
1092 |
+
display: flex;
|
1093 |
+
-webkit-box-pack: center;
|
1094 |
+
-ms-flex-pack: center;
|
1095 |
+
justify-content: center;
|
1096 |
+
}
|
1097 |
+
|
1098 |
+
.sek-module-inner {
|
1099 |
+
line-height: 1.5em;
|
1100 |
+
}
|
1101 |
+
|
1102 |
+
.sek-module-inner h1, .sek-module-inner h2, .sek-module-inner h3, .sek-module-inner h4, .sek-module-inner h5, .sek-module-inner h6, .sek-module-inner p {
|
1103 |
+
line-height: 1.5em;
|
1104 |
+
font-weight: 400;
|
1105 |
+
margin: 0.6em 0;
|
1106 |
+
}
|
1107 |
+
|
1108 |
+
.sek-module-inner h1 {
|
1109 |
+
font-size: 2.48em;
|
1110 |
+
}
|
1111 |
+
|
1112 |
+
.sek-module-inner h2 {
|
1113 |
+
font-size: 2.07em;
|
1114 |
+
}
|
1115 |
+
|
1116 |
+
.sek-module-inner h3 {
|
1117 |
+
font-size: 1.73em;
|
1118 |
+
}
|
1119 |
+
|
1120 |
+
.sek-module-inner h4 {
|
1121 |
+
font-size: 1.44em;
|
1122 |
+
}
|
1123 |
+
|
1124 |
+
.sek-module-inner h5 {
|
1125 |
+
font-size: 1.2em;
|
1126 |
+
}
|
1127 |
+
|
1128 |
+
.sek-module-inner h6 {
|
1129 |
+
font-size: 1em;
|
1130 |
+
}
|
1131 |
+
|
1132 |
+
.sek-module-inner p {
|
1133 |
+
margin: 0 0 1em;
|
1134 |
+
padding: 0;
|
1135 |
+
}
|
1136 |
+
|
1137 |
+
.sek-module-inner a {
|
1138 |
+
text-decoration: none;
|
1139 |
+
-webkit-box-shadow: none;
|
1140 |
+
box-shadow: none;
|
1141 |
+
-webkit-transition: color 0.2s ease-in-out;
|
1142 |
+
-o-transition: color 0.2s ease-in-out;
|
1143 |
+
transition: color 0.2s ease-in-out;
|
1144 |
+
}
|
1145 |
+
|
1146 |
+
.sek-module-inner img {
|
1147 |
+
height: auto;
|
1148 |
+
max-width: 100%;
|
1149 |
+
border: none;
|
1150 |
+
-webkit-border-radius: 0;
|
1151 |
+
border-radius: 0;
|
1152 |
+
-webkit-box-shadow: none;
|
1153 |
+
box-shadow: none;
|
1154 |
+
}
|
1155 |
+
|
1156 |
+
[data-sek-module-type="czr_tiny_mce_editor_module"] .sek-module-inner a:not(.wp-block-button__link),
|
1157 |
+
[data-sek-module-type="czr_shortcode_module"] .sek-module-inner a:not(.wp-block-button__link),
|
1158 |
+
[data-sek-module-type="czr_accordion_module"] .sek-module-inner a:not(.wp-block-button__link),
|
1159 |
+
[data-sek-module-type="czr_simple_html_module"] .sek-module-inner a:not(.wp-block-button__link) {
|
1160 |
+
text-decoration: underline;
|
1161 |
+
}
|
1162 |
+
|
1163 |
+
body .sektion-wrapper .sek-row [data-sek-level="module"] .sek-module-inner a:not(.sek-btn):not(.button):focus {
|
1164 |
+
background: none;
|
1165 |
+
}
|
1166 |
+
|
1167 |
+
body .sek-module-inner h1:before, body .sek-module-inner h2:before, body .sek-module-inner h3:before, body .sek-module-inner h4:before, body .sek-module-inner h5:before, body .sek-module-inner h6:before {
|
1168 |
+
content: none;
|
1169 |
+
background: none;
|
1170 |
+
}
|
1171 |
+
|
1172 |
/*# sourceMappingURL=sek-base-light.css.map */
|
assets/front/css/sek-base-light.css.map
CHANGED
@@ -1,37 +1,37 @@
|
|
1 |
-
{
|
2 |
-
"version": 3,
|
3 |
-
"file": "sek-base-light.css",
|
4 |
-
"sources": [
|
5 |
-
"../scss/sek-base-light.scss",
|
6 |
-
"../scss/_1_1_functions.scss",
|
7 |
-
"../scss/_1_2_variables.scss",
|
8 |
-
"../scss/_1_3_mixins.scss",
|
9 |
-
"../scss/mixins/_breakpoints.scss",
|
10 |
-
"../scss/mixins/_screen-reader.scss",
|
11 |
-
"../scss/mixins/_utilities.scss",
|
12 |
-
"../scss/mixins/_transition.scss",
|
13 |
-
"../scss/mixins/_clearfix.scss",
|
14 |
-
"../scss/mixins/_grid.scss",
|
15 |
-
"../scss/mixins/_grid-framework.scss",
|
16 |
-
"../scss/_1_4_reboot.scss",
|
17 |
-
"../scss/_1_5_base.scss",
|
18 |
-
"../scss/_1_6_typography.scss",
|
19 |
-
"../scss/_1_7_grid.scss",
|
20 |
-
"../scss/_1_8_transitions.scss",
|
21 |
-
"../scss/_1_9_utilities.scss",
|
22 |
-
"../scss/utilities/_clearfix.scss",
|
23 |
-
"../scss/utilities/_screenreaders.scss",
|
24 |
-
"../scss/utilities/_embed.scss",
|
25 |
-
"../scss/_2_1_formatting.scss",
|
26 |
-
"../scss/_2_2_buttons.scss",
|
27 |
-
"../scss/_2_3_wpspecifics.scss",
|
28 |
-
"../scss/_3_2_modules_light.scss",
|
29 |
-
"../scss/modules/_divider.scss",
|
30 |
-
"../scss/modules/_spacer.scss",
|
31 |
-
"../scss/modules/_tiny_mce_editor.scss",
|
32 |
-
"../scss/modules/_shortcode.scss",
|
33 |
-
"../scss/_3_3_modules_commons.scss"
|
34 |
-
],
|
35 |
-
"names": [],
|
36 |
-
"mappings": "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"
|
37 |
}
|
1 |
+
{
|
2 |
+
"version": 3,
|
3 |
+
"file": "sek-base-light.css",
|
4 |
+
"sources": [
|
5 |
+
"../scss/sek-base-light.scss",
|
6 |
+
"../scss/_1_1_functions.scss",
|
7 |
+
"../scss/_1_2_variables.scss",
|
8 |
+
"../scss/_1_3_mixins.scss",
|
9 |
+
"../scss/mixins/_breakpoints.scss",
|
10 |
+
"../scss/mixins/_screen-reader.scss",
|
11 |
+
"../scss/mixins/_utilities.scss",
|
12 |
+
"../scss/mixins/_transition.scss",
|
13 |
+
"../scss/mixins/_clearfix.scss",
|
14 |
+
"../scss/mixins/_grid.scss",
|
15 |
+
"../scss/mixins/_grid-framework.scss",
|
16 |
+
"../scss/_1_4_reboot.scss",
|
17 |
+
"../scss/_1_5_base.scss",
|
18 |
+
"../scss/_1_6_typography.scss",
|
19 |
+
"../scss/_1_7_grid.scss",
|
20 |
+
"../scss/_1_8_transitions.scss",
|
21 |
+
"../scss/_1_9_utilities.scss",
|
22 |
+
"../scss/utilities/_clearfix.scss",
|
23 |
+
"../scss/utilities/_screenreaders.scss",
|
24 |
+
"../scss/utilities/_embed.scss",
|
25 |
+
"../scss/_2_1_formatting.scss",
|
26 |
+
"../scss/_2_2_buttons.scss",
|
27 |
+
"../scss/_2_3_wpspecifics.scss",
|
28 |
+
"../scss/_3_2_modules_light.scss",
|
29 |
+
"../scss/modules/_divider.scss",
|
30 |
+
"../scss/modules/_spacer.scss",
|
31 |
+
"../scss/modules/_tiny_mce_editor.scss",
|
32 |
+
"../scss/modules/_shortcode.scss",
|
33 |
+
"../scss/_3_3_modules_commons.scss"
|
34 |
+
],
|
35 |
+
"names": [],
|
36 |
+
"mappings": "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"
|
37 |
}
|
assets/front/css/sek-base-rtl.css
CHANGED
@@ -1,3399 +1,3399 @@
|
|
1 |
-
/* -------------------------------------------------------------------------- */
|
2 |
/* <SCOPED RESET>
|
3 |
-
/* -------------------------------------------------------------------------- */
|
4 |
-
.sektion-wrapper *,
|
5 |
-
.sektion-wrapper *::before,
|
6 |
-
.sektion-wrapper *::after {
|
7 |
-
box-sizing: border-box;
|
8 |
-
}
|
9 |
-
|
10 |
-
.sektion-wrapper span, .sektion-wrapper applet, .sektion-wrapper object, .sektion-wrapper iframe,
|
11 |
-
.sektion-wrapper h1, .sektion-wrapper h2, .sektion-wrapper h3, .sektion-wrapper h4, .sektion-wrapper h5, .sektion-wrapper h6, .sektion-wrapper p, .sektion-wrapper blockquote, .sektion-wrapper pre,
|
12 |
-
.sektion-wrapper a, .sektion-wrapper abbr, .sektion-wrapper acronym, .sektion-wrapper address, .sektion-wrapper big, .sektion-wrapper cite, .sektion-wrapper code,
|
13 |
-
.sektion-wrapper del, .sektion-wrapper dfn, .sektion-wrapper em, .sektion-wrapper img, .sektion-wrapper ins, .sektion-wrapper kbd, .sektion-wrapper q, .sektion-wrapper s, .sektion-wrapper samp,
|
14 |
-
.sektion-wrapper small, .sektion-wrapper strike, .sektion-wrapper strong, .sektion-wrapper sub, .sektion-wrapper sup, .sektion-wrapper tt, .sektion-wrapper var,
|
15 |
-
.sektion-wrapper b, .sektion-wrapper u, .sektion-wrapper i, .sektion-wrapper center,
|
16 |
-
.sektion-wrapper dl, .sektion-wrapper dt, .sektion-wrapper dd, .sektion-wrapper ol, .sektion-wrapper ul, .sektion-wrapper li,
|
17 |
-
.sektion-wrapper fieldset, .sektion-wrapper form, .sektion-wrapper label, .sektion-wrapper legend,
|
18 |
-
.sektion-wrapper table, .sektion-wrapper caption, .sektion-wrapper tbody, .sektion-wrapper tfoot, .sektion-wrapper thead, .sektion-wrapper tr, .sektion-wrapper th, .sektion-wrapper td,
|
19 |
-
.sektion-wrapper article, .sektion-wrapper aside, .sektion-wrapper canvas, .sektion-wrapper details, .sektion-wrapper embed,
|
20 |
-
.sektion-wrapper figure:not([class*="wp-block-"]), .sektion-wrapper figcaption, .sektion-wrapper footer, .sektion-wrapper header, .sektion-wrapper hgroup,
|
21 |
-
.sektion-wrapper menu, .sektion-wrapper nav, .sektion-wrapper output, .sektion-wrapper ruby, .sektion-wrapper section, .sektion-wrapper summary,
|
22 |
-
.sektion-wrapper time, .sektion-wrapper mark, .sektion-wrapper audio, .sektion-wrapper video {
|
23 |
-
border: none;
|
24 |
-
font-size: inherit;
|
25 |
-
line-height: inherit;
|
26 |
-
margin: 0;
|
27 |
-
padding: 0;
|
28 |
-
}
|
29 |
-
|
30 |
-
.sektion-wrapper blockquote::before,
|
31 |
-
.sektion-wrapper blockquote::after, .sektion-wrapper q:before, .sektion-wrapper q:after {
|
32 |
-
content: "";
|
33 |
-
}
|
34 |
-
|
35 |
-
.sektion-wrapper ol, .sektion-wrapper ul {
|
36 |
-
list-style: none;
|
37 |
-
}
|
38 |
-
|
39 |
-
.sektion-wrapper img {
|
40 |
-
max-width: 100%;
|
41 |
-
vertical-align: middle;
|
42 |
-
border-style: none;
|
43 |
-
display: inline;
|
44 |
-
}
|
45 |
-
|
46 |
-
.sektion-wrapper svg:not(:root) {
|
47 |
-
overflow: hidden;
|
48 |
-
}
|
49 |
-
|
50 |
-
.sektion-wrapper embed, .sektion-wrapper iframe, .sektion-wrapper object {
|
51 |
-
max-width: 100%;
|
52 |
-
}
|
53 |
-
|
54 |
-
/* -------------------------------------------------------------------------- */
|
55 |
/* </SCOPED RESET>
|
56 |
-
/* -------------------------------------------------------------------------- */
|
57 |
-
/* make sure that the location level occupies 100% of the width */
|
58 |
-
[data-sek-level="location"] {
|
59 |
-
clear: both;
|
60 |
-
font-size: 16px;
|
61 |
-
}
|
62 |
-
|
63 |
-
/* To make vertical alignment possible in sections */
|
64 |
-
.sek-section, .sek-column, .sek-module {
|
65 |
-
display: -ms-flexbox;
|
66 |
-
display: flex;
|
67 |
-
-ms-flex-align: center;
|
68 |
-
align-items: center;
|
69 |
-
}
|
70 |
-
|
71 |
-
.sek-column-inner, .sek-module-inner {
|
72 |
-
-ms-flex: 0 0 100%;
|
73 |
-
flex: 0 0 100%;
|
74 |
-
max-width: 100%;
|
75 |
-
}
|
76 |
-
|
77 |
/* To allow horizontal centering of modules
|
78 |
@see https://github.com/presscustomizr/nimble-builder/issues/119
|
79 |
-
*/
|
80 |
-
/* - sections in locations */
|
81 |
-
/* - columns in sections */
|
82 |
-
/* - modules in columns */
|
83 |
-
.sek-column-inner {
|
84 |
-
display: -ms-flexbox;
|
85 |
-
display: flex;
|
86 |
-
-ms-flex-direction: column;
|
87 |
-
flex-direction: column;
|
88 |
-
}
|
89 |
-
|
90 |
-
.sek-module {
|
91 |
-
-ms-flex-item-align: center;
|
92 |
-
-ms-grid-row-align: center;
|
93 |
-
align-self: center;
|
94 |
-
width: 100%;
|
95 |
-
max-width: 100%;
|
96 |
-
}
|
97 |
-
|
98 |
/* a nested sektion should reset its parent column padding
|
99 |
@see https://github.com/presscustomizr/nimble-builder/issues/25
|
100 |
-
*/
|
101 |
-
[data-sek-is-nested="true"] .sek-container-fluid {
|
102 |
-
padding-right: 0;
|
103 |
-
padding-left: 0;
|
104 |
-
}
|
105 |
-
|
106 |
-
/* MODULE PLACEHOLDER */
|
107 |
/*@font-face {
|
108 |
font-family: 'Material Icons';
|
109 |
font-style: normal;
|
110 |
font-weight: 400;
|
111 |
src: url('../fonts/material-icons/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2') format('woff2');
|
112 |
-
}*/
|
113 |
-
/* @see https://github.com/google/material-design-icons/blob/master/iconfont/material-icons.css */
|
114 |
-
.sek-module-placeholder {
|
115 |
-
text-align: center;
|
116 |
-
}
|
117 |
-
|
118 |
-
.sek-module-placeholder .material-icons {
|
119 |
-
font-size: inherit;
|
120 |
-
color: #cfcfcf;
|
121 |
-
}
|
122 |
-
|
123 |
-
/* LEVEL VISIBILITY BY DEVICE */
|
124 |
-
/* NIMBLE TEMPLATE GENERAL STYLING */
|
125 |
-
/* <inspired by Twenty Seventeed WP theme> */
|
126 |
-
.sek-screen-reader-text {
|
127 |
-
border: 0;
|
128 |
-
clip: rect(0, 0, 0, 0);
|
129 |
-
height: 1px;
|
130 |
-
overflow: hidden;
|
131 |
-
padding: 0;
|
132 |
-
position: absolute !important;
|
133 |
-
width: 1px;
|
134 |
-
word-wrap: normal !important;
|
135 |
-
}
|
136 |
-
|
137 |
-
#nimble-page {
|
138 |
-
position: relative;
|
139 |
-
word-wrap: break-word;
|
140 |
-
}
|
141 |
-
|
142 |
-
/* </inspired by Twenty Seventeen WP theme> */
|
143 |
-
/* Nimble btn in admin top bar */
|
144 |
-
#wpadminbar .sek-nimble-icon {
|
145 |
-
display: inline-block;
|
146 |
-
}
|
147 |
-
|
148 |
-
#wpadminbar .sek-nimble-icon img {
|
149 |
-
width: 28px;
|
150 |
-
position: absolute;
|
151 |
-
top: 2px;
|
152 |
-
-webkit-filter: grayscale(100%);
|
153 |
-
filter: grayscale(100%);
|
154 |
-
-webkit-filter: gray;
|
155 |
-
filter: gray;
|
156 |
-
transition: all 0.3s ease-in-out;
|
157 |
-
box-shadow: none;
|
158 |
-
}
|
159 |
-
|
160 |
-
#wpadminbar .sek-nimble-icon:hover img {
|
161 |
-
-webkit-filter: none;
|
162 |
-
filter: none;
|
163 |
-
-webkit-filter: none;
|
164 |
-
filter: none;
|
165 |
-
}
|
166 |
-
|
167 |
-
#wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title {
|
168 |
-
padding-left: 30px;
|
169 |
-
}
|
170 |
-
|
171 |
-
[data-sek-has-bg="true"] {
|
172 |
-
background-size: cover;
|
173 |
-
background-repeat: no-repeat;
|
174 |
-
background-position: 50% 50%;
|
175 |
-
}
|
176 |
-
|
177 |
-
[data-sek-level="location"] [data-sek-bg-parallax="true"] {
|
178 |
-
background-attachment: fixed;
|
179 |
-
background-size: cover;
|
180 |
-
}
|
181 |
-
|
182 |
-
[data-sek-level="location"] .sek-has-bg {
|
183 |
-
position: relative;
|
184 |
-
}
|
185 |
-
|
186 |
-
@supports (-webkit-overflow-scrolling: touch) {
|
187 |
-
body [data-sek-level="location"] [data-sek-bg-parallax="true"], body [data-sek-level="location"] [data-sek-bg-fixed="true"] {
|
188 |
-
background-attachment: scroll;
|
189 |
-
}
|
190 |
-
}
|
191 |
-
|
192 |
-
[data-sek-level="location"] [data-sek-level] {
|
193 |
-
transition: 0s linear;
|
194 |
-
transition-property: background-position;
|
195 |
-
}
|
196 |
-
|
197 |
-
.sek-module .sek-module-inner .alx-tab.thumbs-enabled > li {
|
198 |
-
padding-left: 94px;
|
199 |
-
}
|
200 |
-
|
201 |
-
.sek-module .sek-module-inner .widget_hu_tabs ul,
|
202 |
-
.sek-module .sek-module-inner .widget_hu_tabs ol {
|
203 |
-
margin-left: 0;
|
204 |
-
margin-bottom: 0;
|
205 |
-
}
|
206 |
-
|
207 |
-
.sek-module .sek-module-inner .widget_hu_tabs .alx-tabs-nav {
|
208 |
-
margin-bottom: 10px;
|
209 |
-
}
|
210 |
-
|
211 |
-
[data-sek-level].sek-level-has-shadow {
|
212 |
-
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
213 |
-
}
|
214 |
-
|
215 |
-
.customizer-preview [data-sek-level].sek-level-has-shadow {
|
216 |
-
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
|
217 |
-
}
|
218 |
-
|
219 |
-
[data-sek-level][data-sek-video-bg-src] {
|
220 |
-
position: relative;
|
221 |
-
}
|
222 |
-
|
223 |
-
[data-sek-level] embed,
|
224 |
-
[data-sek-level] iframe,
|
225 |
-
[data-sek-level] object,
|
226 |
-
[data-sek-level] video {
|
227 |
-
max-width: 100%;
|
228 |
-
width: 100%;
|
229 |
-
margin: 0;
|
230 |
-
line-height: 1;
|
231 |
-
border: none;
|
232 |
-
}
|
233 |
-
|
234 |
-
[data-sek-level] .sek-custom-embed {
|
235 |
-
line-height: 0;
|
236 |
-
}
|
237 |
-
|
238 |
-
[data-sek-level] .sek-bg-video-wrapper,
|
239 |
-
[data-sek-level] .sek-background {
|
240 |
-
height: 100%;
|
241 |
-
width: 100%;
|
242 |
-
top: 0;
|
243 |
-
left: 0;
|
244 |
-
position: absolute !important;
|
245 |
-
overflow: hidden;
|
246 |
-
z-index: 0;
|
247 |
-
direction: ltr;
|
248 |
-
}
|
249 |
-
|
250 |
-
[data-sek-level] .sek-bg-video-wrapper {
|
251 |
-
transition: opacity 0.5s linear;
|
252 |
-
pointer-events: none;
|
253 |
-
opacity: 0;
|
254 |
-
}
|
255 |
-
|
256 |
-
[data-sek-level] .sek-bg-video-wrapper.sek-bg-loading {
|
257 |
-
opacity: 0;
|
258 |
-
visibility: hidden;
|
259 |
-
}
|
260 |
-
|
261 |
-
[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-vimeo-element {
|
262 |
-
max-width: none;
|
263 |
-
}
|
264 |
-
|
265 |
-
[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-video-local, [data-sek-level] .sek-background-vimeo-element {
|
266 |
-
position: absolute;
|
267 |
-
top: 50%;
|
268 |
-
left: 50%;
|
269 |
-
-webkit-transform: translateX(-50%) translateY(-50%);
|
270 |
-
transform: translateX(-50%) translateY(-50%);
|
271 |
-
}
|
272 |
-
|
273 |
-
[data-sek-level] .sek-background-video-local {
|
274 |
-
-o-object-fit: cover;
|
275 |
-
object-fit: cover;
|
276 |
-
}
|
277 |
-
|
278 |
-
.sek-module-inner .sek-debug-modules {
|
279 |
-
margin: 1em;
|
280 |
-
padding: 5px;
|
281 |
-
border: 1px solid rgba(221, 221, 221, 0.43);
|
282 |
-
box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);
|
283 |
-
-webkit-box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);
|
284 |
-
background-color: #fff;
|
285 |
-
font-size: 15px;
|
286 |
-
font-weight: normal;
|
287 |
-
color: #6d6d6d;
|
288 |
-
background: rgba(255, 255, 255, 0.6);
|
289 |
-
}
|
290 |
-
|
291 |
-
@media (max-width: 575px) {
|
292 |
-
.customizer-preview [data-sek-video-bg-on-mobile="false"] .sek-bg-video-wrapper {
|
293 |
-
display: none;
|
294 |
-
}
|
295 |
-
}
|
296 |
-
|
297 |
-
.sek-animate-candidate:not(.sek-animate-displayed-before-starting) {
|
298 |
-
opacity: 0;
|
299 |
-
}
|
300 |
-
|
301 |
-
.sek-overflow-hidden-while-animating {
|
302 |
-
overflow: hidden;
|
303 |
-
}
|
304 |
-
|
305 |
-
.nb-scroll-down #nimble-header:not(.sek-header-mobile-menu-expanded), .nb-scroll-up #nimble-header:not(.sek-header-mobile-menu-expanded) {
|
306 |
-
background-color: rgba(255, 255, 255, 0.9);
|
307 |
-
}
|
308 |
-
|
309 |
-
.mfp-wrap button.mfp-arrow, .mfp-wrap button.mfp-close {
|
310 |
-
background: none !important;
|
311 |
-
background: transparent !important;
|
312 |
-
}
|
313 |
-
|
314 |
-
.mfp-wrap img.mfp-img {
|
315 |
-
padding: 40px 0 0;
|
316 |
-
}
|
317 |
-
|
318 |
-
.mfp-wrap::after {
|
319 |
-
bottom: 20px;
|
320 |
-
}
|
321 |
-
|
322 |
-
.mfp-wrap .mfp-bottom-bar {
|
323 |
-
margin-top: 0;
|
324 |
-
}
|
325 |
-
|
326 |
-
.sek-service-font, .sek-module .sek-module-inner .sek-btn {
|
327 |
-
font-family: sans-serif;
|
328 |
-
}
|
329 |
-
|
330 |
-
.sek-container {
|
331 |
-
width: 100%;
|
332 |
-
padding-right: 10px;
|
333 |
-
padding-left: 10px;
|
334 |
-
margin-right: auto;
|
335 |
-
margin-left: auto;
|
336 |
-
}
|
337 |
-
|
338 |
-
@media (min-width: 576px) {
|
339 |
-
.sek-container {
|
340 |
-
max-width: 540px;
|
341 |
-
}
|
342 |
-
}
|
343 |
-
|
344 |
-
@media (min-width: 768px) {
|
345 |
-
.sek-container {
|
346 |
-
max-width: 720px;
|
347 |
-
}
|
348 |
-
}
|
349 |
-
|
350 |
-
@media (min-width: 992px) {
|
351 |
-
.sek-container {
|
352 |
-
max-width: 960px;
|
353 |
-
}
|
354 |
-
}
|
355 |
-
|
356 |
-
@media (min-width: 1200px) {
|
357 |
-
.sek-container {
|
358 |
-
max-width: 1140px;
|
359 |
-
}
|
360 |
-
}
|
361 |
-
|
362 |
-
.sek-container-fluid {
|
363 |
-
width: 100%;
|
364 |
-
padding-right: 10px;
|
365 |
-
padding-left: 10px;
|
366 |
-
margin-right: auto;
|
367 |
-
margin-left: auto;
|
368 |
-
}
|
369 |
-
|
370 |
-
.sek-row {
|
371 |
-
display: -ms-flexbox;
|
372 |
-
display: flex;
|
373 |
-
-ms-flex-wrap: wrap;
|
374 |
-
flex-wrap: wrap;
|
375 |
-
margin-right: -10px;
|
376 |
-
margin-left: -10px;
|
377 |
-
}
|
378 |
-
|
379 |
-
.sek-container-no-padding {
|
380 |
-
padding-right: 0;
|
381 |
-
padding-left: 0;
|
382 |
-
overflow-x: hidden;
|
383 |
-
}
|
384 |
-
|
385 |
-
.sek-no-gutters {
|
386 |
-
margin-right: 0;
|
387 |
-
margin-left: 0;
|
388 |
-
}
|
389 |
-
|
390 |
-
.sek-no-gutters > .sek-col,
|
391 |
-
.sek-no-gutters > [class*="sek-col-"] {
|
392 |
-
padding-right: 0;
|
393 |
-
padding-left: 0;
|
394 |
-
}
|
395 |
-
|
396 |
-
.sek-col-8, .sek-col-9, .sek-col-10, .sek-col-11, .sek-col-12, .sek-col-14, .sek-col-16, .sek-col-20, .sek-col-25, .sek-col-30, .sek-col-33, .sek-col-40, .sek-col-50, .sek-col-60, .sek-col-66, .sek-col-70, .sek-col-75, .sek-col-80, .sek-col-83, .sek-col-90, .sek-col-100, .sek-col-base,
|
397 |
-
.sek-col,
|
398 |
-
.sek-col-auto {
|
399 |
-
position: relative;
|
400 |
-
width: 100%;
|
401 |
-
min-height: 1px;
|
402 |
-
padding-right: 10px;
|
403 |
-
padding-left: 10px;
|
404 |
-
}
|
405 |
-
|
406 |
-
.sek-col-base {
|
407 |
-
-ms-flex: 0 0 100%;
|
408 |
-
flex: 0 0 100%;
|
409 |
-
max-width: 100%;
|
410 |
-
}
|
411 |
-
|
412 |
-
.sek-col {
|
413 |
-
-ms-flex-preferred-size: 0;
|
414 |
-
flex-basis: 0;
|
415 |
-
-ms-flex-positive: 1;
|
416 |
-
flex-grow: 1;
|
417 |
-
max-width: 100%;
|
418 |
-
}
|
419 |
-
|
420 |
-
.sek-col-auto {
|
421 |
-
-ms-flex: 0 0 auto;
|
422 |
-
flex: 0 0 auto;
|
423 |
-
width: auto;
|
424 |
-
max-width: 100%;
|
425 |
-
}
|
426 |
-
|
427 |
-
@media (min-width: 768px) {
|
428 |
-
.sek-col-8 {
|
429 |
-
-ms-flex: 0 0 8.333%;
|
430 |
-
flex: 0 0 8.333%;
|
431 |
-
max-width: 8.333%;
|
432 |
-
}
|
433 |
-
.sek-col-9 {
|
434 |
-
-ms-flex: 0 0 9.090909%;
|
435 |
-
flex: 0 0 9.090909%;
|
436 |
-
max-width: 9.090909%;
|
437 |
-
}
|
438 |
-
.sek-col-10 {
|
439 |
-
-ms-flex: 0 0 10%;
|
440 |
-
flex: 0 0 10%;
|
441 |
-
max-width: 10%;
|
442 |
-
}
|
443 |
-
.sek-col-11 {
|
444 |
-
-ms-flex: 0 0 11.111%;
|
445 |
-
flex: 0 0 11.111%;
|
446 |
-
max-width: 11.111%;
|
447 |
-
}
|
448 |
-
.sek-col-12 {
|
449 |
-
-ms-flex: 0 0 12.5%;
|
450 |
-
flex: 0 0 12.5%;
|
451 |
-
max-width: 12.5%;
|
452 |
-
}
|
453 |
-
.sek-col-14 {
|
454 |
-
-ms-flex: 0 0 14.285%;
|
455 |
-
flex: 0 0 14.285%;
|
456 |
-
max-width: 14.285%;
|
457 |
-
}
|
458 |
-
.sek-col-16 {
|
459 |
-
-ms-flex: 0 0 16.666%;
|
460 |
-
flex: 0 0 16.666%;
|
461 |
-
max-width: 16.666%;
|
462 |
-
}
|
463 |
-
.sek-col-20 {
|
464 |
-
-ms-flex: 0 0 20%;
|
465 |
-
flex: 0 0 20%;
|
466 |
-
max-width: 20%;
|
467 |
-
}
|
468 |
-
.sek-col-25 {
|
469 |
-
-ms-flex: 0 0 25%;
|
470 |
-
flex: 0 0 25%;
|
471 |
-
max-width: 25%;
|
472 |
-
}
|
473 |
-
.sek-col-30 {
|
474 |
-
-ms-flex: 0 0 30%;
|
475 |
-
flex: 0 0 30%;
|
476 |
-
max-width: 30%;
|
477 |
-
}
|
478 |
-
.sek-col-33 {
|
479 |
-
-ms-flex: 0 0 33.333%;
|
480 |
-
flex: 0 0 33.333%;
|
481 |
-
max-width: 33.333%;
|
482 |
-
}
|
483 |
-
.sek-col-40 {
|
484 |
-
-ms-flex: 0 0 40%;
|
485 |
-
flex: 0 0 40%;
|
486 |
-
max-width: 40%;
|
487 |
-
}
|
488 |
-
.sek-col-50 {
|
489 |
-
-ms-flex: 0 0 50%;
|
490 |
-
flex: 0 0 50%;
|
491 |
-
max-width: 50%;
|
492 |
-
}
|
493 |
-
.sek-col-60 {
|
494 |
-
-ms-flex: 0 0 60%;
|
495 |
-
flex: 0 0 60%;
|
496 |
-
max-width: 60%;
|
497 |
-
}
|
498 |
-
.sek-col-66 {
|
499 |
-
-ms-flex: 0 0 66.666%;
|
500 |
-
flex: 0 0 66.666%;
|
501 |
-
max-width: 66.666%;
|
502 |
-
}
|
503 |
-
.sek-col-70 {
|
504 |
-
-ms-flex: 0 0 70%;
|
505 |
-
flex: 0 0 70%;
|
506 |
-
max-width: 70%;
|
507 |
-
}
|
508 |
-
.sek-col-75 {
|
509 |
-
-ms-flex: 0 0 75%;
|
510 |
-
flex: 0 0 75%;
|
511 |
-
max-width: 75%;
|
512 |
-
}
|
513 |
-
.sek-col-80 {
|
514 |
-
-ms-flex: 0 0 80%;
|
515 |
-
flex: 0 0 80%;
|
516 |
-
max-width: 80%;
|
517 |
-
}
|
518 |
-
.sek-col-83 {
|
519 |
-
-ms-flex: 0 0 83.333%;
|
520 |
-
flex: 0 0 83.333%;
|
521 |
-
max-width: 83.333%;
|
522 |
-
}
|
523 |
-
.sek-col-90 {
|
524 |
-
-ms-flex: 0 0 90%;
|
525 |
-
flex: 0 0 90%;
|
526 |
-
max-width: 90%;
|
527 |
-
}
|
528 |
-
.sek-col-100 {
|
529 |
-
-ms-flex: 0 0 100%;
|
530 |
-
flex: 0 0 100%;
|
531 |
-
max-width: 100%;
|
532 |
-
}
|
533 |
-
.sek-order-first {
|
534 |
-
-ms-flex-order: -1;
|
535 |
-
order: -1;
|
536 |
-
}
|
537 |
-
.sek-order-last {
|
538 |
-
-ms-flex-order: 13;
|
539 |
-
order: 13;
|
540 |
-
}
|
541 |
-
.sek-order-0 {
|
542 |
-
-ms-flex-order: 0;
|
543 |
-
order: 0;
|
544 |
-
}
|
545 |
-
.sek-order-1 {
|
546 |
-
-ms-flex-order: 1;
|
547 |
-
order: 1;
|
548 |
-
}
|
549 |
-
.sek-order-2 {
|
550 |
-
-ms-flex-order: 2;
|
551 |
-
order: 2;
|
552 |
-
}
|
553 |
-
.sek-order-3 {
|
554 |
-
-ms-flex-order: 3;
|
555 |
-
order: 3;
|
556 |
-
}
|
557 |
-
.sek-order-4 {
|
558 |
-
-ms-flex-order: 4;
|
559 |
-
order: 4;
|
560 |
-
}
|
561 |
-
.sek-order-5 {
|
562 |
-
-ms-flex-order: 5;
|
563 |
-
order: 5;
|
564 |
-
}
|
565 |
-
.sek-order-6 {
|
566 |
-
-ms-flex-order: 6;
|
567 |
-
order: 6;
|
568 |
-
}
|
569 |
-
.sek-order-7 {
|
570 |
-
-ms-flex-order: 7;
|
571 |
-
order: 7;
|
572 |
-
}
|
573 |
-
.sek-order-8 {
|
574 |
-
-ms-flex-order: 8;
|
575 |
-
order: 8;
|
576 |
-
}
|
577 |
-
.sek-order-9 {
|
578 |
-
-ms-flex-order: 9;
|
579 |
-
order: 9;
|
580 |
-
}
|
581 |
-
.sek-order-10 {
|
582 |
-
-ms-flex-order: 10;
|
583 |
-
order: 10;
|
584 |
-
}
|
585 |
-
.sek-order-11 {
|
586 |
-
-ms-flex-order: 11;
|
587 |
-
order: 11;
|
588 |
-
}
|
589 |
-
.sek-order-12 {
|
590 |
-
-ms-flex-order: 12;
|
591 |
-
order: 12;
|
592 |
-
}
|
593 |
-
}
|
594 |
-
|
595 |
/*
|
596 |
.sek-collapsing {
|
597 |
position: relative;
|
598 |
height: 0;
|
599 |
overflow: hidden;
|
600 |
//@include transition($transition-collapse);
|
601 |
-
}*/
|
602 |
-
.sek-clearfix::after {
|
603 |
-
display: block;
|
604 |
-
clear: both;
|
605 |
-
content: "";
|
606 |
-
}
|
607 |
-
|
608 |
-
.sek-sr-only {
|
609 |
-
position: absolute;
|
610 |
-
width: 1px;
|
611 |
-
height: 1px;
|
612 |
-
padding: 0;
|
613 |
-
overflow: hidden;
|
614 |
-
clip: rect(0, 0, 0, 0);
|
615 |
-
white-space: nowrap;
|
616 |
-
border: 0;
|
617 |
-
}
|
618 |
-
|
619 |
-
.sek-sr-only-focusable:active, .sek-sr-only-focusable:focus {
|
620 |
-
position: static;
|
621 |
-
width: auto;
|
622 |
-
height: auto;
|
623 |
-
overflow: visible;
|
624 |
-
clip: auto;
|
625 |
-
white-space: normal;
|
626 |
-
}
|
627 |
-
|
628 |
-
.sek-embed {
|
629 |
-
position: relative;
|
630 |
-
}
|
631 |
-
|
632 |
-
.sek-embed::before {
|
633 |
-
display: block;
|
634 |
-
content: '';
|
635 |
-
}
|
636 |
-
|
637 |
-
.sek-embed .sek-embed-inner,
|
638 |
-
.sek-embed iframe {
|
639 |
-
position: absolute;
|
640 |
-
width: 100%;
|
641 |
-
height: 100%;
|
642 |
-
top: 0;
|
643 |
-
left: 0;
|
644 |
-
}
|
645 |
-
|
646 |
-
.sektion-wrapper {
|
647 |
-
word-wrap: break-word;
|
648 |
-
}
|
649 |
-
|
650 |
-
.sek-text-right {
|
651 |
-
text-align: right !important;
|
652 |
-
}
|
653 |
-
|
654 |
-
.sek-text-left {
|
655 |
-
text-align: left !important;
|
656 |
-
}
|
657 |
-
|
658 |
-
.sek-module .sek-module-inner ul {
|
659 |
-
list-style: disc;
|
660 |
-
}
|
661 |
-
|
662 |
-
.sek-module .sek-module-inner ol {
|
663 |
-
list-style: decimal;
|
664 |
-
}
|
665 |
-
|
666 |
-
.sek-module .sek-module-inner ol > li::before {
|
667 |
-
content: none;
|
668 |
-
}
|
669 |
-
|
670 |
-
.sek-module .sek-module-inner ul, .sek-module .sek-module-inner ol {
|
671 |
-
padding: 0;
|
672 |
-
line-height: 1.5;
|
673 |
-
margin: 0 1.5rem 3rem 0;
|
674 |
-
}
|
675 |
-
|
676 |
-
.sek-module .sek-module-inner ul > li, .sek-module .sek-module-inner ol > li {
|
677 |
-
padding: .15rem .25rem;
|
678 |
-
}
|
679 |
-
|
680 |
-
.sek-module .sek-module-inner li > ul, .sek-module .sek-module-inner li > ol {
|
681 |
-
margin-bottom: 0;
|
682 |
-
}
|
683 |
-
|
684 |
-
.sek-module-inner pre code, .sek-module-inner tt {
|
685 |
-
box-sizing: border-box;
|
686 |
-
font-size: inherit;
|
687 |
-
white-space: pre-wrap !important;
|
688 |
-
background: transparent;
|
689 |
-
border: none;
|
690 |
-
padding: 0;
|
691 |
-
font-family: monospace;
|
692 |
-
}
|
693 |
-
|
694 |
-
.sek-module-inner pre {
|
695 |
-
background: #f7f8f9;
|
696 |
-
padding: 2.5em;
|
697 |
-
word-wrap: normal;
|
698 |
-
white-space: pre-wrap !important;
|
699 |
-
color: #313131;
|
700 |
-
font-family: monospace !important;
|
701 |
-
}
|
702 |
-
|
703 |
-
.sek-module-inner figure {
|
704 |
-
text-align: center;
|
705 |
-
}
|
706 |
-
|
707 |
-
.sek-module-inner figcaption {
|
708 |
-
text-align: center;
|
709 |
-
}
|
710 |
-
|
711 |
-
.sek-module-inner cite {
|
712 |
-
color: #313131;
|
713 |
-
font-weight: 300;
|
714 |
-
font-style: normal;
|
715 |
-
position: relative;
|
716 |
-
display: inline-block;
|
717 |
-
}
|
718 |
-
|
719 |
-
.sek-module-inner caption, .sek-module-inner code, .sek-module-inner code, .sek-module-inner kbd, .sek-module-inner samp, .sek-module-inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd), .sek-module-inner :root .has-subtle-background-background-color {
|
720 |
-
background-color: #dbdbdb;
|
721 |
-
}
|
722 |
-
|
723 |
-
.sek-module-inner sub {
|
724 |
-
bottom: -0.25em;
|
725 |
-
}
|
726 |
-
|
727 |
-
.sek-module-inner sub, .sek-module-inner sup {
|
728 |
-
font-size: 75%;
|
729 |
-
line-height: 0;
|
730 |
-
position: relative;
|
731 |
-
vertical-align: baseline;
|
732 |
-
}
|
733 |
-
|
734 |
-
.sek-module-inner blockquote {
|
735 |
-
border-right: 5px solid rgba(0, 0, 0, 0.1);
|
736 |
-
background: none;
|
737 |
-
font-size: 1.2em;
|
738 |
-
font-style: inherit;
|
739 |
-
margin-right: 0;
|
740 |
-
margin-left: 0;
|
741 |
-
padding: 15px;
|
742 |
-
}
|
743 |
-
|
744 |
-
.sek-module-inner table {
|
745 |
-
width: 100%;
|
746 |
-
border-collapse: collapse;
|
747 |
/*&:not([id^=wp-calendar]) {
|
748 |
border: 2px solid $grey-lightest;
|
749 |
th { @extend .caps; @extend .letter-spacing-2; font-family: $serviceFont; }
|
750 |
th, td { @extend .demi-small; padding: $base-line-height; border: 1px solid $grey-lightest; }
|
751 |
td { color: $grey-dark; }
|
752 |
-
}*/
|
753 |
-
}
|
754 |
-
|
755 |
-
@media (max-width: 767.98px) {
|
756 |
-
.sek-module-inner table {
|
757 |
-
table-layout: fixed;
|
758 |
-
}
|
759 |
-
}
|
760 |
-
|
761 |
-
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) {
|
762 |
-
border: 2px solid #eceeef;
|
763 |
-
}
|
764 |
-
|
765 |
-
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th {
|
766 |
-
text-transform: uppercase;
|
767 |
-
letter-spacing: 2px;
|
768 |
-
font-family: sans-serif;
|
769 |
-
}
|
770 |
-
|
771 |
-
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th, .sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {
|
772 |
-
font-size: 0.95em;
|
773 |
-
padding: 1.25em;
|
774 |
-
border: 1px solid #eceeef;
|
775 |
-
}
|
776 |
-
|
777 |
-
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {
|
778 |
-
color: #777;
|
779 |
-
}
|
780 |
-
|
781 |
-
.sek-search-form {
|
782 |
-
float: none;
|
783 |
-
}
|
784 |
-
|
785 |
-
.sek-search-form .sek-search-form-group {
|
786 |
-
display: -ms-flexbox;
|
787 |
-
display: flex;
|
788 |
-
}
|
789 |
-
|
790 |
-
.sek-search-form .sek-search-form-group label {
|
791 |
-
position: relative;
|
792 |
-
margin-right: 5px;
|
793 |
-
}
|
794 |
-
|
795 |
-
.sek-search-form .sek-search-form-group label input[type=search] {
|
796 |
-
max-width: 100%;
|
797 |
-
margin: 0;
|
798 |
-
box-sizing: border-box;
|
799 |
-
border-radius: 0;
|
800 |
-
background: #fff;
|
801 |
-
border: 2px solid #ddd;
|
802 |
-
color: #777;
|
803 |
-
display: block;
|
804 |
-
max-width: 100%;
|
805 |
-
padding: 7px 8px;
|
806 |
-
padding-left: 5px;
|
807 |
-
line-height: 1.5em;
|
808 |
-
width: 100%;
|
809 |
-
}
|
810 |
-
|
811 |
-
.sek-search-form .sek-search-form-group [type=submit] {
|
812 |
-
line-height: 15px;
|
813 |
-
margin: 0;
|
814 |
-
background: #808080 !important;
|
815 |
-
color: #fff;
|
816 |
-
font-size: 16px;
|
817 |
-
padding: 10px 10px;
|
818 |
-
font-weight: normal;
|
819 |
-
display: inline-block;
|
820 |
-
border: none;
|
821 |
-
cursor: pointer;
|
822 |
-
border-radius: 3px;
|
823 |
-
}
|
824 |
-
|
825 |
-
.sek-module .sek-module-inner .sek-btn {
|
826 |
-
display: inline-block;
|
827 |
-
font-weight: normal;
|
828 |
-
line-height: 1.25em;
|
829 |
-
text-align: center;
|
830 |
-
/*white-space: nowrap;*/
|
831 |
-
white-space: normal;
|
832 |
-
word-break: break-all;
|
833 |
-
vertical-align: middle;
|
834 |
-
-webkit-user-select: none;
|
835 |
-
-moz-user-select: none;
|
836 |
-
-ms-user-select: none;
|
837 |
-
user-select: none;
|
838 |
-
border: 1px solid transparent;
|
839 |
-
padding: 0.5em 1em;
|
840 |
-
border-radius: 2px;
|
841 |
-
border-width: 2px;
|
842 |
-
border-style: solid;
|
843 |
-
font-size: 1em;
|
844 |
-
cursor: pointer;
|
845 |
-
text-decoration: none;
|
846 |
-
text-transform: none;
|
847 |
-
transition: all 0.2s ease-in-out;
|
848 |
-
}
|
849 |
-
|
850 |
-
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .sek-btn:hover {
|
851 |
-
text-decoration: none;
|
852 |
-
}
|
853 |
-
|
854 |
-
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .focus.sek-btn {
|
855 |
-
outline: 0;
|
856 |
-
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
857 |
-
}
|
858 |
-
|
859 |
-
.sek-module .sek-module-inner .disabled.sek-btn, .sek-module .sek-module-inner .sek-btn:disabled {
|
860 |
-
cursor: not-allowed;
|
861 |
-
opacity: .65;
|
862 |
-
box-shadow: none;
|
863 |
-
}
|
864 |
-
|
865 |
-
.sek-module .sek-module-inner .sek-btn:active, .sek-module .sek-module-inner .active.sek-btn {
|
866 |
-
background-image: none;
|
867 |
-
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
868 |
-
}
|
869 |
-
|
870 |
-
a.sek-btn.disabled,
|
871 |
-
fieldset[disabled] a.sek-btn {
|
872 |
-
pointer-events: none;
|
873 |
-
}
|
874 |
-
|
875 |
-
.sektion-wrapper button,
|
876 |
-
.sektion-wrapper [type="button"],
|
877 |
-
.sektion-wrapper [type="reset"],
|
878 |
-
.sektion-wrapper [type="submit"] {
|
879 |
-
-webkit-appearance: button;
|
880 |
-
}
|
881 |
-
|
882 |
-
.sektion-wrapper button::-moz-focus-inner,
|
883 |
-
.sektion-wrapper [type="button"]::-moz-focus-inner,
|
884 |
-
.sektion-wrapper [type="reset"]::-moz-focus-inner,
|
885 |
-
.sektion-wrapper [type="submit"]::-moz-focus-inner {
|
886 |
-
padding: 0;
|
887 |
-
border-style: none;
|
888 |
-
}
|
889 |
-
|
890 |
-
button.sek-btn,
|
891 |
-
[type="button"].sek-btn,
|
892 |
-
[type="reset"].sek-btn,
|
893 |
-
[type="submit"].sek-btn {
|
894 |
-
-wekbit-appearance: none !important;
|
895 |
-
background: transparent;
|
896 |
-
}
|
897 |
-
|
898 |
-
[data-sek-level="module"] .sek-module-inner {
|
899 |
-
/* WP Search Widget */
|
900 |
-
}
|
901 |
-
|
902 |
-
[data-sek-level="module"] .sek-module-inner .wp-caption figcaption {
|
903 |
-
color: #6d6d6d;
|
904 |
-
font-style: italic;
|
905 |
-
max-width: 100%;
|
906 |
-
font-size: 14px;
|
907 |
-
font-weight: 500;
|
908 |
-
line-height: 1.4;
|
909 |
-
/* Keep wide captions from overflowing their container. */
|
910 |
-
padding: 4px;
|
911 |
-
margin-top: 1rem;
|
912 |
-
}
|
913 |
-
|
914 |
-
[data-sek-level="module"] .sek-module-inner figure {
|
915 |
-
display: block;
|
916 |
-
}
|
917 |
-
|
918 |
-
[data-sek-level="module"] .sek-module-inner .wp-block-image .aligncenter, [data-sek-level="module"] .sek-module-inner .wp-block-image .alignleft, [data-sek-level="module"] .sek-module-inner .wp-block-image .alignright {
|
919 |
-
display: table;
|
920 |
-
}
|
921 |
-
|
922 |
-
[data-sek-level="module"] .sek-module-inner .wp-block-image figcaption {
|
923 |
-
font-size: 13px;
|
924 |
-
text-align: center;
|
925 |
-
}
|
926 |
-
|
927 |
-
[data-sek-level="module"] .sek-module-inner .wp-block-gallery, [data-sek-level="module"] .sek-module-inner ul.blocks-gallery-grid {
|
928 |
-
margin-right: 0;
|
929 |
-
}
|
930 |
-
|
931 |
-
[data-sek-level="module"] .sek-module-inner [class*="wp-block-"]:not(:last-child) {
|
932 |
-
margin-bottom: 1.5em;
|
933 |
-
}
|
934 |
-
|
935 |
-
.sek-col-100 .sek-module-inner .alignfull {
|
936 |
-
margin-left: calc(-50vw + 50%);
|
937 |
-
margin-right: calc(-50vw + 50%);
|
938 |
-
max-width: 100vw;
|
939 |
-
width: auto;
|
940 |
-
}
|
941 |
-
|
942 |
-
.sek-col-100 .sek-module-inner .alignwide {
|
943 |
-
margin-left: calc(50% - 40vw);
|
944 |
-
width: 80vw;
|
945 |
-
max-width: 80vw;
|
946 |
-
}
|
947 |
-
|
948 |
-
[data-sek-level="module"] .sek-module-inner .aligncenter, [data-sek-level="module"] .sek-module-inner .aligncenter img {
|
949 |
-
display: block;
|
950 |
-
margin-left: auto;
|
951 |
-
margin-right: auto;
|
952 |
-
}
|
953 |
-
|
954 |
-
[data-sek-level="module"] .sek-module-inner .alignleft {
|
955 |
-
float: left;
|
956 |
-
}
|
957 |
-
|
958 |
-
[data-sek-level="module"] .sek-module-inner .alignright {
|
959 |
-
float: right;
|
960 |
-
}
|
961 |
-
|
962 |
-
[data-sek-level="module"] .sek-module-inner .alignnone, [data-sek-level="module"] .sek-module-inner .aligncenter, [data-sek-level="module"] .sek-module-inner .alignleft, [data-sek-level="module"] .sek-module-inner .alignright {
|
963 |
-
margin-top: 1.5rem;
|
964 |
-
margin-right: auto;
|
965 |
-
margin-bottom: 1.5rem;
|
966 |
-
margin-left: auto;
|
967 |
-
}
|
968 |
-
|
969 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form {
|
970 |
-
display: -ms-flexbox;
|
971 |
-
display: flex;
|
972 |
-
max-width: 100%;
|
973 |
-
float: left;
|
974 |
-
}
|
975 |
-
|
976 |
-
@media (max-width: 767.98px) {
|
977 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form {
|
978 |
-
float: none;
|
979 |
-
}
|
980 |
-
}
|
981 |
-
|
982 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form label {
|
983 |
-
position: relative;
|
984 |
-
-ms-flex: 1;
|
985 |
-
flex: 1;
|
986 |
-
margin-right: 5px;
|
987 |
-
}
|
988 |
-
|
989 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form label input {
|
990 |
-
padding-left: 5px;
|
991 |
-
line-height: 20px;
|
992 |
-
width: 100%;
|
993 |
-
max-width: 185px;
|
994 |
-
min-width: 80px;
|
995 |
-
}
|
996 |
-
|
997 |
-
@media (max-width: 767.98px) {
|
998 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form label input {
|
999 |
-
max-width: none;
|
1000 |
-
}
|
1001 |
-
}
|
1002 |
-
|
1003 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form input[type=submit] {
|
1004 |
-
line-height: 15px;
|
1005 |
-
/*width: 25%;*/
|
1006 |
-
}
|
1007 |
-
|
1008 |
-
[data-sek-level="module"] .sek-module-inner input[type="submit"] {
|
1009 |
-
background: #808080;
|
1010 |
-
color: #fff;
|
1011 |
-
padding: 10px 10px;
|
1012 |
-
font-weight: normal;
|
1013 |
-
display: inline-block;
|
1014 |
-
border: none;
|
1015 |
-
cursor: pointer;
|
1016 |
-
border-radius: 3px;
|
1017 |
-
}
|
1018 |
-
|
1019 |
-
[data-sek-level="module"] .sek-module-inner .search-form input[type="search"] {
|
1020 |
-
margin: 0;
|
1021 |
-
box-sizing: border-box;
|
1022 |
-
border-radius: 0;
|
1023 |
-
background: #fff;
|
1024 |
-
border: 2px solid #ddd;
|
1025 |
-
color: #777;
|
1026 |
-
display: block;
|
1027 |
-
max-width: 100%;
|
1028 |
-
padding: 7px 8px;
|
1029 |
-
}
|
1030 |
-
|
1031 |
-
.sektion-wrapper.sek-password-protected {
|
1032 |
-
display: -ms-flexbox;
|
1033 |
-
display: flex;
|
1034 |
-
-ms-flex-align: center;
|
1035 |
-
align-items: center;
|
1036 |
-
-ms-flex-pack: center;
|
1037 |
-
justify-content: center;
|
1038 |
-
-ms-flex-direction: column;
|
1039 |
-
flex-direction: column;
|
1040 |
-
}
|
1041 |
-
|
1042 |
-
.sektion-wrapper.sek-password-protected form.post-password-form {
|
1043 |
-
max-width: 450px;
|
1044 |
-
height: auto;
|
1045 |
-
padding: 4em 1em;
|
1046 |
-
font-size: 1em;
|
1047 |
-
}
|
1048 |
-
|
1049 |
-
.sektion-wrapper .sek-module-inner .avatar {
|
1050 |
-
border-radius: 50%;
|
1051 |
-
}
|
1052 |
-
|
1053 |
-
.sek-next-post-link::after, .sek-previous-post-link::before {
|
1054 |
-
width: 15px;
|
1055 |
-
height: 10px;
|
1056 |
-
display: inline-block;
|
1057 |
-
position: relative;
|
1058 |
-
vertical-align: middle;
|
1059 |
-
border-top: 6px solid transparent;
|
1060 |
-
border-bottom: 6px solid transparent;
|
1061 |
-
border-left-color: inherit;
|
1062 |
-
border-right-color: inherit;
|
1063 |
-
}
|
1064 |
-
|
1065 |
-
.sek-previous-post-link::before {
|
1066 |
-
content: '';
|
1067 |
-
border-left: 6px solid;
|
1068 |
-
left: 7px;
|
1069 |
-
}
|
1070 |
-
|
1071 |
-
.sek-next-post-link::after {
|
1072 |
-
content: '';
|
1073 |
-
border-right: 6px solid;
|
1074 |
-
right: 7px;
|
1075 |
-
}
|
1076 |
-
|
1077 |
/*************************************
|
1078 |
* HEADING MODULE
|
1079 |
-
*************************************/
|
1080 |
-
.sek-module-inner .sek-heading {
|
1081 |
-
text-align: center;
|
1082 |
-
margin: 0.6em 0;
|
1083 |
-
display: block;
|
1084 |
-
}
|
1085 |
-
|
1086 |
-
.sek-module-inner .sek-heading > a {
|
1087 |
-
color: inherit;
|
1088 |
-
font-size: inherit;
|
1089 |
-
}
|
1090 |
-
|
1091 |
/*************************************
|
1092 |
* MENU MODULE
|
1093 |
-
*************************************/
|
1094 |
-
.sek-nav-wrap {
|
1095 |
-
position: relative;
|
1096 |
-
display: -ms-flexbox;
|
1097 |
-
display: flex;
|
1098 |
-
-ms-flex-wrap: wrap;
|
1099 |
-
flex-wrap: wrap;
|
1100 |
-
-ms-flex-align: center;
|
1101 |
-
align-items: center;
|
1102 |
-
-ms-flex-pack: end;
|
1103 |
-
justify-content: flex-end;
|
1104 |
-
padding: .5rem 0;
|
1105 |
-
}
|
1106 |
-
|
1107 |
-
.sek-mobile-menu-expanded-below .sek-nav-wrap {
|
1108 |
-
padding: 0;
|
1109 |
-
}
|
1110 |
-
|
1111 |
-
.sek-nav-collapse {
|
1112 |
-
-ms-flex-preferred-size: 100%;
|
1113 |
-
flex-basis: 100%;
|
1114 |
-
-ms-flex-positive: 1;
|
1115 |
-
flex-grow: 1;
|
1116 |
-
-ms-flex-align: center;
|
1117 |
-
align-items: center;
|
1118 |
-
}
|
1119 |
-
|
1120 |
-
.sek-nav {
|
1121 |
-
display: -ms-flexbox;
|
1122 |
-
display: flex;
|
1123 |
-
-ms-flex-wrap: wrap;
|
1124 |
-
flex-wrap: wrap;
|
1125 |
-
-ms-flex-direction: column;
|
1126 |
-
flex-direction: column;
|
1127 |
-
}
|
1128 |
-
|
1129 |
-
.sek-module .sek-module-inner .sek-nav {
|
1130 |
-
margin-right: -10px !important;
|
1131 |
-
margin-left: -10px !important;
|
1132 |
-
}
|
1133 |
-
|
1134 |
-
.sek-module .sek-module-inner .sek-nav,
|
1135 |
-
.sek-module .sek-module-inner .sek-nav ul {
|
1136 |
-
list-style: none !important;
|
1137 |
-
padding: 0 !important;
|
1138 |
-
margin: 0 !important;
|
1139 |
-
}
|
1140 |
-
|
1141 |
-
.sek-module .sek-module-inner .sek-nav li {
|
1142 |
-
list-style: none;
|
1143 |
-
padding: 0;
|
1144 |
-
}
|
1145 |
-
|
1146 |
-
.sek-module .sek-module-inner .sek-nav li > ul li {
|
1147 |
-
padding: 0;
|
1148 |
-
}
|
1149 |
-
|
1150 |
-
.sek-nav li {
|
1151 |
-
font-size: 16px;
|
1152 |
-
}
|
1153 |
-
|
1154 |
-
.sek-nav li a {
|
1155 |
-
line-height: 1.5em;
|
1156 |
-
padding: .6em .8em;
|
1157 |
-
display: -ms-flexbox;
|
1158 |
-
display: flex;
|
1159 |
-
-ms-flex-align: center;
|
1160 |
-
align-items: center;
|
1161 |
-
-ms-flex-pack: justify;
|
1162 |
-
justify-content: space-between;
|
1163 |
-
color: inherit;
|
1164 |
-
overflow: hidden;
|
1165 |
-
}
|
1166 |
-
|
1167 |
-
.sek-nav-wrap .sek-nav li a {
|
1168 |
-
text-decoration: none;
|
1169 |
-
}
|
1170 |
-
|
1171 |
-
.sek-nav li a:hover .sek-nav__title {
|
1172 |
-
text-decoration: underline;
|
1173 |
-
}
|
1174 |
-
|
1175 |
-
.sek-nav li:not(:last-of-type) {
|
1176 |
-
border-bottom: 1px solid;
|
1177 |
-
border-color: rgba(49, 49, 49, 0.09);
|
1178 |
-
}
|
1179 |
-
|
1180 |
-
.sek-nav .menu-item-has-children,
|
1181 |
-
.sek-nav .page_item_has_children {
|
1182 |
-
position: relative;
|
1183 |
-
}
|
1184 |
-
|
1185 |
-
.sek-nav .menu-item-has-children > a::after,
|
1186 |
-
.sek-nav .page_item_has_children > a::after {
|
1187 |
-
content: "\203A";
|
1188 |
-
font-family: "Arial Unicode MS", Arial;
|
1189 |
-
moz-osx-font-smoothing: grayscale;
|
1190 |
-
-webkit-font-smoothing: antialiased;
|
1191 |
-
display: none;
|
1192 |
-
font-style: normal;
|
1193 |
-
font-variant: normal;
|
1194 |
-
text-rendering: auto;
|
1195 |
-
font-weight: 900;
|
1196 |
-
transition: all 0.3s ease;
|
1197 |
-
-webkit-transform-style: preserve-3d;
|
1198 |
-
transform-style: preserve-3d;
|
1199 |
-
-webkit-backface-visibility: hidden;
|
1200 |
-
backface-visibility: hidden;
|
1201 |
-
-webkit-perspective: 1000px;
|
1202 |
-
perspective: 1000px;
|
1203 |
-
padding: 0 .45em;
|
1204 |
-
font-size: 1em;
|
1205 |
-
position: relative;
|
1206 |
-
-webkit-transform: translateZ(0) rotate(90deg);
|
1207 |
-
transform: translateZ(0) rotate(90deg);
|
1208 |
-
-ms-transform: rotate(90deg);
|
1209 |
-
}
|
1210 |
-
|
1211 |
-
.sek-nav .menu-item-has-children.show > a::after,
|
1212 |
-
.sek-nav .page_item_has_children.show > a::after {
|
1213 |
-
-webkit-transform: translateZ(0) rotate(90deg) !important;
|
1214 |
-
transform: translateZ(0) rotate(90deg) !important;
|
1215 |
-
-ms-transform: rotate(90deg) !important;
|
1216 |
-
}
|
1217 |
-
|
1218 |
-
.sek-nav .sub-menu,
|
1219 |
-
.sek-nav .children {
|
1220 |
-
position: static;
|
1221 |
-
float: none;
|
1222 |
-
list-style: none;
|
1223 |
-
border-radius: 0;
|
1224 |
-
border: 0;
|
1225 |
-
margin: 0;
|
1226 |
-
padding: 0;
|
1227 |
-
font-size: inherit;
|
1228 |
-
}
|
1229 |
-
|
1230 |
-
@media (min-width: 768px) {
|
1231 |
-
.sek-nav .sub-menu,
|
1232 |
-
.sek-nav .children {
|
1233 |
-
position: absolute;
|
1234 |
-
display: none;
|
1235 |
-
top: 100%;
|
1236 |
-
right: 0;
|
1237 |
-
z-index: 1000;
|
1238 |
-
min-width: 10rem;
|
1239 |
-
max-width: 50vw;
|
1240 |
-
}
|
1241 |
-
}
|
1242 |
-
|
1243 |
-
@media (min-width: 768px) {
|
1244 |
-
.sek-nav {
|
1245 |
-
-ms-flex-direction: row;
|
1246 |
-
flex-direction: row;
|
1247 |
-
}
|
1248 |
-
.sek-nav .menu-item-has-children > a::after,
|
1249 |
-
.sek-nav .page_item_has_children > a::after {
|
1250 |
-
display: inline-block;
|
1251 |
-
}
|
1252 |
-
.sek-nav > li:not(:last-of-type) {
|
1253 |
-
border-bottom: none;
|
1254 |
-
}
|
1255 |
-
.sek-nav > li > a {
|
1256 |
-
padding: 5px;
|
1257 |
-
}
|
1258 |
-
.sek-module .sek-module-inner .sek-nav li {
|
1259 |
-
margin: 0 5px;
|
1260 |
-
}
|
1261 |
-
.sek-module .sek-module-inner .sek-nav li > ul li {
|
1262 |
-
padding: 0 .9rem 0 0;
|
1263 |
-
}
|
1264 |
-
.sek-nav-collapse {
|
1265 |
-
display: -ms-flexbox !important;
|
1266 |
-
display: flex !important;
|
1267 |
-
-ms-flex-preferred-size: auto;
|
1268 |
-
flex-basis: auto;
|
1269 |
-
justify-content: flex-end;
|
1270 |
-
-webkit-box-pack: end;
|
1271 |
-
-ms-flex-pack: end;
|
1272 |
-
}
|
1273 |
-
.sek-mobile-menu-expanded-below {
|
1274 |
-
display: none !important;
|
1275 |
-
}
|
1276 |
-
.sek-nav-toggler {
|
1277 |
-
display: none;
|
1278 |
-
}
|
1279 |
-
.sek-dropdown-menu {
|
1280 |
-
background: white;
|
1281 |
-
box-shadow: 1px 2px 2px 2px rgba(0, 0, 0, 0.15);
|
1282 |
-
}
|
1283 |
-
.sek-nav .sek-dropdown-menu li {
|
1284 |
-
padding: 0 10px !important;
|
1285 |
-
margin: 0 !important;
|
1286 |
-
}
|
1287 |
-
.sek-nav .sek-dropdown-menu li a {
|
1288 |
-
padding: 10px 12px;
|
1289 |
-
}
|
1290 |
-
.sek-dropdown-menu ul {
|
1291 |
-
right: 100%;
|
1292 |
-
}
|
1293 |
-
.sek-dropdown-menu .sek-menu-link__row-reverse {
|
1294 |
-
-ms-flex-direction: row-reverse !important;
|
1295 |
-
flex-direction: row-reverse !important;
|
1296 |
-
}
|
1297 |
-
.sek-dropdown-menu .sek-nav__title {
|
1298 |
-
word-break: normal;
|
1299 |
-
white-space: nowrap;
|
1300 |
-
}
|
1301 |
-
.sek-dropdown-submenu .sek-dropdown-menu {
|
1302 |
-
top: 15px;
|
1303 |
-
}
|
1304 |
-
.sek-submenu-fade .sek-dropdown-menu a {
|
1305 |
-
transition: all 0.25s ease;
|
1306 |
-
-webkit-transform: translate(0, 0);
|
1307 |
-
transform: translate(0, 0);
|
1308 |
-
}
|
1309 |
-
.sek-submenu-fade .sek-dropdown-menu a:hover {
|
1310 |
-
-webkit-transform: translate(3px, 0);
|
1311 |
-
transform: translate(3px, 0);
|
1312 |
-
}
|
1313 |
-
.sek-submenu-fade .page_item_has_children,
|
1314 |
-
.sek-submenu-fade .menu-item-has-children {
|
1315 |
-
-webkit-perspective: 1000px;
|
1316 |
-
perspective: 1000px;
|
1317 |
-
}
|
1318 |
-
.sek-submenu-fade .page_item_has_children > ul,
|
1319 |
-
.sek-submenu-fade .menu-item-has-children > ul {
|
1320 |
-
position: fixed;
|
1321 |
-
opacity: 0;
|
1322 |
-
visibility: hidden;
|
1323 |
-
display: block;
|
1324 |
-
transition: all 0.25s ease-in-out;
|
1325 |
-
-webkit-transform: translate(0, -10px);
|
1326 |
-
transform: translate(0, -10px);
|
1327 |
-
}
|
1328 |
-
.sek-submenu-fade .page_item_has_children:not(.show),
|
1329 |
-
.sek-submenu-fade .menu-item-has-children:not(.show) {
|
1330 |
-
overflow: hidden;
|
1331 |
-
}
|
1332 |
-
.sek-submenu-fade .page_item_has_children:not(.show) ul,
|
1333 |
-
.sek-submenu-fade .menu-item-has-children:not(.show) ul {
|
1334 |
-
pointer-events: none;
|
1335 |
-
cursor: not-allowed;
|
1336 |
-
}
|
1337 |
-
.sek-submenu-fade li.show {
|
1338 |
-
-webkit-perspective: none;
|
1339 |
-
perspective: none;
|
1340 |
-
}
|
1341 |
-
.sek-submenu-fade li.show > ul {
|
1342 |
-
position: absolute;
|
1343 |
-
visibility: visible;
|
1344 |
-
opacity: 1;
|
1345 |
-
-webkit-transform: translate(0, 0);
|
1346 |
-
transform: translate(0, 0);
|
1347 |
-
}
|
1348 |
-
.nb-collapsible-mobile-menu .nb-dd-mm-toggle-wrapper {
|
1349 |
-
display: none;
|
1350 |
-
}
|
1351 |
-
}
|
1352 |
-
|
1353 |
-
.sek-dropdown-submenu > a::after {
|
1354 |
-
-webkit-transform: translateZ(0) rotate(0deg) !important;
|
1355 |
-
transform: translateZ(0) rotate(0deg) !important;
|
1356 |
-
-ms-transform: rotate(0deg) !important;
|
1357 |
-
}
|
1358 |
-
|
1359 |
-
.sek-dropdown-submenu > a[class*=-reverse]::after {
|
1360 |
-
top: .1em;
|
1361 |
-
-webkit-transform: translateZ(0) rotate(180deg) !important;
|
1362 |
-
transform: translateZ(0) rotate(180deg) !important;
|
1363 |
-
-ms-transform: rotate(180deg) !important;
|
1364 |
-
}
|
1365 |
-
|
1366 |
-
.sek-dropdown-menu {
|
1367 |
-
position: static;
|
1368 |
-
float: none;
|
1369 |
-
list-style: none;
|
1370 |
-
border-radius: 0;
|
1371 |
-
border: 0;
|
1372 |
-
margin: 0;
|
1373 |
-
padding: 0;
|
1374 |
-
font-size: inherit;
|
1375 |
-
}
|
1376 |
-
|
1377 |
-
@media (min-width: 768px) {
|
1378 |
-
.sek-dropdown-menu {
|
1379 |
-
position: absolute;
|
1380 |
-
display: none;
|
1381 |
-
top: 100%;
|
1382 |
-
right: 0;
|
1383 |
-
z-index: 1000;
|
1384 |
-
min-width: 10rem;
|
1385 |
-
max-width: 50vw;
|
1386 |
-
}
|
1387 |
-
}
|
1388 |
-
|
1389 |
-
.show > .sek-dropdown-menu {
|
1390 |
-
display: block;
|
1391 |
-
}
|
1392 |
-
|
1393 |
-
.sek-dropdown-menu .sek-nav .sek-nav__title {
|
1394 |
-
word-break: break-word;
|
1395 |
-
white-space: normal;
|
1396 |
-
}
|
1397 |
-
|
1398 |
-
.sek-dropdown-menu.open-right {
|
1399 |
-
left: 0;
|
1400 |
-
right: auto;
|
1401 |
-
}
|
1402 |
-
|
1403 |
-
.sek-dropdown-menu.open-right ul:not(.open-left),
|
1404 |
-
.sek-dropdown-menu ul.open-right {
|
1405 |
-
left: 100%;
|
1406 |
-
right: auto;
|
1407 |
-
top: 0;
|
1408 |
-
}
|
1409 |
-
|
1410 |
-
.sek-dropdown-menu.open-left {
|
1411 |
-
left: auto;
|
1412 |
-
right: 0;
|
1413 |
-
}
|
1414 |
-
|
1415 |
-
.sek-dropdown-menu.open-left ul:not(.open-right),
|
1416 |
-
.sek-dropdown-menu ul.open-left {
|
1417 |
-
right: 100%;
|
1418 |
-
left: auto;
|
1419 |
-
}
|
1420 |
-
|
1421 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] {
|
1422 |
-
overflow: auto;
|
1423 |
-
max-height: 80vh;
|
1424 |
-
padding-bottom: 10px;
|
1425 |
-
}
|
1426 |
-
|
1427 |
-
nav.nb-collapsible-mobile-menu li .sub-menu li a {
|
1428 |
-
font-size: 0.88em;
|
1429 |
-
}
|
1430 |
-
|
1431 |
-
nav.nb-collapsible-mobile-menu li .sub-menu li > a {
|
1432 |
-
padding: .6em 32px;
|
1433 |
-
}
|
1434 |
-
|
1435 |
-
nav.nb-collapsible-mobile-menu li .sub-menu li li > a {
|
1436 |
-
padding: .6em 60px;
|
1437 |
-
}
|
1438 |
-
|
1439 |
-
nav.nb-collapsible-mobile-menu li .sub-menu li li li > a {
|
1440 |
-
padding: .6em 80px;
|
1441 |
-
}
|
1442 |
-
|
1443 |
-
nav.nb-collapsible-mobile-menu li .sub-menu li li li li > a {
|
1444 |
-
padding: .6em 100px;
|
1445 |
-
}
|
1446 |
-
|
1447 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state] {
|
1448 |
-
display: none;
|
1449 |
-
}
|
1450 |
-
|
1451 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] {
|
1452 |
-
display: block;
|
1453 |
-
}
|
1454 |
-
|
1455 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"],
|
1456 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] li,
|
1457 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] ul {
|
1458 |
-
background: #ffffff;
|
1459 |
-
}
|
1460 |
-
|
1461 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .sub-menu,
|
1462 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] li {
|
1463 |
-
position: relative;
|
1464 |
-
}
|
1465 |
-
|
1466 |
-
[data-sek-is-mobile-vertical-menu="yes"] .sek-nav li a {
|
1467 |
-
min-height: 45px;
|
1468 |
-
box-sizing: border-box;
|
1469 |
-
justify-content: flex-start;
|
1470 |
-
-webkit-box-pack: start;
|
1471 |
-
-ms-flex-pack: start;
|
1472 |
-
}
|
1473 |
-
|
1474 |
-
[data-sek-is-mobile-vertical-menu="yes"] .sub-menu {
|
1475 |
-
display: none;
|
1476 |
-
}
|
1477 |
-
|
1478 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .sub-menu {
|
1479 |
-
display: none;
|
1480 |
-
}
|
1481 |
-
|
1482 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .sub-menu.expanded {
|
1483 |
-
display: block;
|
1484 |
-
}
|
1485 |
-
|
1486 |
/*
|
1487 |
* Mobile dropdown on click
|
1488 |
-
*/
|
1489 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .page_item_has_children > a,
|
1490 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .menu-item-has-children > a {
|
1491 |
-
padding-right: 60px;
|
1492 |
-
}
|
1493 |
-
|
1494 |
-
.nb-dd-mm-toggle-wrapper {
|
1495 |
-
position: absolute;
|
1496 |
-
top: 1px;
|
1497 |
-
right: 0;
|
1498 |
-
text-align: center;
|
1499 |
-
line-height: 1;
|
1500 |
-
bottom: 1px;
|
1501 |
-
height: 45px;
|
1502 |
-
width: 60px;
|
1503 |
-
}
|
1504 |
-
|
1505 |
-
.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .nb-dd-mm-toggle-wrapper {
|
1506 |
-
display: block;
|
1507 |
-
}
|
1508 |
-
|
1509 |
-
.nb-dd-mm-toggle {
|
1510 |
-
background: none !important;
|
1511 |
-
-webkit-appearance: none;
|
1512 |
-
outline: none;
|
1513 |
-
border: none;
|
1514 |
-
padding: 0;
|
1515 |
-
cursor: pointer;
|
1516 |
-
display: block;
|
1517 |
-
height: 45px;
|
1518 |
-
width: 60px;
|
1519 |
-
box-sizing: border-box;
|
1520 |
-
overflow: hidden;
|
1521 |
-
}
|
1522 |
-
|
1523 |
-
.nb-dd-mm-toggle i {
|
1524 |
-
display: block;
|
1525 |
-
transition: all .3s ease;
|
1526 |
-
-webkit-transform-style: preserve-3d;
|
1527 |
-
transform-style: preserve-3d;
|
1528 |
-
-webkit-backface-visibility: hidden;
|
1529 |
-
backface-visibility: hidden;
|
1530 |
-
width: 100%;
|
1531 |
-
color: #000000;
|
1532 |
-
}
|
1533 |
-
|
1534 |
-
li.expanded > .nb-dd-mm-toggle-wrapper .nb-arrow-for-mobile-menu {
|
1535 |
-
-webkit-transform: rotate(-180deg);
|
1536 |
-
transform: rotate(-180deg);
|
1537 |
-
}
|
1538 |
-
|
1539 |
-
.nb-arrow-for-mobile-menu::after {
|
1540 |
-
content: "\25BE";
|
1541 |
-
font-family: "Arial Unicode MS", Arial;
|
1542 |
-
moz-osx-font-smoothing: grayscale;
|
1543 |
-
-webkit-font-smoothing: antialiased;
|
1544 |
-
font-style: normal;
|
1545 |
-
font-variant: normal;
|
1546 |
-
text-rendering: auto;
|
1547 |
-
font-weight: 900;
|
1548 |
-
transition: all 0.3s ease;
|
1549 |
-
-webkit-transform-style: preserve-3d;
|
1550 |
-
transform-style: preserve-3d;
|
1551 |
-
-webkit-backface-visibility: hidden;
|
1552 |
-
backface-visibility: hidden;
|
1553 |
-
-webkit-perspective: 1000px;
|
1554 |
-
perspective: 1000px;
|
1555 |
-
padding: 0 .45em;
|
1556 |
-
font-size: 18px;
|
1557 |
-
line-height: 45px;
|
1558 |
-
position: relative;
|
1559 |
-
}
|
1560 |
-
|
1561 |
-
.nb-loc .sek-module-inner nav .sek-nav-toggler {
|
1562 |
-
-webkit-appearance: none !important;
|
1563 |
-
cursor: pointer;
|
1564 |
-
height: 40px;
|
1565 |
-
width: 40px;
|
1566 |
-
padding: 0;
|
1567 |
-
vertical-align: middle;
|
1568 |
-
}
|
1569 |
-
|
1570 |
-
.nb-loc .sek-module-inner nav .sek-nav-toggler, .nb-loc .sek-module-inner nav .sek-nav-toggler:hover, .nb-loc .sek-module-inner nav .sek-nav-toggler:focus {
|
1571 |
-
background: 0 0;
|
1572 |
-
background-color: rgba(0, 0, 0, 0);
|
1573 |
-
color: black;
|
1574 |
-
outline: none;
|
1575 |
-
border: none;
|
1576 |
-
}
|
1577 |
-
|
1578 |
-
.sek-ham__span-wrapper {
|
1579 |
-
height: 12px;
|
1580 |
-
position: relative;
|
1581 |
-
display: block;
|
1582 |
-
}
|
1583 |
-
|
1584 |
-
.sek-ham__span-wrapper .line {
|
1585 |
-
display: block;
|
1586 |
-
height: 1.5px;
|
1587 |
-
position: absolute;
|
1588 |
-
left: 10px;
|
1589 |
-
border-radius: 5px;
|
1590 |
-
background-clip: padding-box;
|
1591 |
-
transition: all ease .35s;
|
1592 |
-
-webkit-backface-visibility: hidden;
|
1593 |
-
backface-visibility: hidden;
|
1594 |
-
border-top: 1.5px solid;
|
1595 |
-
}
|
1596 |
-
|
1597 |
-
.sek-ham__span-wrapper .line-1 {
|
1598 |
-
top: 0;
|
1599 |
-
}
|
1600 |
-
|
1601 |
-
.sek-ham__span-wrapper .line-2 {
|
1602 |
-
top: 50%;
|
1603 |
-
}
|
1604 |
-
|
1605 |
-
.sek-ham__span-wrapper .line-3 {
|
1606 |
-
top: 100%;
|
1607 |
-
}
|
1608 |
-
|
1609 |
-
.sek-nav-toggler .line-1 {
|
1610 |
-
-webkit-transform: translate(-3px, 6px) rotate(45deg);
|
1611 |
-
transform: translate(-3px, 6px) rotate(45deg);
|
1612 |
-
width: 28px;
|
1613 |
-
}
|
1614 |
-
|
1615 |
-
.sek-nav-toggler .line-2 {
|
1616 |
-
opacity: 0;
|
1617 |
-
}
|
1618 |
-
|
1619 |
-
.sek-nav-toggler .line-3 {
|
1620 |
-
-webkit-transform: translate(-3px, -6px) rotate(-45deg);
|
1621 |
-
transform: translate(-3px, -6px) rotate(-45deg);
|
1622 |
-
width: 28px;
|
1623 |
-
}
|
1624 |
-
|
1625 |
-
.sek-nav-toggler.sek-collapsed .line {
|
1626 |
-
width: 20px;
|
1627 |
-
-webkit-transform: translate(0, 0) rotate(0);
|
1628 |
-
transform: translate(0, 0) rotate(0);
|
1629 |
-
opacity: 1;
|
1630 |
-
}
|
1631 |
-
|
1632 |
-
.sek-nav-toggler.sek-collapsed.hovering .line {
|
1633 |
-
-webkit-transform: translateX(-3px);
|
1634 |
-
transform: translateX(-3px);
|
1635 |
-
width: 26px;
|
1636 |
-
}
|
1637 |
-
|
1638 |
-
.nb-module-menu-search {
|
1639 |
-
position: relative;
|
1640 |
-
}
|
1641 |
-
|
1642 |
-
[data-sek-is-mobile-vertical-menu="yes"] .nb-module-menu-search {
|
1643 |
-
display: none;
|
1644 |
-
}
|
1645 |
-
|
1646 |
-
.nb-svg-search-icon {
|
1647 |
-
cursor: pointer;
|
1648 |
-
padding: 0;
|
1649 |
-
}
|
1650 |
-
|
1651 |
-
.nb-module-menu-search .nb-search-expand {
|
1652 |
-
display: none;
|
1653 |
-
background: #fff;
|
1654 |
-
position: absolute;
|
1655 |
-
z-index: 100;
|
1656 |
-
top: 49px;
|
1657 |
-
right: 0;
|
1658 |
-
left: 0;
|
1659 |
-
width: 340px;
|
1660 |
-
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
|
1661 |
-
}
|
1662 |
-
|
1663 |
-
.nb-search-expand .nb-search-expand-inner {
|
1664 |
-
border: 1px solid #eee;
|
1665 |
-
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.15);
|
1666 |
-
transition: -webkit-transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;
|
1667 |
-
transition: height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;
|
1668 |
-
transition: transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;
|
1669 |
-
transition: transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;
|
1670 |
-
padding: 15px;
|
1671 |
-
}
|
1672 |
-
|
1673 |
-
.nb-search-expand .nb-search-expand-inner [role=search].search-form label::after {
|
1674 |
-
content: none;
|
1675 |
-
}
|
1676 |
-
|
1677 |
-
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner [role=search].search-form {
|
1678 |
-
display: -ms-flexbox;
|
1679 |
-
display: flex;
|
1680 |
-
float: none;
|
1681 |
-
}
|
1682 |
-
|
1683 |
-
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner label input[type=search] {
|
1684 |
-
max-width: 100%;
|
1685 |
-
}
|
1686 |
-
|
1687 |
-
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner input[type=submit], [data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search form input[type=submit] {
|
1688 |
-
margin: 0;
|
1689 |
-
background: #808080 !important;
|
1690 |
-
color: #fff;
|
1691 |
-
font-size: 16px;
|
1692 |
-
padding: 10px 10px;
|
1693 |
-
font-weight: normal;
|
1694 |
-
display: inline-block;
|
1695 |
-
border: none;
|
1696 |
-
cursor: pointer;
|
1697 |
-
border-radius: 3px;
|
1698 |
-
}
|
1699 |
-
|
1700 |
-
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner input[type=search], [data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search input[type=search],
|
1701 |
-
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner input[type=submit], [data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search form input[type=submit] {
|
1702 |
-
text-transform: none !important;
|
1703 |
-
}
|
1704 |
-
|
1705 |
-
.nb-mobile-search {
|
1706 |
-
display: none;
|
1707 |
-
}
|
1708 |
-
|
1709 |
-
[data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search {
|
1710 |
-
display: block;
|
1711 |
-
padding: 6px 14px 15px;
|
1712 |
-
}
|
1713 |
-
|
1714 |
-
[data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search input {
|
1715 |
-
font-size: 16px;
|
1716 |
-
}
|
1717 |
-
|
1718 |
-
.nb-search-expand-inner input[type="search"], .nb-mobile-search input[type="search"] {
|
1719 |
-
color: #000000 !important;
|
1720 |
-
}
|
1721 |
-
|
1722 |
-
.nb-search-expand-inner input[type="submit"], .nb-mobile-search input[type="submit"] {
|
1723 |
-
color: #ffffff !important;
|
1724 |
-
}
|
1725 |
-
|
1726 |
/*************************************
|
1727 |
* IMAGE MODULE
|
1728 |
-
*************************************/
|
1729 |
-
[data-sek-module-type="czr_image_module"] {
|
1730 |
-
text-align: center;
|
1731 |
-
}
|
1732 |
-
|
1733 |
-
[data-sek-module-type="czr_image_module"] img {
|
1734 |
-
border: 0 solid #f2f2f2;
|
1735 |
-
}
|
1736 |
-
|
1737 |
-
[data-sek-module-type="czr_image_module"] .box-shadow img {
|
1738 |
-
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0;
|
1739 |
-
}
|
1740 |
-
|
1741 |
-
/* image module transitions for better animations when effects are used */
|
1742 |
-
[data-sek-module-type="czr_image_module"] figure img {
|
1743 |
-
transition: all 0.2s ease-out;
|
1744 |
-
}
|
1745 |
-
|
1746 |
-
[data-sek-module-type="czr_image_module"] figure.has-custom-height {
|
1747 |
-
overflow: hidden;
|
1748 |
-
display: -ms-flexbox;
|
1749 |
-
display: flex;
|
1750 |
-
-ms-flex-pack: center;
|
1751 |
-
justify-content: center;
|
1752 |
-
-ms-flex-align: center;
|
1753 |
-
align-items: center;
|
1754 |
-
}
|
1755 |
-
|
1756 |
-
[data-sek-module-type="czr_image_module"] figure.has-custom-height img {
|
1757 |
-
-o-object-fit: cover;
|
1758 |
-
object-fit: cover;
|
1759 |
-
}
|
1760 |
-
|
1761 |
-
.sek-hover-effect-opacity img:hover {
|
1762 |
-
opacity: .7;
|
1763 |
-
}
|
1764 |
-
|
1765 |
-
.sek-hover-effect-zoom-out img:hover {
|
1766 |
-
-webkit-transform: scale(1.05);
|
1767 |
-
transform: scale(1.05);
|
1768 |
-
}
|
1769 |
-
|
1770 |
-
.sek-hover-effect-zoom-in img:hover {
|
1771 |
-
-webkit-transform: scale(0.95);
|
1772 |
-
transform: scale(0.95);
|
1773 |
-
}
|
1774 |
-
|
1775 |
-
.sek-hover-effect-move-up img:hover {
|
1776 |
-
-webkit-transform: translateY(-6px);
|
1777 |
-
transform: translateY(-6px);
|
1778 |
-
}
|
1779 |
-
|
1780 |
-
.sek-hover-effect-move-down img:hover {
|
1781 |
-
-webkit-transform: translateY(6px);
|
1782 |
-
transform: translateY(6px);
|
1783 |
-
}
|
1784 |
-
|
1785 |
-
.sek-hover-effect-blur img:hover {
|
1786 |
-
-webkit-filter: blur(2px);
|
1787 |
-
filter: blur(2px);
|
1788 |
-
}
|
1789 |
-
|
1790 |
-
.sek-hover-effect-grayscale img:hover {
|
1791 |
-
-webkit-filter: grayscale(0%);
|
1792 |
-
filter: grayscale(0%);
|
1793 |
-
}
|
1794 |
-
|
1795 |
-
.sek-hover-effect-grayscale img:hover {
|
1796 |
-
-webkit-filter: grayscale(100%);
|
1797 |
-
filter: grayscale(100%);
|
1798 |
-
-webkit-filter: gray;
|
1799 |
-
filter: gray;
|
1800 |
-
}
|
1801 |
-
|
1802 |
-
.sek-hover-effect-reverse-grayscale img {
|
1803 |
-
-webkit-filter: grayscale(100%);
|
1804 |
-
filter: grayscale(100%);
|
1805 |
-
-webkit-filter: gray;
|
1806 |
-
filter: gray;
|
1807 |
-
}
|
1808 |
-
|
1809 |
-
.sek-hover-effect-reverse-grayscale img:hover {
|
1810 |
-
-webkit-filter: grayscale(0%);
|
1811 |
-
filter: grayscale(0%);
|
1812 |
-
}
|
1813 |
-
|
1814 |
-
/*************************************
|
1815 |
-
* NIMBLE IMAGE MODULE
|
1816 |
-
*************************************/
|
1817 |
-
.sek-nimble-image-wrapper {
|
1818 |
-
max-width: 100%;
|
1819 |
-
overflow: hidden;
|
1820 |
-
width: 100%;
|
1821 |
-
position: relative;
|
1822 |
-
display: block;
|
1823 |
-
background-position: center center;
|
1824 |
-
background-size: cover;
|
1825 |
-
display: -ms-flexbox;
|
1826 |
-
display: flex;
|
1827 |
-
-ms-flex-align: center;
|
1828 |
-
align-items: center;
|
1829 |
-
-ms-flex-pack: center;
|
1830 |
-
justify-content: center;
|
1831 |
-
-webkit-backface-visibility: hidden;
|
1832 |
-
backface-visibility: hidden;
|
1833 |
-
-webkit-transform-style: preserve-3d;
|
1834 |
-
transform-style: preserve-3d;
|
1835 |
-
}
|
1836 |
-
|
1837 |
-
.sek-nimble-image-wrapper::before {
|
1838 |
-
content: '';
|
1839 |
-
display: block;
|
1840 |
-
padding-top: 100%;
|
1841 |
-
}
|
1842 |
-
|
1843 |
-
.nb-loc [data-sek-level] .sek-module-inner .sek-nimble-image-wrapper a {
|
1844 |
-
color: #ffffff;
|
1845 |
-
}
|
1846 |
-
|
1847 |
-
.nb-loc [data-sek-level] .sek-module-inner .sek-nimble-image-wrapper a:hover {
|
1848 |
-
color: #ffffff;
|
1849 |
-
}
|
1850 |
-
|
1851 |
-
.sek-nimble-image-wrapper .nb-icon-text-wrapper {
|
1852 |
-
position: absolute;
|
1853 |
-
width: 100%;
|
1854 |
-
height: 100%;
|
1855 |
-
z-index: 1;
|
1856 |
-
top: 0;
|
1857 |
-
display: -ms-flexbox;
|
1858 |
-
display: flex;
|
1859 |
-
-ms-flex-direction: column;
|
1860 |
-
flex-direction: column;
|
1861 |
-
-ms-flex-align: center;
|
1862 |
-
align-items: center;
|
1863 |
-
-ms-flex-pack: center;
|
1864 |
-
justify-content: center;
|
1865 |
-
}
|
1866 |
-
|
1867 |
-
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-icon {
|
1868 |
-
font-size: 80px;
|
1869 |
-
line-height: 1em;
|
1870 |
-
color: #000000;
|
1871 |
-
transition: all .3s ease;
|
1872 |
-
}
|
1873 |
-
|
1874 |
-
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text, .sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text * {
|
1875 |
-
color: #000000;
|
1876 |
-
font-size: 16px;
|
1877 |
-
line-height: 1.5em;
|
1878 |
-
font-weight: 400;
|
1879 |
-
transition: all .3s ease;
|
1880 |
-
}
|
1881 |
-
|
1882 |
-
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text p {
|
1883 |
-
margin: 0;
|
1884 |
-
padding: 0;
|
1885 |
-
}
|
1886 |
-
|
1887 |
-
.sek-nimble-image-wrapper.nb-icon-has-hover-color:hover .nb-pro-img-icon {
|
1888 |
-
color: #969696;
|
1889 |
-
}
|
1890 |
-
|
1891 |
-
.sek-nimble-image-mask {
|
1892 |
-
position: absolute;
|
1893 |
-
border-color: #fff;
|
1894 |
-
left: 0;
|
1895 |
-
right: 0;
|
1896 |
-
top: 0;
|
1897 |
-
bottom: 0;
|
1898 |
-
overflow: hidden;
|
1899 |
-
z-index: 1;
|
1900 |
-
display: -ms-flexbox;
|
1901 |
-
display: flex;
|
1902 |
-
-ms-flex-align: center;
|
1903 |
-
align-items: center;
|
1904 |
-
-ms-flex-pack: center;
|
1905 |
-
justify-content: center;
|
1906 |
-
}
|
1907 |
-
|
1908 |
-
.sek-nimble-image-mask::before {
|
1909 |
-
position: absolute;
|
1910 |
-
content: '';
|
1911 |
-
z-index: 1;
|
1912 |
-
border: 150vw solid;
|
1913 |
-
border-color: inherit;
|
1914 |
-
box-sizing: content-box;
|
1915 |
-
transition: all .3s ease;
|
1916 |
-
-webkit-backface-visibility: hidden;
|
1917 |
-
backface-visibility: hidden;
|
1918 |
-
}
|
1919 |
-
|
1920 |
-
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand:hover .sek-nimble-image-mask::before,
|
1921 |
-
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink .sek-nimble-image-mask::before,
|
1922 |
-
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-expanded .sek-nimble-image-mask::before {
|
1923 |
-
width: 88%;
|
1924 |
-
padding-bottom: 88%;
|
1925 |
-
}
|
1926 |
-
|
1927 |
-
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink:hover .sek-nimble-image-mask::before,
|
1928 |
-
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand .sek-nimble-image-mask::before,
|
1929 |
-
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-shrinked .sek-nimble-image-mask::before {
|
1930 |
-
width: 63%;
|
1931 |
-
padding-bottom: 63%;
|
1932 |
-
}
|
1933 |
-
|
1934 |
-
.sek-nimble-image-wrapper.nb-circle-mask .sek-nimble-image-mask::before {
|
1935 |
-
border-radius: 50%;
|
1936 |
-
}
|
1937 |
-
|
1938 |
-
.sek-nimble-image {
|
1939 |
-
position: absolute;
|
1940 |
-
width: 100%;
|
1941 |
-
height: 100%;
|
1942 |
-
background-position: center center;
|
1943 |
-
background-size: cover;
|
1944 |
-
background-repeat: no-repeat;
|
1945 |
-
z-index: 0;
|
1946 |
-
top: 0;
|
1947 |
-
}
|
1948 |
-
|
1949 |
-
.sek-module-inner [data-sek-adv-list-type="none"] > ul {
|
1950 |
-
list-style-type: none;
|
1951 |
-
margin-right: 0 !important;
|
1952 |
-
}
|
1953 |
-
|
1954 |
-
.sek-module-inner [data-sek-adv-list-type="circle"] > ul {
|
1955 |
-
list-style-type: circle;
|
1956 |
-
}
|
1957 |
-
|
1958 |
-
.sek-module-inner [data-sek-adv-list-type="disc"] > ul {
|
1959 |
-
list-style-type: disc;
|
1960 |
-
}
|
1961 |
-
|
1962 |
-
.sek-module-inner [data-sek-adv-list-type="square"] > ul {
|
1963 |
-
list-style-type: square;
|
1964 |
-
}
|
1965 |
-
|
1966 |
-
.sek-module-inner [data-sek-adv-list-type="decimal"] > ol {
|
1967 |
-
list-style-type: decimal;
|
1968 |
-
}
|
1969 |
-
|
1970 |
-
.sek-module-inner [data-sek-adv-list-type="lower-alpha"] > ol {
|
1971 |
-
list-style-type: lower-alpha;
|
1972 |
-
}
|
1973 |
-
|
1974 |
-
.sek-module-inner [data-sek-adv-list-type="lower-roman"] > ol {
|
1975 |
-
list-style-type: lower-roman;
|
1976 |
-
}
|
1977 |
-
|
1978 |
-
.sek-module-inner [data-sek-adv-list-type="upper-roman"] > ol {
|
1979 |
-
list-style-type: upper-roman;
|
1980 |
-
}
|
1981 |
-
|
1982 |
-
.sek-module-inner [data-sek-adv-list-type="upper-alpha"] > ol {
|
1983 |
-
list-style-type: upper-alpha;
|
1984 |
-
}
|
1985 |
-
|
1986 |
-
.sek-module-inner .sek-adv-list-wrapper ul, .sek-module-inner .sek-adv-list-wrapper ol {
|
1987 |
-
padding: 0;
|
1988 |
-
line-height: 1.5;
|
1989 |
-
margin: 0;
|
1990 |
-
margin-right: 25px;
|
1991 |
-
}
|
1992 |
-
|
1993 |
-
.sek-module-inner .sek-adv-list-wrapper ul li, .sek-module-inner .sek-adv-list-wrapper ol li {
|
1994 |
-
text-indent: 0px;
|
1995 |
-
}
|
1996 |
-
|
1997 |
-
.sek-module-inner [data-sek-adv-list-layout="vertical"] ul li, .sek-module-inner [data-sek-adv-list-layout="vertical"] ol li {
|
1998 |
-
display: list-item;
|
1999 |
-
}
|
2000 |
-
|
2001 |
-
.sek-module-inner [data-sek-adv-list-layout="horizontal"] ul li, .sek-module-inner [data-sek-adv-list-layout="horizontal"] ol li {
|
2002 |
-
display: inline-block;
|
2003 |
-
}
|
2004 |
-
|
2005 |
-
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-inner {
|
2006 |
-
display: -ms-flexbox;
|
2007 |
-
display: flex;
|
2008 |
-
}
|
2009 |
-
|
2010 |
-
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text {
|
2011 |
-
transition: color 0.2s ease-in-out;
|
2012 |
-
-ms-flex-align: center;
|
2013 |
-
align-items: center;
|
2014 |
-
display: -ms-flexbox;
|
2015 |
-
display: flex;
|
2016 |
-
}
|
2017 |
-
|
2018 |
-
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text p {
|
2019 |
-
margin: 0;
|
2020 |
-
}
|
2021 |
-
|
2022 |
-
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text a {
|
2023 |
-
cursor: pointer;
|
2024 |
-
}
|
2025 |
-
|
2026 |
-
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text a:hover {
|
2027 |
-
text-decoration: underline;
|
2028 |
-
}
|
2029 |
-
|
2030 |
-
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-icon {
|
2031 |
-
margin-right: 10px;
|
2032 |
-
-ms-flex-negative: 0;
|
2033 |
-
flex-shrink: 0;
|
2034 |
-
-ms-flex-positive: 0;
|
2035 |
-
flex-grow: 0;
|
2036 |
-
}
|
2037 |
-
|
2038 |
-
.sek-module-inner .sek-adv-list-item [data-sek-icon-border="circle"], .sek-module-inner .sek-adv-list-item [data-sek-icon-border="square"] {
|
2039 |
-
border: 1px solid;
|
2040 |
-
width: 2.2em;
|
2041 |
-
height: 2.2em;
|
2042 |
-
display: -ms-flexbox;
|
2043 |
-
display: flex;
|
2044 |
-
-ms-flex-align: center;
|
2045 |
-
align-items: center;
|
2046 |
-
-ms-flex-pack: center;
|
2047 |
-
justify-content: center;
|
2048 |
-
}
|
2049 |
-
|
2050 |
-
.sek-module-inner .sek-adv-list-item [data-sek-icon-border="circle"] {
|
2051 |
-
border-radius: 2em;
|
2052 |
-
}
|
2053 |
-
|
2054 |
-
/*************************************
|
2055 |
-
* DIVIDER MODULE
|
2056 |
-
*************************************/
|
2057 |
-
[data-sek-module-type="czr_divider_module"] {
|
2058 |
-
text-align: center;
|
2059 |
-
}
|
2060 |
-
|
2061 |
-
[data-sek-module-type="czr_divider_module"] .sek-module-inner {
|
2062 |
-
font-size: 0;
|
2063 |
-
line-height: 0;
|
2064 |
-
}
|
2065 |
-
|
2066 |
-
.sek-module-inner .sek-divider {
|
2067 |
-
border-top: 1px solid #5a5a5a;
|
2068 |
-
display: inline-block;
|
2069 |
-
width: 100%;
|
2070 |
-
margin-top: 15px;
|
2071 |
-
margin-bottom: 15px;
|
2072 |
-
font-size: 1rem;
|
2073 |
-
}
|
2074 |
-
|
2075 |
-
/*************************************
|
2076 |
-
* SPACER MODULE
|
2077 |
-
*************************************/
|
2078 |
-
.sek-module-inner .sek-spacer {
|
2079 |
-
height: 20px;
|
2080 |
-
}
|
2081 |
-
|
2082 |
-
/*************************************
|
2083 |
-
* ICON MODULE
|
2084 |
-
*************************************/
|
2085 |
-
[data-sek-module-type="czr_icon_module"] {
|
2086 |
-
text-align: center;
|
2087 |
-
color: #5a5a5a;
|
2088 |
-
font-size: 15px;
|
2089 |
-
}
|
2090 |
-
|
2091 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon,
|
2092 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon:hover,
|
2093 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon:focus,
|
2094 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon:active,
|
2095 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon.active {
|
2096 |
-
color: inherit;
|
2097 |
-
}
|
2098 |
-
|
2099 |
-
[data-sek-module-type="czr_icon_module"] .box-shadow .sek-icon-wrapper {
|
2100 |
-
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0;
|
2101 |
-
}
|
2102 |
-
|
2103 |
-
[data-sek-module-type="czr_icon_module"] .sek-icon i {
|
2104 |
-
transition: all 0.15s ease-in-out;
|
2105 |
-
}
|
2106 |
-
|
2107 |
-
[data-sek-module-type="czr_icon_module"] .sek-icon .fas, [data-sek-module-type="czr_icon_module"] .sek-icon .far, [data-sek-module-type="czr_icon_module"] .sek-icon .fab {
|
2108 |
-
width: 1em;
|
2109 |
-
height: 1em;
|
2110 |
-
text-align: center;
|
2111 |
-
}
|
2112 |
-
|
2113 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon {
|
2114 |
-
box-shadow: none;
|
2115 |
-
-webkit-box-shadow: none;
|
2116 |
-
}
|
2117 |
-
|
2118 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon:hover, [data-sek-module-type="czr_icon_module"] a.sek-icon:focus, [data-sek-module-type="czr_icon_module"] a.sek-icon:active {
|
2119 |
-
box-shadow: none;
|
2120 |
-
-webkit-box-shadow: none;
|
2121 |
-
}
|
2122 |
-
|
2123 |
-
[data-sek-module-type="czr_icon_module"] .sek-icon-wrapper {
|
2124 |
-
display: inline-block;
|
2125 |
-
line-height: 1em;
|
2126 |
-
}
|
2127 |
-
|
2128 |
-
/*************************************
|
2129 |
-
* QUOTE MODULE
|
2130 |
-
*************************************/
|
2131 |
-
.sek-quote p {
|
2132 |
-
margin: 0 0 .5em;
|
2133 |
-
padding: 0;
|
2134 |
-
}
|
2135 |
-
|
2136 |
-
.sek-quote .sek-cite {
|
2137 |
-
font-size: 14px;
|
2138 |
-
line-height: 1.5em;
|
2139 |
-
font-style: inherit;
|
2140 |
-
}
|
2141 |
-
|
2142 |
-
.sek-quote[data-sek-quote-design="none"] {
|
2143 |
-
border-left: none;
|
2144 |
-
}
|
2145 |
-
|
2146 |
-
.sek-quote .sek-quote-content {
|
2147 |
-
font-weight: 400;
|
2148 |
-
font-size: 1.2em;
|
2149 |
-
line-height: 1.5em;
|
2150 |
-
color: inherit;
|
2151 |
-
}
|
2152 |
-
|
2153 |
-
.sek-quote.sek-quote-design {
|
2154 |
-
background: none;
|
2155 |
-
font-style: inherit;
|
2156 |
-
margin-right: 0;
|
2157 |
-
margin-left: 0;
|
2158 |
-
padding: 15px 0;
|
2159 |
-
border: none;
|
2160 |
-
}
|
2161 |
-
|
2162 |
-
.sek-quote.sek-quote-design > * {
|
2163 |
-
padding: 0;
|
2164 |
-
margin: 0;
|
2165 |
-
}
|
2166 |
-
|
2167 |
-
.sek-quote.sek-quote-design::before, .sek-quote.sek-quote-design::after {
|
2168 |
-
display: none;
|
2169 |
-
}
|
2170 |
-
|
2171 |
-
.sek-quote.sek-quote-design .sek-cite {
|
2172 |
-
padding: 0;
|
2173 |
-
font-weight: normal;
|
2174 |
-
}
|
2175 |
-
|
2176 |
-
.sek-quote.sek-quote-design .sek-cite::before {
|
2177 |
-
display: none;
|
2178 |
-
}
|
2179 |
-
|
2180 |
-
.sek-quote.sek-quote-design .sek-quote-inner {
|
2181 |
-
color: inherit;
|
2182 |
-
}
|
2183 |
-
|
2184 |
-
.sek-quote.sek-quote-design.sek-quote-icon-before .sek-quote-inner {
|
2185 |
-
padding-right: 45px;
|
2186 |
-
}
|
2187 |
-
|
2188 |
-
.sek-quote.sek-quote-design.sek-border-before {
|
2189 |
-
padding-right: 15px;
|
2190 |
-
border-right: 5px solid rgba(0, 0, 0, 0.1);
|
2191 |
-
}
|
2192 |
-
|
2193 |
-
.sek-quote.sek-quote-design.sek-border-before .sek-cite {
|
2194 |
-
clear: both;
|
2195 |
-
display: block;
|
2196 |
-
margin-top: 1.5em;
|
2197 |
-
position: relative;
|
2198 |
-
padding-right: 2.2em;
|
2199 |
-
padding-left: 0.25em;
|
2200 |
-
}
|
2201 |
-
|
2202 |
-
.sek-quote.sek-quote-design.sek-border-before .sek-cite::before {
|
2203 |
-
display: block;
|
2204 |
-
content: '';
|
2205 |
-
top: 1em;
|
2206 |
-
position: absolute;
|
2207 |
-
background: none;
|
2208 |
-
width: 2em;
|
2209 |
-
height: auto;
|
2210 |
-
right: 0;
|
2211 |
-
border-top: 1px solid;
|
2212 |
-
}
|
2213 |
-
|
2214 |
-
.sek-quote.sek-quote-design.sek-quote-icon-before {
|
2215 |
-
position: relative;
|
2216 |
-
display: -ms-flexbox;
|
2217 |
-
display: flex;
|
2218 |
-
}
|
2219 |
-
|
2220 |
-
.sek-quote.sek-quote-design.sek-quote-icon-before .sek-quote-content *:last-child {
|
2221 |
-
margin-bottom: .75em;
|
2222 |
-
}
|
2223 |
-
|
2224 |
-
.sek-quote.sek-quote-design.sek-quote-icon-before::before {
|
2225 |
-
content: "\275D";
|
2226 |
-
font-family: "Arial Unicode MS", Code2000;
|
2227 |
-
font-size: 50px;
|
2228 |
-
line-height: 1em;
|
2229 |
-
color: #ccc;
|
2230 |
-
font-style: normal;
|
2231 |
-
text-align: center;
|
2232 |
-
-moz-osx-font-smoothing: grayscale;
|
2233 |
-
-webkit-font-smoothing: antialiased;
|
2234 |
-
font-variant: normal;
|
2235 |
-
text-rendering: auto;
|
2236 |
-
display: -ms-flexbox;
|
2237 |
-
display: flex;
|
2238 |
-
width: auto;
|
2239 |
-
margin: 0;
|
2240 |
-
right: 0;
|
2241 |
-
position: absolute;
|
2242 |
-
top: 10px;
|
2243 |
-
}
|
2244 |
-
|
2245 |
-
/*************************************
|
2246 |
-
* BUTTON MODULE
|
2247 |
-
*************************************/
|
2248 |
-
[data-sek-module-type="czr_button_module"] .sek-module-inner {
|
2249 |
-
text-align: center;
|
2250 |
-
}
|
2251 |
-
|
2252 |
-
.nb-loc .sek-module .sek-module-inner .sek-btn {
|
2253 |
-
background: #020202;
|
2254 |
-
color: #ffffff;
|
2255 |
-
padding: 0.5em 1em;
|
2256 |
-
margin: 0.5em;
|
2257 |
-
}
|
2258 |
-
|
2259 |
-
.nb-loc .sek-module .sek-module-inner .sek-btn i {
|
2260 |
-
margin: 0 8px;
|
2261 |
-
}
|
2262 |
-
|
2263 |
-
.nb-loc .sek-module .sek-module-inner .sek-btn:hover, .nb-loc .sek-module .sek-module-inner .sek-btn:focus, .nb-loc .sek-module .sek-module-inner .sek-btn:active {
|
2264 |
-
color: #ffffff;
|
2265 |
-
background-color: #282828;
|
2266 |
-
text-decoration: none;
|
2267 |
-
}
|
2268 |
-
|
2269 |
-
[data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:focus, [data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:hover {
|
2270 |
-
text-decoration: none;
|
2271 |
-
}
|
2272 |
-
|
2273 |
-
.sek-btn-inner {
|
2274 |
-
display: -ms-flexbox;
|
2275 |
-
display: flex;
|
2276 |
-
-ms-flex-align: center;
|
2277 |
-
align-items: center;
|
2278 |
-
}
|
2279 |
-
|
2280 |
-
.sek-btn-inner .sek-btn-text {
|
2281 |
-
width: 100%;
|
2282 |
-
text-align: center;
|
2283 |
-
}
|
2284 |
-
|
2285 |
-
.sek-btn.box-shadow {
|
2286 |
-
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
2287 |
-
}
|
2288 |
-
|
2289 |
-
.sek-btn.box-shadow.push-effect:active {
|
2290 |
-
-webkit-transform: translateY(2px);
|
2291 |
-
transform: translateY(2px);
|
2292 |
-
}
|
2293 |
-
|
2294 |
-
/*************************************
|
2295 |
-
* POST GRID MODULE
|
2296 |
-
*************************************/
|
2297 |
-
.sek-post-grid-wrapper {
|
2298 |
-
margin-top: 1.5rem;
|
2299 |
-
margin-bottom: 1.5rem;
|
2300 |
-
}
|
2301 |
-
|
2302 |
-
.sek-post-grid-wrapper .sek-grid-items {
|
2303 |
-
grid-row-gap: 25px;
|
2304 |
-
}
|
2305 |
-
|
2306 |
-
.sek-post-grid-wrapper .sek-grid-items.sek-list-layout article > *:not(:last-child):not(.sek-pg-thumbnail) {
|
2307 |
-
margin-bottom: 10px;
|
2308 |
-
}
|
2309 |
-
|
2310 |
-
.sek-post-grid-wrapper .sek-grid-items.sek-grid-layout article > *:not(:last-child) {
|
2311 |
-
margin-bottom: 10px;
|
2312 |
-
}
|
2313 |
-
|
2314 |
-
.sek-post-grid-wrapper .sek-grid-items article {
|
2315 |
-
overflow: hidden;
|
2316 |
-
}
|
2317 |
-
|
2318 |
-
.sek-post-grid-wrapper .sek-grid-items article > :first-child {
|
2319 |
-
margin-top: 0 !important;
|
2320 |
-
}
|
2321 |
-
|
2322 |
-
.sek-post-grid-wrapper .sek-grid-items article > :last-child {
|
2323 |
-
margin-top: 0 !important;
|
2324 |
-
}
|
2325 |
-
|
2326 |
-
.sek-post-grid-wrapper .sek-grid-items article > *:not(:last-child) {
|
2327 |
-
margin-top: 0 !important;
|
2328 |
-
}
|
2329 |
-
|
2330 |
-
.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > *:not(:last-child) {
|
2331 |
-
margin-top: 0 !important;
|
2332 |
-
margin-bottom: 10px;
|
2333 |
-
}
|
2334 |
-
|
2335 |
-
.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > :first-child {
|
2336 |
-
margin-top: 0 !important;
|
2337 |
-
}
|
2338 |
-
|
2339 |
-
.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > :last-child {
|
2340 |
-
margin-top: 0 !important;
|
2341 |
-
}
|
2342 |
-
|
2343 |
-
.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article {
|
2344 |
-
box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);
|
2345 |
-
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
|
2346 |
-
}
|
2347 |
-
|
2348 |
-
.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article:hover {
|
2349 |
-
-webkit-transform: translateY(-4px);
|
2350 |
-
transform: translateY(-4px);
|
2351 |
-
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18), 0 10px 10px rgba(0, 0, 0, 0.15);
|
2352 |
-
}
|
2353 |
-
|
2354 |
-
.sek-post-grid-wrapper .sek-pg-thumbnail {
|
2355 |
-
background: inherit;
|
2356 |
-
overflow: hidden;
|
2357 |
-
}
|
2358 |
-
|
2359 |
-
.sek-post-grid-wrapper .sek-pg-thumbnail img {
|
2360 |
-
box-shadow: 0 5px 5px 0 rgba(18, 63, 82, 0.035), 0 0 0 1px rgba(176, 181, 193, 0.2);
|
2361 |
-
border-radius: 4px;
|
2362 |
-
}
|
2363 |
-
|
2364 |
-
.sek-post-grid-wrapper .sek-pg-thumbnail a {
|
2365 |
-
display: block;
|
2366 |
-
position: relative;
|
2367 |
-
}
|
2368 |
-
|
2369 |
-
.sek-post-grid-wrapper .sek-pg-thumbnail img {
|
2370 |
-
display: block;
|
2371 |
-
width: 100%;
|
2372 |
-
height: auto;
|
2373 |
-
}
|
2374 |
-
|
2375 |
-
.sek-post-grid-wrapper.nb-thumb-box-shadow article .sek-pg-thumbnail img {
|
2376 |
-
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
2377 |
-
}
|
2378 |
-
|
2379 |
-
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a {
|
2380 |
-
height: 0;
|
2381 |
-
padding-top: 65%;
|
2382 |
-
}
|
2383 |
-
|
2384 |
-
@media all and (-ms-high-contrast: none) {
|
2385 |
-
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a {
|
2386 |
-
height: auto !important;
|
2387 |
-
padding-top: inherit !important;
|
2388 |
-
}
|
2389 |
-
}
|
2390 |
-
|
2391 |
-
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img {
|
2392 |
-
position: absolute;
|
2393 |
-
height: 100%;
|
2394 |
-
width: 100%;
|
2395 |
-
max-height: none;
|
2396 |
-
max-width: none;
|
2397 |
-
top: 0;
|
2398 |
-
left: 0;
|
2399 |
-
right: 0;
|
2400 |
-
bottom: 0;
|
2401 |
-
-o-object-fit: cover;
|
2402 |
-
object-fit: cover;
|
2403 |
-
}
|
2404 |
-
|
2405 |
-
@media all and (-ms-high-contrast: none) {
|
2406 |
-
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img {
|
2407 |
-
height: auto !important;
|
2408 |
-
position: relative;
|
2409 |
-
}
|
2410 |
-
}
|
2411 |
-
|
2412 |
-
.sek-post-grid-wrapper .sek-pg-metas > span:not(:last-child)::after {
|
2413 |
-
content: "\B7";
|
2414 |
-
vertical-align: middle;
|
2415 |
-
margin: 0 5px;
|
2416 |
-
line-height: 1;
|
2417 |
-
}
|
2418 |
-
|
2419 |
-
.sek-post-grid-wrapper .sek-pg-content {
|
2420 |
-
text-align: right;
|
2421 |
-
}
|
2422 |
-
|
2423 |
-
.sek-post-grid-wrapper .sek-excerpt > :last-child {
|
2424 |
-
margin-bottom: 0;
|
2425 |
-
}
|
2426 |
-
|
2427 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-category {
|
2428 |
-
line-height: 1.2em;
|
2429 |
-
color: #767676;
|
2430 |
-
}
|
2431 |
-
|
2432 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-category a {
|
2433 |
-
text-transform: uppercase;
|
2434 |
-
font-size: 13px;
|
2435 |
-
text-decoration: none;
|
2436 |
-
color: #767676;
|
2437 |
-
}
|
2438 |
-
|
2439 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-category a:hover {
|
2440 |
-
color: inherit;
|
2441 |
-
text-decoration: underline;
|
2442 |
-
}
|
2443 |
-
|
2444 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title {
|
2445 |
-
font-size: 28px;
|
2446 |
-
line-height: 1.1em;
|
2447 |
-
}
|
2448 |
-
|
2449 |
-
@media (max-width: 991.98px) {
|
2450 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title {
|
2451 |
-
font-size: 22px;
|
2452 |
-
}
|
2453 |
-
}
|
2454 |
-
|
2455 |
-
@media (max-width: 575.98px) {
|
2456 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title {
|
2457 |
-
font-size: 20px;
|
2458 |
-
}
|
2459 |
-
}
|
2460 |
-
|
2461 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {
|
2462 |
-
text-decoration: none;
|
2463 |
-
color: #121212;
|
2464 |
-
font-size: 28px;
|
2465 |
-
font-weight: 400;
|
2466 |
-
line-height: 1.1em;
|
2467 |
-
-ms-word-wrap: break-word;
|
2468 |
-
word-wrap: break-word;
|
2469 |
-
}
|
2470 |
-
|
2471 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a:hover {
|
2472 |
-
color: #666;
|
2473 |
-
}
|
2474 |
-
|
2475 |
-
@media (max-width: 991.98px) {
|
2476 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {
|
2477 |
-
font-size: 22px;
|
2478 |
-
}
|
2479 |
-
}
|
2480 |
-
|
2481 |
-
@media (max-width: 575.98px) {
|
2482 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {
|
2483 |
-
font-size: 20px;
|
2484 |
-
}
|
2485 |
-
}
|
2486 |
-
|
2487 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas {
|
2488 |
-
line-height: 1.2em;
|
2489 |
-
}
|
2490 |
-
|
2491 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas span, .nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas a {
|
2492 |
-
text-transform: uppercase;
|
2493 |
-
font-size: 13px;
|
2494 |
-
letter-spacing: 1px;
|
2495 |
-
color: #767676;
|
2496 |
-
}
|
2497 |
-
|
2498 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas a:hover {
|
2499 |
-
text-decoration: underline;
|
2500 |
-
color: inherit;
|
2501 |
-
}
|
2502 |
-
|
2503 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-content p {
|
2504 |
-
margin: 0 0 10px 0;
|
2505 |
-
line-height: 1.3em;
|
2506 |
-
font-size: 14px;
|
2507 |
-
color: #555;
|
2508 |
-
}
|
2509 |
-
|
2510 |
-
.sek-post-grid-wrapper .sek-list-layout {
|
2511 |
-
display: -ms-grid;
|
2512 |
-
display: grid;
|
2513 |
-
-ms-grid-columns: minmax(0, 1fr);
|
2514 |
-
grid-template-columns: minmax(0, 1fr);
|
2515 |
-
}
|
2516 |
-
|
2517 |
-
@media all and (-ms-high-contrast: none) {
|
2518 |
-
.sek-post-grid-wrapper .sek-list-layout {
|
2519 |
-
display: block !important;
|
2520 |
-
}
|
2521 |
-
}
|
2522 |
-
|
2523 |
-
.sek-post-grid-wrapper .sek-list-layout article {
|
2524 |
-
display: -ms-grid;
|
2525 |
-
display: grid;
|
2526 |
-
-ms-grid-columns: minmax(0, 1fr);
|
2527 |
-
grid-template-columns: minmax(0, 1fr);
|
2528 |
-
-ms-grid-rows: 1fr;
|
2529 |
-
grid-template-rows: 1fr;
|
2530 |
-
grid-column-gap: 20px;
|
2531 |
-
}
|
2532 |
-
|
2533 |
-
@media all and (-ms-high-contrast: none) {
|
2534 |
-
.sek-post-grid-wrapper .sek-list-layout article {
|
2535 |
-
display: block !important;
|
2536 |
-
padding-top: 10px;
|
2537 |
-
}
|
2538 |
-
}
|
2539 |
-
|
2540 |
-
.sek-post-grid-wrapper .sek-list-layout article > *:nth-child(1) {
|
2541 |
-
-ms-grid-row: 1;
|
2542 |
-
-ms-grid-column: 1;
|
2543 |
-
}
|
2544 |
-
|
2545 |
-
.sek-post-grid-wrapper .sek-list-layout article.sek-has-thumb {
|
2546 |
-
-ms-grid-columns: 30% minmax(0, 1fr);
|
2547 |
-
grid-template-columns: 30% minmax(0, 1fr);
|
2548 |
-
}
|
2549 |
-
|
2550 |
-
.sek-post-grid-wrapper .sek-list-layout article .sek-pg-thumbnail {
|
2551 |
-
margin-bottom: 0;
|
2552 |
-
-ms-flex-item-align: start;
|
2553 |
-
align-self: flex-start;
|
2554 |
-
}
|
2555 |
-
|
2556 |
-
.sek-post-grid-wrapper .sek-grid-layout {
|
2557 |
-
display: -ms-grid;
|
2558 |
-
display: grid;
|
2559 |
-
-ms-grid-columns: 1fr 20px 1fr;
|
2560 |
-
grid-template-columns: 1fr 1fr;
|
2561 |
-
-ms-grid-rows: 1fr;
|
2562 |
-
grid-template-rows: 1fr;
|
2563 |
-
grid-row-gap: 20px;
|
2564 |
-
grid-column-gap: 20px;
|
2565 |
-
}
|
2566 |
-
|
2567 |
-
@media all and (-ms-high-contrast: none) {
|
2568 |
-
.sek-post-grid-wrapper .sek-grid-layout {
|
2569 |
-
display: block !important;
|
2570 |
-
}
|
2571 |
-
}
|
2572 |
-
|
2573 |
-
.sek-post-grid-wrapper .sek-grid-layout > *:nth-child(1) {
|
2574 |
-
-ms-grid-row: 1;
|
2575 |
-
-ms-grid-column: 1;
|
2576 |
-
}
|
2577 |
-
|
2578 |
-
.sek-post-grid-wrapper .sek-grid-layout > *:nth-child(2) {
|
2579 |
-
-ms-grid-row: 1;
|
2580 |
-
-ms-grid-column: 3;
|
2581 |
-
}
|
2582 |
-
|
2583 |
-
.sek-module-inner .nb-masonry-post-grid .sek-grid-items.nb-masonry-grid-images-loaded {
|
2584 |
-
grid-auto-rows: 5px;
|
2585 |
-
}
|
2586 |
-
|
2587 |
-
.sek-module-inner .nb-masonry-post-grid .sek-grid-items article {
|
2588 |
-
overflow: hidden;
|
2589 |
-
}
|
2590 |
-
|
2591 |
-
.sek-module-inner .nb-masonry-post-grid .sek-grid-items.sek-thumb-no-custom-height .sek-pg-thumbnail a {
|
2592 |
-
height: auto;
|
2593 |
-
padding-top: 0;
|
2594 |
-
}
|
2595 |
-
|
2596 |
-
.sek-module-inner .nb-masonry-post-grid .sek-grid-items.sek-thumb-no-custom-height .sek-pg-thumbnail img {
|
2597 |
-
position: relative;
|
2598 |
-
height: auto;
|
2599 |
-
width: 100%;
|
2600 |
-
}
|
2601 |
-
|
2602 |
-
.sek-module-inner .nb-item-box-shadow .sek-grid-items article {
|
2603 |
-
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
2604 |
-
}
|
2605 |
-
|
2606 |
-
.sek-post-navigation #sek-nav-below {
|
2607 |
-
background-color: #f7f8f9;
|
2608 |
-
margin-top: 20px;
|
2609 |
-
padding: 5px;
|
2610 |
-
}
|
2611 |
-
|
2612 |
-
.sek-post-navigation #sek-nav-below .sek-pagination {
|
2613 |
-
text-align: center;
|
2614 |
-
}
|
2615 |
-
|
2616 |
-
.sek-post-navigation #sek-nav-below .sek-pagination ul {
|
2617 |
-
display: inline-block;
|
2618 |
-
vertical-align: middle;
|
2619 |
-
margin: 0;
|
2620 |
-
}
|
2621 |
-
|
2622 |
-
.sek-post-navigation #sek-nav-below .sek-pagination .page-numbers {
|
2623 |
-
font-family: inherit;
|
2624 |
-
opacity: 0.7;
|
2625 |
-
text-decoration: none !important;
|
2626 |
-
}
|
2627 |
-
|
2628 |
-
.sek-post-navigation #sek-nav-below .sek-pagination .current {
|
2629 |
-
font-weight: 600;
|
2630 |
-
opacity: 1;
|
2631 |
-
}
|
2632 |
-
|
2633 |
-
.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list > * {
|
2634 |
-
margin: 0 5px;
|
2635 |
-
}
|
2636 |
-
|
2637 |
-
.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list {
|
2638 |
-
margin: 0 -5px;
|
2639 |
-
}
|
2640 |
-
|
2641 |
-
.sek-post-navigation #sek-nav-below nav {
|
2642 |
-
padding-top: 20px;
|
2643 |
-
padding-bottom: 20px;
|
2644 |
-
}
|
2645 |
-
|
2646 |
-
.sek-post-navigation #sek-nav-below ul.sek-czr-pager {
|
2647 |
-
margin: 0;
|
2648 |
-
}
|
2649 |
-
|
2650 |
-
.sek-post-navigation #sek-nav-below li {
|
2651 |
-
display: inline-block;
|
2652 |
-
font-size: 16px;
|
2653 |
-
}
|
2654 |
-
|
2655 |
-
.sek-post-navigation #sek-nav-below a, .sek-post-navigation #sek-nav-below .sek-meta-nav-title {
|
2656 |
-
text-transform: uppercase;
|
2657 |
-
letter-spacing: 2px;
|
2658 |
-
color: #5A5A5A;
|
2659 |
-
}
|
2660 |
-
|
2661 |
-
.sek-post-navigation #sek-nav-below a:hover, .sek-post-navigation #sek-nav-below .sek-meta-nav-title:hover {
|
2662 |
-
color: #3b3b3b;
|
2663 |
-
opacity: 1 !important;
|
2664 |
-
}
|
2665 |
-
|
2666 |
-
.sek-post-navigation #sek-nav-below .sek-czr-pager > li {
|
2667 |
-
display: block;
|
2668 |
-
}
|
2669 |
-
|
2670 |
-
.sek-post-navigation #sek-nav-below .sek-nav-dir {
|
2671 |
-
display: block;
|
2672 |
-
}
|
2673 |
-
|
2674 |
-
.sek-post-navigation #sek-nav-below .sek-nav-dir > a {
|
2675 |
-
max-width: 100%;
|
2676 |
-
}
|
2677 |
-
|
2678 |
-
.sek-post-navigation #sek-nav-below a i.arrow {
|
2679 |
-
font-size: 0.9em;
|
2680 |
-
}
|
2681 |
-
|
2682 |
-
.sek-post-navigation #sek-nav-below .page-numbers, .sek-post-navigation #sek-nav-below a {
|
2683 |
-
font-family: inherit;
|
2684 |
-
line-height: 30px;
|
2685 |
-
height: 30px;
|
2686 |
-
display: inline-block;
|
2687 |
-
vertical-align: middle;
|
2688 |
-
transition: all 0.3s ease;
|
2689 |
-
position: relative;
|
2690 |
-
}
|
2691 |
-
|
2692 |
-
.sek-post-navigation #sek-nav-below .sek-meta-nav {
|
2693 |
-
display: -ms-flexbox;
|
2694 |
-
display: flex;
|
2695 |
-
transition: all .2s,.6s ease;
|
2696 |
-
opacity: .7;
|
2697 |
-
}
|
2698 |
-
|
2699 |
-
.sek-post-navigation #sek-nav-below a:hover .sek-meta-nav {
|
2700 |
-
opacity: 1;
|
2701 |
-
text-decoration: underline;
|
2702 |
-
}
|
2703 |
-
|
2704 |
-
.sek-post-navigation #sek-nav-below .sek-meta-nav-title {
|
2705 |
-
display: inline-block;
|
2706 |
-
overflow: hidden;
|
2707 |
-
text-overflow: ellipsis;
|
2708 |
-
white-space: nowrap;
|
2709 |
-
vertical-align: middle;
|
2710 |
-
font-size: 0.9em;
|
2711 |
-
}
|
2712 |
-
|
2713 |
/*************************************
|
2714 |
* SIMPLE FORM MODULE
|
2715 |
-
*************************************/
|
2716 |
-
.sek-simple-form-wrapper input[type=text], .sek-simple-form-wrapper textarea {
|
2717 |
-
font-size: 16px;
|
2718 |
-
width: 100% !important;
|
2719 |
-
padding: 0.4em 0.5em;
|
2720 |
-
border-radius: 3px;
|
2721 |
-
box-sizing: border-box;
|
2722 |
-
outline: none;
|
2723 |
-
font-weight: normal;
|
2724 |
-
max-width: 100%;
|
2725 |
-
border: none;
|
2726 |
-
color: #555555;
|
2727 |
-
background-color: #ffffff;
|
2728 |
-
}
|
2729 |
-
|
2730 |
-
.sek-simple-form-wrapper textarea {
|
2731 |
-
height: auto;
|
2732 |
-
max-height: 150px;
|
2733 |
-
}
|
2734 |
-
|
2735 |
-
.sek-simple-form-wrapper .sek-form-field {
|
2736 |
-
margin-bottom: 15px;
|
2737 |
-
clear: both;
|
2738 |
-
}
|
2739 |
-
|
2740 |
-
.sek-simple-form-wrapper label {
|
2741 |
-
color: #444444;
|
2742 |
-
font-weight: bold;
|
2743 |
-
text-align: left;
|
2744 |
-
margin: 0;
|
2745 |
-
padding: 0 0 3px 0;
|
2746 |
-
width: auto;
|
2747 |
-
display: block;
|
2748 |
-
}
|
2749 |
-
|
2750 |
-
.sek-simple-form-wrapper.use-outset-shadow .sek-form-field input[type="text"], .sek-simple-form-wrapper.use-outset-shadow .sek-form-field textarea {
|
2751 |
-
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
2752 |
-
}
|
2753 |
-
|
2754 |
-
.sek-simple-form-wrapper.use-inset-shadow .sek-form-field input[type="text"], .sek-simple-form-wrapper.use-inset-shadow .sek-form-field textarea {
|
2755 |
-
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
2756 |
-
}
|
2757 |
-
|
2758 |
-
.sek-simple-form-wrapper #sek-form-respond {
|
2759 |
-
padding: 20px 0;
|
2760 |
-
}
|
2761 |
-
|
2762 |
-
.sek-simple-form-wrapper input[type="checkbox"] + label {
|
2763 |
-
display: inline;
|
2764 |
-
font-weight: bold;
|
2765 |
-
margin-left: 0.5rem;
|
2766 |
-
}
|
2767 |
-
|
2768 |
-
.sek-form-message {
|
2769 |
-
padding: 10px;
|
2770 |
-
margin: 10px 0;
|
2771 |
-
text-align: center;
|
2772 |
-
line-height: 1.5em;
|
2773 |
-
font-size: 16px;
|
2774 |
-
border-radius: 4px;
|
2775 |
-
}
|
2776 |
-
|
2777 |
-
.sek-form-message.sek-mail-failure {
|
2778 |
-
color: #ff0000;
|
2779 |
-
border: 1px solid #ff0000;
|
2780 |
-
background: none;
|
2781 |
-
background: rgba(255, 0, 0, 0.05);
|
2782 |
-
}
|
2783 |
-
|
2784 |
-
.sek-form-message.sek-mail-success {
|
2785 |
-
color: #008000;
|
2786 |
-
border: 1px solid #008000;
|
2787 |
-
background: none;
|
2788 |
-
background: rgba(0, 128, 0, 0.05);
|
2789 |
-
}
|
2790 |
-
|
2791 |
-
.sek-form-message.sek-mail-aborted {
|
2792 |
-
color: #ffa500;
|
2793 |
-
border: 1px solid #ffa500;
|
2794 |
-
background: none;
|
2795 |
-
background: rgba(255, 165, 0, 0.05);
|
2796 |
-
}
|
2797 |
-
|
2798 |
-
.grecaptcha-badge {
|
2799 |
-
z-index: 1;
|
2800 |
-
}
|
2801 |
-
|
2802 |
-
.sek-hide-rc-badge .grecaptcha-badge {
|
2803 |
-
display: none;
|
2804 |
-
}
|
2805 |
-
|
2806 |
-
.sek-show-rc-badge .grecaptcha-badge {
|
2807 |
-
display: block;
|
2808 |
-
visibility: visible !important;
|
2809 |
-
}
|
2810 |
-
|
2811 |
/*************************************
|
2812 |
* TINY MCE EDITOR MODULE
|
2813 |
-
*************************************/
|
2814 |
-
[data-sek-module-type="czr_tiny_mce_editor_module"] a {
|
2815 |
-
text-decoration: underline;
|
2816 |
-
}
|
2817 |
-
|
2818 |
/*************************************
|
2819 |
* SOCIAL ICONS MODULE
|
2820 |
-
*************************************/
|
2821 |
-
[data-sek-module-type="czr_social_icons_module"] .sek-module-inner .sek-social-icons-wrapper {
|
2822 |
-
margin: 10px 0;
|
2823 |
-
}
|
2824 |
-
|
2825 |
-
.nb-loc .sek-module-inner .sek-social-icons-wrapper {
|
2826 |
-
text-align: center;
|
2827 |
-
}
|
2828 |
-
|
2829 |
-
.nb-loc .sek-module-inner .sek-social-icons-wrapper > *:not(:last-child) {
|
2830 |
-
padding-right: 8px;
|
2831 |
-
}
|
2832 |
-
|
2833 |
-
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li {
|
2834 |
-
display: inline-block;
|
2835 |
-
}
|
2836 |
-
|
2837 |
-
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li a {
|
2838 |
-
color: #707070;
|
2839 |
-
}
|
2840 |
-
|
2841 |
-
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
2842 |
-
font-size: 28px;
|
2843 |
-
line-height: 1.5em;
|
2844 |
-
}
|
2845 |
-
|
2846 |
-
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
2847 |
-
transition: all 0.2s ease-in-out;
|
2848 |
-
}
|
2849 |
-
|
2850 |
/*************************************
|
2851 |
* IMAGE SLIDER MODULE
|
2852 |
-
*************************************/
|
2853 |
-
.sek-column-inner [data-sek-module-type="czr_img_slider_module"] {
|
2854 |
-
width: calc(100% + 20px);
|
2855 |
-
max-width: calc(100% + 20px);
|
2856 |
-
}
|
2857 |
-
|
2858 |
-
[data-sek-module-type="czr_img_slider_module"] {
|
2859 |
-
/* SWIPER BULLETS */
|
2860 |
-
/* SWIPER ARROWS */
|
2861 |
-
}
|
2862 |
-
|
2863 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-carousel-img [src*="data:image/gif;"] {
|
2864 |
-
display: none;
|
2865 |
-
}
|
2866 |
-
|
2867 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-loading .sek-carousel-img img {
|
2868 |
-
display: none;
|
2869 |
-
}
|
2870 |
-
|
2871 |
-
.customizer-preview .swiper-wrapper .swiper-lazy-preloader {
|
2872 |
-
display: none;
|
2873 |
-
}
|
2874 |
-
|
2875 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper {
|
2876 |
-
width: 100%;
|
2877 |
-
height: 100%;
|
2878 |
-
overflow: hidden;
|
2879 |
-
}
|
2880 |
-
|
2881 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper .swiper-wrapper {
|
2882 |
-
display: -ms-flexbox;
|
2883 |
-
display: flex;
|
2884 |
-
-ms-flex-align: center;
|
2885 |
-
align-items: center;
|
2886 |
-
height: 400px;
|
2887 |
-
}
|
2888 |
-
|
2889 |
-
@media (max-width: 575.98px) {
|
2890 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper .swiper-wrapper {
|
2891 |
-
height: 200px;
|
2892 |
-
}
|
2893 |
-
}
|
2894 |
-
|
2895 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="nimble-wizard"] .sek-carousel-img {
|
2896 |
-
height: 100%;
|
2897 |
-
overflow: hidden;
|
2898 |
-
}
|
2899 |
-
|
2900 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="nimble-wizard"] .sek-carousel-img img {
|
2901 |
-
max-width: none;
|
2902 |
-
opacity: 0;
|
2903 |
-
transition: opacity 0.15s ease-in-out;
|
2904 |
-
}
|
2905 |
-
|
2906 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="height-100"] .sek-carousel-img {
|
2907 |
-
height: 100%;
|
2908 |
-
width: auto;
|
2909 |
-
overflow: hidden;
|
2910 |
-
}
|
2911 |
-
|
2912 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="height-100"] .sek-carousel-img img {
|
2913 |
-
width: auto;
|
2914 |
-
height: 100%;
|
2915 |
-
max-width: none;
|
2916 |
-
}
|
2917 |
-
|
2918 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="cover"] .sek-carousel-img {
|
2919 |
-
height: 100%;
|
2920 |
-
width: 100%;
|
2921 |
-
overflow: hidden;
|
2922 |
-
display: -ms-flexbox;
|
2923 |
-
display: flex;
|
2924 |
-
-ms-flex-pack: center;
|
2925 |
-
justify-content: center;
|
2926 |
-
-ms-flex-align: center;
|
2927 |
-
align-items: center;
|
2928 |
-
}
|
2929 |
-
|
2930 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="cover"] .sek-carousel-img img {
|
2931 |
-
width: 100%;
|
2932 |
-
height: 100%;
|
2933 |
-
max-width: none;
|
2934 |
-
-o-object-fit: cover;
|
2935 |
-
object-fit: cover;
|
2936 |
-
}
|
2937 |
-
|
2938 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide {
|
2939 |
-
text-align: center;
|
2940 |
-
font-size: 18px;
|
2941 |
-
/* Center slide image vertically */
|
2942 |
-
display: -ms-flexbox;
|
2943 |
-
display: flex;
|
2944 |
-
-ms-flex-pack: center;
|
2945 |
-
justify-content: center;
|
2946 |
-
-ms-flex-align: center;
|
2947 |
-
align-items: center;
|
2948 |
-
}
|
2949 |
-
|
2950 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide[data-sek-slide-link] {
|
2951 |
-
cursor: pointer;
|
2952 |
-
}
|
2953 |
-
|
2954 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img {
|
2955 |
-
width: 100%;
|
2956 |
-
}
|
2957 |
-
|
2958 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img {
|
2959 |
-
width: 100%;
|
2960 |
-
}
|
2961 |
-
|
2962 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img.sek-h-centrd {
|
2963 |
-
width: auto !important;
|
2964 |
-
max-width: none !important;
|
2965 |
-
position: relative;
|
2966 |
-
opacity: 1;
|
2967 |
-
}
|
2968 |
-
|
2969 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img.sek-v-centrd {
|
2970 |
-
height: auto !important;
|
2971 |
-
max-height: none !important;
|
2972 |
-
vertical-align: top;
|
2973 |
-
position: relative;
|
2974 |
-
max-width: none !important;
|
2975 |
-
opacity: 1;
|
2976 |
-
}
|
2977 |
-
|
2978 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide[data-sek-has-overlay="true"] .sek-carousel-img::after {
|
2979 |
-
content: '';
|
2980 |
-
left: 0;
|
2981 |
-
right: 0;
|
2982 |
-
bottom: 0;
|
2983 |
-
top: 0;
|
2984 |
-
position: absolute;
|
2985 |
-
background-color: #000000;
|
2986 |
-
opacity: 0.3;
|
2987 |
-
}
|
2988 |
-
|
2989 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-wrapper {
|
2990 |
-
height: 100%;
|
2991 |
-
width: 100%;
|
2992 |
-
-webkit-transform: translate(-50%, -50%);
|
2993 |
-
transform: translate(-50%, -50%);
|
2994 |
-
-webkit-transform: translate3d(-50%, -50%, 0);
|
2995 |
-
transform: translate3d(-50%, -50%, 0);
|
2996 |
-
top: 50%;
|
2997 |
-
left: 50%;
|
2998 |
-
position: absolute;
|
2999 |
/* Center slide text vertically
|
3000 |
-
=> consistent with defaults in module registration */
|
3001 |
-
display: -ms-flexbox;
|
3002 |
-
display: flex;
|
3003 |
-
-ms-flex-pack: center;
|
3004 |
-
justify-content: center;
|
3005 |
-
-ms-flex-align: center;
|
3006 |
-
align-items: center;
|
3007 |
-
}
|
3008 |
-
|
3009 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-content {
|
3010 |
-
height: auto;
|
3011 |
-
max-height: 100%;
|
3012 |
-
width: 100%;
|
3013 |
-
padding: 5%;
|
3014 |
-
text-align: center;
|
3015 |
-
z-index: 3;
|
3016 |
-
overflow: hidden;
|
3017 |
-
color: #e2e2e2;
|
3018 |
-
font-size: 16px;
|
3019 |
-
line-height: 1.5em;
|
3020 |
-
}
|
3021 |
-
|
3022 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-content * {
|
3023 |
-
font-size: 16px;
|
3024 |
-
line-height: 1.5em;
|
3025 |
-
}
|
3026 |
-
|
3027 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-pagination-bullet-active {
|
3028 |
-
background-color: #ffffff;
|
3029 |
-
}
|
3030 |
-
|
3031 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav {
|
3032 |
-
cursor: pointer;
|
3033 |
-
}
|
3034 |
-
|
3035 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-chevron {
|
3036 |
-
display: inline-block;
|
3037 |
-
border-right: 2px solid #ffffff;
|
3038 |
-
border-bottom: 2px solid #ffffff;
|
3039 |
-
width: 11px;
|
3040 |
-
height: 11px;
|
3041 |
-
}
|
3042 |
-
|
3043 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev {
|
3044 |
-
left: 0;
|
3045 |
-
border-top-left-radius: 0px;
|
3046 |
-
border-top-right-radius: 2px;
|
3047 |
-
border-bottom-right-radius: 2px;
|
3048 |
-
border-bottom-left-radius: 0px;
|
3049 |
-
}
|
3050 |
-
|
3051 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev .sek-chevron {
|
3052 |
-
-webkit-transform: rotate(-225deg);
|
3053 |
-
transform: rotate(-225deg);
|
3054 |
-
}
|
3055 |
-
|
3056 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next {
|
3057 |
-
right: 0;
|
3058 |
-
border-top-left-radius: 2px;
|
3059 |
-
border-top-right-radius: 0px;
|
3060 |
-
border-bottom-right-radius: 0px;
|
3061 |
-
border-bottom-left-radius: 2px;
|
3062 |
-
}
|
3063 |
-
|
3064 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next .sek-chevron {
|
3065 |
-
-webkit-transform: rotate(-45deg);
|
3066 |
-
transform: rotate(-45deg);
|
3067 |
-
}
|
3068 |
-
|
3069 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev, [data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next {
|
3070 |
-
position: absolute;
|
3071 |
-
z-index: 2;
|
3072 |
-
top: calc(50% - 30px);
|
3073 |
-
text-align: center;
|
3074 |
-
margin-top: 0px;
|
3075 |
-
-webkit-backface-visibility: hidden;
|
3076 |
-
backface-visibility: hidden;
|
3077 |
-
display: block;
|
3078 |
-
height: 60px;
|
3079 |
-
width: 50px;
|
3080 |
-
opacity: 0.6;
|
3081 |
-
background-color: rgba(32, 32, 32, 0.4);
|
3082 |
-
transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
|
3083 |
-
line-height: 64px;
|
3084 |
-
cursor: pointer;
|
3085 |
-
font-size: 18px;
|
3086 |
-
}
|
3087 |
-
|
3088 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev:hover, [data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next:hover {
|
3089 |
-
background-color: rgba(32, 32, 32, 0.7);
|
3090 |
-
opacity: 1;
|
3091 |
-
width: 100px;
|
3092 |
-
}
|
3093 |
-
|
3094 |
-
@media (max-width: 575.98px) {
|
3095 |
-
[data-sek-module-type="czr_img_slider_module"] [data-sek-hide-nav-on-mobile="true"] .swiper-pagination {
|
3096 |
-
display: none;
|
3097 |
-
}
|
3098 |
-
[data-sek-module-type="czr_img_slider_module"] [data-sek-hide-nav-on-mobile="true"] .sek-swiper-nav {
|
3099 |
-
display: none;
|
3100 |
-
}
|
3101 |
-
}
|
3102 |
-
|
3103 |
/*************************************
|
3104 |
* ACCORDION MODULE
|
3105 |
-
*************************************/
|
3106 |
-
.sek-accord-wrapper {
|
3107 |
-
text-align: left;
|
3108 |
-
}
|
3109 |
-
|
3110 |
-
.sek-accord-wrapper .sek-accord-item {
|
3111 |
-
border: 1px solid #e3e3e3;
|
3112 |
-
overflow: hidden;
|
3113 |
-
}
|
3114 |
-
|
3115 |
-
.sek-accord-wrapper .sek-accord-item:not(:last-child) {
|
3116 |
-
margin-bottom: 0px;
|
3117 |
-
}
|
3118 |
-
|
3119 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title {
|
3120 |
-
cursor: pointer;
|
3121 |
-
color: #565656;
|
3122 |
-
background: #ffffff;
|
3123 |
-
display: -ms-flexbox;
|
3124 |
-
display: flex;
|
3125 |
-
-ms-flex-align: center;
|
3126 |
-
align-items: center;
|
3127 |
-
-ms-flex-pack: justify;
|
3128 |
-
justify-content: space-between;
|
3129 |
-
padding: 15px 20px;
|
3130 |
-
border-top: none;
|
3131 |
-
border-right: none;
|
3132 |
-
border-left: none;
|
3133 |
-
border-bottom: 1px solid #e3e3e3;
|
3134 |
-
font-size: 16px;
|
3135 |
-
line-height: 1.5em;
|
3136 |
-
font-weight: 600;
|
3137 |
-
-ms-flex-positive: 1;
|
3138 |
-
flex-grow: 1;
|
3139 |
-
}
|
3140 |
-
|
3141 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover * {
|
3142 |
-
color: #1e261f;
|
3143 |
-
}
|
3144 |
-
|
3145 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover .expander span {
|
3146 |
-
background: #1e261f;
|
3147 |
-
}
|
3148 |
-
|
3149 |
-
[data-sek-expanded="true"] .sek-accord-title * {
|
3150 |
-
color: #1e261f;
|
3151 |
-
}
|
3152 |
-
|
3153 |
-
[data-sek-expanded="true"] .sek-accord-title .expander span {
|
3154 |
-
background: #1e261f;
|
3155 |
-
}
|
3156 |
-
|
3157 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title {
|
3158 |
-
padding-right: 10px;
|
3159 |
-
max-width: calc(100% - 30px);
|
3160 |
-
}
|
3161 |
-
|
3162 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title, .sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span {
|
3163 |
-
transition: all 0.15s ease-in-out;
|
3164 |
-
}
|
3165 |
-
|
3166 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander {
|
3167 |
-
color: #1e261f;
|
3168 |
-
width: 30px;
|
3169 |
-
height: 30px;
|
3170 |
-
padding: 0;
|
3171 |
-
margin: 0;
|
3172 |
-
outline: none;
|
3173 |
-
border: 0;
|
3174 |
-
background: none;
|
3175 |
-
box-shadow: none;
|
3176 |
-
font-size: 1.5em;
|
3177 |
-
position: relative;
|
3178 |
-
cursor: pointer;
|
3179 |
-
}
|
3180 |
-
|
3181 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span {
|
3182 |
-
position: absolute;
|
3183 |
-
transition: .3s;
|
3184 |
-
background: #565656;
|
3185 |
-
border-radius: 2px;
|
3186 |
-
}
|
3187 |
-
|
3188 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:first-of-type {
|
3189 |
-
top: 25%;
|
3190 |
-
bottom: 25%;
|
3191 |
-
width: 10%;
|
3192 |
-
left: 45%;
|
3193 |
-
}
|
3194 |
-
|
3195 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:last-of-type {
|
3196 |
-
left: 25%;
|
3197 |
-
right: 25%;
|
3198 |
-
height: 10%;
|
3199 |
-
top: 45%;
|
3200 |
-
}
|
3201 |
-
|
3202 |
-
[data-sek-expanded="true"] .expander span:first-of-type, [data-sek-expanded="true"] .expander span:last-of-type {
|
3203 |
-
-webkit-transform: rotate(90deg);
|
3204 |
-
transform: rotate(90deg);
|
3205 |
-
}
|
3206 |
-
|
3207 |
-
[data-sek-expanded="true"] .expander span:last-of-type {
|
3208 |
-
left: 50%;
|
3209 |
-
right: 50%;
|
3210 |
-
}
|
3211 |
-
|
3212 |
-
[data-sek-has-global-border="true"][data-sek-has-title-border="true"] [data-sek-expanded="false"] .sek-accord-title {
|
3213 |
-
border-bottom: none;
|
3214 |
-
}
|
3215 |
-
|
3216 |
-
[data-sek-has-global-border="true"][data-sek-has-title-border="true"] .sek-accord-item:not(:last-child) {
|
3217 |
-
border-bottom: none;
|
3218 |
-
}
|
3219 |
-
|
3220 |
-
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] .sek-accord-title .expander span:first-of-type, .sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] .sek-accord-title .expander span:last-of-type {
|
3221 |
-
-webkit-transform: rotate(90deg);
|
3222 |
-
transform: rotate(90deg);
|
3223 |
-
}
|
3224 |
-
|
3225 |
-
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] .sek-accord-title .expander span:last-of-type {
|
3226 |
-
left: 50%;
|
3227 |
-
right: 50%;
|
3228 |
-
}
|
3229 |
-
|
3230 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-content {
|
3231 |
-
padding: 15px 20px;
|
3232 |
-
background: #f2f2f2;
|
3233 |
-
color: #1e261f;
|
3234 |
-
font-size: 16px;
|
3235 |
-
line-height: 1.5em;
|
3236 |
-
}
|
3237 |
-
|
3238 |
-
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] > .sek-accord-content {
|
3239 |
-
display: block;
|
3240 |
-
}
|
3241 |
-
|
3242 |
-
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="false"] > .sek-accord-content {
|
3243 |
-
display: none;
|
3244 |
-
}
|
3245 |
-
|
3246 |
/*************************************
|
3247 |
* SHORTCODE MODULE
|
3248 |
-
*************************************/
|
3249 |
-
[data-sek-module-type="czr_shortcode_module"] [data-sek-use-flexbox="true"] {
|
3250 |
-
display: -ms-flexbox;
|
3251 |
-
display: flex;
|
3252 |
-
-ms-flex-pack: center;
|
3253 |
-
justify-content: center;
|
3254 |
-
}
|
3255 |
-
|
3256 |
-
.sek-gal-wrapper:not(.nb-auto-column-width) {
|
3257 |
-
display: -ms-flexbox;
|
3258 |
-
display: flex;
|
3259 |
-
-ms-flex-align: center;
|
3260 |
-
align-items: center;
|
3261 |
-
-ms-flex-pack: center;
|
3262 |
-
justify-content: center;
|
3263 |
-
}
|
3264 |
-
|
3265 |
-
.sek-gal-wrapper .sek-gal-items {
|
3266 |
-
display: -ms-grid;
|
3267 |
-
display: grid;
|
3268 |
-
-ms-grid-columns: 1fr 20px 1fr;
|
3269 |
-
grid-template-columns: 1fr 1fr;
|
3270 |
-
-ms-grid-rows: 1fr;
|
3271 |
-
grid-template-rows: 1fr;
|
3272 |
-
grid-row-gap: 20px;
|
3273 |
-
grid-column-gap: 20px;
|
3274 |
-
}
|
3275 |
-
|
3276 |
-
@media all and (-ms-high-contrast: none) {
|
3277 |
-
.sek-gal-wrapper .sek-gal-items {
|
3278 |
-
display: block !important;
|
3279 |
-
}
|
3280 |
-
}
|
3281 |
-
|
3282 |
-
.sek-gal-wrapper .sek-gal-items > *:nth-child(1) {
|
3283 |
-
-ms-grid-row: 1;
|
3284 |
-
-ms-grid-column: 1;
|
3285 |
-
}
|
3286 |
-
|
3287 |
-
.sek-gal-wrapper .sek-gal-items > *:nth-child(2) {
|
3288 |
-
-ms-grid-row: 1;
|
3289 |
-
-ms-grid-column: 3;
|
3290 |
-
}
|
3291 |
-
|
3292 |
-
.sek-gal-wrapper .sek-img-gal-item {
|
3293 |
-
transition: all 0.15s ease-in-out;
|
3294 |
-
overflow: hidden;
|
3295 |
-
}
|
3296 |
-
|
3297 |
-
.sek-gal-wrapper .sek-img-gal-item img {
|
3298 |
-
height: 100%;
|
3299 |
-
width: 100%;
|
3300 |
-
-o-object-fit: cover;
|
3301 |
-
object-fit: cover;
|
3302 |
-
}
|
3303 |
-
|
3304 |
-
.sek-gal-wrapper .sek-img-gal-item:hover {
|
3305 |
-
opacity: .9;
|
3306 |
-
}
|
3307 |
-
|
3308 |
-
.sek-module-inner .nb-gal-item-box-shadow .sek-gal-items figure {
|
3309 |
-
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
3310 |
-
}
|
3311 |
-
|
3312 |
-
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items.nb-masonry-gal-images-loaded {
|
3313 |
-
grid-auto-rows: 5px;
|
3314 |
-
}
|
3315 |
-
|
3316 |
-
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items .sek-img-gal-item img {
|
3317 |
-
height: auto;
|
3318 |
-
}
|
3319 |
-
|
3320 |
-
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items.sek-gal-img-natural-height img {
|
3321 |
-
height: auto !important;
|
3322 |
-
}
|
3323 |
-
|
3324 |
-
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items.sek-gal-img-height-100-percent img {
|
3325 |
-
height: 100%;
|
3326 |
-
}
|
3327 |
-
|
3328 |
/*************************************
|
3329 |
* ACCORDION MODULE
|
3330 |
-
*************************************/
|
3331 |
-
.sek-module-inner {
|
3332 |
-
line-height: 1.5em;
|
3333 |
-
}
|
3334 |
-
|
3335 |
-
.sek-module-inner h1, .sek-module-inner h2, .sek-module-inner h3, .sek-module-inner h4, .sek-module-inner h5, .sek-module-inner h6, .sek-module-inner p {
|
3336 |
-
line-height: 1.5em;
|
3337 |
-
font-weight: 400;
|
3338 |
-
margin: 0.6em 0;
|
3339 |
-
}
|
3340 |
-
|
3341 |
-
.sek-module-inner h1 {
|
3342 |
-
font-size: 2.48em;
|
3343 |
-
}
|
3344 |
-
|
3345 |
-
.sek-module-inner h2 {
|
3346 |
-
font-size: 2.07em;
|
3347 |
-
}
|
3348 |
-
|
3349 |
-
.sek-module-inner h3 {
|
3350 |
-
font-size: 1.73em;
|
3351 |
-
}
|
3352 |
-
|
3353 |
-
.sek-module-inner h4 {
|
3354 |
-
font-size: 1.44em;
|
3355 |
-
}
|
3356 |
-
|
3357 |
-
.sek-module-inner h5 {
|
3358 |
-
font-size: 1.2em;
|
3359 |
-
}
|
3360 |
-
|
3361 |
-
.sek-module-inner h6 {
|
3362 |
-
font-size: 1em;
|
3363 |
-
}
|
3364 |
-
|
3365 |
-
.sek-module-inner p {
|
3366 |
-
margin: 0 0 1em;
|
3367 |
-
padding: 0;
|
3368 |
-
}
|
3369 |
-
|
3370 |
-
.sek-module-inner a {
|
3371 |
-
text-decoration: none;
|
3372 |
-
box-shadow: none;
|
3373 |
-
transition: color 0.2s ease-in-out;
|
3374 |
-
}
|
3375 |
-
|
3376 |
-
.sek-module-inner img {
|
3377 |
-
height: auto;
|
3378 |
-
max-width: 100%;
|
3379 |
-
border: none;
|
3380 |
-
border-radius: 0;
|
3381 |
-
box-shadow: none;
|
3382 |
-
}
|
3383 |
-
|
3384 |
-
[data-sek-module-type="czr_tiny_mce_editor_module"] .sek-module-inner a:not(.wp-block-button__link),
|
3385 |
-
[data-sek-module-type="czr_shortcode_module"] .sek-module-inner a:not(.wp-block-button__link),
|
3386 |
-
[data-sek-module-type="czr_accordion_module"] .sek-module-inner a:not(.wp-block-button__link),
|
3387 |
-
[data-sek-module-type="czr_simple_html_module"] .sek-module-inner a:not(.wp-block-button__link) {
|
3388 |
-
text-decoration: underline;
|
3389 |
-
}
|
3390 |
-
|
3391 |
-
body .sektion-wrapper .sek-row [data-sek-level="module"] .sek-module-inner a:not(.sek-btn):not(.button):focus {
|
3392 |
-
background: none;
|
3393 |
-
}
|
3394 |
-
|
3395 |
-
body .sek-module-inner h1:before, body .sek-module-inner h2:before, body .sek-module-inner h3:before, body .sek-module-inner h4:before, body .sek-module-inner h5:before, body .sek-module-inner h6:before {
|
3396 |
-
content: none;
|
3397 |
-
background: none;
|
3398 |
}
|
3399 |
/*# sourceMappingURL=sek-base-rtl.css.map */
|
1 |
+
/* -------------------------------------------------------------------------- */
|
2 |
/* <SCOPED RESET>
|
3 |
+
/* -------------------------------------------------------------------------- */
|
4 |
+
.sektion-wrapper *,
|
5 |
+
.sektion-wrapper *::before,
|
6 |
+
.sektion-wrapper *::after {
|
7 |
+
box-sizing: border-box;
|
8 |
+
}
|
9 |
+
|
10 |
+
.sektion-wrapper span, .sektion-wrapper applet, .sektion-wrapper object, .sektion-wrapper iframe,
|
11 |
+
.sektion-wrapper h1, .sektion-wrapper h2, .sektion-wrapper h3, .sektion-wrapper h4, .sektion-wrapper h5, .sektion-wrapper h6, .sektion-wrapper p, .sektion-wrapper blockquote, .sektion-wrapper pre,
|
12 |
+
.sektion-wrapper a, .sektion-wrapper abbr, .sektion-wrapper acronym, .sektion-wrapper address, .sektion-wrapper big, .sektion-wrapper cite, .sektion-wrapper code,
|
13 |
+
.sektion-wrapper del, .sektion-wrapper dfn, .sektion-wrapper em, .sektion-wrapper img, .sektion-wrapper ins, .sektion-wrapper kbd, .sektion-wrapper q, .sektion-wrapper s, .sektion-wrapper samp,
|
14 |
+
.sektion-wrapper small, .sektion-wrapper strike, .sektion-wrapper strong, .sektion-wrapper sub, .sektion-wrapper sup, .sektion-wrapper tt, .sektion-wrapper var,
|
15 |
+
.sektion-wrapper b, .sektion-wrapper u, .sektion-wrapper i, .sektion-wrapper center,
|
16 |
+
.sektion-wrapper dl, .sektion-wrapper dt, .sektion-wrapper dd, .sektion-wrapper ol, .sektion-wrapper ul, .sektion-wrapper li,
|
17 |
+
.sektion-wrapper fieldset, .sektion-wrapper form, .sektion-wrapper label, .sektion-wrapper legend,
|
18 |
+
.sektion-wrapper table, .sektion-wrapper caption, .sektion-wrapper tbody, .sektion-wrapper tfoot, .sektion-wrapper thead, .sektion-wrapper tr, .sektion-wrapper th, .sektion-wrapper td,
|
19 |
+
.sektion-wrapper article, .sektion-wrapper aside, .sektion-wrapper canvas, .sektion-wrapper details, .sektion-wrapper embed,
|
20 |
+
.sektion-wrapper figure:not([class*="wp-block-"]), .sektion-wrapper figcaption, .sektion-wrapper footer, .sektion-wrapper header, .sektion-wrapper hgroup,
|
21 |
+
.sektion-wrapper menu, .sektion-wrapper nav, .sektion-wrapper output, .sektion-wrapper ruby, .sektion-wrapper section, .sektion-wrapper summary,
|
22 |
+
.sektion-wrapper time, .sektion-wrapper mark, .sektion-wrapper audio, .sektion-wrapper video {
|
23 |
+
border: none;
|
24 |
+
font-size: inherit;
|
25 |
+
line-height: inherit;
|
26 |
+
margin: 0;
|
27 |
+
padding: 0;
|
28 |
+
}
|
29 |
+
|
30 |
+
.sektion-wrapper blockquote::before,
|
31 |
+
.sektion-wrapper blockquote::after, .sektion-wrapper q:before, .sektion-wrapper q:after {
|
32 |
+
content: "";
|
33 |
+
}
|
34 |
+
|
35 |
+
.sektion-wrapper ol, .sektion-wrapper ul {
|
36 |
+
list-style: none;
|
37 |
+
}
|
38 |
+
|
39 |
+
.sektion-wrapper img {
|
40 |
+
max-width: 100%;
|
41 |
+
vertical-align: middle;
|
42 |
+
border-style: none;
|
43 |
+
display: inline;
|
44 |
+
}
|
45 |
+
|
46 |
+
.sektion-wrapper svg:not(:root) {
|
47 |
+
overflow: hidden;
|
48 |
+
}
|
49 |
+
|
50 |
+
.sektion-wrapper embed, .sektion-wrapper iframe, .sektion-wrapper object {
|
51 |
+
max-width: 100%;
|
52 |
+
}
|
53 |
+
|
54 |
+
/* -------------------------------------------------------------------------- */
|
55 |
/* </SCOPED RESET>
|
56 |
+
/* -------------------------------------------------------------------------- */
|
57 |
+
/* make sure that the location level occupies 100% of the width */
|
58 |
+
[data-sek-level="location"] {
|
59 |
+
clear: both;
|
60 |
+
font-size: 16px;
|
61 |
+
}
|
62 |
+
|
63 |
+
/* To make vertical alignment possible in sections */
|
64 |
+
.sek-section, .sek-column, .sek-module {
|
65 |
+
display: -ms-flexbox;
|
66 |
+
display: flex;
|
67 |
+
-ms-flex-align: center;
|
68 |
+
align-items: center;
|
69 |
+
}
|
70 |
+
|
71 |
+
.sek-column-inner, .sek-module-inner {
|
72 |
+
-ms-flex: 0 0 100%;
|
73 |
+
flex: 0 0 100%;
|
74 |
+
max-width: 100%;
|
75 |
+
}
|
76 |
+
|
77 |
/* To allow horizontal centering of modules
|
78 |
@see https://github.com/presscustomizr/nimble-builder/issues/119
|
79 |
+
*/
|
80 |
+
/* - sections in locations */
|
81 |
+
/* - columns in sections */
|
82 |
+
/* - modules in columns */
|
83 |
+
.sek-column-inner {
|
84 |
+
display: -ms-flexbox;
|
85 |
+
display: flex;
|
86 |
+
-ms-flex-direction: column;
|
87 |
+
flex-direction: column;
|
88 |
+
}
|
89 |
+
|
90 |
+
.sek-module {
|
91 |
+
-ms-flex-item-align: center;
|
92 |
+
-ms-grid-row-align: center;
|
93 |
+
align-self: center;
|
94 |
+
width: 100%;
|
95 |
+
max-width: 100%;
|
96 |
+
}
|
97 |
+
|
98 |
/* a nested sektion should reset its parent column padding
|
99 |
@see https://github.com/presscustomizr/nimble-builder/issues/25
|
100 |
+
*/
|
101 |
+
[data-sek-is-nested="true"] .sek-container-fluid {
|
102 |
+
padding-right: 0;
|
103 |
+
padding-left: 0;
|
104 |
+
}
|
105 |
+
|
106 |
+
/* MODULE PLACEHOLDER */
|
107 |
/*@font-face {
|
108 |
font-family: 'Material Icons';
|
109 |
font-style: normal;
|
110 |
font-weight: 400;
|
111 |
src: url('../fonts/material-icons/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2') format('woff2');
|
112 |
+
}*/
|
113 |
+
/* @see https://github.com/google/material-design-icons/blob/master/iconfont/material-icons.css */
|
114 |
+
.sek-module-placeholder {
|
115 |
+
text-align: center;
|
116 |
+
}
|
117 |
+
|
118 |
+
.sek-module-placeholder .material-icons {
|
119 |
+
font-size: inherit;
|
120 |
+
color: #cfcfcf;
|
121 |
+
}
|
122 |
+
|
123 |
+
/* LEVEL VISIBILITY BY DEVICE */
|
124 |
+
/* NIMBLE TEMPLATE GENERAL STYLING */
|
125 |
+
/* <inspired by Twenty Seventeed WP theme> */
|
126 |
+
.sek-screen-reader-text {
|
127 |
+
border: 0;
|
128 |
+
clip: rect(0, 0, 0, 0);
|
129 |
+
height: 1px;
|
130 |
+
overflow: hidden;
|
131 |
+
padding: 0;
|
132 |
+
position: absolute !important;
|
133 |
+
width: 1px;
|
134 |
+
word-wrap: normal !important;
|
135 |
+
}
|
136 |
+
|
137 |
+
#nimble-page {
|
138 |
+
position: relative;
|
139 |
+
word-wrap: break-word;
|
140 |
+
}
|
141 |
+
|
142 |
+
/* </inspired by Twenty Seventeen WP theme> */
|
143 |
+
/* Nimble btn in admin top bar */
|
144 |
+
#wpadminbar .sek-nimble-icon {
|
145 |
+
display: inline-block;
|
146 |
+
}
|
147 |
+
|
148 |
+
#wpadminbar .sek-nimble-icon img {
|
149 |
+
width: 28px;
|
150 |
+
position: absolute;
|
151 |
+
top: 2px;
|
152 |
+
-webkit-filter: grayscale(100%);
|
153 |
+
filter: grayscale(100%);
|
154 |
+
-webkit-filter: gray;
|
155 |
+
filter: gray;
|
156 |
+
transition: all 0.3s ease-in-out;
|
157 |
+
box-shadow: none;
|
158 |
+
}
|
159 |
+
|
160 |
+
#wpadminbar .sek-nimble-icon:hover img {
|
161 |
+
-webkit-filter: none;
|
162 |
+
filter: none;
|
163 |
+
-webkit-filter: none;
|
164 |
+
filter: none;
|
165 |
+
}
|
166 |
+
|
167 |
+
#wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title {
|
168 |
+
padding-left: 30px;
|
169 |
+
}
|
170 |
+
|
171 |
+
[data-sek-has-bg="true"] {
|
172 |
+
background-size: cover;
|
173 |
+
background-repeat: no-repeat;
|
174 |
+
background-position: 50% 50%;
|
175 |
+
}
|
176 |
+
|
177 |
+
[data-sek-level="location"] [data-sek-bg-parallax="true"] {
|
178 |
+
background-attachment: fixed;
|
179 |
+
background-size: cover;
|
180 |
+
}
|
181 |
+
|
182 |
+
[data-sek-level="location"] .sek-has-bg {
|
183 |
+
position: relative;
|
184 |
+
}
|
185 |
+
|
186 |
+
@supports (-webkit-overflow-scrolling: touch) {
|
187 |
+
body [data-sek-level="location"] [data-sek-bg-parallax="true"], body [data-sek-level="location"] [data-sek-bg-fixed="true"] {
|
188 |
+
background-attachment: scroll;
|
189 |
+
}
|
190 |
+
}
|
191 |
+
|
192 |
+
[data-sek-level="location"] [data-sek-level] {
|
193 |
+
transition: 0s linear;
|
194 |
+
transition-property: background-position;
|
195 |
+
}
|
196 |
+
|
197 |
+
.sek-module .sek-module-inner .alx-tab.thumbs-enabled > li {
|
198 |
+
padding-left: 94px;
|
199 |
+
}
|
200 |
+
|
201 |
+
.sek-module .sek-module-inner .widget_hu_tabs ul,
|
202 |
+
.sek-module .sek-module-inner .widget_hu_tabs ol {
|
203 |
+
margin-left: 0;
|
204 |
+
margin-bottom: 0;
|
205 |
+
}
|
206 |
+
|
207 |
+
.sek-module .sek-module-inner .widget_hu_tabs .alx-tabs-nav {
|
208 |
+
margin-bottom: 10px;
|
209 |
+
}
|
210 |
+
|
211 |
+
[data-sek-level].sek-level-has-shadow {
|
212 |
+
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
213 |
+
}
|
214 |
+
|
215 |
+
.customizer-preview [data-sek-level].sek-level-has-shadow {
|
216 |
+
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
|
217 |
+
}
|
218 |
+
|
219 |
+
[data-sek-level][data-sek-video-bg-src] {
|
220 |
+
position: relative;
|
221 |
+
}
|
222 |
+
|
223 |
+
[data-sek-level] embed,
|
224 |
+
[data-sek-level] iframe,
|
225 |
+
[data-sek-level] object,
|
226 |
+
[data-sek-level] video {
|
227 |
+
max-width: 100%;
|
228 |
+
width: 100%;
|
229 |
+
margin: 0;
|
230 |
+
line-height: 1;
|
231 |
+
border: none;
|
232 |
+
}
|
233 |
+
|
234 |
+
[data-sek-level] .sek-custom-embed {
|
235 |
+
line-height: 0;
|
236 |
+
}
|
237 |
+
|
238 |
+
[data-sek-level] .sek-bg-video-wrapper,
|
239 |
+
[data-sek-level] .sek-background {
|
240 |
+
height: 100%;
|
241 |
+
width: 100%;
|
242 |
+
top: 0;
|
243 |
+
left: 0;
|
244 |
+
position: absolute !important;
|
245 |
+
overflow: hidden;
|
246 |
+
z-index: 0;
|
247 |
+
direction: ltr;
|
248 |
+
}
|
249 |
+
|
250 |
+
[data-sek-level] .sek-bg-video-wrapper {
|
251 |
+
transition: opacity 0.5s linear;
|
252 |
+
pointer-events: none;
|
253 |
+
opacity: 0;
|
254 |
+
}
|
255 |
+
|
256 |
+
[data-sek-level] .sek-bg-video-wrapper.sek-bg-loading {
|
257 |
+
opacity: 0;
|
258 |
+
visibility: hidden;
|
259 |
+
}
|
260 |
+
|
261 |
+
[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-vimeo-element {
|
262 |
+
max-width: none;
|
263 |
+
}
|
264 |
+
|
265 |
+
[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-video-local, [data-sek-level] .sek-background-vimeo-element {
|
266 |
+
position: absolute;
|
267 |
+
top: 50%;
|
268 |
+
left: 50%;
|
269 |
+
-webkit-transform: translateX(-50%) translateY(-50%);
|
270 |
+
transform: translateX(-50%) translateY(-50%);
|
271 |
+
}
|
272 |
+
|
273 |
+
[data-sek-level] .sek-background-video-local {
|
274 |
+
-o-object-fit: cover;
|
275 |
+
object-fit: cover;
|
276 |
+
}
|
277 |
+
|
278 |
+
.sek-module-inner .sek-debug-modules {
|
279 |
+
margin: 1em;
|
280 |
+
padding: 5px;
|
281 |
+
border: 1px solid rgba(221, 221, 221, 0.43);
|
282 |
+
box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);
|
283 |
+
-webkit-box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);
|
284 |
+
background-color: #fff;
|
285 |
+
font-size: 15px;
|
286 |
+
font-weight: normal;
|
287 |
+
color: #6d6d6d;
|
288 |
+
background: rgba(255, 255, 255, 0.6);
|
289 |
+
}
|
290 |
+
|
291 |
+
@media (max-width: 575px) {
|
292 |
+
.customizer-preview [data-sek-video-bg-on-mobile="false"] .sek-bg-video-wrapper {
|
293 |
+
display: none;
|
294 |
+
}
|
295 |
+
}
|
296 |
+
|
297 |
+
body:not(.customizer-preview) .sek-animate-candidate:not(.sek-animate-displayed-before-starting) {
|
298 |
+
opacity: 0;
|
299 |
+
}
|
300 |
+
|
301 |
+
.sek-overflow-hidden-while-animating {
|
302 |
+
overflow: hidden;
|
303 |
+
}
|
304 |
+
|
305 |
+
.nb-scroll-down #nimble-header:not(.sek-header-mobile-menu-expanded), .nb-scroll-up #nimble-header:not(.sek-header-mobile-menu-expanded) {
|
306 |
+
background-color: rgba(255, 255, 255, 0.9);
|
307 |
+
}
|
308 |
+
|
309 |
+
.mfp-wrap button.mfp-arrow, .mfp-wrap button.mfp-close {
|
310 |
+
background: none !important;
|
311 |
+
background: transparent !important;
|
312 |
+
}
|
313 |
+
|
314 |
+
.mfp-wrap img.mfp-img {
|
315 |
+
padding: 40px 0 0;
|
316 |
+
}
|
317 |
+
|
318 |
+
.mfp-wrap::after {
|
319 |
+
bottom: 20px;
|
320 |
+
}
|
321 |
+
|
322 |
+
.mfp-wrap .mfp-bottom-bar {
|
323 |
+
margin-top: 0;
|
324 |
+
}
|
325 |
+
|
326 |
+
.sek-service-font, .sek-module .sek-module-inner .sek-btn {
|
327 |
+
font-family: sans-serif;
|
328 |
+
}
|
329 |
+
|
330 |
+
.sek-container {
|
331 |
+
width: 100%;
|
332 |
+
padding-right: 10px;
|
333 |
+
padding-left: 10px;
|
334 |
+
margin-right: auto;
|
335 |
+
margin-left: auto;
|
336 |
+
}
|
337 |
+
|
338 |
+
@media (min-width: 576px) {
|
339 |
+
.sek-container {
|
340 |
+
max-width: 540px;
|
341 |
+
}
|
342 |
+
}
|
343 |
+
|
344 |
+
@media (min-width: 768px) {
|
345 |
+
.sek-container {
|
346 |
+
max-width: 720px;
|
347 |
+
}
|
348 |
+
}
|
349 |
+
|
350 |
+
@media (min-width: 992px) {
|
351 |
+
.sek-container {
|
352 |
+
max-width: 960px;
|
353 |
+
}
|
354 |
+
}
|
355 |
+
|
356 |
+
@media (min-width: 1200px) {
|
357 |
+
.sek-container {
|
358 |
+
max-width: 1140px;
|
359 |
+
}
|
360 |
+
}
|
361 |
+
|
362 |
+
.sek-container-fluid {
|
363 |
+
width: 100%;
|
364 |
+
padding-right: 10px;
|
365 |
+
padding-left: 10px;
|
366 |
+
margin-right: auto;
|
367 |
+
margin-left: auto;
|
368 |
+
}
|
369 |
+
|
370 |
+
.sek-row {
|
371 |
+
display: -ms-flexbox;
|
372 |
+
display: flex;
|
373 |
+
-ms-flex-wrap: wrap;
|
374 |
+
flex-wrap: wrap;
|
375 |
+
margin-right: -10px;
|
376 |
+
margin-left: -10px;
|
377 |
+
}
|
378 |
+
|
379 |
+
.sek-container-no-padding {
|
380 |
+
padding-right: 0;
|
381 |
+
padding-left: 0;
|
382 |
+
overflow-x: hidden;
|
383 |
+
}
|
384 |
+
|
385 |
+
.sek-no-gutters {
|
386 |
+
margin-right: 0;
|
387 |
+
margin-left: 0;
|
388 |
+
}
|
389 |
+
|
390 |
+
.sek-no-gutters > .sek-col,
|
391 |
+
.sek-no-gutters > [class*="sek-col-"] {
|
392 |
+
padding-right: 0;
|
393 |
+
padding-left: 0;
|
394 |
+
}
|
395 |
+
|
396 |
+
.sek-col-8, .sek-col-9, .sek-col-10, .sek-col-11, .sek-col-12, .sek-col-14, .sek-col-16, .sek-col-20, .sek-col-25, .sek-col-30, .sek-col-33, .sek-col-40, .sek-col-50, .sek-col-60, .sek-col-66, .sek-col-70, .sek-col-75, .sek-col-80, .sek-col-83, .sek-col-90, .sek-col-100, .sek-col-base,
|
397 |
+
.sek-col,
|
398 |
+
.sek-col-auto {
|
399 |
+
position: relative;
|
400 |
+
width: 100%;
|
401 |
+
min-height: 1px;
|
402 |
+
padding-right: 10px;
|
403 |
+
padding-left: 10px;
|
404 |
+
}
|
405 |
+
|
406 |
+
.sek-col-base {
|
407 |
+
-ms-flex: 0 0 100%;
|
408 |
+
flex: 0 0 100%;
|
409 |
+
max-width: 100%;
|
410 |
+
}
|
411 |
+
|
412 |
+
.sek-col {
|
413 |
+
-ms-flex-preferred-size: 0;
|
414 |
+
flex-basis: 0;
|
415 |
+
-ms-flex-positive: 1;
|
416 |
+
flex-grow: 1;
|
417 |
+
max-width: 100%;
|
418 |
+
}
|
419 |
+
|
420 |
+
.sek-col-auto {
|
421 |
+
-ms-flex: 0 0 auto;
|
422 |
+
flex: 0 0 auto;
|
423 |
+
width: auto;
|
424 |
+
max-width: 100%;
|
425 |
+
}
|
426 |
+
|
427 |
+
@media (min-width: 768px) {
|
428 |
+
.sek-col-8 {
|
429 |
+
-ms-flex: 0 0 8.333%;
|
430 |
+
flex: 0 0 8.333%;
|
431 |
+
max-width: 8.333%;
|
432 |
+
}
|
433 |
+
.sek-col-9 {
|
434 |
+
-ms-flex: 0 0 9.090909%;
|
435 |
+
flex: 0 0 9.090909%;
|
436 |
+
max-width: 9.090909%;
|
437 |
+
}
|
438 |
+
.sek-col-10 {
|
439 |
+
-ms-flex: 0 0 10%;
|
440 |
+
flex: 0 0 10%;
|
441 |
+
max-width: 10%;
|
442 |
+
}
|
443 |
+
.sek-col-11 {
|
444 |
+
-ms-flex: 0 0 11.111%;
|
445 |
+
flex: 0 0 11.111%;
|
446 |
+
max-width: 11.111%;
|
447 |
+
}
|
448 |
+
.sek-col-12 {
|
449 |
+
-ms-flex: 0 0 12.5%;
|
450 |
+
flex: 0 0 12.5%;
|
451 |
+
max-width: 12.5%;
|
452 |
+
}
|
453 |
+
.sek-col-14 {
|
454 |
+
-ms-flex: 0 0 14.285%;
|
455 |
+
flex: 0 0 14.285%;
|
456 |
+
max-width: 14.285%;
|
457 |
+
}
|
458 |
+
.sek-col-16 {
|
459 |
+
-ms-flex: 0 0 16.666%;
|
460 |
+
flex: 0 0 16.666%;
|
461 |
+
max-width: 16.666%;
|
462 |
+
}
|
463 |
+
.sek-col-20 {
|
464 |
+
-ms-flex: 0 0 20%;
|
465 |
+
flex: 0 0 20%;
|
466 |
+
max-width: 20%;
|
467 |
+
}
|
468 |
+
.sek-col-25 {
|
469 |
+
-ms-flex: 0 0 25%;
|
470 |
+
flex: 0 0 25%;
|
471 |
+
max-width: 25%;
|
472 |
+
}
|
473 |
+
.sek-col-30 {
|
474 |
+
-ms-flex: 0 0 30%;
|
475 |
+
flex: 0 0 30%;
|
476 |
+
max-width: 30%;
|
477 |
+
}
|
478 |
+
.sek-col-33 {
|
479 |
+
-ms-flex: 0 0 33.333%;
|
480 |
+
flex: 0 0 33.333%;
|
481 |
+
max-width: 33.333%;
|
482 |
+
}
|
483 |
+
.sek-col-40 {
|
484 |
+
-ms-flex: 0 0 40%;
|
485 |
+
flex: 0 0 40%;
|
486 |
+
max-width: 40%;
|
487 |
+
}
|
488 |
+
.sek-col-50 {
|
489 |
+
-ms-flex: 0 0 50%;
|
490 |
+
flex: 0 0 50%;
|
491 |
+
max-width: 50%;
|
492 |
+
}
|
493 |
+
.sek-col-60 {
|
494 |
+
-ms-flex: 0 0 60%;
|
495 |
+
flex: 0 0 60%;
|
496 |
+
max-width: 60%;
|
497 |
+
}
|
498 |
+
.sek-col-66 {
|
499 |
+
-ms-flex: 0 0 66.666%;
|
500 |
+
flex: 0 0 66.666%;
|
501 |
+
max-width: 66.666%;
|
502 |
+
}
|
503 |
+
.sek-col-70 {
|
504 |
+
-ms-flex: 0 0 70%;
|
505 |
+
flex: 0 0 70%;
|
506 |
+
max-width: 70%;
|
507 |
+
}
|
508 |
+
.sek-col-75 {
|
509 |
+
-ms-flex: 0 0 75%;
|
510 |
+
flex: 0 0 75%;
|
511 |
+
max-width: 75%;
|
512 |
+
}
|
513 |
+
.sek-col-80 {
|
514 |
+
-ms-flex: 0 0 80%;
|
515 |
+
flex: 0 0 80%;
|
516 |
+
max-width: 80%;
|
517 |
+
}
|
518 |
+
.sek-col-83 {
|
519 |
+
-ms-flex: 0 0 83.333%;
|
520 |
+
flex: 0 0 83.333%;
|
521 |
+
max-width: 83.333%;
|
522 |
+
}
|
523 |
+
.sek-col-90 {
|
524 |
+
-ms-flex: 0 0 90%;
|
525 |
+
flex: 0 0 90%;
|
526 |
+
max-width: 90%;
|
527 |
+
}
|
528 |
+
.sek-col-100 {
|
529 |
+
-ms-flex: 0 0 100%;
|
530 |
+
flex: 0 0 100%;
|
531 |
+
max-width: 100%;
|
532 |
+
}
|
533 |
+
.sek-order-first {
|
534 |
+
-ms-flex-order: -1;
|
535 |
+
order: -1;
|
536 |
+
}
|
537 |
+
.sek-order-last {
|
538 |
+
-ms-flex-order: 13;
|
539 |
+
order: 13;
|
540 |
+
}
|
541 |
+
.sek-order-0 {
|
542 |
+
-ms-flex-order: 0;
|
543 |
+
order: 0;
|
544 |
+
}
|
545 |
+
.sek-order-1 {
|
546 |
+
-ms-flex-order: 1;
|
547 |
+
order: 1;
|
548 |
+
}
|
549 |
+
.sek-order-2 {
|
550 |
+
-ms-flex-order: 2;
|
551 |
+
order: 2;
|
552 |
+
}
|
553 |
+
.sek-order-3 {
|
554 |
+
-ms-flex-order: 3;
|
555 |
+
order: 3;
|
556 |
+
}
|
557 |
+
.sek-order-4 {
|
558 |
+
-ms-flex-order: 4;
|
559 |
+
order: 4;
|
560 |
+
}
|
561 |
+
.sek-order-5 {
|
562 |
+
-ms-flex-order: 5;
|
563 |
+
order: 5;
|
564 |
+
}
|
565 |
+
.sek-order-6 {
|
566 |
+
-ms-flex-order: 6;
|
567 |
+
order: 6;
|
568 |
+
}
|
569 |
+
.sek-order-7 {
|
570 |
+
-ms-flex-order: 7;
|
571 |
+
order: 7;
|
572 |
+
}
|
573 |
+
.sek-order-8 {
|
574 |
+
-ms-flex-order: 8;
|
575 |
+
order: 8;
|
576 |
+
}
|
577 |
+
.sek-order-9 {
|
578 |
+
-ms-flex-order: 9;
|
579 |
+
order: 9;
|
580 |
+
}
|
581 |
+
.sek-order-10 {
|
582 |
+
-ms-flex-order: 10;
|
583 |
+
order: 10;
|
584 |
+
}
|
585 |
+
.sek-order-11 {
|
586 |
+
-ms-flex-order: 11;
|
587 |
+
order: 11;
|
588 |
+
}
|
589 |
+
.sek-order-12 {
|
590 |
+
-ms-flex-order: 12;
|
591 |
+
order: 12;
|
592 |
+
}
|
593 |
+
}
|
594 |
+
|
595 |
/*
|
596 |
.sek-collapsing {
|
597 |
position: relative;
|
598 |
height: 0;
|
599 |
overflow: hidden;
|
600 |
//@include transition($transition-collapse);
|
601 |
+
}*/
|
602 |
+
.sek-clearfix::after {
|
603 |
+
display: block;
|
604 |
+
clear: both;
|
605 |
+
content: "";
|
606 |
+
}
|
607 |
+
|
608 |
+
.sek-sr-only {
|
609 |
+
position: absolute;
|
610 |
+
width: 1px;
|
611 |
+
height: 1px;
|
612 |
+
padding: 0;
|
613 |
+
overflow: hidden;
|
614 |
+
clip: rect(0, 0, 0, 0);
|
615 |
+
white-space: nowrap;
|
616 |
+
border: 0;
|
617 |
+
}
|
618 |
+
|
619 |
+
.sek-sr-only-focusable:active, .sek-sr-only-focusable:focus {
|
620 |
+
position: static;
|
621 |
+
width: auto;
|
622 |
+
height: auto;
|
623 |
+
overflow: visible;
|
624 |
+
clip: auto;
|
625 |
+
white-space: normal;
|
626 |
+
}
|
627 |
+
|
628 |
+
.sek-embed {
|
629 |
+
position: relative;
|
630 |
+
}
|
631 |
+
|
632 |
+
.sek-embed::before {
|
633 |
+
display: block;
|
634 |
+
content: '';
|
635 |
+
}
|
636 |
+
|
637 |
+
.sek-embed .sek-embed-inner,
|
638 |
+
.sek-embed iframe {
|
639 |
+
position: absolute;
|
640 |
+
width: 100%;
|
641 |
+
height: 100%;
|
642 |
+
top: 0;
|
643 |
+
left: 0;
|
644 |
+
}
|
645 |
+
|
646 |
+
.sektion-wrapper {
|
647 |
+
word-wrap: break-word;
|
648 |
+
}
|
649 |
+
|
650 |
+
.sek-text-right {
|
651 |
+
text-align: right !important;
|
652 |
+
}
|
653 |
+
|
654 |
+
.sek-text-left {
|
655 |
+
text-align: left !important;
|
656 |
+
}
|
657 |
+
|
658 |
+
.sek-module .sek-module-inner ul {
|
659 |
+
list-style: disc;
|
660 |
+
}
|
661 |
+
|
662 |
+
.sek-module .sek-module-inner ol {
|
663 |
+
list-style: decimal;
|
664 |
+
}
|
665 |
+
|
666 |
+
.sek-module .sek-module-inner ol > li::before {
|
667 |
+
content: none;
|
668 |
+
}
|
669 |
+
|
670 |
+
.sek-module .sek-module-inner ul, .sek-module .sek-module-inner ol {
|
671 |
+
padding: 0;
|
672 |
+
line-height: 1.5;
|
673 |
+
margin: 0 1.5rem 3rem 0;
|
674 |
+
}
|
675 |
+
|
676 |
+
.sek-module .sek-module-inner ul > li, .sek-module .sek-module-inner ol > li {
|
677 |
+
padding: .15rem .25rem;
|
678 |
+
}
|
679 |
+
|
680 |
+
.sek-module .sek-module-inner li > ul, .sek-module .sek-module-inner li > ol {
|
681 |
+
margin-bottom: 0;
|
682 |
+
}
|
683 |
+
|
684 |
+
.sek-module-inner pre code, .sek-module-inner tt {
|
685 |
+
box-sizing: border-box;
|
686 |
+
font-size: inherit;
|
687 |
+
white-space: pre-wrap !important;
|
688 |
+
background: transparent;
|
689 |
+
border: none;
|
690 |
+
padding: 0;
|
691 |
+
font-family: monospace;
|
692 |
+
}
|
693 |
+
|
694 |
+
.sek-module-inner pre {
|
695 |
+
background: #f7f8f9;
|
696 |
+
padding: 2.5em;
|
697 |
+
word-wrap: normal;
|
698 |
+
white-space: pre-wrap !important;
|
699 |
+
color: #313131;
|
700 |
+
font-family: monospace !important;
|
701 |
+
}
|
702 |
+
|
703 |
+
.sek-module-inner figure {
|
704 |
+
text-align: center;
|
705 |
+
}
|
706 |
+
|
707 |
+
.sek-module-inner figcaption {
|
708 |
+
text-align: center;
|
709 |
+
}
|
710 |
+
|
711 |
+
.sek-module-inner cite {
|
712 |
+
color: #313131;
|
713 |
+
font-weight: 300;
|
714 |
+
font-style: normal;
|
715 |
+
position: relative;
|
716 |
+
display: inline-block;
|
717 |
+
}
|
718 |
+
|
719 |
+
.sek-module-inner caption, .sek-module-inner code, .sek-module-inner code, .sek-module-inner kbd, .sek-module-inner samp, .sek-module-inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd), .sek-module-inner :root .has-subtle-background-background-color {
|
720 |
+
background-color: #dbdbdb;
|
721 |
+
}
|
722 |
+
|
723 |
+
.sek-module-inner sub {
|
724 |
+
bottom: -0.25em;
|
725 |
+
}
|
726 |
+
|
727 |
+
.sek-module-inner sub, .sek-module-inner sup {
|
728 |
+
font-size: 75%;
|
729 |
+
line-height: 0;
|
730 |
+
position: relative;
|
731 |
+
vertical-align: baseline;
|
732 |
+
}
|
733 |
+
|
734 |
+
.sek-module-inner blockquote {
|
735 |
+
border-right: 5px solid rgba(0, 0, 0, 0.1);
|
736 |
+
background: none;
|
737 |
+
font-size: 1.2em;
|
738 |
+
font-style: inherit;
|
739 |
+
margin-right: 0;
|
740 |
+
margin-left: 0;
|
741 |
+
padding: 15px;
|
742 |
+
}
|
743 |
+
|
744 |
+
.sek-module-inner table {
|
745 |
+
width: 100%;
|
746 |
+
border-collapse: collapse;
|
747 |
/*&:not([id^=wp-calendar]) {
|
748 |
border: 2px solid $grey-lightest;
|
749 |
th { @extend .caps; @extend .letter-spacing-2; font-family: $serviceFont; }
|
750 |
th, td { @extend .demi-small; padding: $base-line-height; border: 1px solid $grey-lightest; }
|
751 |
td { color: $grey-dark; }
|
752 |
+
}*/
|
753 |
+
}
|
754 |
+
|
755 |
+
@media (max-width: 767.98px) {
|
756 |
+
.sek-module-inner table {
|
757 |
+
table-layout: fixed;
|
758 |
+
}
|
759 |
+
}
|
760 |
+
|
761 |
+
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) {
|
762 |
+
border: 2px solid #eceeef;
|
763 |
+
}
|
764 |
+
|
765 |
+
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th {
|
766 |
+
text-transform: uppercase;
|
767 |
+
letter-spacing: 2px;
|
768 |
+
font-family: sans-serif;
|
769 |
+
}
|
770 |
+
|
771 |
+
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th, .sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {
|
772 |
+
font-size: 0.95em;
|
773 |
+
padding: 1.25em;
|
774 |
+
border: 1px solid #eceeef;
|
775 |
+
}
|
776 |
+
|
777 |
+
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {
|
778 |
+
color: #777;
|
779 |
+
}
|
780 |
+
|
781 |
+
.sek-search-form {
|
782 |
+
float: none;
|
783 |
+
}
|
784 |
+
|
785 |
+
.sek-search-form .sek-search-form-group {
|
786 |
+
display: -ms-flexbox;
|
787 |
+
display: flex;
|
788 |
+
}
|
789 |
+
|
790 |
+
.sek-search-form .sek-search-form-group label {
|
791 |
+
position: relative;
|
792 |
+
margin-right: 5px;
|
793 |
+
}
|
794 |
+
|
795 |
+
.sek-search-form .sek-search-form-group label input[type=search] {
|
796 |
+
max-width: 100%;
|
797 |
+
margin: 0;
|
798 |
+
box-sizing: border-box;
|
799 |
+
border-radius: 0;
|
800 |
+
background: #fff;
|
801 |
+
border: 2px solid #ddd;
|
802 |
+
color: #777;
|
803 |
+
display: block;
|
804 |
+
max-width: 100%;
|
805 |
+
padding: 7px 8px;
|
806 |
+
padding-left: 5px;
|
807 |
+
line-height: 1.5em;
|
808 |
+
width: 100%;
|
809 |
+
}
|
810 |
+
|
811 |
+
.sek-search-form .sek-search-form-group [type=submit] {
|
812 |
+
line-height: 15px;
|
813 |
+
margin: 0;
|
814 |
+
background: #808080 !important;
|
815 |
+
color: #fff;
|
816 |
+
font-size: 16px;
|
817 |
+
padding: 10px 10px;
|
818 |
+
font-weight: normal;
|
819 |
+
display: inline-block;
|
820 |
+
border: none;
|
821 |
+
cursor: pointer;
|
822 |
+
border-radius: 3px;
|
823 |
+
}
|
824 |
+
|
825 |
+
.sek-module .sek-module-inner .sek-btn {
|
826 |
+
display: inline-block;
|
827 |
+
font-weight: normal;
|
828 |
+
line-height: 1.25em;
|
829 |
+
text-align: center;
|
830 |
+
/*white-space: nowrap;*/
|
831 |
+
white-space: normal;
|
832 |
+
word-break: break-all;
|
833 |
+
vertical-align: middle;
|
834 |
+
-webkit-user-select: none;
|
835 |
+
-moz-user-select: none;
|
836 |
+
-ms-user-select: none;
|
837 |
+
user-select: none;
|
838 |
+
border: 1px solid transparent;
|
839 |
+
padding: 0.5em 1em;
|
840 |
+
border-radius: 2px;
|
841 |
+
border-width: 2px;
|
842 |
+
border-style: solid;
|
843 |
+
font-size: 1em;
|
844 |
+
cursor: pointer;
|
845 |
+
text-decoration: none;
|
846 |
+
text-transform: none;
|
847 |
+
transition: all 0.2s ease-in-out;
|
848 |
+
}
|
849 |
+
|
850 |
+
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .sek-btn:hover {
|
851 |
+
text-decoration: none;
|
852 |
+
}
|
853 |
+
|
854 |
+
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .focus.sek-btn {
|
855 |
+
outline: 0;
|
856 |
+
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
857 |
+
}
|
858 |
+
|
859 |
+
.sek-module .sek-module-inner .disabled.sek-btn, .sek-module .sek-module-inner .sek-btn:disabled {
|
860 |
+
cursor: not-allowed;
|
861 |
+
opacity: .65;
|
862 |
+
box-shadow: none;
|
863 |
+
}
|
864 |
+
|
865 |
+
.sek-module .sek-module-inner .sek-btn:active, .sek-module .sek-module-inner .active.sek-btn {
|
866 |
+
background-image: none;
|
867 |
+
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
868 |
+
}
|
869 |
+
|
870 |
+
a.sek-btn.disabled,
|
871 |
+
fieldset[disabled] a.sek-btn {
|
872 |
+
pointer-events: none;
|
873 |
+
}
|
874 |
+
|
875 |
+
.sektion-wrapper button,
|
876 |
+
.sektion-wrapper [type="button"],
|
877 |
+
.sektion-wrapper [type="reset"],
|
878 |
+
.sektion-wrapper [type="submit"] {
|
879 |
+
-webkit-appearance: button;
|
880 |
+
}
|
881 |
+
|
882 |
+
.sektion-wrapper button::-moz-focus-inner,
|
883 |
+
.sektion-wrapper [type="button"]::-moz-focus-inner,
|
884 |
+
.sektion-wrapper [type="reset"]::-moz-focus-inner,
|
885 |
+
.sektion-wrapper [type="submit"]::-moz-focus-inner {
|
886 |
+
padding: 0;
|
887 |
+
border-style: none;
|
888 |
+
}
|
889 |
+
|
890 |
+
button.sek-btn,
|
891 |
+
[type="button"].sek-btn,
|
892 |
+
[type="reset"].sek-btn,
|
893 |
+
[type="submit"].sek-btn {
|
894 |
+
-wekbit-appearance: none !important;
|
895 |
+
background: transparent;
|
896 |
+
}
|
897 |
+
|
898 |
+
[data-sek-level="module"] .sek-module-inner {
|
899 |
+
/* WP Search Widget */
|
900 |
+
}
|
901 |
+
|
902 |
+
[data-sek-level="module"] .sek-module-inner .wp-caption figcaption {
|
903 |
+
color: #6d6d6d;
|
904 |
+
font-style: italic;
|
905 |
+
max-width: 100%;
|
906 |
+
font-size: 14px;
|
907 |
+
font-weight: 500;
|
908 |
+
line-height: 1.4;
|
909 |
+
/* Keep wide captions from overflowing their container. */
|
910 |
+
padding: 4px;
|
911 |
+
margin-top: 1rem;
|
912 |
+
}
|
913 |
+
|
914 |
+
[data-sek-level="module"] .sek-module-inner figure {
|
915 |
+
display: block;
|
916 |
+
}
|
917 |
+
|
918 |
+
[data-sek-level="module"] .sek-module-inner .wp-block-image .aligncenter, [data-sek-level="module"] .sek-module-inner .wp-block-image .alignleft, [data-sek-level="module"] .sek-module-inner .wp-block-image .alignright {
|
919 |
+
display: table;
|
920 |
+
}
|
921 |
+
|
922 |
+
[data-sek-level="module"] .sek-module-inner .wp-block-image figcaption {
|
923 |
+
font-size: 13px;
|
924 |
+
text-align: center;
|
925 |
+
}
|
926 |
+
|
927 |
+
[data-sek-level="module"] .sek-module-inner .wp-block-gallery, [data-sek-level="module"] .sek-module-inner ul.blocks-gallery-grid {
|
928 |
+
margin-right: 0;
|
929 |
+
}
|
930 |
+
|
931 |
+
[data-sek-level="module"] .sek-module-inner [class*="wp-block-"]:not(:last-child) {
|
932 |
+
margin-bottom: 1.5em;
|
933 |
+
}
|
934 |
+
|
935 |
+
.sek-col-100 .sek-module-inner .alignfull {
|
936 |
+
margin-left: calc(-50vw + 50%);
|
937 |
+
margin-right: calc(-50vw + 50%);
|
938 |
+
max-width: 100vw;
|
939 |
+
width: auto;
|
940 |
+
}
|
941 |
+
|
942 |
+
.sek-col-100 .sek-module-inner .alignwide {
|
943 |
+
margin-left: calc(50% - 40vw);
|
944 |
+
width: 80vw;
|
945 |
+
max-width: 80vw;
|
946 |
+
}
|
947 |
+
|
948 |
+
[data-sek-level="module"] .sek-module-inner .aligncenter, [data-sek-level="module"] .sek-module-inner .aligncenter img {
|
949 |
+
display: block;
|
950 |
+
margin-left: auto;
|
951 |
+
margin-right: auto;
|
952 |
+
}
|
953 |
+
|
954 |
+
[data-sek-level="module"] .sek-module-inner .alignleft {
|
955 |
+
float: left;
|
956 |
+
}
|
957 |
+
|
958 |
+
[data-sek-level="module"] .sek-module-inner .alignright {
|
959 |
+
float: right;
|
960 |
+
}
|
961 |
+
|
962 |
+
[data-sek-level="module"] .sek-module-inner .alignnone, [data-sek-level="module"] .sek-module-inner .aligncenter, [data-sek-level="module"] .sek-module-inner .alignleft, [data-sek-level="module"] .sek-module-inner .alignright {
|
963 |
+
margin-top: 1.5rem;
|
964 |
+
margin-right: auto;
|
965 |
+
margin-bottom: 1.5rem;
|
966 |
+
margin-left: auto;
|
967 |
+
}
|
968 |
+
|
969 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form {
|
970 |
+
display: -ms-flexbox;
|
971 |
+
display: flex;
|
972 |
+
max-width: 100%;
|
973 |
+
float: left;
|
974 |
+
}
|
975 |
+
|
976 |
+
@media (max-width: 767.98px) {
|
977 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form {
|
978 |
+
float: none;
|
979 |
+
}
|
980 |
+
}
|
981 |
+
|
982 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form label {
|
983 |
+
position: relative;
|
984 |
+
-ms-flex: 1;
|
985 |
+
flex: 1;
|
986 |
+
margin-right: 5px;
|
987 |
+
}
|
988 |
+
|
989 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form label input {
|
990 |
+
padding-left: 5px;
|
991 |
+
line-height: 20px;
|
992 |
+
width: 100%;
|
993 |
+
max-width: 185px;
|
994 |
+
min-width: 80px;
|
995 |
+
}
|
996 |
+
|
997 |
+
@media (max-width: 767.98px) {
|
998 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form label input {
|
999 |
+
max-width: none;
|
1000 |
+
}
|
1001 |
+
}
|
1002 |
+
|
1003 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form input[type=submit] {
|
1004 |
+
line-height: 15px;
|
1005 |
+
/*width: 25%;*/
|
1006 |
+
}
|
1007 |
+
|
1008 |
+
[data-sek-level="module"] .sek-module-inner input[type="submit"] {
|
1009 |
+
background: #808080;
|
1010 |
+
color: #fff;
|
1011 |
+
padding: 10px 10px;
|
1012 |
+
font-weight: normal;
|
1013 |
+
display: inline-block;
|
1014 |
+
border: none;
|
1015 |
+
cursor: pointer;
|
1016 |
+
border-radius: 3px;
|
1017 |
+
}
|
1018 |
+
|
1019 |
+
[data-sek-level="module"] .sek-module-inner .search-form input[type="search"] {
|
1020 |
+
margin: 0;
|
1021 |
+
box-sizing: border-box;
|
1022 |
+
border-radius: 0;
|
1023 |
+
background: #fff;
|
1024 |
+
border: 2px solid #ddd;
|
1025 |
+
color: #777;
|
1026 |
+
display: block;
|
1027 |
+
max-width: 100%;
|
1028 |
+
padding: 7px 8px;
|
1029 |
+
}
|
1030 |
+
|
1031 |
+
.sektion-wrapper.sek-password-protected {
|
1032 |
+
display: -ms-flexbox;
|
1033 |
+
display: flex;
|
1034 |
+
-ms-flex-align: center;
|
1035 |
+
align-items: center;
|
1036 |
+
-ms-flex-pack: center;
|
1037 |
+
justify-content: center;
|
1038 |
+
-ms-flex-direction: column;
|
1039 |
+
flex-direction: column;
|
1040 |
+
}
|
1041 |
+
|
1042 |
+
.sektion-wrapper.sek-password-protected form.post-password-form {
|
1043 |
+
max-width: 450px;
|
1044 |
+
height: auto;
|
1045 |
+
padding: 4em 1em;
|
1046 |
+
font-size: 1em;
|
1047 |
+
}
|
1048 |
+
|
1049 |
+
.sektion-wrapper .sek-module-inner .avatar {
|
1050 |
+
border-radius: 50%;
|
1051 |
+
}
|
1052 |
+
|
1053 |
+
.sek-next-post-link::after, .sek-previous-post-link::before {
|
1054 |
+
width: 15px;
|
1055 |
+
height: 10px;
|
1056 |
+
display: inline-block;
|
1057 |
+
position: relative;
|
1058 |
+
vertical-align: middle;
|
1059 |
+
border-top: 6px solid transparent;
|
1060 |
+
border-bottom: 6px solid transparent;
|
1061 |
+
border-left-color: inherit;
|
1062 |
+
border-right-color: inherit;
|
1063 |
+
}
|
1064 |
+
|
1065 |
+
.sek-previous-post-link::before {
|
1066 |
+
content: '';
|
1067 |
+
border-left: 6px solid;
|
1068 |
+
left: 7px;
|
1069 |
+
}
|
1070 |
+
|
1071 |
+
.sek-next-post-link::after {
|
1072 |
+
content: '';
|
1073 |
+
border-right: 6px solid;
|
1074 |
+
right: 7px;
|
1075 |
+
}
|
1076 |
+
|
1077 |
/*************************************
|
1078 |
* HEADING MODULE
|
1079 |
+
*************************************/
|
1080 |
+
.sek-module-inner .sek-heading {
|
1081 |
+
text-align: center;
|
1082 |
+
margin: 0.6em 0;
|
1083 |
+
display: block;
|
1084 |
+
}
|
1085 |
+
|
1086 |
+
.sek-module-inner .sek-heading > a {
|
1087 |
+
color: inherit;
|
1088 |
+
font-size: inherit;
|
1089 |
+
}
|
1090 |
+
|
1091 |
/*************************************
|
1092 |
* MENU MODULE
|
1093 |
+
*************************************/
|
1094 |
+
.sek-nav-wrap {
|
1095 |
+
position: relative;
|
1096 |
+
display: -ms-flexbox;
|
1097 |
+
display: flex;
|
1098 |
+
-ms-flex-wrap: wrap;
|
1099 |
+
flex-wrap: wrap;
|
1100 |
+
-ms-flex-align: center;
|
1101 |
+
align-items: center;
|
1102 |
+
-ms-flex-pack: end;
|
1103 |
+
justify-content: flex-end;
|
1104 |
+
padding: .5rem 0;
|
1105 |
+
}
|
1106 |
+
|
1107 |
+
.sek-mobile-menu-expanded-below .sek-nav-wrap {
|
1108 |
+
padding: 0;
|
1109 |
+
}
|
1110 |
+
|
1111 |
+
.sek-nav-collapse {
|
1112 |
+
-ms-flex-preferred-size: 100%;
|
1113 |
+
flex-basis: 100%;
|
1114 |
+
-ms-flex-positive: 1;
|
1115 |
+
flex-grow: 1;
|
1116 |
+
-ms-flex-align: center;
|
1117 |
+
align-items: center;
|
1118 |
+
}
|
1119 |
+
|
1120 |
+
.sek-nav {
|
1121 |
+
display: -ms-flexbox;
|
1122 |
+
display: flex;
|
1123 |
+
-ms-flex-wrap: wrap;
|
1124 |
+
flex-wrap: wrap;
|
1125 |
+
-ms-flex-direction: column;
|
1126 |
+
flex-direction: column;
|
1127 |
+
}
|
1128 |
+
|
1129 |
+
.sek-module .sek-module-inner .sek-nav {
|
1130 |
+
margin-right: -10px !important;
|
1131 |
+
margin-left: -10px !important;
|
1132 |
+
}
|
1133 |
+
|
1134 |
+
.sek-module .sek-module-inner .sek-nav,
|
1135 |
+
.sek-module .sek-module-inner .sek-nav ul {
|
1136 |
+
list-style: none !important;
|
1137 |
+
padding: 0 !important;
|
1138 |
+
margin: 0 !important;
|
1139 |
+
}
|
1140 |
+
|
1141 |
+
.sek-module .sek-module-inner .sek-nav li {
|
1142 |
+
list-style: none;
|
1143 |
+
padding: 0;
|
1144 |
+
}
|
1145 |
+
|
1146 |
+
.sek-module .sek-module-inner .sek-nav li > ul li {
|
1147 |
+
padding: 0;
|
1148 |
+
}
|
1149 |
+
|
1150 |
+
.sek-nav li {
|
1151 |
+
font-size: 16px;
|
1152 |
+
}
|
1153 |
+
|
1154 |
+
.sek-nav li a {
|
1155 |
+
line-height: 1.5em;
|
1156 |
+
padding: .6em .8em;
|
1157 |
+
display: -ms-flexbox;
|
1158 |
+
display: flex;
|
1159 |
+
-ms-flex-align: center;
|
1160 |
+
align-items: center;
|
1161 |
+
-ms-flex-pack: justify;
|
1162 |
+
justify-content: space-between;
|
1163 |
+
color: inherit;
|
1164 |
+
overflow: hidden;
|
1165 |
+
}
|
1166 |
+
|
1167 |
+
.sek-nav-wrap .sek-nav li a {
|
1168 |
+
text-decoration: none;
|
1169 |
+
}
|
1170 |
+
|
1171 |
+
.sek-nav li a:hover .sek-nav__title {
|
1172 |
+
text-decoration: underline;
|
1173 |
+
}
|
1174 |
+
|
1175 |
+
.sek-nav li:not(:last-of-type) {
|
1176 |
+
border-bottom: 1px solid;
|
1177 |
+
border-color: rgba(49, 49, 49, 0.09);
|
1178 |
+
}
|
1179 |
+
|
1180 |
+
.sek-nav .menu-item-has-children,
|
1181 |
+
.sek-nav .page_item_has_children {
|
1182 |
+
position: relative;
|
1183 |
+
}
|
1184 |
+
|
1185 |
+
.sek-nav .menu-item-has-children > a::after,
|
1186 |
+
.sek-nav .page_item_has_children > a::after {
|
1187 |
+
content: "\203A";
|
1188 |
+
font-family: "Arial Unicode MS", Arial;
|
1189 |
+
moz-osx-font-smoothing: grayscale;
|
1190 |
+
-webkit-font-smoothing: antialiased;
|
1191 |
+
display: none;
|
1192 |
+
font-style: normal;
|
1193 |
+
font-variant: normal;
|
1194 |
+
text-rendering: auto;
|
1195 |
+
font-weight: 900;
|
1196 |
+
transition: all 0.3s ease;
|
1197 |
+
-webkit-transform-style: preserve-3d;
|
1198 |
+
transform-style: preserve-3d;
|
1199 |
+
-webkit-backface-visibility: hidden;
|
1200 |
+
backface-visibility: hidden;
|
1201 |
+
-webkit-perspective: 1000px;
|
1202 |
+
perspective: 1000px;
|
1203 |
+
padding: 0 .45em;
|
1204 |
+
font-size: 1em;
|
1205 |
+
position: relative;
|
1206 |
+
-webkit-transform: translateZ(0) rotate(90deg);
|
1207 |
+
transform: translateZ(0) rotate(90deg);
|
1208 |
+
-ms-transform: rotate(90deg);
|
1209 |
+
}
|
1210 |
+
|
1211 |
+
.sek-nav .menu-item-has-children.show > a::after,
|
1212 |
+
.sek-nav .page_item_has_children.show > a::after {
|
1213 |
+
-webkit-transform: translateZ(0) rotate(90deg) !important;
|
1214 |
+
transform: translateZ(0) rotate(90deg) !important;
|
1215 |
+
-ms-transform: rotate(90deg) !important;
|
1216 |
+
}
|
1217 |
+
|
1218 |
+
.sek-nav .sub-menu,
|
1219 |
+
.sek-nav .children {
|
1220 |
+
position: static;
|
1221 |
+
float: none;
|
1222 |
+
list-style: none;
|
1223 |
+
border-radius: 0;
|
1224 |
+
border: 0;
|
1225 |
+
margin: 0;
|
1226 |
+
padding: 0;
|
1227 |
+
font-size: inherit;
|
1228 |
+
}
|
1229 |
+
|
1230 |
+
@media (min-width: 768px) {
|
1231 |
+
.sek-nav .sub-menu,
|
1232 |
+
.sek-nav .children {
|
1233 |
+
position: absolute;
|
1234 |
+
display: none;
|
1235 |
+
top: 100%;
|
1236 |
+
right: 0;
|
1237 |
+
z-index: 1000;
|
1238 |
+
min-width: 10rem;
|
1239 |
+
max-width: 50vw;
|
1240 |
+
}
|
1241 |
+
}
|
1242 |
+
|
1243 |
+
@media (min-width: 768px) {
|
1244 |
+
.sek-nav {
|
1245 |
+
-ms-flex-direction: row;
|
1246 |
+
flex-direction: row;
|
1247 |
+
}
|
1248 |
+
.sek-nav .menu-item-has-children > a::after,
|
1249 |
+
.sek-nav .page_item_has_children > a::after {
|
1250 |
+
display: inline-block;
|
1251 |
+
}
|
1252 |
+
.sek-nav > li:not(:last-of-type) {
|
1253 |
+
border-bottom: none;
|
1254 |
+
}
|
1255 |
+
.sek-nav > li > a {
|
1256 |
+
padding: 5px;
|
1257 |
+
}
|
1258 |
+
.sek-module .sek-module-inner .sek-nav li {
|
1259 |
+
margin: 0 5px;
|
1260 |
+
}
|
1261 |
+
.sek-module .sek-module-inner .sek-nav li > ul li {
|
1262 |
+
padding: 0 .9rem 0 0;
|
1263 |
+
}
|
1264 |
+
.sek-nav-collapse {
|
1265 |
+
display: -ms-flexbox !important;
|
1266 |
+
display: flex !important;
|
1267 |
+
-ms-flex-preferred-size: auto;
|
1268 |
+
flex-basis: auto;
|
1269 |
+
justify-content: flex-end;
|
1270 |
+
-webkit-box-pack: end;
|
1271 |
+
-ms-flex-pack: end;
|
1272 |
+
}
|
1273 |
+
.sek-mobile-menu-expanded-below {
|
1274 |
+
display: none !important;
|
1275 |
+
}
|
1276 |
+
.sek-nav-toggler {
|
1277 |
+
display: none;
|
1278 |
+
}
|
1279 |
+
.sek-dropdown-menu {
|
1280 |
+
background: white;
|
1281 |
+
box-shadow: 1px 2px 2px 2px rgba(0, 0, 0, 0.15);
|
1282 |
+
}
|
1283 |
+
.sek-nav .sek-dropdown-menu li {
|
1284 |
+
padding: 0 10px !important;
|
1285 |
+
margin: 0 !important;
|
1286 |
+
}
|
1287 |
+
.sek-nav .sek-dropdown-menu li a {
|
1288 |
+
padding: 10px 12px;
|
1289 |
+
}
|
1290 |
+
.sek-dropdown-menu ul {
|
1291 |
+
right: 100%;
|
1292 |
+
}
|
1293 |
+
.sek-dropdown-menu .sek-menu-link__row-reverse {
|
1294 |
+
-ms-flex-direction: row-reverse !important;
|
1295 |
+
flex-direction: row-reverse !important;
|
1296 |
+
}
|
1297 |
+
.sek-dropdown-menu .sek-nav__title {
|
1298 |
+
word-break: normal;
|
1299 |
+
white-space: nowrap;
|
1300 |
+
}
|
1301 |
+
.sek-dropdown-submenu .sek-dropdown-menu {
|
1302 |
+
top: 15px;
|
1303 |
+
}
|
1304 |
+
.sek-submenu-fade .sek-dropdown-menu a {
|
1305 |
+
transition: all 0.25s ease;
|
1306 |
+
-webkit-transform: translate(0, 0);
|
1307 |
+
transform: translate(0, 0);
|
1308 |
+
}
|
1309 |
+
.sek-submenu-fade .sek-dropdown-menu a:hover {
|
1310 |
+
-webkit-transform: translate(3px, 0);
|
1311 |
+
transform: translate(3px, 0);
|
1312 |
+
}
|
1313 |
+
.sek-submenu-fade .page_item_has_children,
|
1314 |
+
.sek-submenu-fade .menu-item-has-children {
|
1315 |
+
-webkit-perspective: 1000px;
|
1316 |
+
perspective: 1000px;
|
1317 |
+
}
|
1318 |
+
.sek-submenu-fade .page_item_has_children > ul,
|
1319 |
+
.sek-submenu-fade .menu-item-has-children > ul {
|
1320 |
+
position: fixed;
|
1321 |
+
opacity: 0;
|
1322 |
+
visibility: hidden;
|
1323 |
+
display: block;
|
1324 |
+
transition: all 0.25s ease-in-out;
|
1325 |
+
-webkit-transform: translate(0, -10px);
|
1326 |
+
transform: translate(0, -10px);
|
1327 |
+
}
|
1328 |
+
.sek-submenu-fade .page_item_has_children:not(.show),
|
1329 |
+
.sek-submenu-fade .menu-item-has-children:not(.show) {
|
1330 |
+
overflow: hidden;
|
1331 |
+
}
|
1332 |
+
.sek-submenu-fade .page_item_has_children:not(.show) ul,
|
1333 |
+
.sek-submenu-fade .menu-item-has-children:not(.show) ul {
|
1334 |
+
pointer-events: none;
|
1335 |
+
cursor: not-allowed;
|
1336 |
+
}
|
1337 |
+
.sek-submenu-fade li.show {
|
1338 |
+
-webkit-perspective: none;
|
1339 |
+
perspective: none;
|
1340 |
+
}
|
1341 |
+
.sek-submenu-fade li.show > ul {
|
1342 |
+
position: absolute;
|
1343 |
+
visibility: visible;
|
1344 |
+
opacity: 1;
|
1345 |
+
-webkit-transform: translate(0, 0);
|
1346 |
+
transform: translate(0, 0);
|
1347 |
+
}
|
1348 |
+
.nb-collapsible-mobile-menu .nb-dd-mm-toggle-wrapper {
|
1349 |
+
display: none;
|
1350 |
+
}
|
1351 |
+
}
|
1352 |
+
|
1353 |
+
.sek-dropdown-submenu > a::after {
|
1354 |
+
-webkit-transform: translateZ(0) rotate(0deg) !important;
|
1355 |
+
transform: translateZ(0) rotate(0deg) !important;
|
1356 |
+
-ms-transform: rotate(0deg) !important;
|
1357 |
+
}
|
1358 |
+
|
1359 |
+
.sek-dropdown-submenu > a[class*=-reverse]::after {
|
1360 |
+
top: .1em;
|
1361 |
+
-webkit-transform: translateZ(0) rotate(180deg) !important;
|
1362 |
+
transform: translateZ(0) rotate(180deg) !important;
|
1363 |
+
-ms-transform: rotate(180deg) !important;
|
1364 |
+
}
|
1365 |
+
|
1366 |
+
.sek-dropdown-menu {
|
1367 |
+
position: static;
|
1368 |
+
float: none;
|
1369 |
+
list-style: none;
|
1370 |
+
border-radius: 0;
|
1371 |
+
border: 0;
|
1372 |
+
margin: 0;
|
1373 |
+
padding: 0;
|
1374 |
+
font-size: inherit;
|
1375 |
+
}
|
1376 |
+
|
1377 |
+
@media (min-width: 768px) {
|
1378 |
+
.sek-dropdown-menu {
|
1379 |
+
position: absolute;
|
1380 |
+
display: none;
|
1381 |
+
top: 100%;
|
1382 |
+
right: 0;
|
1383 |
+
z-index: 1000;
|
1384 |
+
min-width: 10rem;
|
1385 |
+
max-width: 50vw;
|
1386 |
+
}
|
1387 |
+
}
|
1388 |
+
|
1389 |
+
.show > .sek-dropdown-menu {
|
1390 |
+
display: block;
|
1391 |
+
}
|
1392 |
+
|
1393 |
+
.sek-dropdown-menu .sek-nav .sek-nav__title {
|
1394 |
+
word-break: break-word;
|
1395 |
+
white-space: normal;
|
1396 |
+
}
|
1397 |
+
|
1398 |
+
.sek-dropdown-menu.open-right {
|
1399 |
+
left: 0;
|
1400 |
+
right: auto;
|
1401 |
+
}
|
1402 |
+
|
1403 |
+
.sek-dropdown-menu.open-right ul:not(.open-left),
|
1404 |
+
.sek-dropdown-menu ul.open-right {
|
1405 |
+
left: 100%;
|
1406 |
+
right: auto;
|
1407 |
+
top: 0;
|
1408 |
+
}
|
1409 |
+
|
1410 |
+
.sek-dropdown-menu.open-left {
|
1411 |
+
left: auto;
|
1412 |
+
right: 0;
|
1413 |
+
}
|
1414 |
+
|
1415 |
+
.sek-dropdown-menu.open-left ul:not(.open-right),
|
1416 |
+
.sek-dropdown-menu ul.open-left {
|
1417 |
+
right: 100%;
|
1418 |
+
left: auto;
|
1419 |
+
}
|
1420 |
+
|
1421 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] {
|
1422 |
+
overflow: auto;
|
1423 |
+
max-height: 80vh;
|
1424 |
+
padding-bottom: 10px;
|
1425 |
+
}
|
1426 |
+
|
1427 |
+
nav.nb-collapsible-mobile-menu li .sub-menu li a {
|
1428 |
+
font-size: 0.88em;
|
1429 |
+
}
|
1430 |
+
|
1431 |
+
nav.nb-collapsible-mobile-menu li .sub-menu li > a {
|
1432 |
+
padding: .6em 32px;
|
1433 |
+
}
|
1434 |
+
|
1435 |
+
nav.nb-collapsible-mobile-menu li .sub-menu li li > a {
|
1436 |
+
padding: .6em 60px;
|
1437 |
+
}
|
1438 |
+
|
1439 |
+
nav.nb-collapsible-mobile-menu li .sub-menu li li li > a {
|
1440 |
+
padding: .6em 80px;
|
1441 |
+
}
|
1442 |
+
|
1443 |
+
nav.nb-collapsible-mobile-menu li .sub-menu li li li li > a {
|
1444 |
+
padding: .6em 100px;
|
1445 |
+
}
|
1446 |
+
|
1447 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state] {
|
1448 |
+
display: none;
|
1449 |
+
}
|
1450 |
+
|
1451 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] {
|
1452 |
+
display: block;
|
1453 |
+
}
|
1454 |
+
|
1455 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"],
|
1456 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] li,
|
1457 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] ul {
|
1458 |
+
background: #ffffff;
|
1459 |
+
}
|
1460 |
+
|
1461 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .sub-menu,
|
1462 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] li {
|
1463 |
+
position: relative;
|
1464 |
+
}
|
1465 |
+
|
1466 |
+
[data-sek-is-mobile-vertical-menu="yes"] .sek-nav li a {
|
1467 |
+
min-height: 45px;
|
1468 |
+
box-sizing: border-box;
|
1469 |
+
justify-content: flex-start;
|
1470 |
+
-webkit-box-pack: start;
|
1471 |
+
-ms-flex-pack: start;
|
1472 |
+
}
|
1473 |
+
|
1474 |
+
[data-sek-is-mobile-vertical-menu="yes"] .sub-menu {
|
1475 |
+
display: none;
|
1476 |
+
}
|
1477 |
+
|
1478 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .sub-menu {
|
1479 |
+
display: none;
|
1480 |
+
}
|
1481 |
+
|
1482 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .sub-menu.expanded {
|
1483 |
+
display: block;
|
1484 |
+
}
|
1485 |
+
|
1486 |
/*
|
1487 |
* Mobile dropdown on click
|
1488 |
+
*/
|
1489 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .page_item_has_children > a,
|
1490 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .menu-item-has-children > a {
|
1491 |
+
padding-right: 60px;
|
1492 |
+
}
|
1493 |
+
|
1494 |
+
.nb-dd-mm-toggle-wrapper {
|
1495 |
+
position: absolute;
|
1496 |
+
top: 1px;
|
1497 |
+
right: 0;
|
1498 |
+
text-align: center;
|
1499 |
+
line-height: 1;
|
1500 |
+
bottom: 1px;
|
1501 |
+
height: 45px;
|
1502 |
+
width: 60px;
|
1503 |
+
}
|
1504 |
+
|
1505 |
+
.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .nb-dd-mm-toggle-wrapper {
|
1506 |
+
display: block;
|
1507 |
+
}
|
1508 |
+
|
1509 |
+
.nb-dd-mm-toggle {
|
1510 |
+
background: none !important;
|
1511 |
+
-webkit-appearance: none;
|
1512 |
+
outline: none;
|
1513 |
+
border: none;
|
1514 |
+
padding: 0;
|
1515 |
+
cursor: pointer;
|
1516 |
+
display: block;
|
1517 |
+
height: 45px;
|
1518 |
+
width: 60px;
|
1519 |
+
box-sizing: border-box;
|
1520 |
+
overflow: hidden;
|
1521 |
+
}
|
1522 |
+
|
1523 |
+
.nb-dd-mm-toggle i {
|
1524 |
+
display: block;
|
1525 |
+
transition: all .3s ease;
|
1526 |
+
-webkit-transform-style: preserve-3d;
|
1527 |
+
transform-style: preserve-3d;
|
1528 |
+
-webkit-backface-visibility: hidden;
|
1529 |
+
backface-visibility: hidden;
|
1530 |
+
width: 100%;
|
1531 |
+
color: #000000;
|
1532 |
+
}
|
1533 |
+
|
1534 |
+
li.expanded > .nb-dd-mm-toggle-wrapper .nb-arrow-for-mobile-menu {
|
1535 |
+
-webkit-transform: rotate(-180deg);
|
1536 |
+
transform: rotate(-180deg);
|
1537 |
+
}
|
1538 |
+
|
1539 |
+
.nb-arrow-for-mobile-menu::after {
|
1540 |
+
content: "\25BE";
|
1541 |
+
font-family: "Arial Unicode MS", Arial;
|
1542 |
+
moz-osx-font-smoothing: grayscale;
|
1543 |
+
-webkit-font-smoothing: antialiased;
|
1544 |
+
font-style: normal;
|
1545 |
+
font-variant: normal;
|
1546 |
+
text-rendering: auto;
|
1547 |
+
font-weight: 900;
|
1548 |
+
transition: all 0.3s ease;
|
1549 |
+
-webkit-transform-style: preserve-3d;
|
1550 |
+
transform-style: preserve-3d;
|
1551 |
+
-webkit-backface-visibility: hidden;
|
1552 |
+
backface-visibility: hidden;
|
1553 |
+
-webkit-perspective: 1000px;
|
1554 |
+
perspective: 1000px;
|
1555 |
+
padding: 0 .45em;
|
1556 |
+
font-size: 18px;
|
1557 |
+
line-height: 45px;
|
1558 |
+
position: relative;
|
1559 |
+
}
|
1560 |
+
|
1561 |
+
.nb-loc .sek-module-inner nav .sek-nav-toggler {
|
1562 |
+
-webkit-appearance: none !important;
|
1563 |
+
cursor: pointer;
|
1564 |
+
height: 40px;
|
1565 |
+
width: 40px;
|
1566 |
+
padding: 0;
|
1567 |
+
vertical-align: middle;
|
1568 |
+
}
|
1569 |
+
|
1570 |
+
.nb-loc .sek-module-inner nav .sek-nav-toggler, .nb-loc .sek-module-inner nav .sek-nav-toggler:hover, .nb-loc .sek-module-inner nav .sek-nav-toggler:focus {
|
1571 |
+
background: 0 0;
|
1572 |
+
background-color: rgba(0, 0, 0, 0);
|
1573 |
+
color: black;
|
1574 |
+
outline: none;
|
1575 |
+
border: none;
|
1576 |
+
}
|
1577 |
+
|
1578 |
+
.sek-ham__span-wrapper {
|
1579 |
+
height: 12px;
|
1580 |
+
position: relative;
|
1581 |
+
display: block;
|
1582 |
+
}
|
1583 |
+
|
1584 |
+
.sek-ham__span-wrapper .line {
|
1585 |
+
display: block;
|
1586 |
+
height: 1.5px;
|
1587 |
+
position: absolute;
|
1588 |
+
left: 10px;
|
1589 |
+
border-radius: 5px;
|
1590 |
+
background-clip: padding-box;
|
1591 |
+
transition: all ease .35s;
|
1592 |
+
-webkit-backface-visibility: hidden;
|
1593 |
+
backface-visibility: hidden;
|
1594 |
+
border-top: 1.5px solid;
|
1595 |
+
}
|
1596 |
+
|
1597 |
+
.sek-ham__span-wrapper .line-1 {
|
1598 |
+
top: 0;
|
1599 |
+
}
|
1600 |
+
|
1601 |
+
.sek-ham__span-wrapper .line-2 {
|
1602 |
+
top: 50%;
|
1603 |
+
}
|
1604 |
+
|
1605 |
+
.sek-ham__span-wrapper .line-3 {
|
1606 |
+
top: 100%;
|
1607 |
+
}
|
1608 |
+
|
1609 |
+
.sek-nav-toggler .line-1 {
|
1610 |
+
-webkit-transform: translate(-3px, 6px) rotate(45deg);
|
1611 |
+
transform: translate(-3px, 6px) rotate(45deg);
|
1612 |
+
width: 28px;
|
1613 |
+
}
|
1614 |
+
|
1615 |
+
.sek-nav-toggler .line-2 {
|
1616 |
+
opacity: 0;
|
1617 |
+
}
|
1618 |
+
|
1619 |
+
.sek-nav-toggler .line-3 {
|
1620 |
+
-webkit-transform: translate(-3px, -6px) rotate(-45deg);
|
1621 |
+
transform: translate(-3px, -6px) rotate(-45deg);
|
1622 |
+
width: 28px;
|
1623 |
+
}
|
1624 |
+
|
1625 |
+
.sek-nav-toggler.sek-collapsed .line {
|
1626 |
+
width: 20px;
|
1627 |
+
-webkit-transform: translate(0, 0) rotate(0);
|
1628 |
+
transform: translate(0, 0) rotate(0);
|
1629 |
+
opacity: 1;
|
1630 |
+
}
|
1631 |
+
|
1632 |
+
.sek-nav-toggler.sek-collapsed.hovering .line {
|
1633 |
+
-webkit-transform: translateX(-3px);
|
1634 |
+
transform: translateX(-3px);
|
1635 |
+
width: 26px;
|
1636 |
+
}
|
1637 |
+
|
1638 |
+
.nb-module-menu-search {
|
1639 |
+
position: relative;
|
1640 |
+
}
|
1641 |
+
|
1642 |
+
[data-sek-is-mobile-vertical-menu="yes"] .nb-module-menu-search {
|
1643 |
+
display: none;
|
1644 |
+
}
|
1645 |
+
|
1646 |
+
.nb-svg-search-icon {
|
1647 |
+
cursor: pointer;
|
1648 |
+
padding: 0;
|
1649 |
+
}
|
1650 |
+
|
1651 |
+
.nb-module-menu-search .nb-search-expand {
|
1652 |
+
display: none;
|
1653 |
+
background: #fff;
|
1654 |
+
position: absolute;
|
1655 |
+
z-index: 100;
|
1656 |
+
top: 49px;
|
1657 |
+
right: 0;
|
1658 |
+
left: 0;
|
1659 |
+
width: 340px;
|
1660 |
+
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
|
1661 |
+
}
|
1662 |
+
|
1663 |
+
.nb-search-expand .nb-search-expand-inner {
|
1664 |
+
border: 1px solid #eee;
|
1665 |
+
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.15);
|
1666 |
+
transition: -webkit-transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;
|
1667 |
+
transition: height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;
|
1668 |
+
transition: transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;
|
1669 |
+
transition: transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;
|
1670 |
+
padding: 15px;
|
1671 |
+
}
|
1672 |
+
|
1673 |
+
.nb-search-expand .nb-search-expand-inner [role=search].search-form label::after {
|
1674 |
+
content: none;
|
1675 |
+
}
|
1676 |
+
|
1677 |
+
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner [role=search].search-form {
|
1678 |
+
display: -ms-flexbox;
|
1679 |
+
display: flex;
|
1680 |
+
float: none;
|
1681 |
+
}
|
1682 |
+
|
1683 |
+
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner label input[type=search] {
|
1684 |
+
max-width: 100%;
|
1685 |
+
}
|
1686 |
+
|
1687 |
+
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner input[type=submit], [data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search form input[type=submit] {
|
1688 |
+
margin: 0;
|
1689 |
+
background: #808080 !important;
|
1690 |
+
color: #fff;
|
1691 |
+
font-size: 16px;
|
1692 |
+
padding: 10px 10px;
|
1693 |
+
font-weight: normal;
|
1694 |
+
display: inline-block;
|
1695 |
+
border: none;
|
1696 |
+
cursor: pointer;
|
1697 |
+
border-radius: 3px;
|
1698 |
+
}
|
1699 |
+
|
1700 |
+
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner input[type=search], [data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search input[type=search],
|
1701 |
+
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner input[type=submit], [data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search form input[type=submit] {
|
1702 |
+
text-transform: none !important;
|
1703 |
+
}
|
1704 |
+
|
1705 |
+
.nb-mobile-search {
|
1706 |
+
display: none;
|
1707 |
+
}
|
1708 |
+
|
1709 |
+
[data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search {
|
1710 |
+
display: block;
|
1711 |
+
padding: 6px 14px 15px;
|
1712 |
+
}
|
1713 |
+
|
1714 |
+
[data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search input {
|
1715 |
+
font-size: 16px;
|
1716 |
+
}
|
1717 |
+
|
1718 |
+
.nb-search-expand-inner input[type="search"], .nb-mobile-search input[type="search"] {
|
1719 |
+
color: #000000 !important;
|
1720 |
+
}
|
1721 |
+
|
1722 |
+
.nb-search-expand-inner input[type="submit"], .nb-mobile-search input[type="submit"] {
|
1723 |
+
color: #ffffff !important;
|
1724 |
+
}
|
1725 |
+
|
1726 |
/*************************************
|
1727 |
* IMAGE MODULE
|
1728 |
+
*************************************/
|
1729 |
+
[data-sek-module-type="czr_image_module"] {
|
1730 |
+
text-align: center;
|
1731 |
+
}
|
1732 |
+
|
1733 |
+
[data-sek-module-type="czr_image_module"] img {
|
1734 |
+
border: 0 solid #f2f2f2;
|
1735 |
+
}
|
1736 |
+
|
1737 |
+
[data-sek-module-type="czr_image_module"] .box-shadow img {
|
1738 |
+
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0;
|
1739 |
+
}
|
1740 |
+
|
1741 |
+
/* image module transitions for better animations when effects are used */
|
1742 |
+
[data-sek-module-type="czr_image_module"] figure img {
|
1743 |
+
transition: all 0.2s ease-out;
|
1744 |
+
}
|
1745 |
+
|
1746 |
+
[data-sek-module-type="czr_image_module"] figure.has-custom-height {
|
1747 |
+
overflow: hidden;
|
1748 |
+
display: -ms-flexbox;
|
1749 |
+
display: flex;
|
1750 |
+
-ms-flex-pack: center;
|
1751 |
+
justify-content: center;
|
1752 |
+
-ms-flex-align: center;
|
1753 |
+
align-items: center;
|
1754 |
+
}
|
1755 |
+
|
1756 |
+
[data-sek-module-type="czr_image_module"] figure.has-custom-height img {
|
1757 |
+
-o-object-fit: cover;
|
1758 |
+
object-fit: cover;
|
1759 |
+
}
|
1760 |
+
|
1761 |
+
.sek-hover-effect-opacity img:hover {
|
1762 |
+
opacity: .7;
|
1763 |
+
}
|
1764 |
+
|
1765 |
+
.sek-hover-effect-zoom-out img:hover {
|
1766 |
+
-webkit-transform: scale(1.05);
|
1767 |
+
transform: scale(1.05);
|
1768 |
+
}
|
1769 |
+
|
1770 |
+
.sek-hover-effect-zoom-in img:hover {
|
1771 |
+
-webkit-transform: scale(0.95);
|
1772 |
+
transform: scale(0.95);
|
1773 |
+
}
|
1774 |
+
|
1775 |
+
.sek-hover-effect-move-up img:hover {
|
1776 |
+
-webkit-transform: translateY(-6px);
|
1777 |
+
transform: translateY(-6px);
|
1778 |
+
}
|
1779 |
+
|
1780 |
+
.sek-hover-effect-move-down img:hover {
|
1781 |
+
-webkit-transform: translateY(6px);
|
1782 |
+
transform: translateY(6px);
|
1783 |
+
}
|
1784 |
+
|
1785 |
+
.sek-hover-effect-blur img:hover {
|
1786 |
+
-webkit-filter: blur(2px);
|
1787 |
+
filter: blur(2px);
|
1788 |
+
}
|
1789 |
+
|
1790 |
+
.sek-hover-effect-grayscale img:hover {
|
1791 |
+
-webkit-filter: grayscale(0%);
|
1792 |
+
filter: grayscale(0%);
|
1793 |
+
}
|
1794 |
+
|
1795 |
+
.sek-hover-effect-grayscale img:hover {
|
1796 |
+
-webkit-filter: grayscale(100%);
|
1797 |
+
filter: grayscale(100%);
|
1798 |
+
-webkit-filter: gray;
|
1799 |
+
filter: gray;
|
1800 |
+
}
|
1801 |
+
|
1802 |
+
.sek-hover-effect-reverse-grayscale img {
|
1803 |
+
-webkit-filter: grayscale(100%);
|
1804 |
+
filter: grayscale(100%);
|
1805 |
+
-webkit-filter: gray;
|
1806 |
+
filter: gray;
|
1807 |
+
}
|
1808 |
+
|
1809 |
+
.sek-hover-effect-reverse-grayscale img:hover {
|
1810 |
+
-webkit-filter: grayscale(0%);
|
1811 |
+
filter: grayscale(0%);
|
1812 |
+
}
|
1813 |
+
|
1814 |
+
/*************************************
|
1815 |
+
* NIMBLE IMAGE MODULE
|
1816 |
+
*************************************/
|
1817 |
+
.sek-nimble-image-wrapper {
|
1818 |
+
max-width: 100%;
|
1819 |
+
overflow: hidden;
|
1820 |
+
width: 100%;
|
1821 |
+
position: relative;
|
1822 |
+
display: block;
|
1823 |
+
background-position: center center;
|
1824 |
+
background-size: cover;
|
1825 |
+
display: -ms-flexbox;
|
1826 |
+
display: flex;
|
1827 |
+
-ms-flex-align: center;
|
1828 |
+
align-items: center;
|
1829 |
+
-ms-flex-pack: center;
|
1830 |
+
justify-content: center;
|
1831 |
+
-webkit-backface-visibility: hidden;
|
1832 |
+
backface-visibility: hidden;
|
1833 |
+
-webkit-transform-style: preserve-3d;
|
1834 |
+
transform-style: preserve-3d;
|
1835 |
+
}
|
1836 |
+
|
1837 |
+
.sek-nimble-image-wrapper::before {
|
1838 |
+
content: '';
|
1839 |
+
display: block;
|
1840 |
+
padding-top: 100%;
|
1841 |
+
}
|
1842 |
+
|
1843 |
+
.nb-loc [data-sek-level] .sek-module-inner .sek-nimble-image-wrapper a {
|
1844 |
+
color: #ffffff;
|
1845 |
+
}
|
1846 |
+
|
1847 |
+
.nb-loc [data-sek-level] .sek-module-inner .sek-nimble-image-wrapper a:hover {
|
1848 |
+
color: #ffffff;
|
1849 |
+
}
|
1850 |
+
|
1851 |
+
.sek-nimble-image-wrapper .nb-icon-text-wrapper {
|
1852 |
+
position: absolute;
|
1853 |
+
width: 100%;
|
1854 |
+
height: 100%;
|
1855 |
+
z-index: 1;
|
1856 |
+
top: 0;
|
1857 |
+
display: -ms-flexbox;
|
1858 |
+
display: flex;
|
1859 |
+
-ms-flex-direction: column;
|
1860 |
+
flex-direction: column;
|
1861 |
+
-ms-flex-align: center;
|
1862 |
+
align-items: center;
|
1863 |
+
-ms-flex-pack: center;
|
1864 |
+
justify-content: center;
|
1865 |
+
}
|
1866 |
+
|
1867 |
+
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-icon {
|
1868 |
+
font-size: 80px;
|
1869 |
+
line-height: 1em;
|
1870 |
+
color: #000000;
|
1871 |
+
transition: all .3s ease;
|
1872 |
+
}
|
1873 |
+
|
1874 |
+
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text, .sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text * {
|
1875 |
+
color: #000000;
|
1876 |
+
font-size: 16px;
|
1877 |
+
line-height: 1.5em;
|
1878 |
+
font-weight: 400;
|
1879 |
+
transition: all .3s ease;
|
1880 |
+
}
|
1881 |
+
|
1882 |
+
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text p {
|
1883 |
+
margin: 0;
|
1884 |
+
padding: 0;
|
1885 |
+
}
|
1886 |
+
|
1887 |
+
.sek-nimble-image-wrapper.nb-icon-has-hover-color:hover .nb-pro-img-icon {
|
1888 |
+
color: #969696;
|
1889 |
+
}
|
1890 |
+
|
1891 |
+
.sek-nimble-image-mask {
|
1892 |
+
position: absolute;
|
1893 |
+
border-color: #fff;
|
1894 |
+
left: 0;
|
1895 |
+
right: 0;
|
1896 |
+
top: 0;
|
1897 |
+
bottom: 0;
|
1898 |
+
overflow: hidden;
|
1899 |
+
z-index: 1;
|
1900 |
+
display: -ms-flexbox;
|
1901 |
+
display: flex;
|
1902 |
+
-ms-flex-align: center;
|
1903 |
+
align-items: center;
|
1904 |
+
-ms-flex-pack: center;
|
1905 |
+
justify-content: center;
|
1906 |
+
}
|
1907 |
+
|
1908 |
+
.sek-nimble-image-mask::before {
|
1909 |
+
position: absolute;
|
1910 |
+
content: '';
|
1911 |
+
z-index: 1;
|
1912 |
+
border: 150vw solid;
|
1913 |
+
border-color: inherit;
|
1914 |
+
box-sizing: content-box;
|
1915 |
+
transition: all .3s ease;
|
1916 |
+
-webkit-backface-visibility: hidden;
|
1917 |
+
backface-visibility: hidden;
|
1918 |
+
}
|
1919 |
+
|
1920 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand:hover .sek-nimble-image-mask::before,
|
1921 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink .sek-nimble-image-mask::before,
|
1922 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-expanded .sek-nimble-image-mask::before {
|
1923 |
+
width: 88%;
|
1924 |
+
padding-bottom: 88%;
|
1925 |
+
}
|
1926 |
+
|
1927 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink:hover .sek-nimble-image-mask::before,
|
1928 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand .sek-nimble-image-mask::before,
|
1929 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-shrinked .sek-nimble-image-mask::before {
|
1930 |
+
width: 63%;
|
1931 |
+
padding-bottom: 63%;
|
1932 |
+
}
|
1933 |
+
|
1934 |
+
.sek-nimble-image-wrapper.nb-circle-mask .sek-nimble-image-mask::before {
|
1935 |
+
border-radius: 50%;
|
1936 |
+
}
|
1937 |
+
|
1938 |
+
.sek-nimble-image {
|
1939 |
+
position: absolute;
|
1940 |
+
width: 100%;
|
1941 |
+
height: 100%;
|
1942 |
+
background-position: center center;
|
1943 |
+
background-size: cover;
|
1944 |
+
background-repeat: no-repeat;
|
1945 |
+
z-index: 0;
|
1946 |
+
top: 0;
|
1947 |
+
}
|
1948 |
+
|
1949 |
+
.sek-module-inner [data-sek-adv-list-type="none"] > ul {
|
1950 |
+
list-style-type: none;
|
1951 |
+
margin-right: 0 !important;
|
1952 |
+
}
|
1953 |
+
|
1954 |
+
.sek-module-inner [data-sek-adv-list-type="circle"] > ul {
|
1955 |
+
list-style-type: circle;
|
1956 |
+
}
|
1957 |
+
|
1958 |
+
.sek-module-inner [data-sek-adv-list-type="disc"] > ul {
|
1959 |
+
list-style-type: disc;
|
1960 |
+
}
|
1961 |
+
|
1962 |
+
.sek-module-inner [data-sek-adv-list-type="square"] > ul {
|
1963 |
+
list-style-type: square;
|
1964 |
+
}
|
1965 |
+
|
1966 |
+
.sek-module-inner [data-sek-adv-list-type="decimal"] > ol {
|
1967 |
+
list-style-type: decimal;
|
1968 |
+
}
|
1969 |
+
|
1970 |
+
.sek-module-inner [data-sek-adv-list-type="lower-alpha"] > ol {
|
1971 |
+
list-style-type: lower-alpha;
|
1972 |
+
}
|
1973 |
+
|
1974 |
+
.sek-module-inner [data-sek-adv-list-type="lower-roman"] > ol {
|
1975 |
+
list-style-type: lower-roman;
|
1976 |
+
}
|
1977 |
+
|
1978 |
+
.sek-module-inner [data-sek-adv-list-type="upper-roman"] > ol {
|
1979 |
+
list-style-type: upper-roman;
|
1980 |
+
}
|
1981 |
+
|
1982 |
+
.sek-module-inner [data-sek-adv-list-type="upper-alpha"] > ol {
|
1983 |
+
list-style-type: upper-alpha;
|
1984 |
+
}
|
1985 |
+
|
1986 |
+
.sek-module-inner .sek-adv-list-wrapper ul, .sek-module-inner .sek-adv-list-wrapper ol {
|
1987 |
+
padding: 0;
|
1988 |
+
line-height: 1.5;
|
1989 |
+
margin: 0;
|
1990 |
+
margin-right: 25px;
|
1991 |
+
}
|
1992 |
+
|
1993 |
+
.sek-module-inner .sek-adv-list-wrapper ul li, .sek-module-inner .sek-adv-list-wrapper ol li {
|
1994 |
+
text-indent: 0px;
|
1995 |
+
}
|
1996 |
+
|
1997 |
+
.sek-module-inner [data-sek-adv-list-layout="vertical"] ul li, .sek-module-inner [data-sek-adv-list-layout="vertical"] ol li {
|
1998 |
+
display: list-item;
|
1999 |
+
}
|
2000 |
+
|
2001 |
+
.sek-module-inner [data-sek-adv-list-layout="horizontal"] ul li, .sek-module-inner [data-sek-adv-list-layout="horizontal"] ol li {
|
2002 |
+
display: inline-block;
|
2003 |
+
}
|
2004 |
+
|
2005 |
+
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-inner {
|
2006 |
+
display: -ms-flexbox;
|
2007 |
+
display: flex;
|
2008 |
+
}
|
2009 |
+
|
2010 |
+
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text {
|
2011 |
+
transition: color 0.2s ease-in-out;
|
2012 |
+
-ms-flex-align: center;
|
2013 |
+
align-items: center;
|
2014 |
+
display: -ms-flexbox;
|
2015 |
+
display: flex;
|
2016 |
+
}
|
2017 |
+
|
2018 |
+
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text p {
|
2019 |
+
margin: 0;
|
2020 |
+
}
|
2021 |
+
|
2022 |
+
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text a {
|
2023 |
+
cursor: pointer;
|
2024 |
+
}
|
2025 |
+
|
2026 |
+
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text a:hover {
|
2027 |
+
text-decoration: underline;
|
2028 |
+
}
|
2029 |
+
|
2030 |
+
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-icon {
|
2031 |
+
margin-right: 10px;
|
2032 |
+
-ms-flex-negative: 0;
|
2033 |
+
flex-shrink: 0;
|
2034 |
+
-ms-flex-positive: 0;
|
2035 |
+
flex-grow: 0;
|
2036 |
+
}
|
2037 |
+
|
2038 |
+
.sek-module-inner .sek-adv-list-item [data-sek-icon-border="circle"], .sek-module-inner .sek-adv-list-item [data-sek-icon-border="square"] {
|
2039 |
+
border: 1px solid;
|
2040 |
+
width: 2.2em;
|
2041 |
+
height: 2.2em;
|
2042 |
+
display: -ms-flexbox;
|
2043 |
+
display: flex;
|
2044 |
+
-ms-flex-align: center;
|
2045 |
+
align-items: center;
|
2046 |
+
-ms-flex-pack: center;
|
2047 |
+
justify-content: center;
|
2048 |
+
}
|
2049 |
+
|
2050 |
+
.sek-module-inner .sek-adv-list-item [data-sek-icon-border="circle"] {
|
2051 |
+
border-radius: 2em;
|
2052 |
+
}
|
2053 |
+
|
2054 |
+
/*************************************
|
2055 |
+
* DIVIDER MODULE
|
2056 |
+
*************************************/
|
2057 |
+
[data-sek-module-type="czr_divider_module"] {
|
2058 |
+
text-align: center;
|
2059 |
+
}
|
2060 |
+
|
2061 |
+
[data-sek-module-type="czr_divider_module"] .sek-module-inner {
|
2062 |
+
font-size: 0;
|
2063 |
+
line-height: 0;
|
2064 |
+
}
|
2065 |
+
|
2066 |
+
.sek-module-inner .sek-divider {
|
2067 |
+
border-top: 1px solid #5a5a5a;
|
2068 |
+
display: inline-block;
|
2069 |
+
width: 100%;
|
2070 |
+
margin-top: 15px;
|
2071 |
+
margin-bottom: 15px;
|
2072 |
+
font-size: 1rem;
|
2073 |
+
}
|
2074 |
+
|
2075 |
+
/*************************************
|
2076 |
+
* SPACER MODULE
|
2077 |
+
*************************************/
|
2078 |
+
.sek-module-inner .sek-spacer {
|
2079 |
+
height: 20px;
|
2080 |
+
}
|
2081 |
+
|
2082 |
+
/*************************************
|
2083 |
+
* ICON MODULE
|
2084 |
+
*************************************/
|
2085 |
+
[data-sek-module-type="czr_icon_module"] {
|
2086 |
+
text-align: center;
|
2087 |
+
color: #5a5a5a;
|
2088 |
+
font-size: 15px;
|
2089 |
+
}
|
2090 |
+
|
2091 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon,
|
2092 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon:hover,
|
2093 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon:focus,
|
2094 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon:active,
|
2095 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon.active {
|
2096 |
+
color: inherit;
|
2097 |
+
}
|
2098 |
+
|
2099 |
+
[data-sek-module-type="czr_icon_module"] .box-shadow .sek-icon-wrapper {
|
2100 |
+
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0;
|
2101 |
+
}
|
2102 |
+
|
2103 |
+
[data-sek-module-type="czr_icon_module"] .sek-icon i {
|
2104 |
+
transition: all 0.15s ease-in-out;
|
2105 |
+
}
|
2106 |
+
|
2107 |
+
[data-sek-module-type="czr_icon_module"] .sek-icon .fas, [data-sek-module-type="czr_icon_module"] .sek-icon .far, [data-sek-module-type="czr_icon_module"] .sek-icon .fab {
|
2108 |
+
width: 1em;
|
2109 |
+
height: 1em;
|
2110 |
+
text-align: center;
|
2111 |
+
}
|
2112 |
+
|
2113 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon {
|
2114 |
+
box-shadow: none;
|
2115 |
+
-webkit-box-shadow: none;
|
2116 |
+
}
|
2117 |
+
|
2118 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon:hover, [data-sek-module-type="czr_icon_module"] a.sek-icon:focus, [data-sek-module-type="czr_icon_module"] a.sek-icon:active {
|
2119 |
+
box-shadow: none;
|
2120 |
+
-webkit-box-shadow: none;
|
2121 |
+
}
|
2122 |
+
|
2123 |
+
[data-sek-module-type="czr_icon_module"] .sek-icon-wrapper {
|
2124 |
+
display: inline-block;
|
2125 |
+
line-height: 1em;
|
2126 |
+
}
|
2127 |
+
|
2128 |
+
/*************************************
|
2129 |
+
* QUOTE MODULE
|
2130 |
+
*************************************/
|
2131 |
+
.sek-quote p {
|
2132 |
+
margin: 0 0 .5em;
|
2133 |
+
padding: 0;
|
2134 |
+
}
|
2135 |
+
|
2136 |
+
.sek-quote .sek-cite {
|
2137 |
+
font-size: 14px;
|
2138 |
+
line-height: 1.5em;
|
2139 |
+
font-style: inherit;
|
2140 |
+
}
|
2141 |
+
|
2142 |
+
.sek-quote[data-sek-quote-design="none"] {
|
2143 |
+
border-left: none;
|
2144 |
+
}
|
2145 |
+
|
2146 |
+
.sek-quote .sek-quote-content {
|
2147 |
+
font-weight: 400;
|
2148 |
+
font-size: 1.2em;
|
2149 |
+
line-height: 1.5em;
|
2150 |
+
color: inherit;
|
2151 |
+
}
|
2152 |
+
|
2153 |
+
.sek-quote.sek-quote-design {
|
2154 |
+
background: none;
|
2155 |
+
font-style: inherit;
|
2156 |
+
margin-right: 0;
|
2157 |
+
margin-left: 0;
|
2158 |
+
padding: 15px 0;
|
2159 |
+
border: none;
|
2160 |
+
}
|
2161 |
+
|
2162 |
+
.sek-quote.sek-quote-design > * {
|
2163 |
+
padding: 0;
|
2164 |
+
margin: 0;
|
2165 |
+
}
|
2166 |
+
|
2167 |
+
.sek-quote.sek-quote-design::before, .sek-quote.sek-quote-design::after {
|
2168 |
+
display: none;
|
2169 |
+
}
|
2170 |
+
|
2171 |
+
.sek-quote.sek-quote-design .sek-cite {
|
2172 |
+
padding: 0;
|
2173 |
+
font-weight: normal;
|
2174 |
+
}
|
2175 |
+
|
2176 |
+
.sek-quote.sek-quote-design .sek-cite::before {
|
2177 |
+
display: none;
|
2178 |
+
}
|
2179 |
+
|
2180 |
+
.sek-quote.sek-quote-design .sek-quote-inner {
|
2181 |
+
color: inherit;
|
2182 |
+
}
|
2183 |
+
|
2184 |
+
.sek-quote.sek-quote-design.sek-quote-icon-before .sek-quote-inner {
|
2185 |
+
padding-right: 45px;
|
2186 |
+
}
|
2187 |
+
|
2188 |
+
.sek-quote.sek-quote-design.sek-border-before {
|
2189 |
+
padding-right: 15px;
|
2190 |
+
border-right: 5px solid rgba(0, 0, 0, 0.1);
|
2191 |
+
}
|
2192 |
+
|
2193 |
+
.sek-quote.sek-quote-design.sek-border-before .sek-cite {
|
2194 |
+
clear: both;
|
2195 |
+
display: block;
|
2196 |
+
margin-top: 1.5em;
|
2197 |
+
position: relative;
|
2198 |
+
padding-right: 2.2em;
|
2199 |
+
padding-left: 0.25em;
|
2200 |
+
}
|
2201 |
+
|
2202 |
+
.sek-quote.sek-quote-design.sek-border-before .sek-cite::before {
|
2203 |
+
display: block;
|
2204 |
+
content: '';
|
2205 |
+
top: 1em;
|
2206 |
+
position: absolute;
|
2207 |
+
background: none;
|
2208 |
+
width: 2em;
|
2209 |
+
height: auto;
|
2210 |
+
right: 0;
|
2211 |
+
border-top: 1px solid;
|
2212 |
+
}
|
2213 |
+
|
2214 |
+
.sek-quote.sek-quote-design.sek-quote-icon-before {
|
2215 |
+
position: relative;
|
2216 |
+
display: -ms-flexbox;
|
2217 |
+
display: flex;
|
2218 |
+
}
|
2219 |
+
|
2220 |
+
.sek-quote.sek-quote-design.sek-quote-icon-before .sek-quote-content *:last-child {
|
2221 |
+
margin-bottom: .75em;
|
2222 |
+
}
|
2223 |
+
|
2224 |
+
.sek-quote.sek-quote-design.sek-quote-icon-before::before {
|
2225 |
+
content: "\275D";
|
2226 |
+
font-family: "Arial Unicode MS", Code2000;
|
2227 |
+
font-size: 50px;
|
2228 |
+
line-height: 1em;
|
2229 |
+
color: #ccc;
|
2230 |
+
font-style: normal;
|
2231 |
+
text-align: center;
|
2232 |
+
-moz-osx-font-smoothing: grayscale;
|
2233 |
+
-webkit-font-smoothing: antialiased;
|
2234 |
+
font-variant: normal;
|
2235 |
+
text-rendering: auto;
|
2236 |
+
display: -ms-flexbox;
|
2237 |
+
display: flex;
|
2238 |
+
width: auto;
|
2239 |
+
margin: 0;
|
2240 |
+
right: 0;
|
2241 |
+
position: absolute;
|
2242 |
+
top: 10px;
|
2243 |
+
}
|
2244 |
+
|
2245 |
+
/*************************************
|
2246 |
+
* BUTTON MODULE
|
2247 |
+
*************************************/
|
2248 |
+
[data-sek-module-type="czr_button_module"] .sek-module-inner {
|
2249 |
+
text-align: center;
|
2250 |
+
}
|
2251 |
+
|
2252 |
+
.nb-loc .sek-module .sek-module-inner .sek-btn {
|
2253 |
+
background: #020202;
|
2254 |
+
color: #ffffff;
|
2255 |
+
padding: 0.5em 1em;
|
2256 |
+
margin: 0.5em;
|
2257 |
+
}
|
2258 |
+
|
2259 |
+
.nb-loc .sek-module .sek-module-inner .sek-btn i {
|
2260 |
+
margin: 0 8px;
|
2261 |
+
}
|
2262 |
+
|
2263 |
+
.nb-loc .sek-module .sek-module-inner .sek-btn:hover, .nb-loc .sek-module .sek-module-inner .sek-btn:focus, .nb-loc .sek-module .sek-module-inner .sek-btn:active {
|
2264 |
+
color: #ffffff;
|
2265 |
+
background-color: #282828;
|
2266 |
+
text-decoration: none;
|
2267 |
+
}
|
2268 |
+
|
2269 |
+
[data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:focus, [data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:hover {
|
2270 |
+
text-decoration: none;
|
2271 |
+
}
|
2272 |
+
|
2273 |
+
.sek-btn-inner {
|
2274 |
+
display: -ms-flexbox;
|
2275 |
+
display: flex;
|
2276 |
+
-ms-flex-align: center;
|
2277 |
+
align-items: center;
|
2278 |
+
}
|
2279 |
+
|
2280 |
+
.sek-btn-inner .sek-btn-text {
|
2281 |
+
width: 100%;
|
2282 |
+
text-align: center;
|
2283 |
+
}
|
2284 |
+
|
2285 |
+
.sek-btn.box-shadow {
|
2286 |
+
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
2287 |
+
}
|
2288 |
+
|
2289 |
+
.sek-btn.box-shadow.push-effect:active {
|
2290 |
+
-webkit-transform: translateY(2px);
|
2291 |
+
transform: translateY(2px);
|
2292 |
+
}
|
2293 |
+
|
2294 |
+
/*************************************
|
2295 |
+
* POST GRID MODULE
|
2296 |
+
*************************************/
|
2297 |
+
.sek-post-grid-wrapper {
|
2298 |
+
margin-top: 1.5rem;
|
2299 |
+
margin-bottom: 1.5rem;
|
2300 |
+
}
|
2301 |
+
|
2302 |
+
.sek-post-grid-wrapper .sek-grid-items {
|
2303 |
+
grid-row-gap: 25px;
|
2304 |
+
}
|
2305 |
+
|
2306 |
+
.sek-post-grid-wrapper .sek-grid-items.sek-list-layout article > *:not(:last-child):not(.sek-pg-thumbnail) {
|
2307 |
+
margin-bottom: 10px;
|
2308 |
+
}
|
2309 |
+
|
2310 |
+
.sek-post-grid-wrapper .sek-grid-items.sek-grid-layout article > *:not(:last-child) {
|
2311 |
+
margin-bottom: 10px;
|
2312 |
+
}
|
2313 |
+
|
2314 |
+
.sek-post-grid-wrapper .sek-grid-items article {
|
2315 |
+
overflow: hidden;
|
2316 |
+
}
|
2317 |
+
|
2318 |
+
.sek-post-grid-wrapper .sek-grid-items article > :first-child {
|
2319 |
+
margin-top: 0 !important;
|
2320 |
+
}
|
2321 |
+
|
2322 |
+
.sek-post-grid-wrapper .sek-grid-items article > :last-child {
|
2323 |
+
margin-top: 0 !important;
|
2324 |
+
}
|
2325 |
+
|
2326 |
+
.sek-post-grid-wrapper .sek-grid-items article > *:not(:last-child) {
|
2327 |
+
margin-top: 0 !important;
|
2328 |
+
}
|
2329 |
+
|
2330 |
+
.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > *:not(:last-child) {
|
2331 |
+
margin-top: 0 !important;
|
2332 |
+
margin-bottom: 10px;
|
2333 |
+
}
|
2334 |
+
|
2335 |
+
.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > :first-child {
|
2336 |
+
margin-top: 0 !important;
|
2337 |
+
}
|
2338 |
+
|
2339 |
+
.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > :last-child {
|
2340 |
+
margin-top: 0 !important;
|
2341 |
+
}
|
2342 |
+
|
2343 |
+
.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article {
|
2344 |
+
box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);
|
2345 |
+
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
|
2346 |
+
}
|
2347 |
+
|
2348 |
+
.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article:hover {
|
2349 |
+
-webkit-transform: translateY(-4px);
|
2350 |
+
transform: translateY(-4px);
|
2351 |
+
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18), 0 10px 10px rgba(0, 0, 0, 0.15);
|
2352 |
+
}
|
2353 |
+
|
2354 |
+
.sek-post-grid-wrapper .sek-pg-thumbnail {
|
2355 |
+
background: inherit;
|
2356 |
+
overflow: hidden;
|
2357 |
+
}
|
2358 |
+
|
2359 |
+
.sek-post-grid-wrapper .sek-pg-thumbnail img {
|
2360 |
+
box-shadow: 0 5px 5px 0 rgba(18, 63, 82, 0.035), 0 0 0 1px rgba(176, 181, 193, 0.2);
|
2361 |
+
border-radius: 4px;
|
2362 |
+
}
|
2363 |
+
|
2364 |
+
.sek-post-grid-wrapper .sek-pg-thumbnail a {
|
2365 |
+
display: block;
|
2366 |
+
position: relative;
|
2367 |
+
}
|
2368 |
+
|
2369 |
+
.sek-post-grid-wrapper .sek-pg-thumbnail img {
|
2370 |
+
display: block;
|
2371 |
+
width: 100%;
|
2372 |
+
height: auto;
|
2373 |
+
}
|
2374 |
+
|
2375 |
+
.sek-post-grid-wrapper.nb-thumb-box-shadow article .sek-pg-thumbnail img {
|
2376 |
+
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
2377 |
+
}
|
2378 |
+
|
2379 |
+
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a {
|
2380 |
+
height: 0;
|
2381 |
+
padding-top: 65%;
|
2382 |
+
}
|
2383 |
+
|
2384 |
+
@media all and (-ms-high-contrast: none) {
|
2385 |
+
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a {
|
2386 |
+
height: auto !important;
|
2387 |
+
padding-top: inherit !important;
|
2388 |
+
}
|
2389 |
+
}
|
2390 |
+
|
2391 |
+
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img {
|
2392 |
+
position: absolute;
|
2393 |
+
height: 100%;
|
2394 |
+
width: 100%;
|
2395 |
+
max-height: none;
|
2396 |
+
max-width: none;
|
2397 |
+
top: 0;
|
2398 |
+
left: 0;
|
2399 |
+
right: 0;
|
2400 |
+
bottom: 0;
|
2401 |
+
-o-object-fit: cover;
|
2402 |
+
object-fit: cover;
|
2403 |
+
}
|
2404 |
+
|
2405 |
+
@media all and (-ms-high-contrast: none) {
|
2406 |
+
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img {
|
2407 |
+
height: auto !important;
|
2408 |
+
position: relative;
|
2409 |
+
}
|
2410 |
+
}
|
2411 |
+
|
2412 |
+
.sek-post-grid-wrapper .sek-pg-metas > span:not(:last-child)::after {
|
2413 |
+
content: "\B7";
|
2414 |
+
vertical-align: middle;
|
2415 |
+
margin: 0 5px;
|
2416 |
+
line-height: 1;
|
2417 |
+
}
|
2418 |
+
|
2419 |
+
.sek-post-grid-wrapper .sek-pg-content {
|
2420 |
+
text-align: right;
|
2421 |
+
}
|
2422 |
+
|
2423 |
+
.sek-post-grid-wrapper .sek-excerpt > :last-child {
|
2424 |
+
margin-bottom: 0;
|
2425 |
+
}
|
2426 |
+
|
2427 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-category {
|
2428 |
+
line-height: 1.2em;
|
2429 |
+
color: #767676;
|
2430 |
+
}
|
2431 |
+
|
2432 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-category a {
|
2433 |
+
text-transform: uppercase;
|
2434 |
+
font-size: 13px;
|
2435 |
+
text-decoration: none;
|
2436 |
+
color: #767676;
|
2437 |
+
}
|
2438 |
+
|
2439 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-category a:hover {
|
2440 |
+
color: inherit;
|
2441 |
+
text-decoration: underline;
|
2442 |
+
}
|
2443 |
+
|
2444 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title {
|
2445 |
+
font-size: 28px;
|
2446 |
+
line-height: 1.1em;
|
2447 |
+
}
|
2448 |
+
|
2449 |
+
@media (max-width: 991.98px) {
|
2450 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title {
|
2451 |
+
font-size: 22px;
|
2452 |
+
}
|
2453 |
+
}
|
2454 |
+
|
2455 |
+
@media (max-width: 575.98px) {
|
2456 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title {
|
2457 |
+
font-size: 20px;
|
2458 |
+
}
|
2459 |
+
}
|
2460 |
+
|
2461 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {
|
2462 |
+
text-decoration: none;
|
2463 |
+
color: #121212;
|
2464 |
+
font-size: 28px;
|
2465 |
+
font-weight: 400;
|
2466 |
+
line-height: 1.1em;
|
2467 |
+
-ms-word-wrap: break-word;
|
2468 |
+
word-wrap: break-word;
|
2469 |
+
}
|
2470 |
+
|
2471 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a:hover {
|
2472 |
+
color: #666;
|
2473 |
+
}
|
2474 |
+
|
2475 |
+
@media (max-width: 991.98px) {
|
2476 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {
|
2477 |
+
font-size: 22px;
|
2478 |
+
}
|
2479 |
+
}
|
2480 |
+
|
2481 |
+
@media (max-width: 575.98px) {
|
2482 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {
|
2483 |
+
font-size: 20px;
|
2484 |
+
}
|
2485 |
+
}
|
2486 |
+
|
2487 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas {
|
2488 |
+
line-height: 1.2em;
|
2489 |
+
}
|
2490 |
+
|
2491 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas span, .nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas a {
|
2492 |
+
text-transform: uppercase;
|
2493 |
+
font-size: 13px;
|
2494 |
+
letter-spacing: 1px;
|
2495 |
+
color: #767676;
|
2496 |
+
}
|
2497 |
+
|
2498 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas a:hover {
|
2499 |
+
text-decoration: underline;
|
2500 |
+
color: inherit;
|
2501 |
+
}
|
2502 |
+
|
2503 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-content p {
|
2504 |
+
margin: 0 0 10px 0;
|
2505 |
+
line-height: 1.3em;
|
2506 |
+
font-size: 14px;
|
2507 |
+
color: #555;
|
2508 |
+
}
|
2509 |
+
|
2510 |
+
.sek-post-grid-wrapper .sek-list-layout {
|
2511 |
+
display: -ms-grid;
|
2512 |
+
display: grid;
|
2513 |
+
-ms-grid-columns: minmax(0, 1fr);
|
2514 |
+
grid-template-columns: minmax(0, 1fr);
|
2515 |
+
}
|
2516 |
+
|
2517 |
+
@media all and (-ms-high-contrast: none) {
|
2518 |
+
.sek-post-grid-wrapper .sek-list-layout {
|
2519 |
+
display: block !important;
|
2520 |
+
}
|
2521 |
+
}
|
2522 |
+
|
2523 |
+
.sek-post-grid-wrapper .sek-list-layout article {
|
2524 |
+
display: -ms-grid;
|
2525 |
+
display: grid;
|
2526 |
+
-ms-grid-columns: minmax(0, 1fr);
|
2527 |
+
grid-template-columns: minmax(0, 1fr);
|
2528 |
+
-ms-grid-rows: 1fr;
|
2529 |
+
grid-template-rows: 1fr;
|
2530 |
+
grid-column-gap: 20px;
|
2531 |
+
}
|
2532 |
+
|
2533 |
+
@media all and (-ms-high-contrast: none) {
|
2534 |
+
.sek-post-grid-wrapper .sek-list-layout article {
|
2535 |
+
display: block !important;
|
2536 |
+
padding-top: 10px;
|
2537 |
+
}
|
2538 |
+
}
|
2539 |
+
|
2540 |
+
.sek-post-grid-wrapper .sek-list-layout article > *:nth-child(1) {
|
2541 |
+
-ms-grid-row: 1;
|
2542 |
+
-ms-grid-column: 1;
|
2543 |
+
}
|
2544 |
+
|
2545 |
+
.sek-post-grid-wrapper .sek-list-layout article.sek-has-thumb {
|
2546 |
+
-ms-grid-columns: 30% minmax(0, 1fr);
|
2547 |
+
grid-template-columns: 30% minmax(0, 1fr);
|
2548 |
+
}
|
2549 |
+
|
2550 |
+
.sek-post-grid-wrapper .sek-list-layout article .sek-pg-thumbnail {
|
2551 |
+
margin-bottom: 0;
|
2552 |
+
-ms-flex-item-align: start;
|
2553 |
+
align-self: flex-start;
|
2554 |
+
}
|
2555 |
+
|
2556 |
+
.sek-post-grid-wrapper .sek-grid-layout {
|
2557 |
+
display: -ms-grid;
|
2558 |
+
display: grid;
|
2559 |
+
-ms-grid-columns: 1fr 20px 1fr;
|
2560 |
+
grid-template-columns: 1fr 1fr;
|
2561 |
+
-ms-grid-rows: 1fr;
|
2562 |
+
grid-template-rows: 1fr;
|
2563 |
+
grid-row-gap: 20px;
|
2564 |
+
grid-column-gap: 20px;
|
2565 |
+
}
|
2566 |
+
|
2567 |
+
@media all and (-ms-high-contrast: none) {
|
2568 |
+
.sek-post-grid-wrapper .sek-grid-layout {
|
2569 |
+
display: block !important;
|
2570 |
+
}
|
2571 |
+
}
|
2572 |
+
|
2573 |
+
.sek-post-grid-wrapper .sek-grid-layout > *:nth-child(1) {
|
2574 |
+
-ms-grid-row: 1;
|
2575 |
+
-ms-grid-column: 1;
|
2576 |
+
}
|
2577 |
+
|
2578 |
+
.sek-post-grid-wrapper .sek-grid-layout > *:nth-child(2) {
|
2579 |
+
-ms-grid-row: 1;
|
2580 |
+
-ms-grid-column: 3;
|
2581 |
+
}
|
2582 |
+
|
2583 |
+
.sek-module-inner .nb-masonry-post-grid .sek-grid-items.nb-masonry-grid-images-loaded {
|
2584 |
+
grid-auto-rows: 5px;
|
2585 |
+
}
|
2586 |
+
|
2587 |
+
.sek-module-inner .nb-masonry-post-grid .sek-grid-items article {
|
2588 |
+
overflow: hidden;
|
2589 |
+
}
|
2590 |
+
|
2591 |
+
.sek-module-inner .nb-masonry-post-grid .sek-grid-items.sek-thumb-no-custom-height .sek-pg-thumbnail a {
|
2592 |
+
height: auto;
|
2593 |
+
padding-top: 0;
|
2594 |
+
}
|
2595 |
+
|
2596 |
+
.sek-module-inner .nb-masonry-post-grid .sek-grid-items.sek-thumb-no-custom-height .sek-pg-thumbnail img {
|
2597 |
+
position: relative;
|
2598 |
+
height: auto;
|
2599 |
+
width: 100%;
|
2600 |
+
}
|
2601 |
+
|
2602 |
+
.sek-module-inner .nb-item-box-shadow .sek-grid-items article {
|
2603 |
+
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
2604 |
+
}
|
2605 |
+
|
2606 |
+
.sek-post-navigation #sek-nav-below {
|
2607 |
+
background-color: #f7f8f9;
|
2608 |
+
margin-top: 20px;
|
2609 |
+
padding: 5px;
|
2610 |
+
}
|
2611 |
+
|
2612 |
+
.sek-post-navigation #sek-nav-below .sek-pagination {
|
2613 |
+
text-align: center;
|
2614 |
+
}
|
2615 |
+
|
2616 |
+
.sek-post-navigation #sek-nav-below .sek-pagination ul {
|
2617 |
+
display: inline-block;
|
2618 |
+
vertical-align: middle;
|
2619 |
+
margin: 0;
|
2620 |
+
}
|
2621 |
+
|
2622 |
+
.sek-post-navigation #sek-nav-below .sek-pagination .page-numbers {
|
2623 |
+
font-family: inherit;
|
2624 |
+
opacity: 0.7;
|
2625 |
+
text-decoration: none !important;
|
2626 |
+
}
|
2627 |
+
|
2628 |
+
.sek-post-navigation #sek-nav-below .sek-pagination .current {
|
2629 |
+
font-weight: 600;
|
2630 |
+
opacity: 1;
|
2631 |
+
}
|
2632 |
+
|
2633 |
+
.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list > * {
|
2634 |
+
margin: 0 5px;
|
2635 |
+
}
|
2636 |
+
|
2637 |
+
.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list {
|
2638 |
+
margin: 0 -5px;
|
2639 |
+
}
|
2640 |
+
|
2641 |
+
.sek-post-navigation #sek-nav-below nav {
|
2642 |
+
padding-top: 20px;
|
2643 |
+
padding-bottom: 20px;
|
2644 |
+
}
|
2645 |
+
|
2646 |
+
.sek-post-navigation #sek-nav-below ul.sek-czr-pager {
|
2647 |
+
margin: 0;
|
2648 |
+
}
|
2649 |
+
|
2650 |
+
.sek-post-navigation #sek-nav-below li {
|
2651 |
+
display: inline-block;
|
2652 |
+
font-size: 16px;
|
2653 |
+
}
|
2654 |
+
|
2655 |
+
.sek-post-navigation #sek-nav-below a, .sek-post-navigation #sek-nav-below .sek-meta-nav-title {
|
2656 |
+
text-transform: uppercase;
|
2657 |
+
letter-spacing: 2px;
|
2658 |
+
color: #5A5A5A;
|
2659 |
+
}
|
2660 |
+
|
2661 |
+
.sek-post-navigation #sek-nav-below a:hover, .sek-post-navigation #sek-nav-below .sek-meta-nav-title:hover {
|
2662 |
+
color: #3b3b3b;
|
2663 |
+
opacity: 1 !important;
|
2664 |
+
}
|
2665 |
+
|
2666 |
+
.sek-post-navigation #sek-nav-below .sek-czr-pager > li {
|
2667 |
+
display: block;
|
2668 |
+
}
|
2669 |
+
|
2670 |
+
.sek-post-navigation #sek-nav-below .sek-nav-dir {
|
2671 |
+
display: block;
|
2672 |
+
}
|
2673 |
+
|
2674 |
+
.sek-post-navigation #sek-nav-below .sek-nav-dir > a {
|
2675 |
+
max-width: 100%;
|
2676 |
+
}
|
2677 |
+
|
2678 |
+
.sek-post-navigation #sek-nav-below a i.arrow {
|
2679 |
+
font-size: 0.9em;
|
2680 |
+
}
|
2681 |
+
|
2682 |
+
.sek-post-navigation #sek-nav-below .page-numbers, .sek-post-navigation #sek-nav-below a {
|
2683 |
+
font-family: inherit;
|
2684 |
+
line-height: 30px;
|
2685 |
+
height: 30px;
|
2686 |
+
display: inline-block;
|
2687 |
+
vertical-align: middle;
|
2688 |
+
transition: all 0.3s ease;
|
2689 |
+
position: relative;
|
2690 |
+
}
|
2691 |
+
|
2692 |
+
.sek-post-navigation #sek-nav-below .sek-meta-nav {
|
2693 |
+
display: -ms-flexbox;
|
2694 |
+
display: flex;
|
2695 |
+
transition: all .2s,.6s ease;
|
2696 |
+
opacity: .7;
|
2697 |
+
}
|
2698 |
+
|
2699 |
+
.sek-post-navigation #sek-nav-below a:hover .sek-meta-nav {
|
2700 |
+
opacity: 1;
|
2701 |
+
text-decoration: underline;
|
2702 |
+
}
|
2703 |
+
|
2704 |
+
.sek-post-navigation #sek-nav-below .sek-meta-nav-title {
|
2705 |
+
display: inline-block;
|
2706 |
+
overflow: hidden;
|
2707 |
+
text-overflow: ellipsis;
|
2708 |
+
white-space: nowrap;
|
2709 |
+
vertical-align: middle;
|
2710 |
+
font-size: 0.9em;
|
2711 |
+
}
|
2712 |
+
|
2713 |
/*************************************
|
2714 |
* SIMPLE FORM MODULE
|
2715 |
+
*************************************/
|
2716 |
+
.sek-simple-form-wrapper input[type=text], .sek-simple-form-wrapper textarea {
|
2717 |
+
font-size: 16px;
|
2718 |
+
width: 100% !important;
|
2719 |
+
padding: 0.4em 0.5em;
|
2720 |
+
border-radius: 3px;
|
2721 |
+
box-sizing: border-box;
|
2722 |
+
outline: none;
|
2723 |
+
font-weight: normal;
|
2724 |
+
max-width: 100%;
|
2725 |
+
border: none;
|
2726 |
+
color: #555555;
|
2727 |
+
background-color: #ffffff;
|
2728 |
+
}
|
2729 |
+
|
2730 |
+
.sek-simple-form-wrapper textarea {
|
2731 |
+
height: auto;
|
2732 |
+
max-height: 150px;
|
2733 |
+
}
|
2734 |
+
|
2735 |
+
.sek-simple-form-wrapper .sek-form-field {
|
2736 |
+
margin-bottom: 15px;
|
2737 |
+
clear: both;
|
2738 |
+
}
|
2739 |
+
|
2740 |
+
.sek-simple-form-wrapper label {
|
2741 |
+
color: #444444;
|
2742 |
+
font-weight: bold;
|
2743 |
+
text-align: left;
|
2744 |
+
margin: 0;
|
2745 |
+
padding: 0 0 3px 0;
|
2746 |
+
width: auto;
|
2747 |
+
display: block;
|
2748 |
+
}
|
2749 |
+
|
2750 |
+
.sek-simple-form-wrapper.use-outset-shadow .sek-form-field input[type="text"], .sek-simple-form-wrapper.use-outset-shadow .sek-form-field textarea {
|
2751 |
+
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
2752 |
+
}
|
2753 |
+
|
2754 |
+
.sek-simple-form-wrapper.use-inset-shadow .sek-form-field input[type="text"], .sek-simple-form-wrapper.use-inset-shadow .sek-form-field textarea {
|
2755 |
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
2756 |
+
}
|
2757 |
+
|
2758 |
+
.sek-simple-form-wrapper #sek-form-respond {
|
2759 |
+
padding: 20px 0;
|
2760 |
+
}
|
2761 |
+
|
2762 |
+
.sek-simple-form-wrapper input[type="checkbox"] + label {
|
2763 |
+
display: inline;
|
2764 |
+
font-weight: bold;
|
2765 |
+
margin-left: 0.5rem;
|
2766 |
+
}
|
2767 |
+
|
2768 |
+
.sek-form-message {
|
2769 |
+
padding: 10px;
|
2770 |
+
margin: 10px 0;
|
2771 |
+
text-align: center;
|
2772 |
+
line-height: 1.5em;
|
2773 |
+
font-size: 16px;
|
2774 |
+
border-radius: 4px;
|
2775 |
+
}
|
2776 |
+
|
2777 |
+
.sek-form-message.sek-mail-failure {
|
2778 |
+
color: #ff0000;
|
2779 |
+
border: 1px solid #ff0000;
|
2780 |
+
background: none;
|
2781 |
+
background: rgba(255, 0, 0, 0.05);
|
2782 |
+
}
|
2783 |
+
|
2784 |
+
.sek-form-message.sek-mail-success {
|
2785 |
+
color: #008000;
|
2786 |
+
border: 1px solid #008000;
|
2787 |
+
background: none;
|
2788 |
+
background: rgba(0, 128, 0, 0.05);
|
2789 |
+
}
|
2790 |
+
|
2791 |
+
.sek-form-message.sek-mail-aborted {
|
2792 |
+
color: #ffa500;
|
2793 |
+
border: 1px solid #ffa500;
|
2794 |
+
background: none;
|
2795 |
+
background: rgba(255, 165, 0, 0.05);
|
2796 |
+
}
|
2797 |
+
|
2798 |
+
.grecaptcha-badge {
|
2799 |
+
z-index: 1;
|
2800 |
+
}
|
2801 |
+
|
2802 |
+
.sek-hide-rc-badge .grecaptcha-badge {
|
2803 |
+
display: none;
|
2804 |
+
}
|
2805 |
+
|
2806 |
+
.sek-show-rc-badge .grecaptcha-badge {
|
2807 |
+
display: block;
|
2808 |
+
visibility: visible !important;
|
2809 |
+
}
|
2810 |
+
|
2811 |
/*************************************
|
2812 |
* TINY MCE EDITOR MODULE
|
2813 |
+
*************************************/
|
2814 |
+
[data-sek-module-type="czr_tiny_mce_editor_module"] a {
|
2815 |
+
text-decoration: underline;
|
2816 |
+
}
|
2817 |
+
|
2818 |
/*************************************
|
2819 |
* SOCIAL ICONS MODULE
|
2820 |
+
*************************************/
|
2821 |
+
[data-sek-module-type="czr_social_icons_module"] .sek-module-inner .sek-social-icons-wrapper {
|
2822 |
+
margin: 10px 0;
|
2823 |
+
}
|
2824 |
+
|
2825 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper {
|
2826 |
+
text-align: center;
|
2827 |
+
}
|
2828 |
+
|
2829 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > *:not(:last-child) {
|
2830 |
+
padding-right: 8px;
|
2831 |
+
}
|
2832 |
+
|
2833 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li {
|
2834 |
+
display: inline-block;
|
2835 |
+
}
|
2836 |
+
|
2837 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li a {
|
2838 |
+
color: #707070;
|
2839 |
+
}
|
2840 |
+
|
2841 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
2842 |
+
font-size: 28px;
|
2843 |
+
line-height: 1.5em;
|
2844 |
+
}
|
2845 |
+
|
2846 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
2847 |
+
transition: all 0.2s ease-in-out;
|
2848 |
+
}
|
2849 |
+
|
2850 |
/*************************************
|
2851 |
* IMAGE SLIDER MODULE
|
2852 |
+
*************************************/
|
2853 |
+
.sek-column-inner [data-sek-module-type="czr_img_slider_module"] {
|
2854 |
+
width: calc(100% + 20px);
|
2855 |
+
max-width: calc(100% + 20px);
|
2856 |
+
}
|
2857 |
+
|
2858 |
+
[data-sek-module-type="czr_img_slider_module"] {
|
2859 |
+
/* SWIPER BULLETS */
|
2860 |
+
/* SWIPER ARROWS */
|
2861 |
+
}
|
2862 |
+
|
2863 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-carousel-img [src*="data:image/gif;"] {
|
2864 |
+
display: none;
|
2865 |
+
}
|
2866 |
+
|
2867 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-loading .sek-carousel-img img {
|
2868 |
+
display: none;
|
2869 |
+
}
|
2870 |
+
|
2871 |
+
.customizer-preview .swiper-wrapper .swiper-lazy-preloader {
|
2872 |
+
display: none;
|
2873 |
+
}
|
2874 |
+
|
2875 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper {
|
2876 |
+
width: 100%;
|
2877 |
+
height: 100%;
|
2878 |
+
overflow: hidden;
|
2879 |
+
}
|
2880 |
+
|
2881 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper .swiper-wrapper {
|
2882 |
+
display: -ms-flexbox;
|
2883 |
+
display: flex;
|
2884 |
+
-ms-flex-align: center;
|
2885 |
+
align-items: center;
|
2886 |
+
height: 400px;
|
2887 |
+
}
|
2888 |
+
|
2889 |
+
@media (max-width: 575.98px) {
|
2890 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper .swiper-wrapper {
|
2891 |
+
height: 200px;
|
2892 |
+
}
|
2893 |
+
}
|
2894 |
+
|
2895 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="nimble-wizard"] .sek-carousel-img {
|
2896 |
+
height: 100%;
|
2897 |
+
overflow: hidden;
|
2898 |
+
}
|
2899 |
+
|
2900 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="nimble-wizard"] .sek-carousel-img img {
|
2901 |
+
max-width: none;
|
2902 |
+
opacity: 0;
|
2903 |
+
transition: opacity 0.15s ease-in-out;
|
2904 |
+
}
|
2905 |
+
|
2906 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="height-100"] .sek-carousel-img {
|
2907 |
+
height: 100%;
|
2908 |
+
width: auto;
|
2909 |
+
overflow: hidden;
|
2910 |
+
}
|
2911 |
+
|
2912 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="height-100"] .sek-carousel-img img {
|
2913 |
+
width: auto;
|
2914 |
+
height: 100%;
|
2915 |
+
max-width: none;
|
2916 |
+
}
|
2917 |
+
|
2918 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="cover"] .sek-carousel-img {
|
2919 |
+
height: 100%;
|
2920 |
+
width: 100%;
|
2921 |
+
overflow: hidden;
|
2922 |
+
display: -ms-flexbox;
|
2923 |
+
display: flex;
|
2924 |
+
-ms-flex-pack: center;
|
2925 |
+
justify-content: center;
|
2926 |
+
-ms-flex-align: center;
|
2927 |
+
align-items: center;
|
2928 |
+
}
|
2929 |
+
|
2930 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="cover"] .sek-carousel-img img {
|
2931 |
+
width: 100%;
|
2932 |
+
height: 100%;
|
2933 |
+
max-width: none;
|
2934 |
+
-o-object-fit: cover;
|
2935 |
+
object-fit: cover;
|
2936 |
+
}
|
2937 |
+
|
2938 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide {
|
2939 |
+
text-align: center;
|
2940 |
+
font-size: 18px;
|
2941 |
+
/* Center slide image vertically */
|
2942 |
+
display: -ms-flexbox;
|
2943 |
+
display: flex;
|
2944 |
+
-ms-flex-pack: center;
|
2945 |
+
justify-content: center;
|
2946 |
+
-ms-flex-align: center;
|
2947 |
+
align-items: center;
|
2948 |
+
}
|
2949 |
+
|
2950 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide[data-sek-slide-link] {
|
2951 |
+
cursor: pointer;
|
2952 |
+
}
|
2953 |
+
|
2954 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img {
|
2955 |
+
width: 100%;
|
2956 |
+
}
|
2957 |
+
|
2958 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img {
|
2959 |
+
width: 100%;
|
2960 |
+
}
|
2961 |
+
|
2962 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img.sek-h-centrd {
|
2963 |
+
width: auto !important;
|
2964 |
+
max-width: none !important;
|
2965 |
+
position: relative;
|
2966 |
+
opacity: 1;
|
2967 |
+
}
|
2968 |
+
|
2969 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img.sek-v-centrd {
|
2970 |
+
height: auto !important;
|
2971 |
+
max-height: none !important;
|
2972 |
+
vertical-align: top;
|
2973 |
+
position: relative;
|
2974 |
+
max-width: none !important;
|
2975 |
+
opacity: 1;
|
2976 |
+
}
|
2977 |
+
|
2978 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide[data-sek-has-overlay="true"] .sek-carousel-img::after {
|
2979 |
+
content: '';
|
2980 |
+
left: 0;
|
2981 |
+
right: 0;
|
2982 |
+
bottom: 0;
|
2983 |
+
top: 0;
|
2984 |
+
position: absolute;
|
2985 |
+
background-color: #000000;
|
2986 |
+
opacity: 0.3;
|
2987 |
+
}
|
2988 |
+
|
2989 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-wrapper {
|
2990 |
+
height: 100%;
|
2991 |
+
width: 100%;
|
2992 |
+
-webkit-transform: translate(-50%, -50%);
|
2993 |
+
transform: translate(-50%, -50%);
|
2994 |
+
-webkit-transform: translate3d(-50%, -50%, 0);
|
2995 |
+
transform: translate3d(-50%, -50%, 0);
|
2996 |
+
top: 50%;
|
2997 |
+
left: 50%;
|
2998 |
+
position: absolute;
|
2999 |
/* Center slide text vertically
|
3000 |
+
=> consistent with defaults in module registration */
|
3001 |
+
display: -ms-flexbox;
|
3002 |
+
display: flex;
|
3003 |
+
-ms-flex-pack: center;
|
3004 |
+
justify-content: center;
|
3005 |
+
-ms-flex-align: center;
|
3006 |
+
align-items: center;
|
3007 |
+
}
|
3008 |
+
|
3009 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-content {
|
3010 |
+
height: auto;
|
3011 |
+
max-height: 100%;
|
3012 |
+
width: 100%;
|
3013 |
+
padding: 5%;
|
3014 |
+
text-align: center;
|
3015 |
+
z-index: 3;
|
3016 |
+
overflow: hidden;
|
3017 |
+
color: #e2e2e2;
|
3018 |
+
font-size: 16px;
|
3019 |
+
line-height: 1.5em;
|
3020 |
+
}
|
3021 |
+
|
3022 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-content * {
|
3023 |
+
font-size: 16px;
|
3024 |
+
line-height: 1.5em;
|
3025 |
+
}
|
3026 |
+
|
3027 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-pagination-bullet-active {
|
3028 |
+
background-color: #ffffff;
|
3029 |
+
}
|
3030 |
+
|
3031 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav {
|
3032 |
+
cursor: pointer;
|
3033 |
+
}
|
3034 |
+
|
3035 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-chevron {
|
3036 |
+
display: inline-block;
|
3037 |
+
border-right: 2px solid #ffffff;
|
3038 |
+
border-bottom: 2px solid #ffffff;
|
3039 |
+
width: 11px;
|
3040 |
+
height: 11px;
|
3041 |
+
}
|
3042 |
+
|
3043 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev {
|
3044 |
+
left: 0;
|
3045 |
+
border-top-left-radius: 0px;
|
3046 |
+
border-top-right-radius: 2px;
|
3047 |
+
border-bottom-right-radius: 2px;
|
3048 |
+
border-bottom-left-radius: 0px;
|
3049 |
+
}
|
3050 |
+
|
3051 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev .sek-chevron {
|
3052 |
+
-webkit-transform: rotate(-225deg);
|
3053 |
+
transform: rotate(-225deg);
|
3054 |
+
}
|
3055 |
+
|
3056 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next {
|
3057 |
+
right: 0;
|
3058 |
+
border-top-left-radius: 2px;
|
3059 |
+
border-top-right-radius: 0px;
|
3060 |
+
border-bottom-right-radius: 0px;
|
3061 |
+
border-bottom-left-radius: 2px;
|
3062 |
+
}
|
3063 |
+
|
3064 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next .sek-chevron {
|
3065 |
+
-webkit-transform: rotate(-45deg);
|
3066 |
+
transform: rotate(-45deg);
|
3067 |
+
}
|
3068 |
+
|
3069 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev, [data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next {
|
3070 |
+
position: absolute;
|
3071 |
+
z-index: 2;
|
3072 |
+
top: calc(50% - 30px);
|
3073 |
+
text-align: center;
|
3074 |
+
margin-top: 0px;
|
3075 |
+
-webkit-backface-visibility: hidden;
|
3076 |
+
backface-visibility: hidden;
|
3077 |
+
display: block;
|
3078 |
+
height: 60px;
|
3079 |
+
width: 50px;
|
3080 |
+
opacity: 0.6;
|
3081 |
+
background-color: rgba(32, 32, 32, 0.4);
|
3082 |
+
transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
|
3083 |
+
line-height: 64px;
|
3084 |
+
cursor: pointer;
|
3085 |
+
font-size: 18px;
|
3086 |
+
}
|
3087 |
+
|
3088 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev:hover, [data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next:hover {
|
3089 |
+
background-color: rgba(32, 32, 32, 0.7);
|
3090 |
+
opacity: 1;
|
3091 |
+
width: 100px;
|
3092 |
+
}
|
3093 |
+
|
3094 |
+
@media (max-width: 575.98px) {
|
3095 |
+
[data-sek-module-type="czr_img_slider_module"] [data-sek-hide-nav-on-mobile="true"] .swiper-pagination {
|
3096 |
+
display: none;
|
3097 |
+
}
|
3098 |
+
[data-sek-module-type="czr_img_slider_module"] [data-sek-hide-nav-on-mobile="true"] .sek-swiper-nav {
|
3099 |
+
display: none;
|
3100 |
+
}
|
3101 |
+
}
|
3102 |
+
|
3103 |
/*************************************
|
3104 |
* ACCORDION MODULE
|
3105 |
+
*************************************/
|
3106 |
+
.sek-accord-wrapper {
|
3107 |
+
text-align: left;
|
3108 |
+
}
|
3109 |
+
|
3110 |
+
.sek-accord-wrapper .sek-accord-item {
|
3111 |
+
border: 1px solid #e3e3e3;
|
3112 |
+
overflow: hidden;
|
3113 |
+
}
|
3114 |
+
|
3115 |
+
.sek-accord-wrapper .sek-accord-item:not(:last-child) {
|
3116 |
+
margin-bottom: 0px;
|
3117 |
+
}
|
3118 |
+
|
3119 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title {
|
3120 |
+
cursor: pointer;
|
3121 |
+
color: #565656;
|
3122 |
+
background: #ffffff;
|
3123 |
+
display: -ms-flexbox;
|
3124 |
+
display: flex;
|
3125 |
+
-ms-flex-align: center;
|
3126 |
+
align-items: center;
|
3127 |
+
-ms-flex-pack: justify;
|
3128 |
+
justify-content: space-between;
|
3129 |
+
padding: 15px 20px;
|
3130 |
+
border-top: none;
|
3131 |
+
border-right: none;
|
3132 |
+
border-left: none;
|
3133 |
+
border-bottom: 1px solid #e3e3e3;
|
3134 |
+
font-size: 16px;
|
3135 |
+
line-height: 1.5em;
|
3136 |
+
font-weight: 600;
|
3137 |
+
-ms-flex-positive: 1;
|
3138 |
+
flex-grow: 1;
|
3139 |
+
}
|
3140 |
+
|
3141 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover * {
|
3142 |
+
color: #1e261f;
|
3143 |
+
}
|
3144 |
+
|
3145 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover .expander span {
|
3146 |
+
background: #1e261f;
|
3147 |
+
}
|
3148 |
+
|
3149 |
+
[data-sek-expanded="true"] .sek-accord-title * {
|
3150 |
+
color: #1e261f;
|
3151 |
+
}
|
3152 |
+
|
3153 |
+
[data-sek-expanded="true"] .sek-accord-title .expander span {
|
3154 |
+
background: #1e261f;
|
3155 |
+
}
|
3156 |
+
|
3157 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title {
|
3158 |
+
padding-right: 10px;
|
3159 |
+
max-width: calc(100% - 30px);
|
3160 |
+
}
|
3161 |
+
|
3162 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title, .sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span {
|
3163 |
+
transition: all 0.15s ease-in-out;
|
3164 |
+
}
|
3165 |
+
|
3166 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander {
|
3167 |
+
color: #1e261f;
|
3168 |
+
width: 30px;
|
3169 |
+
height: 30px;
|
3170 |
+
padding: 0;
|
3171 |
+
margin: 0;
|
3172 |
+
outline: none;
|
3173 |
+
border: 0;
|
3174 |
+
background: none;
|
3175 |
+
box-shadow: none;
|
3176 |
+
font-size: 1.5em;
|
3177 |
+
position: relative;
|
3178 |
+
cursor: pointer;
|
3179 |
+
}
|
3180 |
+
|
3181 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span {
|
3182 |
+
position: absolute;
|
3183 |
+
transition: .3s;
|
3184 |
+
background: #565656;
|
3185 |
+
border-radius: 2px;
|
3186 |
+
}
|
3187 |
+
|
3188 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:first-of-type {
|
3189 |
+
top: 25%;
|
3190 |
+
bottom: 25%;
|
3191 |
+
width: 10%;
|
3192 |
+
left: 45%;
|
3193 |
+
}
|
3194 |
+
|
3195 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:last-of-type {
|
3196 |
+
left: 25%;
|
3197 |
+
right: 25%;
|
3198 |
+
height: 10%;
|
3199 |
+
top: 45%;
|
3200 |
+
}
|
3201 |
+
|
3202 |
+
[data-sek-expanded="true"] .expander span:first-of-type, [data-sek-expanded="true"] .expander span:last-of-type {
|
3203 |
+
-webkit-transform: rotate(90deg);
|
3204 |
+
transform: rotate(90deg);
|
3205 |
+
}
|
3206 |
+
|
3207 |
+
[data-sek-expanded="true"] .expander span:last-of-type {
|
3208 |
+
left: 50%;
|
3209 |
+
right: 50%;
|
3210 |
+
}
|
3211 |
+
|
3212 |
+
[data-sek-has-global-border="true"][data-sek-has-title-border="true"] [data-sek-expanded="false"] .sek-accord-title {
|
3213 |
+
border-bottom: none;
|
3214 |
+
}
|
3215 |
+
|
3216 |
+
[data-sek-has-global-border="true"][data-sek-has-title-border="true"] .sek-accord-item:not(:last-child) {
|
3217 |
+
border-bottom: none;
|
3218 |
+
}
|
3219 |
+
|
3220 |
+
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] .sek-accord-title .expander span:first-of-type, .sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] .sek-accord-title .expander span:last-of-type {
|
3221 |
+
-webkit-transform: rotate(90deg);
|
3222 |
+
transform: rotate(90deg);
|
3223 |
+
}
|
3224 |
+
|
3225 |
+
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] .sek-accord-title .expander span:last-of-type {
|
3226 |
+
left: 50%;
|
3227 |
+
right: 50%;
|
3228 |
+
}
|
3229 |
+
|
3230 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-content {
|
3231 |
+
padding: 15px 20px;
|
3232 |
+
background: #f2f2f2;
|
3233 |
+
color: #1e261f;
|
3234 |
+
font-size: 16px;
|
3235 |
+
line-height: 1.5em;
|
3236 |
+
}
|
3237 |
+
|
3238 |
+
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] > .sek-accord-content {
|
3239 |
+
display: block;
|
3240 |
+
}
|
3241 |
+
|
3242 |
+
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="false"] > .sek-accord-content {
|
3243 |
+
display: none;
|
3244 |
+
}
|
3245 |
+
|
3246 |
/*************************************
|
3247 |
* SHORTCODE MODULE
|
3248 |
+
*************************************/
|
3249 |
+
[data-sek-module-type="czr_shortcode_module"] [data-sek-use-flexbox="true"] {
|
3250 |
+
display: -ms-flexbox;
|
3251 |
+
display: flex;
|
3252 |
+
-ms-flex-pack: center;
|
3253 |
+
justify-content: center;
|
3254 |
+
}
|
3255 |
+
|
3256 |
+
.sek-gal-wrapper:not(.nb-auto-column-width) {
|
3257 |
+
display: -ms-flexbox;
|
3258 |
+
display: flex;
|
3259 |
+
-ms-flex-align: center;
|
3260 |
+
align-items: center;
|
3261 |
+
-ms-flex-pack: center;
|
3262 |
+
justify-content: center;
|
3263 |
+
}
|
3264 |
+
|
3265 |
+
.sek-gal-wrapper .sek-gal-items {
|
3266 |
+
display: -ms-grid;
|
3267 |
+
display: grid;
|
3268 |
+
-ms-grid-columns: 1fr 20px 1fr;
|
3269 |
+
grid-template-columns: 1fr 1fr;
|
3270 |
+
-ms-grid-rows: 1fr;
|
3271 |
+
grid-template-rows: 1fr;
|
3272 |
+
grid-row-gap: 20px;
|
3273 |
+
grid-column-gap: 20px;
|
3274 |
+
}
|
3275 |
+
|
3276 |
+
@media all and (-ms-high-contrast: none) {
|
3277 |
+
.sek-gal-wrapper .sek-gal-items {
|
3278 |
+
display: block !important;
|
3279 |
+
}
|
3280 |
+
}
|
3281 |
+
|
3282 |
+
.sek-gal-wrapper .sek-gal-items > *:nth-child(1) {
|
3283 |
+
-ms-grid-row: 1;
|
3284 |
+
-ms-grid-column: 1;
|
3285 |
+
}
|
3286 |
+
|
3287 |
+
.sek-gal-wrapper .sek-gal-items > *:nth-child(2) {
|
3288 |
+
-ms-grid-row: 1;
|
3289 |
+
-ms-grid-column: 3;
|
3290 |
+
}
|
3291 |
+
|
3292 |
+
.sek-gal-wrapper .sek-img-gal-item {
|
3293 |
+
transition: all 0.15s ease-in-out;
|
3294 |
+
overflow: hidden;
|
3295 |
+
}
|
3296 |
+
|
3297 |
+
.sek-gal-wrapper .sek-img-gal-item img {
|
3298 |
+
height: 100%;
|
3299 |
+
width: 100%;
|
3300 |
+
-o-object-fit: cover;
|
3301 |
+
object-fit: cover;
|
3302 |
+
}
|
3303 |
+
|
3304 |
+
.sek-gal-wrapper .sek-img-gal-item:hover {
|
3305 |
+
opacity: .9;
|
3306 |
+
}
|
3307 |
+
|
3308 |
+
.sek-module-inner .nb-gal-item-box-shadow .sek-gal-items figure {
|
3309 |
+
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
3310 |
+
}
|
3311 |
+
|
3312 |
+
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items.nb-masonry-gal-images-loaded {
|
3313 |
+
grid-auto-rows: 5px;
|
3314 |
+
}
|
3315 |
+
|
3316 |
+
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items .sek-img-gal-item img {
|
3317 |
+
height: auto;
|
3318 |
+
}
|
3319 |
+
|
3320 |
+
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items.sek-gal-img-natural-height img {
|
3321 |
+
height: auto !important;
|
3322 |
+
}
|
3323 |
+
|
3324 |
+
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items.sek-gal-img-height-100-percent img {
|
3325 |
+
height: 100%;
|
3326 |
+
}
|
3327 |
+
|
3328 |
/*************************************
|
3329 |
* ACCORDION MODULE
|
3330 |
+
*************************************/
|
3331 |
+
.sek-module-inner {
|
3332 |
+
line-height: 1.5em;
|
3333 |
+
}
|
3334 |
+
|
3335 |
+
.sek-module-inner h1, .sek-module-inner h2, .sek-module-inner h3, .sek-module-inner h4, .sek-module-inner h5, .sek-module-inner h6, .sek-module-inner p {
|
3336 |
+
line-height: 1.5em;
|
3337 |
+
font-weight: 400;
|
3338 |
+
margin: 0.6em 0;
|
3339 |
+
}
|
3340 |
+
|
3341 |
+
.sek-module-inner h1 {
|
3342 |
+
font-size: 2.48em;
|
3343 |
+
}
|
3344 |
+
|
3345 |
+
.sek-module-inner h2 {
|
3346 |
+
font-size: 2.07em;
|
3347 |
+
}
|
3348 |
+
|
3349 |
+
.sek-module-inner h3 {
|
3350 |
+
font-size: 1.73em;
|
3351 |
+
}
|
3352 |
+
|
3353 |
+
.sek-module-inner h4 {
|
3354 |
+
font-size: 1.44em;
|
3355 |
+
}
|
3356 |
+
|
3357 |
+
.sek-module-inner h5 {
|
3358 |
+
font-size: 1.2em;
|
3359 |
+
}
|
3360 |
+
|
3361 |
+
.sek-module-inner h6 {
|
3362 |
+
font-size: 1em;
|
3363 |
+
}
|
3364 |
+
|
3365 |
+
.sek-module-inner p {
|
3366 |
+
margin: 0 0 1em;
|
3367 |
+
padding: 0;
|
3368 |
+
}
|
3369 |
+
|
3370 |
+
.sek-module-inner a {
|
3371 |
+
text-decoration: none;
|
3372 |
+
box-shadow: none;
|
3373 |
+
transition: color 0.2s ease-in-out;
|
3374 |
+
}
|
3375 |
+
|
3376 |
+
.sek-module-inner img {
|
3377 |
+
height: auto;
|
3378 |
+
max-width: 100%;
|
3379 |
+
border: none;
|
3380 |
+
border-radius: 0;
|
3381 |
+
box-shadow: none;
|
3382 |
+
}
|
3383 |
+
|
3384 |
+
[data-sek-module-type="czr_tiny_mce_editor_module"] .sek-module-inner a:not(.wp-block-button__link),
|
3385 |
+
[data-sek-module-type="czr_shortcode_module"] .sek-module-inner a:not(.wp-block-button__link),
|
3386 |
+
[data-sek-module-type="czr_accordion_module"] .sek-module-inner a:not(.wp-block-button__link),
|
3387 |
+
[data-sek-module-type="czr_simple_html_module"] .sek-module-inner a:not(.wp-block-button__link) {
|
3388 |
+
text-decoration: underline;
|
3389 |
+
}
|
3390 |
+
|
3391 |
+
body .sektion-wrapper .sek-row [data-sek-level="module"] .sek-module-inner a:not(.sek-btn):not(.button):focus {
|
3392 |
+
background: none;
|
3393 |
+
}
|
3394 |
+
|
3395 |
+
body .sek-module-inner h1:before, body .sek-module-inner h2:before, body .sek-module-inner h3:before, body .sek-module-inner h4:before, body .sek-module-inner h5:before, body .sek-module-inner h6:before {
|
3396 |
+
content: none;
|
3397 |
+
background: none;
|
3398 |
}
|
3399 |
/*# sourceMappingURL=sek-base-rtl.css.map */
|
assets/front/css/sek-base.css
CHANGED
@@ -1,3399 +1,3399 @@
|
|
1 |
-
/* -------------------------------------------------------------------------- */
|
2 |
/* <SCOPED RESET>
|
3 |
-
/* -------------------------------------------------------------------------- */
|
4 |
-
.sektion-wrapper *,
|
5 |
-
.sektion-wrapper *::before,
|
6 |
-
.sektion-wrapper *::after {
|
7 |
-
box-sizing: border-box;
|
8 |
-
}
|
9 |
-
|
10 |
-
.sektion-wrapper span, .sektion-wrapper applet, .sektion-wrapper object, .sektion-wrapper iframe,
|
11 |
-
.sektion-wrapper h1, .sektion-wrapper h2, .sektion-wrapper h3, .sektion-wrapper h4, .sektion-wrapper h5, .sektion-wrapper h6, .sektion-wrapper p, .sektion-wrapper blockquote, .sektion-wrapper pre,
|
12 |
-
.sektion-wrapper a, .sektion-wrapper abbr, .sektion-wrapper acronym, .sektion-wrapper address, .sektion-wrapper big, .sektion-wrapper cite, .sektion-wrapper code,
|
13 |
-
.sektion-wrapper del, .sektion-wrapper dfn, .sektion-wrapper em, .sektion-wrapper img, .sektion-wrapper ins, .sektion-wrapper kbd, .sektion-wrapper q, .sektion-wrapper s, .sektion-wrapper samp,
|
14 |
-
.sektion-wrapper small, .sektion-wrapper strike, .sektion-wrapper strong, .sektion-wrapper sub, .sektion-wrapper sup, .sektion-wrapper tt, .sektion-wrapper var,
|
15 |
-
.sektion-wrapper b, .sektion-wrapper u, .sektion-wrapper i, .sektion-wrapper center,
|
16 |
-
.sektion-wrapper dl, .sektion-wrapper dt, .sektion-wrapper dd, .sektion-wrapper ol, .sektion-wrapper ul, .sektion-wrapper li,
|
17 |
-
.sektion-wrapper fieldset, .sektion-wrapper form, .sektion-wrapper label, .sektion-wrapper legend,
|
18 |
-
.sektion-wrapper table, .sektion-wrapper caption, .sektion-wrapper tbody, .sektion-wrapper tfoot, .sektion-wrapper thead, .sektion-wrapper tr, .sektion-wrapper th, .sektion-wrapper td,
|
19 |
-
.sektion-wrapper article, .sektion-wrapper aside, .sektion-wrapper canvas, .sektion-wrapper details, .sektion-wrapper embed,
|
20 |
-
.sektion-wrapper figure:not([class*="wp-block-"]), .sektion-wrapper figcaption, .sektion-wrapper footer, .sektion-wrapper header, .sektion-wrapper hgroup,
|
21 |
-
.sektion-wrapper menu, .sektion-wrapper nav, .sektion-wrapper output, .sektion-wrapper ruby, .sektion-wrapper section, .sektion-wrapper summary,
|
22 |
-
.sektion-wrapper time, .sektion-wrapper mark, .sektion-wrapper audio, .sektion-wrapper video {
|
23 |
-
border: none;
|
24 |
-
font-size: inherit;
|
25 |
-
line-height: inherit;
|
26 |
-
margin: 0;
|
27 |
-
padding: 0;
|
28 |
-
}
|
29 |
-
|
30 |
-
.sektion-wrapper blockquote::before,
|
31 |
-
.sektion-wrapper blockquote::after, .sektion-wrapper q:before, .sektion-wrapper q:after {
|
32 |
-
content: "";
|
33 |
-
}
|
34 |
-
|
35 |
-
.sektion-wrapper ol, .sektion-wrapper ul {
|
36 |
-
list-style: none;
|
37 |
-
}
|
38 |
-
|
39 |
-
.sektion-wrapper img {
|
40 |
-
max-width: 100%;
|
41 |
-
vertical-align: middle;
|
42 |
-
border-style: none;
|
43 |
-
display: inline;
|
44 |
-
}
|
45 |
-
|
46 |
-
.sektion-wrapper svg:not(:root) {
|
47 |
-
overflow: hidden;
|
48 |
-
}
|
49 |
-
|
50 |
-
.sektion-wrapper embed, .sektion-wrapper iframe, .sektion-wrapper object {
|
51 |
-
max-width: 100%;
|
52 |
-
}
|
53 |
-
|
54 |
-
/* -------------------------------------------------------------------------- */
|
55 |
/* </SCOPED RESET>
|
56 |
-
/* -------------------------------------------------------------------------- */
|
57 |
-
/* make sure that the location level occupies 100% of the width */
|
58 |
-
[data-sek-level="location"] {
|
59 |
-
clear: both;
|
60 |
-
font-size: 16px;
|
61 |
-
}
|
62 |
-
|
63 |
-
/* To make vertical alignment possible in sections */
|
64 |
-
.sek-section, .sek-column, .sek-module {
|
65 |
-
display: -ms-flexbox;
|
66 |
-
display: flex;
|
67 |
-
-ms-flex-align: center;
|
68 |
-
align-items: center;
|
69 |
-
}
|
70 |
-
|
71 |
-
.sek-column-inner, .sek-module-inner {
|
72 |
-
-ms-flex: 0 0 100%;
|
73 |
-
flex: 0 0 100%;
|
74 |
-
max-width: 100%;
|
75 |
-
}
|
76 |
-
|
77 |
/* To allow horizontal centering of modules
|
78 |
@see https://github.com/presscustomizr/nimble-builder/issues/119
|
79 |
-
*/
|
80 |
-
/* - sections in locations */
|
81 |
-
/* - columns in sections */
|
82 |
-
/* - modules in columns */
|
83 |
-
.sek-column-inner {
|
84 |
-
display: -ms-flexbox;
|
85 |
-
display: flex;
|
86 |
-
-ms-flex-direction: column;
|
87 |
-
flex-direction: column;
|
88 |
-
}
|
89 |
-
|
90 |
-
.sek-module {
|
91 |
-
-ms-flex-item-align: center;
|
92 |
-
-ms-grid-row-align: center;
|
93 |
-
align-self: center;
|
94 |
-
width: 100%;
|
95 |
-
max-width: 100%;
|
96 |
-
}
|
97 |
-
|
98 |
/* a nested sektion should reset its parent column padding
|
99 |
@see https://github.com/presscustomizr/nimble-builder/issues/25
|
100 |
-
*/
|
101 |
-
[data-sek-is-nested="true"] .sek-container-fluid {
|
102 |
-
padding-right: 0;
|
103 |
-
padding-left: 0;
|
104 |
-
}
|
105 |
-
|
106 |
-
/* MODULE PLACEHOLDER */
|
107 |
/*@font-face {
|
108 |
font-family: 'Material Icons';
|
109 |
font-style: normal;
|
110 |
font-weight: 400;
|
111 |
src: url('../fonts/material-icons/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2') format('woff2');
|
112 |
-
}*/
|
113 |
-
/* @see https://github.com/google/material-design-icons/blob/master/iconfont/material-icons.css */
|
114 |
-
.sek-module-placeholder {
|
115 |
-
text-align: center;
|
116 |
-
}
|
117 |
-
|
118 |
-
.sek-module-placeholder .material-icons {
|
119 |
-
font-size: inherit;
|
120 |
-
color: #cfcfcf;
|
121 |
-
}
|
122 |
-
|
123 |
-
/* LEVEL VISIBILITY BY DEVICE */
|
124 |
-
/* NIMBLE TEMPLATE GENERAL STYLING */
|
125 |
-
/* <inspired by Twenty Seventeed WP theme> */
|
126 |
-
.sek-screen-reader-text {
|
127 |
-
border: 0;
|
128 |
-
clip: rect(0, 0, 0, 0);
|
129 |
-
height: 1px;
|
130 |
-
overflow: hidden;
|
131 |
-
padding: 0;
|
132 |
-
position: absolute !important;
|
133 |
-
width: 1px;
|
134 |
-
word-wrap: normal !important;
|
135 |
-
}
|
136 |
-
|
137 |
-
#nimble-page {
|
138 |
-
position: relative;
|
139 |
-
word-wrap: break-word;
|
140 |
-
}
|
141 |
-
|
142 |
-
/* </inspired by Twenty Seventeen WP theme> */
|
143 |
-
/* Nimble btn in admin top bar */
|
144 |
-
#wpadminbar .sek-nimble-icon {
|
145 |
-
display: inline-block;
|
146 |
-
}
|
147 |
-
|
148 |
-
#wpadminbar .sek-nimble-icon img {
|
149 |
-
width: 28px;
|
150 |
-
position: absolute;
|
151 |
-
top: 2px;
|
152 |
-
-webkit-filter: grayscale(100%);
|
153 |
-
filter: grayscale(100%);
|
154 |
-
-webkit-filter: gray;
|
155 |
-
filter: gray;
|
156 |
-
transition: all 0.3s ease-in-out;
|
157 |
-
box-shadow: none;
|
158 |
-
}
|
159 |
-
|
160 |
-
#wpadminbar .sek-nimble-icon:hover img {
|
161 |
-
-webkit-filter: none;
|
162 |
-
filter: none;
|
163 |
-
-webkit-filter: none;
|
164 |
-
filter: none;
|
165 |
-
}
|
166 |
-
|
167 |
-
#wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title {
|
168 |
-
padding-left: 30px;
|
169 |
-
}
|
170 |
-
|
171 |
-
[data-sek-has-bg="true"] {
|
172 |
-
background-size: cover;
|
173 |
-
background-repeat: no-repeat;
|
174 |
-
background-position: 50% 50%;
|
175 |
-
}
|
176 |
-
|
177 |
-
[data-sek-level="location"] [data-sek-bg-parallax="true"] {
|
178 |
-
background-attachment: fixed;
|
179 |
-
background-size: cover;
|
180 |
-
}
|
181 |
-
|
182 |
-
[data-sek-level="location"] .sek-has-bg {
|
183 |
-
position: relative;
|
184 |
-
}
|
185 |
-
|
186 |
-
@supports (-webkit-overflow-scrolling: touch) {
|
187 |
-
body [data-sek-level="location"] [data-sek-bg-parallax="true"], body [data-sek-level="location"] [data-sek-bg-fixed="true"] {
|
188 |
-
background-attachment: scroll;
|
189 |
-
}
|
190 |
-
}
|
191 |
-
|
192 |
-
[data-sek-level="location"] [data-sek-level] {
|
193 |
-
transition: 0s linear;
|
194 |
-
transition-property: background-position;
|
195 |
-
}
|
196 |
-
|
197 |
-
.sek-module .sek-module-inner .alx-tab.thumbs-enabled > li {
|
198 |
-
padding-left: 94px;
|
199 |
-
}
|
200 |
-
|
201 |
-
.sek-module .sek-module-inner .widget_hu_tabs ul,
|
202 |
-
.sek-module .sek-module-inner .widget_hu_tabs ol {
|
203 |
-
margin-left: 0;
|
204 |
-
margin-bottom: 0;
|
205 |
-
}
|
206 |
-
|
207 |
-
.sek-module .sek-module-inner .widget_hu_tabs .alx-tabs-nav {
|
208 |
-
margin-bottom: 10px;
|
209 |
-
}
|
210 |
-
|
211 |
-
[data-sek-level].sek-level-has-shadow {
|
212 |
-
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
213 |
-
}
|
214 |
-
|
215 |
-
.customizer-preview [data-sek-level].sek-level-has-shadow {
|
216 |
-
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
|
217 |
-
}
|
218 |
-
|
219 |
-
[data-sek-level][data-sek-video-bg-src] {
|
220 |
-
position: relative;
|
221 |
-
}
|
222 |
-
|
223 |
-
[data-sek-level] embed,
|
224 |
-
[data-sek-level] iframe,
|
225 |
-
[data-sek-level] object,
|
226 |
-
[data-sek-level] video {
|
227 |
-
max-width: 100%;
|
228 |
-
width: 100%;
|
229 |
-
margin: 0;
|
230 |
-
line-height: 1;
|
231 |
-
border: none;
|
232 |
-
}
|
233 |
-
|
234 |
-
[data-sek-level] .sek-custom-embed {
|
235 |
-
line-height: 0;
|
236 |
-
}
|
237 |
-
|
238 |
-
[data-sek-level] .sek-bg-video-wrapper,
|
239 |
-
[data-sek-level] .sek-background {
|
240 |
-
height: 100%;
|
241 |
-
width: 100%;
|
242 |
-
top: 0;
|
243 |
-
left: 0;
|
244 |
-
position: absolute !important;
|
245 |
-
overflow: hidden;
|
246 |
-
z-index: 0;
|
247 |
-
direction: ltr;
|
248 |
-
}
|
249 |
-
|
250 |
-
[data-sek-level] .sek-bg-video-wrapper {
|
251 |
-
transition: opacity 0.5s linear;
|
252 |
-
pointer-events: none;
|
253 |
-
opacity: 0;
|
254 |
-
}
|
255 |
-
|
256 |
-
[data-sek-level] .sek-bg-video-wrapper.sek-bg-loading {
|
257 |
-
opacity: 0;
|
258 |
-
visibility: hidden;
|
259 |
-
}
|
260 |
-
|
261 |
-
[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-vimeo-element {
|
262 |
-
max-width: none;
|
263 |
-
}
|
264 |
-
|
265 |
-
[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-video-local, [data-sek-level] .sek-background-vimeo-element {
|
266 |
-
position: absolute;
|
267 |
-
top: 50%;
|
268 |
-
left: 50%;
|
269 |
-
-webkit-transform: translateX(-50%) translateY(-50%);
|
270 |
-
transform: translateX(-50%) translateY(-50%);
|
271 |
-
}
|
272 |
-
|
273 |
-
[data-sek-level] .sek-background-video-local {
|
274 |
-
-o-object-fit: cover;
|
275 |
-
object-fit: cover;
|
276 |
-
}
|
277 |
-
|
278 |
-
.sek-module-inner .sek-debug-modules {
|
279 |
-
margin: 1em;
|
280 |
-
padding: 5px;
|
281 |
-
border: 1px solid rgba(221, 221, 221, 0.43);
|
282 |
-
box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);
|
283 |
-
-webkit-box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);
|
284 |
-
background-color: #fff;
|
285 |
-
font-size: 15px;
|
286 |
-
font-weight: normal;
|
287 |
-
color: #6d6d6d;
|
288 |
-
background: rgba(255, 255, 255, 0.6);
|
289 |
-
}
|
290 |
-
|
291 |
-
@media (max-width: 575px) {
|
292 |
-
.customizer-preview [data-sek-video-bg-on-mobile="false"] .sek-bg-video-wrapper {
|
293 |
-
display: none;
|
294 |
-
}
|
295 |
-
}
|
296 |
-
|
297 |
-
.sek-animate-candidate:not(.sek-animate-displayed-before-starting) {
|
298 |
-
opacity: 0;
|
299 |
-
}
|
300 |
-
|
301 |
-
.sek-overflow-hidden-while-animating {
|
302 |
-
overflow: hidden;
|
303 |
-
}
|
304 |
-
|
305 |
-
.nb-scroll-down #nimble-header:not(.sek-header-mobile-menu-expanded), .nb-scroll-up #nimble-header:not(.sek-header-mobile-menu-expanded) {
|
306 |
-
background-color: rgba(255, 255, 255, 0.9);
|
307 |
-
}
|
308 |
-
|
309 |
-
.mfp-wrap button.mfp-arrow, .mfp-wrap button.mfp-close {
|
310 |
-
background: none !important;
|
311 |
-
background: transparent !important;
|
312 |
-
}
|
313 |
-
|
314 |
-
.mfp-wrap img.mfp-img {
|
315 |
-
padding: 40px 0 0;
|
316 |
-
}
|
317 |
-
|
318 |
-
.mfp-wrap::after {
|
319 |
-
bottom: 20px;
|
320 |
-
}
|
321 |
-
|
322 |
-
.mfp-wrap .mfp-bottom-bar {
|
323 |
-
margin-top: 0;
|
324 |
-
}
|
325 |
-
|
326 |
-
.sek-service-font, .sek-module .sek-module-inner .sek-btn {
|
327 |
-
font-family: sans-serif;
|
328 |
-
}
|
329 |
-
|
330 |
-
.sek-container {
|
331 |
-
width: 100%;
|
332 |
-
padding-right: 10px;
|
333 |
-
padding-left: 10px;
|
334 |
-
margin-right: auto;
|
335 |
-
margin-left: auto;
|
336 |
-
}
|
337 |
-
|
338 |
-
@media (min-width: 576px) {
|
339 |
-
.sek-container {
|
340 |
-
max-width: 540px;
|
341 |
-
}
|
342 |
-
}
|
343 |
-
|
344 |
-
@media (min-width: 768px) {
|
345 |
-
.sek-container {
|
346 |
-
max-width: 720px;
|
347 |
-
}
|
348 |
-
}
|
349 |
-
|
350 |
-
@media (min-width: 992px) {
|
351 |
-
.sek-container {
|
352 |
-
max-width: 960px;
|
353 |
-
}
|
354 |
-
}
|
355 |
-
|
356 |
-
@media (min-width: 1200px) {
|
357 |
-
.sek-container {
|
358 |
-
max-width: 1140px;
|
359 |
-
}
|
360 |
-
}
|
361 |
-
|
362 |
-
.sek-container-fluid {
|
363 |
-
width: 100%;
|
364 |
-
padding-right: 10px;
|
365 |
-
padding-left: 10px;
|
366 |
-
margin-right: auto;
|
367 |
-
margin-left: auto;
|
368 |
-
}
|
369 |
-
|
370 |
-
.sek-row {
|
371 |
-
display: -ms-flexbox;
|
372 |
-
display: flex;
|
373 |
-
-ms-flex-wrap: wrap;
|
374 |
-
flex-wrap: wrap;
|
375 |
-
margin-right: -10px;
|
376 |
-
margin-left: -10px;
|
377 |
-
}
|
378 |
-
|
379 |
-
.sek-container-no-padding {
|
380 |
-
padding-right: 0;
|
381 |
-
padding-left: 0;
|
382 |
-
overflow-x: hidden;
|
383 |
-
}
|
384 |
-
|
385 |
-
.sek-no-gutters {
|
386 |
-
margin-right: 0;
|
387 |
-
margin-left: 0;
|
388 |
-
}
|
389 |
-
|
390 |
-
.sek-no-gutters > .sek-col,
|
391 |
-
.sek-no-gutters > [class*="sek-col-"] {
|
392 |
-
padding-right: 0;
|
393 |
-
padding-left: 0;
|
394 |
-
}
|
395 |
-
|
396 |
-
.sek-col-8, .sek-col-9, .sek-col-10, .sek-col-11, .sek-col-12, .sek-col-14, .sek-col-16, .sek-col-20, .sek-col-25, .sek-col-30, .sek-col-33, .sek-col-40, .sek-col-50, .sek-col-60, .sek-col-66, .sek-col-70, .sek-col-75, .sek-col-80, .sek-col-83, .sek-col-90, .sek-col-100, .sek-col-base,
|
397 |
-
.sek-col,
|
398 |
-
.sek-col-auto {
|
399 |
-
position: relative;
|
400 |
-
width: 100%;
|
401 |
-
min-height: 1px;
|
402 |
-
padding-right: 10px;
|
403 |
-
padding-left: 10px;
|
404 |
-
}
|
405 |
-
|
406 |
-
.sek-col-base {
|
407 |
-
-ms-flex: 0 0 100%;
|
408 |
-
flex: 0 0 100%;
|
409 |
-
max-width: 100%;
|
410 |
-
}
|
411 |
-
|
412 |
-
.sek-col {
|
413 |
-
-ms-flex-preferred-size: 0;
|
414 |
-
flex-basis: 0;
|
415 |
-
-ms-flex-positive: 1;
|
416 |
-
flex-grow: 1;
|
417 |
-
max-width: 100%;
|
418 |
-
}
|
419 |
-
|
420 |
-
.sek-col-auto {
|
421 |
-
-ms-flex: 0 0 auto;
|
422 |
-
flex: 0 0 auto;
|
423 |
-
width: auto;
|
424 |
-
max-width: 100%;
|
425 |
-
}
|
426 |
-
|
427 |
-
@media (min-width: 768px) {
|
428 |
-
.sek-col-8 {
|
429 |
-
-ms-flex: 0 0 8.333%;
|
430 |
-
flex: 0 0 8.333%;
|
431 |
-
max-width: 8.333%;
|
432 |
-
}
|
433 |
-
.sek-col-9 {
|
434 |
-
-ms-flex: 0 0 9.090909%;
|
435 |
-
flex: 0 0 9.090909%;
|
436 |
-
max-width: 9.090909%;
|
437 |
-
}
|
438 |
-
.sek-col-10 {
|
439 |
-
-ms-flex: 0 0 10%;
|
440 |
-
flex: 0 0 10%;
|
441 |
-
max-width: 10%;
|
442 |
-
}
|
443 |
-
.sek-col-11 {
|
444 |
-
-ms-flex: 0 0 11.111%;
|
445 |
-
flex: 0 0 11.111%;
|
446 |
-
max-width: 11.111%;
|
447 |
-
}
|
448 |
-
.sek-col-12 {
|
449 |
-
-ms-flex: 0 0 12.5%;
|
450 |
-
flex: 0 0 12.5%;
|
451 |
-
max-width: 12.5%;
|
452 |
-
}
|
453 |
-
.sek-col-14 {
|
454 |
-
-ms-flex: 0 0 14.285%;
|
455 |
-
flex: 0 0 14.285%;
|
456 |
-
max-width: 14.285%;
|
457 |
-
}
|
458 |
-
.sek-col-16 {
|
459 |
-
-ms-flex: 0 0 16.666%;
|
460 |
-
flex: 0 0 16.666%;
|
461 |
-
max-width: 16.666%;
|
462 |
-
}
|
463 |
-
.sek-col-20 {
|
464 |
-
-ms-flex: 0 0 20%;
|
465 |
-
flex: 0 0 20%;
|
466 |
-
max-width: 20%;
|
467 |
-
}
|
468 |
-
.sek-col-25 {
|
469 |
-
-ms-flex: 0 0 25%;
|
470 |
-
flex: 0 0 25%;
|
471 |
-
max-width: 25%;
|
472 |
-
}
|
473 |
-
.sek-col-30 {
|
474 |
-
-ms-flex: 0 0 30%;
|
475 |
-
flex: 0 0 30%;
|
476 |
-
max-width: 30%;
|
477 |
-
}
|
478 |
-
.sek-col-33 {
|
479 |
-
-ms-flex: 0 0 33.333%;
|
480 |
-
flex: 0 0 33.333%;
|
481 |
-
max-width: 33.333%;
|
482 |
-
}
|
483 |
-
.sek-col-40 {
|
484 |
-
-ms-flex: 0 0 40%;
|
485 |
-
flex: 0 0 40%;
|
486 |
-
max-width: 40%;
|
487 |
-
}
|
488 |
-
.sek-col-50 {
|
489 |
-
-ms-flex: 0 0 50%;
|
490 |
-
flex: 0 0 50%;
|
491 |
-
max-width: 50%;
|
492 |
-
}
|
493 |
-
.sek-col-60 {
|
494 |
-
-ms-flex: 0 0 60%;
|
495 |
-
flex: 0 0 60%;
|
496 |
-
max-width: 60%;
|
497 |
-
}
|
498 |
-
.sek-col-66 {
|
499 |
-
-ms-flex: 0 0 66.666%;
|
500 |
-
flex: 0 0 66.666%;
|
501 |
-
max-width: 66.666%;
|
502 |
-
}
|
503 |
-
.sek-col-70 {
|
504 |
-
-ms-flex: 0 0 70%;
|
505 |
-
flex: 0 0 70%;
|
506 |
-
max-width: 70%;
|
507 |
-
}
|
508 |
-
.sek-col-75 {
|
509 |
-
-ms-flex: 0 0 75%;
|
510 |
-
flex: 0 0 75%;
|
511 |
-
max-width: 75%;
|
512 |
-
}
|
513 |
-
.sek-col-80 {
|
514 |
-
-ms-flex: 0 0 80%;
|
515 |
-
flex: 0 0 80%;
|
516 |
-
max-width: 80%;
|
517 |
-
}
|
518 |
-
.sek-col-83 {
|
519 |
-
-ms-flex: 0 0 83.333%;
|
520 |
-
flex: 0 0 83.333%;
|
521 |
-
max-width: 83.333%;
|
522 |
-
}
|
523 |
-
.sek-col-90 {
|
524 |
-
-ms-flex: 0 0 90%;
|
525 |
-
flex: 0 0 90%;
|
526 |
-
max-width: 90%;
|
527 |
-
}
|
528 |
-
.sek-col-100 {
|
529 |
-
-ms-flex: 0 0 100%;
|
530 |
-
flex: 0 0 100%;
|
531 |
-
max-width: 100%;
|
532 |
-
}
|
533 |
-
.sek-order-first {
|
534 |
-
-ms-flex-order: -1;
|
535 |
-
order: -1;
|
536 |
-
}
|
537 |
-
.sek-order-last {
|
538 |
-
-ms-flex-order: 13;
|
539 |
-
order: 13;
|
540 |
-
}
|
541 |
-
.sek-order-0 {
|
542 |
-
-ms-flex-order: 0;
|
543 |
-
order: 0;
|
544 |
-
}
|
545 |
-
.sek-order-1 {
|
546 |
-
-ms-flex-order: 1;
|
547 |
-
order: 1;
|
548 |
-
}
|
549 |
-
.sek-order-2 {
|
550 |
-
-ms-flex-order: 2;
|
551 |
-
order: 2;
|
552 |
-
}
|
553 |
-
.sek-order-3 {
|
554 |
-
-ms-flex-order: 3;
|
555 |
-
order: 3;
|
556 |
-
}
|
557 |
-
.sek-order-4 {
|
558 |
-
-ms-flex-order: 4;
|
559 |
-
order: 4;
|
560 |
-
}
|
561 |
-
.sek-order-5 {
|
562 |
-
-ms-flex-order: 5;
|
563 |
-
order: 5;
|
564 |
-
}
|
565 |
-
.sek-order-6 {
|
566 |
-
-ms-flex-order: 6;
|
567 |
-
order: 6;
|
568 |
-
}
|
569 |
-
.sek-order-7 {
|
570 |
-
-ms-flex-order: 7;
|
571 |
-
order: 7;
|
572 |
-
}
|
573 |
-
.sek-order-8 {
|
574 |
-
-ms-flex-order: 8;
|
575 |
-
order: 8;
|
576 |
-
}
|
577 |
-
.sek-order-9 {
|
578 |
-
-ms-flex-order: 9;
|
579 |
-
order: 9;
|
580 |
-
}
|
581 |
-
.sek-order-10 {
|
582 |
-
-ms-flex-order: 10;
|
583 |
-
order: 10;
|
584 |
-
}
|
585 |
-
.sek-order-11 {
|
586 |
-
-ms-flex-order: 11;
|
587 |
-
order: 11;
|
588 |
-
}
|
589 |
-
.sek-order-12 {
|
590 |
-
-ms-flex-order: 12;
|
591 |
-
order: 12;
|
592 |
-
}
|
593 |
-
}
|
594 |
-
|
595 |
/*
|
596 |
.sek-collapsing {
|
597 |
position: relative;
|
598 |
height: 0;
|
599 |
overflow: hidden;
|
600 |
//@include transition($transition-collapse);
|
601 |
-
}*/
|
602 |
-
.sek-clearfix::after {
|
603 |
-
display: block;
|
604 |
-
clear: both;
|
605 |
-
content: "";
|
606 |
-
}
|
607 |
-
|
608 |
-
.sek-sr-only {
|
609 |
-
position: absolute;
|
610 |
-
width: 1px;
|
611 |
-
height: 1px;
|
612 |
-
padding: 0;
|
613 |
-
overflow: hidden;
|
614 |
-
clip: rect(0, 0, 0, 0);
|
615 |
-
white-space: nowrap;
|
616 |
-
border: 0;
|
617 |
-
}
|
618 |
-
|
619 |
-
.sek-sr-only-focusable:active, .sek-sr-only-focusable:focus {
|
620 |
-
position: static;
|
621 |
-
width: auto;
|
622 |
-
height: auto;
|
623 |
-
overflow: visible;
|
624 |
-
clip: auto;
|
625 |
-
white-space: normal;
|
626 |
-
}
|
627 |
-
|
628 |
-
.sek-embed {
|
629 |
-
position: relative;
|
630 |
-
}
|
631 |
-
|
632 |
-
.sek-embed::before {
|
633 |
-
display: block;
|
634 |
-
content: '';
|
635 |
-
}
|
636 |
-
|
637 |
-
.sek-embed .sek-embed-inner,
|
638 |
-
.sek-embed iframe {
|
639 |
-
position: absolute;
|
640 |
-
width: 100%;
|
641 |
-
height: 100%;
|
642 |
-
top: 0;
|
643 |
-
left: 0;
|
644 |
-
}
|
645 |
-
|
646 |
-
.sektion-wrapper {
|
647 |
-
word-wrap: break-word;
|
648 |
-
}
|
649 |
-
|
650 |
-
.sek-text-right {
|
651 |
-
text-align: right !important;
|
652 |
-
}
|
653 |
-
|
654 |
-
.sek-text-left {
|
655 |
-
text-align: left !important;
|
656 |
-
}
|
657 |
-
|
658 |
-
.sek-module .sek-module-inner ul {
|
659 |
-
list-style: disc;
|
660 |
-
}
|
661 |
-
|
662 |
-
.sek-module .sek-module-inner ol {
|
663 |
-
list-style: decimal;
|
664 |
-
}
|
665 |
-
|
666 |
-
.sek-module .sek-module-inner ol > li::before {
|
667 |
-
content: none;
|
668 |
-
}
|
669 |
-
|
670 |
-
.sek-module .sek-module-inner ul, .sek-module .sek-module-inner ol {
|
671 |
-
padding: 0;
|
672 |
-
line-height: 1.5;
|
673 |
-
margin: 0 0 1.5rem 3rem;
|
674 |
-
}
|
675 |
-
|
676 |
-
.sek-module .sek-module-inner ul > li, .sek-module .sek-module-inner ol > li {
|
677 |
-
padding: .15rem .25rem;
|
678 |
-
}
|
679 |
-
|
680 |
-
.sek-module .sek-module-inner li > ul, .sek-module .sek-module-inner li > ol {
|
681 |
-
margin-bottom: 0;
|
682 |
-
}
|
683 |
-
|
684 |
-
.sek-module-inner pre code, .sek-module-inner tt {
|
685 |
-
box-sizing: border-box;
|
686 |
-
font-size: inherit;
|
687 |
-
white-space: pre-wrap !important;
|
688 |
-
background: transparent;
|
689 |
-
border: none;
|
690 |
-
padding: 0;
|
691 |
-
font-family: monospace;
|
692 |
-
}
|
693 |
-
|
694 |
-
.sek-module-inner pre {
|
695 |
-
background: #f7f8f9;
|
696 |
-
padding: 2.5em;
|
697 |
-
word-wrap: normal;
|
698 |
-
white-space: pre-wrap !important;
|
699 |
-
color: #313131;
|
700 |
-
font-family: monospace !important;
|
701 |
-
}
|
702 |
-
|
703 |
-
.sek-module-inner figure {
|
704 |
-
text-align: center;
|
705 |
-
}
|
706 |
-
|
707 |
-
.sek-module-inner figcaption {
|
708 |
-
text-align: center;
|
709 |
-
}
|
710 |
-
|
711 |
-
.sek-module-inner cite {
|
712 |
-
color: #313131;
|
713 |
-
font-weight: 300;
|
714 |
-
font-style: normal;
|
715 |
-
position: relative;
|
716 |
-
display: inline-block;
|
717 |
-
}
|
718 |
-
|
719 |
-
.sek-module-inner caption, .sek-module-inner code, .sek-module-inner code, .sek-module-inner kbd, .sek-module-inner samp, .sek-module-inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd), .sek-module-inner :root .has-subtle-background-background-color {
|
720 |
-
background-color: #dbdbdb;
|
721 |
-
}
|
722 |
-
|
723 |
-
.sek-module-inner sub {
|
724 |
-
bottom: -0.25em;
|
725 |
-
}
|
726 |
-
|
727 |
-
.sek-module-inner sub, .sek-module-inner sup {
|
728 |
-
font-size: 75%;
|
729 |
-
line-height: 0;
|
730 |
-
position: relative;
|
731 |
-
vertical-align: baseline;
|
732 |
-
}
|
733 |
-
|
734 |
-
.sek-module-inner blockquote {
|
735 |
-
border-left: 5px solid rgba(0, 0, 0, 0.1);
|
736 |
-
background: none;
|
737 |
-
font-size: 1.2em;
|
738 |
-
font-style: inherit;
|
739 |
-
margin-right: 0;
|
740 |
-
margin-left: 0;
|
741 |
-
padding: 15px;
|
742 |
-
}
|
743 |
-
|
744 |
-
.sek-module-inner table {
|
745 |
-
width: 100%;
|
746 |
-
border-collapse: collapse;
|
747 |
/*&:not([id^=wp-calendar]) {
|
748 |
border: 2px solid $grey-lightest;
|
749 |
th { @extend .caps; @extend .letter-spacing-2; font-family: $serviceFont; }
|
750 |
th, td { @extend .demi-small; padding: $base-line-height; border: 1px solid $grey-lightest; }
|
751 |
td { color: $grey-dark; }
|
752 |
-
}*/
|
753 |
-
}
|
754 |
-
|
755 |
-
@media (max-width: 767.98px) {
|
756 |
-
.sek-module-inner table {
|
757 |
-
table-layout: fixed;
|
758 |
-
}
|
759 |
-
}
|
760 |
-
|
761 |
-
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) {
|
762 |
-
border: 2px solid #eceeef;
|
763 |
-
}
|
764 |
-
|
765 |
-
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th {
|
766 |
-
text-transform: uppercase;
|
767 |
-
letter-spacing: 2px;
|
768 |
-
font-family: sans-serif;
|
769 |
-
}
|
770 |
-
|
771 |
-
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th, .sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {
|
772 |
-
font-size: 0.95em;
|
773 |
-
padding: 1.25em;
|
774 |
-
border: 1px solid #eceeef;
|
775 |
-
}
|
776 |
-
|
777 |
-
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {
|
778 |
-
color: #777;
|
779 |
-
}
|
780 |
-
|
781 |
-
.sek-search-form {
|
782 |
-
float: none;
|
783 |
-
}
|
784 |
-
|
785 |
-
.sek-search-form .sek-search-form-group {
|
786 |
-
display: -ms-flexbox;
|
787 |
-
display: flex;
|
788 |
-
}
|
789 |
-
|
790 |
-
.sek-search-form .sek-search-form-group label {
|
791 |
-
position: relative;
|
792 |
-
margin-right: 5px;
|
793 |
-
}
|
794 |
-
|
795 |
-
.sek-search-form .sek-search-form-group label input[type=search] {
|
796 |
-
max-width: 100%;
|
797 |
-
margin: 0;
|
798 |
-
box-sizing: border-box;
|
799 |
-
border-radius: 0;
|
800 |
-
background: #fff;
|
801 |
-
border: 2px solid #ddd;
|
802 |
-
color: #777;
|
803 |
-
display: block;
|
804 |
-
max-width: 100%;
|
805 |
-
padding: 7px 8px;
|
806 |
-
padding-left: 5px;
|
807 |
-
line-height: 1.5em;
|
808 |
-
width: 100%;
|
809 |
-
}
|
810 |
-
|
811 |
-
.sek-search-form .sek-search-form-group [type=submit] {
|
812 |
-
line-height: 15px;
|
813 |
-
margin: 0;
|
814 |
-
background: #808080 !important;
|
815 |
-
color: #fff;
|
816 |
-
font-size: 16px;
|
817 |
-
padding: 10px 10px;
|
818 |
-
font-weight: normal;
|
819 |
-
display: inline-block;
|
820 |
-
border: none;
|
821 |
-
cursor: pointer;
|
822 |
-
border-radius: 3px;
|
823 |
-
}
|
824 |
-
|
825 |
-
.sek-module .sek-module-inner .sek-btn {
|
826 |
-
display: inline-block;
|
827 |
-
font-weight: normal;
|
828 |
-
line-height: 1.25em;
|
829 |
-
text-align: center;
|
830 |
-
/*white-space: nowrap;*/
|
831 |
-
white-space: normal;
|
832 |
-
word-break: break-all;
|
833 |
-
vertical-align: middle;
|
834 |
-
-webkit-user-select: none;
|
835 |
-
-moz-user-select: none;
|
836 |
-
-ms-user-select: none;
|
837 |
-
user-select: none;
|
838 |
-
border: 1px solid transparent;
|
839 |
-
padding: 0.5em 1em;
|
840 |
-
border-radius: 2px;
|
841 |
-
border-width: 2px;
|
842 |
-
border-style: solid;
|
843 |
-
font-size: 1em;
|
844 |
-
cursor: pointer;
|
845 |
-
text-decoration: none;
|
846 |
-
text-transform: none;
|
847 |
-
transition: all 0.2s ease-in-out;
|
848 |
-
}
|
849 |
-
|
850 |
-
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .sek-btn:hover {
|
851 |
-
text-decoration: none;
|
852 |
-
}
|
853 |
-
|
854 |
-
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .focus.sek-btn {
|
855 |
-
outline: 0;
|
856 |
-
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
857 |
-
}
|
858 |
-
|
859 |
-
.sek-module .sek-module-inner .disabled.sek-btn, .sek-module .sek-module-inner .sek-btn:disabled {
|
860 |
-
cursor: not-allowed;
|
861 |
-
opacity: .65;
|
862 |
-
box-shadow: none;
|
863 |
-
}
|
864 |
-
|
865 |
-
.sek-module .sek-module-inner .sek-btn:active, .sek-module .sek-module-inner .active.sek-btn {
|
866 |
-
background-image: none;
|
867 |
-
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
868 |
-
}
|
869 |
-
|
870 |
-
a.sek-btn.disabled,
|
871 |
-
fieldset[disabled] a.sek-btn {
|
872 |
-
pointer-events: none;
|
873 |
-
}
|
874 |
-
|
875 |
-
.sektion-wrapper button,
|
876 |
-
.sektion-wrapper [type="button"],
|
877 |
-
.sektion-wrapper [type="reset"],
|
878 |
-
.sektion-wrapper [type="submit"] {
|
879 |
-
-webkit-appearance: button;
|
880 |
-
}
|
881 |
-
|
882 |
-
.sektion-wrapper button::-moz-focus-inner,
|
883 |
-
.sektion-wrapper [type="button"]::-moz-focus-inner,
|
884 |
-
.sektion-wrapper [type="reset"]::-moz-focus-inner,
|
885 |
-
.sektion-wrapper [type="submit"]::-moz-focus-inner {
|
886 |
-
padding: 0;
|
887 |
-
border-style: none;
|
888 |
-
}
|
889 |
-
|
890 |
-
button.sek-btn,
|
891 |
-
[type="button"].sek-btn,
|
892 |
-
[type="reset"].sek-btn,
|
893 |
-
[type="submit"].sek-btn {
|
894 |
-
-wekbit-appearance: none !important;
|
895 |
-
background: transparent;
|
896 |
-
}
|
897 |
-
|
898 |
-
[data-sek-level="module"] .sek-module-inner {
|
899 |
-
/* WP Search Widget */
|
900 |
-
}
|
901 |
-
|
902 |
-
[data-sek-level="module"] .sek-module-inner .wp-caption figcaption {
|
903 |
-
color: #6d6d6d;
|
904 |
-
font-style: italic;
|
905 |
-
max-width: 100%;
|
906 |
-
font-size: 14px;
|
907 |
-
font-weight: 500;
|
908 |
-
line-height: 1.4;
|
909 |
-
/* Keep wide captions from overflowing their container. */
|
910 |
-
padding: 4px;
|
911 |
-
margin-top: 1rem;
|
912 |
-
}
|
913 |
-
|
914 |
-
[data-sek-level="module"] .sek-module-inner figure {
|
915 |
-
display: block;
|
916 |
-
}
|
917 |
-
|
918 |
-
[data-sek-level="module"] .sek-module-inner .wp-block-image .aligncenter, [data-sek-level="module"] .sek-module-inner .wp-block-image .alignleft, [data-sek-level="module"] .sek-module-inner .wp-block-image .alignright {
|
919 |
-
display: table;
|
920 |
-
}
|
921 |
-
|
922 |
-
[data-sek-level="module"] .sek-module-inner .wp-block-image figcaption {
|
923 |
-
font-size: 13px;
|
924 |
-
text-align: center;
|
925 |
-
}
|
926 |
-
|
927 |
-
[data-sek-level="module"] .sek-module-inner .wp-block-gallery, [data-sek-level="module"] .sek-module-inner ul.blocks-gallery-grid {
|
928 |
-
margin-left: 0;
|
929 |
-
}
|
930 |
-
|
931 |
-
[data-sek-level="module"] .sek-module-inner [class*="wp-block-"]:not(:last-child) {
|
932 |
-
margin-bottom: 1.5em;
|
933 |
-
}
|
934 |
-
|
935 |
-
.sek-col-100 .sek-module-inner .alignfull {
|
936 |
-
margin-left: calc(-50vw + 50%);
|
937 |
-
margin-right: calc(-50vw + 50%);
|
938 |
-
max-width: 100vw;
|
939 |
-
width: auto;
|
940 |
-
}
|
941 |
-
|
942 |
-
.sek-col-100 .sek-module-inner .alignwide {
|
943 |
-
margin-left: calc(50% - 40vw);
|
944 |
-
width: 80vw;
|
945 |
-
max-width: 80vw;
|
946 |
-
}
|
947 |
-
|
948 |
-
[data-sek-level="module"] .sek-module-inner .aligncenter, [data-sek-level="module"] .sek-module-inner .aligncenter img {
|
949 |
-
display: block;
|
950 |
-
margin-left: auto;
|
951 |
-
margin-right: auto;
|
952 |
-
}
|
953 |
-
|
954 |
-
[data-sek-level="module"] .sek-module-inner .alignleft {
|
955 |
-
float: left;
|
956 |
-
}
|
957 |
-
|
958 |
-
[data-sek-level="module"] .sek-module-inner .alignright {
|
959 |
-
float: right;
|
960 |
-
}
|
961 |
-
|
962 |
-
[data-sek-level="module"] .sek-module-inner .alignnone, [data-sek-level="module"] .sek-module-inner .aligncenter, [data-sek-level="module"] .sek-module-inner .alignleft, [data-sek-level="module"] .sek-module-inner .alignright {
|
963 |
-
margin-top: 1.5rem;
|
964 |
-
margin-right: auto;
|
965 |
-
margin-bottom: 1.5rem;
|
966 |
-
margin-left: auto;
|
967 |
-
}
|
968 |
-
|
969 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form {
|
970 |
-
display: -ms-flexbox;
|
971 |
-
display: flex;
|
972 |
-
max-width: 100%;
|
973 |
-
float: right;
|
974 |
-
}
|
975 |
-
|
976 |
-
@media (max-width: 767.98px) {
|
977 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form {
|
978 |
-
float: none;
|
979 |
-
}
|
980 |
-
}
|
981 |
-
|
982 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form label {
|
983 |
-
position: relative;
|
984 |
-
-ms-flex: 1;
|
985 |
-
flex: 1;
|
986 |
-
margin-right: 5px;
|
987 |
-
}
|
988 |
-
|
989 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form label input {
|
990 |
-
padding-left: 5px;
|
991 |
-
line-height: 20px;
|
992 |
-
width: 100%;
|
993 |
-
max-width: 185px;
|
994 |
-
min-width: 80px;
|
995 |
-
}
|
996 |
-
|
997 |
-
@media (max-width: 767.98px) {
|
998 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form label input {
|
999 |
-
max-width: none;
|
1000 |
-
}
|
1001 |
-
}
|
1002 |
-
|
1003 |
-
[data-sek-level="module"] .sek-module-inner [role=search].search-form input[type=submit] {
|
1004 |
-
line-height: 15px;
|
1005 |
-
/*width: 25%;*/
|
1006 |
-
}
|
1007 |
-
|
1008 |
-
[data-sek-level="module"] .sek-module-inner input[type="submit"] {
|
1009 |
-
background: #808080;
|
1010 |
-
color: #fff;
|
1011 |
-
padding: 10px 10px;
|
1012 |
-
font-weight: normal;
|
1013 |
-
display: inline-block;
|
1014 |
-
border: none;
|
1015 |
-
cursor: pointer;
|
1016 |
-
border-radius: 3px;
|
1017 |
-
}
|
1018 |
-
|
1019 |
-
[data-sek-level="module"] .sek-module-inner .search-form input[type="search"] {
|
1020 |
-
margin: 0;
|
1021 |
-
box-sizing: border-box;
|
1022 |
-
border-radius: 0;
|
1023 |
-
background: #fff;
|
1024 |
-
border: 2px solid #ddd;
|
1025 |
-
color: #777;
|
1026 |
-
display: block;
|
1027 |
-
max-width: 100%;
|
1028 |
-
padding: 7px 8px;
|
1029 |
-
}
|
1030 |
-
|
1031 |
-
.sektion-wrapper.sek-password-protected {
|
1032 |
-
display: -ms-flexbox;
|
1033 |
-
display: flex;
|
1034 |
-
-ms-flex-align: center;
|
1035 |
-
align-items: center;
|
1036 |
-
-ms-flex-pack: center;
|
1037 |
-
justify-content: center;
|
1038 |
-
-ms-flex-direction: column;
|
1039 |
-
flex-direction: column;
|
1040 |
-
}
|
1041 |
-
|
1042 |
-
.sektion-wrapper.sek-password-protected form.post-password-form {
|
1043 |
-
max-width: 450px;
|
1044 |
-
height: auto;
|
1045 |
-
padding: 4em 1em;
|
1046 |
-
font-size: 1em;
|
1047 |
-
}
|
1048 |
-
|
1049 |
-
.sektion-wrapper .sek-module-inner .avatar {
|
1050 |
-
border-radius: 50%;
|
1051 |
-
}
|
1052 |
-
|
1053 |
-
.sek-next-post-link::after, .sek-previous-post-link::before {
|
1054 |
-
width: 15px;
|
1055 |
-
height: 10px;
|
1056 |
-
display: inline-block;
|
1057 |
-
position: relative;
|
1058 |
-
vertical-align: middle;
|
1059 |
-
border-top: 6px solid transparent;
|
1060 |
-
border-bottom: 6px solid transparent;
|
1061 |
-
border-left-color: inherit;
|
1062 |
-
border-right-color: inherit;
|
1063 |
-
}
|
1064 |
-
|
1065 |
-
.sek-previous-post-link::before {
|
1066 |
-
content: '';
|
1067 |
-
border-right: 6px solid;
|
1068 |
-
right: 7px;
|
1069 |
-
}
|
1070 |
-
|
1071 |
-
.sek-next-post-link::after {
|
1072 |
-
content: '';
|
1073 |
-
border-left: 6px solid;
|
1074 |
-
left: 7px;
|
1075 |
-
}
|
1076 |
-
|
1077 |
/*************************************
|
1078 |
* HEADING MODULE
|
1079 |
-
*************************************/
|
1080 |
-
.sek-module-inner .sek-heading {
|
1081 |
-
text-align: center;
|
1082 |
-
margin: 0.6em 0;
|
1083 |
-
display: block;
|
1084 |
-
}
|
1085 |
-
|
1086 |
-
.sek-module-inner .sek-heading > a {
|
1087 |
-
color: inherit;
|
1088 |
-
font-size: inherit;
|
1089 |
-
}
|
1090 |
-
|
1091 |
/*************************************
|
1092 |
* MENU MODULE
|
1093 |
-
*************************************/
|
1094 |
-
.sek-nav-wrap {
|
1095 |
-
position: relative;
|
1096 |
-
display: -ms-flexbox;
|
1097 |
-
display: flex;
|
1098 |
-
-ms-flex-wrap: wrap;
|
1099 |
-
flex-wrap: wrap;
|
1100 |
-
-ms-flex-align: center;
|
1101 |
-
align-items: center;
|
1102 |
-
-ms-flex-pack: end;
|
1103 |
-
justify-content: flex-end;
|
1104 |
-
padding: .5rem 0;
|
1105 |
-
}
|
1106 |
-
|
1107 |
-
.sek-mobile-menu-expanded-below .sek-nav-wrap {
|
1108 |
-
padding: 0;
|
1109 |
-
}
|
1110 |
-
|
1111 |
-
.sek-nav-collapse {
|
1112 |
-
-ms-flex-preferred-size: 100%;
|
1113 |
-
flex-basis: 100%;
|
1114 |
-
-ms-flex-positive: 1;
|
1115 |
-
flex-grow: 1;
|
1116 |
-
-ms-flex-align: center;
|
1117 |
-
align-items: center;
|
1118 |
-
}
|
1119 |
-
|
1120 |
-
.sek-nav {
|
1121 |
-
display: -ms-flexbox;
|
1122 |
-
display: flex;
|
1123 |
-
-ms-flex-wrap: wrap;
|
1124 |
-
flex-wrap: wrap;
|
1125 |
-
-ms-flex-direction: column;
|
1126 |
-
flex-direction: column;
|
1127 |
-
}
|
1128 |
-
|
1129 |
-
.sek-module .sek-module-inner .sek-nav {
|
1130 |
-
margin-right: -10px !important;
|
1131 |
-
margin-left: -10px !important;
|
1132 |
-
}
|
1133 |
-
|
1134 |
-
.sek-module .sek-module-inner .sek-nav,
|
1135 |
-
.sek-module .sek-module-inner .sek-nav ul {
|
1136 |
-
list-style: none !important;
|
1137 |
-
padding: 0 !important;
|
1138 |
-
margin: 0 !important;
|
1139 |
-
}
|
1140 |
-
|
1141 |
-
.sek-module .sek-module-inner .sek-nav li {
|
1142 |
-
list-style: none;
|
1143 |
-
padding: 0;
|
1144 |
-
}
|
1145 |
-
|
1146 |
-
.sek-module .sek-module-inner .sek-nav li > ul li {
|
1147 |
-
padding: 0;
|
1148 |
-
}
|
1149 |
-
|
1150 |
-
.sek-nav li {
|
1151 |
-
font-size: 16px;
|
1152 |
-
}
|
1153 |
-
|
1154 |
-
.sek-nav li a {
|
1155 |
-
line-height: 1.5em;
|
1156 |
-
padding: .6em .8em;
|
1157 |
-
display: -ms-flexbox;
|
1158 |
-
display: flex;
|
1159 |
-
-ms-flex-align: center;
|
1160 |
-
align-items: center;
|
1161 |
-
-ms-flex-pack: justify;
|
1162 |
-
justify-content: space-between;
|
1163 |
-
color: inherit;
|
1164 |
-
overflow: hidden;
|
1165 |
-
}
|
1166 |
-
|
1167 |
-
.sek-nav-wrap .sek-nav li a {
|
1168 |
-
text-decoration: none;
|
1169 |
-
}
|
1170 |
-
|
1171 |
-
.sek-nav li a:hover .sek-nav__title {
|
1172 |
-
text-decoration: underline;
|
1173 |
-
}
|
1174 |
-
|
1175 |
-
.sek-nav li:not(:last-of-type) {
|
1176 |
-
border-bottom: 1px solid;
|
1177 |
-
border-color: rgba(49, 49, 49, 0.09);
|
1178 |
-
}
|
1179 |
-
|
1180 |
-
.sek-nav .menu-item-has-children,
|
1181 |
-
.sek-nav .page_item_has_children {
|
1182 |
-
position: relative;
|
1183 |
-
}
|
1184 |
-
|
1185 |
-
.sek-nav .menu-item-has-children > a::after,
|
1186 |
-
.sek-nav .page_item_has_children > a::after {
|
1187 |
-
content: "\203A";
|
1188 |
-
font-family: "Arial Unicode MS", Arial;
|
1189 |
-
moz-osx-font-smoothing: grayscale;
|
1190 |
-
-webkit-font-smoothing: antialiased;
|
1191 |
-
display: none;
|
1192 |
-
font-style: normal;
|
1193 |
-
font-variant: normal;
|
1194 |
-
text-rendering: auto;
|
1195 |
-
font-weight: 900;
|
1196 |
-
transition: all 0.3s ease;
|
1197 |
-
-webkit-transform-style: preserve-3d;
|
1198 |
-
transform-style: preserve-3d;
|
1199 |
-
-webkit-backface-visibility: hidden;
|
1200 |
-
backface-visibility: hidden;
|
1201 |
-
-webkit-perspective: 1000px;
|
1202 |
-
perspective: 1000px;
|
1203 |
-
padding: 0 .45em;
|
1204 |
-
font-size: 1em;
|
1205 |
-
position: relative;
|
1206 |
-
-webkit-transform: translateZ(0) rotate(90deg);
|
1207 |
-
transform: translateZ(0) rotate(90deg);
|
1208 |
-
-ms-transform: rotate(90deg);
|
1209 |
-
}
|
1210 |
-
|
1211 |
-
.sek-nav .menu-item-has-children.show > a::after,
|
1212 |
-
.sek-nav .page_item_has_children.show > a::after {
|
1213 |
-
-webkit-transform: translateZ(0) rotate(-90deg) !important;
|
1214 |
-
transform: translateZ(0) rotate(-90deg) !important;
|
1215 |
-
-ms-transform: rotate(-90deg) !important;
|
1216 |
-
}
|
1217 |
-
|
1218 |
-
.sek-nav .sub-menu,
|
1219 |
-
.sek-nav .children {
|
1220 |
-
position: static;
|
1221 |
-
float: none;
|
1222 |
-
list-style: none;
|
1223 |
-
border-radius: 0;
|
1224 |
-
border: 0;
|
1225 |
-
margin: 0;
|
1226 |
-
padding: 0;
|
1227 |
-
font-size: inherit;
|
1228 |
-
}
|
1229 |
-
|
1230 |
-
@media (min-width: 768px) {
|
1231 |
-
.sek-nav .sub-menu,
|
1232 |
-
.sek-nav .children {
|
1233 |
-
position: absolute;
|
1234 |
-
display: none;
|
1235 |
-
top: 100%;
|
1236 |
-
left: 0;
|
1237 |
-
z-index: 1000;
|
1238 |
-
min-width: 10rem;
|
1239 |
-
max-width: 50vw;
|
1240 |
-
}
|
1241 |
-
}
|
1242 |
-
|
1243 |
-
@media (min-width: 768px) {
|
1244 |
-
.sek-nav {
|
1245 |
-
-ms-flex-direction: row;
|
1246 |
-
flex-direction: row;
|
1247 |
-
}
|
1248 |
-
.sek-nav .menu-item-has-children > a::after,
|
1249 |
-
.sek-nav .page_item_has_children > a::after {
|
1250 |
-
display: inline-block;
|
1251 |
-
}
|
1252 |
-
.sek-nav > li:not(:last-of-type) {
|
1253 |
-
border-bottom: none;
|
1254 |
-
}
|
1255 |
-
.sek-nav > li > a {
|
1256 |
-
padding: 5px;
|
1257 |
-
}
|
1258 |
-
.sek-module .sek-module-inner .sek-nav li {
|
1259 |
-
margin: 0 5px;
|
1260 |
-
}
|
1261 |
-
.sek-module .sek-module-inner .sek-nav li > ul li {
|
1262 |
-
padding: 0 0 0 .9rem;
|
1263 |
-
}
|
1264 |
-
.sek-nav-collapse {
|
1265 |
-
display: -ms-flexbox !important;
|
1266 |
-
display: flex !important;
|
1267 |
-
-ms-flex-preferred-size: auto;
|
1268 |
-
flex-basis: auto;
|
1269 |
-
justify-content: flex-end;
|
1270 |
-
-webkit-box-pack: end;
|
1271 |
-
-ms-flex-pack: end;
|
1272 |
-
}
|
1273 |
-
.sek-mobile-menu-expanded-below {
|
1274 |
-
display: none !important;
|
1275 |
-
}
|
1276 |
-
.sek-nav-toggler {
|
1277 |
-
display: none;
|
1278 |
-
}
|
1279 |
-
.sek-dropdown-menu {
|
1280 |
-
background: white;
|
1281 |
-
box-shadow: 1px 2px 2px 2px rgba(0, 0, 0, 0.15);
|
1282 |
-
}
|
1283 |
-
.sek-nav .sek-dropdown-menu li {
|
1284 |
-
padding: 0 10px !important;
|
1285 |
-
margin: 0 !important;
|
1286 |
-
}
|
1287 |
-
.sek-nav .sek-dropdown-menu li a {
|
1288 |
-
padding: 10px 12px;
|
1289 |
-
}
|
1290 |
-
.sek-dropdown-menu ul {
|
1291 |
-
left: 100%;
|
1292 |
-
}
|
1293 |
-
.sek-dropdown-menu .sek-menu-link__row-reverse {
|
1294 |
-
-ms-flex-direction: row-reverse !important;
|
1295 |
-
flex-direction: row-reverse !important;
|
1296 |
-
}
|
1297 |
-
.sek-dropdown-menu .sek-nav__title {
|
1298 |
-
word-break: normal;
|
1299 |
-
white-space: nowrap;
|
1300 |
-
}
|
1301 |
-
.sek-dropdown-submenu .sek-dropdown-menu {
|
1302 |
-
top: 15px;
|
1303 |
-
}
|
1304 |
-
.sek-submenu-fade .sek-dropdown-menu a {
|
1305 |
-
transition: all 0.25s ease;
|
1306 |
-
-webkit-transform: translate(0, 0);
|
1307 |
-
transform: translate(0, 0);
|
1308 |
-
}
|
1309 |
-
.sek-submenu-fade .sek-dropdown-menu a:hover {
|
1310 |
-
-webkit-transform: translate(3px, 0);
|
1311 |
-
transform: translate(3px, 0);
|
1312 |
-
}
|
1313 |
-
.sek-submenu-fade .page_item_has_children,
|
1314 |
-
.sek-submenu-fade .menu-item-has-children {
|
1315 |
-
-webkit-perspective: 1000px;
|
1316 |
-
perspective: 1000px;
|
1317 |
-
}
|
1318 |
-
.sek-submenu-fade .page_item_has_children > ul,
|
1319 |
-
.sek-submenu-fade .menu-item-has-children > ul {
|
1320 |
-
position: fixed;
|
1321 |
-
opacity: 0;
|
1322 |
-
visibility: hidden;
|
1323 |
-
display: block;
|
1324 |
-
transition: all 0.25s ease-in-out;
|
1325 |
-
-webkit-transform: translate(0, -10px);
|
1326 |
-
transform: translate(0, -10px);
|
1327 |
-
}
|
1328 |
-
.sek-submenu-fade .page_item_has_children:not(.show),
|
1329 |
-
.sek-submenu-fade .menu-item-has-children:not(.show) {
|
1330 |
-
overflow: hidden;
|
1331 |
-
}
|
1332 |
-
.sek-submenu-fade .page_item_has_children:not(.show) ul,
|
1333 |
-
.sek-submenu-fade .menu-item-has-children:not(.show) ul {
|
1334 |
-
pointer-events: none;
|
1335 |
-
cursor: not-allowed;
|
1336 |
-
}
|
1337 |
-
.sek-submenu-fade li.show {
|
1338 |
-
-webkit-perspective: none;
|
1339 |
-
perspective: none;
|
1340 |
-
}
|
1341 |
-
.sek-submenu-fade li.show > ul {
|
1342 |
-
position: absolute;
|
1343 |
-
visibility: visible;
|
1344 |
-
opacity: 1;
|
1345 |
-
-webkit-transform: translate(0, 0);
|
1346 |
-
transform: translate(0, 0);
|
1347 |
-
}
|
1348 |
-
.nb-collapsible-mobile-menu .nb-dd-mm-toggle-wrapper {
|
1349 |
-
display: none;
|
1350 |
-
}
|
1351 |
-
}
|
1352 |
-
|
1353 |
-
.sek-dropdown-submenu > a::after {
|
1354 |
-
-webkit-transform: translateZ(0) rotate(0deg) !important;
|
1355 |
-
transform: translateZ(0) rotate(0deg) !important;
|
1356 |
-
-ms-transform: rotate(0deg) !important;
|
1357 |
-
}
|
1358 |
-
|
1359 |
-
.sek-dropdown-submenu > a[class*=-reverse]::after {
|
1360 |
-
top: .1em;
|
1361 |
-
-webkit-transform: translateZ(0) rotate(-180deg) !important;
|
1362 |
-
transform: translateZ(0) rotate(-180deg) !important;
|
1363 |
-
-ms-transform: rotate(-180deg) !important;
|
1364 |
-
}
|
1365 |
-
|
1366 |
-
.sek-dropdown-menu {
|
1367 |
-
position: static;
|
1368 |
-
float: none;
|
1369 |
-
list-style: none;
|
1370 |
-
border-radius: 0;
|
1371 |
-
border: 0;
|
1372 |
-
margin: 0;
|
1373 |
-
padding: 0;
|
1374 |
-
font-size: inherit;
|
1375 |
-
}
|
1376 |
-
|
1377 |
-
@media (min-width: 768px) {
|
1378 |
-
.sek-dropdown-menu {
|
1379 |
-
position: absolute;
|
1380 |
-
display: none;
|
1381 |
-
top: 100%;
|
1382 |
-
left: 0;
|
1383 |
-
z-index: 1000;
|
1384 |
-
min-width: 10rem;
|
1385 |
-
max-width: 50vw;
|
1386 |
-
}
|
1387 |
-
}
|
1388 |
-
|
1389 |
-
.show > .sek-dropdown-menu {
|
1390 |
-
display: block;
|
1391 |
-
}
|
1392 |
-
|
1393 |
-
.sek-dropdown-menu .sek-nav .sek-nav__title {
|
1394 |
-
word-break: break-word;
|
1395 |
-
white-space: normal;
|
1396 |
-
}
|
1397 |
-
|
1398 |
-
.sek-dropdown-menu.open-right {
|
1399 |
-
left: 0;
|
1400 |
-
right: auto;
|
1401 |
-
}
|
1402 |
-
|
1403 |
-
.sek-dropdown-menu.open-right ul:not(.open-left),
|
1404 |
-
.sek-dropdown-menu ul.open-right {
|
1405 |
-
left: 100%;
|
1406 |
-
right: auto;
|
1407 |
-
top: 0;
|
1408 |
-
}
|
1409 |
-
|
1410 |
-
.sek-dropdown-menu.open-left {
|
1411 |
-
left: auto;
|
1412 |
-
right: 0;
|
1413 |
-
}
|
1414 |
-
|
1415 |
-
.sek-dropdown-menu.open-left ul:not(.open-right),
|
1416 |
-
.sek-dropdown-menu ul.open-left {
|
1417 |
-
right: 100%;
|
1418 |
-
left: auto;
|
1419 |
-
}
|
1420 |
-
|
1421 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] {
|
1422 |
-
overflow: auto;
|
1423 |
-
max-height: 80vh;
|
1424 |
-
padding-bottom: 10px;
|
1425 |
-
}
|
1426 |
-
|
1427 |
-
nav.nb-collapsible-mobile-menu li .sub-menu li a {
|
1428 |
-
font-size: 0.88em;
|
1429 |
-
}
|
1430 |
-
|
1431 |
-
nav.nb-collapsible-mobile-menu li .sub-menu li > a {
|
1432 |
-
padding: .6em 32px;
|
1433 |
-
}
|
1434 |
-
|
1435 |
-
nav.nb-collapsible-mobile-menu li .sub-menu li li > a {
|
1436 |
-
padding: .6em 60px;
|
1437 |
-
}
|
1438 |
-
|
1439 |
-
nav.nb-collapsible-mobile-menu li .sub-menu li li li > a {
|
1440 |
-
padding: .6em 80px;
|
1441 |
-
}
|
1442 |
-
|
1443 |
-
nav.nb-collapsible-mobile-menu li .sub-menu li li li li > a {
|
1444 |
-
padding: .6em 100px;
|
1445 |
-
}
|
1446 |
-
|
1447 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state] {
|
1448 |
-
display: none;
|
1449 |
-
}
|
1450 |
-
|
1451 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] {
|
1452 |
-
display: block;
|
1453 |
-
}
|
1454 |
-
|
1455 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"],
|
1456 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] li,
|
1457 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] ul {
|
1458 |
-
background: #ffffff;
|
1459 |
-
}
|
1460 |
-
|
1461 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .sub-menu,
|
1462 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] li {
|
1463 |
-
position: relative;
|
1464 |
-
}
|
1465 |
-
|
1466 |
-
[data-sek-is-mobile-vertical-menu="yes"] .sek-nav li a {
|
1467 |
-
min-height: 45px;
|
1468 |
-
box-sizing: border-box;
|
1469 |
-
justify-content: flex-start;
|
1470 |
-
-webkit-box-pack: start;
|
1471 |
-
-ms-flex-pack: start;
|
1472 |
-
}
|
1473 |
-
|
1474 |
-
[data-sek-is-mobile-vertical-menu="yes"] .sub-menu {
|
1475 |
-
display: none;
|
1476 |
-
}
|
1477 |
-
|
1478 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .sub-menu {
|
1479 |
-
display: none;
|
1480 |
-
}
|
1481 |
-
|
1482 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .sub-menu.expanded {
|
1483 |
-
display: block;
|
1484 |
-
}
|
1485 |
-
|
1486 |
/*
|
1487 |
* Mobile dropdown on click
|
1488 |
-
*/
|
1489 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .page_item_has_children > a,
|
1490 |
-
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .menu-item-has-children > a {
|
1491 |
-
padding-right: 60px;
|
1492 |
-
}
|
1493 |
-
|
1494 |
-
.nb-dd-mm-toggle-wrapper {
|
1495 |
-
position: absolute;
|
1496 |
-
top: 1px;
|
1497 |
-
right: 0;
|
1498 |
-
text-align: center;
|
1499 |
-
line-height: 1;
|
1500 |
-
bottom: 1px;
|
1501 |
-
height: 45px;
|
1502 |
-
width: 60px;
|
1503 |
-
}
|
1504 |
-
|
1505 |
-
.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .nb-dd-mm-toggle-wrapper {
|
1506 |
-
display: block;
|
1507 |
-
}
|
1508 |
-
|
1509 |
-
.nb-dd-mm-toggle {
|
1510 |
-
background: none !important;
|
1511 |
-
-webkit-appearance: none;
|
1512 |
-
outline: none;
|
1513 |
-
border: none;
|
1514 |
-
padding: 0;
|
1515 |
-
cursor: pointer;
|
1516 |
-
display: block;
|
1517 |
-
height: 45px;
|
1518 |
-
width: 60px;
|
1519 |
-
box-sizing: border-box;
|
1520 |
-
overflow: hidden;
|
1521 |
-
}
|
1522 |
-
|
1523 |
-
.nb-dd-mm-toggle i {
|
1524 |
-
display: block;
|
1525 |
-
transition: all .3s ease;
|
1526 |
-
-webkit-transform-style: preserve-3d;
|
1527 |
-
transform-style: preserve-3d;
|
1528 |
-
-webkit-backface-visibility: hidden;
|
1529 |
-
backface-visibility: hidden;
|
1530 |
-
width: 100%;
|
1531 |
-
color: #000000;
|
1532 |
-
}
|
1533 |
-
|
1534 |
-
li.expanded > .nb-dd-mm-toggle-wrapper .nb-arrow-for-mobile-menu {
|
1535 |
-
-webkit-transform: rotate(-180deg);
|
1536 |
-
transform: rotate(-180deg);
|
1537 |
-
}
|
1538 |
-
|
1539 |
-
.nb-arrow-for-mobile-menu::after {
|
1540 |
-
content: "\25BE";
|
1541 |
-
font-family: "Arial Unicode MS", Arial;
|
1542 |
-
moz-osx-font-smoothing: grayscale;
|
1543 |
-
-webkit-font-smoothing: antialiased;
|
1544 |
-
font-style: normal;
|
1545 |
-
font-variant: normal;
|
1546 |
-
text-rendering: auto;
|
1547 |
-
font-weight: 900;
|
1548 |
-
transition: all 0.3s ease;
|
1549 |
-
-webkit-transform-style: preserve-3d;
|
1550 |
-
transform-style: preserve-3d;
|
1551 |
-
-webkit-backface-visibility: hidden;
|
1552 |
-
backface-visibility: hidden;
|
1553 |
-
-webkit-perspective: 1000px;
|
1554 |
-
perspective: 1000px;
|
1555 |
-
padding: 0 .45em;
|
1556 |
-
font-size: 18px;
|
1557 |
-
line-height: 45px;
|
1558 |
-
position: relative;
|
1559 |
-
}
|
1560 |
-
|
1561 |
-
.nb-loc .sek-module-inner nav .sek-nav-toggler {
|
1562 |
-
-webkit-appearance: none !important;
|
1563 |
-
cursor: pointer;
|
1564 |
-
height: 40px;
|
1565 |
-
width: 40px;
|
1566 |
-
padding: 0;
|
1567 |
-
vertical-align: middle;
|
1568 |
-
}
|
1569 |
-
|
1570 |
-
.nb-loc .sek-module-inner nav .sek-nav-toggler, .nb-loc .sek-module-inner nav .sek-nav-toggler:hover, .nb-loc .sek-module-inner nav .sek-nav-toggler:focus {
|
1571 |
-
background: 0 0;
|
1572 |
-
background-color: rgba(0, 0, 0, 0);
|
1573 |
-
color: black;
|
1574 |
-
outline: none;
|
1575 |
-
border: none;
|
1576 |
-
}
|
1577 |
-
|
1578 |
-
.sek-ham__span-wrapper {
|
1579 |
-
height: 12px;
|
1580 |
-
position: relative;
|
1581 |
-
display: block;
|
1582 |
-
}
|
1583 |
-
|
1584 |
-
.sek-ham__span-wrapper .line {
|
1585 |
-
display: block;
|
1586 |
-
height: 1.5px;
|
1587 |
-
position: absolute;
|
1588 |
-
left: 10px;
|
1589 |
-
border-radius: 5px;
|
1590 |
-
background-clip: padding-box;
|
1591 |
-
transition: all ease .35s;
|
1592 |
-
-webkit-backface-visibility: hidden;
|
1593 |
-
backface-visibility: hidden;
|
1594 |
-
border-top: 1.5px solid;
|
1595 |
-
}
|
1596 |
-
|
1597 |
-
.sek-ham__span-wrapper .line-1 {
|
1598 |
-
top: 0;
|
1599 |
-
}
|
1600 |
-
|
1601 |
-
.sek-ham__span-wrapper .line-2 {
|
1602 |
-
top: 50%;
|
1603 |
-
}
|
1604 |
-
|
1605 |
-
.sek-ham__span-wrapper .line-3 {
|
1606 |
-
top: 100%;
|
1607 |
-
}
|
1608 |
-
|
1609 |
-
.sek-nav-toggler .line-1 {
|
1610 |
-
-webkit-transform: translate(-3px, 6px) rotate(45deg);
|
1611 |
-
transform: translate(-3px, 6px) rotate(45deg);
|
1612 |
-
width: 28px;
|
1613 |
-
}
|
1614 |
-
|
1615 |
-
.sek-nav-toggler .line-2 {
|
1616 |
-
opacity: 0;
|
1617 |
-
}
|
1618 |
-
|
1619 |
-
.sek-nav-toggler .line-3 {
|
1620 |
-
-webkit-transform: translate(-3px, -6px) rotate(-45deg);
|
1621 |
-
transform: translate(-3px, -6px) rotate(-45deg);
|
1622 |
-
width: 28px;
|
1623 |
-
}
|
1624 |
-
|
1625 |
-
.sek-nav-toggler.sek-collapsed .line {
|
1626 |
-
width: 20px;
|
1627 |
-
-webkit-transform: translate(0, 0) rotate(0);
|
1628 |
-
transform: translate(0, 0) rotate(0);
|
1629 |
-
opacity: 1;
|
1630 |
-
}
|
1631 |
-
|
1632 |
-
.sek-nav-toggler.sek-collapsed.hovering .line {
|
1633 |
-
-webkit-transform: translateX(-3px);
|
1634 |
-
transform: translateX(-3px);
|
1635 |
-
width: 26px;
|
1636 |
-
}
|
1637 |
-
|
1638 |
-
.nb-module-menu-search {
|
1639 |
-
position: relative;
|
1640 |
-
}
|
1641 |
-
|
1642 |
-
[data-sek-is-mobile-vertical-menu="yes"] .nb-module-menu-search {
|
1643 |
-
display: none;
|
1644 |
-
}
|
1645 |
-
|
1646 |
-
.nb-svg-search-icon {
|
1647 |
-
cursor: pointer;
|
1648 |
-
padding: 0;
|
1649 |
-
}
|
1650 |
-
|
1651 |
-
.nb-module-menu-search .nb-search-expand {
|
1652 |
-
display: none;
|
1653 |
-
background: #fff;
|
1654 |
-
position: absolute;
|
1655 |
-
z-index: 100;
|
1656 |
-
top: 49px;
|
1657 |
-
right: 0;
|
1658 |
-
left: 0;
|
1659 |
-
width: 340px;
|
1660 |
-
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
|
1661 |
-
}
|
1662 |
-
|
1663 |
-
.nb-search-expand .nb-search-expand-inner {
|
1664 |
-
border: 1px solid #eee;
|
1665 |
-
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.15);
|
1666 |
-
transition: -webkit-transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;
|
1667 |
-
transition: height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;
|
1668 |
-
transition: transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;
|
1669 |
-
transition: transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;
|
1670 |
-
padding: 15px;
|
1671 |
-
}
|
1672 |
-
|
1673 |
-
.nb-search-expand .nb-search-expand-inner [role=search].search-form label::after {
|
1674 |
-
content: none;
|
1675 |
-
}
|
1676 |
-
|
1677 |
-
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner [role=search].search-form {
|
1678 |
-
display: -ms-flexbox;
|
1679 |
-
display: flex;
|
1680 |
-
float: none;
|
1681 |
-
}
|
1682 |
-
|
1683 |
-
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner label input[type=search] {
|
1684 |
-
max-width: 100%;
|
1685 |
-
}
|
1686 |
-
|
1687 |
-
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner input[type=submit], [data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search form input[type=submit] {
|
1688 |
-
margin: 0;
|
1689 |
-
background: #808080 !important;
|
1690 |
-
color: #fff;
|
1691 |
-
font-size: 16px;
|
1692 |
-
padding: 10px 10px;
|
1693 |
-
font-weight: normal;
|
1694 |
-
display: inline-block;
|
1695 |
-
border: none;
|
1696 |
-
cursor: pointer;
|
1697 |
-
border-radius: 3px;
|
1698 |
-
}
|
1699 |
-
|
1700 |
-
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner input[type=search], [data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search input[type=search],
|
1701 |
-
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner input[type=submit], [data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search form input[type=submit] {
|
1702 |
-
text-transform: none !important;
|
1703 |
-
}
|
1704 |
-
|
1705 |
-
.nb-mobile-search {
|
1706 |
-
display: none;
|
1707 |
-
}
|
1708 |
-
|
1709 |
-
[data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search {
|
1710 |
-
display: block;
|
1711 |
-
padding: 6px 14px 15px;
|
1712 |
-
}
|
1713 |
-
|
1714 |
-
[data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search input {
|
1715 |
-
font-size: 16px;
|
1716 |
-
}
|
1717 |
-
|
1718 |
-
.nb-search-expand-inner input[type="search"], .nb-mobile-search input[type="search"] {
|
1719 |
-
color: #000000 !important;
|
1720 |
-
}
|
1721 |
-
|
1722 |
-
.nb-search-expand-inner input[type="submit"], .nb-mobile-search input[type="submit"] {
|
1723 |
-
color: #ffffff !important;
|
1724 |
-
}
|
1725 |
-
|
1726 |
/*************************************
|
1727 |
* IMAGE MODULE
|
1728 |
-
*************************************/
|
1729 |
-
[data-sek-module-type="czr_image_module"] {
|
1730 |
-
text-align: center;
|
1731 |
-
}
|
1732 |
-
|
1733 |
-
[data-sek-module-type="czr_image_module"] img {
|
1734 |
-
border: 0 solid #f2f2f2;
|
1735 |
-
}
|
1736 |
-
|
1737 |
-
[data-sek-module-type="czr_image_module"] .box-shadow img {
|
1738 |
-
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0;
|
1739 |
-
}
|
1740 |
-
|
1741 |
-
/* image module transitions for better animations when effects are used */
|
1742 |
-
[data-sek-module-type="czr_image_module"] figure img {
|
1743 |
-
transition: all 0.2s ease-out;
|
1744 |
-
}
|
1745 |
-
|
1746 |
-
[data-sek-module-type="czr_image_module"] figure.has-custom-height {
|
1747 |
-
overflow: hidden;
|
1748 |
-
display: -ms-flexbox;
|
1749 |
-
display: flex;
|
1750 |
-
-ms-flex-pack: center;
|
1751 |
-
justify-content: center;
|
1752 |
-
-ms-flex-align: center;
|
1753 |
-
align-items: center;
|
1754 |
-
}
|
1755 |
-
|
1756 |
-
[data-sek-module-type="czr_image_module"] figure.has-custom-height img {
|
1757 |
-
-o-object-fit: cover;
|
1758 |
-
object-fit: cover;
|
1759 |
-
}
|
1760 |
-
|
1761 |
-
.sek-hover-effect-opacity img:hover {
|
1762 |
-
opacity: .7;
|
1763 |
-
}
|
1764 |
-
|
1765 |
-
.sek-hover-effect-zoom-out img:hover {
|
1766 |
-
-webkit-transform: scale(1.05);
|
1767 |
-
transform: scale(1.05);
|
1768 |
-
}
|
1769 |
-
|
1770 |
-
.sek-hover-effect-zoom-in img:hover {
|
1771 |
-
-webkit-transform: scale(0.95);
|
1772 |
-
transform: scale(0.95);
|
1773 |
-
}
|
1774 |
-
|
1775 |
-
.sek-hover-effect-move-up img:hover {
|
1776 |
-
-webkit-transform: translateY(-6px);
|
1777 |
-
transform: translateY(-6px);
|
1778 |
-
}
|
1779 |
-
|
1780 |
-
.sek-hover-effect-move-down img:hover {
|
1781 |
-
-webkit-transform: translateY(6px);
|
1782 |
-
transform: translateY(6px);
|
1783 |
-
}
|
1784 |
-
|
1785 |
-
.sek-hover-effect-blur img:hover {
|
1786 |
-
-webkit-filter: blur(2px);
|
1787 |
-
filter: blur(2px);
|
1788 |
-
}
|
1789 |
-
|
1790 |
-
.sek-hover-effect-grayscale img:hover {
|
1791 |
-
-webkit-filter: grayscale(0%);
|
1792 |
-
filter: grayscale(0%);
|
1793 |
-
}
|
1794 |
-
|
1795 |
-
.sek-hover-effect-grayscale img:hover {
|
1796 |
-
-webkit-filter: grayscale(100%);
|
1797 |
-
filter: grayscale(100%);
|
1798 |
-
-webkit-filter: gray;
|
1799 |
-
filter: gray;
|
1800 |
-
}
|
1801 |
-
|
1802 |
-
.sek-hover-effect-reverse-grayscale img {
|
1803 |
-
-webkit-filter: grayscale(100%);
|
1804 |
-
filter: grayscale(100%);
|
1805 |
-
-webkit-filter: gray;
|
1806 |
-
filter: gray;
|
1807 |
-
}
|
1808 |
-
|
1809 |
-
.sek-hover-effect-reverse-grayscale img:hover {
|
1810 |
-
-webkit-filter: grayscale(0%);
|
1811 |
-
filter: grayscale(0%);
|
1812 |
-
}
|
1813 |
-
|
1814 |
-
/*************************************
|
1815 |
-
* NIMBLE IMAGE MODULE
|
1816 |
-
*************************************/
|
1817 |
-
.sek-nimble-image-wrapper {
|
1818 |
-
max-width: 100%;
|
1819 |
-
overflow: hidden;
|
1820 |
-
width: 100%;
|
1821 |
-
position: relative;
|
1822 |
-
display: block;
|
1823 |
-
background-position: center center;
|
1824 |
-
background-size: cover;
|
1825 |
-
display: -ms-flexbox;
|
1826 |
-
display: flex;
|
1827 |
-
-ms-flex-align: center;
|
1828 |
-
align-items: center;
|
1829 |
-
-ms-flex-pack: center;
|
1830 |
-
justify-content: center;
|
1831 |
-
-webkit-backface-visibility: hidden;
|
1832 |
-
backface-visibility: hidden;
|
1833 |
-
-webkit-transform-style: preserve-3d;
|
1834 |
-
transform-style: preserve-3d;
|
1835 |
-
}
|
1836 |
-
|
1837 |
-
.sek-nimble-image-wrapper::before {
|
1838 |
-
content: '';
|
1839 |
-
display: block;
|
1840 |
-
padding-top: 100%;
|
1841 |
-
}
|
1842 |
-
|
1843 |
-
.nb-loc [data-sek-level] .sek-module-inner .sek-nimble-image-wrapper a {
|
1844 |
-
color: #ffffff;
|
1845 |
-
}
|
1846 |
-
|
1847 |
-
.nb-loc [data-sek-level] .sek-module-inner .sek-nimble-image-wrapper a:hover {
|
1848 |
-
color: #ffffff;
|
1849 |
-
}
|
1850 |
-
|
1851 |
-
.sek-nimble-image-wrapper .nb-icon-text-wrapper {
|
1852 |
-
position: absolute;
|
1853 |
-
width: 100%;
|
1854 |
-
height: 100%;
|
1855 |
-
z-index: 1;
|
1856 |
-
top: 0;
|
1857 |
-
display: -ms-flexbox;
|
1858 |
-
display: flex;
|
1859 |
-
-ms-flex-direction: column;
|
1860 |
-
flex-direction: column;
|
1861 |
-
-ms-flex-align: center;
|
1862 |
-
align-items: center;
|
1863 |
-
-ms-flex-pack: center;
|
1864 |
-
justify-content: center;
|
1865 |
-
}
|
1866 |
-
|
1867 |
-
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-icon {
|
1868 |
-
font-size: 80px;
|
1869 |
-
line-height: 1em;
|
1870 |
-
color: #000000;
|
1871 |
-
transition: all .3s ease;
|
1872 |
-
}
|
1873 |
-
|
1874 |
-
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text, .sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text * {
|
1875 |
-
color: #000000;
|
1876 |
-
font-size: 16px;
|
1877 |
-
line-height: 1.5em;
|
1878 |
-
font-weight: 400;
|
1879 |
-
transition: all .3s ease;
|
1880 |
-
}
|
1881 |
-
|
1882 |
-
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text p {
|
1883 |
-
margin: 0;
|
1884 |
-
padding: 0;
|
1885 |
-
}
|
1886 |
-
|
1887 |
-
.sek-nimble-image-wrapper.nb-icon-has-hover-color:hover .nb-pro-img-icon {
|
1888 |
-
color: #969696;
|
1889 |
-
}
|
1890 |
-
|
1891 |
-
.sek-nimble-image-mask {
|
1892 |
-
position: absolute;
|
1893 |
-
border-color: #fff;
|
1894 |
-
left: 0;
|
1895 |
-
right: 0;
|
1896 |
-
top: 0;
|
1897 |
-
bottom: 0;
|
1898 |
-
overflow: hidden;
|
1899 |
-
z-index: 1;
|
1900 |
-
display: -ms-flexbox;
|
1901 |
-
display: flex;
|
1902 |
-
-ms-flex-align: center;
|
1903 |
-
align-items: center;
|
1904 |
-
-ms-flex-pack: center;
|
1905 |
-
justify-content: center;
|
1906 |
-
}
|
1907 |
-
|
1908 |
-
.sek-nimble-image-mask::before {
|
1909 |
-
position: absolute;
|
1910 |
-
content: '';
|
1911 |
-
z-index: 1;
|
1912 |
-
border: 150vw solid;
|
1913 |
-
border-color: inherit;
|
1914 |
-
box-sizing: content-box;
|
1915 |
-
transition: all .3s ease;
|
1916 |
-
-webkit-backface-visibility: hidden;
|
1917 |
-
backface-visibility: hidden;
|
1918 |
-
}
|
1919 |
-
|
1920 |
-
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand:hover .sek-nimble-image-mask::before,
|
1921 |
-
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink .sek-nimble-image-mask::before,
|
1922 |
-
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-expanded .sek-nimble-image-mask::before {
|
1923 |
-
width: 88%;
|
1924 |
-
padding-bottom: 88%;
|
1925 |
-
}
|
1926 |
-
|
1927 |
-
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink:hover .sek-nimble-image-mask::before,
|
1928 |
-
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand .sek-nimble-image-mask::before,
|
1929 |
-
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-shrinked .sek-nimble-image-mask::before {
|
1930 |
-
width: 63%;
|
1931 |
-
padding-bottom: 63%;
|
1932 |
-
}
|
1933 |
-
|
1934 |
-
.sek-nimble-image-wrapper.nb-circle-mask .sek-nimble-image-mask::before {
|
1935 |
-
border-radius: 50%;
|
1936 |
-
}
|
1937 |
-
|
1938 |
-
.sek-nimble-image {
|
1939 |
-
position: absolute;
|
1940 |
-
width: 100%;
|
1941 |
-
height: 100%;
|
1942 |
-
background-position: center center;
|
1943 |
-
background-size: cover;
|
1944 |
-
background-repeat: no-repeat;
|
1945 |
-
z-index: 0;
|
1946 |
-
top: 0;
|
1947 |
-
}
|
1948 |
-
|
1949 |
-
.sek-module-inner [data-sek-adv-list-type="none"] > ul {
|
1950 |
-
list-style-type: none;
|
1951 |
-
margin-left: 0 !important;
|
1952 |
-
}
|
1953 |
-
|
1954 |
-
.sek-module-inner [data-sek-adv-list-type="circle"] > ul {
|
1955 |
-
list-style-type: circle;
|
1956 |
-
}
|
1957 |
-
|
1958 |
-
.sek-module-inner [data-sek-adv-list-type="disc"] > ul {
|
1959 |
-
list-style-type: disc;
|
1960 |
-
}
|
1961 |
-
|
1962 |
-
.sek-module-inner [data-sek-adv-list-type="square"] > ul {
|
1963 |
-
list-style-type: square;
|
1964 |
-
}
|
1965 |
-
|
1966 |
-
.sek-module-inner [data-sek-adv-list-type="decimal"] > ol {
|
1967 |
-
list-style-type: decimal;
|
1968 |
-
}
|
1969 |
-
|
1970 |
-
.sek-module-inner [data-sek-adv-list-type="lower-alpha"] > ol {
|
1971 |
-
list-style-type: lower-alpha;
|
1972 |
-
}
|
1973 |
-
|
1974 |
-
.sek-module-inner [data-sek-adv-list-type="lower-roman"] > ol {
|
1975 |
-
list-style-type: lower-roman;
|
1976 |
-
}
|
1977 |
-
|
1978 |
-
.sek-module-inner [data-sek-adv-list-type="upper-roman"] > ol {
|
1979 |
-
list-style-type: upper-roman;
|
1980 |
-
}
|
1981 |
-
|
1982 |
-
.sek-module-inner [data-sek-adv-list-type="upper-alpha"] > ol {
|
1983 |
-
list-style-type: upper-alpha;
|
1984 |
-
}
|
1985 |
-
|
1986 |
-
.sek-module-inner .sek-adv-list-wrapper ul, .sek-module-inner .sek-adv-list-wrapper ol {
|
1987 |
-
padding: 0;
|
1988 |
-
line-height: 1.5;
|
1989 |
-
margin: 0;
|
1990 |
-
margin-left: 25px;
|
1991 |
-
}
|
1992 |
-
|
1993 |
-
.sek-module-inner .sek-adv-list-wrapper ul li, .sek-module-inner .sek-adv-list-wrapper ol li {
|
1994 |
-
text-indent: 0px;
|
1995 |
-
}
|
1996 |
-
|
1997 |
-
.sek-module-inner [data-sek-adv-list-layout="vertical"] ul li, .sek-module-inner [data-sek-adv-list-layout="vertical"] ol li {
|
1998 |
-
display: list-item;
|
1999 |
-
}
|
2000 |
-
|
2001 |
-
.sek-module-inner [data-sek-adv-list-layout="horizontal"] ul li, .sek-module-inner [data-sek-adv-list-layout="horizontal"] ol li {
|
2002 |
-
display: inline-block;
|
2003 |
-
}
|
2004 |
-
|
2005 |
-
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-inner {
|
2006 |
-
display: -ms-flexbox;
|
2007 |
-
display: flex;
|
2008 |
-
}
|
2009 |
-
|
2010 |
-
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text {
|
2011 |
-
transition: color 0.2s ease-in-out;
|
2012 |
-
-ms-flex-align: center;
|
2013 |
-
align-items: center;
|
2014 |
-
display: -ms-flexbox;
|
2015 |
-
display: flex;
|
2016 |
-
}
|
2017 |
-
|
2018 |
-
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text p {
|
2019 |
-
margin: 0;
|
2020 |
-
}
|
2021 |
-
|
2022 |
-
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text a {
|
2023 |
-
cursor: pointer;
|
2024 |
-
}
|
2025 |
-
|
2026 |
-
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text a:hover {
|
2027 |
-
text-decoration: underline;
|
2028 |
-
}
|
2029 |
-
|
2030 |
-
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-icon {
|
2031 |
-
margin-right: 10px;
|
2032 |
-
-ms-flex-negative: 0;
|
2033 |
-
flex-shrink: 0;
|
2034 |
-
-ms-flex-positive: 0;
|
2035 |
-
flex-grow: 0;
|
2036 |
-
}
|
2037 |
-
|
2038 |
-
.sek-module-inner .sek-adv-list-item [data-sek-icon-border="circle"], .sek-module-inner .sek-adv-list-item [data-sek-icon-border="square"] {
|
2039 |
-
border: 1px solid;
|
2040 |
-
width: 2.2em;
|
2041 |
-
height: 2.2em;
|
2042 |
-
display: -ms-flexbox;
|
2043 |
-
display: flex;
|
2044 |
-
-ms-flex-align: center;
|
2045 |
-
align-items: center;
|
2046 |
-
-ms-flex-pack: center;
|
2047 |
-
justify-content: center;
|
2048 |
-
}
|
2049 |
-
|
2050 |
-
.sek-module-inner .sek-adv-list-item [data-sek-icon-border="circle"] {
|
2051 |
-
border-radius: 2em;
|
2052 |
-
}
|
2053 |
-
|
2054 |
-
/*************************************
|
2055 |
-
* DIVIDER MODULE
|
2056 |
-
*************************************/
|
2057 |
-
[data-sek-module-type="czr_divider_module"] {
|
2058 |
-
text-align: center;
|
2059 |
-
}
|
2060 |
-
|
2061 |
-
[data-sek-module-type="czr_divider_module"] .sek-module-inner {
|
2062 |
-
font-size: 0;
|
2063 |
-
line-height: 0;
|
2064 |
-
}
|
2065 |
-
|
2066 |
-
.sek-module-inner .sek-divider {
|
2067 |
-
border-top: 1px solid #5a5a5a;
|
2068 |
-
display: inline-block;
|
2069 |
-
width: 100%;
|
2070 |
-
margin-top: 15px;
|
2071 |
-
margin-bottom: 15px;
|
2072 |
-
font-size: 1rem;
|
2073 |
-
}
|
2074 |
-
|
2075 |
-
/*************************************
|
2076 |
-
* SPACER MODULE
|
2077 |
-
*************************************/
|
2078 |
-
.sek-module-inner .sek-spacer {
|
2079 |
-
height: 20px;
|
2080 |
-
}
|
2081 |
-
|
2082 |
-
/*************************************
|
2083 |
-
* ICON MODULE
|
2084 |
-
*************************************/
|
2085 |
-
[data-sek-module-type="czr_icon_module"] {
|
2086 |
-
text-align: center;
|
2087 |
-
color: #5a5a5a;
|
2088 |
-
font-size: 15px;
|
2089 |
-
}
|
2090 |
-
|
2091 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon,
|
2092 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon:hover,
|
2093 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon:focus,
|
2094 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon:active,
|
2095 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon.active {
|
2096 |
-
color: inherit;
|
2097 |
-
}
|
2098 |
-
|
2099 |
-
[data-sek-module-type="czr_icon_module"] .box-shadow .sek-icon-wrapper {
|
2100 |
-
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0;
|
2101 |
-
}
|
2102 |
-
|
2103 |
-
[data-sek-module-type="czr_icon_module"] .sek-icon i {
|
2104 |
-
transition: all 0.15s ease-in-out;
|
2105 |
-
}
|
2106 |
-
|
2107 |
-
[data-sek-module-type="czr_icon_module"] .sek-icon .fas, [data-sek-module-type="czr_icon_module"] .sek-icon .far, [data-sek-module-type="czr_icon_module"] .sek-icon .fab {
|
2108 |
-
width: 1em;
|
2109 |
-
height: 1em;
|
2110 |
-
text-align: center;
|
2111 |
-
}
|
2112 |
-
|
2113 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon {
|
2114 |
-
box-shadow: none;
|
2115 |
-
-webkit-box-shadow: none;
|
2116 |
-
}
|
2117 |
-
|
2118 |
-
[data-sek-module-type="czr_icon_module"] a.sek-icon:hover, [data-sek-module-type="czr_icon_module"] a.sek-icon:focus, [data-sek-module-type="czr_icon_module"] a.sek-icon:active {
|
2119 |
-
box-shadow: none;
|
2120 |
-
-webkit-box-shadow: none;
|
2121 |
-
}
|
2122 |
-
|
2123 |
-
[data-sek-module-type="czr_icon_module"] .sek-icon-wrapper {
|
2124 |
-
display: inline-block;
|
2125 |
-
line-height: 1em;
|
2126 |
-
}
|
2127 |
-
|
2128 |
-
/*************************************
|
2129 |
-
* QUOTE MODULE
|
2130 |
-
*************************************/
|
2131 |
-
.sek-quote p {
|
2132 |
-
margin: 0 0 .5em;
|
2133 |
-
padding: 0;
|
2134 |
-
}
|
2135 |
-
|
2136 |
-
.sek-quote .sek-cite {
|
2137 |
-
font-size: 14px;
|
2138 |
-
line-height: 1.5em;
|
2139 |
-
font-style: inherit;
|
2140 |
-
}
|
2141 |
-
|
2142 |
-
.sek-quote[data-sek-quote-design="none"] {
|
2143 |
-
border-left: none;
|
2144 |
-
}
|
2145 |
-
|
2146 |
-
.sek-quote .sek-quote-content {
|
2147 |
-
font-weight: 400;
|
2148 |
-
font-size: 1.2em;
|
2149 |
-
line-height: 1.5em;
|
2150 |
-
color: inherit;
|
2151 |
-
}
|
2152 |
-
|
2153 |
-
.sek-quote.sek-quote-design {
|
2154 |
-
background: none;
|
2155 |
-
font-style: inherit;
|
2156 |
-
margin-right: 0;
|
2157 |
-
margin-left: 0;
|
2158 |
-
padding: 15px 0;
|
2159 |
-
border: none;
|
2160 |
-
}
|
2161 |
-
|
2162 |
-
.sek-quote.sek-quote-design > * {
|
2163 |
-
padding: 0;
|
2164 |
-
margin: 0;
|
2165 |
-
}
|
2166 |
-
|
2167 |
-
.sek-quote.sek-quote-design::before, .sek-quote.sek-quote-design::after {
|
2168 |
-
display: none;
|
2169 |
-
}
|
2170 |
-
|
2171 |
-
.sek-quote.sek-quote-design .sek-cite {
|
2172 |
-
padding: 0;
|
2173 |
-
font-weight: normal;
|
2174 |
-
}
|
2175 |
-
|
2176 |
-
.sek-quote.sek-quote-design .sek-cite::before {
|
2177 |
-
display: none;
|
2178 |
-
}
|
2179 |
-
|
2180 |
-
.sek-quote.sek-quote-design .sek-quote-inner {
|
2181 |
-
color: inherit;
|
2182 |
-
}
|
2183 |
-
|
2184 |
-
.sek-quote.sek-quote-design.sek-quote-icon-before .sek-quote-inner {
|
2185 |
-
padding-left: 45px;
|
2186 |
-
}
|
2187 |
-
|
2188 |
-
.sek-quote.sek-quote-design.sek-border-before {
|
2189 |
-
padding-left: 15px;
|
2190 |
-
border-left: 5px solid rgba(0, 0, 0, 0.1);
|
2191 |
-
}
|
2192 |
-
|
2193 |
-
.sek-quote.sek-quote-design.sek-border-before .sek-cite {
|
2194 |
-
clear: both;
|
2195 |
-
display: block;
|
2196 |
-
margin-top: 1.5em;
|
2197 |
-
position: relative;
|
2198 |
-
padding-left: 2.2em;
|
2199 |
-
padding-right: 0.25em;
|
2200 |
-
}
|
2201 |
-
|
2202 |
-
.sek-quote.sek-quote-design.sek-border-before .sek-cite::before {
|
2203 |
-
display: block;
|
2204 |
-
content: '';
|
2205 |
-
top: 1em;
|
2206 |
-
position: absolute;
|
2207 |
-
background: none;
|
2208 |
-
width: 2em;
|
2209 |
-
height: auto;
|
2210 |
-
left: 0;
|
2211 |
-
border-top: 1px solid;
|
2212 |
-
}
|
2213 |
-
|
2214 |
-
.sek-quote.sek-quote-design.sek-quote-icon-before {
|
2215 |
-
position: relative;
|
2216 |
-
display: -ms-flexbox;
|
2217 |
-
display: flex;
|
2218 |
-
}
|
2219 |
-
|
2220 |
-
.sek-quote.sek-quote-design.sek-quote-icon-before .sek-quote-content *:last-child {
|
2221 |
-
margin-bottom: .75em;
|
2222 |
-
}
|
2223 |
-
|
2224 |
-
.sek-quote.sek-quote-design.sek-quote-icon-before::before {
|
2225 |
-
content: "\275D";
|
2226 |
-
font-family: "Arial Unicode MS", Code2000;
|
2227 |
-
font-size: 50px;
|
2228 |
-
line-height: 1em;
|
2229 |
-
color: #ccc;
|
2230 |
-
font-style: normal;
|
2231 |
-
text-align: center;
|
2232 |
-
-moz-osx-font-smoothing: grayscale;
|
2233 |
-
-webkit-font-smoothing: antialiased;
|
2234 |
-
font-variant: normal;
|
2235 |
-
text-rendering: auto;
|
2236 |
-
display: -ms-flexbox;
|
2237 |
-
display: flex;
|
2238 |
-
width: auto;
|
2239 |
-
margin: 0;
|
2240 |
-
left: 0;
|
2241 |
-
position: absolute;
|
2242 |
-
top: 10px;
|
2243 |
-
}
|
2244 |
-
|
2245 |
-
/*************************************
|
2246 |
-
* BUTTON MODULE
|
2247 |
-
*************************************/
|
2248 |
-
[data-sek-module-type="czr_button_module"] .sek-module-inner {
|
2249 |
-
text-align: center;
|
2250 |
-
}
|
2251 |
-
|
2252 |
-
.nb-loc .sek-module .sek-module-inner .sek-btn {
|
2253 |
-
background: #020202;
|
2254 |
-
color: #ffffff;
|
2255 |
-
padding: 0.5em 1em;
|
2256 |
-
margin: 0.5em;
|
2257 |
-
}
|
2258 |
-
|
2259 |
-
.nb-loc .sek-module .sek-module-inner .sek-btn i {
|
2260 |
-
margin: 0 8px;
|
2261 |
-
}
|
2262 |
-
|
2263 |
-
.nb-loc .sek-module .sek-module-inner .sek-btn:hover, .nb-loc .sek-module .sek-module-inner .sek-btn:focus, .nb-loc .sek-module .sek-module-inner .sek-btn:active {
|
2264 |
-
color: #ffffff;
|
2265 |
-
background-color: #282828;
|
2266 |
-
text-decoration: none;
|
2267 |
-
}
|
2268 |
-
|
2269 |
-
[data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:focus, [data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:hover {
|
2270 |
-
text-decoration: none;
|
2271 |
-
}
|
2272 |
-
|
2273 |
-
.sek-btn-inner {
|
2274 |
-
display: -ms-flexbox;
|
2275 |
-
display: flex;
|
2276 |
-
-ms-flex-align: center;
|
2277 |
-
align-items: center;
|
2278 |
-
}
|
2279 |
-
|
2280 |
-
.sek-btn-inner .sek-btn-text {
|
2281 |
-
width: 100%;
|
2282 |
-
text-align: center;
|
2283 |
-
}
|
2284 |
-
|
2285 |
-
.sek-btn.box-shadow {
|
2286 |
-
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
2287 |
-
}
|
2288 |
-
|
2289 |
-
.sek-btn.box-shadow.push-effect:active {
|
2290 |
-
-webkit-transform: translateY(2px);
|
2291 |
-
transform: translateY(2px);
|
2292 |
-
}
|
2293 |
-
|
2294 |
-
/*************************************
|
2295 |
-
* POST GRID MODULE
|
2296 |
-
*************************************/
|
2297 |
-
.sek-post-grid-wrapper {
|
2298 |
-
margin-top: 1.5rem;
|
2299 |
-
margin-bottom: 1.5rem;
|
2300 |
-
}
|
2301 |
-
|
2302 |
-
.sek-post-grid-wrapper .sek-grid-items {
|
2303 |
-
grid-row-gap: 25px;
|
2304 |
-
}
|
2305 |
-
|
2306 |
-
.sek-post-grid-wrapper .sek-grid-items.sek-list-layout article > *:not(:last-child):not(.sek-pg-thumbnail) {
|
2307 |
-
margin-bottom: 10px;
|
2308 |
-
}
|
2309 |
-
|
2310 |
-
.sek-post-grid-wrapper .sek-grid-items.sek-grid-layout article > *:not(:last-child) {
|
2311 |
-
margin-bottom: 10px;
|
2312 |
-
}
|
2313 |
-
|
2314 |
-
.sek-post-grid-wrapper .sek-grid-items article {
|
2315 |
-
overflow: hidden;
|
2316 |
-
}
|
2317 |
-
|
2318 |
-
.sek-post-grid-wrapper .sek-grid-items article > :first-child {
|
2319 |
-
margin-top: 0 !important;
|
2320 |
-
}
|
2321 |
-
|
2322 |
-
.sek-post-grid-wrapper .sek-grid-items article > :last-child {
|
2323 |
-
margin-top: 0 !important;
|
2324 |
-
}
|
2325 |
-
|
2326 |
-
.sek-post-grid-wrapper .sek-grid-items article > *:not(:last-child) {
|
2327 |
-
margin-top: 0 !important;
|
2328 |
-
}
|
2329 |
-
|
2330 |
-
.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > *:not(:last-child) {
|
2331 |
-
margin-top: 0 !important;
|
2332 |
-
margin-bottom: 10px;
|
2333 |
-
}
|
2334 |
-
|
2335 |
-
.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > :first-child {
|
2336 |
-
margin-top: 0 !important;
|
2337 |
-
}
|
2338 |
-
|
2339 |
-
.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > :last-child {
|
2340 |
-
margin-top: 0 !important;
|
2341 |
-
}
|
2342 |
-
|
2343 |
-
.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article {
|
2344 |
-
box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);
|
2345 |
-
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
|
2346 |
-
}
|
2347 |
-
|
2348 |
-
.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article:hover {
|
2349 |
-
-webkit-transform: translateY(-4px);
|
2350 |
-
transform: translateY(-4px);
|
2351 |
-
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18), 0 10px 10px rgba(0, 0, 0, 0.15);
|
2352 |
-
}
|
2353 |
-
|
2354 |
-
.sek-post-grid-wrapper .sek-pg-thumbnail {
|
2355 |
-
background: inherit;
|
2356 |
-
overflow: hidden;
|
2357 |
-
}
|
2358 |
-
|
2359 |
-
.sek-post-grid-wrapper .sek-pg-thumbnail img {
|
2360 |
-
box-shadow: 0 5px 5px 0 rgba(18, 63, 82, 0.035), 0 0 0 1px rgba(176, 181, 193, 0.2);
|
2361 |
-
border-radius: 4px;
|
2362 |
-
}
|
2363 |
-
|
2364 |
-
.sek-post-grid-wrapper .sek-pg-thumbnail a {
|
2365 |
-
display: block;
|
2366 |
-
position: relative;
|
2367 |
-
}
|
2368 |
-
|
2369 |
-
.sek-post-grid-wrapper .sek-pg-thumbnail img {
|
2370 |
-
display: block;
|
2371 |
-
width: 100%;
|
2372 |
-
height: auto;
|
2373 |
-
}
|
2374 |
-
|
2375 |
-
.sek-post-grid-wrapper.nb-thumb-box-shadow article .sek-pg-thumbnail img {
|
2376 |
-
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
2377 |
-
}
|
2378 |
-
|
2379 |
-
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a {
|
2380 |
-
height: 0;
|
2381 |
-
padding-top: 65%;
|
2382 |
-
}
|
2383 |
-
|
2384 |
-
@media all and (-ms-high-contrast: none) {
|
2385 |
-
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a {
|
2386 |
-
height: auto !important;
|
2387 |
-
padding-top: inherit !important;
|
2388 |
-
}
|
2389 |
-
}
|
2390 |
-
|
2391 |
-
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img {
|
2392 |
-
position: absolute;
|
2393 |
-
height: 100%;
|
2394 |
-
width: 100%;
|
2395 |
-
max-height: none;
|
2396 |
-
max-width: none;
|
2397 |
-
top: 0;
|
2398 |
-
left: 0;
|
2399 |
-
right: 0;
|
2400 |
-
bottom: 0;
|
2401 |
-
-o-object-fit: cover;
|
2402 |
-
object-fit: cover;
|
2403 |
-
}
|
2404 |
-
|
2405 |
-
@media all and (-ms-high-contrast: none) {
|
2406 |
-
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img {
|
2407 |
-
height: auto !important;
|
2408 |
-
position: relative;
|
2409 |
-
}
|
2410 |
-
}
|
2411 |
-
|
2412 |
-
.sek-post-grid-wrapper .sek-pg-metas > span:not(:last-child)::after {
|
2413 |
-
content: "\B7";
|
2414 |
-
vertical-align: middle;
|
2415 |
-
margin: 0 5px;
|
2416 |
-
line-height: 1;
|
2417 |
-
}
|
2418 |
-
|
2419 |
-
.sek-post-grid-wrapper .sek-pg-content {
|
2420 |
-
text-align: left;
|
2421 |
-
}
|
2422 |
-
|
2423 |
-
.sek-post-grid-wrapper .sek-excerpt > :last-child {
|
2424 |
-
margin-bottom: 0;
|
2425 |
-
}
|
2426 |
-
|
2427 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-category {
|
2428 |
-
line-height: 1.2em;
|
2429 |
-
color: #767676;
|
2430 |
-
}
|
2431 |
-
|
2432 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-category a {
|
2433 |
-
text-transform: uppercase;
|
2434 |
-
font-size: 13px;
|
2435 |
-
text-decoration: none;
|
2436 |
-
color: #767676;
|
2437 |
-
}
|
2438 |
-
|
2439 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-category a:hover {
|
2440 |
-
color: inherit;
|
2441 |
-
text-decoration: underline;
|
2442 |
-
}
|
2443 |
-
|
2444 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title {
|
2445 |
-
font-size: 28px;
|
2446 |
-
line-height: 1.1em;
|
2447 |
-
}
|
2448 |
-
|
2449 |
-
@media (max-width: 991.98px) {
|
2450 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title {
|
2451 |
-
font-size: 22px;
|
2452 |
-
}
|
2453 |
-
}
|
2454 |
-
|
2455 |
-
@media (max-width: 575.98px) {
|
2456 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title {
|
2457 |
-
font-size: 20px;
|
2458 |
-
}
|
2459 |
-
}
|
2460 |
-
|
2461 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {
|
2462 |
-
text-decoration: none;
|
2463 |
-
color: #121212;
|
2464 |
-
font-size: 28px;
|
2465 |
-
font-weight: 400;
|
2466 |
-
line-height: 1.1em;
|
2467 |
-
-ms-word-wrap: break-word;
|
2468 |
-
word-wrap: break-word;
|
2469 |
-
}
|
2470 |
-
|
2471 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a:hover {
|
2472 |
-
color: #666;
|
2473 |
-
}
|
2474 |
-
|
2475 |
-
@media (max-width: 991.98px) {
|
2476 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {
|
2477 |
-
font-size: 22px;
|
2478 |
-
}
|
2479 |
-
}
|
2480 |
-
|
2481 |
-
@media (max-width: 575.98px) {
|
2482 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {
|
2483 |
-
font-size: 20px;
|
2484 |
-
}
|
2485 |
-
}
|
2486 |
-
|
2487 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas {
|
2488 |
-
line-height: 1.2em;
|
2489 |
-
}
|
2490 |
-
|
2491 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas span, .nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas a {
|
2492 |
-
text-transform: uppercase;
|
2493 |
-
font-size: 13px;
|
2494 |
-
letter-spacing: 1px;
|
2495 |
-
color: #767676;
|
2496 |
-
}
|
2497 |
-
|
2498 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas a:hover {
|
2499 |
-
text-decoration: underline;
|
2500 |
-
color: inherit;
|
2501 |
-
}
|
2502 |
-
|
2503 |
-
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-content p {
|
2504 |
-
margin: 0 0 10px 0;
|
2505 |
-
line-height: 1.3em;
|
2506 |
-
font-size: 14px;
|
2507 |
-
color: #555;
|
2508 |
-
}
|
2509 |
-
|
2510 |
-
.sek-post-grid-wrapper .sek-list-layout {
|
2511 |
-
display: -ms-grid;
|
2512 |
-
display: grid;
|
2513 |
-
-ms-grid-columns: minmax(0, 1fr);
|
2514 |
-
grid-template-columns: minmax(0, 1fr);
|
2515 |
-
}
|
2516 |
-
|
2517 |
-
@media all and (-ms-high-contrast: none) {
|
2518 |
-
.sek-post-grid-wrapper .sek-list-layout {
|
2519 |
-
display: block !important;
|
2520 |
-
}
|
2521 |
-
}
|
2522 |
-
|
2523 |
-
.sek-post-grid-wrapper .sek-list-layout article {
|
2524 |
-
display: -ms-grid;
|
2525 |
-
display: grid;
|
2526 |
-
-ms-grid-columns: minmax(0, 1fr);
|
2527 |
-
grid-template-columns: minmax(0, 1fr);
|
2528 |
-
-ms-grid-rows: 1fr;
|
2529 |
-
grid-template-rows: 1fr;
|
2530 |
-
grid-column-gap: 20px;
|
2531 |
-
}
|
2532 |
-
|
2533 |
-
@media all and (-ms-high-contrast: none) {
|
2534 |
-
.sek-post-grid-wrapper .sek-list-layout article {
|
2535 |
-
display: block !important;
|
2536 |
-
padding-top: 10px;
|
2537 |
-
}
|
2538 |
-
}
|
2539 |
-
|
2540 |
-
.sek-post-grid-wrapper .sek-list-layout article > *:nth-child(1) {
|
2541 |
-
-ms-grid-row: 1;
|
2542 |
-
-ms-grid-column: 1;
|
2543 |
-
}
|
2544 |
-
|
2545 |
-
.sek-post-grid-wrapper .sek-list-layout article.sek-has-thumb {
|
2546 |
-
-ms-grid-columns: 30% minmax(0, 1fr);
|
2547 |
-
grid-template-columns: 30% minmax(0, 1fr);
|
2548 |
-
}
|
2549 |
-
|
2550 |
-
.sek-post-grid-wrapper .sek-list-layout article .sek-pg-thumbnail {
|
2551 |
-
margin-bottom: 0;
|
2552 |
-
-ms-flex-item-align: start;
|
2553 |
-
align-self: flex-start;
|
2554 |
-
}
|
2555 |
-
|
2556 |
-
.sek-post-grid-wrapper .sek-grid-layout {
|
2557 |
-
display: -ms-grid;
|
2558 |
-
display: grid;
|
2559 |
-
-ms-grid-columns: 1fr 20px 1fr;
|
2560 |
-
grid-template-columns: 1fr 1fr;
|
2561 |
-
-ms-grid-rows: 1fr;
|
2562 |
-
grid-template-rows: 1fr;
|
2563 |
-
grid-row-gap: 20px;
|
2564 |
-
grid-column-gap: 20px;
|
2565 |
-
}
|
2566 |
-
|
2567 |
-
@media all and (-ms-high-contrast: none) {
|
2568 |
-
.sek-post-grid-wrapper .sek-grid-layout {
|
2569 |
-
display: block !important;
|
2570 |
-
}
|
2571 |
-
}
|
2572 |
-
|
2573 |
-
.sek-post-grid-wrapper .sek-grid-layout > *:nth-child(1) {
|
2574 |
-
-ms-grid-row: 1;
|
2575 |
-
-ms-grid-column: 1;
|
2576 |
-
}
|
2577 |
-
|
2578 |
-
.sek-post-grid-wrapper .sek-grid-layout > *:nth-child(2) {
|
2579 |
-
-ms-grid-row: 1;
|
2580 |
-
-ms-grid-column: 3;
|
2581 |
-
}
|
2582 |
-
|
2583 |
-
.sek-module-inner .nb-masonry-post-grid .sek-grid-items.nb-masonry-grid-images-loaded {
|
2584 |
-
grid-auto-rows: 5px;
|
2585 |
-
}
|
2586 |
-
|
2587 |
-
.sek-module-inner .nb-masonry-post-grid .sek-grid-items article {
|
2588 |
-
overflow: hidden;
|
2589 |
-
}
|
2590 |
-
|
2591 |
-
.sek-module-inner .nb-masonry-post-grid .sek-grid-items.sek-thumb-no-custom-height .sek-pg-thumbnail a {
|
2592 |
-
height: auto;
|
2593 |
-
padding-top: 0;
|
2594 |
-
}
|
2595 |
-
|
2596 |
-
.sek-module-inner .nb-masonry-post-grid .sek-grid-items.sek-thumb-no-custom-height .sek-pg-thumbnail img {
|
2597 |
-
position: relative;
|
2598 |
-
height: auto;
|
2599 |
-
width: 100%;
|
2600 |
-
}
|
2601 |
-
|
2602 |
-
.sek-module-inner .nb-item-box-shadow .sek-grid-items article {
|
2603 |
-
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
2604 |
-
}
|
2605 |
-
|
2606 |
-
.sek-post-navigation #sek-nav-below {
|
2607 |
-
background-color: #f7f8f9;
|
2608 |
-
margin-top: 20px;
|
2609 |
-
padding: 5px;
|
2610 |
-
}
|
2611 |
-
|
2612 |
-
.sek-post-navigation #sek-nav-below .sek-pagination {
|
2613 |
-
text-align: center;
|
2614 |
-
}
|
2615 |
-
|
2616 |
-
.sek-post-navigation #sek-nav-below .sek-pagination ul {
|
2617 |
-
display: inline-block;
|
2618 |
-
vertical-align: middle;
|
2619 |
-
margin: 0;
|
2620 |
-
}
|
2621 |
-
|
2622 |
-
.sek-post-navigation #sek-nav-below .sek-pagination .page-numbers {
|
2623 |
-
font-family: inherit;
|
2624 |
-
opacity: 0.7;
|
2625 |
-
text-decoration: none !important;
|
2626 |
-
}
|
2627 |
-
|
2628 |
-
.sek-post-navigation #sek-nav-below .sek-pagination .current {
|
2629 |
-
font-weight: 600;
|
2630 |
-
opacity: 1;
|
2631 |
-
}
|
2632 |
-
|
2633 |
-
.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list > * {
|
2634 |
-
margin: 0 5px;
|
2635 |
-
}
|
2636 |
-
|
2637 |
-
.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list {
|
2638 |
-
margin: 0 -5px;
|
2639 |
-
}
|
2640 |
-
|
2641 |
-
.sek-post-navigation #sek-nav-below nav {
|
2642 |
-
padding-top: 20px;
|
2643 |
-
padding-bottom: 20px;
|
2644 |
-
}
|
2645 |
-
|
2646 |
-
.sek-post-navigation #sek-nav-below ul.sek-czr-pager {
|
2647 |
-
margin: 0;
|
2648 |
-
}
|
2649 |
-
|
2650 |
-
.sek-post-navigation #sek-nav-below li {
|
2651 |
-
display: inline-block;
|
2652 |
-
font-size: 16px;
|
2653 |
-
}
|
2654 |
-
|
2655 |
-
.sek-post-navigation #sek-nav-below a, .sek-post-navigation #sek-nav-below .sek-meta-nav-title {
|
2656 |
-
text-transform: uppercase;
|
2657 |
-
letter-spacing: 2px;
|
2658 |
-
color: #5A5A5A;
|
2659 |
-
}
|
2660 |
-
|
2661 |
-
.sek-post-navigation #sek-nav-below a:hover, .sek-post-navigation #sek-nav-below .sek-meta-nav-title:hover {
|
2662 |
-
color: #3b3b3b;
|
2663 |
-
opacity: 1 !important;
|
2664 |
-
}
|
2665 |
-
|
2666 |
-
.sek-post-navigation #sek-nav-below .sek-czr-pager > li {
|
2667 |
-
display: block;
|
2668 |
-
}
|
2669 |
-
|
2670 |
-
.sek-post-navigation #sek-nav-below .sek-nav-dir {
|
2671 |
-
display: block;
|
2672 |
-
}
|
2673 |
-
|
2674 |
-
.sek-post-navigation #sek-nav-below .sek-nav-dir > a {
|
2675 |
-
max-width: 100%;
|
2676 |
-
}
|
2677 |
-
|
2678 |
-
.sek-post-navigation #sek-nav-below a i.arrow {
|
2679 |
-
font-size: 0.9em;
|
2680 |
-
}
|
2681 |
-
|
2682 |
-
.sek-post-navigation #sek-nav-below .page-numbers, .sek-post-navigation #sek-nav-below a {
|
2683 |
-
font-family: inherit;
|
2684 |
-
line-height: 30px;
|
2685 |
-
height: 30px;
|
2686 |
-
display: inline-block;
|
2687 |
-
vertical-align: middle;
|
2688 |
-
transition: all 0.3s ease;
|
2689 |
-
position: relative;
|
2690 |
-
}
|
2691 |
-
|
2692 |
-
.sek-post-navigation #sek-nav-below .sek-meta-nav {
|
2693 |
-
display: -ms-flexbox;
|
2694 |
-
display: flex;
|
2695 |
-
transition: all .2s,.6s ease;
|
2696 |
-
opacity: .7;
|
2697 |
-
}
|
2698 |
-
|
2699 |
-
.sek-post-navigation #sek-nav-below a:hover .sek-meta-nav {
|
2700 |
-
opacity: 1;
|
2701 |
-
text-decoration: underline;
|
2702 |
-
}
|
2703 |
-
|
2704 |
-
.sek-post-navigation #sek-nav-below .sek-meta-nav-title {
|
2705 |
-
display: inline-block;
|
2706 |
-
overflow: hidden;
|
2707 |
-
text-overflow: ellipsis;
|
2708 |
-
white-space: nowrap;
|
2709 |
-
vertical-align: middle;
|
2710 |
-
font-size: 0.9em;
|
2711 |
-
}
|
2712 |
-
|
2713 |
/*************************************
|
2714 |
* SIMPLE FORM MODULE
|
2715 |
-
*************************************/
|
2716 |
-
.sek-simple-form-wrapper input[type=text], .sek-simple-form-wrapper textarea {
|
2717 |
-
font-size: 16px;
|
2718 |
-
width: 100% !important;
|
2719 |
-
padding: 0.4em 0.5em;
|
2720 |
-
border-radius: 3px;
|
2721 |
-
box-sizing: border-box;
|
2722 |
-
outline: none;
|
2723 |
-
font-weight: normal;
|
2724 |
-
max-width: 100%;
|
2725 |
-
border: none;
|
2726 |
-
color: #555555;
|
2727 |
-
background-color: #ffffff;
|
2728 |
-
}
|
2729 |
-
|
2730 |
-
.sek-simple-form-wrapper textarea {
|
2731 |
-
height: auto;
|
2732 |
-
max-height: 150px;
|
2733 |
-
}
|
2734 |
-
|
2735 |
-
.sek-simple-form-wrapper .sek-form-field {
|
2736 |
-
margin-bottom: 15px;
|
2737 |
-
clear: both;
|
2738 |
-
}
|
2739 |
-
|
2740 |
-
.sek-simple-form-wrapper label {
|
2741 |
-
color: #444444;
|
2742 |
-
font-weight: bold;
|
2743 |
-
text-align: left;
|
2744 |
-
margin: 0;
|
2745 |
-
padding: 0 0 3px 0;
|
2746 |
-
width: auto;
|
2747 |
-
display: block;
|
2748 |
-
}
|
2749 |
-
|
2750 |
-
.sek-simple-form-wrapper.use-outset-shadow .sek-form-field input[type="text"], .sek-simple-form-wrapper.use-outset-shadow .sek-form-field textarea {
|
2751 |
-
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
2752 |
-
}
|
2753 |
-
|
2754 |
-
.sek-simple-form-wrapper.use-inset-shadow .sek-form-field input[type="text"], .sek-simple-form-wrapper.use-inset-shadow .sek-form-field textarea {
|
2755 |
-
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
2756 |
-
}
|
2757 |
-
|
2758 |
-
.sek-simple-form-wrapper #sek-form-respond {
|
2759 |
-
padding: 20px 0;
|
2760 |
-
}
|
2761 |
-
|
2762 |
-
.sek-simple-form-wrapper input[type="checkbox"] + label {
|
2763 |
-
display: inline;
|
2764 |
-
font-weight: bold;
|
2765 |
-
margin-left: 0.5rem;
|
2766 |
-
}
|
2767 |
-
|
2768 |
-
.sek-form-message {
|
2769 |
-
padding: 10px;
|
2770 |
-
margin: 10px 0;
|
2771 |
-
text-align: center;
|
2772 |
-
line-height: 1.5em;
|
2773 |
-
font-size: 16px;
|
2774 |
-
border-radius: 4px;
|
2775 |
-
}
|
2776 |
-
|
2777 |
-
.sek-form-message.sek-mail-failure {
|
2778 |
-
color: #ff0000;
|
2779 |
-
border: 1px solid #ff0000;
|
2780 |
-
background: none;
|
2781 |
-
background: rgba(255, 0, 0, 0.05);
|
2782 |
-
}
|
2783 |
-
|
2784 |
-
.sek-form-message.sek-mail-success {
|
2785 |
-
color: #008000;
|
2786 |
-
border: 1px solid #008000;
|
2787 |
-
background: none;
|
2788 |
-
background: rgba(0, 128, 0, 0.05);
|
2789 |
-
}
|
2790 |
-
|
2791 |
-
.sek-form-message.sek-mail-aborted {
|
2792 |
-
color: #ffa500;
|
2793 |
-
border: 1px solid #ffa500;
|
2794 |
-
background: none;
|
2795 |
-
background: rgba(255, 165, 0, 0.05);
|
2796 |
-
}
|
2797 |
-
|
2798 |
-
.grecaptcha-badge {
|
2799 |
-
z-index: 1;
|
2800 |
-
}
|
2801 |
-
|
2802 |
-
.sek-hide-rc-badge .grecaptcha-badge {
|
2803 |
-
display: none;
|
2804 |
-
}
|
2805 |
-
|
2806 |
-
.sek-show-rc-badge .grecaptcha-badge {
|
2807 |
-
display: block;
|
2808 |
-
visibility: visible !important;
|
2809 |
-
}
|
2810 |
-
|
2811 |
/*************************************
|
2812 |
* TINY MCE EDITOR MODULE
|
2813 |
-
*************************************/
|
2814 |
-
[data-sek-module-type="czr_tiny_mce_editor_module"] a {
|
2815 |
-
text-decoration: underline;
|
2816 |
-
}
|
2817 |
-
|
2818 |
/*************************************
|
2819 |
* SOCIAL ICONS MODULE
|
2820 |
-
*************************************/
|
2821 |
-
[data-sek-module-type="czr_social_icons_module"] .sek-module-inner .sek-social-icons-wrapper {
|
2822 |
-
margin: 10px 0;
|
2823 |
-
}
|
2824 |
-
|
2825 |
-
.nb-loc .sek-module-inner .sek-social-icons-wrapper {
|
2826 |
-
text-align: center;
|
2827 |
-
}
|
2828 |
-
|
2829 |
-
.nb-loc .sek-module-inner .sek-social-icons-wrapper > *:not(:last-child) {
|
2830 |
-
padding-right: 8px;
|
2831 |
-
}
|
2832 |
-
|
2833 |
-
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li {
|
2834 |
-
display: inline-block;
|
2835 |
-
}
|
2836 |
-
|
2837 |
-
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li a {
|
2838 |
-
color: #707070;
|
2839 |
-
}
|
2840 |
-
|
2841 |
-
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
2842 |
-
font-size: 28px;
|
2843 |
-
line-height: 1.5em;
|
2844 |
-
}
|
2845 |
-
|
2846 |
-
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
2847 |
-
transition: all 0.2s ease-in-out;
|
2848 |
-
}
|
2849 |
-
|
2850 |
/*************************************
|
2851 |
* IMAGE SLIDER MODULE
|
2852 |
-
*************************************/
|
2853 |
-
.sek-column-inner [data-sek-module-type="czr_img_slider_module"] {
|
2854 |
-
width: calc(100% + 20px);
|
2855 |
-
max-width: calc(100% + 20px);
|
2856 |
-
}
|
2857 |
-
|
2858 |
-
[data-sek-module-type="czr_img_slider_module"] {
|
2859 |
-
/* SWIPER BULLETS */
|
2860 |
-
/* SWIPER ARROWS */
|
2861 |
-
}
|
2862 |
-
|
2863 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-carousel-img [src*="data:image/gif;"] {
|
2864 |
-
display: none;
|
2865 |
-
}
|
2866 |
-
|
2867 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-loading .sek-carousel-img img {
|
2868 |
-
display: none;
|
2869 |
-
}
|
2870 |
-
|
2871 |
-
.customizer-preview .swiper-wrapper .swiper-lazy-preloader {
|
2872 |
-
display: none;
|
2873 |
-
}
|
2874 |
-
|
2875 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper {
|
2876 |
-
width: 100%;
|
2877 |
-
height: 100%;
|
2878 |
-
overflow: hidden;
|
2879 |
-
}
|
2880 |
-
|
2881 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper .swiper-wrapper {
|
2882 |
-
display: -ms-flexbox;
|
2883 |
-
display: flex;
|
2884 |
-
-ms-flex-align: center;
|
2885 |
-
align-items: center;
|
2886 |
-
height: 400px;
|
2887 |
-
}
|
2888 |
-
|
2889 |
-
@media (max-width: 575.98px) {
|
2890 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper .swiper-wrapper {
|
2891 |
-
height: 200px;
|
2892 |
-
}
|
2893 |
-
}
|
2894 |
-
|
2895 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="nimble-wizard"] .sek-carousel-img {
|
2896 |
-
height: 100%;
|
2897 |
-
overflow: hidden;
|
2898 |
-
}
|
2899 |
-
|
2900 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="nimble-wizard"] .sek-carousel-img img {
|
2901 |
-
max-width: none;
|
2902 |
-
opacity: 0;
|
2903 |
-
transition: opacity 0.15s ease-in-out;
|
2904 |
-
}
|
2905 |
-
|
2906 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="height-100"] .sek-carousel-img {
|
2907 |
-
height: 100%;
|
2908 |
-
width: auto;
|
2909 |
-
overflow: hidden;
|
2910 |
-
}
|
2911 |
-
|
2912 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="height-100"] .sek-carousel-img img {
|
2913 |
-
width: auto;
|
2914 |
-
height: 100%;
|
2915 |
-
max-width: none;
|
2916 |
-
}
|
2917 |
-
|
2918 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="cover"] .sek-carousel-img {
|
2919 |
-
height: 100%;
|
2920 |
-
width: 100%;
|
2921 |
-
overflow: hidden;
|
2922 |
-
display: -ms-flexbox;
|
2923 |
-
display: flex;
|
2924 |
-
-ms-flex-pack: center;
|
2925 |
-
justify-content: center;
|
2926 |
-
-ms-flex-align: center;
|
2927 |
-
align-items: center;
|
2928 |
-
}
|
2929 |
-
|
2930 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="cover"] .sek-carousel-img img {
|
2931 |
-
width: 100%;
|
2932 |
-
height: 100%;
|
2933 |
-
max-width: none;
|
2934 |
-
-o-object-fit: cover;
|
2935 |
-
object-fit: cover;
|
2936 |
-
}
|
2937 |
-
|
2938 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide {
|
2939 |
-
text-align: center;
|
2940 |
-
font-size: 18px;
|
2941 |
-
/* Center slide image vertically */
|
2942 |
-
display: -ms-flexbox;
|
2943 |
-
display: flex;
|
2944 |
-
-ms-flex-pack: center;
|
2945 |
-
justify-content: center;
|
2946 |
-
-ms-flex-align: center;
|
2947 |
-
align-items: center;
|
2948 |
-
}
|
2949 |
-
|
2950 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide[data-sek-slide-link] {
|
2951 |
-
cursor: pointer;
|
2952 |
-
}
|
2953 |
-
|
2954 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img {
|
2955 |
-
width: 100%;
|
2956 |
-
}
|
2957 |
-
|
2958 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img {
|
2959 |
-
width: 100%;
|
2960 |
-
}
|
2961 |
-
|
2962 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img.sek-h-centrd {
|
2963 |
-
width: auto !important;
|
2964 |
-
max-width: none !important;
|
2965 |
-
position: relative;
|
2966 |
-
opacity: 1;
|
2967 |
-
}
|
2968 |
-
|
2969 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img.sek-v-centrd {
|
2970 |
-
height: auto !important;
|
2971 |
-
max-height: none !important;
|
2972 |
-
vertical-align: top;
|
2973 |
-
position: relative;
|
2974 |
-
max-width: none !important;
|
2975 |
-
opacity: 1;
|
2976 |
-
}
|
2977 |
-
|
2978 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide[data-sek-has-overlay="true"] .sek-carousel-img::after {
|
2979 |
-
content: '';
|
2980 |
-
left: 0;
|
2981 |
-
right: 0;
|
2982 |
-
bottom: 0;
|
2983 |
-
top: 0;
|
2984 |
-
position: absolute;
|
2985 |
-
background-color: #000000;
|
2986 |
-
opacity: 0.3;
|
2987 |
-
}
|
2988 |
-
|
2989 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-wrapper {
|
2990 |
-
height: 100%;
|
2991 |
-
width: 100%;
|
2992 |
-
-webkit-transform: translate(-50%, -50%);
|
2993 |
-
transform: translate(-50%, -50%);
|
2994 |
-
-webkit-transform: translate3d(-50%, -50%, 0);
|
2995 |
-
transform: translate3d(-50%, -50%, 0);
|
2996 |
-
top: 50%;
|
2997 |
-
left: 50%;
|
2998 |
-
position: absolute;
|
2999 |
/* Center slide text vertically
|
3000 |
-
=> consistent with defaults in module registration */
|
3001 |
-
display: -ms-flexbox;
|
3002 |
-
display: flex;
|
3003 |
-
-ms-flex-pack: center;
|
3004 |
-
justify-content: center;
|
3005 |
-
-ms-flex-align: center;
|
3006 |
-
align-items: center;
|
3007 |
-
}
|
3008 |
-
|
3009 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-content {
|
3010 |
-
height: auto;
|
3011 |
-
max-height: 100%;
|
3012 |
-
width: 100%;
|
3013 |
-
padding: 5%;
|
3014 |
-
text-align: center;
|
3015 |
-
z-index: 3;
|
3016 |
-
overflow: hidden;
|
3017 |
-
color: #e2e2e2;
|
3018 |
-
font-size: 16px;
|
3019 |
-
line-height: 1.5em;
|
3020 |
-
}
|
3021 |
-
|
3022 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-content * {
|
3023 |
-
font-size: 16px;
|
3024 |
-
line-height: 1.5em;
|
3025 |
-
}
|
3026 |
-
|
3027 |
-
[data-sek-module-type="czr_img_slider_module"] .swiper-pagination-bullet-active {
|
3028 |
-
background-color: #ffffff;
|
3029 |
-
}
|
3030 |
-
|
3031 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav {
|
3032 |
-
cursor: pointer;
|
3033 |
-
}
|
3034 |
-
|
3035 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-chevron {
|
3036 |
-
display: inline-block;
|
3037 |
-
border-right: 2px solid #ffffff;
|
3038 |
-
border-bottom: 2px solid #ffffff;
|
3039 |
-
width: 11px;
|
3040 |
-
height: 11px;
|
3041 |
-
}
|
3042 |
-
|
3043 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev {
|
3044 |
-
left: 0;
|
3045 |
-
border-top-left-radius: 0px;
|
3046 |
-
border-top-right-radius: 2px;
|
3047 |
-
border-bottom-right-radius: 2px;
|
3048 |
-
border-bottom-left-radius: 0px;
|
3049 |
-
}
|
3050 |
-
|
3051 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev .sek-chevron {
|
3052 |
-
-webkit-transform: rotate(-225deg);
|
3053 |
-
transform: rotate(-225deg);
|
3054 |
-
}
|
3055 |
-
|
3056 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next {
|
3057 |
-
right: 0;
|
3058 |
-
border-top-left-radius: 2px;
|
3059 |
-
border-top-right-radius: 0px;
|
3060 |
-
border-bottom-right-radius: 0px;
|
3061 |
-
border-bottom-left-radius: 2px;
|
3062 |
-
}
|
3063 |
-
|
3064 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next .sek-chevron {
|
3065 |
-
-webkit-transform: rotate(-45deg);
|
3066 |
-
transform: rotate(-45deg);
|
3067 |
-
}
|
3068 |
-
|
3069 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev, [data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next {
|
3070 |
-
position: absolute;
|
3071 |
-
z-index: 2;
|
3072 |
-
top: calc(50% - 30px);
|
3073 |
-
text-align: center;
|
3074 |
-
margin-top: 0px;
|
3075 |
-
-webkit-backface-visibility: hidden;
|
3076 |
-
backface-visibility: hidden;
|
3077 |
-
display: block;
|
3078 |
-
height: 60px;
|
3079 |
-
width: 50px;
|
3080 |
-
opacity: 0.6;
|
3081 |
-
background-color: rgba(32, 32, 32, 0.4);
|
3082 |
-
transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
|
3083 |
-
line-height: 64px;
|
3084 |
-
cursor: pointer;
|
3085 |
-
font-size: 18px;
|
3086 |
-
}
|
3087 |
-
|
3088 |
-
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev:hover, [data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next:hover {
|
3089 |
-
background-color: rgba(32, 32, 32, 0.7);
|
3090 |
-
opacity: 1;
|
3091 |
-
width: 100px;
|
3092 |
-
}
|
3093 |
-
|
3094 |
-
@media (max-width: 575.98px) {
|
3095 |
-
[data-sek-module-type="czr_img_slider_module"] [data-sek-hide-nav-on-mobile="true"] .swiper-pagination {
|
3096 |
-
display: none;
|
3097 |
-
}
|
3098 |
-
[data-sek-module-type="czr_img_slider_module"] [data-sek-hide-nav-on-mobile="true"] .sek-swiper-nav {
|
3099 |
-
display: none;
|
3100 |
-
}
|
3101 |
-
}
|
3102 |
-
|
3103 |
/*************************************
|
3104 |
* ACCORDION MODULE
|
3105 |
-
*************************************/
|
3106 |
-
.sek-accord-wrapper {
|
3107 |
-
text-align: left;
|
3108 |
-
}
|
3109 |
-
|
3110 |
-
.sek-accord-wrapper .sek-accord-item {
|
3111 |
-
border: 1px solid #e3e3e3;
|
3112 |
-
overflow: hidden;
|
3113 |
-
}
|
3114 |
-
|
3115 |
-
.sek-accord-wrapper .sek-accord-item:not(:last-child) {
|
3116 |
-
margin-bottom: 0px;
|
3117 |
-
}
|
3118 |
-
|
3119 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title {
|
3120 |
-
cursor: pointer;
|
3121 |
-
color: #565656;
|
3122 |
-
background: #ffffff;
|
3123 |
-
display: -ms-flexbox;
|
3124 |
-
display: flex;
|
3125 |
-
-ms-flex-align: center;
|
3126 |
-
align-items: center;
|
3127 |
-
-ms-flex-pack: justify;
|
3128 |
-
justify-content: space-between;
|
3129 |
-
padding: 15px 20px;
|
3130 |
-
border-top: none;
|
3131 |
-
border-right: none;
|
3132 |
-
border-left: none;
|
3133 |
-
border-bottom: 1px solid #e3e3e3;
|
3134 |
-
font-size: 16px;
|
3135 |
-
line-height: 1.5em;
|
3136 |
-
font-weight: 600;
|
3137 |
-
-ms-flex-positive: 1;
|
3138 |
-
flex-grow: 1;
|
3139 |
-
}
|
3140 |
-
|
3141 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover * {
|
3142 |
-
color: #1e261f;
|
3143 |
-
}
|
3144 |
-
|
3145 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover .expander span {
|
3146 |
-
background: #1e261f;
|
3147 |
-
}
|
3148 |
-
|
3149 |
-
[data-sek-expanded="true"] .sek-accord-title * {
|
3150 |
-
color: #1e261f;
|
3151 |
-
}
|
3152 |
-
|
3153 |
-
[data-sek-expanded="true"] .sek-accord-title .expander span {
|
3154 |
-
background: #1e261f;
|
3155 |
-
}
|
3156 |
-
|
3157 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title {
|
3158 |
-
padding-right: 10px;
|
3159 |
-
max-width: calc(100% - 30px);
|
3160 |
-
}
|
3161 |
-
|
3162 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title, .sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span {
|
3163 |
-
transition: all 0.15s ease-in-out;
|
3164 |
-
}
|
3165 |
-
|
3166 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander {
|
3167 |
-
color: #1e261f;
|
3168 |
-
width: 30px;
|
3169 |
-
height: 30px;
|
3170 |
-
padding: 0;
|
3171 |
-
margin: 0;
|
3172 |
-
outline: none;
|
3173 |
-
border: 0;
|
3174 |
-
background: none;
|
3175 |
-
box-shadow: none;
|
3176 |
-
font-size: 1.5em;
|
3177 |
-
position: relative;
|
3178 |
-
cursor: pointer;
|
3179 |
-
}
|
3180 |
-
|
3181 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span {
|
3182 |
-
position: absolute;
|
3183 |
-
transition: .3s;
|
3184 |
-
background: #565656;
|
3185 |
-
border-radius: 2px;
|
3186 |
-
}
|
3187 |
-
|
3188 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:first-of-type {
|
3189 |
-
top: 25%;
|
3190 |
-
bottom: 25%;
|
3191 |
-
width: 10%;
|
3192 |
-
left: 45%;
|
3193 |
-
}
|
3194 |
-
|
3195 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:last-of-type {
|
3196 |
-
left: 25%;
|
3197 |
-
right: 25%;
|
3198 |
-
height: 10%;
|
3199 |
-
top: 45%;
|
3200 |
-
}
|
3201 |
-
|
3202 |
-
[data-sek-expanded="true"] .expander span:first-of-type, [data-sek-expanded="true"] .expander span:last-of-type {
|
3203 |
-
-webkit-transform: rotate(90deg);
|
3204 |
-
transform: rotate(90deg);
|
3205 |
-
}
|
3206 |
-
|
3207 |
-
[data-sek-expanded="true"] .expander span:last-of-type {
|
3208 |
-
left: 50%;
|
3209 |
-
right: 50%;
|
3210 |
-
}
|
3211 |
-
|
3212 |
-
[data-sek-has-global-border="true"][data-sek-has-title-border="true"] [data-sek-expanded="false"] .sek-accord-title {
|
3213 |
-
border-bottom: none;
|
3214 |
-
}
|
3215 |
-
|
3216 |
-
[data-sek-has-global-border="true"][data-sek-has-title-border="true"] .sek-accord-item:not(:last-child) {
|
3217 |
-
border-bottom: none;
|
3218 |
-
}
|
3219 |
-
|
3220 |
-
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] .sek-accord-title .expander span:first-of-type, .sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] .sek-accord-title .expander span:last-of-type {
|
3221 |
-
-webkit-transform: rotate(90deg);
|
3222 |
-
transform: rotate(90deg);
|
3223 |
-
}
|
3224 |
-
|
3225 |
-
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] .sek-accord-title .expander span:last-of-type {
|
3226 |
-
left: 50%;
|
3227 |
-
right: 50%;
|
3228 |
-
}
|
3229 |
-
|
3230 |
-
.sek-accord-wrapper .sek-accord-item .sek-accord-content {
|
3231 |
-
padding: 15px 20px;
|
3232 |
-
background: #f2f2f2;
|
3233 |
-
color: #1e261f;
|
3234 |
-
font-size: 16px;
|
3235 |
-
line-height: 1.5em;
|
3236 |
-
}
|
3237 |
-
|
3238 |
-
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] > .sek-accord-content {
|
3239 |
-
display: block;
|
3240 |
-
}
|
3241 |
-
|
3242 |
-
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="false"] > .sek-accord-content {
|
3243 |
-
display: none;
|
3244 |
-
}
|
3245 |
-
|
3246 |
/*************************************
|
3247 |
* SHORTCODE MODULE
|
3248 |
-
*************************************/
|
3249 |
-
[data-sek-module-type="czr_shortcode_module"] [data-sek-use-flexbox="true"] {
|
3250 |
-
display: -ms-flexbox;
|
3251 |
-
display: flex;
|
3252 |
-
-ms-flex-pack: center;
|
3253 |
-
justify-content: center;
|
3254 |
-
}
|
3255 |
-
|
3256 |
-
.sek-gal-wrapper:not(.nb-auto-column-width) {
|
3257 |
-
display: -ms-flexbox;
|
3258 |
-
display: flex;
|
3259 |
-
-ms-flex-align: center;
|
3260 |
-
align-items: center;
|
3261 |
-
-ms-flex-pack: center;
|
3262 |
-
justify-content: center;
|
3263 |
-
}
|
3264 |
-
|
3265 |
-
.sek-gal-wrapper .sek-gal-items {
|
3266 |
-
display: -ms-grid;
|
3267 |
-
display: grid;
|
3268 |
-
-ms-grid-columns: 1fr 20px 1fr;
|
3269 |
-
grid-template-columns: 1fr 1fr;
|
3270 |
-
-ms-grid-rows: 1fr;
|
3271 |
-
grid-template-rows: 1fr;
|
3272 |
-
grid-row-gap: 20px;
|
3273 |
-
grid-column-gap: 20px;
|
3274 |
-
}
|
3275 |
-
|
3276 |
-
@media all and (-ms-high-contrast: none) {
|
3277 |
-
.sek-gal-wrapper .sek-gal-items {
|
3278 |
-
display: block !important;
|
3279 |
-
}
|
3280 |
-
}
|
3281 |
-
|
3282 |
-
.sek-gal-wrapper .sek-gal-items > *:nth-child(1) {
|
3283 |
-
-ms-grid-row: 1;
|
3284 |
-
-ms-grid-column: 1;
|
3285 |
-
}
|
3286 |
-
|
3287 |
-
.sek-gal-wrapper .sek-gal-items > *:nth-child(2) {
|
3288 |
-
-ms-grid-row: 1;
|
3289 |
-
-ms-grid-column: 3;
|
3290 |
-
}
|
3291 |
-
|
3292 |
-
.sek-gal-wrapper .sek-img-gal-item {
|
3293 |
-
transition: all 0.15s ease-in-out;
|
3294 |
-
overflow: hidden;
|
3295 |
-
}
|
3296 |
-
|
3297 |
-
.sek-gal-wrapper .sek-img-gal-item img {
|
3298 |
-
height: 100%;
|
3299 |
-
width: 100%;
|
3300 |
-
-o-object-fit: cover;
|
3301 |
-
object-fit: cover;
|
3302 |
-
}
|
3303 |
-
|
3304 |
-
.sek-gal-wrapper .sek-img-gal-item:hover {
|
3305 |
-
opacity: .9;
|
3306 |
-
}
|
3307 |
-
|
3308 |
-
.sek-module-inner .nb-gal-item-box-shadow .sek-gal-items figure {
|
3309 |
-
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
3310 |
-
}
|
3311 |
-
|
3312 |
-
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items.nb-masonry-gal-images-loaded {
|
3313 |
-
grid-auto-rows: 5px;
|
3314 |
-
}
|
3315 |
-
|
3316 |
-
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items .sek-img-gal-item img {
|
3317 |
-
height: auto;
|
3318 |
-
}
|
3319 |
-
|
3320 |
-
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items.sek-gal-img-natural-height img {
|
3321 |
-
height: auto !important;
|
3322 |
-
}
|
3323 |
-
|
3324 |
-
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items.sek-gal-img-height-100-percent img {
|
3325 |
-
height: 100%;
|
3326 |
-
}
|
3327 |
-
|
3328 |
/*************************************
|
3329 |
* ACCORDION MODULE
|
3330 |
-
*************************************/
|
3331 |
-
.sek-module-inner {
|
3332 |
-
line-height: 1.5em;
|
3333 |
-
}
|
3334 |
-
|
3335 |
-
.sek-module-inner h1, .sek-module-inner h2, .sek-module-inner h3, .sek-module-inner h4, .sek-module-inner h5, .sek-module-inner h6, .sek-module-inner p {
|
3336 |
-
line-height: 1.5em;
|
3337 |
-
font-weight: 400;
|
3338 |
-
margin: 0.6em 0;
|
3339 |
-
}
|
3340 |
-
|
3341 |
-
.sek-module-inner h1 {
|
3342 |
-
font-size: 2.48em;
|
3343 |
-
}
|
3344 |
-
|
3345 |
-
.sek-module-inner h2 {
|
3346 |
-
font-size: 2.07em;
|
3347 |
-
}
|
3348 |
-
|
3349 |
-
.sek-module-inner h3 {
|
3350 |
-
font-size: 1.73em;
|
3351 |
-
}
|
3352 |
-
|
3353 |
-
.sek-module-inner h4 {
|
3354 |
-
font-size: 1.44em;
|
3355 |
-
}
|
3356 |
-
|
3357 |
-
.sek-module-inner h5 {
|
3358 |
-
font-size: 1.2em;
|
3359 |
-
}
|
3360 |
-
|
3361 |
-
.sek-module-inner h6 {
|
3362 |
-
font-size: 1em;
|
3363 |
-
}
|
3364 |
-
|
3365 |
-
.sek-module-inner p {
|
3366 |
-
margin: 0 0 1em;
|
3367 |
-
padding: 0;
|
3368 |
-
}
|
3369 |
-
|
3370 |
-
.sek-module-inner a {
|
3371 |
-
text-decoration: none;
|
3372 |
-
box-shadow: none;
|
3373 |
-
transition: color 0.2s ease-in-out;
|
3374 |
-
}
|
3375 |
-
|
3376 |
-
.sek-module-inner img {
|
3377 |
-
height: auto;
|
3378 |
-
max-width: 100%;
|
3379 |
-
border: none;
|
3380 |
-
border-radius: 0;
|
3381 |
-
box-shadow: none;
|
3382 |
-
}
|
3383 |
-
|
3384 |
-
[data-sek-module-type="czr_tiny_mce_editor_module"] .sek-module-inner a:not(.wp-block-button__link),
|
3385 |
-
[data-sek-module-type="czr_shortcode_module"] .sek-module-inner a:not(.wp-block-button__link),
|
3386 |
-
[data-sek-module-type="czr_accordion_module"] .sek-module-inner a:not(.wp-block-button__link),
|
3387 |
-
[data-sek-module-type="czr_simple_html_module"] .sek-module-inner a:not(.wp-block-button__link) {
|
3388 |
-
text-decoration: underline;
|
3389 |
-
}
|
3390 |
-
|
3391 |
-
body .sektion-wrapper .sek-row [data-sek-level="module"] .sek-module-inner a:not(.sek-btn):not(.button):focus {
|
3392 |
-
background: none;
|
3393 |
-
}
|
3394 |
-
|
3395 |
-
body .sek-module-inner h1:before, body .sek-module-inner h2:before, body .sek-module-inner h3:before, body .sek-module-inner h4:before, body .sek-module-inner h5:before, body .sek-module-inner h6:before {
|
3396 |
-
content: none;
|
3397 |
-
background: none;
|
3398 |
}
|
3399 |
/*# sourceMappingURL=sek-base.css.map */
|
1 |
+
/* -------------------------------------------------------------------------- */
|
2 |
/* <SCOPED RESET>
|
3 |
+
/* -------------------------------------------------------------------------- */
|
4 |
+
.sektion-wrapper *,
|
5 |
+
.sektion-wrapper *::before,
|
6 |
+
.sektion-wrapper *::after {
|
7 |
+
box-sizing: border-box;
|
8 |
+
}
|
9 |
+
|
10 |
+
.sektion-wrapper span, .sektion-wrapper applet, .sektion-wrapper object, .sektion-wrapper iframe,
|
11 |
+
.sektion-wrapper h1, .sektion-wrapper h2, .sektion-wrapper h3, .sektion-wrapper h4, .sektion-wrapper h5, .sektion-wrapper h6, .sektion-wrapper p, .sektion-wrapper blockquote, .sektion-wrapper pre,
|
12 |
+
.sektion-wrapper a, .sektion-wrapper abbr, .sektion-wrapper acronym, .sektion-wrapper address, .sektion-wrapper big, .sektion-wrapper cite, .sektion-wrapper code,
|
13 |
+
.sektion-wrapper del, .sektion-wrapper dfn, .sektion-wrapper em, .sektion-wrapper img, .sektion-wrapper ins, .sektion-wrapper kbd, .sektion-wrapper q, .sektion-wrapper s, .sektion-wrapper samp,
|
14 |
+
.sektion-wrapper small, .sektion-wrapper strike, .sektion-wrapper strong, .sektion-wrapper sub, .sektion-wrapper sup, .sektion-wrapper tt, .sektion-wrapper var,
|
15 |
+
.sektion-wrapper b, .sektion-wrapper u, .sektion-wrapper i, .sektion-wrapper center,
|
16 |
+
.sektion-wrapper dl, .sektion-wrapper dt, .sektion-wrapper dd, .sektion-wrapper ol, .sektion-wrapper ul, .sektion-wrapper li,
|
17 |
+
.sektion-wrapper fieldset, .sektion-wrapper form, .sektion-wrapper label, .sektion-wrapper legend,
|
18 |
+
.sektion-wrapper table, .sektion-wrapper caption, .sektion-wrapper tbody, .sektion-wrapper tfoot, .sektion-wrapper thead, .sektion-wrapper tr, .sektion-wrapper th, .sektion-wrapper td,
|
19 |
+
.sektion-wrapper article, .sektion-wrapper aside, .sektion-wrapper canvas, .sektion-wrapper details, .sektion-wrapper embed,
|
20 |
+
.sektion-wrapper figure:not([class*="wp-block-"]), .sektion-wrapper figcaption, .sektion-wrapper footer, .sektion-wrapper header, .sektion-wrapper hgroup,
|
21 |
+
.sektion-wrapper menu, .sektion-wrapper nav, .sektion-wrapper output, .sektion-wrapper ruby, .sektion-wrapper section, .sektion-wrapper summary,
|
22 |
+
.sektion-wrapper time, .sektion-wrapper mark, .sektion-wrapper audio, .sektion-wrapper video {
|
23 |
+
border: none;
|
24 |
+
font-size: inherit;
|
25 |
+
line-height: inherit;
|
26 |
+
margin: 0;
|
27 |
+
padding: 0;
|
28 |
+
}
|
29 |
+
|
30 |
+
.sektion-wrapper blockquote::before,
|
31 |
+
.sektion-wrapper blockquote::after, .sektion-wrapper q:before, .sektion-wrapper q:after {
|
32 |
+
content: "";
|
33 |
+
}
|
34 |
+
|
35 |
+
.sektion-wrapper ol, .sektion-wrapper ul {
|
36 |
+
list-style: none;
|
37 |
+
}
|
38 |
+
|
39 |
+
.sektion-wrapper img {
|
40 |
+
max-width: 100%;
|
41 |
+
vertical-align: middle;
|
42 |
+
border-style: none;
|
43 |
+
display: inline;
|
44 |
+
}
|
45 |
+
|
46 |
+
.sektion-wrapper svg:not(:root) {
|
47 |
+
overflow: hidden;
|
48 |
+
}
|
49 |
+
|
50 |
+
.sektion-wrapper embed, .sektion-wrapper iframe, .sektion-wrapper object {
|
51 |
+
max-width: 100%;
|
52 |
+
}
|
53 |
+
|
54 |
+
/* -------------------------------------------------------------------------- */
|
55 |
/* </SCOPED RESET>
|
56 |
+
/* -------------------------------------------------------------------------- */
|
57 |
+
/* make sure that the location level occupies 100% of the width */
|
58 |
+
[data-sek-level="location"] {
|
59 |
+
clear: both;
|
60 |
+
font-size: 16px;
|
61 |
+
}
|
62 |
+
|
63 |
+
/* To make vertical alignment possible in sections */
|
64 |
+
.sek-section, .sek-column, .sek-module {
|
65 |
+
display: -ms-flexbox;
|
66 |
+
display: flex;
|
67 |
+
-ms-flex-align: center;
|
68 |
+
align-items: center;
|
69 |
+
}
|
70 |
+
|
71 |
+
.sek-column-inner, .sek-module-inner {
|
72 |
+
-ms-flex: 0 0 100%;
|
73 |
+
flex: 0 0 100%;
|
74 |
+
max-width: 100%;
|
75 |
+
}
|
76 |
+
|
77 |
/* To allow horizontal centering of modules
|
78 |
@see https://github.com/presscustomizr/nimble-builder/issues/119
|
79 |
+
*/
|
80 |
+
/* - sections in locations */
|
81 |
+
/* - columns in sections */
|
82 |
+
/* - modules in columns */
|
83 |
+
.sek-column-inner {
|
84 |
+
display: -ms-flexbox;
|
85 |
+
display: flex;
|
86 |
+
-ms-flex-direction: column;
|
87 |
+
flex-direction: column;
|
88 |
+
}
|
89 |
+
|
90 |
+
.sek-module {
|
91 |
+
-ms-flex-item-align: center;
|
92 |
+
-ms-grid-row-align: center;
|
93 |
+
align-self: center;
|
94 |
+
width: 100%;
|
95 |
+
max-width: 100%;
|
96 |
+
}
|
97 |
+
|
98 |
/* a nested sektion should reset its parent column padding
|
99 |
@see https://github.com/presscustomizr/nimble-builder/issues/25
|
100 |
+
*/
|
101 |
+
[data-sek-is-nested="true"] .sek-container-fluid {
|
102 |
+
padding-right: 0;
|
103 |
+
padding-left: 0;
|
104 |
+
}
|
105 |
+
|
106 |
+
/* MODULE PLACEHOLDER */
|
107 |
/*@font-face {
|
108 |
font-family: 'Material Icons';
|
109 |
font-style: normal;
|
110 |
font-weight: 400;
|
111 |
src: url('../fonts/material-icons/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2') format('woff2');
|
112 |
+
}*/
|
113 |
+
/* @see https://github.com/google/material-design-icons/blob/master/iconfont/material-icons.css */
|
114 |
+
.sek-module-placeholder {
|
115 |
+
text-align: center;
|
116 |
+
}
|
117 |
+
|
118 |
+
.sek-module-placeholder .material-icons {
|
119 |
+
font-size: inherit;
|
120 |
+
color: #cfcfcf;
|
121 |
+
}
|
122 |
+
|
123 |
+
/* LEVEL VISIBILITY BY DEVICE */
|
124 |
+
/* NIMBLE TEMPLATE GENERAL STYLING */
|
125 |
+
/* <inspired by Twenty Seventeed WP theme> */
|
126 |
+
.sek-screen-reader-text {
|
127 |
+
border: 0;
|
128 |
+
clip: rect(0, 0, 0, 0);
|
129 |
+
height: 1px;
|
130 |
+
overflow: hidden;
|
131 |
+
padding: 0;
|
132 |
+
position: absolute !important;
|
133 |
+
width: 1px;
|
134 |
+
word-wrap: normal !important;
|
135 |
+
}
|
136 |
+
|
137 |
+
#nimble-page {
|
138 |
+
position: relative;
|
139 |
+
word-wrap: break-word;
|
140 |
+
}
|
141 |
+
|
142 |
+
/* </inspired by Twenty Seventeen WP theme> */
|
143 |
+
/* Nimble btn in admin top bar */
|
144 |
+
#wpadminbar .sek-nimble-icon {
|
145 |
+
display: inline-block;
|
146 |
+
}
|
147 |
+
|
148 |
+
#wpadminbar .sek-nimble-icon img {
|
149 |
+
width: 28px;
|
150 |
+
position: absolute;
|
151 |
+
top: 2px;
|
152 |
+
-webkit-filter: grayscale(100%);
|
153 |
+
filter: grayscale(100%);
|
154 |
+
-webkit-filter: gray;
|
155 |
+
filter: gray;
|
156 |
+
transition: all 0.3s ease-in-out;
|
157 |
+
box-shadow: none;
|
158 |
+
}
|
159 |
+
|
160 |
+
#wpadminbar .sek-nimble-icon:hover img {
|
161 |
+
-webkit-filter: none;
|
162 |
+
filter: none;
|
163 |
+
-webkit-filter: none;
|
164 |
+
filter: none;
|
165 |
+
}
|
166 |
+
|
167 |
+
#wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title {
|
168 |
+
padding-left: 30px;
|
169 |
+
}
|
170 |
+
|
171 |
+
[data-sek-has-bg="true"] {
|
172 |
+
background-size: cover;
|
173 |
+
background-repeat: no-repeat;
|
174 |
+
background-position: 50% 50%;
|
175 |
+
}
|
176 |
+
|
177 |
+
[data-sek-level="location"] [data-sek-bg-parallax="true"] {
|
178 |
+
background-attachment: fixed;
|
179 |
+
background-size: cover;
|
180 |
+
}
|
181 |
+
|
182 |
+
[data-sek-level="location"] .sek-has-bg {
|
183 |
+
position: relative;
|
184 |
+
}
|
185 |
+
|
186 |
+
@supports (-webkit-overflow-scrolling: touch) {
|
187 |
+
body [data-sek-level="location"] [data-sek-bg-parallax="true"], body [data-sek-level="location"] [data-sek-bg-fixed="true"] {
|
188 |
+
background-attachment: scroll;
|
189 |
+
}
|
190 |
+
}
|
191 |
+
|
192 |
+
[data-sek-level="location"] [data-sek-level] {
|
193 |
+
transition: 0s linear;
|
194 |
+
transition-property: background-position;
|
195 |
+
}
|
196 |
+
|
197 |
+
.sek-module .sek-module-inner .alx-tab.thumbs-enabled > li {
|
198 |
+
padding-left: 94px;
|
199 |
+
}
|
200 |
+
|
201 |
+
.sek-module .sek-module-inner .widget_hu_tabs ul,
|
202 |
+
.sek-module .sek-module-inner .widget_hu_tabs ol {
|
203 |
+
margin-left: 0;
|
204 |
+
margin-bottom: 0;
|
205 |
+
}
|
206 |
+
|
207 |
+
.sek-module .sek-module-inner .widget_hu_tabs .alx-tabs-nav {
|
208 |
+
margin-bottom: 10px;
|
209 |
+
}
|
210 |
+
|
211 |
+
[data-sek-level].sek-level-has-shadow {
|
212 |
+
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
|
213 |
+
}
|
214 |
+
|
215 |
+
.customizer-preview [data-sek-level].sek-level-has-shadow {
|
216 |
+
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
|
217 |
+
}
|
218 |
+
|
219 |
+
[data-sek-level][data-sek-video-bg-src] {
|
220 |
+
position: relative;
|
221 |
+
}
|
222 |
+
|
223 |
+
[data-sek-level] embed,
|
224 |
+
[data-sek-level] iframe,
|
225 |
+
[data-sek-level] object,
|
226 |
+
[data-sek-level] video {
|
227 |
+
max-width: 100%;
|
228 |
+
width: 100%;
|
229 |
+
margin: 0;
|
230 |
+
line-height: 1;
|
231 |
+
border: none;
|
232 |
+
}
|
233 |
+
|
234 |
+
[data-sek-level] .sek-custom-embed {
|
235 |
+
line-height: 0;
|
236 |
+
}
|
237 |
+
|
238 |
+
[data-sek-level] .sek-bg-video-wrapper,
|
239 |
+
[data-sek-level] .sek-background {
|
240 |
+
height: 100%;
|
241 |
+
width: 100%;
|
242 |
+
top: 0;
|
243 |
+
left: 0;
|
244 |
+
position: absolute !important;
|
245 |
+
overflow: hidden;
|
246 |
+
z-index: 0;
|
247 |
+
direction: ltr;
|
248 |
+
}
|
249 |
+
|
250 |
+
[data-sek-level] .sek-bg-video-wrapper {
|
251 |
+
transition: opacity 0.5s linear;
|
252 |
+
pointer-events: none;
|
253 |
+
opacity: 0;
|
254 |
+
}
|
255 |
+
|
256 |
+
[data-sek-level] .sek-bg-video-wrapper.sek-bg-loading {
|
257 |
+
opacity: 0;
|
258 |
+
visibility: hidden;
|
259 |
+
}
|
260 |
+
|
261 |
+
[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-vimeo-element {
|
262 |
+
max-width: none;
|
263 |
+
}
|
264 |
+
|
265 |
+
[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-video-local, [data-sek-level] .sek-background-vimeo-element {
|
266 |
+
position: absolute;
|
267 |
+
top: 50%;
|
268 |
+
left: 50%;
|
269 |
+
-webkit-transform: translateX(-50%) translateY(-50%);
|
270 |
+
transform: translateX(-50%) translateY(-50%);
|
271 |
+
}
|
272 |
+
|
273 |
+
[data-sek-level] .sek-background-video-local {
|
274 |
+
-o-object-fit: cover;
|
275 |
+
object-fit: cover;
|
276 |
+
}
|
277 |
+
|
278 |
+
.sek-module-inner .sek-debug-modules {
|
279 |
+
margin: 1em;
|
280 |
+
padding: 5px;
|
281 |
+
border: 1px solid rgba(221, 221, 221, 0.43);
|
282 |
+
box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);
|
283 |
+
-webkit-box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);
|
284 |
+
background-color: #fff;
|
285 |
+
font-size: 15px;
|
286 |
+
font-weight: normal;
|
287 |
+
color: #6d6d6d;
|
288 |
+
background: rgba(255, 255, 255, 0.6);
|
289 |
+
}
|
290 |
+
|
291 |
+
@media (max-width: 575px) {
|
292 |
+
.customizer-preview [data-sek-video-bg-on-mobile="false"] .sek-bg-video-wrapper {
|
293 |
+
display: none;
|
294 |
+
}
|
295 |
+
}
|
296 |
+
|
297 |
+
body:not(.customizer-preview) .sek-animate-candidate:not(.sek-animate-displayed-before-starting) {
|
298 |
+
opacity: 0;
|
299 |
+
}
|
300 |
+
|
301 |
+
.sek-overflow-hidden-while-animating {
|
302 |
+
overflow: hidden;
|
303 |
+
}
|
304 |
+
|
305 |
+
.nb-scroll-down #nimble-header:not(.sek-header-mobile-menu-expanded), .nb-scroll-up #nimble-header:not(.sek-header-mobile-menu-expanded) {
|
306 |
+
background-color: rgba(255, 255, 255, 0.9);
|
307 |
+
}
|
308 |
+
|
309 |
+
.mfp-wrap button.mfp-arrow, .mfp-wrap button.mfp-close {
|
310 |
+
background: none !important;
|
311 |
+
background: transparent !important;
|
312 |
+
}
|
313 |
+
|
314 |
+
.mfp-wrap img.mfp-img {
|
315 |
+
padding: 40px 0 0;
|
316 |
+
}
|
317 |
+
|
318 |
+
.mfp-wrap::after {
|
319 |
+
bottom: 20px;
|
320 |
+
}
|
321 |
+
|
322 |
+
.mfp-wrap .mfp-bottom-bar {
|
323 |
+
margin-top: 0;
|
324 |
+
}
|
325 |
+
|
326 |
+
.sek-service-font, .sek-module .sek-module-inner .sek-btn {
|
327 |
+
font-family: sans-serif;
|
328 |
+
}
|
329 |
+
|
330 |
+
.sek-container {
|
331 |
+
width: 100%;
|
332 |
+
padding-right: 10px;
|
333 |
+
padding-left: 10px;
|
334 |
+
margin-right: auto;
|
335 |
+
margin-left: auto;
|
336 |
+
}
|
337 |
+
|
338 |
+
@media (min-width: 576px) {
|
339 |
+
.sek-container {
|
340 |
+
max-width: 540px;
|
341 |
+
}
|
342 |
+
}
|
343 |
+
|
344 |
+
@media (min-width: 768px) {
|
345 |
+
.sek-container {
|
346 |
+
max-width: 720px;
|
347 |
+
}
|
348 |
+
}
|
349 |
+
|
350 |
+
@media (min-width: 992px) {
|
351 |
+
.sek-container {
|
352 |
+
max-width: 960px;
|
353 |
+
}
|
354 |
+
}
|
355 |
+
|
356 |
+
@media (min-width: 1200px) {
|
357 |
+
.sek-container {
|
358 |
+
max-width: 1140px;
|
359 |
+
}
|
360 |
+
}
|
361 |
+
|
362 |
+
.sek-container-fluid {
|
363 |
+
width: 100%;
|
364 |
+
padding-right: 10px;
|
365 |
+
padding-left: 10px;
|
366 |
+
margin-right: auto;
|
367 |
+
margin-left: auto;
|
368 |
+
}
|
369 |
+
|
370 |
+
.sek-row {
|
371 |
+
display: -ms-flexbox;
|
372 |
+
display: flex;
|
373 |
+
-ms-flex-wrap: wrap;
|
374 |
+
flex-wrap: wrap;
|
375 |
+
margin-right: -10px;
|
376 |
+
margin-left: -10px;
|
377 |
+
}
|
378 |
+
|
379 |
+
.sek-container-no-padding {
|
380 |
+
padding-right: 0;
|
381 |
+
padding-left: 0;
|
382 |
+
overflow-x: hidden;
|
383 |
+
}
|
384 |
+
|
385 |
+
.sek-no-gutters {
|
386 |
+
margin-right: 0;
|
387 |
+
margin-left: 0;
|
388 |
+
}
|
389 |
+
|
390 |
+
.sek-no-gutters > .sek-col,
|
391 |
+
.sek-no-gutters > [class*="sek-col-"] {
|
392 |
+
padding-right: 0;
|
393 |
+
padding-left: 0;
|
394 |
+
}
|
395 |
+
|
396 |
+
.sek-col-8, .sek-col-9, .sek-col-10, .sek-col-11, .sek-col-12, .sek-col-14, .sek-col-16, .sek-col-20, .sek-col-25, .sek-col-30, .sek-col-33, .sek-col-40, .sek-col-50, .sek-col-60, .sek-col-66, .sek-col-70, .sek-col-75, .sek-col-80, .sek-col-83, .sek-col-90, .sek-col-100, .sek-col-base,
|
397 |
+
.sek-col,
|
398 |
+
.sek-col-auto {
|
399 |
+
position: relative;
|
400 |
+
width: 100%;
|
401 |
+
min-height: 1px;
|
402 |
+
padding-right: 10px;
|
403 |
+
padding-left: 10px;
|
404 |
+
}
|
405 |
+
|
406 |
+
.sek-col-base {
|
407 |
+
-ms-flex: 0 0 100%;
|
408 |
+
flex: 0 0 100%;
|
409 |
+
max-width: 100%;
|
410 |
+
}
|
411 |
+
|
412 |
+
.sek-col {
|
413 |
+
-ms-flex-preferred-size: 0;
|
414 |
+
flex-basis: 0;
|
415 |
+
-ms-flex-positive: 1;
|
416 |
+
flex-grow: 1;
|
417 |
+
max-width: 100%;
|
418 |
+
}
|
419 |
+
|
420 |
+
.sek-col-auto {
|
421 |
+
-ms-flex: 0 0 auto;
|
422 |
+
flex: 0 0 auto;
|
423 |
+
width: auto;
|
424 |
+
max-width: 100%;
|
425 |
+
}
|
426 |
+
|
427 |
+
@media (min-width: 768px) {
|
428 |
+
.sek-col-8 {
|
429 |
+
-ms-flex: 0 0 8.333%;
|
430 |
+
flex: 0 0 8.333%;
|
431 |
+
max-width: 8.333%;
|
432 |
+
}
|
433 |
+
.sek-col-9 {
|
434 |
+
-ms-flex: 0 0 9.090909%;
|
435 |
+
flex: 0 0 9.090909%;
|
436 |
+
max-width: 9.090909%;
|
437 |
+
}
|
438 |
+
.sek-col-10 {
|
439 |
+
-ms-flex: 0 0 10%;
|
440 |
+
flex: 0 0 10%;
|
441 |
+
max-width: 10%;
|
442 |
+
}
|
443 |
+
.sek-col-11 {
|
444 |
+
-ms-flex: 0 0 11.111%;
|
445 |
+
flex: 0 0 11.111%;
|
446 |
+
max-width: 11.111%;
|
447 |
+
}
|
448 |
+
.sek-col-12 {
|
449 |
+
-ms-flex: 0 0 12.5%;
|
450 |
+
flex: 0 0 12.5%;
|
451 |
+
max-width: 12.5%;
|
452 |
+
}
|
453 |
+
.sek-col-14 {
|
454 |
+
-ms-flex: 0 0 14.285%;
|
455 |
+
flex: 0 0 14.285%;
|
456 |
+
max-width: 14.285%;
|
457 |
+
}
|
458 |
+
.sek-col-16 {
|
459 |
+
-ms-flex: 0 0 16.666%;
|
460 |
+
flex: 0 0 16.666%;
|
461 |
+
max-width: 16.666%;
|
462 |
+
}
|
463 |
+
.sek-col-20 {
|
464 |
+
-ms-flex: 0 0 20%;
|
465 |
+
flex: 0 0 20%;
|
466 |
+
max-width: 20%;
|
467 |
+
}
|
468 |
+
.sek-col-25 {
|
469 |
+
-ms-flex: 0 0 25%;
|
470 |
+
flex: 0 0 25%;
|
471 |
+
max-width: 25%;
|
472 |
+
}
|
473 |
+
.sek-col-30 {
|
474 |
+
-ms-flex: 0 0 30%;
|
475 |
+
flex: 0 0 30%;
|
476 |
+
max-width: 30%;
|
477 |
+
}
|
478 |
+
.sek-col-33 {
|
479 |
+
-ms-flex: 0 0 33.333%;
|
480 |
+
flex: 0 0 33.333%;
|
481 |
+
max-width: 33.333%;
|
482 |
+
}
|
483 |
+
.sek-col-40 {
|
484 |
+
-ms-flex: 0 0 40%;
|
485 |
+
flex: 0 0 40%;
|
486 |
+
max-width: 40%;
|
487 |
+
}
|
488 |
+
.sek-col-50 {
|
489 |
+
-ms-flex: 0 0 50%;
|
490 |
+
flex: 0 0 50%;
|
491 |
+
max-width: 50%;
|
492 |
+
}
|
493 |
+
.sek-col-60 {
|
494 |
+
-ms-flex: 0 0 60%;
|
495 |
+
flex: 0 0 60%;
|
496 |
+
max-width: 60%;
|
497 |
+
}
|
498 |
+
.sek-col-66 {
|
499 |
+
-ms-flex: 0 0 66.666%;
|
500 |
+
flex: 0 0 66.666%;
|
501 |
+
max-width: 66.666%;
|
502 |
+
}
|
503 |
+
.sek-col-70 {
|
504 |
+
-ms-flex: 0 0 70%;
|
505 |
+
flex: 0 0 70%;
|
506 |
+
max-width: 70%;
|
507 |
+
}
|
508 |
+
.sek-col-75 {
|
509 |
+
-ms-flex: 0 0 75%;
|
510 |
+
flex: 0 0 75%;
|
511 |
+
max-width: 75%;
|
512 |
+
}
|
513 |
+
.sek-col-80 {
|
514 |
+
-ms-flex: 0 0 80%;
|
515 |
+
flex: 0 0 80%;
|
516 |
+
max-width: 80%;
|
517 |
+
}
|
518 |
+
.sek-col-83 {
|
519 |
+
-ms-flex: 0 0 83.333%;
|
520 |
+
flex: 0 0 83.333%;
|
521 |
+
max-width: 83.333%;
|
522 |
+
}
|
523 |
+
.sek-col-90 {
|
524 |
+
-ms-flex: 0 0 90%;
|
525 |
+
flex: 0 0 90%;
|
526 |
+
max-width: 90%;
|
527 |
+
}
|
528 |
+
.sek-col-100 {
|
529 |
+
-ms-flex: 0 0 100%;
|
530 |
+
flex: 0 0 100%;
|
531 |
+
max-width: 100%;
|
532 |
+
}
|
533 |
+
.sek-order-first {
|
534 |
+
-ms-flex-order: -1;
|
535 |
+
order: -1;
|
536 |
+
}
|
537 |
+
.sek-order-last {
|
538 |
+
-ms-flex-order: 13;
|
539 |
+
order: 13;
|
540 |
+
}
|
541 |
+
.sek-order-0 {
|
542 |
+
-ms-flex-order: 0;
|
543 |
+
order: 0;
|
544 |
+
}
|
545 |
+
.sek-order-1 {
|
546 |
+
-ms-flex-order: 1;
|
547 |
+
order: 1;
|
548 |
+
}
|
549 |
+
.sek-order-2 {
|
550 |
+
-ms-flex-order: 2;
|
551 |
+
order: 2;
|
552 |
+
}
|
553 |
+
.sek-order-3 {
|
554 |
+
-ms-flex-order: 3;
|
555 |
+
order: 3;
|
556 |
+
}
|
557 |
+
.sek-order-4 {
|
558 |
+
-ms-flex-order: 4;
|
559 |
+
order: 4;
|
560 |
+
}
|
561 |
+
.sek-order-5 {
|
562 |
+
-ms-flex-order: 5;
|
563 |
+
order: 5;
|
564 |
+
}
|
565 |
+
.sek-order-6 {
|
566 |
+
-ms-flex-order: 6;
|
567 |
+
order: 6;
|
568 |
+
}
|
569 |
+
.sek-order-7 {
|
570 |
+
-ms-flex-order: 7;
|
571 |
+
order: 7;
|
572 |
+
}
|
573 |
+
.sek-order-8 {
|
574 |
+
-ms-flex-order: 8;
|
575 |
+
order: 8;
|
576 |
+
}
|
577 |
+
.sek-order-9 {
|
578 |
+
-ms-flex-order: 9;
|
579 |
+
order: 9;
|
580 |
+
}
|
581 |
+
.sek-order-10 {
|
582 |
+
-ms-flex-order: 10;
|
583 |
+
order: 10;
|
584 |
+
}
|
585 |
+
.sek-order-11 {
|
586 |
+
-ms-flex-order: 11;
|
587 |
+
order: 11;
|
588 |
+
}
|
589 |
+
.sek-order-12 {
|
590 |
+
-ms-flex-order: 12;
|
591 |
+
order: 12;
|
592 |
+
}
|
593 |
+
}
|
594 |
+
|
595 |
/*
|
596 |
.sek-collapsing {
|
597 |
position: relative;
|
598 |
height: 0;
|
599 |
overflow: hidden;
|
600 |
//@include transition($transition-collapse);
|
601 |
+
}*/
|
602 |
+
.sek-clearfix::after {
|
603 |
+
display: block;
|
604 |
+
clear: both;
|
605 |
+
content: "";
|
606 |
+
}
|
607 |
+
|
608 |
+
.sek-sr-only {
|
609 |
+
position: absolute;
|
610 |
+
width: 1px;
|
611 |
+
height: 1px;
|
612 |
+
padding: 0;
|
613 |
+
overflow: hidden;
|
614 |
+
clip: rect(0, 0, 0, 0);
|
615 |
+
white-space: nowrap;
|
616 |
+
border: 0;
|
617 |
+
}
|
618 |
+
|
619 |
+
.sek-sr-only-focusable:active, .sek-sr-only-focusable:focus {
|
620 |
+
position: static;
|
621 |
+
width: auto;
|
622 |
+
height: auto;
|
623 |
+
overflow: visible;
|
624 |
+
clip: auto;
|
625 |
+
white-space: normal;
|
626 |
+
}
|
627 |
+
|
628 |
+
.sek-embed {
|
629 |
+
position: relative;
|
630 |
+
}
|
631 |
+
|
632 |
+
.sek-embed::before {
|
633 |
+
display: block;
|
634 |
+
content: '';
|
635 |
+
}
|
636 |
+
|
637 |
+
.sek-embed .sek-embed-inner,
|
638 |
+
.sek-embed iframe {
|
639 |
+
position: absolute;
|
640 |
+
width: 100%;
|
641 |
+
height: 100%;
|
642 |
+
top: 0;
|
643 |
+
left: 0;
|
644 |
+
}
|
645 |
+
|
646 |
+
.sektion-wrapper {
|
647 |
+
word-wrap: break-word;
|
648 |
+
}
|
649 |
+
|
650 |
+
.sek-text-right {
|
651 |
+
text-align: right !important;
|
652 |
+
}
|
653 |
+
|
654 |
+
.sek-text-left {
|
655 |
+
text-align: left !important;
|
656 |
+
}
|
657 |
+
|
658 |
+
.sek-module .sek-module-inner ul {
|
659 |
+
list-style: disc;
|
660 |
+
}
|
661 |
+
|
662 |
+
.sek-module .sek-module-inner ol {
|
663 |
+
list-style: decimal;
|
664 |
+
}
|
665 |
+
|
666 |
+
.sek-module .sek-module-inner ol > li::before {
|
667 |
+
content: none;
|
668 |
+
}
|
669 |
+
|
670 |
+
.sek-module .sek-module-inner ul, .sek-module .sek-module-inner ol {
|
671 |
+
padding: 0;
|
672 |
+
line-height: 1.5;
|
673 |
+
margin: 0 0 1.5rem 3rem;
|
674 |
+
}
|
675 |
+
|
676 |
+
.sek-module .sek-module-inner ul > li, .sek-module .sek-module-inner ol > li {
|
677 |
+
padding: .15rem .25rem;
|
678 |
+
}
|
679 |
+
|
680 |
+
.sek-module .sek-module-inner li > ul, .sek-module .sek-module-inner li > ol {
|
681 |
+
margin-bottom: 0;
|
682 |
+
}
|
683 |
+
|
684 |
+
.sek-module-inner pre code, .sek-module-inner tt {
|
685 |
+
box-sizing: border-box;
|
686 |
+
font-size: inherit;
|
687 |
+
white-space: pre-wrap !important;
|
688 |
+
background: transparent;
|
689 |
+
border: none;
|
690 |
+
padding: 0;
|
691 |
+
font-family: monospace;
|
692 |
+
}
|
693 |
+
|
694 |
+
.sek-module-inner pre {
|
695 |
+
background: #f7f8f9;
|
696 |
+
padding: 2.5em;
|
697 |
+
word-wrap: normal;
|
698 |
+
white-space: pre-wrap !important;
|
699 |
+
color: #313131;
|
700 |
+
font-family: monospace !important;
|
701 |
+
}
|
702 |
+
|
703 |
+
.sek-module-inner figure {
|
704 |
+
text-align: center;
|
705 |
+
}
|
706 |
+
|
707 |
+
.sek-module-inner figcaption {
|
708 |
+
text-align: center;
|
709 |
+
}
|
710 |
+
|
711 |
+
.sek-module-inner cite {
|
712 |
+
color: #313131;
|
713 |
+
font-weight: 300;
|
714 |
+
font-style: normal;
|
715 |
+
position: relative;
|
716 |
+
display: inline-block;
|
717 |
+
}
|
718 |
+
|
719 |
+
.sek-module-inner caption, .sek-module-inner code, .sek-module-inner code, .sek-module-inner kbd, .sek-module-inner samp, .sek-module-inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd), .sek-module-inner :root .has-subtle-background-background-color {
|
720 |
+
background-color: #dbdbdb;
|
721 |
+
}
|
722 |
+
|
723 |
+
.sek-module-inner sub {
|
724 |
+
bottom: -0.25em;
|
725 |
+
}
|
726 |
+
|
727 |
+
.sek-module-inner sub, .sek-module-inner sup {
|
728 |
+
font-size: 75%;
|
729 |
+
line-height: 0;
|
730 |
+
position: relative;
|
731 |
+
vertical-align: baseline;
|
732 |
+
}
|
733 |
+
|
734 |
+
.sek-module-inner blockquote {
|
735 |
+
border-left: 5px solid rgba(0, 0, 0, 0.1);
|
736 |
+
background: none;
|
737 |
+
font-size: 1.2em;
|
738 |
+
font-style: inherit;
|
739 |
+
margin-right: 0;
|
740 |
+
margin-left: 0;
|
741 |
+
padding: 15px;
|
742 |
+
}
|
743 |
+
|
744 |
+
.sek-module-inner table {
|
745 |
+
width: 100%;
|
746 |
+
border-collapse: collapse;
|
747 |
/*&:not([id^=wp-calendar]) {
|
748 |
border: 2px solid $grey-lightest;
|
749 |
th { @extend .caps; @extend .letter-spacing-2; font-family: $serviceFont; }
|
750 |
th, td { @extend .demi-small; padding: $base-line-height; border: 1px solid $grey-lightest; }
|
751 |
td { color: $grey-dark; }
|
752 |
+
}*/
|
753 |
+
}
|
754 |
+
|
755 |
+
@media (max-width: 767.98px) {
|
756 |
+
.sek-module-inner table {
|
757 |
+
table-layout: fixed;
|
758 |
+
}
|
759 |
+
}
|
760 |
+
|
761 |
+
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) {
|
762 |
+
border: 2px solid #eceeef;
|
763 |
+
}
|
764 |
+
|
765 |
+
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th {
|
766 |
+
text-transform: uppercase;
|
767 |
+
letter-spacing: 2px;
|
768 |
+
font-family: sans-serif;
|
769 |
+
}
|
770 |
+
|
771 |
+
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th, .sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {
|
772 |
+
font-size: 0.95em;
|
773 |
+
padding: 1.25em;
|
774 |
+
border: 1px solid #eceeef;
|
775 |
+
}
|
776 |
+
|
777 |
+
.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {
|
778 |
+
color: #777;
|
779 |
+
}
|
780 |
+
|
781 |
+
.sek-search-form {
|
782 |
+
float: none;
|
783 |
+
}
|
784 |
+
|
785 |
+
.sek-search-form .sek-search-form-group {
|
786 |
+
display: -ms-flexbox;
|
787 |
+
display: flex;
|
788 |
+
}
|
789 |
+
|
790 |
+
.sek-search-form .sek-search-form-group label {
|
791 |
+
position: relative;
|
792 |
+
margin-right: 5px;
|
793 |
+
}
|
794 |
+
|
795 |
+
.sek-search-form .sek-search-form-group label input[type=search] {
|
796 |
+
max-width: 100%;
|
797 |
+
margin: 0;
|
798 |
+
box-sizing: border-box;
|
799 |
+
border-radius: 0;
|
800 |
+
background: #fff;
|
801 |
+
border: 2px solid #ddd;
|
802 |
+
color: #777;
|
803 |
+
display: block;
|
804 |
+
max-width: 100%;
|
805 |
+
padding: 7px 8px;
|
806 |
+
padding-left: 5px;
|
807 |
+
line-height: 1.5em;
|
808 |
+
width: 100%;
|
809 |
+
}
|
810 |
+
|
811 |
+
.sek-search-form .sek-search-form-group [type=submit] {
|
812 |
+
line-height: 15px;
|
813 |
+
margin: 0;
|
814 |
+
background: #808080 !important;
|
815 |
+
color: #fff;
|
816 |
+
font-size: 16px;
|
817 |
+
padding: 10px 10px;
|
818 |
+
font-weight: normal;
|
819 |
+
display: inline-block;
|
820 |
+
border: none;
|
821 |
+
cursor: pointer;
|
822 |
+
border-radius: 3px;
|
823 |
+
}
|
824 |
+
|
825 |
+
.sek-module .sek-module-inner .sek-btn {
|
826 |
+
display: inline-block;
|
827 |
+
font-weight: normal;
|
828 |
+
line-height: 1.25em;
|
829 |
+
text-align: center;
|
830 |
+
/*white-space: nowrap;*/
|
831 |
+
white-space: normal;
|
832 |
+
word-break: break-all;
|
833 |
+
vertical-align: middle;
|
834 |
+
-webkit-user-select: none;
|
835 |
+
-moz-user-select: none;
|
836 |
+
-ms-user-select: none;
|
837 |
+
user-select: none;
|
838 |
+
border: 1px solid transparent;
|
839 |
+
padding: 0.5em 1em;
|
840 |
+
border-radius: 2px;
|
841 |
+
border-width: 2px;
|
842 |
+
border-style: solid;
|
843 |
+
font-size: 1em;
|
844 |
+
cursor: pointer;
|
845 |
+
text-decoration: none;
|
846 |
+
text-transform: none;
|
847 |
+
transition: all 0.2s ease-in-out;
|
848 |
+
}
|
849 |
+
|
850 |
+
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .sek-btn:hover {
|
851 |
+
text-decoration: none;
|
852 |
+
}
|
853 |
+
|
854 |
+
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .focus.sek-btn {
|
855 |
+
outline: 0;
|
856 |
+
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
857 |
+
}
|
858 |
+
|
859 |
+
.sek-module .sek-module-inner .disabled.sek-btn, .sek-module .sek-module-inner .sek-btn:disabled {
|
860 |
+
cursor: not-allowed;
|
861 |
+
opacity: .65;
|
862 |
+
box-shadow: none;
|
863 |
+
}
|
864 |
+
|
865 |
+
.sek-module .sek-module-inner .sek-btn:active, .sek-module .sek-module-inner .active.sek-btn {
|
866 |
+
background-image: none;
|
867 |
+
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
868 |
+
}
|
869 |
+
|
870 |
+
a.sek-btn.disabled,
|
871 |
+
fieldset[disabled] a.sek-btn {
|
872 |
+
pointer-events: none;
|
873 |
+
}
|
874 |
+
|
875 |
+
.sektion-wrapper button,
|
876 |
+
.sektion-wrapper [type="button"],
|
877 |
+
.sektion-wrapper [type="reset"],
|
878 |
+
.sektion-wrapper [type="submit"] {
|
879 |
+
-webkit-appearance: button;
|
880 |
+
}
|
881 |
+
|
882 |
+
.sektion-wrapper button::-moz-focus-inner,
|
883 |
+
.sektion-wrapper [type="button"]::-moz-focus-inner,
|
884 |
+
.sektion-wrapper [type="reset"]::-moz-focus-inner,
|
885 |
+
.sektion-wrapper [type="submit"]::-moz-focus-inner {
|
886 |
+
padding: 0;
|
887 |
+
border-style: none;
|
888 |
+
}
|
889 |
+
|
890 |
+
button.sek-btn,
|
891 |
+
[type="button"].sek-btn,
|
892 |
+
[type="reset"].sek-btn,
|
893 |
+
[type="submit"].sek-btn {
|
894 |
+
-wekbit-appearance: none !important;
|
895 |
+
background: transparent;
|
896 |
+
}
|
897 |
+
|
898 |
+
[data-sek-level="module"] .sek-module-inner {
|
899 |
+
/* WP Search Widget */
|
900 |
+
}
|
901 |
+
|
902 |
+
[data-sek-level="module"] .sek-module-inner .wp-caption figcaption {
|
903 |
+
color: #6d6d6d;
|
904 |
+
font-style: italic;
|
905 |
+
max-width: 100%;
|
906 |
+
font-size: 14px;
|
907 |
+
font-weight: 500;
|
908 |
+
line-height: 1.4;
|
909 |
+
/* Keep wide captions from overflowing their container. */
|
910 |
+
padding: 4px;
|
911 |
+
margin-top: 1rem;
|
912 |
+
}
|
913 |
+
|
914 |
+
[data-sek-level="module"] .sek-module-inner figure {
|
915 |
+
display: block;
|
916 |
+
}
|
917 |
+
|
918 |
+
[data-sek-level="module"] .sek-module-inner .wp-block-image .aligncenter, [data-sek-level="module"] .sek-module-inner .wp-block-image .alignleft, [data-sek-level="module"] .sek-module-inner .wp-block-image .alignright {
|
919 |
+
display: table;
|
920 |
+
}
|
921 |
+
|
922 |
+
[data-sek-level="module"] .sek-module-inner .wp-block-image figcaption {
|
923 |
+
font-size: 13px;
|
924 |
+
text-align: center;
|
925 |
+
}
|
926 |
+
|
927 |
+
[data-sek-level="module"] .sek-module-inner .wp-block-gallery, [data-sek-level="module"] .sek-module-inner ul.blocks-gallery-grid {
|
928 |
+
margin-left: 0;
|
929 |
+
}
|
930 |
+
|
931 |
+
[data-sek-level="module"] .sek-module-inner [class*="wp-block-"]:not(:last-child) {
|
932 |
+
margin-bottom: 1.5em;
|
933 |
+
}
|
934 |
+
|
935 |
+
.sek-col-100 .sek-module-inner .alignfull {
|
936 |
+
margin-left: calc(-50vw + 50%);
|
937 |
+
margin-right: calc(-50vw + 50%);
|
938 |
+
max-width: 100vw;
|
939 |
+
width: auto;
|
940 |
+
}
|
941 |
+
|
942 |
+
.sek-col-100 .sek-module-inner .alignwide {
|
943 |
+
margin-left: calc(50% - 40vw);
|
944 |
+
width: 80vw;
|
945 |
+
max-width: 80vw;
|
946 |
+
}
|
947 |
+
|
948 |
+
[data-sek-level="module"] .sek-module-inner .aligncenter, [data-sek-level="module"] .sek-module-inner .aligncenter img {
|
949 |
+
display: block;
|
950 |
+
margin-left: auto;
|
951 |
+
margin-right: auto;
|
952 |
+
}
|
953 |
+
|
954 |
+
[data-sek-level="module"] .sek-module-inner .alignleft {
|
955 |
+
float: left;
|
956 |
+
}
|
957 |
+
|
958 |
+
[data-sek-level="module"] .sek-module-inner .alignright {
|
959 |
+
float: right;
|
960 |
+
}
|
961 |
+
|
962 |
+
[data-sek-level="module"] .sek-module-inner .alignnone, [data-sek-level="module"] .sek-module-inner .aligncenter, [data-sek-level="module"] .sek-module-inner .alignleft, [data-sek-level="module"] .sek-module-inner .alignright {
|
963 |
+
margin-top: 1.5rem;
|
964 |
+
margin-right: auto;
|
965 |
+
margin-bottom: 1.5rem;
|
966 |
+
margin-left: auto;
|
967 |
+
}
|
968 |
+
|
969 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form {
|
970 |
+
display: -ms-flexbox;
|
971 |
+
display: flex;
|
972 |
+
max-width: 100%;
|
973 |
+
float: right;
|
974 |
+
}
|
975 |
+
|
976 |
+
@media (max-width: 767.98px) {
|
977 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form {
|
978 |
+
float: none;
|
979 |
+
}
|
980 |
+
}
|
981 |
+
|
982 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form label {
|
983 |
+
position: relative;
|
984 |
+
-ms-flex: 1;
|
985 |
+
flex: 1;
|
986 |
+
margin-right: 5px;
|
987 |
+
}
|
988 |
+
|
989 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form label input {
|
990 |
+
padding-left: 5px;
|
991 |
+
line-height: 20px;
|
992 |
+
width: 100%;
|
993 |
+
max-width: 185px;
|
994 |
+
min-width: 80px;
|
995 |
+
}
|
996 |
+
|
997 |
+
@media (max-width: 767.98px) {
|
998 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form label input {
|
999 |
+
max-width: none;
|
1000 |
+
}
|
1001 |
+
}
|
1002 |
+
|
1003 |
+
[data-sek-level="module"] .sek-module-inner [role=search].search-form input[type=submit] {
|
1004 |
+
line-height: 15px;
|
1005 |
+
/*width: 25%;*/
|
1006 |
+
}
|
1007 |
+
|
1008 |
+
[data-sek-level="module"] .sek-module-inner input[type="submit"] {
|
1009 |
+
background: #808080;
|
1010 |
+
color: #fff;
|
1011 |
+
padding: 10px 10px;
|
1012 |
+
font-weight: normal;
|
1013 |
+
display: inline-block;
|
1014 |
+
border: none;
|
1015 |
+
cursor: pointer;
|
1016 |
+
border-radius: 3px;
|
1017 |
+
}
|
1018 |
+
|
1019 |
+
[data-sek-level="module"] .sek-module-inner .search-form input[type="search"] {
|
1020 |
+
margin: 0;
|
1021 |
+
box-sizing: border-box;
|
1022 |
+
border-radius: 0;
|
1023 |
+
background: #fff;
|
1024 |
+
border: 2px solid #ddd;
|
1025 |
+
color: #777;
|
1026 |
+
display: block;
|
1027 |
+
max-width: 100%;
|
1028 |
+
padding: 7px 8px;
|
1029 |
+
}
|
1030 |
+
|
1031 |
+
.sektion-wrapper.sek-password-protected {
|
1032 |
+
display: -ms-flexbox;
|
1033 |
+
display: flex;
|
1034 |
+
-ms-flex-align: center;
|
1035 |
+
align-items: center;
|
1036 |
+
-ms-flex-pack: center;
|
1037 |
+
justify-content: center;
|
1038 |
+
-ms-flex-direction: column;
|
1039 |
+
flex-direction: column;
|
1040 |
+
}
|
1041 |
+
|
1042 |
+
.sektion-wrapper.sek-password-protected form.post-password-form {
|
1043 |
+
max-width: 450px;
|
1044 |
+
height: auto;
|
1045 |
+
padding: 4em 1em;
|
1046 |
+
font-size: 1em;
|
1047 |
+
}
|
1048 |
+
|
1049 |
+
.sektion-wrapper .sek-module-inner .avatar {
|
1050 |
+
border-radius: 50%;
|
1051 |
+
}
|
1052 |
+
|
1053 |
+
.sek-next-post-link::after, .sek-previous-post-link::before {
|
1054 |
+
width: 15px;
|
1055 |
+
height: 10px;
|
1056 |
+
display: inline-block;
|
1057 |
+
position: relative;
|
1058 |
+
vertical-align: middle;
|
1059 |
+
border-top: 6px solid transparent;
|
1060 |
+
border-bottom: 6px solid transparent;
|
1061 |
+
border-left-color: inherit;
|
1062 |
+
border-right-color: inherit;
|
1063 |
+
}
|
1064 |
+
|
1065 |
+
.sek-previous-post-link::before {
|
1066 |
+
content: '';
|
1067 |
+
border-right: 6px solid;
|
1068 |
+
right: 7px;
|
1069 |
+
}
|
1070 |
+
|
1071 |
+
.sek-next-post-link::after {
|
1072 |
+
content: '';
|
1073 |
+
border-left: 6px solid;
|
1074 |
+
left: 7px;
|
1075 |
+
}
|
1076 |
+
|
1077 |
/*************************************
|
1078 |
* HEADING MODULE
|
1079 |
+
*************************************/
|
1080 |
+
.sek-module-inner .sek-heading {
|
1081 |
+
text-align: center;
|
1082 |
+
margin: 0.6em 0;
|
1083 |
+
display: block;
|
1084 |
+
}
|
1085 |
+
|
1086 |
+
.sek-module-inner .sek-heading > a {
|
1087 |
+
color: inherit;
|
1088 |
+
font-size: inherit;
|
1089 |
+
}
|
1090 |
+
|
1091 |
/*************************************
|
1092 |
* MENU MODULE
|
1093 |
+
*************************************/
|
1094 |
+
.sek-nav-wrap {
|
1095 |
+
position: relative;
|
1096 |
+
display: -ms-flexbox;
|
1097 |
+
display: flex;
|
1098 |
+
-ms-flex-wrap: wrap;
|
1099 |
+
flex-wrap: wrap;
|
1100 |
+
-ms-flex-align: center;
|
1101 |
+
align-items: center;
|
1102 |
+
-ms-flex-pack: end;
|
1103 |
+
justify-content: flex-end;
|
1104 |
+
padding: .5rem 0;
|
1105 |
+
}
|
1106 |
+
|
1107 |
+
.sek-mobile-menu-expanded-below .sek-nav-wrap {
|
1108 |
+
padding: 0;
|
1109 |
+
}
|
1110 |
+
|
1111 |
+
.sek-nav-collapse {
|
1112 |
+
-ms-flex-preferred-size: 100%;
|
1113 |
+
flex-basis: 100%;
|
1114 |
+
-ms-flex-positive: 1;
|
1115 |
+
flex-grow: 1;
|
1116 |
+
-ms-flex-align: center;
|
1117 |
+
align-items: center;
|
1118 |
+
}
|
1119 |
+
|
1120 |
+
.sek-nav {
|
1121 |
+
display: -ms-flexbox;
|
1122 |
+
display: flex;
|
1123 |
+
-ms-flex-wrap: wrap;
|
1124 |
+
flex-wrap: wrap;
|
1125 |
+
-ms-flex-direction: column;
|
1126 |
+
flex-direction: column;
|
1127 |
+
}
|
1128 |
+
|
1129 |
+
.sek-module .sek-module-inner .sek-nav {
|
1130 |
+
margin-right: -10px !important;
|
1131 |
+
margin-left: -10px !important;
|
1132 |
+
}
|
1133 |
+
|
1134 |
+
.sek-module .sek-module-inner .sek-nav,
|
1135 |
+
.sek-module .sek-module-inner .sek-nav ul {
|
1136 |
+
list-style: none !important;
|
1137 |
+
padding: 0 !important;
|
1138 |
+
margin: 0 !important;
|
1139 |
+
}
|
1140 |
+
|
1141 |
+
.sek-module .sek-module-inner .sek-nav li {
|
1142 |
+
list-style: none;
|
1143 |
+
padding: 0;
|
1144 |
+
}
|
1145 |
+
|
1146 |
+
.sek-module .sek-module-inner .sek-nav li > ul li {
|
1147 |
+
padding: 0;
|
1148 |
+
}
|
1149 |
+
|
1150 |
+
.sek-nav li {
|
1151 |
+
font-size: 16px;
|
1152 |
+
}
|
1153 |
+
|
1154 |
+
.sek-nav li a {
|
1155 |
+
line-height: 1.5em;
|
1156 |
+
padding: .6em .8em;
|
1157 |
+
display: -ms-flexbox;
|
1158 |
+
display: flex;
|
1159 |
+
-ms-flex-align: center;
|
1160 |
+
align-items: center;
|
1161 |
+
-ms-flex-pack: justify;
|
1162 |
+
justify-content: space-between;
|
1163 |
+
color: inherit;
|
1164 |
+
overflow: hidden;
|
1165 |
+
}
|
1166 |
+
|
1167 |
+
.sek-nav-wrap .sek-nav li a {
|
1168 |
+
text-decoration: none;
|
1169 |
+
}
|
1170 |
+
|
1171 |
+
.sek-nav li a:hover .sek-nav__title {
|
1172 |
+
text-decoration: underline;
|
1173 |
+
}
|
1174 |
+
|
1175 |
+
.sek-nav li:not(:last-of-type) {
|
1176 |
+
border-bottom: 1px solid;
|
1177 |
+
border-color: rgba(49, 49, 49, 0.09);
|
1178 |
+
}
|
1179 |
+
|
1180 |
+
.sek-nav .menu-item-has-children,
|
1181 |
+
.sek-nav .page_item_has_children {
|
1182 |
+
position: relative;
|
1183 |
+
}
|
1184 |
+
|
1185 |
+
.sek-nav .menu-item-has-children > a::after,
|
1186 |
+
.sek-nav .page_item_has_children > a::after {
|
1187 |
+
content: "\203A";
|
1188 |
+
font-family: "Arial Unicode MS", Arial;
|
1189 |
+
moz-osx-font-smoothing: grayscale;
|
1190 |
+
-webkit-font-smoothing: antialiased;
|
1191 |
+
display: none;
|
1192 |
+
font-style: normal;
|
1193 |
+
font-variant: normal;
|
1194 |
+
text-rendering: auto;
|
1195 |
+
font-weight: 900;
|
1196 |
+
transition: all 0.3s ease;
|
1197 |
+
-webkit-transform-style: preserve-3d;
|
1198 |
+
transform-style: preserve-3d;
|
1199 |
+
-webkit-backface-visibility: hidden;
|
1200 |
+
backface-visibility: hidden;
|
1201 |
+
-webkit-perspective: 1000px;
|
1202 |
+
perspective: 1000px;
|
1203 |
+
padding: 0 .45em;
|
1204 |
+
font-size: 1em;
|
1205 |
+
position: relative;
|
1206 |
+
-webkit-transform: translateZ(0) rotate(90deg);
|
1207 |
+
transform: translateZ(0) rotate(90deg);
|
1208 |
+
-ms-transform: rotate(90deg);
|
1209 |
+
}
|
1210 |
+
|
1211 |
+
.sek-nav .menu-item-has-children.show > a::after,
|
1212 |
+
.sek-nav .page_item_has_children.show > a::after {
|
1213 |
+
-webkit-transform: translateZ(0) rotate(-90deg) !important;
|
1214 |
+
transform: translateZ(0) rotate(-90deg) !important;
|
1215 |
+
-ms-transform: rotate(-90deg) !important;
|
1216 |
+
}
|
1217 |
+
|
1218 |
+
.sek-nav .sub-menu,
|
1219 |
+
.sek-nav .children {
|
1220 |
+
position: static;
|
1221 |
+
float: none;
|
1222 |
+
list-style: none;
|
1223 |
+
border-radius: 0;
|
1224 |
+
border: 0;
|
1225 |
+
margin: 0;
|
1226 |
+
padding: 0;
|
1227 |
+
font-size: inherit;
|
1228 |
+
}
|
1229 |
+
|
1230 |
+
@media (min-width: 768px) {
|
1231 |
+
.sek-nav .sub-menu,
|
1232 |
+
.sek-nav .children {
|
1233 |
+
position: absolute;
|
1234 |
+
display: none;
|
1235 |
+
top: 100%;
|
1236 |
+
left: 0;
|
1237 |
+
z-index: 1000;
|
1238 |
+
min-width: 10rem;
|
1239 |
+
max-width: 50vw;
|
1240 |
+
}
|
1241 |
+
}
|
1242 |
+
|
1243 |
+
@media (min-width: 768px) {
|
1244 |
+
.sek-nav {
|
1245 |
+
-ms-flex-direction: row;
|
1246 |
+
flex-direction: row;
|
1247 |
+
}
|
1248 |
+
.sek-nav .menu-item-has-children > a::after,
|
1249 |
+
.sek-nav .page_item_has_children > a::after {
|
1250 |
+
display: inline-block;
|
1251 |
+
}
|
1252 |
+
.sek-nav > li:not(:last-of-type) {
|
1253 |
+
border-bottom: none;
|
1254 |
+
}
|
1255 |
+
.sek-nav > li > a {
|
1256 |
+
padding: 5px;
|
1257 |
+
}
|
1258 |
+
.sek-module .sek-module-inner .sek-nav li {
|
1259 |
+
margin: 0 5px;
|
1260 |
+
}
|
1261 |
+
.sek-module .sek-module-inner .sek-nav li > ul li {
|
1262 |
+
padding: 0 0 0 .9rem;
|
1263 |
+
}
|
1264 |
+
.sek-nav-collapse {
|
1265 |
+
display: -ms-flexbox !important;
|
1266 |
+
display: flex !important;
|
1267 |
+
-ms-flex-preferred-size: auto;
|
1268 |
+
flex-basis: auto;
|
1269 |
+
justify-content: flex-end;
|
1270 |
+
-webkit-box-pack: end;
|
1271 |
+
-ms-flex-pack: end;
|
1272 |
+
}
|
1273 |
+
.sek-mobile-menu-expanded-below {
|
1274 |
+
display: none !important;
|
1275 |
+
}
|
1276 |
+
.sek-nav-toggler {
|
1277 |
+
display: none;
|
1278 |
+
}
|
1279 |
+
.sek-dropdown-menu {
|
1280 |
+
background: white;
|
1281 |
+
box-shadow: 1px 2px 2px 2px rgba(0, 0, 0, 0.15);
|
1282 |
+
}
|
1283 |
+
.sek-nav .sek-dropdown-menu li {
|
1284 |
+
padding: 0 10px !important;
|
1285 |
+
margin: 0 !important;
|
1286 |
+
}
|
1287 |
+
.sek-nav .sek-dropdown-menu li a {
|
1288 |
+
padding: 10px 12px;
|
1289 |
+
}
|
1290 |
+
.sek-dropdown-menu ul {
|
1291 |
+
left: 100%;
|
1292 |
+
}
|
1293 |
+
.sek-dropdown-menu .sek-menu-link__row-reverse {
|
1294 |
+
-ms-flex-direction: row-reverse !important;
|
1295 |
+
flex-direction: row-reverse !important;
|
1296 |
+
}
|
1297 |
+
.sek-dropdown-menu .sek-nav__title {
|
1298 |
+
word-break: normal;
|
1299 |
+
white-space: nowrap;
|
1300 |
+
}
|
1301 |
+
.sek-dropdown-submenu .sek-dropdown-menu {
|
1302 |
+
top: 15px;
|
1303 |
+
}
|
1304 |
+
.sek-submenu-fade .sek-dropdown-menu a {
|
1305 |
+
transition: all 0.25s ease;
|
1306 |
+
-webkit-transform: translate(0, 0);
|
1307 |
+
transform: translate(0, 0);
|
1308 |
+
}
|
1309 |
+
.sek-submenu-fade .sek-dropdown-menu a:hover {
|
1310 |
+
-webkit-transform: translate(3px, 0);
|
1311 |
+
transform: translate(3px, 0);
|
1312 |
+
}
|
1313 |
+
.sek-submenu-fade .page_item_has_children,
|
1314 |
+
.sek-submenu-fade .menu-item-has-children {
|
1315 |
+
-webkit-perspective: 1000px;
|
1316 |
+
perspective: 1000px;
|
1317 |
+
}
|
1318 |
+
.sek-submenu-fade .page_item_has_children > ul,
|
1319 |
+
.sek-submenu-fade .menu-item-has-children > ul {
|
1320 |
+
position: fixed;
|
1321 |
+
opacity: 0;
|
1322 |
+
visibility: hidden;
|
1323 |
+
display: block;
|
1324 |
+
transition: all 0.25s ease-in-out;
|
1325 |
+
-webkit-transform: translate(0, -10px);
|
1326 |
+
transform: translate(0, -10px);
|
1327 |
+
}
|
1328 |
+
.sek-submenu-fade .page_item_has_children:not(.show),
|
1329 |
+
.sek-submenu-fade .menu-item-has-children:not(.show) {
|
1330 |
+
overflow: hidden;
|
1331 |
+
}
|
1332 |
+
.sek-submenu-fade .page_item_has_children:not(.show) ul,
|
1333 |
+
.sek-submenu-fade .menu-item-has-children:not(.show) ul {
|
1334 |
+
pointer-events: none;
|
1335 |
+
cursor: not-allowed;
|
1336 |
+
}
|
1337 |
+
.sek-submenu-fade li.show {
|
1338 |
+
-webkit-perspective: none;
|
1339 |
+
perspective: none;
|
1340 |
+
}
|
1341 |
+
.sek-submenu-fade li.show > ul {
|
1342 |
+
position: absolute;
|
1343 |
+
visibility: visible;
|
1344 |
+
opacity: 1;
|
1345 |
+
-webkit-transform: translate(0, 0);
|
1346 |
+
transform: translate(0, 0);
|
1347 |
+
}
|
1348 |
+
.nb-collapsible-mobile-menu .nb-dd-mm-toggle-wrapper {
|
1349 |
+
display: none;
|
1350 |
+
}
|
1351 |
+
}
|
1352 |
+
|
1353 |
+
.sek-dropdown-submenu > a::after {
|
1354 |
+
-webkit-transform: translateZ(0) rotate(0deg) !important;
|
1355 |
+
transform: translateZ(0) rotate(0deg) !important;
|
1356 |
+
-ms-transform: rotate(0deg) !important;
|
1357 |
+
}
|
1358 |
+
|
1359 |
+
.sek-dropdown-submenu > a[class*=-reverse]::after {
|
1360 |
+
top: .1em;
|
1361 |
+
-webkit-transform: translateZ(0) rotate(-180deg) !important;
|
1362 |
+
transform: translateZ(0) rotate(-180deg) !important;
|
1363 |
+
-ms-transform: rotate(-180deg) !important;
|
1364 |
+
}
|
1365 |
+
|
1366 |
+
.sek-dropdown-menu {
|
1367 |
+
position: static;
|
1368 |
+
float: none;
|
1369 |
+
list-style: none;
|
1370 |
+
border-radius: 0;
|
1371 |
+
border: 0;
|
1372 |
+
margin: 0;
|
1373 |
+
padding: 0;
|
1374 |
+
font-size: inherit;
|
1375 |
+
}
|
1376 |
+
|
1377 |
+
@media (min-width: 768px) {
|
1378 |
+
.sek-dropdown-menu {
|
1379 |
+
position: absolute;
|
1380 |
+
display: none;
|
1381 |
+
top: 100%;
|
1382 |
+
left: 0;
|
1383 |
+
z-index: 1000;
|
1384 |
+
min-width: 10rem;
|
1385 |
+
max-width: 50vw;
|
1386 |
+
}
|
1387 |
+
}
|
1388 |
+
|
1389 |
+
.show > .sek-dropdown-menu {
|
1390 |
+
display: block;
|
1391 |
+
}
|
1392 |
+
|
1393 |
+
.sek-dropdown-menu .sek-nav .sek-nav__title {
|
1394 |
+
word-break: break-word;
|
1395 |
+
white-space: normal;
|
1396 |
+
}
|
1397 |
+
|
1398 |
+
.sek-dropdown-menu.open-right {
|
1399 |
+
left: 0;
|
1400 |
+
right: auto;
|
1401 |
+
}
|
1402 |
+
|
1403 |
+
.sek-dropdown-menu.open-right ul:not(.open-left),
|
1404 |
+
.sek-dropdown-menu ul.open-right {
|
1405 |
+
left: 100%;
|
1406 |
+
right: auto;
|
1407 |
+
top: 0;
|
1408 |
+
}
|
1409 |
+
|
1410 |
+
.sek-dropdown-menu.open-left {
|
1411 |
+
left: auto;
|
1412 |
+
right: 0;
|
1413 |
+
}
|
1414 |
+
|
1415 |
+
.sek-dropdown-menu.open-left ul:not(.open-right),
|
1416 |
+
.sek-dropdown-menu ul.open-left {
|
1417 |
+
right: 100%;
|
1418 |
+
left: auto;
|
1419 |
+
}
|
1420 |
+
|
1421 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] {
|
1422 |
+
overflow: auto;
|
1423 |
+
max-height: 80vh;
|
1424 |
+
padding-bottom: 10px;
|
1425 |
+
}
|
1426 |
+
|
1427 |
+
nav.nb-collapsible-mobile-menu li .sub-menu li a {
|
1428 |
+
font-size: 0.88em;
|
1429 |
+
}
|
1430 |
+
|
1431 |
+
nav.nb-collapsible-mobile-menu li .sub-menu li > a {
|
1432 |
+
padding: .6em 32px;
|
1433 |
+
}
|
1434 |
+
|
1435 |
+
nav.nb-collapsible-mobile-menu li .sub-menu li li > a {
|
1436 |
+
padding: .6em 60px;
|
1437 |
+
}
|
1438 |
+
|
1439 |
+
nav.nb-collapsible-mobile-menu li .sub-menu li li li > a {
|
1440 |
+
padding: .6em 80px;
|
1441 |
+
}
|
1442 |
+
|
1443 |
+
nav.nb-collapsible-mobile-menu li .sub-menu li li li li > a {
|
1444 |
+
padding: .6em 100px;
|
1445 |
+
}
|
1446 |
+
|
1447 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state] {
|
1448 |
+
display: none;
|
1449 |
+
}
|
1450 |
+
|
1451 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] {
|
1452 |
+
display: block;
|
1453 |
+
}
|
1454 |
+
|
1455 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"],
|
1456 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] li,
|
1457 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] ul {
|
1458 |
+
background: #ffffff;
|
1459 |
+
}
|
1460 |
+
|
1461 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .sub-menu,
|
1462 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] li {
|
1463 |
+
position: relative;
|
1464 |
+
}
|
1465 |
+
|
1466 |
+
[data-sek-is-mobile-vertical-menu="yes"] .sek-nav li a {
|
1467 |
+
min-height: 45px;
|
1468 |
+
box-sizing: border-box;
|
1469 |
+
justify-content: flex-start;
|
1470 |
+
-webkit-box-pack: start;
|
1471 |
+
-ms-flex-pack: start;
|
1472 |
+
}
|
1473 |
+
|
1474 |
+
[data-sek-is-mobile-vertical-menu="yes"] .sub-menu {
|
1475 |
+
display: none;
|
1476 |
+
}
|
1477 |
+
|
1478 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .sub-menu {
|
1479 |
+
display: none;
|
1480 |
+
}
|
1481 |
+
|
1482 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .sub-menu.expanded {
|
1483 |
+
display: block;
|
1484 |
+
}
|
1485 |
+
|
1486 |
/*
|
1487 |
* Mobile dropdown on click
|
1488 |
+
*/
|
1489 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .page_item_has_children > a,
|
1490 |
+
nav.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .menu-item-has-children > a {
|
1491 |
+
padding-right: 60px;
|
1492 |
+
}
|
1493 |
+
|
1494 |
+
.nb-dd-mm-toggle-wrapper {
|
1495 |
+
position: absolute;
|
1496 |
+
top: 1px;
|
1497 |
+
right: 0;
|
1498 |
+
text-align: center;
|
1499 |
+
line-height: 1;
|
1500 |
+
bottom: 1px;
|
1501 |
+
height: 45px;
|
1502 |
+
width: 60px;
|
1503 |
+
}
|
1504 |
+
|
1505 |
+
.nb-collapsible-mobile-menu [data-sek-mm-state="expanded"] .nb-dd-mm-toggle-wrapper {
|
1506 |
+
display: block;
|
1507 |
+
}
|
1508 |
+
|
1509 |
+
.nb-dd-mm-toggle {
|
1510 |
+
background: none !important;
|
1511 |
+
-webkit-appearance: none;
|
1512 |
+
outline: none;
|
1513 |
+
border: none;
|
1514 |
+
padding: 0;
|
1515 |
+
cursor: pointer;
|
1516 |
+
display: block;
|
1517 |
+
height: 45px;
|
1518 |
+
width: 60px;
|
1519 |
+
box-sizing: border-box;
|
1520 |
+
overflow: hidden;
|
1521 |
+
}
|
1522 |
+
|
1523 |
+
.nb-dd-mm-toggle i {
|
1524 |
+
display: block;
|
1525 |
+
transition: all .3s ease;
|
1526 |
+
-webkit-transform-style: preserve-3d;
|
1527 |
+
transform-style: preserve-3d;
|
1528 |
+
-webkit-backface-visibility: hidden;
|
1529 |
+
backface-visibility: hidden;
|
1530 |
+
width: 100%;
|
1531 |
+
color: #000000;
|
1532 |
+
}
|
1533 |
+
|
1534 |
+
li.expanded > .nb-dd-mm-toggle-wrapper .nb-arrow-for-mobile-menu {
|
1535 |
+
-webkit-transform: rotate(-180deg);
|
1536 |
+
transform: rotate(-180deg);
|
1537 |
+
}
|
1538 |
+
|
1539 |
+
.nb-arrow-for-mobile-menu::after {
|
1540 |
+
content: "\25BE";
|
1541 |
+
font-family: "Arial Unicode MS", Arial;
|
1542 |
+
moz-osx-font-smoothing: grayscale;
|
1543 |
+
-webkit-font-smoothing: antialiased;
|
1544 |
+
font-style: normal;
|
1545 |
+
font-variant: normal;
|
1546 |
+
text-rendering: auto;
|
1547 |
+
font-weight: 900;
|
1548 |
+
transition: all 0.3s ease;
|
1549 |
+
-webkit-transform-style: preserve-3d;
|
1550 |
+
transform-style: preserve-3d;
|
1551 |
+
-webkit-backface-visibility: hidden;
|
1552 |
+
backface-visibility: hidden;
|
1553 |
+
-webkit-perspective: 1000px;
|
1554 |
+
perspective: 1000px;
|
1555 |
+
padding: 0 .45em;
|
1556 |
+
font-size: 18px;
|
1557 |
+
line-height: 45px;
|
1558 |
+
position: relative;
|
1559 |
+
}
|
1560 |
+
|
1561 |
+
.nb-loc .sek-module-inner nav .sek-nav-toggler {
|
1562 |
+
-webkit-appearance: none !important;
|
1563 |
+
cursor: pointer;
|
1564 |
+
height: 40px;
|
1565 |
+
width: 40px;
|
1566 |
+
padding: 0;
|
1567 |
+
vertical-align: middle;
|
1568 |
+
}
|
1569 |
+
|
1570 |
+
.nb-loc .sek-module-inner nav .sek-nav-toggler, .nb-loc .sek-module-inner nav .sek-nav-toggler:hover, .nb-loc .sek-module-inner nav .sek-nav-toggler:focus {
|
1571 |
+
background: 0 0;
|
1572 |
+
background-color: rgba(0, 0, 0, 0);
|
1573 |
+
color: black;
|
1574 |
+
outline: none;
|
1575 |
+
border: none;
|
1576 |
+
}
|
1577 |
+
|
1578 |
+
.sek-ham__span-wrapper {
|
1579 |
+
height: 12px;
|
1580 |
+
position: relative;
|
1581 |
+
display: block;
|
1582 |
+
}
|
1583 |
+
|
1584 |
+
.sek-ham__span-wrapper .line {
|
1585 |
+
display: block;
|
1586 |
+
height: 1.5px;
|
1587 |
+
position: absolute;
|
1588 |
+
left: 10px;
|
1589 |
+
border-radius: 5px;
|
1590 |
+
background-clip: padding-box;
|
1591 |
+
transition: all ease .35s;
|
1592 |
+
-webkit-backface-visibility: hidden;
|
1593 |
+
backface-visibility: hidden;
|
1594 |
+
border-top: 1.5px solid;
|
1595 |
+
}
|
1596 |
+
|
1597 |
+
.sek-ham__span-wrapper .line-1 {
|
1598 |
+
top: 0;
|
1599 |
+
}
|
1600 |
+
|
1601 |
+
.sek-ham__span-wrapper .line-2 {
|
1602 |
+
top: 50%;
|
1603 |
+
}
|
1604 |
+
|
1605 |
+
.sek-ham__span-wrapper .line-3 {
|
1606 |
+
top: 100%;
|
1607 |
+
}
|
1608 |
+
|
1609 |
+
.sek-nav-toggler .line-1 {
|
1610 |
+
-webkit-transform: translate(-3px, 6px) rotate(45deg);
|
1611 |
+
transform: translate(-3px, 6px) rotate(45deg);
|
1612 |
+
width: 28px;
|
1613 |
+
}
|
1614 |
+
|
1615 |
+
.sek-nav-toggler .line-2 {
|
1616 |
+
opacity: 0;
|
1617 |
+
}
|
1618 |
+
|
1619 |
+
.sek-nav-toggler .line-3 {
|
1620 |
+
-webkit-transform: translate(-3px, -6px) rotate(-45deg);
|
1621 |
+
transform: translate(-3px, -6px) rotate(-45deg);
|
1622 |
+
width: 28px;
|
1623 |
+
}
|
1624 |
+
|
1625 |
+
.sek-nav-toggler.sek-collapsed .line {
|
1626 |
+
width: 20px;
|
1627 |
+
-webkit-transform: translate(0, 0) rotate(0);
|
1628 |
+
transform: translate(0, 0) rotate(0);
|
1629 |
+
opacity: 1;
|
1630 |
+
}
|
1631 |
+
|
1632 |
+
.sek-nav-toggler.sek-collapsed.hovering .line {
|
1633 |
+
-webkit-transform: translateX(-3px);
|
1634 |
+
transform: translateX(-3px);
|
1635 |
+
width: 26px;
|
1636 |
+
}
|
1637 |
+
|
1638 |
+
.nb-module-menu-search {
|
1639 |
+
position: relative;
|
1640 |
+
}
|
1641 |
+
|
1642 |
+
[data-sek-is-mobile-vertical-menu="yes"] .nb-module-menu-search {
|
1643 |
+
display: none;
|
1644 |
+
}
|
1645 |
+
|
1646 |
+
.nb-svg-search-icon {
|
1647 |
+
cursor: pointer;
|
1648 |
+
padding: 0;
|
1649 |
+
}
|
1650 |
+
|
1651 |
+
.nb-module-menu-search .nb-search-expand {
|
1652 |
+
display: none;
|
1653 |
+
background: #fff;
|
1654 |
+
position: absolute;
|
1655 |
+
z-index: 100;
|
1656 |
+
top: 49px;
|
1657 |
+
right: 0;
|
1658 |
+
left: 0;
|
1659 |
+
width: 340px;
|
1660 |
+
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
|
1661 |
+
}
|
1662 |
+
|
1663 |
+
.nb-search-expand .nb-search-expand-inner {
|
1664 |
+
border: 1px solid #eee;
|
1665 |
+
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.15);
|
1666 |
+
transition: -webkit-transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;
|
1667 |
+
transition: height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;
|
1668 |
+
transition: transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;
|
1669 |
+
transition: transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;
|
1670 |
+
padding: 15px;
|
1671 |
+
}
|
1672 |
+
|
1673 |
+
.nb-search-expand .nb-search-expand-inner [role=search].search-form label::after {
|
1674 |
+
content: none;
|
1675 |
+
}
|
1676 |
+
|
1677 |
+
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner [role=search].search-form {
|
1678 |
+
display: -ms-flexbox;
|
1679 |
+
display: flex;
|
1680 |
+
float: none;
|
1681 |
+
}
|
1682 |
+
|
1683 |
+
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner label input[type=search] {
|
1684 |
+
max-width: 100%;
|
1685 |
+
}
|
1686 |
+
|
1687 |
+
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner input[type=submit], [data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search form input[type=submit] {
|
1688 |
+
margin: 0;
|
1689 |
+
background: #808080 !important;
|
1690 |
+
color: #fff;
|
1691 |
+
font-size: 16px;
|
1692 |
+
padding: 10px 10px;
|
1693 |
+
font-weight: normal;
|
1694 |
+
display: inline-block;
|
1695 |
+
border: none;
|
1696 |
+
cursor: pointer;
|
1697 |
+
border-radius: 3px;
|
1698 |
+
}
|
1699 |
+
|
1700 |
+
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner input[type=search], [data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search input[type=search],
|
1701 |
+
[data-sek-module-type="czr_menu_module"] .nb-search-expand .nb-search-expand-inner input[type=submit], [data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search form input[type=submit] {
|
1702 |
+
text-transform: none !important;
|
1703 |
+
}
|
1704 |
+
|
1705 |
+
.nb-mobile-search {
|
1706 |
+
display: none;
|
1707 |
+
}
|
1708 |
+
|
1709 |
+
[data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search {
|
1710 |
+
display: block;
|
1711 |
+
padding: 6px 14px 15px;
|
1712 |
+
}
|
1713 |
+
|
1714 |
+
[data-sek-is-mobile-vertical-menu="yes"] .nb-mobile-search input {
|
1715 |
+
font-size: 16px;
|
1716 |
+
}
|
1717 |
+
|
1718 |
+
.nb-search-expand-inner input[type="search"], .nb-mobile-search input[type="search"] {
|
1719 |
+
color: #000000 !important;
|
1720 |
+
}
|
1721 |
+
|
1722 |
+
.nb-search-expand-inner input[type="submit"], .nb-mobile-search input[type="submit"] {
|
1723 |
+
color: #ffffff !important;
|
1724 |
+
}
|
1725 |
+
|
1726 |
/*************************************
|
1727 |
* IMAGE MODULE
|
1728 |
+
*************************************/
|
1729 |
+
[data-sek-module-type="czr_image_module"] {
|
1730 |
+
text-align: center;
|
1731 |
+
}
|
1732 |
+
|
1733 |
+
[data-sek-module-type="czr_image_module"] img {
|
1734 |
+
border: 0 solid #f2f2f2;
|
1735 |
+
}
|
1736 |
+
|
1737 |
+
[data-sek-module-type="czr_image_module"] .box-shadow img {
|
1738 |
+
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0;
|
1739 |
+
}
|
1740 |
+
|
1741 |
+
/* image module transitions for better animations when effects are used */
|
1742 |
+
[data-sek-module-type="czr_image_module"] figure img {
|
1743 |
+
transition: all 0.2s ease-out;
|
1744 |
+
}
|
1745 |
+
|
1746 |
+
[data-sek-module-type="czr_image_module"] figure.has-custom-height {
|
1747 |
+
overflow: hidden;
|
1748 |
+
display: -ms-flexbox;
|
1749 |
+
display: flex;
|
1750 |
+
-ms-flex-pack: center;
|
1751 |
+
justify-content: center;
|
1752 |
+
-ms-flex-align: center;
|
1753 |
+
align-items: center;
|
1754 |
+
}
|
1755 |
+
|
1756 |
+
[data-sek-module-type="czr_image_module"] figure.has-custom-height img {
|
1757 |
+
-o-object-fit: cover;
|
1758 |
+
object-fit: cover;
|
1759 |
+
}
|
1760 |
+
|
1761 |
+
.sek-hover-effect-opacity img:hover {
|
1762 |
+
opacity: .7;
|
1763 |
+
}
|
1764 |
+
|
1765 |
+
.sek-hover-effect-zoom-out img:hover {
|
1766 |
+
-webkit-transform: scale(1.05);
|
1767 |
+
transform: scale(1.05);
|
1768 |
+
}
|
1769 |
+
|
1770 |
+
.sek-hover-effect-zoom-in img:hover {
|
1771 |
+
-webkit-transform: scale(0.95);
|
1772 |
+
transform: scale(0.95);
|
1773 |
+
}
|
1774 |
+
|
1775 |
+
.sek-hover-effect-move-up img:hover {
|
1776 |
+
-webkit-transform: translateY(-6px);
|
1777 |
+
transform: translateY(-6px);
|
1778 |
+
}
|
1779 |
+
|
1780 |
+
.sek-hover-effect-move-down img:hover {
|
1781 |
+
-webkit-transform: translateY(6px);
|
1782 |
+
transform: translateY(6px);
|
1783 |
+
}
|
1784 |
+
|
1785 |
+
.sek-hover-effect-blur img:hover {
|
1786 |
+
-webkit-filter: blur(2px);
|
1787 |
+
filter: blur(2px);
|
1788 |
+
}
|
1789 |
+
|
1790 |
+
.sek-hover-effect-grayscale img:hover {
|
1791 |
+
-webkit-filter: grayscale(0%);
|
1792 |
+
filter: grayscale(0%);
|
1793 |
+
}
|
1794 |
+
|
1795 |
+
.sek-hover-effect-grayscale img:hover {
|
1796 |
+
-webkit-filter: grayscale(100%);
|
1797 |
+
filter: grayscale(100%);
|
1798 |
+
-webkit-filter: gray;
|
1799 |
+
filter: gray;
|
1800 |
+
}
|
1801 |
+
|
1802 |
+
.sek-hover-effect-reverse-grayscale img {
|
1803 |
+
-webkit-filter: grayscale(100%);
|
1804 |
+
filter: grayscale(100%);
|
1805 |
+
-webkit-filter: gray;
|
1806 |
+
filter: gray;
|
1807 |
+
}
|
1808 |
+
|
1809 |
+
.sek-hover-effect-reverse-grayscale img:hover {
|
1810 |
+
-webkit-filter: grayscale(0%);
|
1811 |
+
filter: grayscale(0%);
|
1812 |
+
}
|
1813 |
+
|
1814 |
+
/*************************************
|
1815 |
+
* NIMBLE IMAGE MODULE
|
1816 |
+
*************************************/
|
1817 |
+
.sek-nimble-image-wrapper {
|
1818 |
+
max-width: 100%;
|
1819 |
+
overflow: hidden;
|
1820 |
+
width: 100%;
|
1821 |
+
position: relative;
|
1822 |
+
display: block;
|
1823 |
+
background-position: center center;
|
1824 |
+
background-size: cover;
|
1825 |
+
display: -ms-flexbox;
|
1826 |
+
display: flex;
|
1827 |
+
-ms-flex-align: center;
|
1828 |
+
align-items: center;
|
1829 |
+
-ms-flex-pack: center;
|
1830 |
+
justify-content: center;
|
1831 |
+
-webkit-backface-visibility: hidden;
|
1832 |
+
backface-visibility: hidden;
|
1833 |
+
-webkit-transform-style: preserve-3d;
|
1834 |
+
transform-style: preserve-3d;
|
1835 |
+
}
|
1836 |
+
|
1837 |
+
.sek-nimble-image-wrapper::before {
|
1838 |
+
content: '';
|
1839 |
+
display: block;
|
1840 |
+
padding-top: 100%;
|
1841 |
+
}
|
1842 |
+
|
1843 |
+
.nb-loc [data-sek-level] .sek-module-inner .sek-nimble-image-wrapper a {
|
1844 |
+
color: #ffffff;
|
1845 |
+
}
|
1846 |
+
|
1847 |
+
.nb-loc [data-sek-level] .sek-module-inner .sek-nimble-image-wrapper a:hover {
|
1848 |
+
color: #ffffff;
|
1849 |
+
}
|
1850 |
+
|
1851 |
+
.sek-nimble-image-wrapper .nb-icon-text-wrapper {
|
1852 |
+
position: absolute;
|
1853 |
+
width: 100%;
|
1854 |
+
height: 100%;
|
1855 |
+
z-index: 1;
|
1856 |
+
top: 0;
|
1857 |
+
display: -ms-flexbox;
|
1858 |
+
display: flex;
|
1859 |
+
-ms-flex-direction: column;
|
1860 |
+
flex-direction: column;
|
1861 |
+
-ms-flex-align: center;
|
1862 |
+
align-items: center;
|
1863 |
+
-ms-flex-pack: center;
|
1864 |
+
justify-content: center;
|
1865 |
+
}
|
1866 |
+
|
1867 |
+
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-icon {
|
1868 |
+
font-size: 80px;
|
1869 |
+
line-height: 1em;
|
1870 |
+
color: #000000;
|
1871 |
+
transition: all .3s ease;
|
1872 |
+
}
|
1873 |
+
|
1874 |
+
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text, .sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text * {
|
1875 |
+
color: #000000;
|
1876 |
+
font-size: 16px;
|
1877 |
+
line-height: 1.5em;
|
1878 |
+
font-weight: 400;
|
1879 |
+
transition: all .3s ease;
|
1880 |
+
}
|
1881 |
+
|
1882 |
+
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text p {
|
1883 |
+
margin: 0;
|
1884 |
+
padding: 0;
|
1885 |
+
}
|
1886 |
+
|
1887 |
+
.sek-nimble-image-wrapper.nb-icon-has-hover-color:hover .nb-pro-img-icon {
|
1888 |
+
color: #969696;
|
1889 |
+
}
|
1890 |
+
|
1891 |
+
.sek-nimble-image-mask {
|
1892 |
+
position: absolute;
|
1893 |
+
border-color: #fff;
|
1894 |
+
left: 0;
|
1895 |
+
right: 0;
|
1896 |
+
top: 0;
|
1897 |
+
bottom: 0;
|
1898 |
+
overflow: hidden;
|
1899 |
+
z-index: 1;
|
1900 |
+
display: -ms-flexbox;
|
1901 |
+
display: flex;
|
1902 |
+
-ms-flex-align: center;
|
1903 |
+
align-items: center;
|
1904 |
+
-ms-flex-pack: center;
|
1905 |
+
justify-content: center;
|
1906 |
+
}
|
1907 |
+
|
1908 |
+
.sek-nimble-image-mask::before {
|
1909 |
+
position: absolute;
|
1910 |
+
content: '';
|
1911 |
+
z-index: 1;
|
1912 |
+
border: 150vw solid;
|
1913 |
+
border-color: inherit;
|
1914 |
+
box-sizing: content-box;
|
1915 |
+
transition: all .3s ease;
|
1916 |
+
-webkit-backface-visibility: hidden;
|
1917 |
+
backface-visibility: hidden;
|
1918 |
+
}
|
1919 |
+
|
1920 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand:hover .sek-nimble-image-mask::before,
|
1921 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink .sek-nimble-image-mask::before,
|
1922 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-expanded .sek-nimble-image-mask::before {
|
1923 |
+
width: 88%;
|
1924 |
+
padding-bottom: 88%;
|
1925 |
+
}
|
1926 |
+
|
1927 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink:hover .sek-nimble-image-mask::before,
|
1928 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand .sek-nimble-image-mask::before,
|
1929 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-shrinked .sek-nimble-image-mask::before {
|
1930 |
+
width: 63%;
|
1931 |
+
padding-bottom: 63%;
|
1932 |
+
}
|
1933 |
+
|
1934 |
+
.sek-nimble-image-wrapper.nb-circle-mask .sek-nimble-image-mask::before {
|
1935 |
+
border-radius: 50%;
|
1936 |
+
}
|
1937 |
+
|
1938 |
+
.sek-nimble-image {
|
1939 |
+
position: absolute;
|
1940 |
+
width: 100%;
|
1941 |
+
height: 100%;
|
1942 |
+
background-position: center center;
|
1943 |
+
background-size: cover;
|
1944 |
+
background-repeat: no-repeat;
|
1945 |
+
z-index: 0;
|
1946 |
+
top: 0;
|
1947 |
+
}
|
1948 |
+
|
1949 |
+
.sek-module-inner [data-sek-adv-list-type="none"] > ul {
|
1950 |
+
list-style-type: none;
|
1951 |
+
margin-left: 0 !important;
|
1952 |
+
}
|
1953 |
+
|
1954 |
+
.sek-module-inner [data-sek-adv-list-type="circle"] > ul {
|
1955 |
+
list-style-type: circle;
|
1956 |
+
}
|
1957 |
+
|
1958 |
+
.sek-module-inner [data-sek-adv-list-type="disc"] > ul {
|
1959 |
+
list-style-type: disc;
|
1960 |
+
}
|
1961 |
+
|
1962 |
+
.sek-module-inner [data-sek-adv-list-type="square"] > ul {
|
1963 |
+
list-style-type: square;
|
1964 |
+
}
|
1965 |
+
|
1966 |
+
.sek-module-inner [data-sek-adv-list-type="decimal"] > ol {
|
1967 |
+
list-style-type: decimal;
|
1968 |
+
}
|
1969 |
+
|
1970 |
+
.sek-module-inner [data-sek-adv-list-type="lower-alpha"] > ol {
|
1971 |
+
list-style-type: lower-alpha;
|
1972 |
+
}
|
1973 |
+
|
1974 |
+
.sek-module-inner [data-sek-adv-list-type="lower-roman"] > ol {
|
1975 |
+
list-style-type: lower-roman;
|
1976 |
+
}
|
1977 |
+
|
1978 |
+
.sek-module-inner [data-sek-adv-list-type="upper-roman"] > ol {
|
1979 |
+
list-style-type: upper-roman;
|
1980 |
+
}
|
1981 |
+
|
1982 |
+
.sek-module-inner [data-sek-adv-list-type="upper-alpha"] > ol {
|
1983 |
+
list-style-type: upper-alpha;
|
1984 |
+
}
|
1985 |
+
|
1986 |
+
.sek-module-inner .sek-adv-list-wrapper ul, .sek-module-inner .sek-adv-list-wrapper ol {
|
1987 |
+
padding: 0;
|
1988 |
+
line-height: 1.5;
|
1989 |
+
margin: 0;
|
1990 |
+
margin-left: 25px;
|
1991 |
+
}
|
1992 |
+
|
1993 |
+
.sek-module-inner .sek-adv-list-wrapper ul li, .sek-module-inner .sek-adv-list-wrapper ol li {
|
1994 |
+
text-indent: 0px;
|
1995 |
+
}
|
1996 |
+
|
1997 |
+
.sek-module-inner [data-sek-adv-list-layout="vertical"] ul li, .sek-module-inner [data-sek-adv-list-layout="vertical"] ol li {
|
1998 |
+
display: list-item;
|
1999 |
+
}
|
2000 |
+
|
2001 |
+
.sek-module-inner [data-sek-adv-list-layout="horizontal"] ul li, .sek-module-inner [data-sek-adv-list-layout="horizontal"] ol li {
|
2002 |
+
display: inline-block;
|
2003 |
+
}
|
2004 |
+
|
2005 |
+
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-inner {
|
2006 |
+
display: -ms-flexbox;
|
2007 |
+
display: flex;
|
2008 |
+
}
|
2009 |
+
|
2010 |
+
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text {
|
2011 |
+
transition: color 0.2s ease-in-out;
|
2012 |
+
-ms-flex-align: center;
|
2013 |
+
align-items: center;
|
2014 |
+
display: -ms-flexbox;
|
2015 |
+
display: flex;
|
2016 |
+
}
|
2017 |
+
|
2018 |
+
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text p {
|
2019 |
+
margin: 0;
|
2020 |
+
}
|
2021 |
+
|
2022 |
+
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text a {
|
2023 |
+
cursor: pointer;
|
2024 |
+
}
|
2025 |
+
|
2026 |
+
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-text a:hover {
|
2027 |
+
text-decoration: underline;
|
2028 |
+
}
|
2029 |
+
|
2030 |
+
.sek-module-inner .sek-adv-list-item .sek-adv-list-item-icon {
|
2031 |
+
margin-right: 10px;
|
2032 |
+
-ms-flex-negative: 0;
|
2033 |
+
flex-shrink: 0;
|
2034 |
+
-ms-flex-positive: 0;
|
2035 |
+
flex-grow: 0;
|
2036 |
+
}
|
2037 |
+
|
2038 |
+
.sek-module-inner .sek-adv-list-item [data-sek-icon-border="circle"], .sek-module-inner .sek-adv-list-item [data-sek-icon-border="square"] {
|
2039 |
+
border: 1px solid;
|
2040 |
+
width: 2.2em;
|
2041 |
+
height: 2.2em;
|
2042 |
+
display: -ms-flexbox;
|
2043 |
+
display: flex;
|
2044 |
+
-ms-flex-align: center;
|
2045 |
+
align-items: center;
|
2046 |
+
-ms-flex-pack: center;
|
2047 |
+
justify-content: center;
|
2048 |
+
}
|
2049 |
+
|
2050 |
+
.sek-module-inner .sek-adv-list-item [data-sek-icon-border="circle"] {
|
2051 |
+
border-radius: 2em;
|
2052 |
+
}
|
2053 |
+
|
2054 |
+
/*************************************
|
2055 |
+
* DIVIDER MODULE
|
2056 |
+
*************************************/
|
2057 |
+
[data-sek-module-type="czr_divider_module"] {
|
2058 |
+
text-align: center;
|
2059 |
+
}
|
2060 |
+
|
2061 |
+
[data-sek-module-type="czr_divider_module"] .sek-module-inner {
|
2062 |
+
font-size: 0;
|
2063 |
+
line-height: 0;
|
2064 |
+
}
|
2065 |
+
|
2066 |
+
.sek-module-inner .sek-divider {
|
2067 |
+
border-top: 1px solid #5a5a5a;
|
2068 |
+
display: inline-block;
|
2069 |
+
width: 100%;
|
2070 |
+
margin-top: 15px;
|
2071 |
+
margin-bottom: 15px;
|
2072 |
+
font-size: 1rem;
|
2073 |
+
}
|
2074 |
+
|
2075 |
+
/*************************************
|
2076 |
+
* SPACER MODULE
|
2077 |
+
*************************************/
|
2078 |
+
.sek-module-inner .sek-spacer {
|
2079 |
+
height: 20px;
|
2080 |
+
}
|
2081 |
+
|
2082 |
+
/*************************************
|
2083 |
+
* ICON MODULE
|
2084 |
+
*************************************/
|
2085 |
+
[data-sek-module-type="czr_icon_module"] {
|
2086 |
+
text-align: center;
|
2087 |
+
color: #5a5a5a;
|
2088 |
+
font-size: 15px;
|
2089 |
+
}
|
2090 |
+
|
2091 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon,
|
2092 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon:hover,
|
2093 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon:focus,
|
2094 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon:active,
|
2095 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon.active {
|
2096 |
+
color: inherit;
|
2097 |
+
}
|
2098 |
+
|
2099 |
+
[data-sek-module-type="czr_icon_module"] .box-shadow .sek-icon-wrapper {
|
2100 |
+
box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0;
|
2101 |
+
}
|
2102 |
+
|
2103 |
+
[data-sek-module-type="czr_icon_module"] .sek-icon i {
|
2104 |
+
transition: all 0.15s ease-in-out;
|
2105 |
+
}
|
2106 |
+
|
2107 |
+
[data-sek-module-type="czr_icon_module"] .sek-icon .fas, [data-sek-module-type="czr_icon_module"] .sek-icon .far, [data-sek-module-type="czr_icon_module"] .sek-icon .fab {
|
2108 |
+
width: 1em;
|
2109 |
+
height: 1em;
|
2110 |
+
text-align: center;
|
2111 |
+
}
|
2112 |
+
|
2113 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon {
|
2114 |
+
box-shadow: none;
|
2115 |
+
-webkit-box-shadow: none;
|
2116 |
+
}
|
2117 |
+
|
2118 |
+
[data-sek-module-type="czr_icon_module"] a.sek-icon:hover, [data-sek-module-type="czr_icon_module"] a.sek-icon:focus, [data-sek-module-type="czr_icon_module"] a.sek-icon:active {
|
2119 |
+
box-shadow: none;
|
2120 |
+
-webkit-box-shadow: none;
|
2121 |
+
}
|
2122 |
+
|
2123 |
+
[data-sek-module-type="czr_icon_module"] .sek-icon-wrapper {
|
2124 |
+
display: inline-block;
|
2125 |
+
line-height: 1em;
|
2126 |
+
}
|
2127 |
+
|
2128 |
+
/*************************************
|
2129 |
+
* QUOTE MODULE
|
2130 |
+
*************************************/
|
2131 |
+
.sek-quote p {
|
2132 |
+
margin: 0 0 .5em;
|
2133 |
+
padding: 0;
|
2134 |
+
}
|
2135 |
+
|
2136 |
+
.sek-quote .sek-cite {
|
2137 |
+
font-size: 14px;
|
2138 |
+
line-height: 1.5em;
|
2139 |
+
font-style: inherit;
|
2140 |
+
}
|
2141 |
+
|
2142 |
+
.sek-quote[data-sek-quote-design="none"] {
|
2143 |
+
border-left: none;
|
2144 |
+
}
|
2145 |
+
|
2146 |
+
.sek-quote .sek-quote-content {
|
2147 |
+
font-weight: 400;
|
2148 |
+
font-size: 1.2em;
|
2149 |
+
line-height: 1.5em;
|
2150 |
+
color: inherit;
|
2151 |
+
}
|
2152 |
+
|
2153 |
+
.sek-quote.sek-quote-design {
|
2154 |
+
background: none;
|
2155 |
+
font-style: inherit;
|
2156 |
+
margin-right: 0;
|
2157 |
+
margin-left: 0;
|
2158 |
+
padding: 15px 0;
|
2159 |
+
border: none;
|
2160 |
+
}
|
2161 |
+
|
2162 |
+
.sek-quote.sek-quote-design > * {
|
2163 |
+
padding: 0;
|
2164 |
+
margin: 0;
|
2165 |
+
}
|
2166 |
+
|
2167 |
+
.sek-quote.sek-quote-design::before, .sek-quote.sek-quote-design::after {
|
2168 |
+
display: none;
|
2169 |
+
}
|
2170 |
+
|
2171 |
+
.sek-quote.sek-quote-design .sek-cite {
|
2172 |
+
padding: 0;
|
2173 |
+
font-weight: normal;
|
2174 |
+
}
|
2175 |
+
|
2176 |
+
.sek-quote.sek-quote-design .sek-cite::before {
|
2177 |
+
display: none;
|
2178 |
+
}
|
2179 |
+
|
2180 |
+
.sek-quote.sek-quote-design .sek-quote-inner {
|
2181 |
+
color: inherit;
|
2182 |
+
}
|
2183 |
+
|
2184 |
+
.sek-quote.sek-quote-design.sek-quote-icon-before .sek-quote-inner {
|
2185 |
+
padding-left: 45px;
|
2186 |
+
}
|
2187 |
+
|
2188 |
+
.sek-quote.sek-quote-design.sek-border-before {
|
2189 |
+
padding-left: 15px;
|
2190 |
+
border-left: 5px solid rgba(0, 0, 0, 0.1);
|
2191 |
+
}
|
2192 |
+
|
2193 |
+
.sek-quote.sek-quote-design.sek-border-before .sek-cite {
|
2194 |
+
clear: both;
|
2195 |
+
display: block;
|
2196 |
+
margin-top: 1.5em;
|
2197 |
+
position: relative;
|
2198 |
+
padding-left: 2.2em;
|
2199 |
+
padding-right: 0.25em;
|
2200 |
+
}
|
2201 |
+
|
2202 |
+
.sek-quote.sek-quote-design.sek-border-before .sek-cite::before {
|
2203 |
+
display: block;
|
2204 |
+
content: '';
|
2205 |
+
top: 1em;
|
2206 |
+
position: absolute;
|
2207 |
+
background: none;
|
2208 |
+
width: 2em;
|
2209 |
+
height: auto;
|
2210 |
+
left: 0;
|
2211 |
+
border-top: 1px solid;
|
2212 |
+
}
|
2213 |
+
|
2214 |
+
.sek-quote.sek-quote-design.sek-quote-icon-before {
|
2215 |
+
position: relative;
|
2216 |
+
display: -ms-flexbox;
|
2217 |
+
display: flex;
|
2218 |
+
}
|
2219 |
+
|
2220 |
+
.sek-quote.sek-quote-design.sek-quote-icon-before .sek-quote-content *:last-child {
|
2221 |
+
margin-bottom: .75em;
|
2222 |
+
}
|
2223 |
+
|
2224 |
+
.sek-quote.sek-quote-design.sek-quote-icon-before::before {
|
2225 |
+
content: "\275D";
|
2226 |
+
font-family: "Arial Unicode MS", Code2000;
|
2227 |
+
font-size: 50px;
|
2228 |
+
line-height: 1em;
|
2229 |
+
color: #ccc;
|
2230 |
+
font-style: normal;
|
2231 |
+
text-align: center;
|
2232 |
+
-moz-osx-font-smoothing: grayscale;
|
2233 |
+
-webkit-font-smoothing: antialiased;
|
2234 |
+
font-variant: normal;
|
2235 |
+
text-rendering: auto;
|
2236 |
+
display: -ms-flexbox;
|
2237 |
+
display: flex;
|
2238 |
+
width: auto;
|
2239 |
+
margin: 0;
|
2240 |
+
left: 0;
|
2241 |
+
position: absolute;
|
2242 |
+
top: 10px;
|
2243 |
+
}
|
2244 |
+
|
2245 |
+
/*************************************
|
2246 |
+
* BUTTON MODULE
|
2247 |
+
*************************************/
|
2248 |
+
[data-sek-module-type="czr_button_module"] .sek-module-inner {
|
2249 |
+
text-align: center;
|
2250 |
+
}
|
2251 |
+
|
2252 |
+
.nb-loc .sek-module .sek-module-inner .sek-btn {
|
2253 |
+
background: #020202;
|
2254 |
+
color: #ffffff;
|
2255 |
+
padding: 0.5em 1em;
|
2256 |
+
margin: 0.5em;
|
2257 |
+
}
|
2258 |
+
|
2259 |
+
.nb-loc .sek-module .sek-module-inner .sek-btn i {
|
2260 |
+
margin: 0 8px;
|
2261 |
+
}
|
2262 |
+
|
2263 |
+
.nb-loc .sek-module .sek-module-inner .sek-btn:hover, .nb-loc .sek-module .sek-module-inner .sek-btn:focus, .nb-loc .sek-module .sek-module-inner .sek-btn:active {
|
2264 |
+
color: #ffffff;
|
2265 |
+
background-color: #282828;
|
2266 |
+
text-decoration: none;
|
2267 |
+
}
|
2268 |
+
|
2269 |
+
[data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:focus, [data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:hover {
|
2270 |
+
text-decoration: none;
|
2271 |
+
}
|
2272 |
+
|
2273 |
+
.sek-btn-inner {
|
2274 |
+
display: -ms-flexbox;
|
2275 |
+
display: flex;
|
2276 |
+
-ms-flex-align: center;
|
2277 |
+
align-items: center;
|
2278 |
+
}
|
2279 |
+
|
2280 |
+
.sek-btn-inner .sek-btn-text {
|
2281 |
+
width: 100%;
|
2282 |
+
text-align: center;
|
2283 |
+
}
|
2284 |
+
|
2285 |
+
.sek-btn.box-shadow {
|
2286 |
+
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
2287 |
+
}
|
2288 |
+
|
2289 |
+
.sek-btn.box-shadow.push-effect:active {
|
2290 |
+
-webkit-transform: translateY(2px);
|
2291 |
+
transform: translateY(2px);
|
2292 |
+
}
|
2293 |
+
|
2294 |
+
/*************************************
|
2295 |
+
* POST GRID MODULE
|
2296 |
+
*************************************/
|
2297 |
+
.sek-post-grid-wrapper {
|
2298 |
+
margin-top: 1.5rem;
|
2299 |
+
margin-bottom: 1.5rem;
|
2300 |
+
}
|
2301 |
+
|
2302 |
+
.sek-post-grid-wrapper .sek-grid-items {
|
2303 |
+
grid-row-gap: 25px;
|
2304 |
+
}
|
2305 |
+
|
2306 |
+
.sek-post-grid-wrapper .sek-grid-items.sek-list-layout article > *:not(:last-child):not(.sek-pg-thumbnail) {
|
2307 |
+
margin-bottom: 10px;
|
2308 |
+
}
|
2309 |
+
|
2310 |
+
.sek-post-grid-wrapper .sek-grid-items.sek-grid-layout article > *:not(:last-child) {
|
2311 |
+
margin-bottom: 10px;
|
2312 |
+
}
|
2313 |
+
|
2314 |
+
.sek-post-grid-wrapper .sek-grid-items article {
|
2315 |
+
overflow: hidden;
|
2316 |
+
}
|
2317 |
+
|
2318 |
+
.sek-post-grid-wrapper .sek-grid-items article > :first-child {
|
2319 |
+
margin-top: 0 !important;
|
2320 |
+
}
|
2321 |
+
|
2322 |
+
.sek-post-grid-wrapper .sek-grid-items article > :last-child {
|
2323 |
+
margin-top: 0 !important;
|
2324 |
+
}
|
2325 |
+
|
2326 |
+
.sek-post-grid-wrapper .sek-grid-items article > *:not(:last-child) {
|
2327 |
+
margin-top: 0 !important;
|
2328 |
+
}
|
2329 |
+
|
2330 |
+
.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > *:not(:last-child) {
|
2331 |
+
margin-top: 0 !important;
|
2332 |
+
margin-bottom: 10px;
|
2333 |
+
}
|
2334 |
+
|
2335 |
+
.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > :first-child {
|
2336 |
+
margin-top: 0 !important;
|
2337 |
+
}
|
2338 |
+
|
2339 |
+
.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > :last-child {
|
2340 |
+
margin-top: 0 !important;
|
2341 |
+
}
|
2342 |
+
|
2343 |
+
.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article {
|
2344 |
+
box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);
|
2345 |
+
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
|
2346 |
+
}
|
2347 |
+
|
2348 |
+
.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article:hover {
|
2349 |
+
-webkit-transform: translateY(-4px);
|
2350 |
+
transform: translateY(-4px);
|
2351 |
+
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18), 0 10px 10px rgba(0, 0, 0, 0.15);
|
2352 |
+
}
|
2353 |
+
|
2354 |
+
.sek-post-grid-wrapper .sek-pg-thumbnail {
|
2355 |
+
background: inherit;
|
2356 |
+
overflow: hidden;
|
2357 |
+
}
|
2358 |
+
|
2359 |
+
.sek-post-grid-wrapper .sek-pg-thumbnail img {
|
2360 |
+
box-shadow: 0 5px 5px 0 rgba(18, 63, 82, 0.035), 0 0 0 1px rgba(176, 181, 193, 0.2);
|
2361 |
+
border-radius: 4px;
|
2362 |
+
}
|
2363 |
+
|
2364 |
+
.sek-post-grid-wrapper .sek-pg-thumbnail a {
|
2365 |
+
display: block;
|
2366 |
+
position: relative;
|
2367 |
+
}
|
2368 |
+
|
2369 |
+
.sek-post-grid-wrapper .sek-pg-thumbnail img {
|
2370 |
+
display: block;
|
2371 |
+
width: 100%;
|
2372 |
+
height: auto;
|
2373 |
+
}
|
2374 |
+
|
2375 |
+
.sek-post-grid-wrapper.nb-thumb-box-shadow article .sek-pg-thumbnail img {
|
2376 |
+
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
2377 |
+
}
|
2378 |
+
|
2379 |
+
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a {
|
2380 |
+
height: 0;
|
2381 |
+
padding-top: 65%;
|
2382 |
+
}
|
2383 |
+
|
2384 |
+
@media all and (-ms-high-contrast: none) {
|
2385 |
+
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a {
|
2386 |
+
height: auto !important;
|
2387 |
+
padding-top: inherit !important;
|
2388 |
+
}
|
2389 |
+
}
|
2390 |
+
|
2391 |
+
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img {
|
2392 |
+
position: absolute;
|
2393 |
+
height: 100%;
|
2394 |
+
width: 100%;
|
2395 |
+
max-height: none;
|
2396 |
+
max-width: none;
|
2397 |
+
top: 0;
|
2398 |
+
left: 0;
|
2399 |
+
right: 0;
|
2400 |
+
bottom: 0;
|
2401 |
+
-o-object-fit: cover;
|
2402 |
+
object-fit: cover;
|
2403 |
+
}
|
2404 |
+
|
2405 |
+
@media all and (-ms-high-contrast: none) {
|
2406 |
+
.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img {
|
2407 |
+
height: auto !important;
|
2408 |
+
position: relative;
|
2409 |
+
}
|
2410 |
+
}
|
2411 |
+
|
2412 |
+
.sek-post-grid-wrapper .sek-pg-metas > span:not(:last-child)::after {
|
2413 |
+
content: "\B7";
|
2414 |
+
vertical-align: middle;
|
2415 |
+
margin: 0 5px;
|
2416 |
+
line-height: 1;
|
2417 |
+
}
|
2418 |
+
|
2419 |
+
.sek-post-grid-wrapper .sek-pg-content {
|
2420 |
+
text-align: left;
|
2421 |
+
}
|
2422 |
+
|
2423 |
+
.sek-post-grid-wrapper .sek-excerpt > :last-child {
|
2424 |
+
margin-bottom: 0;
|
2425 |
+
}
|
2426 |
+
|
2427 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-category {
|
2428 |
+
line-height: 1.2em;
|
2429 |
+
color: #767676;
|
2430 |
+
}
|
2431 |
+
|
2432 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-category a {
|
2433 |
+
text-transform: uppercase;
|
2434 |
+
font-size: 13px;
|
2435 |
+
text-decoration: none;
|
2436 |
+
color: #767676;
|
2437 |
+
}
|
2438 |
+
|
2439 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-category a:hover {
|
2440 |
+
color: inherit;
|
2441 |
+
text-decoration: underline;
|
2442 |
+
}
|
2443 |
+
|
2444 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title {
|
2445 |
+
font-size: 28px;
|
2446 |
+
line-height: 1.1em;
|
2447 |
+
}
|
2448 |
+
|
2449 |
+
@media (max-width: 991.98px) {
|
2450 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title {
|
2451 |
+
font-size: 22px;
|
2452 |
+
}
|
2453 |
+
}
|
2454 |
+
|
2455 |
+
@media (max-width: 575.98px) {
|
2456 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title {
|
2457 |
+
font-size: 20px;
|
2458 |
+
}
|
2459 |
+
}
|
2460 |
+
|
2461 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {
|
2462 |
+
text-decoration: none;
|
2463 |
+
color: #121212;
|
2464 |
+
font-size: 28px;
|
2465 |
+
font-weight: 400;
|
2466 |
+
line-height: 1.1em;
|
2467 |
+
-ms-word-wrap: break-word;
|
2468 |
+
word-wrap: break-word;
|
2469 |
+
}
|
2470 |
+
|
2471 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a:hover {
|
2472 |
+
color: #666;
|
2473 |
+
}
|
2474 |
+
|
2475 |
+
@media (max-width: 991.98px) {
|
2476 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {
|
2477 |
+
font-size: 22px;
|
2478 |
+
}
|
2479 |
+
}
|
2480 |
+
|
2481 |
+
@media (max-width: 575.98px) {
|
2482 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {
|
2483 |
+
font-size: 20px;
|
2484 |
+
}
|
2485 |
+
}
|
2486 |
+
|
2487 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas {
|
2488 |
+
line-height: 1.2em;
|
2489 |
+
}
|
2490 |
+
|
2491 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas span, .nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas a {
|
2492 |
+
text-transform: uppercase;
|
2493 |
+
font-size: 13px;
|
2494 |
+
letter-spacing: 1px;
|
2495 |
+
color: #767676;
|
2496 |
+
}
|
2497 |
+
|
2498 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas a:hover {
|
2499 |
+
text-decoration: underline;
|
2500 |
+
color: inherit;
|
2501 |
+
}
|
2502 |
+
|
2503 |
+
.nb-loc .sek-module-inner .sek-post-grid-wrapper .sek-pg-content p {
|
2504 |
+
margin: 0 0 10px 0;
|
2505 |
+
line-height: 1.3em;
|
2506 |
+
font-size: 14px;
|
2507 |
+
color: #555;
|
2508 |
+
}
|
2509 |
+
|
2510 |
+
.sek-post-grid-wrapper .sek-list-layout {
|
2511 |
+
display: -ms-grid;
|
2512 |
+
display: grid;
|
2513 |
+
-ms-grid-columns: minmax(0, 1fr);
|
2514 |
+
grid-template-columns: minmax(0, 1fr);
|
2515 |
+
}
|
2516 |
+
|
2517 |
+
@media all and (-ms-high-contrast: none) {
|
2518 |
+
.sek-post-grid-wrapper .sek-list-layout {
|
2519 |
+
display: block !important;
|
2520 |
+
}
|
2521 |
+
}
|
2522 |
+
|
2523 |
+
.sek-post-grid-wrapper .sek-list-layout article {
|
2524 |
+
display: -ms-grid;
|
2525 |
+
display: grid;
|
2526 |
+
-ms-grid-columns: minmax(0, 1fr);
|
2527 |
+
grid-template-columns: minmax(0, 1fr);
|
2528 |
+
-ms-grid-rows: 1fr;
|
2529 |
+
grid-template-rows: 1fr;
|
2530 |
+
grid-column-gap: 20px;
|
2531 |
+
}
|
2532 |
+
|
2533 |
+
@media all and (-ms-high-contrast: none) {
|
2534 |
+
.sek-post-grid-wrapper .sek-list-layout article {
|
2535 |
+
display: block !important;
|
2536 |
+
padding-top: 10px;
|
2537 |
+
}
|
2538 |
+
}
|
2539 |
+
|
2540 |
+
.sek-post-grid-wrapper .sek-list-layout article > *:nth-child(1) {
|
2541 |
+
-ms-grid-row: 1;
|
2542 |
+
-ms-grid-column: 1;
|
2543 |
+
}
|
2544 |
+
|
2545 |
+
.sek-post-grid-wrapper .sek-list-layout article.sek-has-thumb {
|
2546 |
+
-ms-grid-columns: 30% minmax(0, 1fr);
|
2547 |
+
grid-template-columns: 30% minmax(0, 1fr);
|
2548 |
+
}
|
2549 |
+
|
2550 |
+
.sek-post-grid-wrapper .sek-list-layout article .sek-pg-thumbnail {
|
2551 |
+
margin-bottom: 0;
|
2552 |
+
-ms-flex-item-align: start;
|
2553 |
+
align-self: flex-start;
|
2554 |
+
}
|
2555 |
+
|
2556 |
+
.sek-post-grid-wrapper .sek-grid-layout {
|
2557 |
+
display: -ms-grid;
|
2558 |
+
display: grid;
|
2559 |
+
-ms-grid-columns: 1fr 20px 1fr;
|
2560 |
+
grid-template-columns: 1fr 1fr;
|
2561 |
+
-ms-grid-rows: 1fr;
|
2562 |
+
grid-template-rows: 1fr;
|
2563 |
+
grid-row-gap: 20px;
|
2564 |
+
grid-column-gap: 20px;
|
2565 |
+
}
|
2566 |
+
|
2567 |
+
@media all and (-ms-high-contrast: none) {
|
2568 |
+
.sek-post-grid-wrapper .sek-grid-layout {
|
2569 |
+
display: block !important;
|
2570 |
+
}
|
2571 |
+
}
|
2572 |
+
|
2573 |
+
.sek-post-grid-wrapper .sek-grid-layout > *:nth-child(1) {
|
2574 |
+
-ms-grid-row: 1;
|
2575 |
+
-ms-grid-column: 1;
|
2576 |
+
}
|
2577 |
+
|
2578 |
+
.sek-post-grid-wrapper .sek-grid-layout > *:nth-child(2) {
|
2579 |
+
-ms-grid-row: 1;
|
2580 |
+
-ms-grid-column: 3;
|
2581 |
+
}
|
2582 |
+
|
2583 |
+
.sek-module-inner .nb-masonry-post-grid .sek-grid-items.nb-masonry-grid-images-loaded {
|
2584 |
+
grid-auto-rows: 5px;
|
2585 |
+
}
|
2586 |
+
|
2587 |
+
.sek-module-inner .nb-masonry-post-grid .sek-grid-items article {
|
2588 |
+
overflow: hidden;
|
2589 |
+
}
|
2590 |
+
|
2591 |
+
.sek-module-inner .nb-masonry-post-grid .sek-grid-items.sek-thumb-no-custom-height .sek-pg-thumbnail a {
|
2592 |
+
height: auto;
|
2593 |
+
padding-top: 0;
|
2594 |
+
}
|
2595 |
+
|
2596 |
+
.sek-module-inner .nb-masonry-post-grid .sek-grid-items.sek-thumb-no-custom-height .sek-pg-thumbnail img {
|
2597 |
+
position: relative;
|
2598 |
+
height: auto;
|
2599 |
+
width: 100%;
|
2600 |
+
}
|
2601 |
+
|
2602 |
+
.sek-module-inner .nb-item-box-shadow .sek-grid-items article {
|
2603 |
+
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
2604 |
+
}
|
2605 |
+
|
2606 |
+
.sek-post-navigation #sek-nav-below {
|
2607 |
+
background-color: #f7f8f9;
|
2608 |
+
margin-top: 20px;
|
2609 |
+
padding: 5px;
|
2610 |
+
}
|
2611 |
+
|
2612 |
+
.sek-post-navigation #sek-nav-below .sek-pagination {
|
2613 |
+
text-align: center;
|
2614 |
+
}
|
2615 |
+
|
2616 |
+
.sek-post-navigation #sek-nav-below .sek-pagination ul {
|
2617 |
+
display: inline-block;
|
2618 |
+
vertical-align: middle;
|
2619 |
+
margin: 0;
|
2620 |
+
}
|
2621 |
+
|
2622 |
+
.sek-post-navigation #sek-nav-below .sek-pagination .page-numbers {
|
2623 |
+
font-family: inherit;
|
2624 |
+
opacity: 0.7;
|
2625 |
+
text-decoration: none !important;
|
2626 |
+
}
|
2627 |
+
|
2628 |
+
.sek-post-navigation #sek-nav-below .sek-pagination .current {
|
2629 |
+
font-weight: 600;
|
2630 |
+
opacity: 1;
|
2631 |
+
}
|
2632 |
+
|
2633 |
+
.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list > * {
|
2634 |
+
margin: 0 5px;
|
2635 |
+
}
|
2636 |
+
|
2637 |
+
.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list {
|
2638 |
+
margin: 0 -5px;
|
2639 |
+
}
|
2640 |
+
|
2641 |
+
.sek-post-navigation #sek-nav-below nav {
|
2642 |
+
padding-top: 20px;
|
2643 |
+
padding-bottom: 20px;
|
2644 |
+
}
|
2645 |
+
|
2646 |
+
.sek-post-navigation #sek-nav-below ul.sek-czr-pager {
|
2647 |
+
margin: 0;
|
2648 |
+
}
|
2649 |
+
|
2650 |
+
.sek-post-navigation #sek-nav-below li {
|
2651 |
+
display: inline-block;
|
2652 |
+
font-size: 16px;
|
2653 |
+
}
|
2654 |
+
|
2655 |
+
.sek-post-navigation #sek-nav-below a, .sek-post-navigation #sek-nav-below .sek-meta-nav-title {
|
2656 |
+
text-transform: uppercase;
|
2657 |
+
letter-spacing: 2px;
|
2658 |
+
color: #5A5A5A;
|
2659 |
+
}
|
2660 |
+
|
2661 |
+
.sek-post-navigation #sek-nav-below a:hover, .sek-post-navigation #sek-nav-below .sek-meta-nav-title:hover {
|
2662 |
+
color: #3b3b3b;
|
2663 |
+
opacity: 1 !important;
|
2664 |
+
}
|
2665 |
+
|
2666 |
+
.sek-post-navigation #sek-nav-below .sek-czr-pager > li {
|
2667 |
+
display: block;
|
2668 |
+
}
|
2669 |
+
|
2670 |
+
.sek-post-navigation #sek-nav-below .sek-nav-dir {
|
2671 |
+
display: block;
|
2672 |
+
}
|
2673 |
+
|
2674 |
+
.sek-post-navigation #sek-nav-below .sek-nav-dir > a {
|
2675 |
+
max-width: 100%;
|
2676 |
+
}
|
2677 |
+
|
2678 |
+
.sek-post-navigation #sek-nav-below a i.arrow {
|
2679 |
+
font-size: 0.9em;
|
2680 |
+
}
|
2681 |
+
|
2682 |
+
.sek-post-navigation #sek-nav-below .page-numbers, .sek-post-navigation #sek-nav-below a {
|
2683 |
+
font-family: inherit;
|
2684 |
+
line-height: 30px;
|
2685 |
+
height: 30px;
|
2686 |
+
display: inline-block;
|
2687 |
+
vertical-align: middle;
|
2688 |
+
transition: all 0.3s ease;
|
2689 |
+
position: relative;
|
2690 |
+
}
|
2691 |
+
|
2692 |
+
.sek-post-navigation #sek-nav-below .sek-meta-nav {
|
2693 |
+
display: -ms-flexbox;
|
2694 |
+
display: flex;
|
2695 |
+
transition: all .2s,.6s ease;
|
2696 |
+
opacity: .7;
|
2697 |
+
}
|
2698 |
+
|
2699 |
+
.sek-post-navigation #sek-nav-below a:hover .sek-meta-nav {
|
2700 |
+
opacity: 1;
|
2701 |
+
text-decoration: underline;
|
2702 |
+
}
|
2703 |
+
|
2704 |
+
.sek-post-navigation #sek-nav-below .sek-meta-nav-title {
|
2705 |
+
display: inline-block;
|
2706 |
+
overflow: hidden;
|
2707 |
+
text-overflow: ellipsis;
|
2708 |
+
white-space: nowrap;
|
2709 |
+
vertical-align: middle;
|
2710 |
+
font-size: 0.9em;
|
2711 |
+
}
|
2712 |
+
|
2713 |
/*************************************
|
2714 |
* SIMPLE FORM MODULE
|
2715 |
+
*************************************/
|
2716 |
+
.sek-simple-form-wrapper input[type=text], .sek-simple-form-wrapper textarea {
|
2717 |
+
font-size: 16px;
|
2718 |
+
width: 100% !important;
|
2719 |
+
padding: 0.4em 0.5em;
|
2720 |
+
border-radius: 3px;
|
2721 |
+
box-sizing: border-box;
|
2722 |
+
outline: none;
|
2723 |
+
font-weight: normal;
|
2724 |
+
max-width: 100%;
|
2725 |
+
border: none;
|
2726 |
+
color: #555555;
|
2727 |
+
background-color: #ffffff;
|
2728 |
+
}
|
2729 |
+
|
2730 |
+
.sek-simple-form-wrapper textarea {
|
2731 |
+
height: auto;
|
2732 |
+
max-height: 150px;
|
2733 |
+
}
|
2734 |
+
|
2735 |
+
.sek-simple-form-wrapper .sek-form-field {
|
2736 |
+
margin-bottom: 15px;
|
2737 |
+
clear: both;
|
2738 |
+
}
|
2739 |
+
|
2740 |
+
.sek-simple-form-wrapper label {
|
2741 |
+
color: #444444;
|
2742 |
+
font-weight: bold;
|
2743 |
+
text-align: left;
|
2744 |
+
margin: 0;
|
2745 |
+
padding: 0 0 3px 0;
|
2746 |
+
width: auto;
|
2747 |
+
display: block;
|
2748 |
+
}
|
2749 |
+
|
2750 |
+
.sek-simple-form-wrapper.use-outset-shadow .sek-form-field input[type="text"], .sek-simple-form-wrapper.use-outset-shadow .sek-form-field textarea {
|
2751 |
+
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
2752 |
+
}
|
2753 |
+
|
2754 |
+
.sek-simple-form-wrapper.use-inset-shadow .sek-form-field input[type="text"], .sek-simple-form-wrapper.use-inset-shadow .sek-form-field textarea {
|
2755 |
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
2756 |
+
}
|
2757 |
+
|
2758 |
+
.sek-simple-form-wrapper #sek-form-respond {
|
2759 |
+
padding: 20px 0;
|
2760 |
+
}
|
2761 |
+
|
2762 |
+
.sek-simple-form-wrapper input[type="checkbox"] + label {
|
2763 |
+
display: inline;
|
2764 |
+
font-weight: bold;
|
2765 |
+
margin-left: 0.5rem;
|
2766 |
+
}
|
2767 |
+
|
2768 |
+
.sek-form-message {
|
2769 |
+
padding: 10px;
|
2770 |
+
margin: 10px 0;
|
2771 |
+
text-align: center;
|
2772 |
+
line-height: 1.5em;
|
2773 |
+
font-size: 16px;
|
2774 |
+
border-radius: 4px;
|
2775 |
+
}
|
2776 |
+
|
2777 |
+
.sek-form-message.sek-mail-failure {
|
2778 |
+
color: #ff0000;
|
2779 |
+
border: 1px solid #ff0000;
|
2780 |
+
background: none;
|
2781 |
+
background: rgba(255, 0, 0, 0.05);
|
2782 |
+
}
|
2783 |
+
|
2784 |
+
.sek-form-message.sek-mail-success {
|
2785 |
+
color: #008000;
|
2786 |
+
border: 1px solid #008000;
|
2787 |
+
background: none;
|
2788 |
+
background: rgba(0, 128, 0, 0.05);
|
2789 |
+
}
|
2790 |
+
|
2791 |
+
.sek-form-message.sek-mail-aborted {
|
2792 |
+
color: #ffa500;
|
2793 |
+
border: 1px solid #ffa500;
|
2794 |
+
background: none;
|
2795 |
+
background: rgba(255, 165, 0, 0.05);
|
2796 |
+
}
|
2797 |
+
|
2798 |
+
.grecaptcha-badge {
|
2799 |
+
z-index: 1;
|
2800 |
+
}
|
2801 |
+
|
2802 |
+
.sek-hide-rc-badge .grecaptcha-badge {
|
2803 |
+
display: none;
|
2804 |
+
}
|
2805 |
+
|
2806 |
+
.sek-show-rc-badge .grecaptcha-badge {
|
2807 |
+
display: block;
|
2808 |
+
visibility: visible !important;
|
2809 |
+
}
|
2810 |
+
|
2811 |
/*************************************
|
2812 |
* TINY MCE EDITOR MODULE
|
2813 |
+
*************************************/
|
2814 |
+
[data-sek-module-type="czr_tiny_mce_editor_module"] a {
|
2815 |
+
text-decoration: underline;
|
2816 |
+
}
|
2817 |
+
|
2818 |
/*************************************
|
2819 |
* SOCIAL ICONS MODULE
|
2820 |
+
*************************************/
|
2821 |
+
[data-sek-module-type="czr_social_icons_module"] .sek-module-inner .sek-social-icons-wrapper {
|
2822 |
+
margin: 10px 0;
|
2823 |
+
}
|
2824 |
+
|
2825 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper {
|
2826 |
+
text-align: center;
|
2827 |
+
}
|
2828 |
+
|
2829 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > *:not(:last-child) {
|
2830 |
+
padding-right: 8px;
|
2831 |
+
}
|
2832 |
+
|
2833 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li {
|
2834 |
+
display: inline-block;
|
2835 |
+
}
|
2836 |
+
|
2837 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li a {
|
2838 |
+
color: #707070;
|
2839 |
+
}
|
2840 |
+
|
2841 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
2842 |
+
font-size: 28px;
|
2843 |
+
line-height: 1.5em;
|
2844 |
+
}
|
2845 |
+
|
2846 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
2847 |
+
transition: all 0.2s ease-in-out;
|
2848 |
+
}
|
2849 |
+
|
2850 |
/*************************************
|
2851 |
* IMAGE SLIDER MODULE
|
2852 |
+
*************************************/
|
2853 |
+
.sek-column-inner [data-sek-module-type="czr_img_slider_module"] {
|
2854 |
+
width: calc(100% + 20px);
|
2855 |
+
max-width: calc(100% + 20px);
|
2856 |
+
}
|
2857 |
+
|
2858 |
+
[data-sek-module-type="czr_img_slider_module"] {
|
2859 |
+
/* SWIPER BULLETS */
|
2860 |
+
/* SWIPER ARROWS */
|
2861 |
+
}
|
2862 |
+
|
2863 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-carousel-img [src*="data:image/gif;"] {
|
2864 |
+
display: none;
|
2865 |
+
}
|
2866 |
+
|
2867 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-loading .sek-carousel-img img {
|
2868 |
+
display: none;
|
2869 |
+
}
|
2870 |
+
|
2871 |
+
.customizer-preview .swiper-wrapper .swiper-lazy-preloader {
|
2872 |
+
display: none;
|
2873 |
+
}
|
2874 |
+
|
2875 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper {
|
2876 |
+
width: 100%;
|
2877 |
+
height: 100%;
|
2878 |
+
overflow: hidden;
|
2879 |
+
}
|
2880 |
+
|
2881 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper .swiper-wrapper {
|
2882 |
+
display: -ms-flexbox;
|
2883 |
+
display: flex;
|
2884 |
+
-ms-flex-align: center;
|
2885 |
+
align-items: center;
|
2886 |
+
height: 400px;
|
2887 |
+
}
|
2888 |
+
|
2889 |
+
@media (max-width: 575.98px) {
|
2890 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper .swiper-wrapper {
|
2891 |
+
height: 200px;
|
2892 |
+
}
|
2893 |
+
}
|
2894 |
+
|
2895 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="nimble-wizard"] .sek-carousel-img {
|
2896 |
+
height: 100%;
|
2897 |
+
overflow: hidden;
|
2898 |
+
}
|
2899 |
+
|
2900 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="nimble-wizard"] .sek-carousel-img img {
|
2901 |
+
max-width: none;
|
2902 |
+
opacity: 0;
|
2903 |
+
transition: opacity 0.15s ease-in-out;
|
2904 |
+
}
|
2905 |
+
|
2906 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="height-100"] .sek-carousel-img {
|
2907 |
+
height: 100%;
|
2908 |
+
width: auto;
|
2909 |
+
overflow: hidden;
|
2910 |
+
}
|
2911 |
+
|
2912 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="height-100"] .sek-carousel-img img {
|
2913 |
+
width: auto;
|
2914 |
+
height: 100%;
|
2915 |
+
max-width: none;
|
2916 |
+
}
|
2917 |
+
|
2918 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="cover"] .sek-carousel-img {
|
2919 |
+
height: 100%;
|
2920 |
+
width: 100%;
|
2921 |
+
overflow: hidden;
|
2922 |
+
display: -ms-flexbox;
|
2923 |
+
display: flex;
|
2924 |
+
-ms-flex-pack: center;
|
2925 |
+
justify-content: center;
|
2926 |
+
-ms-flex-align: center;
|
2927 |
+
align-items: center;
|
2928 |
+
}
|
2929 |
+
|
2930 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper[data-sek-image-layout="cover"] .sek-carousel-img img {
|
2931 |
+
width: 100%;
|
2932 |
+
height: 100%;
|
2933 |
+
max-width: none;
|
2934 |
+
-o-object-fit: cover;
|
2935 |
+
object-fit: cover;
|
2936 |
+
}
|
2937 |
+
|
2938 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide {
|
2939 |
+
text-align: center;
|
2940 |
+
font-size: 18px;
|
2941 |
+
/* Center slide image vertically */
|
2942 |
+
display: -ms-flexbox;
|
2943 |
+
display: flex;
|
2944 |
+
-ms-flex-pack: center;
|
2945 |
+
justify-content: center;
|
2946 |
+
-ms-flex-align: center;
|
2947 |
+
align-items: center;
|
2948 |
+
}
|
2949 |
+
|
2950 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide[data-sek-slide-link] {
|
2951 |
+
cursor: pointer;
|
2952 |
+
}
|
2953 |
+
|
2954 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img {
|
2955 |
+
width: 100%;
|
2956 |
+
}
|
2957 |
+
|
2958 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img {
|
2959 |
+
width: 100%;
|
2960 |
+
}
|
2961 |
+
|
2962 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img.sek-h-centrd {
|
2963 |
+
width: auto !important;
|
2964 |
+
max-width: none !important;
|
2965 |
+
position: relative;
|
2966 |
+
opacity: 1;
|
2967 |
+
}
|
2968 |
+
|
2969 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-carousel-img img.sek-v-centrd {
|
2970 |
+
height: auto !important;
|
2971 |
+
max-height: none !important;
|
2972 |
+
vertical-align: top;
|
2973 |
+
position: relative;
|
2974 |
+
max-width: none !important;
|
2975 |
+
opacity: 1;
|
2976 |
+
}
|
2977 |
+
|
2978 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide[data-sek-has-overlay="true"] .sek-carousel-img::after {
|
2979 |
+
content: '';
|
2980 |
+
left: 0;
|
2981 |
+
right: 0;
|
2982 |
+
bottom: 0;
|
2983 |
+
top: 0;
|
2984 |
+
position: absolute;
|
2985 |
+
background-color: #000000;
|
2986 |
+
opacity: 0.3;
|
2987 |
+
}
|
2988 |
+
|
2989 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-wrapper {
|
2990 |
+
height: 100%;
|
2991 |
+
width: 100%;
|
2992 |
+
-webkit-transform: translate(-50%, -50%);
|
2993 |
+
transform: translate(-50%, -50%);
|
2994 |
+
-webkit-transform: translate3d(-50%, -50%, 0);
|
2995 |
+
transform: translate3d(-50%, -50%, 0);
|
2996 |
+
top: 50%;
|
2997 |
+
left: 50%;
|
2998 |
+
position: absolute;
|
2999 |
/* Center slide text vertically
|
3000 |
+
=> consistent with defaults in module registration */
|
3001 |
+
display: -ms-flexbox;
|
3002 |
+
display: flex;
|
3003 |
+
-ms-flex-pack: center;
|
3004 |
+
justify-content: center;
|
3005 |
+
-ms-flex-align: center;
|
3006 |
+
align-items: center;
|
3007 |
+
}
|
3008 |
+
|
3009 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-content {
|
3010 |
+
height: auto;
|
3011 |
+
max-height: 100%;
|
3012 |
+
width: 100%;
|
3013 |
+
padding: 5%;
|
3014 |
+
text-align: center;
|
3015 |
+
z-index: 3;
|
3016 |
+
overflow: hidden;
|
3017 |
+
color: #e2e2e2;
|
3018 |
+
font-size: 16px;
|
3019 |
+
line-height: 1.5em;
|
3020 |
+
}
|
3021 |
+
|
3022 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-slide .sek-slider-text-content * {
|
3023 |
+
font-size: 16px;
|
3024 |
+
line-height: 1.5em;
|
3025 |
+
}
|
3026 |
+
|
3027 |
+
[data-sek-module-type="czr_img_slider_module"] .swiper-pagination-bullet-active {
|
3028 |
+
background-color: #ffffff;
|
3029 |
+
}
|
3030 |
+
|
3031 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav {
|
3032 |
+
cursor: pointer;
|
3033 |
+
}
|
3034 |
+
|
3035 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-chevron {
|
3036 |
+
display: inline-block;
|
3037 |
+
border-right: 2px solid #ffffff;
|
3038 |
+
border-bottom: 2px solid #ffffff;
|
3039 |
+
width: 11px;
|
3040 |
+
height: 11px;
|
3041 |
+
}
|
3042 |
+
|
3043 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev {
|
3044 |
+
left: 0;
|
3045 |
+
border-top-left-radius: 0px;
|
3046 |
+
border-top-right-radius: 2px;
|
3047 |
+
border-bottom-right-radius: 2px;
|
3048 |
+
border-bottom-left-radius: 0px;
|
3049 |
+
}
|
3050 |
+
|
3051 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev .sek-chevron {
|
3052 |
+
-webkit-transform: rotate(-225deg);
|
3053 |
+
transform: rotate(-225deg);
|
3054 |
+
}
|
3055 |
+
|
3056 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next {
|
3057 |
+
right: 0;
|
3058 |
+
border-top-left-radius: 2px;
|
3059 |
+
border-top-right-radius: 0px;
|
3060 |
+
border-bottom-right-radius: 0px;
|
3061 |
+
border-bottom-left-radius: 2px;
|
3062 |
+
}
|
3063 |
+
|
3064 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next .sek-chevron {
|
3065 |
+
-webkit-transform: rotate(-45deg);
|
3066 |
+
transform: rotate(-45deg);
|
3067 |
+
}
|
3068 |
+
|
3069 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev, [data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next {
|
3070 |
+
position: absolute;
|
3071 |
+
z-index: 2;
|
3072 |
+
top: calc(50% - 30px);
|
3073 |
+
text-align: center;
|
3074 |
+
margin-top: 0px;
|
3075 |
+
-webkit-backface-visibility: hidden;
|
3076 |
+
backface-visibility: hidden;
|
3077 |
+
display: block;
|
3078 |
+
height: 60px;
|
3079 |
+
width: 50px;
|
3080 |
+
opacity: 0.6;
|
3081 |
+
background-color: rgba(32, 32, 32, 0.4);
|
3082 |
+
transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
|
3083 |
+
line-height: 64px;
|
3084 |
+
cursor: pointer;
|
3085 |
+
font-size: 18px;
|
3086 |
+
}
|
3087 |
+
|
3088 |
+
[data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-prev:hover, [data-sek-module-type="czr_img_slider_module"] .sek-swiper-nav .sek-swiper-next:hover {
|
3089 |
+
background-color: rgba(32, 32, 32, 0.7);
|
3090 |
+
opacity: 1;
|
3091 |
+
width: 100px;
|
3092 |
+
}
|
3093 |
+
|
3094 |
+
@media (max-width: 575.98px) {
|
3095 |
+
[data-sek-module-type="czr_img_slider_module"] [data-sek-hide-nav-on-mobile="true"] .swiper-pagination {
|
3096 |
+
display: none;
|
3097 |
+
}
|
3098 |
+
[data-sek-module-type="czr_img_slider_module"] [data-sek-hide-nav-on-mobile="true"] .sek-swiper-nav {
|
3099 |
+
display: none;
|
3100 |
+
}
|
3101 |
+
}
|
3102 |
+
|
3103 |
/*************************************
|
3104 |
* ACCORDION MODULE
|
3105 |
+
*************************************/
|
3106 |
+
.sek-accord-wrapper {
|
3107 |
+
text-align: left;
|
3108 |
+
}
|
3109 |
+
|
3110 |
+
.sek-accord-wrapper .sek-accord-item {
|
3111 |
+
border: 1px solid #e3e3e3;
|
3112 |
+
overflow: hidden;
|
3113 |
+
}
|
3114 |
+
|
3115 |
+
.sek-accord-wrapper .sek-accord-item:not(:last-child) {
|
3116 |
+
margin-bottom: 0px;
|
3117 |
+
}
|
3118 |
+
|
3119 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title {
|
3120 |
+
cursor: pointer;
|
3121 |
+
color: #565656;
|
3122 |
+
background: #ffffff;
|
3123 |
+
display: -ms-flexbox;
|
3124 |
+
display: flex;
|
3125 |
+
-ms-flex-align: center;
|
3126 |
+
align-items: center;
|
3127 |
+
-ms-flex-pack: justify;
|
3128 |
+
justify-content: space-between;
|
3129 |
+
padding: 15px 20px;
|
3130 |
+
border-top: none;
|
3131 |
+
border-right: none;
|
3132 |
+
border-left: none;
|
3133 |
+
border-bottom: 1px solid #e3e3e3;
|
3134 |
+
font-size: 16px;
|
3135 |
+
line-height: 1.5em;
|
3136 |
+
font-weight: 600;
|
3137 |
+
-ms-flex-positive: 1;
|
3138 |
+
flex-grow: 1;
|
3139 |
+
}
|
3140 |
+
|
3141 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover * {
|
3142 |
+
color: #1e261f;
|
3143 |
+
}
|
3144 |
+
|
3145 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover .expander span {
|
3146 |
+
background: #1e261f;
|
3147 |
+
}
|
3148 |
+
|
3149 |
+
[data-sek-expanded="true"] .sek-accord-title * {
|
3150 |
+
color: #1e261f;
|
3151 |
+
}
|
3152 |
+
|
3153 |
+
[data-sek-expanded="true"] .sek-accord-title .expander span {
|
3154 |
+
background: #1e261f;
|
3155 |
+
}
|
3156 |
+
|
3157 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title {
|
3158 |
+
padding-right: 10px;
|
3159 |
+
max-width: calc(100% - 30px);
|
3160 |
+
}
|
3161 |
+
|
3162 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title, .sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span {
|
3163 |
+
transition: all 0.15s ease-in-out;
|
3164 |
+
}
|
3165 |
+
|
3166 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander {
|
3167 |
+
color: #1e261f;
|
3168 |
+
width: 30px;
|
3169 |
+
height: 30px;
|
3170 |
+
padding: 0;
|
3171 |
+
margin: 0;
|
3172 |
+
outline: none;
|
3173 |
+
border: 0;
|
3174 |
+
background: none;
|
3175 |
+
box-shadow: none;
|
3176 |
+
font-size: 1.5em;
|
3177 |
+
position: relative;
|
3178 |
+
cursor: pointer;
|
3179 |
+
}
|
3180 |
+
|
3181 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span {
|
3182 |
+
position: absolute;
|
3183 |
+
transition: .3s;
|
3184 |
+
background: #565656;
|
3185 |
+
border-radius: 2px;
|
3186 |
+
}
|
3187 |
+
|
3188 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:first-of-type {
|
3189 |
+
top: 25%;
|
3190 |
+
bottom: 25%;
|
3191 |
+
width: 10%;
|
3192 |
+
left: 45%;
|
3193 |
+
}
|
3194 |
+
|
3195 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:last-of-type {
|
3196 |
+
left: 25%;
|
3197 |
+
right: 25%;
|
3198 |
+
height: 10%;
|
3199 |
+
top: 45%;
|
3200 |
+
}
|
3201 |
+
|
3202 |
+
[data-sek-expanded="true"] .expander span:first-of-type, [data-sek-expanded="true"] .expander span:last-of-type {
|
3203 |
+
-webkit-transform: rotate(90deg);
|
3204 |
+
transform: rotate(90deg);
|
3205 |
+
}
|
3206 |
+
|
3207 |
+
[data-sek-expanded="true"] .expander span:last-of-type {
|
3208 |
+
left: 50%;
|
3209 |
+
right: 50%;
|
3210 |
+
}
|
3211 |
+
|
3212 |
+
[data-sek-has-global-border="true"][data-sek-has-title-border="true"] [data-sek-expanded="false"] .sek-accord-title {
|
3213 |
+
border-bottom: none;
|
3214 |
+
}
|
3215 |
+
|
3216 |
+
[data-sek-has-global-border="true"][data-sek-has-title-border="true"] .sek-accord-item:not(:last-child) {
|
3217 |
+
border-bottom: none;
|
3218 |
+
}
|
3219 |
+
|
3220 |
+
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] .sek-accord-title .expander span:first-of-type, .sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] .sek-accord-title .expander span:last-of-type {
|
3221 |
+
-webkit-transform: rotate(90deg);
|
3222 |
+
transform: rotate(90deg);
|
3223 |
+
}
|
3224 |
+
|
3225 |
+
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] .sek-accord-title .expander span:last-of-type {
|
3226 |
+
left: 50%;
|
3227 |
+
right: 50%;
|
3228 |
+
}
|
3229 |
+
|
3230 |
+
.sek-accord-wrapper .sek-accord-item .sek-accord-content {
|
3231 |
+
padding: 15px 20px;
|
3232 |
+
background: #f2f2f2;
|
3233 |
+
color: #1e261f;
|
3234 |
+
font-size: 16px;
|
3235 |
+
line-height: 1.5em;
|
3236 |
+
}
|
3237 |
+
|
3238 |
+
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="true"] > .sek-accord-content {
|
3239 |
+
display: block;
|
3240 |
+
}
|
3241 |
+
|
3242 |
+
.sek-accord-wrapper .sek-accord-item[data-sek-expanded="false"] > .sek-accord-content {
|
3243 |
+
display: none;
|
3244 |
+
}
|
3245 |
+
|
3246 |
/*************************************
|
3247 |
* SHORTCODE MODULE
|
3248 |
+
*************************************/
|
3249 |
+
[data-sek-module-type="czr_shortcode_module"] [data-sek-use-flexbox="true"] {
|
3250 |
+
display: -ms-flexbox;
|
3251 |
+
display: flex;
|
3252 |
+
-ms-flex-pack: center;
|
3253 |
+
justify-content: center;
|
3254 |
+
}
|
3255 |
+
|
3256 |
+
.sek-gal-wrapper:not(.nb-auto-column-width) {
|
3257 |
+
display: -ms-flexbox;
|
3258 |
+
display: flex;
|
3259 |
+
-ms-flex-align: center;
|
3260 |
+
align-items: center;
|
3261 |
+
-ms-flex-pack: center;
|
3262 |
+
justify-content: center;
|
3263 |
+
}
|
3264 |
+
|
3265 |
+
.sek-gal-wrapper .sek-gal-items {
|
3266 |
+
display: -ms-grid;
|
3267 |
+
display: grid;
|
3268 |
+
-ms-grid-columns: 1fr 20px 1fr;
|
3269 |
+
grid-template-columns: 1fr 1fr;
|
3270 |
+
-ms-grid-rows: 1fr;
|
3271 |
+
grid-template-rows: 1fr;
|
3272 |
+
grid-row-gap: 20px;
|
3273 |
+
grid-column-gap: 20px;
|
3274 |
+
}
|
3275 |
+
|
3276 |
+
@media all and (-ms-high-contrast: none) {
|
3277 |
+
.sek-gal-wrapper .sek-gal-items {
|
3278 |
+
display: block !important;
|
3279 |
+
}
|
3280 |
+
}
|
3281 |
+
|
3282 |
+
.sek-gal-wrapper .sek-gal-items > *:nth-child(1) {
|
3283 |
+
-ms-grid-row: 1;
|
3284 |
+
-ms-grid-column: 1;
|
3285 |
+
}
|
3286 |
+
|
3287 |
+
.sek-gal-wrapper .sek-gal-items > *:nth-child(2) {
|
3288 |
+
-ms-grid-row: 1;
|
3289 |
+
-ms-grid-column: 3;
|
3290 |
+
}
|
3291 |
+
|
3292 |
+
.sek-gal-wrapper .sek-img-gal-item {
|
3293 |
+
transition: all 0.15s ease-in-out;
|
3294 |
+
overflow: hidden;
|
3295 |
+
}
|
3296 |
+
|
3297 |
+
.sek-gal-wrapper .sek-img-gal-item img {
|
3298 |
+
height: 100%;
|
3299 |
+
width: 100%;
|
3300 |
+
-o-object-fit: cover;
|
3301 |
+
object-fit: cover;
|
3302 |
+
}
|
3303 |
+
|
3304 |
+
.sek-gal-wrapper .sek-img-gal-item:hover {
|
3305 |
+
opacity: .9;
|
3306 |
+
}
|
3307 |
+
|
3308 |
+
.sek-module-inner .nb-gal-item-box-shadow .sek-gal-items figure {
|
3309 |
+
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
|
3310 |
+
}
|
3311 |
+
|
3312 |
+
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items.nb-masonry-gal-images-loaded {
|
3313 |
+
grid-auto-rows: 5px;
|
3314 |
+
}
|
3315 |
+
|
3316 |
+
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items .sek-img-gal-item img {
|
3317 |
+
height: auto;
|
3318 |
+
}
|
3319 |
+
|
3320 |
+
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items.sek-gal-img-natural-height img {
|
3321 |
+
height: auto !important;
|
3322 |
+
}
|
3323 |
+
|
3324 |
+
.sek-module-inner .nb-masonry-gal-grid .sek-gal-items.sek-gal-img-height-100-percent img {
|
3325 |
+
height: 100%;
|
3326 |
+
}
|
3327 |
+
|
3328 |
/*************************************
|
3329 |
* ACCORDION MODULE
|
3330 |
+
*************************************/
|
3331 |
+
.sek-module-inner {
|
3332 |
+
line-height: 1.5em;
|
3333 |
+
}
|
3334 |
+
|
3335 |
+
.sek-module-inner h1, .sek-module-inner h2, .sek-module-inner h3, .sek-module-inner h4, .sek-module-inner h5, .sek-module-inner h6, .sek-module-inner p {
|
3336 |
+
line-height: 1.5em;
|
3337 |
+
font-weight: 400;
|
3338 |
+
margin: 0.6em 0;
|
3339 |
+
}
|
3340 |
+
|
3341 |
+
.sek-module-inner h1 {
|
3342 |
+
font-size: 2.48em;
|
3343 |
+
}
|
3344 |
+
|
3345 |
+
.sek-module-inner h2 {
|
3346 |
+
font-size: 2.07em;
|
3347 |
+
}
|
3348 |
+
|
3349 |
+
.sek-module-inner h3 {
|
3350 |
+
font-size: 1.73em;
|
3351 |
+
}
|
3352 |
+
|
3353 |
+
.sek-module-inner h4 {
|
3354 |
+
font-size: 1.44em;
|
3355 |
+
}
|
3356 |
+
|
3357 |
+
.sek-module-inner h5 {
|
3358 |
+
font-size: 1.2em;
|
3359 |
+
}
|
3360 |
+
|
3361 |
+
.sek-module-inner h6 {
|
3362 |
+
font-size: 1em;
|
3363 |
+
}
|
3364 |
+
|
3365 |
+
.sek-module-inner p {
|
3366 |
+
margin: 0 0 1em;
|
3367 |
+
padding: 0;
|
3368 |
+
}
|
3369 |
+
|
3370 |
+
.sek-module-inner a {
|
3371 |
+
text-decoration: none;
|
3372 |
+
box-shadow: none;
|
3373 |
+
transition: color 0.2s ease-in-out;
|
3374 |
+
}
|
3375 |
+
|
3376 |
+
.sek-module-inner img {
|
3377 |
+
height: auto;
|
3378 |
+
max-width: 100%;
|
3379 |
+
border: none;
|
3380 |
+
border-radius: 0;
|
3381 |
+
box-shadow: none;
|
3382 |
+
}
|
3383 |
+
|
3384 |
+
[data-sek-module-type="czr_tiny_mce_editor_module"] .sek-module-inner a:not(.wp-block-button__link),
|
3385 |
+
[data-sek-module-type="czr_shortcode_module"] .sek-module-inner a:not(.wp-block-button__link),
|
3386 |
+
[data-sek-module-type="czr_accordion_module"] .sek-module-inner a:not(.wp-block-button__link),
|
3387 |
+
[data-sek-module-type="czr_simple_html_module"] .sek-module-inner a:not(.wp-block-button__link) {
|
3388 |
+
text-decoration: underline;
|
3389 |
+
}
|
3390 |
+
|
3391 |
+
body .sektion-wrapper .sek-row [data-sek-level="module"] .sek-module-inner a:not(.sek-btn):not(.button):focus {
|
3392 |
+
background: none;
|
3393 |
+
}
|
3394 |
+
|
3395 |
+
body .sek-module-inner h1:before, body .sek-module-inner h2:before, body .sek-module-inner h3:before, body .sek-module-inner h4:before, body .sek-module-inner h5:before, body .sek-module-inner h6:before {
|
3396 |
+
content: none;
|
3397 |
+
background: none;
|
3398 |
}
|
3399 |
/*# sourceMappingURL=sek-base.css.map */
|
assets/front/css/sek-wp-comments.css
CHANGED
@@ -1,280 +1,280 @@
|
|
1 |
/* ------------------------------------------------------------------------- *
|
2 |
* Comments ( added April 2021 for site templates )
|
3 |
-
/* ------------------------------------------------------------------------- */
|
4 |
-
.sektion-wrapper .sek-module-inner {
|
5 |
-
/* comment text */
|
6 |
-
/* post author & admin comment */
|
7 |
-
/* child comment */
|
8 |
/* comments : nav
|
9 |
-
/* ------------------------------------ */
|
10 |
/* comments : form
|
11 |
-
/* ------------------------------------ */
|
12 |
-
}
|
13 |
-
|
14 |
-
.sektion-wrapper .sek-module-inner #sek-comments {
|
15 |
-
margin-top: 20px;
|
16 |
-
}
|
17 |
-
|
18 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist {
|
19 |
-
margin: 0 0 20px 0;
|
20 |
-
list-style: none;
|
21 |
-
}
|
22 |
-
|
23 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist li {
|
24 |
-
padding-left: 60px;
|
25 |
-
font-size: 0.93rem;
|
26 |
-
line-height: 1.5714rem;
|
27 |
-
font-weight: 400;
|
28 |
-
}
|
29 |
-
|
30 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-body {
|
31 |
-
clear: both;
|
32 |
-
position: relative;
|
33 |
-
padding-bottom: 15px;
|
34 |
-
margin: 0;
|
35 |
-
}
|
36 |
-
|
37 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-content {
|
38 |
-
margin: 0;
|
39 |
-
}
|
40 |
-
|
41 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-author,
|
42 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-meta .comment-metadata,
|
43 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-awaiting-moderation {
|
44 |
-
font-size: 0.8125rem;
|
45 |
-
display: block;
|
46 |
-
float: left;
|
47 |
-
line-height: 1.5384rem;
|
48 |
-
padding: 0 0 0.5rem 0;
|
49 |
-
}
|
50 |
-
|
51 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-meta,
|
52 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-author {
|
53 |
-
margin-right: 6px;
|
54 |
-
}
|
55 |
-
|
56 |
-
.sektion-wrapper .sek-module-inner .comment-meta .comment-metadata .edit-link {
|
57 |
-
margin-left: 1rem;
|
58 |
-
}
|
59 |
-
|
60 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .fn {
|
61 |
-
color: #444;
|
62 |
-
font-size: 0.8125rem;
|
63 |
-
font-style: normal;
|
64 |
-
font-weight: 600;
|
65 |
-
}
|
66 |
-
|
67 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .says {
|
68 |
-
display: none;
|
69 |
-
}
|
70 |
-
|
71 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .avatar {
|
72 |
-
position: absolute;
|
73 |
-
left: -60px;
|
74 |
-
top: 0;
|
75 |
-
width: 48px;
|
76 |
-
height: 48px;
|
77 |
-
-webkit-border-radius: 3px;
|
78 |
-
border-radius: 3px;
|
79 |
-
}
|
80 |
-
|
81 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-meta a {
|
82 |
-
color: #757575;
|
83 |
-
}
|
84 |
-
|
85 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .reply {
|
86 |
-
font-size: 0.8125rem;
|
87 |
-
line-height: 1.231rem;
|
88 |
-
}
|
89 |
-
|
90 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .reply a {
|
91 |
-
color: #757575;
|
92 |
-
}
|
93 |
-
|
94 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .reply a:hover {
|
95 |
-
color: #444;
|
96 |
-
}
|
97 |
-
|
98 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-awaiting-moderation {
|
99 |
-
color: #16cfc1;
|
100 |
-
font-style: normal;
|
101 |
-
}
|
102 |
-
|
103 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-body p {
|
104 |
-
margin-bottom: 8px;
|
105 |
-
clear: both;
|
106 |
-
font-size: 0.95em;
|
107 |
-
}
|
108 |
-
|
109 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-body strong {
|
110 |
-
font-weight: bold;
|
111 |
-
}
|
112 |
-
|
113 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-body em {
|
114 |
-
font-style: italic;
|
115 |
-
}
|
116 |
-
|
117 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-body ol li {
|
118 |
-
list-style: decimal;
|
119 |
-
margin-left: 2em;
|
120 |
-
padding: 0;
|
121 |
-
}
|
122 |
-
|
123 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-body ul li {
|
124 |
-
list-style: square;
|
125 |
-
margin-left: 2em;
|
126 |
-
padding: 0;
|
127 |
-
}
|
128 |
-
|
129 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist li.bypostauthor > .comment-body:after,
|
130 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist li.bypostauthor > .comment-body:after,
|
131 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist li.comment-author-admin > .comment-body:after {
|
132 |
-
top: 32px;
|
133 |
-
left: -28px;
|
134 |
-
font-size: 10px;
|
135 |
-
padding: 2px;
|
136 |
-
-webkit-border-radius: 3px;
|
137 |
-
border-radius: 3px;
|
138 |
-
}
|
139 |
-
|
140 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist li li.bypostauthor > .comment-body:after,
|
141 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist li li.comment-author-admin > .comment-body:after {
|
142 |
-
top: 22px;
|
143 |
-
left: -26px;
|
144 |
-
font-size: 8px;
|
145 |
-
padding: 1px;
|
146 |
-
-webkit-border-radius: 2px;
|
147 |
-
border-radius: 2px;
|
148 |
-
}
|
149 |
-
|
150 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist li li {
|
151 |
-
padding-left: 48px;
|
152 |
-
margin: 0;
|
153 |
-
}
|
154 |
-
|
155 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist li li .avatar {
|
156 |
-
width: 36px;
|
157 |
-
height: 36px;
|
158 |
-
left: -48px;
|
159 |
-
top: 0;
|
160 |
-
}
|
161 |
-
|
162 |
-
.sektion-wrapper .sek-module-inner .sek-commentlist li li .comment-meta {
|
163 |
-
left: 70px;
|
164 |
-
}
|
165 |
-
|
166 |
-
.sektion-wrapper .sek-module-inner .sek-comments-nav {
|
167 |
-
margin-bottom: 20px;
|
168 |
-
}
|
169 |
-
|
170 |
-
.sektion-wrapper .sek-module-inner .sek-comments-nav a {
|
171 |
-
font-weight: 600;
|
172 |
-
}
|
173 |
-
|
174 |
-
.sektion-wrapper .sek-module-inner .sek-comments-nav .sek-nav-previous {
|
175 |
-
float: left;
|
176 |
-
}
|
177 |
-
|
178 |
-
.sektion-wrapper .sek-module-inner .sek-comments-nav .sek-nav-next {
|
179 |
-
float: right;
|
180 |
-
}
|
181 |
-
|
182 |
-
.sektion-wrapper .sek-module-inner .logged-in-as,
|
183 |
-
.sektion-wrapper .sek-module-inner .comment-notes,
|
184 |
-
.sektion-wrapper .sek-module-inner .form-allowed-tags {
|
185 |
-
display: none;
|
186 |
-
}
|
187 |
-
|
188 |
-
.sektion-wrapper .sek-module-inner #respond {
|
189 |
-
position: relative;
|
190 |
-
}
|
191 |
-
|
192 |
-
.sektion-wrapper .sek-module-inner #reply-title {
|
193 |
-
margin-bottom: 20px;
|
194 |
-
}
|
195 |
-
|
196 |
-
.sektion-wrapper .sek-module-inner li #reply-title {
|
197 |
-
font-size: 0;
|
198 |
-
margin: 0 !important;
|
199 |
-
padding: 0;
|
200 |
-
height: 0;
|
201 |
-
border-top: 0;
|
202 |
-
}
|
203 |
-
|
204 |
-
.sektion-wrapper .sek-module-inner #cancel-comment-reply-link {
|
205 |
-
color: #999;
|
206 |
-
display: block;
|
207 |
-
position: absolute;
|
208 |
-
bottom: 26px;
|
209 |
-
right: 20px;
|
210 |
-
font-size: 0.75em;
|
211 |
-
}
|
212 |
-
|
213 |
-
.sektion-wrapper .sek-module-inner #cancel-comment-reply-link:hover {
|
214 |
-
color: #777;
|
215 |
-
}
|
216 |
-
|
217 |
-
.sektion-wrapper .sek-module-inner #commentform {
|
218 |
-
background: #f1f1f1;
|
219 |
-
padding: 10px 20px 20px;
|
220 |
-
margin-bottom: 15px;
|
221 |
-
-webkit-border-radius: 2px;
|
222 |
-
border-radius: 2px;
|
223 |
-
}
|
224 |
-
|
225 |
-
.sektion-wrapper .sek-module-inner #commentform p.comment-form-author {
|
226 |
-
width: 48%;
|
227 |
-
float: left;
|
228 |
-
}
|
229 |
-
|
230 |
-
.sektion-wrapper .sek-module-inner #commentform p.comment-form-email {
|
231 |
-
width: 48%;
|
232 |
-
float: right;
|
233 |
-
}
|
234 |
-
|
235 |
-
.sektion-wrapper .sek-module-inner #commentform p.comment-form-url,
|
236 |
-
.sektion-wrapper .sek-module-inner #commentform p.comment-form-comment {
|
237 |
-
clear: both;
|
238 |
-
}
|
239 |
-
|
240 |
-
.sektion-wrapper .sek-module-inner #commentform label {
|
241 |
-
padding: 6px 0;
|
242 |
-
font-weight: 600;
|
243 |
-
display: block;
|
244 |
-
}
|
245 |
-
|
246 |
-
.sektion-wrapper .sek-module-inner #commentform .comment-form-cookies-consent {
|
247 |
-
padding: 10px 0;
|
248 |
-
clear: both;
|
249 |
-
}
|
250 |
-
|
251 |
-
.sektion-wrapper .sek-module-inner #commentform .comment-form-cookies-consent label {
|
252 |
-
display: inline;
|
253 |
-
}
|
254 |
-
|
255 |
-
.sektion-wrapper .sek-module-inner #commentform input[type="text"],
|
256 |
-
.sektion-wrapper .sek-module-inner #commentform input[type="email"],
|
257 |
-
.sektion-wrapper .sek-module-inner #commentform textarea {
|
258 |
-
max-width: 100%;
|
259 |
-
width: 100%;
|
260 |
-
}
|
261 |
-
|
262 |
-
.sektion-wrapper .sek-module-inner #commentform textarea {
|
263 |
-
height: 100px;
|
264 |
-
}
|
265 |
-
|
266 |
-
.sektion-wrapper .sek-module-inner #commentform p.form-submit {
|
267 |
-
margin-top: 10px;
|
268 |
-
}
|
269 |
-
|
270 |
-
.sektion-wrapper .sek-module-inner .logged-in #reply-title {
|
271 |
-
margin-bottom: 20px;
|
272 |
-
}
|
273 |
-
|
274 |
-
.sektion-wrapper .sek-module-inner .logged-in #commentform p.comment-form-comment {
|
275 |
-
margin-top: 10px;
|
276 |
-
}
|
277 |
-
|
278 |
-
.sektion-wrapper .sek-module-inner .logged-in #commentform p.comment-form-comment label {
|
279 |
-
display: none;
|
280 |
-
}
|
1 |
/* ------------------------------------------------------------------------- *
|
2 |
* Comments ( added April 2021 for site templates )
|
3 |
+
/* ------------------------------------------------------------------------- */
|
4 |
+
.sektion-wrapper .sek-module-inner {
|
5 |
+
/* comment text */
|
6 |
+
/* post author & admin comment */
|
7 |
+
/* child comment */
|
8 |
/* comments : nav
|
9 |
+
/* ------------------------------------ */
|
10 |
/* comments : form
|
11 |
+
/* ------------------------------------ */
|
12 |
+
}
|
13 |
+
|
14 |
+
.sektion-wrapper .sek-module-inner #sek-comments {
|
15 |
+
margin-top: 20px;
|
16 |
+
}
|
17 |
+
|
18 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist {
|
19 |
+
margin: 0 0 20px 0;
|
20 |
+
list-style: none;
|
21 |
+
}
|
22 |
+
|
23 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist li {
|
24 |
+
padding-left: 60px;
|
25 |
+
font-size: 0.93rem;
|
26 |
+
line-height: 1.5714rem;
|
27 |
+
font-weight: 400;
|
28 |
+
}
|
29 |
+
|
30 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-body {
|
31 |
+
clear: both;
|
32 |
+
position: relative;
|
33 |
+
padding-bottom: 15px;
|
34 |
+
margin: 0;
|
35 |
+
}
|
36 |
+
|
37 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-content {
|
38 |
+
margin: 0;
|
39 |
+
}
|
40 |
+
|
41 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-author,
|
42 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-meta .comment-metadata,
|
43 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-awaiting-moderation {
|
44 |
+
font-size: 0.8125rem;
|
45 |
+
display: block;
|
46 |
+
float: left;
|
47 |
+
line-height: 1.5384rem;
|
48 |
+
padding: 0 0 0.5rem 0;
|
49 |
+
}
|
50 |
+
|
51 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-meta,
|
52 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-author {
|
53 |
+
margin-right: 6px;
|
54 |
+
}
|
55 |
+
|
56 |
+
.sektion-wrapper .sek-module-inner .comment-meta .comment-metadata .edit-link {
|
57 |
+
margin-left: 1rem;
|
58 |
+
}
|
59 |
+
|
60 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .fn {
|
61 |
+
color: #444;
|
62 |
+
font-size: 0.8125rem;
|
63 |
+
font-style: normal;
|
64 |
+
font-weight: 600;
|
65 |
+
}
|
66 |
+
|
67 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .says {
|
68 |
+
display: none;
|
69 |
+
}
|
70 |
+
|
71 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .avatar {
|
72 |
+
position: absolute;
|
73 |
+
left: -60px;
|
74 |
+
top: 0;
|
75 |
+
width: 48px;
|
76 |
+
height: 48px;
|
77 |
+
-webkit-border-radius: 3px;
|
78 |
+
border-radius: 3px;
|
79 |
+
}
|
80 |
+
|
81 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-meta a {
|
82 |
+
color: #757575;
|
83 |
+
}
|
84 |
+
|
85 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .reply {
|
86 |
+
font-size: 0.8125rem;
|
87 |
+
line-height: 1.231rem;
|
88 |
+
}
|
89 |
+
|
90 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .reply a {
|
91 |
+
color: #757575;
|
92 |
+
}
|
93 |
+
|
94 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .reply a:hover {
|
95 |
+
color: #444;
|
96 |
+
}
|
97 |
+
|
98 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-awaiting-moderation {
|
99 |
+
color: #16cfc1;
|
100 |
+
font-style: normal;
|
101 |
+
}
|
102 |
+
|
103 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-body p {
|
104 |
+
margin-bottom: 8px;
|
105 |
+
clear: both;
|
106 |
+
font-size: 0.95em;
|
107 |
+
}
|
108 |
+
|
109 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-body strong {
|
110 |
+
font-weight: bold;
|
111 |
+
}
|
112 |
+
|
113 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-body em {
|
114 |
+
font-style: italic;
|
115 |
+
}
|
116 |
+
|
117 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-body ol li {
|
118 |
+
list-style: decimal;
|
119 |
+
margin-left: 2em;
|
120 |
+
padding: 0;
|
121 |
+
}
|
122 |
+
|
123 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist .comment-body ul li {
|
124 |
+
list-style: square;
|
125 |
+
margin-left: 2em;
|
126 |
+
padding: 0;
|
127 |
+
}
|
128 |
+
|
129 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist li.bypostauthor > .comment-body:after,
|
130 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist li.bypostauthor > .comment-body:after,
|
131 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist li.comment-author-admin > .comment-body:after {
|
132 |
+
top: 32px;
|
133 |
+
left: -28px;
|
134 |
+
font-size: 10px;
|
135 |
+
padding: 2px;
|
136 |
+
-webkit-border-radius: 3px;
|
137 |
+
border-radius: 3px;
|
138 |
+
}
|
139 |
+
|
140 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist li li.bypostauthor > .comment-body:after,
|
141 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist li li.comment-author-admin > .comment-body:after {
|
142 |
+
top: 22px;
|
143 |
+
left: -26px;
|
144 |
+
font-size: 8px;
|
145 |
+
padding: 1px;
|
146 |
+
-webkit-border-radius: 2px;
|
147 |
+
border-radius: 2px;
|
148 |
+
}
|
149 |
+
|
150 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist li li {
|
151 |
+
padding-left: 48px;
|
152 |
+
margin: 0;
|
153 |
+
}
|
154 |
+
|
155 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist li li .avatar {
|
156 |
+
width: 36px;
|
157 |
+
height: 36px;
|
158 |
+
left: -48px;
|
159 |
+
top: 0;
|
160 |
+
}
|
161 |
+
|
162 |
+
.sektion-wrapper .sek-module-inner .sek-commentlist li li .comment-meta {
|
163 |
+
left: 70px;
|
164 |
+
}
|
165 |
+
|
166 |
+
.sektion-wrapper .sek-module-inner .sek-comments-nav {
|
167 |
+
margin-bottom: 20px;
|
168 |
+
}
|
169 |
+
|
170 |
+
.sektion-wrapper .sek-module-inner .sek-comments-nav a {
|
171 |
+
font-weight: 600;
|
172 |
+
}
|
173 |
+
|
174 |
+
.sektion-wrapper .sek-module-inner .sek-comments-nav .sek-nav-previous {
|
175 |
+
float: left;
|
176 |
+
}
|
177 |
+
|
178 |
+
.sektion-wrapper .sek-module-inner .sek-comments-nav .sek-nav-next {
|
179 |
+
float: right;
|
180 |
+
}
|
181 |
+
|
182 |
+
.sektion-wrapper .sek-module-inner .logged-in-as,
|
183 |
+
.sektion-wrapper .sek-module-inner .comment-notes,
|
184 |
+
.sektion-wrapper .sek-module-inner .form-allowed-tags {
|
185 |
+
display: none;
|
186 |
+
}
|
187 |
+
|
188 |
+
.sektion-wrapper .sek-module-inner #respond {
|
189 |
+
position: relative;
|
190 |
+
}
|
191 |
+
|
192 |
+
.sektion-wrapper .sek-module-inner #reply-title {
|
193 |
+
margin-bottom: 20px;
|
194 |
+
}
|
195 |
+
|
196 |
+
.sektion-wrapper .sek-module-inner li #reply-title {
|
197 |
+
font-size: 0;
|
198 |
+
margin: 0 !important;
|
199 |
+
padding: 0;
|
200 |
+
height: 0;
|
201 |
+
border-top: 0;
|
202 |
+
}
|
203 |
+
|
204 |
+
.sektion-wrapper .sek-module-inner #cancel-comment-reply-link {
|
205 |
+
color: #999;
|
206 |
+
display: block;
|
207 |
+
position: absolute;
|
208 |
+
bottom: 26px;
|
209 |
+
right: 20px;
|
210 |
+
font-size: 0.75em;
|
211 |
+
}
|
212 |
+
|
213 |
+
.sektion-wrapper .sek-module-inner #cancel-comment-reply-link:hover {
|
214 |
+
color: #777;
|
215 |
+
}
|
216 |
+
|
217 |
+
.sektion-wrapper .sek-module-inner #commentform {
|
218 |
+
background: #f1f1f1;
|
219 |
+
padding: 10px 20px 20px;
|
220 |
+
margin-bottom: 15px;
|
221 |
+
-webkit-border-radius: 2px;
|
222 |
+
border-radius: 2px;
|
223 |
+
}
|
224 |
+
|
225 |
+
.sektion-wrapper .sek-module-inner #commentform p.comment-form-author {
|
226 |
+
width: 48%;
|
227 |
+
float: left;
|
228 |
+
}
|
229 |
+
|
230 |
+
.sektion-wrapper .sek-module-inner #commentform p.comment-form-email {
|
231 |
+
width: 48%;
|
232 |
+
float: right;
|
233 |
+
}
|
234 |
+
|
235 |
+
.sektion-wrapper .sek-module-inner #commentform p.comment-form-url,
|
236 |
+
.sektion-wrapper .sek-module-inner #commentform p.comment-form-comment {
|
237 |
+
clear: both;
|
238 |
+
}
|
239 |
+
|
240 |
+
.sektion-wrapper .sek-module-inner #commentform label {
|
241 |
+
padding: 6px 0;
|
242 |
+
font-weight: 600;
|
243 |
+
display: block;
|
244 |
+
}
|
245 |
+
|
246 |
+
.sektion-wrapper .sek-module-inner #commentform .comment-form-cookies-consent {
|
247 |
+
padding: 10px 0;
|
248 |
+
clear: both;
|
249 |
+
}
|
250 |
+
|
251 |
+
.sektion-wrapper .sek-module-inner #commentform .comment-form-cookies-consent label {
|
252 |
+
display: inline;
|
253 |
+
}
|
254 |
+
|
255 |
+
.sektion-wrapper .sek-module-inner #commentform input[type="text"],
|
256 |
+
.sektion-wrapper .sek-module-inner #commentform input[type="email"],
|
257 |
+
.sektion-wrapper .sek-module-inner #commentform textarea {
|
258 |
+
max-width: 100%;
|
259 |
+
width: 100%;
|
260 |
+
}
|
261 |
+
|
262 |
+
.sektion-wrapper .sek-module-inner #commentform textarea {
|
263 |
+
height: 100px;
|
264 |
+
}
|
265 |
+
|
266 |
+
.sektion-wrapper .sek-module-inner #commentform p.form-submit {
|
267 |
+
margin-top: 10px;
|
268 |
+
}
|
269 |
+
|
270 |
+
.sektion-wrapper .sek-module-inner .logged-in #reply-title {
|
271 |
+
margin-bottom: 20px;
|
272 |
+
}
|
273 |
+
|
274 |
+
.sektion-wrapper .sek-module-inner .logged-in #commentform p.comment-form-comment {
|
275 |
+
margin-top: 10px;
|
276 |
+
}
|
277 |
+
|
278 |
+
.sektion-wrapper .sek-module-inner .logged-in #commentform p.comment-form-comment label {
|
279 |
+
display: none;
|
280 |
+
}
|
assets/front/fonts/webfonts/fa-brands-400.svg
CHANGED
@@ -1,3717 +1,3717 @@
|
|
1 |
-
<?xml version="1.0" standalone="no"?>
|
2 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
|
4 |
-
<metadata>
|
5 |
-
Created by FontForge 20200314 at Wed Jan 13 11:57:55 2021
|
6 |
-
By Robert Madole
|
7 |
-
Copyright (c) Font Awesome
|
8 |
-
</metadata>
|
9 |
-
<!-- Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><defs>
|
10 |
-
<font id="FontAwesome5Brands-Regular" horiz-adv-x="448" >
|
11 |
-
<font-face
|
12 |
-
font-family="Font Awesome 5 Brands Regular"
|
13 |
-
font-weight="400"
|
14 |
-
font-stretch="normal"
|
15 |
-
units-per-em="512"
|
16 |
-
panose-1="2 0 5 3 0 0 0 0 0 0"
|
17 |
-
ascent="448"
|
18 |
-
descent="-64"
|
19 |
-
bbox="-0.200195 -66.9505 641.5 448.3"
|
20 |
-
underline-thickness="25"
|
21 |
-
underline-position="-50"
|
22 |
-
unicode-range="U+0020-F8E8"
|
23 |
-
/>
|
24 |
-
<missing-glyph />
|
25 |
-
<glyph glyph-name="firefox-browser" unicode="" horiz-adv-x="512"
|
26 |
-
d="M130.63 324.51c0.160156 -0.00976562 0.0800781 -0.00976562 0 0zM482.05 279.16c15.2803 -36.7598 20.6709 -80.748 15.8213 -122.578c-0.370117 -3.15039 -0.700195 -6.29004 -1.11035 -9.41016c-19.6094 -115.04 -119.79 -202.62 -240.43 -202.62
|
27 |
-
c-134.71 0 -243.92 109.19 -243.92 243.891v1.23926c0.149414 2.70996 0.30957 5.41016 0.490234 8.12012c0.0498047 0.240234 0.0498047 0.480469 0.0498047 0.719727c0.439453 6.29004 0.870117 10.3105 1.43945 14c0.240234 1.91309 0.5 3.82617 0.780273 5.73926
|
28 |
-
c1.66992 12.2705 3.94043 22.21 4 22.4805c5.99219 26.8799 17.3516 52.1084 32.7305 73.8994v0c6.86816 9.79785 14.3965 18.8301 22.7695 27.3301c7.36719 7.53418 15.2451 14.2881 23.8398 20.4307c0.930664 0.629883 8.03027 4.83984 8.15039 4.30957
|
29 |
-
c-0.570312 -8.42969 -1.24023 -48.8301 8.42969 -61.0801h0.120117c14.1602 15.9199 33.6504 33.96 58.71 45.3701c-2.38477 -9.13379 -3.64844 -18.6562 -3.64844 -28.5332c0 -10.7832 1.51367 -21.2158 4.33887 -31.0967
|
30 |
-
c2.20508 -1.47852 4.29199 -3.05566 6.30957 -4.77051c3.71973 -3.14941 7.91992 -7.34961 16.7705 -16.0596c16.5498 -16.3096 59 -33.1797 59.0898 -35.1797c-0.400391 -6.08008 -21.8301 -27 -29.3301 -27c-69.3701 0 -80.6201 -41.9502 -80.6201 -41.9502
|
31 |
-
c3.07031 -35.3301 27.6699 -64.4102 57.5098 -79.75c1.36035 -0.730469 2.74023 -1.37012 4.12012 -2c2.36035 -1.04004 4.74023 -2.02051 7.16016 -2.92969c9.95996 -3.52539 20.6885 -5.66895 31.7402 -6.12012c121.569 -5.7002 145.13 145.34 57.3896 189.199
|
32 |
-
c22.4697 3.91016 45.8203 -5.12988 58.8203 -14.2793c-10.374 18.1104 -24.9414 33.167 -42.6602 44.1299c-0.993164 0.620117 -1.99316 1.21973 -3 1.7998c-1.55957 0.913086 -3.13965 1.79004 -4.74023 2.62988c-0.75 0.390625 -1.5 0.759766 -2.25 1.12988
|
33 |
-
c-1.65332 0.813477 -3.32031 1.59668 -5.00098 2.34961c-1.07031 0.469727 -2.16016 0.910156 -3.25 1.34961c-1.33984 0.580078 -2.68945 1.08008 -4.0498 1.58008c-1.86035 0.669922 -3.73047 1.2998 -5.62012 1.87012c-0.679688 0.209961 -1.33008 0.429688 -2 0.629883
|
34 |
-
c-10.8193 3.12793 -22.2139 4.82422 -34.0352 4.82422c-0.338867 0 -0.676758 -0.00195312 -1.01465 -0.00390625c-2 -0.0205078 -4 -0.100586 -6 -0.220703l-1.41992 -0.0996094c-14.8984 -1.04102 -29.2461 -4.92383 -42.1104 -11l-0.519531 -0.209961
|
35 |
-
c-0.625977 -0.21582 -1.29688 -0.335938 -1.99609 -0.335938c-2.68164 0 -4.96289 1.72559 -5.79395 4.12598c-0.246094 0.669922 -0.388672 1.39258 -0.388672 2.14746c0 2.4541 1.41797 4.58008 3.47852 5.60254c14.7295 6.98535 31.1982 11.3564 48.3301 12.3301
|
36 |
-
c5.7793 35.3994 28.2695 91.0098 82.5 122.78l-0.100586 -0.140625l0.180664 0.100586l0.120117 0.0693359c0.0732422 0.0195312 0.149414 0.0302734 0.229492 0.0302734c0.0791016 0 0.15625 -0.0107422 0.230469 -0.0302734
|
37 |
-
c0.30957 -0.0390625 0.550781 -0.303711 0.550781 -0.624023c0 -0.0117188 -0.000976562 -0.0244141 -0.000976562 -0.0361328c0.84375 -3.34961 2.08887 -6.61523 3.63965 -9.61914c0.830078 -1.70996 1.69043 -3.40039 2.69043 -5.05078
|
38 |
-
c1.87988 -3.21973 3.80957 -6.2793 5.73926 -9.33008c38.2002 -60.3594 84.9707 -88.0791 112.551 -156.829c-0.0507812 0.269531 -0.0507812 0.40918 -0.0507812 0.40918c-3.0293 20.1201 -10.9795 47.1104 -24.6992 74
|
39 |
-
c16.8594 -8.72949 38.3301 -36.2295 48.9395 -61.7295z" />
|
40 |
-
<glyph glyph-name="ideal" unicode="" horiz-adv-x="576"
|
41 |
-
d="M125.61 282.52c27.0713 -0.0107422 49.0488 -21.9873 49.0596 -49.0596v-0.00976562c0 -27.083 -21.9873 -49.0703 -49.0703 -49.0703c-27.082 0 -49.0693 21.9873 -49.0693 49.0703c0 27.082 21.9873 49.0693 49.0693 49.0693h0.0107422zM86.1504 22.1602v140.52
|
42 |
-
h78.9395v-140.52h-78.9395zM237.61 233.76c0 -20.4502 -8.99023 -23.2598 -18.7402 -23.2598h-14.0498v45.79h14.0498c8.74023 0 18.7402 -2.53027 18.7402 -22.5303zM439.3 187.76h57.0898c-1.7793 -98.4795 -52.1094 -165.64 -196.72 -165.64h-94.8301v165.62h14
|
43 |
-
c25.9805 0 41.5 17.1895 41.5 46c0 27.9102 -15.8994 45.2598 -41.5 45.2598h-14v82.8096h94.8301c88.9404 0 186.83 -26.8896 196.07 -151.31h-33.6904v68.5703h-22.75v-91.3105zM329.55 187.76l-0.0400391 22.7402h-33.5098v12.5h30v22.6904h-30v10.5791h31.7305v22.7305
|
44 |
-
h-54.4307v-91.2402h56.25zM404.21 187.76l23.6699 -0.0195312l-27.5303 91.3398h-32.3496l-27.5303 -91.3203h23.6602l5.17969 17.6699h29.7402zM299.65 416c218.35 0 250.97 -140 251 -223.48c0 -144.789 -89.1504 -224.52 -251 -224.52h-267.65v448h267.65z
|
45 |
-
M299.65 -10.9199c148.899 0 229.899 69.3496 229.899 203.439c0 137.801 -87.7998 202.41 -229.899 202.41h-246.58v-405.85h246.58zM383.51 253.93h1.37012l7.52051 -25.8096h-16.4004z" />
|
46 |
-
<glyph glyph-name="microblog" unicode=""
|
47 |
-
d="M399.36 85.7695l0.149414 0.0605469c-13.5439 -15.3408 -21.7432 -35.5967 -21.7432 -57.6494c0 -19.957 6.73438 -38.3545 18.0537 -53.041c0.589844 -0.745117 0.944336 -1.68652 0.944336 -2.71094c0 -0.311523 -0.0322266 -0.615234 -0.0947266 -0.90918
|
48 |
-
c-0.416992 -2.00684 -2.19434 -3.52051 -4.32422 -3.52051c-0.306641 0 -0.606445 0.03125 -0.895508 0.0908203c-32.2803 7.17969 -61.3105 24.8301 -79.8906 49.9199c-1.30566 1.78906 -3.41699 2.94434 -5.7998 2.94434
|
49 |
-
c-0.811523 0 -1.5918 -0.135742 -2.31934 -0.383789c-24.7363 -8.66016 -51.3818 -13.4404 -79.0586 -13.4404h-0.381836c-122.86 0 -222.46 91.4805 -222.46 204.43c0 112.95 99.5996 204.44 222.46 204.44s222.46 -91.4902 222.46 -204.44
|
50 |
-
c0 -47.4492 -17.6104 -91.0996 -47.0996 -125.79zM329.52 235.6c1.56738 1.18652 2.57324 3.03516 2.57324 5.15039c0 3.57227 -2.88672 6.47461 -6.45312 6.5l-71.8799 1.50977l-23.6602 67.9199c-0.882812 2.54199 -3.29688 4.36914 -6.1377 4.36914
|
51 |
-
s-5.25879 -1.82715 -6.1416 -4.36914l-23.6602 -67.9199l-71.8799 -1.50977c-3.5293 -0.0673828 -6.38086 -2.95117 -6.38086 -6.49609c0 -2.11523 1.01367 -3.99707 2.58105 -5.18359l57.2998 -43.4902l-20.79 -68.8604
|
52 |
-
c-0.178711 -0.59375 -0.269531 -1.21875 -0.269531 -1.87109c0 -3.59277 2.91699 -6.50977 6.50977 -6.50977c1.37793 0 2.65723 0.429688 3.70996 1.16113l59.0596 41.0801l59.0596 -41.0498c1.05371 -0.735352 2.33984 -1.1709 3.71973 -1.1709
|
53 |
-
c3.58789 0 6.5 2.91211 6.5 6.5c0 0.657227 -0.0976562 1.29199 -0.279297 1.89062l-20.7803 68.8604z" />
|
54 |
-
<glyph glyph-name="pied-piper-square" unicode=""
|
55 |
-
d="M32 29l-32 -60.2002l0.799805 328c0 65.9004 53.2002 119.2 119.2 119.2h327.2c-93 -28.9004 -189.9 -94.2002 -253.9 -168.6c-70.5996 -81.4004 -110.7 -137.4 -161.3 -218.4zM448 416c0 0 0 -328.8 0.0996094 -328.8c0 -65.9004 -53.2998 -119.2 -119.3 -119.2
|
56 |
-
h-328.399c18.5 25.5 61.6992 54 84.8994 66c35.5 18.0996 76.4004 28.5 105.3 56.2998c42.1006 40.5 47.8008 105 71 158.601c43.6006 100.3 186.4 167.1 186.4 167.1z" />
|
57 |
-
<glyph glyph-name="unity" unicode="" horiz-adv-x="576"
|
58 |
-
d="M498.11 241.6l-30 -49.5996l30 -49.6299l-52.8008 -191.62l-197.079 51.3604l-29.2402 50l-59.1699 -0.430664l-144.28 140.32l144.26 140.29l59.2002 -0.429688l29.2002 50.0596l197.109 51.3604zM223.77 323.8l-108.899 -108.13h173.13l86.5498 145.82zM223.77 60.1699
|
59 |
-
l150.78 -37.6895l-86.5498 145.81h-173.13zM416.77 46.1699l41.79 145.83l-41.8096 145.84l-86.5801 -145.84z" />
|
60 |
-
<glyph glyph-name="dailymotion" unicode=""
|
61 |
-
d="M298.93 181c7.14062 -4 12.9844 -9.85254 16.9727 -17c3.86426 -6.83691 6.10059 -14.7783 6.10059 -23.1865c0 -0.0947266 0 -0.188477 -0.000976562 -0.283203c-0.0332031 -13.6602 -4.58691 -25.084 -13.6602 -34.2705s-20.4434 -13.7793 -34.1104 -13.7793
|
62 |
-
c-13.4336 0 -24.5771 4.47949 -33.4307 13.4395s-13.2803 20.4932 -13.2803 34.5996c0 13.4336 4.53711 24.5742 13.6104 33.4209s20.2197 13.2695 33.4395 13.2695c0.214844 0.00292969 0.469727 -0.0263672 0.685547 -0.0263672
|
63 |
-
c8.59668 0 16.6738 -2.24609 23.6738 -6.18359zM0.00195312 416h448v-448h-448v448zM374.712 42.7402l-0.0302734 264.349l-55.79 -12.0898v-77.9199c-7.81348 7.86035 -16.1465 13.5273 -25 17.001c-8.87695 3.35352 -18.5127 5.21875 -28.5576 5.21875
|
64 |
-
c-0.394531 0 -0.789062 -0.00292969 -1.18164 -0.00878906c-17.6934 -0.00683594 -33.6006 -4.37305 -47.7207 -13.0996c-14.0625 -8.68066 -25.4102 -20.9805 -32.9297 -35.7803c-7.83984 -15.1064 -11.7598 -31.8467 -11.7598 -50.2197
|
65 |
-
c-0.00683594 -18.8066 3.85645 -35.7705 11.5898 -50.8906c7.45215 -14.8447 18.8232 -27.1611 32.9395 -35.7695c14.2197 -8.7334 30.5166 -13.1006 48.8906 -13.1006c26.6602 0 45.2539 8.7334 55.7803 26.2002h0.669922v-23.8896h53.0996z" />
|
66 |
-
<glyph glyph-name="instagram-square" unicode=""
|
67 |
-
d="M224 245.34c29.4385 -0.0107422 53.3379 -23.9043 53.3604 -53.3398c0 -29.4395 -23.9004 -53.3398 -53.3398 -53.3398s-53.3398 23.9004 -53.3398 53.3398c0 29.4326 23.8896 53.3291 53.3193 53.3398zM348.71 286.34
|
68 |
-
c8.34961 -21.0703 6.46973 -71.0596 6.46973 -94.3398s1.91992 -73.3301 -6.42969 -94.3301c-5.4834 -13.8955 -16.5146 -24.9268 -30.4102 -30.4102c-21.0596 -8.35938 -70.9902 -6.42969 -94.2998 -6.42969s-73.3096 -1.86035 -94.3096 6.42969
|
69 |
-
c-13.8955 5.4834 -24.9277 16.5146 -30.4102 30.4102c-8.32031 21.0703 -6.4707 71.0605 -6.4707 94.3398c0 23.2803 -1.84961 73.3301 6.43066 94.3301c5.48242 13.8955 16.5146 24.9268 30.4102 30.4102c21.0596 8.36035 71.0098 6.42969 94.3096 6.42969
|
70 |
-
s73.2998 1.86035 94.2998 -6.42969c13.8955 -5.4834 24.9268 -16.5146 30.4102 -30.4102zM224 110c0.0341797 0 0.0664062 -0.00195312 0.0996094 -0.00195312c45.2021 0 81.9004 36.6982 81.9004 81.9004v0.101562c0 45.2568 -36.7432 82 -82 82s-82 -36.7432 -82 -82
|
71 |
-
s36.7432 -82 82 -82zM309.38 258.3c10.5371 0.00585938 19.1299 8.52051 19.1299 19.0586v0.0820312c0 10.5635 -8.57617 19.1396 -19.1396 19.1396c-10.5645 0 -19.1406 -8.57617 -19.1406 -19.1396c0 -10.5645 8.57617 -19.1406 19.1406 -19.1406h0.00976562zM400 416
|
72 |
-
c26.4922 0 48 -21.5078 48 -48v-352c0 -26.4922 -21.5078 -48 -48 -48h-352c-26.4922 0 -48 21.5078 -48 48v352c0 26.4922 21.5078 48 48 48h352zM382.88 126c1.49023 26.4404 1.49023 105.56 0 131.88c-1.21973 25.6299 -7.17969 48.3506 -25.8496 67.0498
|
73 |
-
c-18.6699 18.7002 -41.3701 24.5605 -67 25.8506c-26.4102 1.48926 -105.59 1.48926 -132 0c-25.5303 -1.2207 -48.2207 -7.12012 -67 -25.7803c-18.7803 -18.6602 -24.5605 -41.3701 -25.8506 -67c-1.48926 -26.3896 -1.48926 -105.58 0 -132
|
74 |
-
c1.2207 -25.5801 7.11035 -48.2998 25.8506 -67c18.7393 -18.7002 41.3701 -24.5596 67 -25.8496c26.4102 -1.49023 105.59 -1.49023 132 0c25.5996 1.21973 48.29 7.18945 67 25.8496s24.5596 41.3701 25.8496 67z" />
|
75 |
-
<glyph glyph-name="mixer" unicode="" horiz-adv-x="512"
|
76 |
-
d="M114.57 371.93l128.319 -172.399c1.44531 -1.99805 2.29785 -4.47461 2.29785 -7.12598c0 -2.65234 -0.852539 -5.10645 -2.29785 -7.10449l-128.89 -173.24c-8.33594 -11.1826 -21.6582 -18.3877 -36.666 -18.3877c-11.877 0 -22.7031 4.54004 -30.834 11.9785
|
77 |
-
c-17.8496 16.1797 -18.9697 43.5195 -4.74023 62.7695l92.3301 124.15l-91.7803 123c-14.25 19.25 -12.8291 46.5898 4.75 62.7695c8.13281 7.44141 18.9551 12.0264 30.8359 12.0264c15.0088 0 28.3389 -7.25 36.6748 -18.4365zM470.24 68.4199
|
78 |
-
c14.2295 -19.25 13.1094 -46.5898 -4.73047 -62.7695c-8.13184 -7.44141 -18.9551 -12.0264 -30.835 -12.0264c-15.0098 0 -28.3389 7.25 -36.6748 18.4355l-128.57 173.5c-1.44434 1.99805 -2.29688 4.47461 -2.29688 7.12598c0 2.65234 0.852539 5.10645 2.29688 7.10449
|
79 |
-
l128 172.12c8.33594 11.1855 21.6602 18.3926 36.6699 18.3926c11.8809 0 22.708 -4.54199 30.8408 -11.9824c17.5791 -16.1807 18.9697 -43.5205 4.75 -62.7705l-91.7803 -123z" />
|
80 |
-
<glyph glyph-name="shopify" unicode=""
|
81 |
-
d="M388.32 343.9c0.399414 -2.40039 54.4395 -367.9 54.4395 -367.9l-125.689 -31.2002v432.73c8.00977 -8.01074 29.6201 -28.8301 29.6201 -28.8301s35.2295 -0.799805 37.2295 -0.799805c2.25 -0.103516 4.08887 -1.81055 4.40039 -4zM288.65 377.53
|
82 |
-
c9.20996 2.7998 13.3604 4.18945 14.8096 4.39941c1.4502 0.209961 2.90625 0.34375 4.40039 0.400391v-438.33l-302.58 52.4805s36.7998 281.819 38 291.819c1.58984 13.2002 2 13.6006 16 18c0.399414 0.400391 19.6094 6.41016 47.2295 14.8105
|
83 |
-
c2.82031 21.2197 13.21 48.4395 26.8203 70.0596c19.25 30.8301 43.25 48.0303 67.25 48.8301c12.4199 0.370117 22.8203 -3.62988 30.8203 -12.4004c0.399414 -0.799805 1.19922 -1.19922 1.59961 -2c1.11914 0.267578 2.27051 0.40918 3.4707 0.40918
|
84 |
-
c0.176758 0 0.353516 -0.00292969 0.529297 -0.00878906c18.4199 0 34 -10.8496 44.4404 -30.8604c2.84082 -5.58887 5.28809 -11.5479 7.20996 -17.6094zM233.41 360.31c0.399414 13.21 -1.2002 32.8301 -8.00977 47.2002
|
85 |
-
c-6.80078 -3.2002 -12.8105 -8.41016 -17.21 -12.8096c-11.21 -12.3701 -20.8203 -31.1807 -25.6201 -50c17.21 5.20996 34.8398 10.8096 50.8398 15.6094zM200.58 423.56c-36.8301 -0.799805 -69.25 -58.8398 -78.0098 -97.2295c13.1699 4 27.5801 8.40039 42 12.8096
|
86 |
-
c4.7998 24.4502 16.4102 50.0303 31.6201 66.4502c6 6 12.4092 11.21 18.8096 14.4102c-3.99414 2.26367 -8.625 3.57422 -13.54 3.57422c-0.293945 0 -0.587891 -0.00488281 -0.879883 -0.0146484zM154.15 203.39c-0.400391 4.81055 0 23.6104 29.6191 25.6201
|
87 |
-
c20.4209 1.60059 37.6309 -6.39941 37.6309 -6.39941l15.21 57.5996s-13.2305 6.41016 -39.2305 4.80957c-67.25 -4.40918 -97.6699 -51.2393 -94.4697 -97.6797c3.59961 -55.2402 58.8398 -53.2402 60.8398 -86.8594
|
88 |
-
c0.410156 -8.01074 -4.80957 -19.6201 -18.8096 -20.4209c-21.6201 -1.59961 -48.4404 18.8203 -48.4404 18.8203l-10.4004 -44s26.8203 -28.8203 75.6504 -25.6201c40.4297 2.41016 68.4502 34.8301 65.6504 82.4707c-4 60.4395 -71.6504 66.0498 -73.25 91.6592z
|
89 |
-
M249.42 365.12c8.80664 2.7998 16.8135 5.2002 24.0205 7.2002c-4.01074 12.4297 -12.8105 32.8301 -31.2305 36.4297c5.61035 -14.4102 7.20996 -31.6299 7.20996 -43.6299z" />
|
90 |
-
<glyph glyph-name="deezer" unicode="" horiz-adv-x="576"
|
91 |
-
d="M451.46 203.29v72.71h124.54v-72.71h-124.54zM451.46 377.18h124.54v-72.6699h-124.54v72.6699zM451.46 102.12v72.6797h124.54v-72.6797h-124.54zM0 0.910156v72.6699h124.54v-72.6699h-124.54zM150.47 0.910156v72.6699h124.53v-72.6699h-124.53zM300.99 0.910156
|
92 |
-
l0.00976562 72.6699h124.53v-72.6699h-124.54zM451.46 0.910156v72.6699h124.54v-72.6699h-124.54zM301 102.12v72.6797h124.53v-72.6797h-124.53zM150.48 102.12l-0.0107422 72.6797h124.53v-72.6797h-124.52zM150.48 203.29l-0.0107422 72.71h124.53v-72.71h-124.52z" />
|
93 |
-
<glyph glyph-name="edge-legacy" unicode="" horiz-adv-x="512"
|
94 |
-
d="M25.71 219.84l0.349609 0.480469c0 -0.160156 0 -0.320312 -0.0693359 -0.480469h-0.280273zM486.29 204.33v-52.0703h-314.08c1.38965 -128.49 191.39 -124.06 272.26 -67.5693v-104.431c-47.3594 -28.5293 -156.779 -53.1699 -240.13 -21.3301
|
95 |
-
c-70.6201 27.1602 -119.92 100.551 -120.75 172c-1.09961 92.2207 45.7002 153.42 120.75 188.32c-15.79 -19.9297 -27.9697 -41.54 -34.3398 -78.9297h175.85c10.25 105 -99.4199 105 -99.4199 105c-103.3 -3.62012 -177.949 -63.6904 -220.37 -125
|
96 |
-
c14.5605 114.47 92.9404 219.96 232.83 219.68c85.0205 0 157.61 -39.8799 198.591 -113.27c21.0498 -37.9404 28.8096 -78.4004 28.8096 -122.4z" />
|
97 |
-
<glyph glyph-name="google-pay" unicode="" horiz-adv-x="640"
|
98 |
-
d="M105.72 233h99.6602c1.1543 -7.06152 1.75 -14.1768 1.75 -21.5635v-0.216797c0 -32.7598 -11.4102 -60.2998 -31.4102 -78.9102c-17.4502 -16.3799 -41.5293 -25.9092 -70 -25.9092c-41.4531 0.103516 -77.2598 24.0869 -94.3799 59v0.149414
|
99 |
-
c-7.21582 14.4512 -11.2773 30.957 -11.2773 48.1943c0 17.2383 4.06152 33.5352 11.2773 47.9863c17.1172 34.9355 52.9199 58.9502 94.3799 59.1094c0.344727 0.00390625 0.699219 0.00585938 1.04492 0.00585938c27 0 51.5469 -10.5928 69.7051 -27.8457
|
100 |
-
l-30.2793 -30.6201c-10.1777 9.95508 -24.0938 16.0898 -39.4404 16.0898c-0.357422 0 -0.713867 -0.00292969 -1.07031 -0.00976562c-27.5996 0 -50.9297 -18.9102 -59.2998 -44.3701v0c-2.12109 -6.44824 -3.26855 -13.3545 -3.26855 -20.5088
|
101 |
-
s1.14746 -14.043 3.26855 -20.4912c8.37012 -25.3096 31.7002 -44.2197 59.2998 -44.2197c14.2803 0 26.46 3.72949 36 10.2803c10.9629 7.39648 18.7705 19.0664 21.1406 32.5996h-57.1006v41.25zM495.13 237c10.1299 -9.33984 15.1201 -22.4502 15.0498 -39v-78.7002
|
102 |
-
h-22.6094v17.7197h-1c-9.79004 -14.5898 -22.71 -21.8896 -39 -21.8896c-13.79 0 -25.54 4.16992 -34.79 12.5098c-8.55078 7.29199 -13.9541 18.1143 -13.9541 30.2207c0 0.350586 0.00488281 0.701172 0.0136719 1.0498c0 13.25 4.98047 23.6699 14.8203 31.5596
|
103 |
-
c9.83984 7.89062 23.0498 11.7705 39.4902 11.7705c14.0898 0 25.54 -2.68066 34.6396 -7.75v5.50977c-0.00488281 8.47461 -3.75098 16.0723 -9.69043 21.2305c-6.02051 5.44141 -14.0078 8.76855 -22.75 8.78906c-13.2061 0 -23.626 -5.66699 -31.2598 -17
|
104 |
-
l-20.8496 13.2607c11.1602 16.5195 28.04 24.8594 50.5 24.8594c17.46 0 31.2598 -4.75977 41.3896 -14.1396zM475.9 147.7c7.7793 7.4502 11.7393 16.2295 11.7393 26.3594c-7.33984 5.94043 -17.6396 8.94043 -30.7998 8.78027c-9.54004 0 -17.75 -2.38965 -24.0703 -7
|
105 |
-
c-6.31934 -4.60938 -9.53906 -10.4199 -9.53906 -17.4199c-0.000976562 -0.0332031 -0.0166016 -0.0546875 -0.0166016 -0.0878906c0 -6.35449 3.05957 -12 7.78613 -15.542c4.8916 -3.90625 11.1035 -6.25391 17.8447 -6.25391
|
106 |
-
c0.162109 0 0.324219 0.000976562 0.485352 0.00390625c10.3965 0.0126953 19.8076 4.2793 26.5703 11.1602zM382.25 289.7c10.4268 -9.92188 16.9102 -23.9102 16.9102 -39.4248c0 -14.166 -5.4209 -27.0752 -14.2998 -36.7656
|
107 |
-
c-0.890625 -0.889648 -1.77051 -1.79004 -2.65039 -2.67969c-11.0098 -10.5703 -24.5098 -15.9297 -40.5098 -15.9297h-39v-75.6406h-23.6299v186.74h62.6699c0.379883 0.0078125 0.749023 0.0185547 1.13086 0.0185547c15.3701 0 29.2949 -6.23828 39.3789 -16.3184z
|
108 |
-
M365.67 227.47c5.5957 5.94141 9.03223 13.9971 9.03223 22.7939c0 9.18164 -3.7373 17.4961 -9.77246 23.5059c-5.78027 5.70801 -13.7236 9.23047 -22.4814 9.23047h-0.118164h-39.6299v-65.21h39.6299c0.328125 -0.0107422 0.640625 -0.0253906 0.970703 -0.0253906
|
109 |
-
c8.82031 0 16.7754 3.7334 22.3691 9.70508zM614.31 247h25.6904l-79 -183.87h-24.3496l29.3496 64.3203l-51.79 119.55h25.6904l37.4199 -91.7002h0.449219z" />
|
110 |
-
<glyph glyph-name="rust" unicode="" horiz-adv-x="512"
|
111 |
-
d="M508.52 198.25c2.09375 -1.2959 3.44043 -3.60449 3.44043 -6.24512c0 -2.6416 -1.39648 -4.95898 -3.49023 -6.25488l-21.8193 -13.5098c-0.169922 -1.95996 -0.34082 -3.91992 -0.550781 -5.87012l18.7207 -17.5c1.43457 -1.3418 2.33203 -3.24805 2.33203 -5.36523
|
112 |
-
c0 -3.15039 -1.98535 -5.83984 -4.77246 -6.88477l-24 -9c-0.540039 -1.88965 -1.08008 -3.78027 -1.66992 -5.65039l15 -20.8301c0.865234 -1.20508 1.37207 -2.68945 1.37207 -4.28516c0 -3.65234 -2.66992 -6.68555 -6.16211 -7.25488l-25.4199 -4.14941
|
113 |
-
c-0.900391 -1.71973 -1.79004 -3.4502 -2.73047 -5.15039l10.6807 -23.4199c0.420898 -0.925781 0.655273 -1.96875 0.655273 -3.05176c0 -1.50781 -0.455078 -2.91113 -1.23535 -4.07812c-1.29199 -1.97168 -3.51172 -3.26758 -6.04297 -3.26758
|
114 |
-
c-0.109375 0 -0.21875 0.00292969 -0.327148 0.0078125l-25.8203 0.910156c-1.18652 -1.4873 -2.38965 -2.9541 -3.60938 -4.40039l5.92969 -25.1602c0.125977 -0.538086 0.196289 -1.0957 0.196289 -1.67188c0 -4.0625 -3.29785 -7.36035 -7.35938 -7.36035
|
115 |
-
c-0.577148 0 -1.13867 0.0664062 -1.67676 0.192383l-25.1504 5.92969c-1.45312 -1.21289 -2.91992 -2.41602 -4.39941 -3.60938l0.90918 -25.8203c0.00390625 -0.0878906 -0.000976562 -0.167969 -0.000976562 -0.256836c0 -4.05664 -3.29395 -7.34961 -7.34961 -7.34961
|
116 |
-
c-1.08398 0 -2.1123 0.235352 -3.03906 0.65625l-23.4199 10.6807c-1.7002 -0.94043 -3.42969 -1.83008 -5.15039 -2.73047l-4.14941 -25.4199c-0.56543 -3.49121 -3.60254 -6.16309 -7.25293 -6.16309c-1.59961 0 -3.08105 0.512695 -4.28711 1.38281l-20.8203 15
|
117 |
-
c-1.87012 -0.599609 -3.75977 -1.12988 -5.64941 -1.67969l-9 -24c-1.05078 -2.7832 -3.7373 -4.7627 -6.88574 -4.7627c-2.11426 0 -4.02148 0.892578 -5.36426 2.32227l-17.5 18.7305c-1.9502 -0.219727 -3.88086 -0.390625 -5.88086 -0.560547l-13.5098 -21.8193
|
118 |
-
c-1.2959 -2.09375 -3.60352 -3.49023 -6.24512 -3.49023s-4.95898 1.39648 -6.25488 3.49023l-13.5098 21.8193c-1.95996 0.169922 -3.92969 0.34082 -5.87988 0.550781l-17.5 -18.7207c-1.34277 -1.42969 -3.24707 -2.32422 -5.36133 -2.32422
|
119 |
-
c-3.14844 0 -5.83789 1.98145 -6.88867 4.76465l-9 24c-1.88965 0.549805 -3.79004 1.08008 -5.65039 1.67969l-20.8301 -15c-1.20605 -0.870117 -2.69434 -1.37988 -4.29395 -1.37988c-3.64941 0 -6.68066 2.66895 -7.24609 6.16016l-4.14941 25.4199
|
120 |
-
c-1.71973 0.900391 -3.4502 1.79004 -5.14062 2.73047l-23.4297 -10.6807c-0.925781 -0.420898 -1.96094 -0.664062 -3.04492 -0.664062c-4.05664 0 -7.34961 3.29297 -7.34961 7.34961c0 0.0888672 0.00195312 0.176758 0.00488281 0.264648l0.919922 25.8203
|
121 |
-
c-1.4873 1.18652 -2.95703 2.38965 -4.41016 3.60938l-25.1602 -5.92969c-0.538086 -0.125977 -1.0957 -0.196289 -1.67188 -0.196289c-4.0625 0 -7.36035 3.29785 -7.36035 7.35938c0 0.577148 0.0664062 1.13867 0.192383 1.67676l5.92969 25.1602
|
122 |
-
c-1.21973 1.45312 -2.41992 2.91992 -3.59961 4.40039l-25.8301 -0.910156c-0.125977 -0.00683594 -0.243164 -0.0175781 -0.371094 -0.0175781c-2.5166 0 -4.72949 1.30664 -5.99902 3.27734c-0.776367 1.16504 -1.23047 2.57812 -1.23047 4.08301
|
123 |
-
c0 1.08691 0.236328 2.11816 0.660156 3.04688l10.6309 23.4297c-0.94043 1.69043 -1.83008 3.4209 -2.73047 5.14062l-25.4199 4.14941c-3.49219 0.569336 -6.16504 3.60938 -6.16504 7.26172c0 1.5957 0.509766 3.07324 1.375 4.27832l15 20.8301
|
124 |
-
c-0.599609 1.87012 -1.12988 3.76074 -1.67969 5.65039l-24 9c-2.78711 1.04492 -4.77148 3.73145 -4.77148 6.88184c0 2.11719 0.896484 4.02637 2.33105 5.36816l18.7197 17.5c-0.209961 1.9502 -0.379883 3.87012 -0.549805 5.87012l-21.8193 13.5098
|
125 |
-
c-2.09473 1.2959 -3.49023 3.60449 -3.49023 6.24512c0 2.6416 1.39551 4.95898 3.49023 6.25488l21.8594 13.5c0.169922 1.96973 0.339844 3.92969 0.549805 5.87988l-18.7197 17.5c-1.43457 1.3418 -2.33203 3.24805 -2.33203 5.36523
|
126 |
-
c0 3.15039 1.98535 5.83984 4.77246 6.88477l24 9c0.549805 1.88965 1.08984 3.79004 1.67969 5.66016l-15 20.8203c-0.865234 1.20508 -1.37207 2.68945 -1.37207 4.28516c0 3.65234 2.66992 6.68555 6.16211 7.25488l25.4102 4.13965
|
127 |
-
c0.899414 1.72949 1.79004 3.45996 2.72949 5.16016l-10.6602 23.4102c-0.423828 0.927734 -0.65918 1.97363 -0.65918 3.06055c0 1.50391 0.453125 2.90332 1.22949 4.06934c1.33398 1.97266 3.58398 3.26367 6.14258 3.26367
|
128 |
-
c0.0761719 0 0.152344 -0.00195312 0.227539 -0.00390625l25.8096 -0.910156c1.19043 1.48047 2.39062 2.95996 3.62012 4.41016l-5.92969 25.1602c-0.125977 0.538086 -0.196289 1.0957 -0.196289 1.67188c0 4.0625 3.29785 7.36035 7.35938 7.36035
|
129 |
-
c0.577148 0 1.13867 -0.0664062 1.67676 -0.192383l25.1504 -5.96973c1.41992 1.21973 2.92969 2.41992 4.41992 3.60938l-0.919922 25.8105c-0.00488281 0.104492 -0.000976562 0.201172 -0.000976562 0.307617c0 4.05566 3.29395 7.34961 7.35059 7.34961
|
130 |
-
c1.08398 0 2.11328 -0.235352 3.04004 -0.657227l23.4004 -10.6299c1.70996 0.939453 3.42969 1.83008 5.16016 2.72949l4.14941 25.4102c0.569336 3.49219 3.60938 6.16504 7.26172 6.16504c1.5957 0 3.07324 -0.509766 4.27832 -1.375l20.8203 -15
|
131 |
-
c1.87012 0.599609 3.76953 1.12988 5.66016 1.67969l9 24c1.04492 2.78711 3.73145 4.77148 6.88184 4.77148c2.11719 0 4.02637 -0.896484 5.36816 -2.33105l17.5 -18.7197c1.94922 0.209961 3.87988 0.379883 5.87988 0.549805l13.5098 21.8193
|
132 |
-
c1.2959 2.09473 3.60449 3.49023 6.24512 3.49023c2.6416 0 4.95898 -1.39551 6.25488 -3.49023l13.4805 -21.8398c1.96973 -0.169922 3.92969 -0.339844 5.87988 -0.549805l17.5 18.7197c1.3418 1.43457 3.24805 2.33301 5.36523 2.33301
|
133 |
-
c3.14941 0 5.83984 -1.98535 6.88477 -4.77246l9 -24c1.88965 -0.540039 3.7793 -1.08008 5.63965 -1.66992l20.8604 14.9697c1.20508 0.865234 2.68945 1.37207 4.28516 1.37207c3.65234 0 6.68555 -2.66992 7.25488 -6.16211l4.14941 -25.4199
|
134 |
-
c1.71973 -0.889648 3.4502 -1.79004 5.15039 -2.73047l23.4199 10.7305c0.926758 0.421875 1.96289 0.666016 3.04688 0.666016c4.05664 0 7.34961 -3.29395 7.34961 -7.35059c0 -0.105469 -0.00195312 -0.210938 -0.00683594 -0.31543l-0.910156 -25.8203
|
135 |
-
c1.4873 -1.18652 2.9541 -2.38965 4.40039 -3.60938l25.1602 5.92969c0.538086 0.125977 1.0957 0.196289 1.67188 0.196289c4.0625 0 7.36035 -3.29785 7.36035 -7.35938c0 -0.577148 -0.0664062 -1.13867 -0.192383 -1.67676l-5.87988 -25.1602
|
136 |
-
c1.21387 -1.45312 2.41699 -2.91992 3.61035 -4.40039l25.8193 0.910156c0.0878906 0.00292969 0.167969 -0.000976562 0.256836 -0.000976562c4.05664 0 7.34961 -3.29395 7.34961 -7.35059c0 -1.08301 -0.234375 -2.1123 -0.65625 -3.03809l-10.6797 -23.4199
|
137 |
-
c0.939453 -1.7002 1.83008 -3.41992 2.72949 -5.15039l25.4199 -4.14941c3.49219 -0.569336 6.16504 -3.60938 6.16504 -7.26172c0 -1.5957 -0.509766 -3.07324 -1.375 -4.27832l-15 -20.8301c0.589844 -1.86035 1.12988 -3.76074 1.66992 -5.64062l24 -9
|
138 |
-
c2.78711 -1.04492 4.77148 -3.73145 4.77148 -6.88184c0 -2.11719 -0.896484 -4.02637 -2.33105 -5.36816l-18.7197 -17.5c0.209961 -1.94922 0.379883 -3.87988 0.549805 -5.87988zM357.52 69.1699l32.1406 -6.87988c6.28125 6.3125 12.0029 12.9395 17.3398 20.0898
|
139 |
-
h-79.0498c-12.5 0 -24.21 17.6396 -27.1006 26.46c-2.88965 7.86035 -7.14941 32.4502 -9.05957 40c-6.12988 24.5898 -25.3799 25.8701 -29.79 25.8701h-48.4805l-0.0498047 -34.3496h44.8301c1.71973 0 2.89062 -0.34082 2.89062 -1.91016v-54.1904
|
140 |
-
c0 -1.62012 -1.1709 -1.91016 -2.89062 -1.91016h-153.17c5.01953 -6.80957 10.3848 -13.1465 16.2598 -19.21l31.5107 6.76074c0.935547 0.199219 1.89746 0.294922 2.89258 0.294922c6.66211 0 12.2344 -4.70801 13.5674 -10.9756l7.63965 -35.6602
|
141 |
-
c23.9688 -11.1318 50.9941 -17.3506 79.1416 -17.3506c27.5205 0 53.665 5.94141 77.2188 16.6113l7.63965 35.6699c1.34668 6.27246 6.91797 10.9893 13.5908 10.9893c1.00488 0 1.98438 -0.106445 2.92871 -0.30957zM383.29 34.6797
|
142 |
-
c0 0.00585938 -0.0576172 0.0107422 -0.0576172 0.0166016c0 8.25977 -6.58887 14.9922 -14.792 15.2236h-0.44043c-8.3877 -0.0273438 -15.1904 -6.8457 -15.1904 -15.2402c0 -8.41113 6.8291 -15.2393 15.2402 -15.2393s15.2402 6.82812 15.2402 15.2393zM157.67 35.3604
|
143 |
-
c0 0.00195312 -0.0576172 0.00488281 -0.0576172 0.0078125c0 8.24707 -6.56055 14.9736 -14.7422 15.2422h-0.450195c-8.40625 -0.00585938 -15.2295 -6.83203 -15.2295 -15.2402c0 -8.41113 6.82812 -15.2402 15.2393 -15.2402c8.4082 0 15.2344 6.82324 15.2402 15.2305z
|
144 |
-
M69.5703 213.85c-0.725586 -6.69922 -1.0625 -13.2754 -1.0625 -20.167c0 -17.8242 2.49023 -35.0713 7.14258 -51.4131h53.5996v119.73h-26.5596l6.76953 -15.2197c0.765625 -1.7207 1.20801 -3.62988 1.20801 -5.63281c0 -5.66406 -3.39941 -10.54 -8.26758 -12.6973z
|
145 |
-
M58.3096 249.91c0.00292969 -8.4082 6.84375 -15.2236 15.2529 -15.2236c8.41113 0 15.2402 6.82812 15.2402 15.2393c0 8.26562 -6.59375 15.0029 -14.8027 15.2344h-0.459961c-8.40625 -0.00585938 -15.2305 -6.83203 -15.2305 -15.2402v-0.00976562zM213.47 225.42
|
146 |
-
h58.7002c12.4902 0 27.6797 4.41016 27.6797 16.7002c0 14.8496 -19.79 18.6201 -23.0693 18.6201h-63.2607zM399 141.29c10.3096 1.12988 22 5.70996 22.0195 26.46v8.82031c0 1.85938 0.780273 3.12988 2.69043 3.12988h19.2803
|
147 |
-
c0.349609 4.6709 0.529297 9.02832 0.529297 13.7891c0 6.32812 -0.314453 12.583 -0.929688 18.751l-34.5898 15.3301c-4.86621 2.19434 -8.23828 7.0918 -8.23828 12.7725c0 1.97363 0.410156 3.85352 1.14844 5.55762l18 40.5693
|
148 |
-
c-26.8047 47.0127 -73.3965 81.1328 -128.37 91.4307l-26.2598 -25c-2.48535 -2.39062 -5.86523 -3.86523 -9.58203 -3.86523c-3.94141 0 -7.5 1.6543 -10.0186 4.30469l-23.4697 24.6006c-41.29 -7.80371 -77.9434 -29.083 -104.89 -59.1904h198.899
|
149 |
-
c4.99023 0 23.5107 -2.23047 40.2705 -13.2305c11.9102 -7.88965 29.3994 -23.96 29.3994 -49.4795c0 -23.6201 -19.5996 -41.3096 -38.46 -53.2598c15.1807 -12 24.79 -18.9102 30.5703 -51.4004c1.37012 -5.96973 12.2002 -11.2197 22 -10.0898zM240 387.79
|
150 |
-
c0 -0.0078125 -0.00683594 -0.015625 -0.00683594 -0.0244141c0 -8.41113 6.82812 -15.2393 15.2402 -15.2393c8.41113 0 15.2393 6.82812 15.2393 15.2393c0 8.26855 -6.59863 15.0078 -14.8125 15.2344h-0.450195c-8.38672 -0.0166016 -15.1934 -6.82324 -15.21 -15.21z
|
151 |
-
M436.84 234c0.0742188 -0.000976562 0.141602 -0.00195312 0.21582 -0.00195312c8.41211 0 15.2422 6.83008 15.2422 15.2422c0 8.33691 -6.70898 15.1201 -15.0176 15.2402h-0.44043c-8.41113 0 -15.2402 -6.8291 -15.2402 -15.2402s6.8291 -15.2402 15.2402 -15.2402z" />
|
152 |
-
<glyph glyph-name="tiktok" unicode=""
|
153 |
-
d="M448 238.09h-0.512695c-45.5098 0 -87.8428 14.6162 -122.257 39.25v-178.72c-0.0332031 -89.6855 -72.8574 -162.489 -162.551 -162.489c-89.7139 0 -162.55 72.8359 -162.55 162.55s72.8359 162.55 162.55 162.55c7.62891 0 14.9697 -0.521484 22.3203 -1.54004
|
154 |
-
v-89.8906c-7.06836 2.22363 -14.5889 3.42285 -22.3877 3.42285c-41.1836 0 -74.6201 -33.4365 -74.6201 -74.6201c0 -41.1846 33.4365 -74.6201 74.6201 -74.6201c41.1846 0 74.6182 33.4541 74.6182 74.6377v349.38h88
|
155 |
-
c-0.00292969 -0.337891 -0.00488281 -0.676758 -0.00488281 -1.01562c0 -7.25977 0.638672 -14.2441 1.86426 -21.1543v0c6.28613 -33.5771 26.1982 -62.3613 53.9102 -80.2197c19.1787 -12.6816 42.1592 -20.0674 66.8506 -20.0674
|
156 |
-
c0.00878906 0 0.140625 -0.0732422 0.149414 -0.0732422v-87.3799z" />
|
157 |
-
<glyph glyph-name="unsplash" unicode=""
|
158 |
-
d="M448 217.83v-249.83h-448v249.83h141.13v-124.92h165.74v124.92h141.13zM306.87 416v-124.91h-165.74v124.91h165.74z" />
|
159 |
-
<glyph glyph-name="cloudflare" unicode="" horiz-adv-x="640"
|
160 |
-
d="M407.906 128.087c12.1836 -0.574219 22.2178 -5.50977 28.2334 -13.9023c6.54883 -9.09961 8 -21.5 4.10059 -34.8994l-3.27344 -11.2656c-0.681641 -2.28125 -2.7793 -3.95508 -5.27051 -4c-0.0419922 -0.000976562 -0.0791016 -0.0195312 -0.12207 -0.0195312
|
161 |
-
l-426.101 0.0507812c-2.26172 0.00878906 -4.13379 1.69238 -4.44434 3.87109c-0.676758 4.58691 -1.02637 9.18457 -1.0293 13.958c0 52.3926 41.9238 95.0137 94.2002 96.5303c-1.37402 5.39062 -2.05469 10.9785 -2.05469 16.7939
|
162 |
-
c0 37.5967 30.5234 68.1201 68.1201 68.1201c15.3838 0 29.583 -5.11035 40.9912 -13.7246c20.542 59.582 77.085 102.308 143.607 102.308c72.1562 0 132.629 -50.417 148.085 -117.914c0.107422 -0.513672 0.164062 -1.03906 0.164062 -1.58398v-0.046875
|
163 |
-
c0 -0.0332031 -0.00292969 -0.0683594 -0.00292969 -0.101562c0 -0.998047 -0.18457 -1.9541 -0.521484 -2.83496l-13.2861 -34.542c-10.4756 -27.21 -40.3906 -49.5234 -68.0215 -50.7842l-232.94 -2.93555c-2.48145 -0.173828 -4.5625 -1.82227 -5.36035 -4.07617
|
164 |
-
c-0.178711 -0.493164 -0.275391 -1.03223 -0.275391 -1.58691c0 -0.945312 0.283203 -1.8252 0.768555 -2.55957c0.8125 -1.14258 2.13379 -1.89355 3.63281 -1.92676zM513.856 226.9c69.668 0 126.144 -56.2002 126.147 -125.533
|
165 |
-
c0 -0.0458984 -0.0175781 -0.0644531 -0.0175781 -0.110352c0 -11.7441 -1.62598 -23.1123 -4.66406 -33.8896c-0.571289 -1.94629 -2.37012 -3.37012 -4.5 -3.37012h-0.0390625h-175.91c-0.0478516 0 -0.0898438 0.0166016 -0.135742 0.0166016
|
166 |
-
c-1.44727 0.0595703 -2.60449 1.25391 -2.60449 2.71484c0 0.339844 0.0634766 0.666016 0.176758 0.96582l3.69531 9.60547c10.4766 27.21 40.3916 49.5146 68.1455 50.7842l51.125 2.93945c2.47559 0.179688 4.55078 1.82617 5.35059 4.07422
|
167 |
-
c0.177734 0.492188 0.274414 1.03027 0.274414 1.58301c0 0.957031 -0.291016 1.84766 -0.788086 2.58594c-0.785156 1.11035 -2.06152 1.84375 -3.51074 1.89453l-49.1992 2.93848c-12.1846 0.577148 -22.2188 5.5 -28.2383 13.9004
|
168 |
-
c-6.54883 9.10352 -8 21.4902 -4.09961 34.8896l9.07617 31.1934c0.447266 1.45508 1.75391 2.53613 3.32422 2.65332c2.12012 0.101562 4.25 0.164062 6.3916 0.164062z" />
|
169 |
-
<glyph glyph-name="guilded" unicode=""
|
170 |
-
d="M443.427 384c0.00195312 -0.518555 0.0253906 -0.367188 0.0253906 -0.885742c0 -29.1934 -2.00293 -57.9229 -5.87891 -86.0576h-336.147s0.366211 -52.0498 27.0918 -105.883c27.458 -51.8174 65.3164 -85.1025 96.5488 -98.3623
|
171 |
-
c32.2695 15.082 63.4434 41.2695 80.4561 69.4824h-88.5898c-22.9229 18.998 -40.96 50.5146 -45.0996 86.9443h259.889c-12.8154 -58.5713 -40.0088 -111.838 -65.916 -145.762c-35.8154 -46.7773 -84.2695 -82.8105 -140.55 -103.477
|
172 |
-
c-1.25586 0 -113.21 33.8652 -177.267 161.642c-21.2266 42.2988 -43.418 119.099 -43.418 222.358h438.855z" />
|
173 |
-
<glyph glyph-name="hive" unicode="" horiz-adv-x="512"
|
174 |
-
d="M260.353 193.122c0.191406 -0.329102 0.300781 -0.716797 0.300781 -1.12402c0 -0.404297 -0.107422 -0.783203 -0.294922 -1.11133l-127.412 -221.777c-0.380859 -0.666992 -1.09473 -1.11621 -1.91602 -1.11621c-0.818359 0 -1.53223 0.445312 -1.91406 1.10645
|
175 |
-
l-128.816 221.778c-0.189453 0.328125 -0.297852 0.713867 -0.297852 1.12012s0.108398 0.787109 0.297852 1.11523l127.409 221.777c0.380859 0.666016 1.09473 1.11523 1.91602 1.11523c0.817383 0 1.53125 -0.445312 1.91309 -1.10547zM299.431 218.835l-110.624 193.824
|
176 |
-
c-0.189453 0.327148 -0.298828 0.709961 -0.298828 1.11523c0 1.21973 0.983398 2.21094 2.19922 2.22559h66.5078c0.81543 -0.00195312 1.52539 -0.447266 1.90039 -1.11133l110.625 -193.823c0.189453 -0.328125 0.298828 -0.709961 0.298828 -1.11523
|
177 |
-
c0 -1.21973 -0.983398 -2.21191 -2.19922 -2.22656h-66.5088c-0.81543 0.00292969 -1.52441 0.448242 -1.90039 1.11133zM511.7 193.114c0.1875 -0.328125 0.294922 -0.711914 0.294922 -1.11621c0 -0.405273 -0.107422 -0.78418 -0.294922 -1.1123l-126.808 -221.773
|
178 |
-
c-0.376953 -0.664062 -1.08887 -1.11035 -1.90527 -1.1123h-66.6006c-1.21875 0.0117188 -2.20312 1.00684 -2.20312 2.22852c0 0.404297 0.108398 0.78418 0.297852 1.11133l126.171 220.66l-126.168 220.66c-0.189453 0.327148 -0.298828 0.708984 -0.298828 1.11426
|
179 |
-
c0 1.2207 0.985352 2.21387 2.2041 2.22559h66.6006c0.818359 -0.000976562 1.53125 -0.447266 1.91016 -1.1123zM366.016 163.083c1.2168 -0.0136719 2.19922 -1.00879 2.19922 -2.22852c0 -0.405273 -0.108398 -0.785156 -0.297852 -1.1123l-108.8 -190.631
|
180 |
-
c-0.375 -0.664062 -1.08496 -1.10938 -1.90039 -1.11133h-66.5088c-1.21582 0.0146484 -2.19824 1.00879 -2.19824 2.22852c0 0.405273 0.108398 0.785156 0.297852 1.1123l108.801 190.631c0.374023 0.664062 1.08398 1.10938 1.89941 1.11133h66.5078z" />
|
181 |
-
<glyph glyph-name="innosoft" unicode=""
|
182 |
-
d="M422.559 288.29l0.00292969 -190.955c0.0253906 -12.4102 -5.87793 -22.8965 -16.623 -29.5283l-164.527 -94.9951c-5.08008 -3.04102 -11.0938 -4.79004 -17.4404 -4.79004c-6.11523 0 -11.8545 1.62402 -16.8096 4.46387l-118.794 68.583l247.049 142.627v-56
|
183 |
-
l-150.051 -86.627l32.7227 -18.9004c1.74805 -0.97168 3.78613 -1.52441 5.92676 -1.52441c2.18457 0 4.23633 0.576172 6.01074 1.58691l138.111 79.7441c3.54883 2.08008 5.91992 5.92578 5.91992 10.332v0.0361328v138.281l-308.407 -178.066
|
184 |
-
c-3.94629 -2.25293 -8.57129 -3.54102 -13.4365 -3.54102c-4.83301 0 -9.37207 1.27051 -13.2998 3.49609c-8.39453 4.75586 -13.3037 13.293 -13.4736 23.4287v191.5c0.518555 12.7334 6.65527 23.0039 17.2891 29.124l164.601 95.0254
|
185 |
-
c11.5 5.98535 22.8076 5.85938 33.7998 -0.269531l118.513 -68.4072l-247.061 -142.637v56l150.062 86.6367l-32.6553 18.8525c-1.76367 0.998047 -3.82715 1.56738 -5.99609 1.56738c-2.15137 0 -4.17285 -0.55957 -5.92578 -1.54199l-138.076 -79.7129
|
186 |
-
c-3.60352 -2.04785 -6.02734 -5.90723 -6.04688 -10.3398v-138.387l308.539 178.142c3.88281 2.24414 8.44531 3.5293 13.25 3.5293c4.70801 0 9.13086 -1.23438 12.9609 -3.39648c8.16406 -4.63184 13.6914 -13.3291 13.8652 -23.3369z" />
|
187 |
-
<glyph glyph-name="instalod" unicode="" horiz-adv-x="512"
|
188 |
-
d="M153.384 -32l50.8447 146.789l298.325 57.4463l-115.44 -204.235h-233.729zM504.726 207.922l-144.495 -27.8223l-204.562 235.9h231.444zM124.386 399.191l101.241 -116.752l-102.391 -295.594l-115.962 205.154z" />
|
189 |
-
<glyph glyph-name="octopus-deploy" unicode="" horiz-adv-x="512"
|
190 |
-
d="M455.6 98.7998c12.4395 -10.5996 42.6348 -26.4775 42.5244 -45.2666c-0.15332 -24.6084 -48.4248 5.24121 -53.8184 9.51953c6.13965 -10.7275 66.998 -74.1787 28.2627 -78.6943c-35.6562 -4.1582 -67.1406 45.6416 -88.5615 67.0225
|
191 |
-
c-36 35.9082 -29.7373 -43.5332 -29.8994 -59.9443c-0.257812 -25.9082 -18.5586 -78.4209 -51.4121 -44.2207c-27.1387 28.2314 -16.873 73.2607 -35.7383 104.622c-20.6641 34.3535 -55.0361 -34.3535 -63.627 -46.9258
|
192 |
-
c-9.59668 -14.042 -57.6094 -82.041 -76.709 -45.8125c-15.499 29.4004 9.2793 75.5127 21.4629 102.103c-4.44336 -9.65723 -35.9297 -23.9414 -45.1299 -28.5879c-20.7871 -10.4971 -41.8867 -16.7256 -65.2646 -15.0449
|
193 |
-
c-27.8916 2.00098 -38.3789 11.6572 8.42773 41.8574c38.5615 24.8389 83.8613 67.4209 66.6621 117.582c-9.37305 27.3301 -22.3574 50.7568 -24.0898 80.2998c-0.209961 3.56152 -0.25 7.08008 -0.25 10.6924c0 22.0957 3.9707 43.2715 11.2373 62.8516
|
194 |
-
c34.5752 92.8066 137.363 136.747 230.253 108.848c86.0371 -25.8398 145.23 -125.74 109.575 -212.79c-20.5752 -50.2334 -29.7959 -89.0205 16.0947 -128.11z" />
|
195 |
-
<glyph glyph-name="perbyte" unicode=""
|
196 |
-
d="M305.314 163.422c15.9307 0.000976562 28.5732 -4.5 37.9277 -13.5059s14.0322 -20.7842 14.0322 -35.335c0 -14.8936 -4.58984 -26.9307 -13.7705 -36.1113c-9.17969 -9.17969 -21.9111 -13.7695 -38.1934 -13.7695h-58.7109v98.7217h58.7148zM149.435 319.301
|
197 |
-
c15.9346 0.00488281 28.5791 -4.49609 37.9316 -13.5039s14.0283 -20.7871 14.0283 -35.3379c0 -14.8896 -4.58984 -26.9258 -13.7695 -36.1084c-9.17969 -9.18164 -21.9102 -13.7725 -38.1904 -13.7725h-58.7109v98.7227h58.7109zM366.648 416.002
|
198 |
-
c22.4385 -0.0253906 41.5996 -7.98145 57.4854 -23.8672s23.8418 -35.0479 23.8672 -57.4854v-285.296c-0.0253906 -22.4375 -7.98145 -41.5996 -23.8672 -57.4854s-35.0479 -23.8418 -57.4854 -23.8672h-285.295c-22.4385 0.0253906 -41.6006 7.98145 -57.4863 23.8672
|
199 |
-
s-23.8418 35.0479 -23.8672 57.4863v285.296c0.0253906 22.4375 7.98145 41.5996 23.8672 57.4854s35.0479 23.8408 57.4863 23.8662h285.295zM430.282 49.3535l-0.000976562 285.296c-0.0195312 17.5518 -6.24219 32.54 -18.668 44.9658s-27.4141 18.6484 -44.9648 18.668
|
200 |
-
h-285.295c-17.5508 -0.0195312 -32.5391 -6.24219 -44.9648 -18.668s-18.6484 -27.4141 -18.668 -44.9658v-285.296c0.0195312 -17.5508 6.24219 -32.5391 18.668 -44.9648s27.4141 -18.6484 44.9648 -18.668h285.295c17.5518 0.0195312 32.54 6.24219 44.9658 18.668
|
201 |
-
s18.6484 27.4141 18.668 44.9648zM305.313 319.301c15.9307 0.00488281 28.5732 -4.49609 37.9277 -13.5039s14.0322 -20.7871 14.0322 -35.3379c0 -14.8896 -4.58984 -26.9258 -13.7705 -36.1084c-9.17969 -9.18164 -21.9111 -13.7725 -38.1934 -13.7725h-58.7109v98.7227
|
202 |
-
h58.7148z" />
|
203 |
-
<glyph glyph-name="uncharted" unicode=""
|
204 |
-
d="M171.73 215.187c-0.0605469 -0.00195312 -0.12207 -0.000976562 -0.183594 -0.000976562c-0.673828 0 -1.3125 0.148438 -1.88672 0.414062l-115.933 67.9004v-85.2891c-0.0830078 -2.71289 -1.16895 -5.18555 -2.89941 -7.03906
|
205 |
-
c-1.6748 -1.54297 -3.91113 -2.4873 -6.36621 -2.4873c-0.0859375 0 -0.172852 0.000976562 -0.258789 0.00390625c-0.146484 -0.0078125 -0.296875 -0.00585938 -0.444336 -0.00585938c-1.65332 0 -3.2002 0.455078 -4.52344 1.24707l-22.3584 12.835
|
206 |
-
c-2.9541 1.50684 -4.9707 4.57031 -4.9707 8.1123c0 0.0566406 0.000976562 0.112305 0.00195312 0.168945v115.107c0.118164 3.54102 2.08105 6.61523 4.96875 8.28027l100.2 57.9668c1.40625 0.787109 3.04688 1.23535 4.77148 1.23535s3.3457 -0.448242 4.75098 -1.23535
|
207 |
-
l22.3584 -12.8389c2.9541 -1.50586 4.96973 -4.56934 4.96973 -8.11035c0 -0.0566406 -0.000976562 -0.113281 -0.00195312 -0.169922c-0.117188 -3.54199 -2.08008 -6.61523 -4.96777 -8.28125l-74.5293 -43.4727l116.757 -68.3184
|
208 |
-
c1.16016 -0.680664 1.96191 -1.89941 2.07129 -3.31152c0 -1.65723 -0.414062 -3.31348 -1.65723 -4.1416c-7.34473 -6.5459 -12.6475 -15.3301 -14.8994 -25.2559c-0.810547 -1.94629 -2.72949 -3.31348 -4.96777 -3.31348h-0.00195312zM323.272 70.2695
|
209 |
-
c4.96777 0 9.52734 -4.55469 10.3506 -9.1084v-26.085c-0.117188 -3.54199 -2.08105 -6.61523 -4.96777 -8.28125l-100.2 -57.5527c-1.48633 -0.772461 -3.18359 -1.22363 -4.96875 -1.24219c-0.146484 -0.00683594 -0.296875 -0.00488281 -0.444336 -0.00488281
|
210 |
-
c-1.65332 0 -3.2002 0.455078 -4.52441 1.24707l-100.199 57.5527c-2.95508 1.50586 -4.9707 4.56934 -4.9707 8.11035c0 0.0576172 0 0.114258 0.000976562 0.170898v26.085c0.0585938 5.22852 4.29492 9.46484 9.52344 9.52246
|
211 |
-
c0.146484 0.0078125 0.296875 0.00585938 0.444336 0.00585938c1.65332 0 3.20117 -0.456055 4.52441 -1.24707l74.5293 -43.0615v133.323c0.0615234 2.62891 2.21387 4.74609 4.85742 4.74609c0.469727 0 0.922852 -0.0673828 1.35254 -0.191406
|
212 |
-
c4.39453 -1.18066 8.99414 -1.80664 13.7588 -1.80664c5.29102 0 10.4023 0.776367 15.2256 2.2207c3.31055 1.24512 6.21094 -1.65527 6.21094 -4.55469v-134.152l74.5273 43.0625c1.50684 0.730469 3.2002 1.17383 4.96973 1.24121zM286.007 370
|
213 |
-
c-12.6943 0 -23 10.3057 -23 23s10.3057 23 23 23s23 -10.3057 23 -23s-10.3057 -23 -23 -23zM349.634 380.086c12.6943 0 23 -10.3057 23 -23s-10.3057 -23 -23 -23c-12.6934 0 -23 10.3057 -23 23s10.3066 23 23 23zM412.816 296.4c-12.6943 0 -23 10.3057 -23 23
|
214 |
-
c0 12.6934 10.3057 23 23 23c12.6934 0 23 -10.3066 23 -23c0 -12.6943 -10.3066 -23 -23 -23zM349.634 305.6c12.6943 0 23 -10.3057 23 -23c0 -12.6934 -10.3057 -23 -23 -23c-12.6934 0 -23 10.3066 -23 23c0 12.6943 10.3066 23 23 23zM286.007 222.356
|
215 |
-
c-12.6943 0 -23 10.3018 -23 22.9951v0.00488281c0 12.6934 10.3057 23 23 23s23 -10.3066 23 -23c0 -12.6943 -10.3057 -23 -23 -23zM223.933 185.998c-12.6934 0 -23 10.3018 -23 22.9961v0.00390625c0 12.6943 10.3066 23 23 23c12.6943 0 23 -10.3057 23 -23
|
216 |
-
s-10.3057 -23 -23 -23zM412.816 268.356c12.6924 0 22.9971 -10.3086 23 -23c0 -12.6943 -10.3066 -23 -23 -23c-12.6943 0 -23 10.3057 -23 23c0 12.6934 10.3057 23 23 23zM412.816 196.084c12.6924 0 22.9971 -10.3076 23 -23c0 -12.6943 -10.3066 -23 -23 -23
|
217 |
-
c-12.6943 0 -23 10.3057 -23 23s10.3057 23 23 23z" />
|
218 |
-
<glyph glyph-name="watchman-monitoring" unicode="" horiz-adv-x="512"
|
219 |
-
d="M256 432c132.548 0 240 -107.452 240 -240s-107.452 -240 -240 -240s-240 107.452 -240 240s107.452 240 240 240zM121.69 18.8779l27.6846 204.861l-9.46777 7.39941c-2.98242 2.34082 -4.89062 5.9668 -4.89062 10.0479
|
220 |
-
c0 0.100586 0.000976562 0.201172 0.00292969 0.301758c0 7.04883 0.144531 19.5488 0.144531 19.5488l13.9434 2.0127l0.120117 10.9668l-102.899 -17.8945c-6.20508 -20.251 -9.58691 -41.7412 -9.58691 -64.0137v-0.108398c0 -70.3223 33.3145 -132.972 84.9492 -173.122
|
221 |
-
zM227.382 302.148l0.0400391 -3.61816l193.512 37.7002c-40.1152 46.0273 -99.1426 75.0244 -164.934 75.0244c-74.4863 0 -140.374 -37.3623 -180.018 -94.2998l73.5068 -19.1758l0.0478516 4.36914l-8.48145 7.61719s-6.93359 5.38086 0.144531 9.34473
|
222 |
-
c7.18652 4.02539 39.5283 34.5 39.5283 34.5c7.20312 7.34668 10.1123 5.47656 15.4609 0c0 0 32.3418 -30.4766 39.5293 -34.5c7.07715 -3.96387 0.143555 -9.34473 0.143555 -9.34473zM261.445 -27.1211c118.386 2.90918 213.813 100.047 213.813 219.121
|
223 |
-
c-0.0107422 17.2881 -2.04297 33.9951 -5.85059 50.1299l-241.711 31.3916l0.116211 -10.4746l13.9424 -2.0127s0.144531 -12.5049 0.144531 -19.5488c0.00195312 -0.100586 0.0126953 -0.19043 0.0126953 -0.290039c0 -4.08203 -1.91797 -7.71973 -4.90137 -10.0596
|
224 |
-
l-9.4668 -7.39941z" />
|
225 |
-
<glyph glyph-name="wodu" unicode="" horiz-adv-x="640"
|
226 |
-
d="M178.414 108.294h-37.3145l-28.9336 116.231h-0.477539l-28.4609 -116.231h-38.0273l-45.2002 170.76h37.5479l27.0264 -116.23h0.477539l29.6553 116.23h35.1572l29.1777 -117.667h0.479492l27.9785 117.667h36.8311zM271.4 235.287
|
227 |
-
c38.9834 0 64.0996 -25.8281 64.0996 -65.291c0 -39.2217 -25.1113 -65.0498 -64.0996 -65.0498c-38.7432 0 -63.8555 25.8281 -63.8555 65.0498c0.00195312 39.4629 25.1143 65.291 63.8555 65.291zM271.4 130.534c23.1992 0 30.1328 19.8516 30.1328 39.4619
|
228 |
-
c0 19.8516 -6.93457 39.7002 -30.1328 39.7002c-27.7002 0 -29.8945 -19.8506 -29.8945 -39.7002c0.00195312 -19.6104 6.9375 -39.4619 29.8945 -39.4619zM435.084 124.078h-0.477539c-7.89355 -13.3926 -21.7656 -19.1318 -37.5488 -19.1318
|
229 |
-
c-37.3096 0 -55.4844 32.0449 -55.4844 66.2461c0 33.2422 18.415 64.0947 54.7666 64.0947c14.5889 0 28.9385 -6.21777 36.8311 -18.416h0.240234v62.1826h33.96v-170.76h-32.2871v15.7842zM405.428 209.7c-22.2393 0 -29.8936 -19.1338 -29.8936 -39.4629
|
230 |
-
c0 -19.3711 8.84766 -39.7002 29.8936 -39.7002c22.4824 0 29.1787 19.6133 29.1787 39.9395c0 20.0879 -7.1748 39.2236 -29.1787 39.2236zM592.96 108.294h-32.2871v17.2188h-0.717773c-8.60938 -13.8701 -23.4365 -20.5664 -37.7861 -20.5664
|
231 |
-
c-36.1133 0 -45.2002 20.3281 -45.2002 50.9404v76.0527h33.959v-69.8398c0 -20.3281 5.97949 -30.3721 21.7656 -30.3721c18.415 0 26.3057 10.2832 26.3057 35.3936v64.8184h33.9609v-123.646zM602.453 145.124h37.5469v-36.8301h-37.5469v36.8301z" />
|
232 |
-
<glyph glyph-name="twitter-square" unicode=""
|
233 |
-
d="M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM351.1 257.2c12.8008 9.2998 24 20.8994 32.9004 34c-11.7998 -5.10059 -24.5996 -8.7998 -37.7998 -10.2002
|
234 |
-
c13.5996 8.09961 23.8994 20.9004 28.7998 36.0996c-12.5996 -7.5 -26.7998 -13 -41.5996 -15.7998c-12 12.7998 -29 20.7002 -47.9004 20.7002c-40 0 -73.2998 -36.0996 -64 -80.5996c-54.4004 2.7998 -102.9 28.7998 -135.2 68.5996
|
235 |
-
c-5.7002 -9.7002 -8.89941 -20.9004 -8.89941 -33.0996c0 -0.0371094 -0.0664062 -0.0322266 -0.0664062 -0.0683594c0 -22.749 11.6309 -42.8018 29.2656 -54.5322c-10.6992 0.400391 -20.8994 3.40039 -29.5996 8.2998v-0.799805c0 -31.8994 22.5 -58.2998 52.5 -64.3994
|
236 |
-
c-10.4004 -2.7002 -19.5 -2.7002 -29.5996 -1.2002c8.2998 -26 32.5 -44.9004 61.2998 -45.5c-22.5 -17.6006 -50.7002 -28 -81.4004 -28c-5.39941 0 -10.5 0.200195 -15.7998 0.799805c29 -18.5996 63.5 -29.4004 100.7 -29.4004c120.6 0 186.6 99.9004 186.6 186.601
|
237 |
-
c0 2.7998 0 5.7002 -0.200195 8.5z" />
|
238 |
-
<glyph glyph-name="facebook-square" unicode=""
|
239 |
-
d="M400 416c26.4922 0 48 -21.5078 48 -48v-352c0 -26.4922 -21.5078 -48 -48 -48h-137.25v152.31h57.7803l11 71.6904h-68.7803v46.5498c0 19.6104 9.61035 38.7305 40.4199 38.7305h31.2705v61s-28.3809 4.83984 -55.5205 4.83984
|
240 |
-
c-56.6699 0 -93.6699 -34.3301 -93.6699 -96.4805v-54.6396h-63v-71.6904h63v-152.31h-137.25c-26.4922 0 -48 21.5078 -48 48v352c0 26.4922 21.5078 48 48 48h352z" />
|
241 |
-
<glyph glyph-name="linkedin" unicode=""
|
242 |
-
d="M416 416c17.5996 0 32 -14.5 32 -32.2998v-383.4c0 -17.7998 -14.4004 -32.2998 -32 -32.2998h-384.1c-17.6006 0 -31.9004 14.5 -31.9004 32.2998v383.4c0 17.7998 14.2998 32.2998 31.9004 32.2998h384.1zM135.4 32h0.0996094v213.8h-66.5v-213.8h66.4004zM102.2 275
|
243 |
-
c21.2998 0 38.5 17.2002 38.5 38.5c0 21.2002 -17.2998 38.5 -38.5 38.5c-21.2998 0 -38.5 -17.2998 -38.5 -38.5s17.2002 -38.5 38.5 -38.5zM384.3 32v117.2c0 57.5996 -12.5 101.899 -79.7002 101.899c-32.2998 0 -54 -17.6992 -62.8994 -34.5h-0.900391v29.2002h-63.7002
|
244 |
-
v-213.8h66.4004v105.8c0 27.9004 5.2998 54.9004 39.9004 54.9004c34 0 34.5 -31.9004 34.5 -56.7002v-104h66.3994z" />
|
245 |
-
<glyph glyph-name="github-square" unicode=""
|
246 |
-
d="M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM277.3 32.2998c66 22 110.8 84.9004 110.7 158.3c0 91.8008 -74.4004 161.5 -166.2 161.5s-162 -69.6992 -162 -161.5
|
247 |
-
c0 -73.3994 46.2002 -136.199 112.2 -158.3c8.5 -1.5 11.5 3.7002 11.5 8c0 4.10059 -0.200195 26.7002 -0.200195 40.6006c0 0 -46.3994 -10 -56.0996 19.6992c0 0 -7.60059 19.2002 -18.4004 24.2002c0 0 -15.0996 10.4004 1.10059 10.2002
|
248 |
-
c0 0 16.3994 -1.2998 25.5 -17.0996c14.5 -25.6006 38.7998 -18.2002 48.2998 -13.9004c1.5 10.5996 5.7998 18 10.5996 22.2998c-37 4.10059 -74.2998 9.5 -74.2998 73.1006c0 18.1992 5 27.2998 15.5996 39c-1.7998 4.39941 -7.39941 22.0996 1.7002 45
|
249 |
-
c13.9004 4.2998 45.7002 -17.9004 45.7002 -17.9004c13.2002 3.7002 27.5 5.59961 41.5996 5.59961c14.1006 0 28.4004 -1.89941 41.6006 -5.59961c0 0 31.7998 22.2002 45.7002 17.9004c9.09961 -23 3.39941 -40.7002 1.69922 -45
|
250 |
-
c10.6006 -11.7002 17.1006 -20.8008 17.1006 -39c0 -63.9004 -39 -69 -76 -73.1006c6.09961 -5.2002 11.2998 -15.0996 11.2998 -30.7002c0 -22.2998 -0.200195 -49.8994 -0.200195 -55.2998c0 -4.2998 3.10059 -9.5 11.5 -8zM179.2 93.4004
|
251 |
-
c-1.90039 -0.400391 -3.7002 0.399414 -3.90039 1.69922c-0.200195 1.5 1.10059 2.80078 3 3.2002c1.90039 0.200195 3.7002 -0.599609 3.90039 -1.89941c0.299805 -1.30078 -1 -2.60059 -3 -3zM169.7 94.2998c0 1.5 -1.7998 2.60059 -3.7002 2.40039
|
252 |
-
c-2 0 -3.5 -1.10059 -3.5 -2.40039c0 -1.5 1.5 -2.59961 3.7002 -2.39941c2 0 3.5 1.09961 3.5 2.39941zM156 95.4004c-0.400391 -1.30078 -2.40039 -1.90039 -4.09961 -1.30078c-1.90039 0.400391 -3.2002 1.90039 -2.80078 3.2002
|
253 |
-
c0.400391 1.2998 2.40039 1.90039 4.10059 1.5c2 -0.599609 3.2998 -2.09961 2.7998 -3.39941zM143.7 100.8c0.899414 0.799805 0.399414 2.7998 -0.900391 4.10059c-1.5 1.5 -3.39941 1.69922 -4.2998 0.599609c-1 -0.900391 -0.599609 -2.7998 0.900391 -4.09961
|
254 |
-
c1.5 -1.5 3.39941 -1.7002 4.2998 -0.600586zM134.6 109.9c1.10059 0.799805 1.10059 2.59961 0 4.09961c-0.899414 1.5 -2.59961 2.2002 -3.69922 1.2998c-1.10059 -0.700195 -1.10059 -2.39941 0 -3.89941c1.09961 -1.5 2.7998 -2.10059 3.69922 -1.5zM128.1 119.6
|
255 |
-
c0.900391 0.700195 0.700195 2.2002 -0.399414 3.5c-1.10059 1 -2.60059 1.5 -3.5 0.600586c-0.900391 -0.700195 -0.700195 -2.2002 0.399414 -3.5c1.10059 -1 2.60059 -1.5 3.5 -0.600586zM121.4 127c0.399414 0.799805 -0.200195 1.90039 -1.5 2.59961
|
256 |
-
c-1.30078 0.5 -2.40039 0.200195 -2.80078 -0.399414c-0.399414 -0.900391 0.200195 -2 1.5 -2.60059c1.10059 -0.699219 2.40039 -0.5 2.80078 0.400391z" />
|
257 |
-
<glyph glyph-name="twitter" unicode="" horiz-adv-x="512"
|
258 |
-
d="M459.37 296.284c0.325195 -4.54785 0.325195 -9.09766 0.325195 -13.6455c0 -138.72 -105.583 -298.558 -298.559 -298.558c-59.4521 0 -114.68 17.2188 -161.137 47.1055c8.44727 -0.973633 16.5684 -1.29883 25.3398 -1.29883
|
259 |
-
c49.0547 0 94.2129 16.5684 130.274 44.832c-46.1318 0.975586 -84.792 31.1885 -98.1123 72.7725c6.49805 -0.974609 12.9951 -1.62402 19.8184 -1.62402c9.4209 0 18.8428 1.2998 27.6133 3.57324c-48.0811 9.74707 -84.1426 51.9795 -84.1426 102.984v1.29883
|
260 |
-
c13.9688 -7.79688 30.2139 -12.6699 47.4307 -13.3184c-28.2637 18.8428 -46.7803 51.0049 -46.7803 87.3906c0 19.4922 5.19629 37.3604 14.2939 52.9541c51.6543 -63.6748 129.3 -105.258 216.364 -109.807c-1.62402 7.79688 -2.59863 15.918 -2.59863 24.04
|
261 |
-
c0 57.8271 46.7822 104.934 104.934 104.934c30.2139 0 57.502 -12.6699 76.6709 -33.1367c23.7148 4.54785 46.4551 13.3193 66.5986 25.3398c-7.79785 -24.3662 -24.3662 -44.833 -46.1318 -57.8271c21.1172 2.27344 41.584 8.12207 60.4258 16.2432
|
262 |
-
c-14.292 -20.791 -32.1611 -39.3086 -52.6279 -54.2529z" />
|
263 |
-
<glyph glyph-name="facebook" unicode="" horiz-adv-x="512"
|
264 |
-
d="M504 192c0 -123.78 -90.6904 -226.38 -209.25 -245v173.31h57.7803l11 71.6904h-68.7803v46.5498c0 19.6104 9.61035 38.7305 40.4102 38.7305h31.2803v61s-28.3809 4.83984 -55.5205 4.83984c-56.6699 0 -93.6699 -34.3301 -93.6699 -96.4805v-54.6396h-63v-71.6904h63
|
265 |
-
v-173.31c-118.56 18.6201 -209.25 121.22 -209.25 245c0 137 111 248 248 248s248 -111 248 -248z" />
|
266 |
-
<glyph glyph-name="github" unicode="" horiz-adv-x="496"
|
267 |
-
d="M165.9 50.5996c0 -2 -2.30078 -3.59961 -5.2002 -3.59961c-3.2998 -0.299805 -5.60059 1.2998 -5.60059 3.59961c0 2 2.30078 3.60059 5.2002 3.60059c3 0.299805 5.60059 -1.2998 5.60059 -3.60059zM134.8 55.0996c0.700195 2 3.60059 3 6.2002 2.30078
|
268 |
-
c3 -0.900391 4.90039 -3.2002 4.2998 -5.2002c-0.599609 -2 -3.59961 -3 -6.2002 -2c-3 0.599609 -5 2.89941 -4.2998 4.89941zM179 56.7998c2.90039 0.299805 5.59961 -1 5.90039 -2.89941c0.299805 -2 -1.7002 -3.90039 -4.60059 -4.60059
|
269 |
-
c-3 -0.700195 -5.59961 0.600586 -5.89941 2.60059c-0.300781 2.2998 1.69922 4.19922 4.59961 4.89941zM244.8 440c138.7 0 251.2 -105.3 251.2 -244c0 -110.9 -67.7998 -205.8 -167.8 -239c-12.7002 -2.2998 -17.2998 5.59961 -17.2998 12.0996
|
270 |
-
c0 8.2002 0.299805 49.9004 0.299805 83.6006c0 23.5 -7.7998 38.5 -17 46.3994c55.8994 6.30078 114.8 14 114.8 110.5c0 27.4004 -9.7998 41.2002 -25.7998 58.9004c2.59961 6.5 11.0996 33.2002 -2.60059 67.9004c-20.8994 6.59961 -69 -27 -69 -27
|
271 |
-
c-20 5.59961 -41.5 8.5 -62.7998 8.5s-42.7998 -2.90039 -62.7998 -8.5c0 0 -48.0996 33.5 -69 27c-13.7002 -34.6006 -5.2002 -61.4004 -2.59961 -67.9004c-16 -17.5996 -23.6006 -31.4004 -23.6006 -58.9004c0 -96.1992 56.4004 -104.3 112.3 -110.5
|
272 |
-
c-7.19922 -6.59961 -13.6992 -17.6992 -16 -33.6992c-14.2998 -6.60059 -51 -17.7002 -72.8994 20.8994c-13.7002 23.7998 -38.6006 25.7998 -38.6006 25.7998c-24.5 0.300781 -1.59961 -15.3994 -1.59961 -15.3994c16.4004 -7.5 27.7998 -36.6006 27.7998 -36.6006
|
273 |
-
c14.7002 -44.7998 84.7002 -29.7998 84.7002 -29.7998c0 -21 0.299805 -55.2002 0.299805 -61.3994c0 -6.5 -4.5 -14.4004 -17.2998 -12.1006c-99.7002 33.4004 -169.5 128.3 -169.5 239.2c0 138.7 106.1 244 244.8 244zM97.2002 95.0996
|
274 |
-
c1.2998 1.30078 3.59961 0.600586 5.2002 -1c1.69922 -1.89941 2 -4.19922 0.699219 -5.19922c-1.2998 -1.30078 -3.59961 -0.600586 -5.19922 1c-1.7002 1.89941 -2 4.19922 -0.700195 5.19922zM86.4004 103.2c0.699219 1 2.2998 1.2998 4.2998 0.700195
|
275 |
-
c2 -1 3 -2.60059 2.2998 -3.90039c-0.700195 -1.40039 -2.7002 -1.7002 -4.2998 -0.700195c-2 1 -3 2.60059 -2.2998 3.90039zM118.8 67.5996c1.2998 1.60059 4.2998 1.30078 6.5 -1c2 -1.89941 2.60059 -4.89941 1.2998 -6.19922
|
276 |
-
c-1.2998 -1.60059 -4.19922 -1.30078 -6.5 1c-2.2998 1.89941 -2.89941 4.89941 -1.2998 6.19922zM107.4 82.2998c1.59961 1.2998 4.19922 0.299805 5.59961 -2c1.59961 -2.2998 1.59961 -4.89941 0 -6.2002c-1.2998 -1 -4 0 -5.59961 2.30078
|
277 |
-
c-1.60059 2.2998 -1.60059 4.89941 0 5.89941z" />
|
278 |
-
<glyph glyph-name="pinterest" unicode="" horiz-adv-x="496"
|
279 |
-
d="M496 192c0 -137 -111 -248 -248 -248c-25.5996 0 -50.2002 3.90039 -73.4004 11.0996c10.1006 16.5 25.2002 43.5 30.8008 65c3 11.6006 15.3994 59 15.3994 59c8.10059 -15.3994 31.7002 -28.5 56.7998 -28.5c74.8008 0 128.7 68.8008 128.7 154.301
|
280 |
-
c0 81.8994 -66.8994 143.199 -152.899 143.199c-107 0 -163.9 -71.7998 -163.9 -150.1c0 -36.4004 19.4004 -81.7002 50.2998 -96.0996c4.7002 -2.2002 7.2002 -1.2002 8.2998 3.2998c0.800781 3.39941 5 20.2998 6.90039 28.0996
|
281 |
-
c0.599609 2.5 0.299805 4.7002 -1.7002 7.10059c-10.0996 12.5 -18.2998 35.2998 -18.2998 56.5996c0 54.7002 41.4004 107.6 112 107.6c60.9004 0 103.6 -41.5 103.6 -100.899c0 -67.1006 -33.8994 -113.601 -78 -113.601c-24.2998 0 -42.5996 20.1006 -36.6992 44.8008
|
282 |
-
c7 29.5 20.5 61.2998 20.5 82.5996c0 19 -10.2002 34.9004 -31.4004 34.9004c-24.9004 0 -44.9004 -25.7002 -44.9004 -60.2002c0 -22 7.40039 -36.7998 7.40039 -36.7998s-24.5 -103.801 -29 -123.2c-5 -21.4004 -3 -51.6006 -0.900391 -71.2002
|
283 |
-
c-92.1992 36.0996 -157.6 125.9 -157.6 231c0 137 111 248 248 248s248 -111 248 -248z" />
|
284 |
-
<glyph glyph-name="pinterest-square" unicode=""
|
285 |
-
d="M448 368v-352c0 -26.5 -21.5 -48 -48 -48h-245.6c9.7998 16.4004 22.3994 40 27.3994 59.2998c3 11.5 15.2998 58.4004 15.2998 58.4004c8 -15.2998 31.4004 -28.2002 56.3008 -28.2002c74.0996 0 127.399 68.0996 127.399 152.7
|
286 |
-
c0 81.0996 -66.2002 141.8 -151.399 141.8c-106 0 -162.2 -71.0996 -162.2 -148.6c0 -36 19.2002 -80.8008 49.7998 -95.1006c4.7002 -2.2002 7.09961 -1.2002 8.2002 3.2998c0.799805 3.40039 5 20.1006 6.7998 27.8008c0.599609 2.5 0.299805 4.59961 -1.7002 7
|
287 |
-
c-10.0996 12.2998 -18.2998 34.8994 -18.2998 56c0 54.1992 41 106.6 110.9 106.6c60.2998 0 102.6 -41.0996 102.6 -99.9004c0 -66.3994 -33.5 -112.399 -77.2002 -112.399c-24.0996 0 -42.0996 19.8994 -36.3994 44.3994c6.89941 29.2002 20.2998 60.7002 20.2998 81.8008
|
288 |
-
c0 53 -75.5 45.6992 -75.5 -25c0 -21.7002 7.2998 -36.5 7.2998 -36.5c-31.4004 -132.801 -36.0996 -134.5 -29.5996 -192.601l2.19922 -0.799805h-88.5996c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48z" />
|
289 |
-
<glyph glyph-name="google-plus-square" unicode=""
|
290 |
-
d="M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM164 92c57.7002 0 96 40.5 96 97.5996c0 6.5 -0.599609 11.6006 -1.59961 16.6006h-94.4004v-34.4004h56.9004
|
291 |
-
c-2.40039 -14.5996 -17.2002 -43.0996 -56.8008 -43.0996c-34.0996 0 -61.8994 28.2998 -61.8994 63.2002c0 35 27.7998 63.1992 61.8994 63.1992c19.5 0 32.4004 -8.2998 39.8008 -15.3994l27.0996 26.0996c-17.5 16.4004 -40 26.2002 -67 26.2002
|
292 |
-
c-55.2998 0 -100 -44.7002 -100 -100s44.7002 -100 100 -100zM384 173.8v29.2002h-29v29h-29.2002v-29h-29v-29.2002h29v-29h29.2002v29h29z" />
|
293 |
-
<glyph glyph-name="google-plus-g" unicode="" horiz-adv-x="640"
|
294 |
-
d="M386.061 219.504c1.83398 -9.69238 3.14355 -19.3838 3.14355 -31.9561c0 -109.753 -73.6055 -187.548 -184.404 -187.548c-106.084 0 -192 85.915 -192 192s85.916 192 192 192c51.8643 0 95.083 -18.8594 128.611 -50.292l-52.126 -50.0303
|
295 |
-
c-14.1455 13.6211 -39.0283 29.5996 -76.4854 29.5996c-65.4834 0 -118.92 -54.2217 -118.92 -121.277s53.4365 -121.277 118.92 -121.277c75.9609 0 104.514 54.7451 108.965 82.7734h-108.965v66.0088h181.261v-0.000976562zM571.467 213.067h55.7334v-56.001h-55.7334
|
296 |
-
v-55.7334h-56.001v55.7334h-55.7324v56.001h55.7324v55.7324h56.001v-55.7324z" />
|
297 |
-
<glyph glyph-name="linkedin-in" unicode=""
|
298 |
-
d="M100.28 0h-92.8799v299.1h92.8799v-299.1zM53.79 339.9c-29.7002 0 -53.79 24.5996 -53.79 54.2998c0 29.6875 24.1025 53.79 53.79 53.79s53.79 -24.1025 53.79 -53.79c0 -29.7002 -24.0996 -54.2998 -53.79 -54.2998zM447.9 0h-92.6807v145.6
|
299 |
-
c0 34.7002 -0.700195 79.2002 -48.29 79.2002c-48.29 0 -55.6895 -37.7002 -55.6895 -76.7002v-148.1h-92.7803v299.1h89.0801v-40.7998h1.2998c12.4004 23.5 42.6904 48.2998 87.8799 48.2998c94 0 111.28 -61.8994 111.28 -142.3v-164.3h-0.0996094z" />
|
300 |
-
<glyph glyph-name="github-alt" unicode="" horiz-adv-x="480"
|
301 |
-
d="M186.1 119.3c0 -20.8994 -10.8994 -55.0996 -36.6992 -55.0996c-25.8008 0 -36.7002 34.2002 -36.7002 55.0996c0 20.9004 10.8994 55.1006 36.7002 55.1006c25.7998 0 36.6992 -34.2002 36.6992 -55.1006zM480 169.8c0 -31.8994 -3.2002 -65.7002 -17.5 -95
|
302 |
-
c-37.9004 -76.5996 -142.1 -74.7998 -216.7 -74.7998c-75.7998 0 -186.2 -2.7002 -225.6 74.7998c-14.6006 29 -20.2002 63.1006 -20.2002 95c0 41.9004 13.9004 81.5 41.5 113.601c-5.2002 15.7998 -7.7002 32.3994 -7.7002 48.7998
|
303 |
-
c0 21.5 4.90039 32.2998 14.6006 51.7998c45.2998 0 74.2998 -9 108.8 -36c29 6.90039 58.7998 10 88.7002 10c27 0 54.1992 -2.90039 80.3994 -9.2002c34 26.7002 63 35.2002 107.8 35.2002c9.80078 -19.5 14.6006 -30.2998 14.6006 -51.7998
|
304 |
-
c0 -16.4004 -2.60059 -32.7002 -7.7002 -48.2002c27.5 -32.4004 39 -72.2998 39 -114.2zM415.7 119.3c0 43.9004 -26.7002 82.6006 -73.5 82.6006c-18.9004 0 -37 -3.40039 -56 -6c-14.9004 -2.30078 -29.7998 -3.2002 -45.1006 -3.2002
|
305 |
-
c-15.1992 0 -30.0996 0.899414 -45.0996 3.2002c-18.7002 2.59961 -37 6 -56 6c-46.7998 0 -73.5 -38.7002 -73.5 -82.6006c0 -87.7998 80.4004 -101.3 150.4 -101.3h48.1992c70.3008 0 150.601 13.4004 150.601 101.3zM333.1 174.4
|
306 |
-
c25.8008 0 36.7002 -34.2002 36.7002 -55.1006c0 -20.8994 -10.8994 -55.0996 -36.7002 -55.0996c-25.7998 0 -36.6992 34.2002 -36.6992 55.0996c0 20.9004 10.8994 55.1006 36.6992 55.1006z" />
|
307 |
-
<glyph glyph-name="maxcdn" unicode="" horiz-adv-x="512"
|
308 |
-
d="M461.1 5.2998h-97.3994l51.8994 242.7c2.30078 10.2002 0.900391 19.5 -4.39941 25.7002c-5 6.09961 -13.7002 9.59961 -24.2002 9.59961h-49.2998l-59.5 -278h-97.4004l59.5 278h-83.3994l-59.5 -278h-97.4004l59.5 278l-44.5996 95.4004h372.1
|
309 |
-
c39.4004 0 75.2998 -16.2998 98.2998 -44.9004c23.2998 -28.5996 31.7998 -67.3994 23.6006 -105.899z" />
|
310 |
-
<glyph glyph-name="html5" unicode="" horiz-adv-x="384"
|
311 |
-
d="M0 416h384l-34.9004 -395.8l-157.6 -52.2002l-156.6 52.2002zM308.2 288.1l4.39941 47.7002h-241.1l12.7998 -145.6h166.9l-6 -62.2002l-53.7002 -14.5l-53.5 14.5l-3.5 38.0996h-47.7002l6 -75.7998l98.7002 -27.2998h1.09961v0.299805l97.9004 27l13.5996 148.4h-175.6
|
312 |
-
l-4.09961 49.3994h183.8z" />
|
313 |
-
<glyph glyph-name="css3" unicode="" horiz-adv-x="512"
|
314 |
-
d="M480 416l-64 -368l-223.3 -80l-192.7 80l19.5996 94.7998h82l-8 -40.5996l116.4 -44.4004l134.1 44.4004l18.8008 97.0996h-333.4l16 82h333.7l10.5 52.7002h-333.4l16.2998 82h407.4z" />
|
315 |
-
<glyph glyph-name="btc" unicode="" horiz-adv-x="384"
|
316 |
-
d="M310.204 205.362c46.0059 -11.0283 74.9971 -38.4443 69.3262 -99.8906c-7.24805 -76.5723 -61.5967 -97.0547 -142.896 -101.467v-68.0049h-48.5273v66.7451c-12.29 0 -25.21 0 -38.4443 0.314453v-67.0596h-48.5283v68.0049s-8.88867 0.31543 -97.3701 0.31543
|
317 |
-
l9.76758 57.666c34.7305 -0.614258 50.3301 -3.4209 53.2549 16.0703v217.43c-4.60645 24.5664 -24.709 22.1045 -63.0234 21.4268v51.6777c58.748 -0.275391 79.5283 -0.539062 97.3701 0v79.4092h48.5283v-77.833c12.9189 0.31543 25.8389 0.629883 38.4443 0.629883
|
318 |
-
v77.2031h48.5273v-79.4092c62.3926 -5.35547 109.492 -24.5781 114.851 -81.9287c4.09668 -41.9102 -13.5508 -67.1201 -41.2803 -81.2998zM150.608 313.447v-96.7402c27.416 0 113.126 -6.30273 113.126 48.2119c0 57.0352 -85.7109 48.5283 -113.126 48.5283z
|
319 |
-
M150.608 61.6709c32.7715 0 133.126 -6.93262 133.127 53.2529c0 62.3936 -100.355 53.2549 -133.127 53.2549v-106.508z" />
|
320 |
-
<glyph glyph-name="youtube" unicode="" horiz-adv-x="576"
|
321 |
-
d="M549.655 323.917c11.4121 -42.8672 11.4121 -132.305 11.4121 -132.305s0 -89.4385 -11.4121 -132.306c-6.28125 -23.6494 -24.7871 -41.5 -48.2842 -47.8203c-42.5908 -11.4863 -213.371 -11.4863 -213.371 -11.4863s-170.78 0 -213.371 11.4863
|
322 |
-
c-23.4971 6.32031 -42.0029 24.1709 -48.2842 47.8203c-11.4121 42.8672 -11.4121 132.306 -11.4121 132.306s0 89.4375 11.4121 132.305c6.28125 23.6504 24.7871 42.2754 48.2842 48.5967c42.5908 11.4863 213.371 11.4863 213.371 11.4863s170.781 0 213.371 -11.4863
|
323 |
-
c23.4971 -6.32031 42.0029 -24.9463 48.2842 -48.5967zM232.145 110.409l142.739 81.2012l-142.739 81.2051v-162.406z" />
|
324 |
-
<glyph glyph-name="xing" unicode="" horiz-adv-x="384"
|
325 |
-
d="M162.7 238c-1.7998 -3.2998 -25.2002 -44.4004 -70.1006 -123.5c-4.89941 -8.2998 -10.7998 -12.5 -17.6992 -12.5h-65.1006c-7.7002 0 -12.0996 7.5 -8.5 14.4004l69 121.3c0.200195 0 0.200195 0.0996094 0 0.299805l-43.8994 75.5996
|
326 |
-
c-4.30078 7.80078 0.299805 14.1006 8.5 14.1006h65.0996c7.2998 0 13.2998 -4.10059 18 -12.2002zM382.6 401.9l-144 -253v-0.300781l91.6006 -166.6c3.89941 -7.09961 0.200195 -14.0996 -8.5 -14.0996h-65.2002c-7.59961 0 -13.5996 4 -18 12.1992l-92.4004 168.5
|
327 |
-
c3.30078 5.80078 51.5 90.8008 144.801 255.2c4.59961 8.10059 10.3994 12.2002 17.5 12.2002h65.6992c8 0 12.3008 -6.7002 8.5 -14.0996z" />
|
328 |
-
<glyph glyph-name="xing-square" unicode=""
|
329 |
-
d="M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM140.4 127.8c4.89941 0 9.09961 2.90039 12.5996 9.10059c32.0996 56.5 48.7998 85.8994 50.0996 88.1992l-31.8994 55.3008
|
330 |
-
c-3.40039 5.7998 -7.7002 8.69922 -12.9004 8.69922h-46.5996c-5.7998 0 -9 -4.5 -6 -10.0996l31.3994 -54c0.100586 -0.0996094 0.100586 -0.200195 0 -0.200195l-49.2998 -86.7002c-2.7002 -5 0.5 -10.2998 6 -10.2998h46.6006zM360.1 341.9
|
331 |
-
c2.80078 5.2998 -0.299805 10.0996 -6 10h-46.8994c-5.10059 0 -9.2002 -2.90039 -12.5 -8.7002c-66.6006 -117.4 -101.101 -178.2 -103.4 -182.3l66 -120.301c3.2002 -5.7998 7.40039 -8.69922 12.9004 -8.69922h46.5996c6.10059 0 8.7998 5 6 10.0996l-65.5 119v0.200195z
|
332 |
-
" />
|
333 |
-
<glyph glyph-name="dropbox" unicode="" horiz-adv-x="528"
|
334 |
-
d="M264.4 331.7l-132 -84.2998l132 -84.3008l-132 -84.2998l-132.4 85.1006l132.3 84.2998l-132.3 83.5l132.3 84.2998zM131.6 52.2998l132 84.2998l132 -84.2998l-132 -84.2998zM264.4 163.9l132 84.2998l-132 83.5996l131.3 84.2002l132.3 -84.2998l-132.3 -84.2998
|
335 |
-
l132.3 -84.2002l-132.3 -84.2998z" />
|
336 |
-
<glyph glyph-name="stack-overflow" unicode="" horiz-adv-x="384"
|
337 |
-
d="M290.7 137l-8.2002 -39l-195.7 41l8.2002 39.2998zM341.7 224l-25.5 -30.7998l-153.5 128.3l25.5 30.7998zM310.5 184.3l-16.7998 -36.2998l-181.2 84.5l16.7002 36.5zM262 416l119.3 -160.3l-32 -24l-119.3 160.3zM282.5 88v-39.7002h-200v39.7002h200zM322.2 8v120h40
|
338 |
-
v-160h-359.5v160h40v-120h279.5z" />
|
339 |
-
<glyph glyph-name="instagram" unicode=""
|
340 |
-
d="M224.1 307c63.6006 0 114.9 -51.2998 114.9 -114.9c0 -63.5996 -51.2998 -114.899 -114.9 -114.899c-63.5996 0 -114.899 51.2998 -114.899 114.899c0 63.6006 51.2998 114.9 114.899 114.9zM224.1 117.4c41.1006 0 74.7002 33.5 74.7002 74.6992
|
341 |
-
c0 41.2002 -33.5 74.7002 -74.7002 74.7002c-41.1992 0 -74.6992 -33.5 -74.6992 -74.7002c0 -41.1992 33.5996 -74.6992 74.6992 -74.6992zM370.5 311.7c0 -14.9004 -12 -26.7998 -26.7998 -26.7998c-14.9004 0 -26.7998 12 -26.7998 26.7998s12 26.7998 26.7998 26.7998
|
342 |
-
s26.7998 -12 26.7998 -26.7998zM446.6 284.5c2.10059 -37 2.10059 -147.8 0 -184.8c-1.7998 -35.9004 -10 -67.7002 -36.1992 -93.9004c-26.2002 -26.2998 -58 -34.5 -93.9004 -36.2002c-37 -2.09961 -147.9 -2.09961 -184.9 0
|
343 |
-
c-35.8994 1.80078 -67.5996 10 -93.8994 36.2002s-34.5 58 -36.2002 93.9004c-2.09961 37 -2.09961 147.899 0 184.899c1.7998 35.9004 9.90039 67.7002 36.2002 93.9004s58.0996 34.4004 93.8994 36.0996c37 2.10059 147.9 2.10059 184.9 0
|
344 |
-
c35.9004 -1.7998 67.7002 -10 93.9004 -36.1992c26.2998 -26.2002 34.5 -58 36.1992 -93.9004zM398.8 60c11.7002 29.4004 9 99.5 9 132.1c0 32.6006 2.7002 102.601 -9 132.101c-7.89941 19.7002 -23 34.7998 -42.5996 42.5996c-29.4004 11.6006 -99.5 9 -132.101 9
|
345 |
-
c-32.5996 0 -102.6 2.7002 -132.1 -9c-19.7002 -7.89941 -34.7998 -23 -42.5996 -42.5996c-11.6006 -29.4004 -9 -99.5 -9 -132.101c0 -32.5996 -2.7002 -102.6 9 -132.1c7.89941 -19.7002 23 -34.7998 42.5996 -42.5996c29.4004 -11.6006 99.5 -9 132.1 -9
|
346 |
-
c32.6006 0 102.601 -2.7002 132.101 9c19.7002 7.89941 34.7998 23 42.5996 42.5996z" />
|
347 |
-
<glyph glyph-name="flickr" unicode=""
|
348 |
-
d="M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM144.5 129c35.0996 0 63.5 28.4004 63.5 63.5s-28.4004 63.5 -63.5 63.5s-63.5 -28.4004 -63.5 -63.5s28.4004 -63.5 63.5 -63.5z
|
349 |
-
M303.5 129c35.0996 0 63.5 28.4004 63.5 63.5s-28.4004 63.5 -63.5 63.5s-63.5 -28.4004 -63.5 -63.5s28.4004 -63.5 63.5 -63.5z" />
|
350 |
-
<glyph glyph-name="adn" unicode="" horiz-adv-x="496"
|
351 |
-
d="M248 280.5l64.9004 -98.7998h-129.801zM496 192c0 -136.9 -111.1 -248 -248 -248s-248 111.1 -248 248s111.1 248 248 248s248 -111.1 248 -248zM396.2 109.3l-148.2 223.2l-148.2 -223.2h30.4004l33.5996 51.7002h168.601l33.5996 -51.7002h30.2002z" />
|
352 |
-
<glyph glyph-name="bitbucket" unicode="" horiz-adv-x="512"
|
353 |
-
d="M22.2002 416l466.8 -0.200195c0.954102 -0.0136719 1.875 -0.0800781 2.7998 -0.200195c7.58789 -1.25 13.3994 -7.83203 13.3994 -15.7715c0 -0.860352 -0.0683594 -1.7041 -0.199219 -2.52832l-67.9004 -416.8c-1.24902 -7.58887 -7.84277 -13.4014 -15.7832 -13.4014
|
354 |
-
c-0.0722656 0 -0.144531 0 -0.216797 0.000976562h-325.699c-10.7129 0.0869141 -19.5967 7.94727 -21.3008 18.2002l-67.8994 412.101c-0.116211 0.924805 -0.182617 1.84668 -0.200195 2.7998c0.108398 8.7373 7.23242 15.8008 15.9951 15.8008
|
355 |
-
c0.0683594 0 0.136719 0 0.205078 -0.000976562zM308.1 118.2l25.2002 147h-157.3l28.0996 -147h104z" />
|
356 |
-
<glyph glyph-name="tumblr" unicode="" horiz-adv-x="320"
|
357 |
-
d="M309.8 -32.2998c-13.5996 -14.5 -50 -31.7002 -97.3994 -31.7002c-120.801 0 -147 88.7998 -147 140.6v144h-47.5c-5.5 0 -10 4.5 -10 10v68c0 7.2002 4.5 13.6006 11.2998 16c62 21.8008 81.5 76 84.2998 117.101c0.799805 11 6.5 16.2998 16.0996 16.2998h70.9004
|
358 |
-
c5.5 0 10 -4.5 10 -10v-115.2h83c5.5 0 10 -4.39941 10 -9.89941v-81.7002c0 -5.5 -4.5 -10 -10 -10h-83.4004v-133.2c0 -34.2002 23.7002 -53.5996 68 -35.7998c4.80078 1.89941 9 3.2002 12.7002 2.2002c3.5 -0.900391 5.7998 -3.40039 7.40039 -7.90039l22 -64.2998
|
359 |
-
c1.7998 -5 3.2998 -10.6006 -0.400391 -14.5z" />
|
360 |
-
<glyph glyph-name="tumblr-square" unicode=""
|
361 |
-
d="M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM317.7 51.7998c2.2998 2.40039 1.2998 5.90039 0.299805 9.10059l-13.7998 40.1992c-1 2.80078 -2.40039 4.40039 -4.60059 4.90039
|
362 |
-
c-2.39941 0.599609 -5 -0.200195 -8 -1.40039c-27.6992 -11.0996 -42.5 1 -42.5 22.4004v83.2998h52.1006c3.39941 0 6.2002 2.7998 6.2002 6.2002v51.0996c0 3.40039 -2.80078 6.2002 -6.2002 6.2002h-51.9004v72c0 3.40039 -2.7998 6.2002 -6.2002 6.2002h-44.2998
|
363 |
-
c-5.89941 0 -9.5 -3.2998 -10 -10.2002c-1.7998 -25.7002 -13.8994 -59.5 -52.7002 -73.2002c-4.2998 -1.5 -7.09961 -5.5 -7.09961 -10v-42.5c0 -3.39941 2.7998 -6.19922 6.2002 -6.19922h29.7002v-90c0 -32.4004 16.3994 -87.9004 91.8994 -87.9004
|
364 |
-
c29.7002 0 52.4004 10.7002 60.9004 19.7998z" />
|
365 |
-
<glyph glyph-name="apple" unicode="" horiz-adv-x="384"
|
366 |
-
d="M318.7 179.3c0 -1.89941 -3.5 -61.2002 61.7002 -91.8994c-12.2002 -36.8008 -54 -118.601 -102.601 -119.301c-28.0996 0 -44.5996 17.9004 -76.3994 17.9004c-32.8008 0 -50.6006 -17.2998 -75.8008 -17.9004c-48.1992 -1.5 -94.3994 88.5 -107.199 125.2
|
367 |
-
c-9.60059 27.9336 -14.4004 55 -14.4004 81.2002c0 88.7002 59.2998 132.3 115.1 133.2c27 0 61.4004 -19.7002 76.4004 -19.7002c14.2002 0 53 23.5 88.5 20.7002c37.5 -2.90039 65.9004 -17.7002 84.7002 -44.6006c-33.6006 -20.3994 -50.2002 -48.0996 -50 -84.7998z
|
368 |
-
M262.1 343.5c-19.5996 -22.9004 -43.3994 -36.2998 -69.5 -34.2998c-2.19922 27.5996 8.10059 52.0996 25.6006 71.8994c15.8994 18.5 43.7998 33.5 67.8994 34.9004c0.800781 -10.5996 3.30078 -40.0996 -24 -72.5z" />
|
369 |
-
<glyph glyph-name="windows" unicode=""
|
370 |
-
d="M0 354.3l183.6 25.2998v-177.399h-183.6v152.1zM0 29.7002v149.899h183.6v-175.199zM203.8 1.7002v177.899h244.2v-211.6zM203.8 382.3l244.2 33.7002v-213.8h-244.2v180.1z" />
|
371 |
-
<glyph glyph-name="android" unicode="" horiz-adv-x="576"
|
372 |
-
d="M420.55 146.07c-13.2461 0 -24 10.7539 -24 24s10.7539 24 24 24s24 -10.7539 24 -24s-10.7539 -24 -24 -24zM155.45 146.07c-13.2461 0 -24 10.7539 -24 24s10.7539 24 24 24s24 -10.7539 24 -24s-10.7539 -24 -24 -24zM429.15 290.55l47.9395 83
|
373 |
-
c1.06738 1.59082 1.69043 3.50391 1.69043 5.5625c0 5.51855 -4.48047 10 -10 10c-3.93359 0 -7.32812 -2.25684 -8.95996 -5.5625v0l-48.54 -84.0693c-37.5742 16.8516 -79.2197 26.2266 -123.037 26.2266c-43.8164 0 -85.9492 -9.375 -123.523 -26.2266l-48.54 84.0693
|
374 |
-
c-1.63184 3.30566 -5.03809 5.58203 -8.97168 5.58203c-5.51953 0 -10 -4.48145 -10 -10c0 -2.05859 0.634766 -3.99121 1.70215 -5.58203v0l47.9395 -83c-82.3193 -44.7695 -138.609 -128.1 -146.85 -226.55h576c-8.24023 98.4502 -64.54 181.78 -146.85 226.55z" />
|
375 |
-
<glyph glyph-name="linux" unicode=""
|
376 |
-
d="M220.8 324.7c-1.09961 0.599609 -3.09961 0.399414 -3.39941 1.7002c-0.200195 0.399414 0.199219 0.899414 0.599609 1.09961c1.59961 0.900391 3.7998 0.599609 5.5 -0.0996094c1.2998 -0.600586 3.40039 -1.5 3.2002 -2.90039
|
377 |
-
c-0.100586 -1.09961 -1.7998 -1.5 -2.90039 -1.5c-1.2002 0 -2 1.2002 -3 1.7002zM198.9 323c-1 -0.0996094 -2.7002 0.400391 -2.80078 1.40039c-0.199219 1.39941 1.90039 2.2998 3.2002 2.89941c1.7002 0.700195 3.90039 1 5.5 0.100586
|
378 |
-
c0.400391 -0.200195 0.799805 -0.700195 0.600586 -1.10059c-0.400391 -1.2002 -2.40039 -1 -3.5 -1.59961c-1 -0.5 -1.80078 -1.7002 -3 -1.7002zM420 44.2002c11.0996 -12.4004 15.9004 -21.5 15.5 -29.7002c-0.5 -8.2002 -6.5 -13.7998 -13.9004 -18.2998
|
379 |
-
c-14.8994 -9 -37.2998 -15.7998 -50.8994 -32.2002c-14.2002 -16.9004 -31.7002 -26.5996 -48.2998 -27.9004c-16.5 -1.2998 -32 6.30078 -40.3008 23v0.100586c-1.09961 2.09961 -1.89941 4.39941 -2.5 6.7002c-21.5 -1.2002 -40.1992 5.2998 -55.0996 4.09961
|
380 |
-
c-22 -1.2002 -35.7998 -6.5 -48.2998 -6.59961c-4.7998 -10.6006 -14.2998 -17.6006 -25.9004 -20.2002c-16 -3.7002 -36.0996 0 -55.8994 10.3994c-18.5 9.80078 -42 8.90039 -59.3008 12.5c-8.69922 1.80078 -16.2998 5 -20.0996 12.3008
|
381 |
-
c-3.7002 7.2998 -3 17.2998 2.2002 31.6992c1.7002 5.10059 0.399414 12.7002 -0.799805 20.8008c-0.600586 3.89941 -1.2002 7.89941 -1.2002 11.7998c0 4.2998 0.700195 8.5 2.7998 12.3994c4.5 8.5 11.7998 12.1006 18.5 14.5c6.7002 2.40039 12.7998 4 17 8.30078
|
382 |
-
c5.2002 5.5 10.0996 14.3994 16.5996 20.1992c-2.59961 17.2002 0.200195 35.4004 6.2002 53.3008c12.6006 37.8994 39.2002 74.1992 58.1006 96.6992c16.0996 22.9004 20.7998 41.3008 22.5 64.7002c1.09961 31.7998 -24.5 135.4 77.8994 135.2
|
383 |
-
c80.9004 -0.0996094 76.2998 -85.4004 75.7998 -131.3c-0.299805 -30.1006 16.3008 -50.5 33.4004 -72c15.2002 -18 35.0996 -44.2998 46.5 -74.4004c9.2998 -24.5996 12.9004 -51.7998 3.7002 -79.0996c1.39941 -0.5 2.7998 -1.2002 4.09961 -2
|
384 |
-
c1.40039 -0.799805 2.7002 -1.7998 4 -2.90039c6.60059 -5.59961 8.7002 -14.2998 10.5 -22.3994c1.90039 -8.10059 3.60059 -15.7002 7.2002 -19.7002zM223.7 360.7c-3.2002 -7.2002 -3.90039 -14.9004 -2.90039 -21.7998c3.60059 -0.900391 8.90039 -2.40039 13 -4.40039
|
385 |
-
c-2.09961 12.2002 4.5 23.5 11.7998 23c8.90039 -0.299805 13.9004 -15.5 9.10059 -27.2998c-0.799805 -1.90039 -2.7998 -3.40039 -3.90039 -4.60059c6.7002 -2.2998 11 -4.09961 12.6006 -4.89941c7.89941 9.5 10.7998 26.2002 4.2998 40.3994
|
386 |
-
c-9.7998 21.4004 -34.2002 21.8008 -44 -0.399414zM183 372.2c-18.9004 0 -24 -37.5 -8.40039 -52.1006c7.80078 5.7002 6.90039 4.7002 5.90039 5.5c-8 6.90039 -6.59961 27.4004 1.7998 28.1006c6.2998 0.5 10.7998 -10.7002 9.60059 -19.6006
|
387 |
-
c3.09961 2.10059 6.69922 3.60059 10.1992 4.60059c1.7002 19.2998 -9 33.5 -19.0996 33.5zM169.4 311.5c-4.2002 -3.2998 -5.60059 -7.40039 -4.2002 -12.2998c1.5 -4.90039 6.09961 -10.5 14.7002 -15.2998c7.7998 -4.60059 12 -11.5 20 -15
|
388 |
-
c2.59961 -1.10059 5.69922 -1.90039 9.59961 -2.10059c18.4004 -1.09961 27.0996 11.2998 38.2002 14.9004c11.7002 3.7002 20.0996 11 22.7002 18.0996c3.19922 8.5 -2.10059 14.7002 -10.5 18.2002c-11.3008 4.90039 -16.3008 5.2002 -22.6006 9.2998
|
389 |
-
c-10.2998 6.60059 -18.7998 8.90039 -25.8994 8.90039c-14.4004 0 -23.2002 -9.7998 -27.9004 -14.2002c-0.5 -0.5 -7.90039 -5.90039 -14.0996 -10.5zM172.7 -22.5c2.09961 20.5 -31.5 49 -41 68.9004l-19.6006 35.5996c-6.7998 9.2002 -13.7998 14.7998 -21.8994 16
|
390 |
-
c-7.7002 1.2002 -12.6006 -1.40039 -17.7002 -6.90039c-4.7998 -5.09961 -8.7998 -12.2998 -14.2998 -18c-7.7998 -6.5 -9.2998 -6.19922 -19.6006 -9.89941c-6.2998 -2.2002 -11.2998 -4.60059 -14.7998 -11.2998c-2.7002 -5 -2.09961 -12.2002 -0.899414 -20
|
391 |
-
c1.19922 -7.90039 3 -16.3008 0.599609 -23.9004v-0.200195c-5 -13.7002 -5 -21.7002 -2.59961 -26.3994c7.89941 -15.4004 46.5996 -6.10059 76.5 -21.9004c31.3994 -16.4004 72.5996 -17.0996 75.2998 18zM171.3 3.40039c37.6006 -25.7002 82.2002 -15.7002 114.3 7.19922
|
392 |
-
c3.2002 11 6.30078 21.3008 6.80078 29c0.799805 15.2002 1.59961 28.7002 4.39941 39.9004c3.10059 12.5996 9.2998 23.0996 21.4004 27.2998c2.2998 21.1006 18.7002 21.1006 38.2998 12.5c18.9004 -8.5 26 -16 22.7998 -26.0996c1 0 2 0.0996094 4.2002 0
|
393 |
-
c5.2002 16.8994 -14.2998 28 -30.7002 34.7998c2.90039 12 2.40039 24.0996 -0.399414 35.7002c-6 25.2998 -22.6006 47.7998 -35.2002 59c-2.2998 0.0996094 -2.10059 -1.90039 2.59961 -6.5c11.6006 -10.7002 37.1006 -49.2002 23.2998 -84.9004
|
394 |
-
c-3.89941 1 -7.59961 1.5 -10.8994 1.40039c-5.2998 29.0996 -17.5 53.2002 -23.6006 64.5996c-11.5 21.4004 -29.5 65.2998 -37.1992 95.7002c-4.5 -6.40039 -12.4004 -11.9004 -22.3008 -15c-4.69922 -1.5 -9.69922 -5.5 -15.8994 -9
|
395 |
-
c-13.9004 -8 -30 -8.7998 -42.4004 1.2002c-4.5 3.59961 -8 7.59961 -12.5996 10.2998c-1.60059 0.900391 -5.10059 3.2998 -6.2002 4.09961c-2 -37.7998 -27.2998 -85.2998 -39.2998 -112.699c-8.2998 -19.7002 -13.2002 -40.8008 -13.7998 -61.5
|
396 |
-
c-21.8008 29.0996 -5.90039 66.2998 2.59961 82.3994c9.5 17.6006 11 22.5 8.7002 20.7998c-8.60059 -14 -22 -36.2998 -27.2002 -59.1992c-2.7002 -11.9004 -3.2002 -24 0.299805 -35.2002s11.1006 -21.5 24.6006 -29.9004c0 0 24.7998 -14.2998 38.2998 -32.5
|
397 |
-
c7.39941 -10 9.7002 -18.7002 7.39941 -24.8994c-2.5 -6.7002 -9.59961 -8.90039 -16.6992 -8.90039c4.7998 -6 10.2998 -13 14.3994 -19.5996zM428.7 14.9004c0.299805 5.09961 -3.10059 13 -13.7002 24.5996c-10 11.2998 -7.2002 33.0996 -17.0996 41.5996
|
398 |
-
c-6.90039 6 -13.6006 5.40039 -22.6006 5.10059c-7.7002 -8.7998 -25.7998 -19.6006 -38.3994 -16.2998c-11.5 2.89941 -18 16.2998 -18.8008 29.5c-0.299805 -0.200195 -0.699219 -0.300781 -1 -0.5c-7.09961 -3.90039 -11.0996 -10.8008 -13.6992 -21.1006
|
399 |
-
c-2.5 -10.2002 -3.40039 -23.5 -4.2002 -38.7002c-0.700195 -11.7998 -6.2002 -26.3994 -9.90039 -40.5996c-3.5 -13.2002 -5.7998 -25.2002 -1.09961 -36.2998c7.2002 -14.5 19.5 -20.4004 33.7002 -19.2998c14.1992 1.09961 30.3994 9.7998 43.5996 25.5
|
400 |
-
c22 26.5996 62.2998 29.6992 63.2002 46.5zM173.3 299.3c-3.5 2.7998 -3.09961 6.60059 -1.7002 6.5c2.40039 -0.299805 2.80078 -3.5 4.30078 -4.89941c2 -1.90039 4.59961 -4.40039 7.69922 -6.90039c6.2002 -4.90039 14.5 -9.7002 24.9004 -9.7002
|
401 |
-
s22.5 6 29.9004 10.2002c4.19922 2.40039 9.5 6.59961 13.8994 9.7998c3.40039 2.5 3.2002 5.40039 6 5.10059c2.7998 -0.300781 0.799805 -3.2002 -3.09961 -6.60059c-3.90039 -3.39941 -9.90039 -7.7998 -14.7998 -10.3994
|
402 |
-
c-9.30078 -4.90039 -20.2002 -10.8008 -31.8008 -10.8008c-11.5 0 -20.6992 5.40039 -27.2998 10.6006c-3.2998 2.59961 -6 5.2002 -8 7.09961z" />
|
403 |
-
<glyph glyph-name="dribbble" unicode="" horiz-adv-x="512"
|
404 |
-
d="M256 440c136.748 0 248 -111.252 248 -248s-111.252 -248 -248 -248s-248 111.252 -248 248s111.252 248 248 248zM419.97 325.634c-4.46582 -6.04102 -39.9629 -51.5459 -118.284 -83.5225c7.43652 -15.2217 12.8652 -27.5732 18.6172 -41.6143
|
405 |
-
c70.4844 8.86426 140.519 -5.34082 147.502 -6.81836c-0.46582 49.998 -18.332 95.9092 -47.835 131.955zM396.421 350.13c-52.0947 46.2188 -122.885 63.6816 -190.061 47.4893c5.85449 -7.83984 44.3281 -60.2324 79.04 -124.008
|
406 |
-
c75.3232 28.2324 107.211 71.0918 111.021 76.5186zM165.941 383.38c-59.2637 -27.9531 -103.562 -82.585 -117.298 -148.318c9.47461 -0.125 96.7471 -0.503906 195.834 25.8096c-35.0986 62.3926 -72.9512 114.85 -78.5361 122.509zM44.1699 191.677
|
407 |
-
c0 -54.4072 20.624 -104.082 54.457 -141.636c34.3369 58.7793 103.932 120.731 180.531 142.306c-5.31738 12.0342 -11.1104 24.0811 -17.1738 35.9492c-105.786 -31.6592 -208.438 -30.3359 -217.706 -30.1455c-0.0654297 -2.15137 -0.108398 -4.30762 -0.108398 -6.47363
|
408 |
-
zM125.977 24.5645c62.7539 -48.9355 144.656 -56.8955 212.769 -27.8828c-3.15039 18.585 -15.4492 83.3555 -45.1895 160.639c-85.4004 -29.1348 -145.452 -87.5234 -167.579 -132.756zM374.357 16.0752c47.5215 32.1338 81.3525 83.0371 90.7949 141.978
|
409 |
-
c-7.24707 2.28711 -65.5674 19.6816 -131.947 9.05566c27.7061 -76.1367 38.9805 -138.147 41.1523 -151.033z" />
|
410 |
-
<glyph glyph-name="skype" unicode=""
|
411 |
-
d="M424.7 148.2c14.5996 -18.9004 23.2998 -42.5 23.2002 -68.1006c0 -61.7998 -50.2002 -112 -112 -112c-25.6006 0 -49.2002 8.7002 -68.2002 23.3008c-14.1006 -3 -28.9004 -4.7002 -43.7998 -4.7002c-113.4 0 -205.301 91.7998 -205.301 205.3
|
412 |
-
c0 14.9004 1.80078 29.7998 4.7002 43.7998c-14.5996 18.9004 -23.2998 42.5 -23.2998 68.2002c0 61.7998 50.2002 112 112 112c25.7002 0 49.2998 -8.7002 68.2998 -23.4004c14.1006 3 28.9004 4.7002 43.7998 4.7002c113.4 0 205.301 -91.7998 205.301 -205.3
|
413 |
-
c0 -14.9004 -1.80078 -29.7998 -4.7002 -43.7998zM230.1 56.7002c54.9004 0 112 27.3994 112 86.5c0 50.7998 -49.2998 68.2998 -90.6992 77.5996c-48.3008 11.2002 -69.1006 13.2002 -69.1006 33c0 15.5 16.2998 22.5 42 22.5c45.7998 0 46.7002 -33.5 75 -33.5
|
414 |
-
c18.9004 0 30.2998 14.9004 30.2998 31.7998c0 33.5 -55.6992 55.4004 -110.8 55.4004c-50.5 0 -109.1 -21.9004 -109.1 -81.0996c0 -65.2002 55.2998 -71.8008 117.8 -87.2002c26 -6.40039 42 -9.2998 42 -28c0 -14.9004 -16.5996 -26.2998 -42.2998 -26.2998
|
415 |
-
c-54 0 -56.9004 44.8994 -88.1006 44.8994c-20.5 0 -29.5 -14.5996 -29.5 -30.5996c0 -35.7998 54.9004 -65 120.5 -65z" />
|
416 |
-
<glyph glyph-name="foursquare" unicode="" horiz-adv-x="368"
|
417 |
-
d="M323.1 445c40 0 50.7002 -22.7998 42.2002 -65.2002l-48.5996 -243c-3.7002 -14.5 -9.2002 -39.7002 -44.2998 -39.7002h-83.4004c-3.40039 0 -3.7002 0.300781 -6.7998 -3.09961c0 0 -2.2002 -2.5 -131.101 -151.9
|
418 |
-
c-10.0996 -11.6992 -26.6992 -9.59961 -32.8994 -7.09961c-6.10059 2.40039 -18.2002 9.7998 -18.2002 30.0996v433.801c0 17.7998 12.4004 46.0996 49.9004 46.0996h273.199zM306.8 371.2c2.10059 9.7998 -5.2998 17.5 -13.5 17.5h-219
|
419 |
-
c-9.7998 0 -16.5996 -8.90039 -16.5996 -16.6006v-338.8c0 -0.899414 0.899414 -1.2002 1.7998 -0.299805c80.5996 96.9004 89.5 108.3 89.5 108.3c9.2998 10.7998 13 12.6006 26.5 12.6006h73.5c10.0996 0 16 8.59961 16.9004 13.5
|
420 |
-
c0.899414 5 9.59961 49.8994 11.3994 58.7998c1.7998 9 -6.5 18.2002 -14.7998 18.2002h-90.4004c-12 0 -20.5996 8.59961 -20.5996 20.5996v13c0 12 8.59961 20.2998 20.5996 20.2998h106.4c7.40039 0 15.7002 6.7002 16.9004 13.2002z" />
|
421 |
-
<glyph glyph-name="trello" unicode=""
|
422 |
-
d="M392.3 416c30.7998 -0.200195 55.7002 -25.2002 55.6006 -56v-336c0 -30.7998 -24.9004 -55.7998 -55.7002 -56h-336.2c-30.9004 0 -56 25.0996 -56 56c0 340 -0.0996094 336 0 336c0 30.9004 25.0996 56 56.0996 56h336.2zM197 76.7002h0.0996094v254.2
|
423 |
-
c0 14.8994 -12.0996 26.8994 -26.8994 26.8994h-82.9004c-14.8994 0 -26.8994 -12.0996 -26.8994 -26.8994v-254.2c0.0996094 -14.7998 12.1992 -26.7002 27 -26.6006h82.6992c14.8008 0 26.7002 11.9004 26.9004 26.6006zM390.1 188.7v142.1
|
424 |
-
c0 14.9004 -12.0996 26.9004 -26.8994 26.9004h-81.1006c-14.7998 0 -26.7998 -12.1006 -26.7998 -26.9004v-142.1c0 -14.9004 12.1006 -26.9004 26.9004 -26.9004h81c14.8994 0 26.8994 12.1006 26.8994 26.9004z" />
|
425 |
-
<glyph glyph-name="gratipay" unicode="" horiz-adv-x="496"
|
426 |
-
d="M248 440c136.9 0 248 -111.1 248 -248s-111.1 -248 -248 -248s-248 111.1 -248 248s111.1 248 248 248zM362.6 213.6c8.80078 12 19.1006 50.4004 -13.7998 72c-27.7002 18.1006 -54.2002 4.2002 -68.0996 -11.8994c-15.1006 -16.9004 -45.7998 -17.9004 -61.7002 0
|
427 |
-
c-13.9004 16.0996 -40.4004 30 -68.5 11.8994c-32.7002 -21.5996 -22.2998 -60.0996 -13.5996 -72l112.699 -152.699z" />
|
428 |
-
<glyph glyph-name="vk" unicode="" horiz-adv-x="576"
|
429 |
-
d="M545 330.3c-7.40039 -34.2998 -79.2998 -135.5 -79.4004 -135.6c-6.19922 -10 -8.69922 -15 0 -26.2002c3.40039 -4.7998 79.1006 -76.5996 90.3008 -111.5c4.89941 -16.5996 -3.60059 -25 -20.4004 -25h-58.9004c-22.3994 0 -29 17.9004 -69 57.9004
|
430 |
-
c-35 33.6992 -50 38.0996 -58.6992 38.0996c-18.8008 0 -15.4004 -6.2998 -15.4004 -73.0996c0 -14.5 -4.59961 -22.9004 -42.0996 -22.9004c-62.4004 0 -131 37.9004 -179.7 107.8c-73.1006 102.4 -93.1006 179.9 -93.1006 195.5c0 8.7998 3.40039 16.7002 20.2002 16.7002
|
431 |
-
h58.9004c15.0996 0 20.7998 -6.59961 26.5996 -22.9004c28.7998 -84 77.4004 -157.399 97.4004 -157.399c7.5 0 10.8994 3.5 10.8994 22.5v86.7998c-2.19922 40 -23.3994 43.2998 -23.3994 57.5c0 6.5 5.59961 13.5 15 13.5h92.5996
|
432 |
-
c12.4004 0 16.6006 -6.7002 16.6006 -21.7002v-116.7c0 -12.5 5.69922 -16.8994 9.39941 -16.8994c7.5 0 13.7998 4.39941 27.5 18.0996c42.4004 47.4004 72.4004 120.5 72.4004 120.5c3.7002 8.7998 10.5996 16.7002 25.5996 16.7002h58.9004
|
433 |
-
c17.7998 0 21.5 -9.2002 17.7998 -21.7002z" />
|
434 |
-
<glyph glyph-name="weibo" unicode="" horiz-adv-x="512"
|
435 |
-
d="M407 270.4c7.59961 24 -13.4004 46.7998 -37.4004 41.6992c-22 -4.7998 -28.7998 28.1006 -7.09961 32.8008c50.0996 10.8994 92.2998 -37.1006 76.5 -84.8008c-6.7998 -21.1992 -38.7998 -10.7998 -32 10.3008zM214.8 1.2998c-106.3 0 -214.8 51.4004 -214.8 136.3
|
436 |
-
c0 44.3008 28 95.4004 76.2998 143.7c99.7002 99.7002 203.2 100.9 173.601 5.7002c-4 -13.0996 12.2998 -5.7002 12.2998 -6c79.5 33.5996 140.5 16.7998 114 -51.4004c-3.7002 -9.39941 1.09961 -10.8994 8.2998 -13.0996c135.7 -42.2998 34.7998 -215.2 -169.7 -215.2z
|
437 |
-
M358.5 147.6c-5.40039 55.7002 -78.5 94 -163.4 85.7002c-84.7998 -8.59961 -148.8 -60.2998 -143.399 -116c5.39941 -55.7002 78.5 -94 163.399 -85.7002c84.8008 8.60059 148.801 60.3008 143.4 116zM347.9 412.9c102.3 21.5996 189.3 -74.5 157.399 -174.301
|
438 |
-
c-8.2998 -25 -44.7998 -12.1992 -37.3994 12c23.0996 71.2002 -39.4004 139.2 -111.7 124c-25.1006 -5.39941 -34.2002 32.7002 -8.2998 38.3008zM269.4 101.9c-17.1006 -38.8008 -66.8008 -60 -109.101 -46.3008c-40.7998 13.1006 -58 53.4004 -40.2998 89.7002
|
439 |
-
c17.7002 35.4004 63.0996 55.4004 103.4 45.1006c42 -10.8008 63.0996 -50.2002 46 -88.5zM183.1 131.9c-12.8994 5.39941 -30 -0.300781 -38 -12.9004c-8.2998 -12.9004 -4.2998 -28 8.60059 -34c13.0996 -6 30.7998 -0.299805 39.0996 12.9004
|
440 |
-
c8 13.0996 3.7002 28.2998 -9.7002 34zM215.7 145.3c-5.10059 1.7002 -11.4004 -0.599609 -14.2998 -5.39941c-2.90039 -5.10059 -1.40039 -10.6006 3.69922 -12.9004c5.10059 -2 11.7002 0.299805 14.6006 5.40039c2.7998 5.19922 1.09961 10.8994 -4 12.8994z" />
|
441 |
-
<glyph glyph-name="renren" unicode="" horiz-adv-x="512"
|
442 |
-
d="M214 278.9c0 -110.4 -61 -205.4 -147.6 -247.4c-36.4004 43.2998 -58.4004 98.7998 -58.4004 159.9c0 122.699 89.0996 224.399 206 244.1v-156.6zM255 -56c-42.9004 0 -83.2998 11 -118.5 30.4004c57.2002 36.0996 103.4 90.6992 118.5 154.6
|
443 |
-
c15.5 -63.9004 61.7002 -118.5 118.8 -154.7c-35.0996 -19.2998 -75.5 -30.2998 -118.8 -30.2998zM445.6 31.5c-86.5996 42 -147.6 136.9 -147.6 247.4v156.6c116.9 -19.7002 206 -121.4 206 -244.1c0 -61.1006 -22 -116.601 -58.4004 -159.9z" />
|
444 |
-
<glyph glyph-name="pagelines" unicode="" horiz-adv-x="384"
|
445 |
-
d="M384 135.3c-55.0996 -136.7 -187.1 -54 -187.1 -54c-40.5 -81.7998 -107.4 -134.399 -184.601 -134.7c-16.0996 0 -16.5996 24.4004 0 24.4004c64.4004 0.299805 120.5 42.7002 157.2 110.1c-41.0996 -15.8994 -118.6 -27.8994 -161.6 82.2002
|
446 |
-
c109 44.9004 159.1 -11.2002 178.3 -45.5c9.89941 24.4004 17 50.9004 21.5996 79.7002c0 0 -139.7 -21.9004 -149.5 98.0996c119.101 47.9004 152.601 -76.6992 152.601 -76.6992c1.59961 16.6992 3.2998 52.5996 3.2998 53.3994c0 0 -106.3 73.7002 -38.1006 165.2
|
447 |
-
c124.601 -43 61.4004 -162.4 61.4004 -162.4c0.5 -1.59961 0.5 -23.7998 0 -33.3994c0 0 45.2002 89 136.4 57.5c-4.2002 -134 -141.9 -106.4 -141.9 -106.4c-4.40039 -27.3994 -11.2002 -53.3994 -20 -77.5c0 0 83 91.7998 172 20z" />
|
448 |
-
<glyph glyph-name="stack-exchange" unicode=""
|
449 |
-
d="M17.7002 115.7h412.7v-22c0 -37.7002 -29.3008 -68 -65.3008 -68h-19l-86.7998 -89.7002v89.7002h-176.3c-36 0 -65.2998 30.2998 -65.2998 68v22zM17.7002 139.3v85h412.7v-85h-412.7zM17.7002 248.7v85h412.7v-85h-412.7zM365 448
|
450 |
-
c36 0 65.2998 -30.2998 65.4004 -67.7002v-22.2998h-412.7v22.2998c0 37.4004 29.2998 67.7002 65.2998 67.7002h282z" />
|
451 |
-
<glyph glyph-name="vimeo-square" unicode=""
|
452 |
-
d="M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM383.8 266.4c1.90039 41.5996 -13.5996 63 -46.5 64c-44.2998 1.39941 -74.3994 -23.6006 -90.0996 -75.1006
|
453 |
-
c19.5996 8.40039 48.5996 10.6006 45.2002 -22.2002c-0.900391 -11.0996 -8.10059 -27.0996 -21.5 -48.2998c-37.2002 -58.7002 -46.3008 -39.0996 -66.8008 90.5c-5.7998 36.5 -21.0996 53.5 -46 51.1006c-22 -2 -57.1992 -38 -94.0996 -70.4004l15 -19.4004
|
454 |
-
c14.2998 10.1006 22.7002 15.1006 25.0996 15.1006c20.8008 0 31.5 -54.1006 56.7002 -146.4c12.9004 -34.3994 28.6006 -51.5996 47.2998 -51.5996c30.1006 0 66.9004 28.2998 110.4 84.7998c42.0996 54.0996 63.9004 96.7998 65.2998 127.9z" />
|
455 |
-
<glyph glyph-name="slack" unicode=""
|
456 |
-
d="M94.1201 132.9c0 -25.9004 -21.1602 -47.0605 -47.0605 -47.0605c-25.8994 0 -47.0596 21.1602 -47.0596 47.0605c0 25.8994 21.1602 47.0596 47.0596 47.0596h47.0605v-47.0596zM117.84 132.9c0 25.8994 21.1602 47.0596 47.0605 47.0596
|
457 |
-
c25.8994 0 47.0596 -21.1602 47.0596 -47.0596v-117.841c0 -25.8994 -21.1602 -47.0596 -47.0596 -47.0596c-25.9004 0 -47.0605 21.1602 -47.0605 47.0596v117.841zM164.9 321.88c-25.9004 0 -47.0605 21.1602 -47.0605 47.0605c0 25.8994 21.1602 47.0596 47.0605 47.0596
|
458 |
-
c25.8994 0 47.0596 -21.1602 47.0596 -47.0596v-47.0605h-47.0596zM164.9 298.16c25.8994 0 47.0596 -21.1602 47.0596 -47.0605c0 -25.8994 -21.1602 -47.0596 -47.0596 -47.0596h-117.841c-25.8994 0 -47.0596 21.1602 -47.0596 47.0596
|
459 |
-
c0 25.9004 21.1602 47.0605 47.0596 47.0605h117.841zM353.88 251.1c0 25.9004 21.1602 47.0605 47.0605 47.0605c25.8994 0 47.0596 -21.1602 47.0596 -47.0605c0 -25.8994 -21.1602 -47.0596 -47.0596 -47.0596h-47.0605v47.0596zM330.16 251.1
|
460 |
-
c0 -25.8994 -21.1602 -47.0596 -47.0605 -47.0596c-25.8994 0 -47.0596 21.1602 -47.0596 47.0596v117.841c0 25.8994 21.1602 47.0596 47.0596 47.0596c25.9004 0 47.0605 -21.1602 47.0605 -47.0596v-117.841zM283.1 62.1201c25.9004 0 47.0605 -21.1602 47.0605 -47.0605
|
461 |
-
c0 -25.8994 -21.1602 -47.0596 -47.0605 -47.0596c-25.8994 0 -47.0596 21.1602 -47.0596 47.0596v47.0605h47.0596zM283.1 85.8398c-25.8994 0 -47.0596 21.1602 -47.0596 47.0605c0 25.8994 21.1602 47.0596 47.0596 47.0596h117.841
|
462 |
-
c25.8994 0 47.0596 -21.1602 47.0596 -47.0596c0 -25.9004 -21.1602 -47.0605 -47.0596 -47.0605h-117.841z" />
|
463 |
-
<glyph glyph-name="wordpress" unicode="" horiz-adv-x="512"
|
464 |
-
d="M61.7002 278.6l101.5 -278c-71 34.4004 -119.9 107.2 -119.9 191.4c0 30.9004 6.60059 60.0996 18.4004 86.5996zM399.6 202.7c0 -18.2002 -7 -39.2998 -16 -68.7002l-21.1992 -70.9004l-76.9004 228.7c12.7998 0.700195 24.2998 2 24.2998 2
|
465 |
-
c11.4004 1.2998 10.1006 18.2002 -1.39941 17.5c0 0 -34.5 -2.7002 -56.7002 -2.7002c-20.9004 0 -56 2.7002 -56 2.7002c-11.4004 0.700195 -12.7998 -16.7998 -1.2998 -17.5c0 0 10.7998 -1.2998 22.2998 -2l33.0996 -90.7998l-46.5996 -139.6l-77.5 230.399
|
466 |
-
c12.7998 0.700195 24.2998 2 24.2998 2c11.4004 1.2998 10.0996 18.2002 -1.40039 17.5c0 0 -34.5 -2.7002 -56.6992 -2.7002c-4 0 -8.7002 0.100586 -13.7002 0.300781c38.0996 57.7998 103.5 95.8994 177.8 95.8994c55.4004 0 105.8 -21.2002 143.7 -55.8994
|
467 |
-
c-1 0.0996094 -1.90039 0.199219 -2.7998 0.199219c-20.9004 0 -35.7002 -18.1992 -35.7002 -37.7998c0 -17.5 10.0996 -32.3994 20.8994 -49.8994c8.10059 -14.2002 17.5 -32.4004 17.5 -58.7002zM259.7 173.4l65.3994 -179.2c0.400391 -1 0.900391 -2 1.5 -2.90039
|
468 |
-
c-22.0996 -7.7998 -45.7998 -12.0996 -70.5996 -12.0996c-20.9004 0 -41 3.09961 -60.0996 8.7002zM442.7 294.1c16.5996 -30.2998 26 -65.0996 26 -102.1c0 -78.5 -42.5 -147 -105.8 -183.9l65 187.9c12.1992 30.4004 16.1992 54.5996 16.1992 76.2002
|
469 |
-
c0 7.89941 -0.5 15.0996 -1.39941 21.8994zM504 192c0 -136.8 -111.3 -248 -248 -248c-136.8 0 -248 111.3 -248 248c0 136.8 111.2 248 248 248c136.7 0 248 -111.2 248 -248zM492.6 192c0 130.5 -106.199 236.6 -236.6 236.6c-130.5 0 -236.6 -106.1 -236.6 -236.6
|
470 |
-
s106.199 -236.6 236.6 -236.6c130.5 0 236.6 106.1 236.6 236.6z" />
|
471 |
-
<glyph glyph-name="openid" unicode=""
|
472 |
-
d="M271.5 16l-68 -32c-115 10.2998 -203.5 71.5 -203.5 145.8c0 71.5 82.5 131 191.7 144.3v-43c-71.5 -12.5 -124 -53 -124 -101.3c0 -51 58.5 -93.2998 135.7 -103v340l68 33.2002v-384h0.0996094zM448 157l-131.3 28.5l36.7998 20.7002c-19.5 11.5 -43.5 20 -70 24.7998
|
473 |
-
v43c46.2002 -5.5 87.7002 -19.5 120.3 -39.2998l35 19.7998z" />
|
474 |
-
<glyph glyph-name="yahoo" unicode="" horiz-adv-x="512"
|
475 |
-
d="M223.69 306.94h93.5791l-140.909 -338.94h-94.1699l38.5693 89.8096l-105.83 249.131h96.0703l56 -143.171zM329.09 171.15c32.1328 0 58.2197 -26.0879 58.2197 -58.2207c0 -32.1318 -26.0869 -58.2197 -58.2197 -58.2197s-58.2197 26.0879 -58.2197 58.2197
|
476 |
-
c0 32.1328 26.0869 58.2207 58.2197 58.2207zM394.65 416h104.42l-92.6299 -223.47h-104.79z" />
|
477 |
-
<glyph glyph-name="google" unicode="" horiz-adv-x="488"
|
478 |
-
d="M488 186.2c0 -141.5 -96.9004 -242.2 -240 -242.2c-137.2 0 -248 110.8 -248 248s110.8 248 248 248c66.7998 0 123 -24.5 166.3 -64.9004l-67.5 -64.8994c-88.2998 85.2002 -252.5 21.2002 -252.5 -118.2c0 -86.5 69.1006 -156.6 153.7 -156.6
|
479 |
-
c98.2002 0 135 70.3994 140.8 106.899h-140.8v85.2998h236.1c2.30078 -12.6992 3.90039 -24.8994 3.90039 -41.3994z" />
|
480 |
-
<glyph glyph-name="reddit" unicode="" horiz-adv-x="512"
|
481 |
-
d="M201.5 142.5c-13.7998 0 -24.9004 11.0996 -24.9004 24.5996c0 13.8008 11.1006 24.9004 24.9004 24.9004c13.5996 0 24.5996 -11.0996 24.5996 -24.9004c0 -13.5996 -11.0996 -24.5996 -24.5996 -24.5996zM504 192c0 -137 -111 -248 -248 -248s-248 111 -248 248
|
482 |
-
s111 248 248 248s248 -111 248 -248zM371.7 233.2c-9.40039 0 -17.7002 -3.90039 -23.7998 -10c-22.4004 15.5 -52.6006 25.5 -86.1006 26.5996l17.4004 78.2998l55.3994 -12.5c0 -13.5996 11.1006 -24.5996 24.6006 -24.5996c13.7998 0 24.8994 11.2998 24.8994 24.9004
|
483 |
-
c0 13.5996 -11.0996 24.8994 -24.8994 24.8994c-9.7002 0 -18 -5.7998 -22.1006 -13.7998l-61.1992 13.5996c-3 0.800781 -6.10059 -1.39941 -6.90039 -4.39941l-19.0996 -86.4004c-33.2002 -1.39941 -63.1006 -11.2998 -85.5 -26.7998
|
484 |
-
c-6.10059 6.40039 -14.7002 10.2002 -24.1006 10.2002c-34.8994 0 -46.2998 -46.9004 -14.3994 -62.7998c-1.10059 -5 -1.7002 -10.2002 -1.7002 -15.5c0 -52.6006 59.2002 -95.2002 132 -95.2002c73.0996 0 132.3 42.5996 132.3 95.2002
|
485 |
-
c0 5.2998 -0.599609 10.7998 -1.90039 15.7998c31.3008 16 19.8008 62.5 -14.8994 62.5zM302.8 117c2.2002 2.2002 6.10059 2.2002 8.2998 0c2.5 -2.5 2.5 -6.40039 0 -8.59961c-22.8994 -22.8008 -87.3994 -22.8008 -110.199 0c-2.5 2.19922 -2.5 6.09961 0 8.59961
|
486 |
-
c2.19922 2.2002 6.09961 2.2002 8.2998 0c17.5 -17.9004 75.3994 -18.2002 93.5996 0zM310.5 192c13.9004 0 24.9004 -11.0996 24.9004 -24.9004c0 -13.5 -11.1006 -24.5996 -24.9004 -24.5996c-13.5 0 -24.5996 11 -24.5996 24.5996c0 13.8008 11 24.9004 24.5996 24.9004z
|
487 |
-
" />
|
488 |
-
<glyph glyph-name="reddit-square" unicode=""
|
489 |
-
d="M283.2 102.5c2.7002 -2.7002 2.7002 -6.7998 0 -9.2002c-24.5 -24.5 -93.7998 -24.5996 -118.4 0c-2.7002 2.40039 -2.7002 6.5 0 9.2002c2.40039 2.40039 6.5 2.40039 8.90039 0c18.7002 -19.2002 81 -19.5996 100.5 0c2.39941 2.2998 6.59961 2.2998 9 0zM191.9 156.3
|
490 |
-
c0 -14.5996 -11.9004 -26.5 -26.5 -26.5c-14.9004 0 -26.8008 11.9004 -26.8008 26.5c0 14.9004 11.9004 26.7998 26.8008 26.7998c14.5996 0 26.5 -11.8994 26.5 -26.7998zM282.6 183.1c14.9004 0 26.8008 -11.8994 26.8008 -26.7998
|
491 |
-
c0 -14.5996 -11.9004 -26.5 -26.8008 -26.5c-14.5996 0 -26.5 11.9004 -26.5 26.5c0 14.9004 11.9004 26.7998 26.5 26.7998zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM348.3 227.4
|
492 |
-
c-10.0996 0 -19 -4.2002 -25.5996 -10.7002c-24.1006 16.7002 -56.5 27.3994 -92.5 28.5996l18.7002 84.2002l59.5 -13.4004c0 -14.5996 11.8994 -26.5 26.5 -26.5c14.8994 0 26.7998 12.2002 26.7998 26.8008c0 14.5996 -11.9004 26.7998 -26.7998 26.7998
|
493 |
-
c-10.4004 0 -19.3008 -6.2002 -23.8008 -14.9004l-65.6992 14.6006c-3.30078 0.899414 -6.5 -1.5 -7.40039 -4.80078l-20.5 -92.7998c-35.7002 -1.5 -67.7998 -12.2002 -91.9004 -28.8994c-6.5 6.7998 -15.7998 11 -25.8994 11c-37.5 0 -49.7998 -50.4004 -15.5 -67.5
|
494 |
-
c-1.2002 -5.40039 -1.7998 -11 -1.7998 -16.7002c0 -56.5 63.6992 -102.3 141.899 -102.3c78.5 0 142.2 45.7998 142.2 102.3c0 5.7002 -0.599609 11.5996 -2.09961 17c33.5996 17.2002 21.1992 67.2002 -16.1006 67.2002z" />
|
495 |
-
<glyph glyph-name="stumbleupon-circle" unicode="" horiz-adv-x="496"
|
496 |
-
d="M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM256 262.5c9.7998 0 17.7998 -8 17.7002 -17.5996v-20.6006l22.8994 -10.7002l34.1006 10.1006v23.7002c0 40.2998 -34 72.5996 -74.7002 72.5996
|
497 |
-
c-40.5 0 -74.7002 -32.0996 -74.7002 -72.0996v-108.4c0 -9.90039 -8 -17.7998 -17.7998 -17.7998s-17.7998 7.7998 -17.7998 17.7998v45.7998h-57.2998v-46.5c0 -41.3994 33.5 -74.8994 74.8994 -74.8994c41 0 74.9004 33 74.9004 73.8994v106.9
|
498 |
-
c0 9.7998 8 17.7998 17.7998 17.7998zM423.6 138.9c0 0 0 0.5 0.100586 46.3994h-57.2998v-48c0 -9.7002 -8 -17.5996 -17.8008 -17.5996c-9.7998 0 -17.7998 7.7998 -17.7998 17.5996v47.1006l-34.0996 -10.1006l-22.9004 10.7002v-46.7998
|
499 |
-
c0 -41 33.7002 -74.2002 74.9004 -74.2002c41.3994 0 74.8994 33.5 74.8994 74.9004z" />
|
500 |
-
<glyph glyph-name="stumbleupon" unicode="" horiz-adv-x="512"
|
501 |
-
d="M502.9 182v-69.7002c0 -62.0996 -50.3008 -112.399 -112.4 -112.399c-61.7998 0 -112.4 49.7998 -112.4 111.3v70.2002l34.3008 -16l51.0996 15.1992v-70.5996c0 -14.7002 12 -26.5 26.7002 -26.5s26.7998 11.7998 26.7998 26.5v72h85.9004zM278.2 240.2v30.8994
|
502 |
-
c0 14.7002 -12 26.7002 -26.7002 26.7002s-26.7002 -12 -26.7002 -26.7002v-160.3c0 -61.2998 -50.7998 -110.8 -112.399 -110.8c-62.1006 0 -112.4 50.2998 -112.4 112.3v69.7002h86v-68.5996c0 -14.9004 12 -26.7002 26.7002 -26.7002s26.7002 11.7998 26.7002 26.7002
|
503 |
-
v162.399c0 60 51.2998 108.2 112.1 108.2c61 0 112.1 -48.5 112.1 -109v-35.5996l-51.0996 -15.2002z" />
|
504 |
-
<glyph glyph-name="delicious" unicode=""
|
505 |
-
d="M446.5 380c1 -3.7998 1.5 -7.90039 1.59961 -12v-352.1c0 -26.5 -21.5 -48 -48 -48h-352c-4.09961 0 -8.19922 0.5 -12 1.5c-7.69922 2 -14.5996 5.7998 -20.2998 11c-1.2002 1.09961 -2.2998 2.19922 -3.2998 3.2998c-5.2002 5.7002 -9 12.5996 -11 20.2998
|
506 |
-
c-1 3.7998 -1.5 7.90039 -1.5 12v352c0 26.5 21.5 48 48 47.9004h352c4.09961 0 8.2002 -0.5 12 -1.5c1.90039 -0.400391 3.7002 -1 5.40039 -1.7002c1.89941 -0.700195 3.69922 -1.5 5.5 -2.5c1.39941 -0.700195 2.69922 -1.5 4 -2.40039
|
507 |
-
c1.09961 -0.799805 2.19922 -1.59961 3.2998 -2.5c2.5 -2 4.7998 -4.2998 6.89941 -6.7998c1.7002 -2.09961 3.30078 -4.5 4.7002 -6.90039c1.2998 -2.2998 2.40039 -4.59961 3.2998 -7.09961c0.5 -1.5 1 -3 1.40039 -4.5zM416 16v176h-192v192h-176
|
508 |
-
c-8.7998 0 -16 -7.2002 -16 -16v-176h192v-192h176c8.7998 0 16 7.2002 16 16z" />
|
509 |
-
<glyph glyph-name="digg" unicode="" horiz-adv-x="512"
|
510 |
-
d="M81.7002 275.7v76.2998h51v-250.7h-132.7v174.4h81.7002zM81.7002 142.3v92.2998h-30.7998v-92.2998h30.7998zM378.9 275.7h133.1v-243.7h-133.1v40.7998h81.7998v28.5h-81.7998v174.4zM460.7 142.3v92.2998h-30.7998v-92.2998h30.7998zM225.1 101.3v174.4h133.301
|
511 |
-
v-243.7h-133.301v40.7998h82.1006v28.5h-82.1006zM276.3 234.6v-92.2998h30.7998v92.2998h-30.7998zM153.3 352h51.2998v-51h-51.2998v51zM153.3 275.7h51.2998v-174.4h-51.2998v174.4z" />
|
512 |
-
<glyph glyph-name="pied-piper-pp" unicode=""
|
513 |
-
d="M205.3 273.4c0 -21.1006 -14.2002 -38.1006 -31.7002 -38.1006c-7.09961 0 -12.7998 1.2002 -17.1992 3.7002v68c4.39941 2.7002 10.0996 4.2002 17.1992 4.2002c17.5 0 31.7002 -16.9004 31.7002 -37.7998zM257.9 206.4c17.3994 0 31.6992 -17 31.6992 -38.1006
|
514 |
-
c0 -20.8994 -14.2998 -37.7998 -31.6992 -37.7998c-7.10059 0 -12.8008 1.2002 -17.2002 3.7002v68c4.39941 2.7002 10.0996 4.2002 17.2002 4.2002zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352
|
515 |
-
c26.5 0 48 -21.5 48 -48zM185 192.9c41 0 74.2002 35.5996 74.2002 79.5996s-33.2002 79.5996 -74.2002 79.5996c-12 0 -24.0996 -3.19922 -34.5996 -8.7998h-45.7002v-206.3l51.7998 10.0996v50.6006c8.59961 -3.10059 18.0996 -4.7998 28.5 -4.7998zM343.4 167.6
|
516 |
-
c0 44 -33.2002 79.6006 -73.9004 79.6006c-3.2002 0 -6.40039 -0.200195 -9.59961 -0.700195c-3.7002 -12.5 -10.1006 -23.7998 -19.2002 -33.4004c-13.7998 -15 -32.2002 -23.7998 -51.7998 -24.7998v-156.3l51.7998 10.0996v50.6006
|
517 |
-
c8.59961 -3.2002 18.2002 -4.7002 28.7002 -4.7002c40.7998 0 74 35.5996 74 79.5996z" />
|
518 |
-
<glyph glyph-name="pied-piper-alt" unicode="" horiz-adv-x="576"
|
519 |
-
d="M244 202l-27.7002 -5.7002l-1.7002 4.90039c6.7002 0.5 12.7002 3.7002 19.3008 3.7002c3.7998 0 6.89941 -0.900391 10.0996 -2.90039zM379.9 4.09961c9.5 0 28.1992 -45.0996 33 -55.0996c-35.9004 -13.4004 -70.3008 -15.9004 -106 -9.7998l-6.90039 45.0996
|
520 |
-
c15.7998 10.2998 60.9004 19.7998 79.9004 19.7998zM340.8 271c-7.59961 3.5 -63.8994 6.40039 -98.7998 -10c6.2998 11.7998 13.2002 17 25.9004 21.7998c27.2998 10.2998 40.1992 30.5 58.8994 51.1006c11.9004 -8.40039 12 -24.6006 31.6006 -23v-21.8008
|
521 |
-
l6.2998 -0.299805c37.3994 14.4004 74.7002 30.2002 106.6 54.6006c48.2998 36.7998 52.9004 50 81.2998 100l2 2.59961c-0.599609 -14.0996 -6.2998 -27.2998 -12.3994 -39.9004c-30.5 -63.7998 -78.7002 -100.3 -146.8 -116.699
|
522 |
-
c-12.4004 -2.90039 -26.4004 -3.2002 -37.6006 -8.90039c1.40039 -9.7998 13.2002 -18.0996 13.2002 -23c0 -3.40039 -5.5 -7.2002 -7.5 -8.59961c-11.2002 12.8994 -16.0996 19.2998 -22.7002 22.0996zM555.5 448l-0.299805 -1.40039l-0.600586 -0.599609
|
523 |
-
l0.300781 0.900391zM496.3 65.9004c20.1006 -34.2002 43.7002 -54.3008 72.7002 -79.9004c-31 -19.2998 -70.4004 -32.2002 -103.5 -47.2002c-55.2002 46.2998 -23 229.9 -111.5 229.9c-3.5 -0.700195 -2.40039 -0.299805 -4.59961 -1.7002
|
524 |
-
c1.09961 -1.40039 2.59961 -2.90039 3.69922 -4c23.9004 -20.0996 33.4004 -24.4004 34.8008 -58.5996l0.299805 -9.5c0.799805 -21.6006 -5.5 -42.5 -9.7998 -63.5c-25.9004 0.699219 -51.2002 -11 -77.9004 -2.90039c-0.700195 5.90039 -1.09961 30.9004 0.299805 41.0996
|
525 |
-
c1.40039 9.5 33.6006 29.9004 33 43.7002c-5.5 0.600586 -9.2002 -2.59961 -12.3994 -6.89941c-13.3008 -19.5 -47.2002 -41.9004 -71.3008 -41.9004c-16.5996 0 -56.2998 71.5 -76.3994 85.9004c-3.2002 2.2998 -5.2002 5.39941 -7.7998 8.59961
|
526 |
-
c-16.1006 -3.7998 -139.4 -32.2002 -147.4 -32.2002c-6 0 -11.5 4.90039 -11.5 10.9004c0 5.5 3.40039 10.7002 8.90039 11.7998l139.6 30.4004c-9.5 17.1992 12.2998 17.5 21.5 20.0996c3.2002 0.799805 6.2998 4 9.5 4c6.2998 0 11.7998 -8.90039 13.7998 -14.0996
|
527 |
-
c6.2998 1.39941 45.7002 10.5996 49.4004 10.5996c15.2002 0 15.8994 -20.0996 2.89941 -22.7002l-52.2998 -11.5l-0.299805 -4.59961c-0.299805 -10.1006 45.4004 -60.1006 53.4004 -60.1006c18.0996 0 54.8994 41.7002 54.8994 60.1006
|
528 |
-
c0 30.7002 -42.7998 12.5996 -42.7998 33.5996c0 3.5 1.2002 6.60059 2.90039 9.7998l-19.5 5.5c13.0996 13.6006 13.7998 31.7002 10.8994 50.3008c14.7002 2.89941 26.7002 4.59961 41.4004 4.59961c56.8994 0 45.7002 -8.59961 65.5 -54.2998l14.3994 7.2002
|
529 |
-
c-2.2998 -34.2002 -36.1992 -17.5 -35.0996 -31l0.299805 -6c74.7002 2.89941 116.101 -58.6006 150 -115.5zM300.1 19.7998h8.90039l2.90039 -23.7998l-11.8008 -3.40039v27.2002zM231.4 170.2l13.7998 3.5l31.2998 -50.9004l-21 -13.7998zM315.8 15.2998
|
530 |
-
c22.6006 2.5 32.7002 6.2998 59.5 6.2998c0.299805 -1.39941 0.900391 -3.19922 0.900391 -4.59961c0 -7.5 -49.4004 -12.5996 -58.4004 -14.0996z" />
|
531 |
-
<glyph glyph-name="drupal" unicode=""
|
532 |
-
d="M319.5 333.3c13.5 -8.2998 96.5 -67 96.5 -179.3c0 -112 -88.5 -186 -190.2 -186c-102 0 -193.8 80.2998 -193.8 189.5c0 109 85 167.5 100.8 175.8c18.7002 10.1006 32.2002 15.2998 53.5 32.2998c10.5 8.30078 19.2998 20.2002 22 49.5
|
533 |
-
c15.2002 -18.2998 33.5 -39.5 46.5 -48.2998c21.2002 -14 42.5 -19.5 64.7002 -33.5zM322 7.7002c4.2002 4.2002 1.90039 13.0996 -4.2002 8.5c-8.5 -6.2998 -27.5 -14 -54.5 -14c-34.5 0 -51.5 13.2998 -51.5 13.2998c-6.2002 0 -11.2998 -7.2002 -6.5 -12
|
534 |
-
c26.6006 -24.5 96.6006 -15.9004 116.7 4.2002zM267.5 60.2998c-6.5 -2.7002 -28.4004 -16.7998 -22.4004 -25c2.40039 -3.2998 5.2002 -1.2998 12.2002 4.7002c7.2002 5.7998 12 11 26.7002 11c25.2998 0 18.0996 -19.9004 26.5 -15.7002
|
535 |
-
c9.90039 4.90039 -2.09961 20.9004 -6.2002 23.7002c-7.7998 5.09961 -28.0996 4.90039 -36.7998 1.2998zM360 43c39.0996 -3.2998 64.5 106 15.7998 106c-20 0 -60.5 -41.5 -81.7998 -41.7998c-24.7002 -0.5 -59 49 -108.5 48.5
|
536 |
-
c-66.4004 -0.400391 -90.5996 -78.6006 -51.7998 -105.2c57.2002 -38.7002 130.399 42.9004 161.3 42c19.5 -0.700195 49.7998 -48.5 65 -49.5z" />
|
537 |
-
<glyph glyph-name="joomla" unicode=""
|
538 |
-
d="M0.599609 355.9c0 33.2998 26.8008 60.0996 59.8008 60.0996c30 0 54.5 -21.9004 59.1992 -50.2002c32.6006 7.60059 67.1006 -0.599609 96.5 -30l-44.2998 -44.2998c-20.5 20.5 -42.5996 16.2998 -55.3994 3.5c-14.3008 -14.2998 -14.3008 -37.9004 0 -52.2002
|
539 |
-
l99.5 -99.5l-44 -44.2998c-87.7002 87.2002 -49.7002 49.7002 -99.8008 99.7002c-26.7998 26.5 -35 64.7998 -24.7998 98.8994c-26.8994 5.80078 -46.7002 29.7002 -46.7002 58.3008zM130.1 239.5c28.5 28.4004 81.3008 80.7998 99.6006 99.9004
|
540 |
-
c26.5996 26.5996 64.5 35 98.2998 25.0996c4.09961 29.0996 29.2002 51.5996 59.5 51.5996c33 0 59.7998 -26.8994 59.7998 -60.0996c0 -30.2998 -22.7002 -55.4004 -51.8994 -59.5c9.59961 -33.5996 2.2998 -70 -28.9004 -101.2l-44 44.2998
|
541 |
-
c20.5 20.4004 16.2998 42.6006 3.5 55.4004c-14.2998 14.2998 -37.5996 14.2998 -51.9004 0c-10 -10.0996 -89.6992 -89.7998 -99.6992 -99.7998zM396.4 87.2998c29.0996 -4.09961 51.5996 -28.8994 51.5996 -59.0996c0 -33.2998 -26.7998 -60.1006 -59.7998 -60.1006
|
542 |
-
c-29.2002 0 -53.4004 20.7002 -58.9004 48.1006c-34.7002 -10.7998 -75.0996 -2.2002 -102.7 28l44 44.2998c20.4004 -20.5 42.6006 -16.2998 55.4004 -3.5c14.2998 14.2998 14.2998 37.5996 0 51.9004l-99.7002 99.6992l44.2998 44.3008
|
543 |
-
c104.5 -104.4 87.7002 -87.5 99.5 -99.7002c25.4004 -25.4004 34.5 -61.2002 26.3008 -93.9004zM312.1 140.4c-87.2998 -87.3008 -67.3994 -67.7002 -99.5 -99.7002c-25.6992 -25.4004 -61.5 -34.2002 -94.1992 -26c-6.10059 -26.9004 -30 -46.7002 -58.6006 -46.7002
|
544 |
-
c-33 0 -59.7998 26.7998 -59.7998 60.0996c0 28.3008 19.5 52.2002 46.2002 58.2002c-8.5 33.1006 -0.700195 68.1006 29.5 98.2998l44 -44.2998c-20.1006 -20.0996 -16.2998 -42 -3.2002 -55.3994c14.2998 -14.3008 37.5996 -14.3008 51.9004 0
|
545 |
-
c49.2998 49.3994 12.6992 13.3994 99.6992 99.7998z" />
|
546 |
-
<glyph glyph-name="behance" unicode="" horiz-adv-x="576"
|
547 |
-
d="M232 210.8c43.5996 -12.2998 64.7002 -45.2002 64.7002 -89.7002c0 -72 -60.5 -102.899 -124.9 -102.899h-171.8v354.399h167.1c60.7002 0 113.301 -17.1992 113.301 -87.7998c0 -35.7998 -16.6006 -58.7998 -48.4004 -74zM77.9004 312.1v-82.6992h79
|
548 |
-
c27.7998 0 47.5 12.0996 47.5 42.1992c0 32.6006 -25.3008 40.5 -53.4004 40.5h-73.0996zM161.2 78.4004c31.7002 0 57.5996 11.1992 57.5996 47c0 36.2998 -21.7002 50.5996 -56 50.5996h-84.8994v-97.5996h83.2998zM519.7 319.1h-143.7v34.9004h143.7v-34.9004zM576 142.8
|
549 |
-
c0 -4.5 -0.299805 -9 -0.599609 -13.2002h-185.101c0 -41.0996 21.7002 -65.2998 63 -65.2998c21.4004 0 49 11.6006 55.7002 33.5h62.2002c-19.1006 -58.7002 -58.7998 -86.2998 -120.101 -86.2998c-81 0 -131.3 54.7998 -131.3 134.7c0 77 53.1006 135.8 131.3 135.8
|
550 |
-
c80.5 0 124.9 -63.2998 124.9 -139.2zM390.4 174h114.699c-3 34 -20.7998 54.7998 -56.1992 54.7998c-33.8008 0 -56.2002 -21.0996 -58.5 -54.7998z" />
|
551 |
-
<glyph glyph-name="behance-square" unicode=""
|
552 |
-
d="M186.5 155c0 -19.2998 -14 -25.4004 -31.2002 -25.4004h-45.0996v52.9004h46c18.5996 -0.0996094 30.2998 -7.7998 30.2998 -27.5zM178.8 237.3c0 -16.2998 -10.7002 -22.8994 -25.7998 -22.8994h-42.7002v44.7998h39.6006c15.1992 0 28.8994 -4.2002 28.8994 -21.9004z
|
553 |
-
M311.1 214.1c19.2002 0 28.8008 -11.1992 30.5 -29.6992h-62.1992c1.19922 18.2998 13.3994 29.6992 31.6992 29.6992zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM271.7 263h77.7998
|
554 |
-
v18.9004h-77.7998v-18.9004zM228.7 152.7c0 24.0996 -11.4004 44.8994 -35 51.5996c17.2002 8.2002 26.2002 17.7002 26.2002 37c0 38.2002 -28.5 47.5 -61.4004 47.5h-90.5v-192h93.0996c34.9004 0.200195 67.6006 16.9004 67.6006 55.9004zM380 167.5
|
555 |
-
c0 41.0996 -24.0996 75.4004 -67.5996 75.4004c-42.4004 0 -71.1006 -31.8008 -71.1006 -73.6006c0 -43.2998 27.2998 -73 71.1006 -73c33.1992 0 54.6992 14.9004 65.0996 46.7998h-33.7002c-3.7002 -11.8994 -18.5996 -18.0996 -30.2002 -18.0996
|
556 |
-
c-22.3994 0 -34.0996 13.0996 -34.0996 35.2998h100.2c0.0996094 2.2998 0.299805 4.7998 0.299805 7.2002z" />
|
557 |
-
<glyph glyph-name="steam" unicode="" horiz-adv-x="496"
|
558 |
-
d="M496 192c0 -137 -111.2 -248 -248.4 -248c-113.8 0 -209.6 76.2998 -239 180.4l95.2002 -39.3008c6.40039 -32.0996 34.9004 -56.3994 68.9004 -56.3994c39.2002 0 71.8994 32.3994 70.2002 73.5l84.5 60.2002c52.0996 -1.30078 95.7998 40.8994 95.7998 93.5
|
559 |
-
c0 51.5996 -42 93.5 -93.7002 93.5s-93.7002 -42 -93.7002 -93.5v-1.2002l-59.2002 -85.7002c-15.5 0.900391 -30.6992 -3.40039 -43.5 -12.0996l-133.1 55c10.2002 127.699 117.1 228.1 247.6 228.1c137.2 0 248.4 -111 248.4 -248zM155.7 63.7002
|
560 |
-
c19.7998 -8.2002 42.5 1.09961 50.7998 21c8.2998 19.7998 -1.09961 42.5 -20.9004 50.7002l-31.5 13c12.2002 4.59961 26 4.7998 38.9004 -0.600586c13 -5.39941 23.0996 -15.5996 28.5 -28.5996s5.2998 -27.2998 -0.0996094 -40.2998
|
561 |
-
c-11.2002 -26.8008 -42.1006 -39.6006 -69 -28.4004c-11.9453 4.99414 -21.6055 14.1826 -27.2002 25.7998zM329.5 193.6c-34.4004 0 -62.4004 28 -62.4004 62.3008c0 34.2998 28 62.2998 62.4004 62.2998s62.4004 -28 62.4004 -62.2998
|
562 |
-
c0 -34.3008 -27.9004 -62.3008 -62.4004 -62.3008zM329.6 209.2c25.9004 0 46.9004 21 46.9004 46.7998c0 25.9004 -21 46.7998 -46.9004 46.7998c-25.8994 0 -46.8994 -21 -46.8994 -46.7998c0.0996094 -25.7998 21.0996 -46.7998 46.8994 -46.7998z" />
|
563 |
-
<glyph glyph-name="steam-square" unicode=""
|
564 |
-
d="M185.2 91.5c7.7002 18.5 -1 39.7002 -19.6006 47.4004l-29.5 12.1992c11.4004 4.30078 24.3008 4.5 36.4004 -0.5c12.2002 -5.09961 21.5996 -14.5996 26.7002 -26.6992c5 -12.2002 5 -25.6006 -0.100586 -37.7002c-10.5 -25.1006 -39.3994 -37 -64.5996 -26.5
|
565 |
-
c-11.5996 4.7998 -20.4004 13.5996 -25.4004 24.2002l28.5 -11.8008c18.6006 -7.7998 39.9004 0.900391 47.6006 19.4004zM400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v112.8l89.0996 -36.8994
|
566 |
-
c6 -30 32.7002 -52.7002 64.5 -52.7002c36.6006 0 67.3008 30.2998 65.7002 68.7998l79 56.2998c48.7002 -1.2002 89.6006 38.2998 89.6006 87.5c0 48.2002 -39.3008 87.5 -87.6006 87.5s-87.5996 -39.2998 -87.5996 -87.5v-1.09961l-55.4004 -80.2002
|
567 |
-
c-14.5 0.799805 -28.7002 -3.09961 -40.7002 -11.2998l-116.6 48.0996v160.7c0 26.5 21.5 48 48 48h352zM300.3 193.5c-32.2002 0 -58.3994 26.0996 -58.3994 58.2998s26.1992 58.2998 58.3994 58.2998s58.4004 -26.1992 58.4004 -58.2998
|
568 |
-
c0 -32.0996 -26.2002 -58.2998 -58.4004 -58.2998zM300.4 208.1c24.1992 0 43.8994 19.6006 43.8994 43.8008c0 24.1992 -19.5996 43.7998 -43.8994 43.7998c-24.2002 0 -43.9004 -19.6006 -43.9004 -43.7998c0 -24.2002 19.7002 -43.8008 43.9004 -43.8008z" />
|
569 |
-
<glyph glyph-name="spotify" unicode="" horiz-adv-x="496"
|
570 |
-
d="M248 440c136.9 0 248 -111.1 248 -248s-111.1 -248 -248 -248s-248 111.1 -248 248s111.1 248 248 248zM348.7 75.0996c8.09961 0 15.2002 6.30078 15.2002 15.4004s-3.60059 12.5996 -9.7002 16.5c-71.4004 42.7002 -155.101 44.2998 -237 26.2002
|
571 |
-
c-7.5 -1.60059 -13.6006 -6.5 -13.6006 -16.7998c0 -8.10059 6.10059 -15.8008 15.8008 -15.8008c2.89941 0 8 1.60059 11.8994 2.60059c71.7002 14.7002 144.3 13.0996 206.7 -24.5c3.90039 -2.2998 6.5 -3.60059 10.7002 -3.60059zM375.6 140.7
|
572 |
-
c10.9004 0 19.3008 8.7002 19.4004 19.5c0 8.7002 -3.2002 14.8994 -11.2998 19.7002c-49.4004 29.3994 -112.101 45.5 -177 45.5c-41.6006 0 -70 -5.80078 -97.7998 -13.6006c-10.3008 -2.89941 -15.5 -10 -15.5 -20.7002c0 -10.6992 8.69922 -19.3994 19.3994 -19.3994
|
573 |
-
c4.5 0 7.10059 1.2998 11.9004 2.59961c82.8994 22.5 176.1 7.60059 238.6 -29.3994c3.60059 -1.90039 7.10059 -4.2002 12.2998 -4.2002zM406.6 216.9c12.2002 0 23.2002 9.69922 23.2002 23.2998c0 11.8994 -5.09961 18.0996 -12.8994 22.5996
|
574 |
-
c-55.9004 32.6006 -132.4 47.7998 -205.4 47.7998c-42.9004 0 -82.2998 -4.89941 -117.5 -15.1992c-9 -2.60059 -17.4004 -10.3008 -17.4004 -23.9004c0 -13.2998 10.1006 -23.5996 23.3008 -23.5996c4.7998 0 9.2998 1.59961 12.8994 2.59961
|
575 |
-
c82.4004 23 209.7 12.7998 280.9 -29.7002c4.5 -2.59961 7.7002 -3.89941 12.8994 -3.89941z" />
|
576 |
-
<glyph glyph-name="deviantart" unicode="" horiz-adv-x="320"
|
577 |
-
d="M320 354.8l-98.2002 -179.1l7.40039 -9.5h90.7998v-127.7h-160.9l-13.5 -9.2002l-43.6992 -84c-0.300781 0 -8.60059 -8.59961 -9.2002 -9.2002h-92.7002v93.2002l93.2002 179.4l-7.40039 9.2002h-85.7998v127.6h156l13.5 9.2002l43.7002 84
|
578 |
-
c0.299805 0 8.59961 8.59961 9.2002 9.2002h97.5996v-93.1006z" />
|
579 |
-
<glyph glyph-name="soundcloud" unicode="" horiz-adv-x="640"
|
580 |
-
d="M111.4 191.7l5.7998 -65l-5.7998 -68.2998c-0.300781 -2.5 -2.2002 -4.40039 -4.40039 -4.40039s-4.2002 1.90039 -4.2002 4.40039l-5.59961 68.2998l5.59961 65c0 2.2002 1.90039 4.2002 4.2002 4.2002c2.2002 0 4.09961 -2 4.40039 -4.2002zM132.8 237.3
|
581 |
-
c2.5 0 4.7002 -2.2002 4.7002 -5l5.7998 -105.6l-5.7998 -68.2998c0 -2.80078 -2.2002 -5 -4.7002 -5c-2.7998 0 -4.7002 2.19922 -5 5l-5 68.2998l5 105.6c0.299805 2.7998 2.2002 5 5 5zM158.3 261.4c2.7998 0 5.2998 -2.2002 5.2998 -5.30078l5.30078 -130
|
582 |
-
l-5.30078 -67.7998c0 -3.09961 -2.5 -5.2998 -5.2998 -5.2998c-3.09961 0 -5.2998 2.2002 -5.59961 5.2998l-4.40039 67.7998l4.40039 130c0.299805 3.10059 2.5 5.30078 5.59961 5.30078zM7.2002 164.8c1.39941 0 2.2002 -1.09961 2.5 -2.5l5.59961 -35.5996l-5.59961 -35
|
583 |
-
c-0.299805 -1.40039 -1.10059 -2.5 -2.5 -2.5c-1.40039 0 -2.2002 1.09961 -2.5 2.5l-4.7002 35l4.7002 35.5996c0.299805 1.40039 1.09961 2.5 2.5 2.5zM30.7998 186.7c1.40039 0 2.5 -1.10059 2.7998 -2.5l7.2002 -57.5l-7.2002 -56.4004
|
584 |
-
c-0.299805 -1.39941 -1.39941 -2.5 -2.7998 -2.5c-1.39941 0 -2.5 1.10059 -2.5 2.7998l-6.39941 56.1006l6.39941 57.5c0 1.39941 1.10059 2.5 2.5 2.5zM56.0996 198.1c1.7002 0 3.10059 -1.39941 3.10059 -3.2998l6.89941 -68.0996l-6.89941 -65.7998
|
585 |
-
c0 -1.7002 -1.40039 -3.10059 -3.10059 -3.10059c-1.59961 0 -3 1.40039 -3.2998 3.10059l-5.7998 65.7998l5.7998 68.0996c0.200195 1.90039 1.60059 3.2998 3.2998 3.2998zM81.4004 200.3c1.89941 0 3.59961 -1.39941 3.89941 -3.59961l6.40039 -70l-6.40039 -67.7998
|
586 |
-
c-0.299805 -2.2002 -2 -3.60059 -3.89941 -3.60059c-1.90039 0 -3.60059 1.40039 -3.60059 3.60059l-5.7998 67.7998l5.7998 70c0 2.2002 1.7002 3.59961 3.60059 3.59961zM322.8 311.2c2.5 -1.40039 4.10059 -4.2002 4.5 -7.2002l3.90039 -177.5l-3.90039 -64.2002
|
587 |
-
c0 -4.7002 -3.89941 -8.59961 -8.59961 -8.59961s-8.60059 3.89941 -8.90039 8.59961l-1.7002 31.7002l-1.69922 32.5l3.2998 176.7v0.799805c0.200195 2.5 1.39941 5 3.2998 6.7002c1.40039 1.09961 3.40039 1.89941 5.59961 1.89941
|
588 |
-
c1.40039 0 3.10059 -0.599609 4.2002 -1.39941zM296.1 295.9c2.2002 -1.40039 3.60059 -3.90039 3.90039 -6.7002l3.2998 -162.8l-3.09961 -58.6006l-0.299805 -6.7002c0 -2.2998 -0.800781 -4.19922 -2.5 -5.59961c-1.40039 -1.40039 -3.40039 -2.5 -5.60059 -2.5
|
589 |
-
c-2.5 0 -4.7002 1.2002 -6.39941 3.09961c-1.10059 1.40039 -1.7002 3 -1.7002 4.7002v0.299805c-3.10059 65.3008 -3.10059 65.6006 -3.10059 65.6006l2.80078 160.8l0.299805 1.7002c0 2.7998 1.39941 5.2998 3.59961 6.7002
|
590 |
-
c1.2998 0.799805 2.7998 1.39941 4.40039 1.39941c1.59961 0 3 -0.599609 4.39941 -1.39941zM184.7 273.4c3.39941 0 5.89941 -2.80078 6.09961 -6.10059l5 -140.6l-5 -67.2002c-0.299805 -3.2998 -2.7998 -5.7998 -6.09961 -5.7998c-3 0 -5.5 2.5 -5.7998 5.7998
|
591 |
-
l-4.40039 67.2002l4.40039 140.6c0 3.2998 2.69922 6.10059 5.7998 6.10059zM561.4 210.6c43.2998 0 78.5996 -35.2998 78.5 -78.8994c0 -43.2998 -35.3008 -78.2998 -78.6006 -78.2998h-218.3c-4.7002 0.599609 -8.59961 4.19922 -8.59961 9.19922v249.7
|
592 |
-
c0 4.7998 1.69922 7 7.7998 9.2002c15.2998 6.09961 32.5 9.40039 50.2998 9.40039c72.5 0 131.9 -55.6006 138.3 -126.4c9.5 3.90039 19.7998 6.09961 30.6006 6.09961zM264.7 270.9c4.2002 0 7.2002 -3.30078 7.5 -7.80078l3.89941 -136.699l-3.89941 -65.6006
|
593 |
-
c0 -4.2002 -3.2998 -7.5 -7.5 -7.5s-7.5 3.2998 -7.7998 7.5l-3.30078 65.6006l3.30078 136.699c0.299805 4.5 3.59961 7.80078 7.7998 7.80078zM211.1 278.7c3.60059 0 6.40039 -3.10059 6.7002 -6.7002l4.40039 -145.3l-4.40039 -66.9004
|
594 |
-
c-0.299805 -3.59961 -3.09961 -6.39941 -6.7002 -6.39941c-3.2998 0 -6.09961 2.7998 -6.39941 6.39941l-3.90039 66.9004l3.90039 145.3c0 3.59961 3.09961 6.7002 6.39941 6.7002zM237.8 275.3c3.90039 0 6.90039 -3 6.90039 -6.89941l4.2002 -141.7l-4.2002 -66.4004
|
595 |
-
c0 -3.7998 -3.10059 -6.89941 -6.90039 -6.89941s-6.59961 3 -6.89941 6.89941l-3.90039 66.4004l3.90039 141.7c0 3.7998 3 6.89941 6.89941 6.89941z" />
|
596 |
-
<glyph glyph-name="vine" unicode="" horiz-adv-x="384"
|
597 |
-
d="M384 193.3v-52.0996c-18.4004 -4.2002 -36.9004 -6.10059 -52.0996 -6.10059c-36.9004 -77.3994 -103 -143.8 -125.101 -156.199c-14 -7.90039 -27.0996 -8.40039 -42.7002 0.799805c-27.0996 16.2998 -129.899 100.6 -164.1 365.6h74.5
|
598 |
-
c18.7002 -159.1 64.5 -240.7 114.8 -301.8c27.9004 27.9004 54.7998 65.0996 75.6006 106.9c-49.8008 25.2998 -80.1006 80.8994 -80.1006 145.6c0 65.5996 37.7002 115.1 102.2 115.1c114.9 0 106.2 -127.899 81.5996 -181.5c0 0 -46.3994 -9.19922 -63.5 20.5
|
599 |
-
c3.40039 11.3008 8.2002 30.8008 8.2002 48.5c0 31.3008 -11.2998 46.6006 -28.3994 46.6006c-18.2002 0 -30.8008 -17.1006 -30.8008 -50c0.100586 -79.2002 59.4004 -118.7 129.9 -101.9z" />
|
600 |
-
<glyph glyph-name="codepen" unicode="" horiz-adv-x="512"
|
601 |
-
d="M502.285 288.296c6.00098 -3.99902 9.71484 -11.1426 9.71582 -18.2852v-155.999c0 -7.14258 -3.71484 -14.2871 -9.71484 -18.2861l-234 -156.021c-8.06055 -4.95996 -16.584 -4.91504 -24.5713 0l-234 156.021c-6.00098 4 -9.71484 11.1436 -9.71484 18.2861v155.999
|
602 |
-
c0 7.14258 3.71387 14.2861 9.71387 18.2852l234 156c8.06055 4.95996 16.584 4.91504 24.5713 0zM278 384.869v-102.572l95.4287 -63.7148l76.8574 51.4287zM234 384.869l-172.286 -114.858l76.8574 -51.4287l95.4287 63.7148v102.572zM44 228.868v-73.7139
|
603 |
-
l55.1426 36.8564zM234 -0.84668v102.571l-95.4287 63.7158l-76.8574 -51.4297zM256 140.011l77.7148 52l-77.7148 52l-77.7148 -52zM278 -0.84668l172.286 114.857l-76.8574 51.4297l-95.4287 -63.7158v-102.571zM468 155.154v73.7139l-55.1426 -36.8574z" />
|
604 |
-
<glyph glyph-name="jsfiddle" unicode="" horiz-adv-x="576"
|
605 |
-
d="M510.634 210.538c45.6885 -25.334 68.3721 -74.5605 56.832 -122.634c-12.1035 -50.4199 -55.5479 -86.6592 -108.212 -87.293c-84.0303 -1.01172 -168.079 -0.458984 -252.12 -0.480469c-30.3223 -0.00683594 -60.668 -0.492188 -90.959 0.539062
|
606 |
-
c-48.0938 1.63672 -91.7764 35.8643 -105.607 81.4326c-14.1289 46.5508 2.18945 94.623 41.9014 124.615c2.54688 1.92383 4.86914 6.52051 4.51465 9.54492c-3.74609 31.8604 7.14453 57.6709 32.6758 76.4082c26.2822 19.2881 55.2285 21.5879 85.3311 9.16699
|
607 |
-
c2.36621 -0.975586 4.63965 -2.17773 7.82422 -3.68555c16.5215 27.5332 38.1221 48.6523 65.4922 63.9023c92.8594 51.7402 210.954 8.31152 246.85 -91.6455c5.55762 -15.4766 6.74512 -32.6074 9.09668 -49.0947c0.716797 -5.02832 1.6543 -8.15527 6.38086 -10.7764z
|
608 |
-
M531.741 53.6582c39.3135 48.375 22.418 117.668 -35.1426 144.497c-7.43555 3.46582 -9.72559 7.74414 -9.84766 15.8936c-1.87012 125.129 -132.78 187.063 -230.24 132.697c-26.1133 -14.5674 -46.4492 -34.8955 -60.6709 -61.2939
|
609 |
-
c-7.59082 -14.0908 -11.9287 -7.97754 -22.1982 -2.52734c-24.6113 13.0635 -49.0469 12.6406 -72.0332 -3.08301c-21.9678 -15.0244 -31.9102 -36.6201 -26.4199 -62.9805c2.4082 -11.5703 -0.914062 -17.0635 -10.0967 -23.1367
|
610 |
-
c-38.1895 -25.2578 -53.0879 -74.8604 -34.1855 -116.105c18.4355 -40.2295 51.3135 -59.6631 95.1748 -59.9951c0.700195 -0.00488281 163.728 -0.545898 163.728 0.154297c56.8857 0 113.778 -0.551758 170.652 0.229492
|
611 |
-
c28.9375 0.397461 53.0498 13.2178 71.2803 35.6504zM443.952 134.157c-5.84863 -31.1572 -34.6221 -55.0967 -66.666 -55.0957c-16.9531 0.00195312 -32.0586 6.5459 -44.0791 17.7051c-27.6973 25.7139 -71.1406 74.9805 -95.9375 93.3877
|
612 |
-
c-20.0557 14.8877 -41.9893 12.333 -60.2715 -3.78223c-49.9961 -44.0713 15.8594 -121.775 67.0625 -77.1885c4.54883 3.95996 7.84082 9.54297 12.7441 12.8447c8.18457 5.50879 20.7666 0.883789 13.168 -10.6221c-17.3574 -26.2842 -49.3301 -38.1973 -78.8623 -29.3008
|
613 |
-
c-28.8975 8.70312 -48.8408 35.9678 -48.626 70.1787c1.22461 22.4844 12.3633 43.0596 35.4141 55.9648c22.5742 12.6377 46.3682 13.1455 66.9902 -2.47363c50.791 -38.4756 75.5781 -81.7451 107.296 -101.245c24.5586 -15.0996 54.2549 -7.36328 68.8232 17.5059
|
614 |
-
c28.8301 49.209 -34.5918 105.016 -78.8682 63.46c-3.98828 -3.74414 -6.91699 -8.93164 -11.4092 -11.7197c-10.9756 -6.81152 -17.333 4.1123 -12.8096 10.3525c20.7031 28.5537 50.4639 40.4404 83.2715 28.2139c31.4287 -11.7139 49.1074 -44.3662 42.7598 -78.1855z
|
615 |
-
" />
|
616 |
-
<glyph glyph-name="rebel" unicode="" horiz-adv-x="512"
|
617 |
-
d="M256.5 -56c-139.3 0 -247.5 116.2 -243.3 254.1c2.7998 79.2002 43.2002 152.2 116.5 200.4c0.299805 0 1.89941 0.599609 1.09961 -0.799805c-5.7998 -5.5 -111.3 -129.8 -14.0996 -226.4c49.7998 -49.5 90 -2.5 90 -2.5c38.5 50.1006 -0.600586 125.9 -0.600586 125.9
|
618 |
-
c-10 24.8994 -45.6992 40.0996 -45.6992 40.0996l28.7998 31.7998c24.3994 -10.5 43.2002 -38.6992 43.2002 -38.6992c0.799805 29.5996 -21.9004 61.3994 -21.9004 61.3994l44.5996 50.7002l44.3008 -50.0996c-20.5 -28.8008 -21.9004 -62.6006 -21.9004 -62.6006
|
619 |
-
c13.7998 23 43.5 39.2998 43.5 39.2998l28.5 -31.7998c-27.4004 -8.89941 -45.4004 -39.8994 -45.4004 -39.8994c-15.7998 -28.5 -27.0996 -89.4004 0.600586 -127.301c32.3994 -44.5996 87.7002 2.80078 87.7002 2.80078c102.699 91.8994 -10.5 225 -10.5 225
|
620 |
-
c-6.10059 5.5 0.799805 2.7998 0.799805 2.7998c50.0996 -36.5 114.6 -84.4004 116.2 -204.8c2 -145.601 -99.9004 -249.4 -242.4 -249.4z" />
|
621 |
-
<glyph glyph-name="empire" unicode="" horiz-adv-x="496"
|
622 |
-
d="M287.6 393.8c-10.7998 2.2002 -22.0996 3.2998 -33.5 3.60059v18.1992c78.1006 -2.19922 146.101 -44 184.601 -106.6l-15.7998 -9.09961c-6.10059 9.69922 -12.7002 18.7998 -20.2002 27.0996l-18 -15.5c-26 29.5996 -61.4004 50.7002 -101.9 58.4004zM53.4004 125.6
|
623 |
-
c3.89941 -10.7998 8.2998 -21.0996 13.5996 -31.0996l-15.7998 -9.09961c-17.1006 31.5996 -27.1006 68.0996 -27.1006 106.6s9.90039 75 27.1006 106.5l15.7998 -9.09961c-5.2998 -9.7002 -10 -20.2002 -13.5996 -31l22.6992 -7.7002
|
624 |
-
c-6.39941 -18.2998 -9.69922 -38.2002 -9.69922 -58.7002s3.59961 -40.4004 10 -58.7002zM213.1 14l-4.69922 -23.7998c10.7998 -1.90039 22.1992 -3.2998 33.5 -3.60059v-18.2998c-78.1006 2.2998 -146.4 44.2998 -184.9 106.601l16 9.39941
|
625 |
-
c5.7998 -9.7002 12.7002 -18.7998 20.2002 -27.3994l18 15.7998c26.0996 -29.6006 61.5 -50.7002 101.899 -58.7002zM93.2998 327.1c-7.5 -8.2998 -14.0996 -17.5 -20.0996 -27.1992l-15.7998 9.09961c38.5 62.5996 106.5 104.4 184.6 106.6v-18.1992
|
626 |
-
c-11.4004 -0.300781 -22.7002 -1.40039 -33.5 -3.60059l4.7002 -23.7998c-40.5 -7.7002 -75.9004 -28.7998 -101.9 -58.4004zM402.7 56.9004c7.5 8.59961 14.3994 17.6992 20.0996 27.3994l16.1006 -9.39941c-38.5 -62.3008 -106.801 -104.4 -184.9 -106.601v18.2998
|
627 |
-
c11.4004 0.300781 22.7002 1.7002 33.5 3.60059l-4.7002 23.7998c40.5 8 75.9004 29.0996 101.9 58.7002zM496 192c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248s248 -111 248 -248zM483.8 192c0 130.1 -105.7 235.8 -235.8 235.8
|
628 |
-
s-235.8 -105.7 -235.8 -235.8s105.7 -235.8 235.8 -235.8s235.8 105.7 235.8 235.8zM444.8 298.6c17.2002 -31.5996 27.1006 -68.0996 27.1006 -106.6s-9.90039 -75 -27.1006 -106.4l-15.7998 9.10059c5.2998 10 9.7002 20.2002 13.5996 31l-23 7.7002
|
629 |
-
c6.40039 18.2998 10 38.1992 10 58.6992s-3.2998 40.4004 -9.69922 58.7002l22.6992 7.7002c-3.59961 10.7998 -8.2998 21.2998 -13.5996 31zM261.8 120.9l13.2998 -66.7002c-8.59961 -1.7002 -17.6992 -2.7998 -27.0996 -2.7998s-18.5 1.09961 -27.0996 2.7998
|
630 |
-
l13.2998 66.7002c-16.2998 3.2998 -30.5 11.5996 -40.7002 23.5l-51.2002 -44.8008c-11.8994 13.6006 -21.2998 29.4004 -27.0996 46.8008l64.2002 22.0996c-2.5 7.40039 -3.90039 15.2002 -3.90039 23.5s1.40039 16 3.90039 23.5l-64.5 22.0996
|
631 |
-
c6.09961 17.5 15.5 33.2002 27.3994 46.8008l51.2002 -44.8008c10.2998 11.9004 24.4004 20.5 40.7002 23.8008l-13.2998 66.3994c8.59961 2 17.6992 2.7998 27.0996 2.7998s18.5 -0.899414 27.0996 -2.7998l-13.2998 -66.3994
|
632 |
-
c16.2998 -3.30078 30.5 -11.9004 40.7002 -23.8008l51.2002 44.8008c11.8994 -13.6006 21.2998 -29.4004 27.3994 -46.8008l-64.5 -22.0996c2.5 -7.40039 3.90039 -15.2002 3.90039 -23.5s-1.40039 -16 -3.90039 -23.5l64.2002 -22.0996
|
633 |
-
c-5.7998 -17.5 -15.2002 -33.2002 -27.0996 -46.8008l-51.2002 44.8008c-10.2998 -11.9004 -24.4004 -20.2002 -40.7002 -23.5z" />
|
634 |
-
<glyph glyph-name="git-square" unicode=""
|
635 |
-
d="M100.59 113.76c48.5703 -3.30957 58.9502 -2.10938 58.9502 -11.9395c0 -20 -65.5498 -20.0605 -65.5498 -1.52051c0.00976562 5.08984 3.29004 9.40039 6.59961 13.46zM128.54 230.4c30.96 0 31.7598 -44.4707 -0.75 -44.4707c-33 0 -31.54 44.4707 0.75 44.4707z
|
636 |
-
M448 368v-352c0 -26.4922 -21.5078 -48 -48 -48h-352c-26.4922 0 -48 21.5078 -48 48v352c0 26.4922 21.5078 48 48 48h352c26.4922 0 48 -21.5078 48 -48zM221 298.69c0 -14.4902 8.37988 -22.8809 22.8604 -22.8809c14.7393 0 23.1299 8.39062 23.1299 22.8809
|
637 |
-
c0 14.4893 -8.37012 22.3096 -23.1104 22.3096c-14.4795 0 -22.8799 -7.83984 -22.8799 -22.3096zM199.18 253h-49.5498c-25 6.5498 -81.5596 4.84961 -81.5596 -46.75c0 -18.7998 9.39941 -32 21.8496 -38.1104c-15.6895 -14.3701 -23.1201 -21.1396 -23.1201 -30.7393
|
638 |
-
c0 -6.87012 2.79004 -13.2207 11.1807 -16.7607c-8.90039 -8.39941 -14 -14.4795 -14 -25.9199c0.0195312 -20.0693 17.5498 -31.7197 63.5391 -31.7197c44.2207 0 69.8701 16.5098 69.8701 45.7305c0 36.6699 -28.2295 35.3193 -94.7695 39.3799l8.37988 13.4297
|
639 |
-
c17 -4.74023 74.1904 -6.23047 74.1904 42.4297c0 11.6904 -4.83008 19.8203 -9.40039 25.6699l23.3799 1.78027zM283.52 143.16l-13 1.78027c-3.81934 0.509766 -4.06934 1 -4.06934 5.08984v105.45h-52.6006l-2.79004 -20.5703c15.75 -5.5498 17 -4.86035 17 -10.1699
|
640 |
-
v-74.7402c0 -5.62012 -0.30957 -4.58008 -17 -6.87012v-20.0596h72.4209zM384 133l-6.87012 22.3701c-40.9297 -15.3701 -37.8496 12.4102 -37.8496 16.7295v60.7207h37.8496v25.4102h-35.8203c-2.86914 0 -2 -2.52051 -2 38.6299h-24.1797
|
641 |
-
c-2.79004 -27.7002 -11.6797 -38.8799 -34 -41.4199v-22.6201c20.4697 0 19.8203 0.849609 19.8203 -2.54004v-66.5703c0 -28.7197 11.4297 -40.9102 41.6699 -40.9102c14.4502 0 30.4502 4.83008 41.3799 10.2002z" />
|
642 |
-
<glyph glyph-name="git" unicode="" horiz-adv-x="512"
|
643 |
-
d="M216.29 289.61l0.0400391 -34.5508l-37.4102 -2.83984c7.27051 -9.35938 15 -22.3701 15 -41.0693c0 -77.8906 -91.4297 -75.4707 -118.7 -67.8906l-13.4297 -21.5498c106.47 -6.5 151.63 -4.33984 151.63 -63c0 -46.7598 -41.04 -73.1797 -111.79 -73.1797
|
644 |
-
c-73.5801 0 -101.63 18.71 -101.63 50.8193c0 18.3008 8.12988 28.04 22.4004 41.4502c-13.4199 5.66992 -17.8906 15.8105 -17.8906 26.8105c0 15.3594 11.9004 26.21 37 49.21c-20 9.76953 -35 30.9102 -35 61c0 82.5498 90.4902 85.2793 130.49 74.79h79.29z
|
645 |
-
M152.87 47.71c0 15.7402 -16.6104 13.8096 -94.3203 19.1104c-5.2998 -6.54004 -10.5693 -13.4004 -10.5693 -21.54c0 -29.6699 104.89 -29.6299 104.89 2.42969zM102.06 182.29c52.0205 0 50.7402 71.1602 1.2002 71.1602c-51.6602 0 -54 -71.1602 -1.2002 -71.1602z
|
646 |
-
M235.36 81.7803v32.0996c26.75 3.66016 27.2393 2 27.2393 11v119.51c0 8.5 -2.0498 7.37988 -27.2393 16.2607l4.46973 32.9199h84.1699v-168.71c0 -6.51074 0.400391 -7.32031 6.50977 -8.14062l20.7305 -2.83984v-32.0996h-115.88zM287.81 326.09
|
647 |
-
c-23.1699 0 -36.5898 13.4297 -36.5898 36.6104c0 23.1797 13.4199 35.7695 36.5898 35.7695c23.5801 0 37 -12.6201 37 -35.7695c0 -23.1504 -13.4199 -36.6104 -37 -36.6104zM512 97.54c-17.4902 -8.53027 -43.0996 -16.2598 -66.2803 -16.2598
|
648 |
-
c-48.3799 0 -66.6699 19.5 -66.6699 65.46v106.51c0 5.41992 1.0498 4.05957 -31.71 4.05957v36.1904c35.7803 4.07031 50 22 54.4697 66.2695h38.6309c0 -65.8291 -1.34082 -61.8096 3.25977 -61.8096h57.2998v-40.6504h-60.5596v-97.1494
|
649 |
-
c0 -6.91992 -4.9209 -51.4102 60.5693 -26.8398z" />
|
650 |
-
<glyph glyph-name="hacker-news" unicode=""
|
651 |
-
d="M0 416h448v-448h-448v448zM21.2002 218.8h-0.200195c0.0996094 0.100586 0.200195 0.299805 0.299805 0.400391c0 -0.100586 0 -0.299805 -0.0996094 -0.400391zM239.2 164.9l80.7998 155.1h-34.7998c-54.7998 -101.2 -48.2998 -98.5996 -60.6006 -125.6
|
652 |
-
c-10.0996 24.3994 -6.7998 27.2998 -59.2998 125.6h-37.2998l79.7998 -153.3v-102.7h31.4004v100.9z" />
|
653 |
-
<glyph glyph-name="tencent-weibo" unicode="" horiz-adv-x="384"
|
654 |
-
d="M72.2998 -47.7998c1.40039 -19.9004 -27.5996 -22.2002 -29.7002 -2.90039c-11.5996 129.9 31.1006 239.5 101.4 313.2c-15.5996 34 9.2002 77.0996 50.5996 77.0996c30.3008 0 55.1006 -24.5996 55.1006 -55.0996c0 -44 -49.5 -70.7998 -86.9004 -45.0996
|
655 |
-
c-65.7002 -71.3008 -101.399 -169.801 -90.5 -287.2zM192 447.9c92 0 166.6 -74.6006 166.6 -166.5c0 -102.301 -93.2998 -185.5 -204 -162.301c-19 4.7002 -12.5 33.2002 6.60059 29.1006c80.7998 -20.7998 167.7 42.2998 167.7 133.1c0 75.5 -61.5 136.9 -136.9 136.9
|
656 |
-
c-101 0 -168.3 -106.601 -122 -199.2c9 -17.9004 -17.5996 -30.7998 -26.2998 -13.4004c-56 108.101 22.3994 242.301 148.3 242.301z" />
|
657 |
-
<glyph glyph-name="qq" unicode=""
|
658 |
-
d="M433.754 27.5547c-11.5264 -1.39258 -44.8604 52.7412 -44.8604 52.7412c0 -31.3447 -16.1357 -72.2471 -51.0508 -101.786c16.8418 -5.19141 54.8428 -19.167 45.8037 -34.4209c-7.31641 -12.3428 -125.511 -7.88086 -159.633 -4.03711
|
659 |
-
c-34.1221 -3.84375 -152.315 -8.30566 -159.632 4.03711c-9.04492 15.25 28.918 29.2139 45.7832 34.415c-34.9199 29.5391 -51.0586 70.4453 -51.0586 101.792c0 0 -33.334 -54.1338 -44.8594 -52.7412c-5.37012 0.650391 -12.4238 29.6445 9.34668 99.7041
|
660 |
-
c10.2617 33.0244 21.9951 60.4785 40.1445 105.779c-3.05566 116.898 45.2441 214.956 160.262 214.962c113.737 -0.00585938 163.156 -96.1328 160.264 -214.963c18.1182 -45.2227 29.9121 -72.8506 40.1445 -105.778c21.7676 -70.0596 14.7158 -99.0527 9.3457 -99.7041z
|
661 |
-
" />
|
662 |
-
<glyph glyph-name="weixin" unicode="" horiz-adv-x="576"
|
663 |
-
d="M385.2 280.4c-92.4004 0 -165.4 -69.1006 -165.3 -154c0 -14.2002 2.19922 -27.9004 6.19922 -40.8008c-6.19922 -0.5 -12.0996 -0.799805 -18.2998 -0.799805c-24.3994 0 -43.7998 4.90039 -68.2002 9.7002l-68 -34.0996l19.3008 58.5996
|
664 |
-
c-48.6006 34.0996 -77.9004 78.2002 -77.9004 131.6c0 92.6006 87.5 165.4 194.7 165.4c95.5996 0 179.7 -58.2998 196.3 -136.7c-6.2002 0.799805 -12.4004 1.10059 -18.7998 1.10059zM280.7 333.3c-14.7002 0 -29.2002 -9.7002 -29.2998 -24.3994
|
665 |
-
c0 -14.5 14.5 -24.2002 29.2998 -24.2002c14.5 0 24.2002 9.7002 24.2002 24.2002c0 14.6992 -9.7002 24.3994 -24.2002 24.3994zM144.3 284.7c14.7998 0 24.4004 9.59961 24.4004 24.2002c0 14.6992 -9.60059 24.3994 -24.4004 24.3994
|
666 |
-
c-14.5 0 -29.2998 -9.59961 -29.2998 -24.3994c0 -14.5 14.7998 -24.2002 29.2998 -24.2002zM563 128.6c0 -43.7998 -29 -82.6992 -68.2002 -112.1l14.7998 -48.5996l-53.3994 29.2998c-19.7002 -4.7998 -39.2998 -9.90039 -58.6006 -9.90039
|
667 |
-
c-92.5996 0 -165.399 63.4004 -165.399 141.3c0 77.9004 72.7002 141.301 165.399 141.301c87.5 0 165.4 -63.4004 165.4 -141.301zM343.9 153.1c14.6992 0 24.3994 9.60059 24.3994 19.6006c0 9.59961 -9.59961 19.2998 -24.3994 19.2998
|
668 |
-
c-9.60059 0 -19.3008 -9.59961 -19.3008 -19.2998c0 -9.90039 9.60059 -19.6006 19.3008 -19.6006zM451 153.1c14.5 0 24.5 9.60059 24.4004 19.6006c0 9.59961 -9.90039 19.2998 -24.4004 19.2998c-9.59961 0 -19.2998 -9.59961 -19.2998 -19.2998
|
669 |
-
c0 -9.90039 9.59961 -19.6006 19.2998 -19.6006z" />
|
670 |
-
<glyph glyph-name="slideshare" unicode="" horiz-adv-x="512"
|
671 |
-
d="M187.7 294.3c34 0 61.7002 -25.7002 61.7002 -57.7002c0 -31.6992 -27.7002 -57.6992 -61.7002 -57.6992s-61.7002 26 -61.7002 57.6992c0 32 27.7002 57.7002 61.7002 57.7002zM331.1 294.3c34.3008 0 61.8008 -25.7002 61.7002 -57.7002
|
672 |
-
c0 -31.6992 -27.3994 -57.6992 -61.7002 -57.6992c-34 0 -61.6992 26 -61.6992 57.6992c0 32 27.6992 57.7002 61.6992 57.7002zM487.7 204.3c15.2002 10.5 25.2002 -4 16.0996 -17.7998c-18.2998 -22.5996 -53.2002 -50.2998 -106.3 -72
|
673 |
-
c56.2998 -191.7 -137.4 -222.3 -134.3 -124c0 0.700195 -0.299805 53.7998 -0.299805 93.5c-4.30078 0.799805 -8.60059 2 -13.7002 3.09961c0 -40 -0.299805 -95.8994 -0.299805 -96.5996c3.09961 -98.2002 -190.601 -67.5996 -134.301 124.1
|
674 |
-
c-53.1992 21.7002 -88 49.4004 -106.3 72c-9.09961 13.7002 0.900391 28.3008 16 17.7002c2 -1.39941 4.2998 -2.89941 6.2998 -4.2998v198.3c0 27.4004 20.6006 49.7002 46 49.7002h359.101c25.3994 0 46 -22.2998 46 -49.7002v-198.3zM457.2 185.1h0.0996094v190.601
|
675 |
-
c0 32.7998 -10.5996 45.7002 -40.8994 45.7002h-317.7c-31.7002 0 -40.6006 -10.8008 -40.6006 -45.7002v-192.4c67.7002 -35.3994 125.7 -29.0996 157.4 -28c13.4004 0.299805 22 -2.2998 27.0996 -7.7002c1.7002 -1.59961 10 -9.39941 20.3008 -17.0996
|
676 |
-
c1.09961 15.7998 10 25.7998 33.6992 24.9004c32.3008 -1.40039 91.7002 -7.7002 160.601 29.6992z" />
|
677 |
-
<glyph glyph-name="twitch" unicode="" horiz-adv-x="512"
|
678 |
-
d="M391.17 344.53v-109.7h-38.6299v109.7h38.6299zM285 345v-109.75h-38.6299v109.75h38.6299zM120.83 448h366.86v-256l-173.771 -164.58h-77.25l-96.5303 -91.4199v91.4199h-115.83v329.16zM449.07 210.25v201.17h-308.931v-274.29h86.8701v-64l67.6006 64h77.2393z" />
|
679 |
-
<glyph glyph-name="yelp" unicode="" horiz-adv-x="384"
|
680 |
-
d="M42.9004 207.68l99.6191 -48.6094c19.2002 -9.40039 16.2002 -37.5107 -4.5 -42.71l-107.52 -26.8105c-1.78223 -0.448242 -3.64746 -0.685547 -5.56738 -0.685547c-11.7246 0 -21.3848 8.89453 -22.6426 20.2861c-0.853516 7.44141 -1.29297 15.0078 -1.29297 22.6768
|
681 |
-
c0 21.9561 3.65723 42.9111 10.293 62.6426c3.03906 9.02148 11.5723 15.5264 21.6133 15.5264c3.5791 0 6.98145 -0.84375 9.99707 -2.31641zM86.9004 -31.5703c-6.01172 4.1123 -9.9248 11.0195 -9.9248 18.8457c0 5.85742 2.21191 11.2021 5.84473 15.2441l74.21 82.4004
|
682 |
-
c14.3096 15.8105 40.5098 5.2002 39.8096 -16.0996l-3.89941 -110.82c-0.414062 -12.21 -10.4365 -22.0088 -22.7461 -22.0088c-1.32129 0 -2.61523 0.112305 -3.87402 0.329102c-28.9365 4.90039 -56.1416 16.1621 -79.4199 32.1094zM232.24 78.3496
|
683 |
-
c-11.2998 18.1104 6.2002 40.4102 26.5098 33.9102l105.42 -34.2598c9.14453 -3.04102 15.7305 -11.6855 15.7305 -21.8447c0 -3.46289 -0.767578 -6.74805 -2.14062 -9.69531c-12.5361 -26.3281 -30.4697 -49.2246 -52.71 -67.6104
|
684 |
-
c-3.96191 -3.26465 -9.03809 -5.25781 -14.5674 -5.25781c-8.18555 0 -15.375 4.29785 -19.4326 10.7578zM380.57 210.58c1.21289 -2.79883 1.93359 -5.89941 1.93359 -9.1416c0 -10.4385 -6.96875 -19.2627 -16.5039 -22.0684l-106.64 -30.5098
|
685 |
-
c-20.5 -5.90039 -37.1006 17.0098 -25.2002 34.71l62 91.9199c4.10742 6.08398 11.0635 10.0615 18.9502 10.0615c5.76172 0 11.0283 -2.1377 15.0498 -5.66211c21.5781 -19.0479 38.7783 -42.5518 50.4102 -69.3096zM62.1104 417.82
|
686 |
-
c34.3301 16.3438 72.6104 26.9434 112.33 30.0996c0.610352 0.0498047 1.20703 0.078125 1.83008 0.078125c12.5127 0 22.6709 -10.1582 22.6709 -22.6699c0 -0.0693359 -0.000976562 -0.138672 -0.000976562 -0.208008v-208.34
|
687 |
-
c0 -23.2998 -30.9102 -31.6006 -42.6104 -11.4004l-104.12 180.44c-1.92871 3.35059 -3.06738 7.24805 -3.06738 11.3887c0 9.07422 5.29883 16.9199 12.9678 20.6113z" />
|
688 |
-
<glyph glyph-name="paypal" unicode="" horiz-adv-x="384"
|
689 |
-
d="M111.4 152.1c-3.5 -19.1992 -17.4004 -108.699 -21.5 -134c-0.300781 -1.7998 -1 -2.5 -3 -2.5h-74.6006c-7.59961 0 -13.0996 6.60059 -12.0996 13.9004l58.5996 371.9c1.5 9.59961 10.1006 16.8994 20 16.8994c152.3 0 165.101 3.7002 204 -11.3994
|
690 |
-
c60.1006 -23.3008 65.6006 -79.5 44 -140.301c-21.5 -62.5996 -72.5 -89.5 -140.1 -90.2998c-43.4004 -0.700195 -69.5 7 -75.2998 -24.2002zM357.1 296c28.4004 -21.2002 30.3008 -57.7998 23.8008 -92.5996c-16.5 -83.5 -71.9004 -112.301 -142.9 -112.301
|
691 |
-
c-15 0 -24.7002 2.30078 -29.2998 -19.6992c-15.5 -97.4004 -13.7002 -85.9004 -14.4004 -91.3008c-1.7002 -8.59961 -8.7998 -14.8994 -17.3994 -14.8994h-63.5c-7.10059 0 -11.6006 5.7998 -10.6006 12.8994c0 0 4.5 29.3008 27.1006 169.7
|
692 |
-
c0.799805 6.10059 4.7998 9.40039 10.8994 9.40039c54 0 164.601 -9.90039 204.5 103.899c3.7002 11.1006 6.7998 22.2002 8.7998 33.6006c0.5 3.09961 1.2002 2.59961 3 1.2998z" />
|
693 |
-
<glyph glyph-name="google-wallet" unicode=""
|
694 |
-
d="M156.8 321.2c37.6006 -60.6006 64.2002 -113.101 84.2998 -162.5c-8.2998 -33.7998 -18.7998 -66.5 -31.2998 -98.2998c-13.2002 52.2998 -26.5 101.3 -56 148.5c6.5 36.3994 2.2998 73.5996 3 112.3zM109.3 248c5 0 10 -2.5 13 -6.5
|
695 |
-
c43.7998 -59.7998 66.2998 -123.8 82.5 -193.5h-103.5c-20 69.5 -49.5 133 -91.7002 187.3c-4 5.2002 0 12.7002 6.5 12.7002h93.2002zM157.1 336h108.7c74.7998 -103 131.2 -230 143.2 -368h-113.7c-8.2002 133.5 -69.7002 260 -138.2 368zM408.9 404.5
|
696 |
-
c19 -67.5 31.0996 -139 31.0996 -212.6c0 -69.5 -9.5 -142.5 -25.2998 -203c-10.9004 92.5 -42.4004 184.6 -90.6006 270.8c-4.19922 50.5 -13.2998 99.5 -26.5 146c-1.19922 5.2998 2.5 10.2998 7.80078 10.2998h88.2998c7 0 13.3994 -4.7002 15.2002 -11.5z" />
|
697 |
-
<glyph glyph-name="cc-visa" unicode="" horiz-adv-x="576"
|
698 |
-
d="M470.1 216.7c0 0 7.60059 -37.2002 9.30078 -45h-33.4004c3.2998 8.89941 16 43.5 16 43.5c-0.200195 -0.299805 3.2998 9.09961 5.2998 14.8994zM576 368v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h480
|
699 |
-
c26.5 0 48 -21.5 48 -48zM152.5 116.8l63.2002 155.2h-42.5l-39.2998 -106l-4.30078 21.5l-14 71.4004c-2.2998 9.89941 -9.39941 12.6992 -18.1992 13.0996h-64.7002l-0.700195 -3.09961c15.7998 -4 29.9004 -9.80078 42.2002 -17.1006l35.7998 -135h42.5zM246.9 116.6
|
700 |
-
l25.1992 155.4h-40.1992l-25.1006 -155.4h40.1006zM386.8 167.4c0.200195 17.6992 -10.5996 31.1992 -33.7002 42.2998c-14.0996 7.09961 -22.6992 11.8994 -22.6992 19.2002c0.199219 6.59961 7.2998 13.3994 23.0996 13.3994
|
701 |
-
c13.0996 0.299805 22.7002 -2.7998 29.9004 -5.89941l3.59961 -1.7002l5.5 33.5996c-7.90039 3.10059 -20.5 6.60059 -36 6.60059c-39.7002 0 -67.5996 -21.2002 -67.7998 -51.4004c-0.299805 -22.2998 20 -34.7002 35.2002 -42.2002
|
702 |
-
c15.5 -7.59961 20.7998 -12.5996 20.7998 -19.2998c-0.200195 -10.4004 -12.6006 -15.2002 -24.1006 -15.2002c-16 0 -24.5996 2.5 -37.6992 8.2998l-5.30078 2.5l-5.59961 -34.8994c9.40039 -4.2998 26.7998 -8.10059 44.7998 -8.2998
|
703 |
-
c42.2002 -0.100586 69.7002 20.7998 70 53zM528 116.6l-32.4004 155.4h-31.0996c-9.59961 0 -16.9004 -2.7998 -21 -12.9004l-59.7002 -142.5h42.2002s6.90039 19.2002 8.40039 23.3008h51.5996c1.2002 -5.5 4.7998 -23.3008 4.7998 -23.3008h37.2002z" />
|
704 |
-
<glyph glyph-name="cc-mastercard" unicode="" horiz-adv-x="576"
|
705 |
-
d="M482.9 37.7002c0 -6.7998 -4.60059 -11.7002 -11.2002 -11.7002c-6.7998 0 -11.2002 5.2002 -11.2002 11.7002s4.40039 11.7002 11.2002 11.7002c6.59961 0 11.2002 -5.2002 11.2002 -11.7002zM172.1 49.4004c6.5 0 10.8008 -5.2002 10.9004 -11.7002
|
706 |
-
c0 -6.7998 -4.40039 -11.7002 -10.9004 -11.7002c-7.09961 0 -11.1992 5.2002 -11.1992 11.7002s4.09961 11.7002 11.1992 11.7002zM289.6 49.7002c5.2002 0 8.7002 -3 9.60059 -8.7002h-19.1006c0.800781 5.2002 4.10059 8.7002 9.5 8.7002zM397.4 49.4004
|
707 |
-
c6.7998 0 11.1992 -5.2002 11.1992 -11.7002c0 -6.7998 -4.39941 -11.7002 -11.1992 -11.7002c-6.80078 0 -10.9004 5.2002 -10.9004 11.7002s4.09961 11.7002 10.9004 11.7002zM503.3 23.2998c0 -0.299805 0.299805 -0.5 0.299805 -1.09961
|
708 |
-
c0 -0.299805 -0.299805 -0.5 -0.299805 -1.10059c-0.299805 -0.299805 -0.299805 -0.5 -0.5 -0.799805c-0.299805 -0.299805 -0.5 -0.5 -1.09961 -0.5c-0.299805 -0.299805 -0.5 -0.299805 -1.10059 -0.299805c-0.299805 0 -0.5 0 -1.09961 0.299805
|
709 |
-
c-0.299805 0 -0.5 0.299805 -0.799805 0.5c-0.299805 0.299805 -0.5 0.5 -0.5 0.799805c-0.299805 0.5 -0.299805 0.800781 -0.299805 1.10059c0 0.5 0 0.799805 0.299805 1.09961c0 0.5 0.299805 0.799805 0.5 1.10059c0.299805 0.299805 0.5 0.299805 0.799805 0.5
|
710 |
-
c0.5 0.299805 0.799805 0.299805 1.09961 0.299805c0.5 0 0.800781 0 1.10059 -0.299805c0.5 -0.300781 0.799805 -0.300781 1.09961 -0.5c0.299805 -0.200195 0.200195 -0.600586 0.5 -1.10059zM501.1 21.9004c0.5 0 0.5 0.299805 0.800781 0.299805
|
711 |
-
c0.299805 0.299805 0.299805 0.5 0.299805 0.799805s0 0.5 -0.299805 0.799805c-0.300781 0 -0.5 0.299805 -1.10059 0.299805h-1.59961v-3.5h0.799805v1.40039h0.299805l1.10059 -1.40039h0.799805zM576 367v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48
|
712 |
-
v352c0 26.5 21.5 48 48 48h480c26.5 0 48 -21.5 48 -48zM64 227.4c0 -76.5 62.0996 -138.5 138.5 -138.5c27.2002 0 53.9004 8.19922 76.5 23.0996c-72.9004 59.2998 -72.4004 171.2 0 230.5c-22.5996 15 -49.2998 23.0996 -76.5 23.0996
|
713 |
-
c-76.4004 0.100586 -138.5 -62 -138.5 -138.199zM288 118.6c70.5 55 70.2002 162.2 0 217.5c-70.2002 -55.2998 -70.5 -162.6 0 -217.5zM145.7 42.2998c0 8.7002 -5.7002 14.4004 -14.7002 14.7002c-4.59961 0 -9.5 -1.40039 -12.7998 -6.5
|
714 |
-
c-2.40039 4.09961 -6.5 6.5 -12.2002 6.5c-3.7998 0 -7.59961 -1.40039 -10.5996 -5.40039v4.40039h-8.2002v-36.7002h8.2002c0 18.9004 -2.5 30.2002 9 30.2002c10.1992 0 8.19922 -10.2002 8.19922 -30.2002h7.90039c0 18.2998 -2.5 30.2002 9 30.2002
|
715 |
-
c10.2002 0 8.2002 -10 8.2002 -30.2002h8.2002v23h-0.200195zM190.6 56h-7.89941v-4.40039c-2.7002 3.30078 -6.5 5.40039 -11.7002 5.40039c-10.2998 0 -18.2002 -8.2002 -18.2002 -19.2998c0 -11.2002 7.90039 -19.2998 18.2002 -19.2998
|
716 |
-
c5.2002 0 9 1.89941 11.7002 5.39941v-4.59961h7.89941v36.7998zM231.1 30.4004c0 15 -22.8994 8.19922 -22.8994 15.1992c0 5.7002 11.8994 4.80078 18.5 1.10059l3.2998 6.5c-9.40039 6.09961 -30.2002 6 -30.2002 -8.2002c0 -14.2998 22.9004 -8.2998 22.9004 -15
|
717 |
-
c0 -6.2998 -13.5 -5.7998 -20.7002 -0.799805l-3.5 -6.2998c11.2002 -7.60059 32.5996 -6 32.5996 7.5zM266.5 21.0996l-2.2002 6.80078c-3.7998 -2.10059 -12.2002 -4.40039 -12.2002 4.09961v16.5996h13.1006v7.40039h-13.1006v11.2002h-8.19922v-11.2002h-7.60059
|
718 |
-
v-7.2998h7.60059v-16.7002c0 -17.5996 17.2998 -14.4004 22.5996 -10.9004zM279.8 34.5h27.5c0 16.2002 -7.39941 22.5996 -17.3994 22.5996c-10.6006 0 -18.2002 -7.89941 -18.2002 -19.2998c0 -20.5 22.5996 -23.8994 33.7998 -14.2002l-3.7998 6
|
719 |
-
c-7.7998 -6.39941 -19.6006 -5.7998 -21.9004 4.90039zM338.9 56c-4.60059 2 -11.6006 1.7998 -15.2002 -4.40039v4.40039h-8.2002v-36.7002h8.2002v20.7002c0 11.5996 9.5 10.0996 12.7998 8.40039zM349.5 37.7002c0 11.3994 11.5996 15.0996 20.7002 8.39941l3.7998 6.5
|
720 |
-
c-11.5996 9.10059 -32.7002 4.10059 -32.7002 -15c0 -19.7998 22.4004 -23.7998 32.7002 -15l-3.7998 6.5c-9.2002 -6.5 -20.7002 -2.59961 -20.7002 8.60059zM416.2 56h-8.2002v-4.40039c-8.2998 11 -29.9004 4.80078 -29.9004 -13.8994
|
721 |
-
c0 -19.2002 22.4004 -24.7002 29.9004 -13.9004v-4.59961h8.2002v36.7998zM449.9 56c-2.40039 1.2002 -11 2.90039 -15.2002 -4.40039v4.40039h-7.90039v-36.7002h7.90039v20.7002c0 11 9 10.2998 12.7998 8.40039zM490.2 70.9004h-7.90039v-19.3008
|
722 |
-
c-8.2002 10.9004 -29.8994 5.10059 -29.8994 -13.8994c0 -19.4004 22.5 -24.6006 29.8994 -13.9004v-4.59961h7.90039v51.7002zM497.8 146v-4.59961h0.799805v4.59961h1.90039v0.799805h-4.59961v-0.799805h1.89941zM504.4 22.2002c0 0.5 0 1.09961 -0.300781 1.59961
|
723 |
-
c-0.299805 0.299805 -0.5 0.799805 -0.799805 1.10059c-0.299805 0.299805 -0.799805 0.5 -1.09961 0.799805c-0.5 0 -1.10059 0.299805 -1.60059 0.299805c-0.299805 0 -0.799805 -0.299805 -1.39941 -0.299805c-0.5 -0.299805 -0.799805 -0.5 -1.10059 -0.799805
|
724 |
-
c-0.5 -0.300781 -0.799805 -0.800781 -0.799805 -1.10059c-0.299805 -0.5 -0.299805 -1.09961 -0.299805 -1.59961c0 -0.299805 0 -0.799805 0.299805 -1.40039c0 -0.299805 0.299805 -0.799805 0.799805 -1.09961c0.300781 -0.299805 0.5 -0.5 1.10059 -0.799805
|
725 |
-
c0.5 -0.300781 1.09961 -0.300781 1.39941 -0.300781c0.5 0 1.10059 0 1.60059 0.300781c0.299805 0.299805 0.799805 0.5 1.09961 0.799805s0.5 0.799805 0.799805 1.09961c0.300781 0.600586 0.300781 1.10059 0.300781 1.40039zM507.6 146.9h-1.39941l-1.60059 -3.5
|
726 |
-
l-1.59961 3.5h-1.40039v-5.40039h0.800781v4.09961l1.59961 -3.5h1.09961l1.40039 3.5v-4.09961h1.09961v5.40039zM512 227.4c0 76.1992 -62.0996 138.3 -138.5 138.3c-27.2002 0 -53.9004 -8.2002 -76.5 -23.1006c72.0996 -59.2998 73.2002 -171.5 0 -230.5
|
727 |
-
c22.5996 -15 49.5 -23.0996 76.5 -23.0996c76.4004 -0.0996094 138.5 61.9004 138.5 138.4z" />
|
728 |
-
<glyph glyph-name="cc-discover" unicode="" horiz-adv-x="576"
|
729 |
-
d="M520.4 251.9c0 -8.40039 -5.5 -12.8008 -15.8008 -12.8008h-4.69922v24.9004h4.89941c10.1006 0 15.6006 -4.2002 15.6006 -12.0996zM528 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h480z
|
730 |
-
M483.9 277.1v-82h16v32.8008h2.19922l22.2002 -32.8008h19.6006l-25.8008 34.4004c12.1006 2.5 18.7002 10.5996 18.7002 23.2002c0 28.5 -30.2998 24.3994 -52.8994 24.3994zM428 277v-82h45.2998v13.7998h-29.2998v22.2002h28.2998v13.7998h-28.2998v18.2002h29.2998v14
|
731 |
-
h-45.2998zM359.3 277h-17.5l35 -84.2002h8.60059l35.5 84.2002h-17.5l-22.2002 -55.2002zM303.4 280c-24.6006 0 -44.6006 -19.9004 -44.6006 -44.5996c0 -24.6006 19.9004 -44.6006 44.6006 -44.6006c24.5996 0 44.5996 19.9004 44.5996 44.6006
|
732 |
-
c0 24.5996 -19.9004 44.5996 -44.5996 44.5996zM254.1 273.9c-30.1992 15 -63.2998 -6.80078 -63.2998 -38c0 -32.5 33.6006 -52.5 63.2998 -38.2002v19c-19.2998 -19.2998 -46.7998 -5.7998 -46.7998 19.2002c0 23.6992 26.7002 39.0996 46.7998 19v19zM156.9 207.6
|
733 |
-
c-7.60059 0 -13.8008 3.7002 -17.5 10.8008l-10.3008 -9.90039c17.8008 -26.0996 56.6006 -18.2002 56.6006 11.2998c0 13.1006 -5.40039 19 -23.6006 25.6006c-9.59961 3.39941 -12.2998 5.89941 -12.2998 10.2998c0 8.7002 14.5 14.0996 24.9004 2.5l8.39941 10.7998
|
734 |
-
c-19.0996 17.0996 -49.6992 8.90039 -49.6992 -14.2998c0 -11.2998 5.19922 -17.2002 20.1992 -22.7002c25.7002 -9.09961 14.7002 -24.4004 3.30078 -24.4004zM55.4004 195c30.8994 0 44.0996 22.4004 44.0996 40.9004c0 24.0996 -18 41.0996 -44.0996 41.0996h-23.4004
|
735 |
-
v-82h23.4004zM122.9 195v82h-16v-82h16zM544 15v145c-33.2998 -20.7998 -226.4 -124.4 -416 -160h401c8.2002 0 15 6.7998 15 15zM74.0996 256.4c5.7002 -5 8.90039 -12.6006 8.90039 -20.5c0 -7.90039 -3.2002 -15.5 -8.90039 -20.7002
|
736 |
-
c-4.89941 -4.40039 -11.5996 -6.40039 -21.8994 -6.40039h-4.2002v54.2002h4.2002c10.2998 0 16.7002 -1.7002 21.8994 -6.59961z" />
|
737 |
-
<glyph glyph-name="cc-amex" unicode="" horiz-adv-x="576"
|
738 |
-
d="M325.1 280.2c0.100586 -8 -4.2998 -15.7002 -11.6992 -18.7002c9.5 -3.2998 11 -9.2002 11 -18.4004v-13.5h-16.6006c-0.299805 14.8008 3.60059 25.1006 -14.7998 25.1006h-18v-25.1006h-16.4004v69.3008l39.1006 -0.300781c13.2998 0 27.3994 -2 27.3994 -18.3994z
|
739 |
-
M295.7 268.9c5.7002 0 11 1.2998 11 7.89941c0 6.40039 -5.60059 7.40039 -10.7002 7.40039h-21v-15.2998h20.7002zM279 179.4c15.5996 0 27.9004 -5.40039 27.9004 -22.7002c0 -27.9004 -30.4004 -23.2998 -49.3008 -23.2998l-0.0996094 -23.3008h-32.2002l-20.3994 23
|
740 |
-
l-21.3008 -23h-65.3994l0.0996094 69.3008h66.5l20.5 -22.8008l21 22.8008h52.7002zM175.2 124.7l19 20.2002l-17.9004 20.1992h-41.7002v-12.5h36.3008v-14.0996h-36.3008v-13.7998h40.6006zM241 116.5v55.5l-25.2998 -27.4004zM278.8 147.5
|
741 |
-
c5.90039 0 10.5 2.7998 10.5 9.2002c0 6.09961 -4.59961 8.39941 -10.2002 8.39941h-21.5v-17.5996h21.2002zM247.2 284.2h-38.9004v-12.5h37.7998v-14.1006h-37.7998v-13.7998h38.9004v-14.2998h-55.5v69.2998h55.5v-14.5996zM576 192.6h-0.200195h0.200195zM381.4 160.7
|
742 |
-
c-0.100586 -7.60059 -4.2002 -15.2998 -11.9004 -18.4004c9.2002 -3.2998 11 -9.5 11 -18.3994l-0.0996094 -13.8008h-16.6006l0.100586 11.5c0 11.8008 -3.80078 13.8008 -14.8008 13.8008h-17.5996l-0.0996094 -25.3008h-16.6006l0.100586 69.3008h39.3994
|
743 |
-
c13 0 27.1006 -2.30078 27.1006 -18.7002zM352.2 149.5c5.59961 0 11 1.2998 11 8.2002c0 6.39941 -5.60059 7.39941 -10.7002 7.39941h-21v-15.5996h20.7002zM179.4 229.5h-16.8008v54.2002l-24 -54.2002h-14.5996l-24 54.2002v-54.2002h-33.7998l-6.40039 15.2998h-34.5
|
744 |
-
l-6.39941 -15.2998h-17.9004l29.7002 69.2998h24.5l28.0996 -65.7002v65.7002h27.1006l21.6992 -47l19.7002 47h27.6006v-69.2998zM31.2002 259.2h22.7002l-11.5 27.5996zM508.6 100.3c34.8008 0 54.8008 -2.2002 67.5 6.10059v-90.4004c0 -26.5 -21.5 -48 -48 -48h-480.1
|
745 |
-
c-26.5 0 -48 21.5 -48 48v203.7h26.5996c4.2002 10.0996 2.2002 5.2998 6.40039 15.2998h19.2002c4.2002 -10 2.2002 -5.2002 6.39941 -15.2998h52.9004v11.3994c2.2002 -5 1.09961 -2.5 5.09961 -11.3994h29.5c2.40039 5.5 2.60059 5.7998 5.10059 11.3994v-11.3994h135.5
|
746 |
-
v25.0996c6.39941 0 8 0.100586 9.7998 -0.200195c0 0 -0.200195 -10.8994 0.0996094 -24.7998h66.5v8.90039c7.40039 -5.90039 17.4004 -8.90039 29.7002 -8.90039h26.7998c4.2002 10.1006 2.2002 5.2998 6.40039 15.2998h19c6.5 -15 0.200195 -0.5 6.59961 -15.2998
|
747 |
-
h52.8008v21.9004c11.7998 -19.7002 7.7998 -12.9004 13.1992 -21.9004h41.6006v92h-39.9004v-18.3994c-12.2002 20.1992 -6.2998 10.3994 -11.2002 18.3994h-43.2998v-20.5996c-6.2002 14.5996 -4.59961 10.7998 -8.7998 20.5996h-32.4004
|
748 |
-
c-0.399414 0 -2.2998 -0.200195 -2.2998 0.299805h-27.5996c-12.7998 0 -23.1006 -3.19922 -30.7002 -9.2998v9.2998h-39.9004v-5.2998c-10.7998 6.10059 -20.6992 5.10059 -64.3994 5.2998c-0.100586 0 -11.6006 0.100586 -11.6006 0h-103
|
749 |
-
c-2.5 -6.09961 -6.7998 -16.3994 -12.5996 -30c-2.7998 6 -11 23.8008 -13.9004 30h-46v-21.0996c-7.39941 17.4004 -4.69922 11 -9 21.0996h-39.6992c-3.40039 -7.89941 -13.7002 -32 -23.1006 -53.8994v109.8c0 26.5 21.5 48 48 48h480c26.5 0 48 -21.5 48 -48v-175.4
|
750 |
-
c-37.7002 0.200195 -44 0.900391 -54.2998 -5v5c-45.2998 0 -53.5 1.7002 -64.9004 -5.19922v5.19922h-78.1992v-5.09961c-11.4004 6.5 -21.4004 5.09961 -75.7002 5.09961v-5.59961c-6.2998 3.7002 -14.5 5.59961 -24.2998 5.59961h-58
|
751 |
-
c-3.5 -3.7998 -12.5 -13.6992 -15.7002 -17.1992c-12.7002 14.0996 -10.5 11.5996 -15.5 17.1992h-83.1006v-92.2998h82c3.30078 3.5 12.9004 13.9004 16.1006 17.4004c12.7002 -14.2998 10.2998 -11.7002 15.3994 -17.4004h48.9004
|
752 |
-
c0 14.7002 0.0996094 8.2998 0.0996094 23c11.5 -0.200195 24.3008 0.200195 34.3008 6.2002c0 -13.9004 -0.100586 -17.0996 -0.100586 -29.2002h39.6006c0 18.5 0.0996094 7.40039 0.0996094 25.2998c6.2002 0 7.7002 0 9.40039 -0.0996094
|
753 |
-
c0.0996094 -1.2998 0 0 0 -25.2002c152.8 0 145.899 -1.09961 156.699 4.5v-4.5zM544.9 164.8c-4.60059 0 -9.2002 -0.700195 -9.2002 -6.5c0 -12.2002 28.7998 0.299805 39.2998 -13.5v-25.7998c-4.90039 -7.09961 -14.0996 -8.90039 -22.5 -8.90039h-32l0.0996094 14.8008
|
754 |
-
h32c4.10059 0 8.40039 1.2998 8.40039 6.39941c0 14.6006 -42.7002 -5.59961 -42.7002 27.4004c0 14.0996 11 20.7002 23.7998 20.7002h32.9004v-14.6006h-30.0996zM487.9 125c4.09961 0 8.69922 1 8.7998 6.40039c0 14.8994 -42.7002 -5.60059 -42.7002 27.3994
|
755 |
-
c0 14.1006 10.7002 20.7002 23.5 20.7002h33.2002v-14.5996h-30.4004c-4.2998 0 -9.2002 -0.800781 -9.2002 -6.40039c0 -15.0996 42.9004 6.90039 42.9004 -26.2998c0 -16.4004 -11.4004 -22 -26.2002 -22h-32.2002l0.100586 14.7998h32.2002zM445.7 165.1h-38.5v-12.5
|
756 |
-
h37.7998v-14.0996h-37.9004v-13.7998l38.6006 -0.299805l-0.100586 -14.3008h-55.1992l0.0996094 69.3008h55.2002v-14.3008zM389.4 273.2c0.299805 0.299805 1.69922 1 7.2998 1c1 0 2 -0.100586 3.09961 -0.100586l-7.2998 -16.8994
|
757 |
-
c-2.2998 0 -3.2002 0.399414 -3.40039 0.5c-0.199219 0.200195 -1.09961 1.89941 -1.09961 7.89941c0 5.40039 1.09961 7.40039 1.40039 7.60059zM409.8 283.7h-0.0996094h0.0996094zM393.6 298.9h16.1006v-15.2002c-17.4004 0.299805 -33.1006 4.09961 -33.1006 -19.7002
|
758 |
-
c0 -11.7998 2.80078 -19.9004 16.1006 -19.9004h7.39941l23.5 54.5h24.8008l27.8994 -65.3994v65.3994h25.2998l29.1006 -48.0996v48.0996h16.8994v-69h-23.5996l-31.2002 51.9004v-51.9004h-33.7002l-6.59961 15.3008h-34.2998l-6.40039 -15.3008h-19.2002
|
759 |
-
c-22.7998 0 -33 11.8008 -33 34c0 23.3008 10.5 35.3008 34 35.3008zM435.7 286.8l-11.6006 -27.5996h22.8008zM334.6 298.8h16.9004v-69.2998h-16.9004v69.2998z" />
|
760 |
-
<glyph glyph-name="cc-paypal" unicode="" horiz-adv-x="576"
|
761 |
-
d="M186.3 189.8c0 -12.2002 -9.7002 -21.5 -22 -21.5c-9.2002 0 -16 5.2002 -16 15c0 12.2002 9.5 22 21.7002 22c9.2998 0 16.2998 -5.7002 16.2998 -15.5zM80.5 238.3c11.2998 0 19.7998 -1.5 17.5 -14.8994c-2 -12.7002 -10.5 -14.2002 -21.5 -14.2002l-8.2002 -0.299805
|
762 |
-
l4.2998 26.6992c0.200195 1.7002 1.7002 2.7002 3.2002 2.7002h4.7002zM364.5 238.3c8.5 0 18 -0.5 18.0996 -11.0996c0 -15 -9 -18 -22 -18l-8 -0.299805l4.2002 26.6992c0.200195 1.7002 1.40039 2.7002 3.2002 2.7002h4.5zM576 368v-352c0 -26.5 -21.5 -48 -48 -48h-480
|
763 |
-
c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h480c26.5 0 48 -21.5 48 -48zM128.3 232.6c0 21 -16.2002 28 -34.7002 28h-40c-2.5 0 -5 -2 -5.19922 -4.69922l-16.4004 -102.101c-0.299805 -2 1.2002 -4 3.2002 -4h19c2.7002 0 5.2002 2.90039 5.5 5.7002l4.5 26.5996
|
764 |
-
c1 7.2002 13.2002 4.7002 18 4.7002c28.5996 0 46.0996 17 46.0996 45.7998zM212.5 223.8h-19c-3.7998 0 -4 -5.5 -4.2002 -8.2002c-5.7998 8.5 -14.2002 10 -23.7002 10c-24.5 0 -43.1992 -21.5 -43.1992 -45.1992c0 -19.5 12.1992 -32.2002 31.6992 -32.2002
|
765 |
-
c9 0 20.2002 4.89941 26.5 11.8994c-0.5 -1.5 -1 -4.69922 -1 -6.19922c0 -2.30078 1 -4 3.2002 -4h17.2002c2.7002 0 5 2.89941 5.5 5.69922l10.2002 64.3008c0.299805 1.89941 -1.2002 3.89941 -3.2002 3.89941zM253 125.9l63.7002 92.5996c0.5 0.5 0.5 1 0.5 1.7002
|
766 |
-
c0 1.7002 -1.5 3.5 -3.2002 3.5h-19.2002c-1.7002 0 -3.5 -1 -4.5 -2.5l-26.5 -39l-11 37.5c-0.799805 2.2002 -3 4 -5.5 4h-18.7002c-1.69922 0 -3.19922 -1.7998 -3.19922 -3.5c0 -1.2002 19.5 -56.7998 21.1992 -62.1006c-2.69922 -3.7998 -20.5 -28.5996 -20.5 -31.5996
|
767 |
-
c0 -1.7998 1.5 -3.2002 3.2002 -3.2002h19.2002c1.7998 0.100586 3.5 1.10059 4.5 2.60059zM412.3 232.6c0 21 -16.2002 28 -34.7002 28h-39.6992c-2.7002 0 -5.2002 -2 -5.5 -4.69922l-16.2002 -102c-0.200195 -2 1.2998 -4 3.2002 -4h20.5c2 0 3.5 1.5 4 3.19922l4.5 29
|
768 |
-
c1 7.2002 13.1992 4.7002 18 4.7002c28.3994 0 45.8994 17 45.8994 45.7998zM496.5 223.8h-19c-3.7998 0 -4 -5.5 -4.2998 -8.2002c-5.5 8.5 -14 10 -23.7002 10c-24.5 0 -43.2002 -21.5 -43.2002 -45.1992c0 -19.5 12.2002 -32.2002 31.7002 -32.2002
|
769 |
-
c9.2998 0 20.5 4.89941 26.5 11.8994c-0.299805 -1.5 -1 -4.69922 -1 -6.19922c0 -2.30078 1 -4 3.2002 -4h17.2998c2.7002 0 5 2.89941 5.5 5.69922l10.2002 64.3008c0.299805 1.89941 -1.2002 3.89941 -3.2002 3.89941zM544 257.1c0 2 -1.5 3.5 -3.2002 3.5h-18.5
|
770 |
-
c-1.5 0 -3 -1.19922 -3.2002 -2.69922l-16.1992 -104l-0.300781 -0.5c0 -1.80078 1.5 -3.5 3.5 -3.5h16.5c2.5 0 5 2.89941 5.2002 5.69922l16.2002 101.2v0.299805zM454 205.3c9.2998 0 16.2998 -5.7002 16.2002 -15.5c0 -12.2998 -9.7002 -21.5 -21.7002 -21.5
|
771 |
-
c-9.2002 0 -16.2002 5.2998 -16.2002 15c0 12.2998 9.5 22 21.7002 22z" />
|
772 |
-
<glyph glyph-name="cc-stripe" unicode="" horiz-adv-x="576"
|
773 |
-
d="M492.4 227.2c8.69922 0 18 -6.7002 18 -22.7002h-36.7002c0 16 9.7998 22.7002 18.7002 22.7002zM375 224.6c12.9004 0.100586 21.9004 -14.5 21.9004 -33.0996c0 -19.0996 -8.80078 -33.4004 -21.9004 -33.4004c-8.2998 0 -13.2998 3 -16.7998 6.7002l-0.200195 52.7998
|
774 |
-
c3.7002 4.10059 8.7998 7 17 7zM528 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h480zM122.2 166.9c0 42.2998 -54.2998 34.6992 -54.2998 50.6992c0 5.5 4.59961 7.7002 12.0996 7.7002
|
775 |
-
c10.7998 0 24.5 -3.2998 35.2998 -9.09961v33.3994c-11.7998 4.7002 -23.5 6.5 -35.2998 6.5c-28.7998 0 -48 -15 -48 -40.1992c0 -39.3008 54 -32.9004 54 -49.9004c0 -6.59961 -5.7002 -8.7002 -13.5996 -8.7002c-11.8008 0 -26.9004 4.90039 -38.9004 11.2998v-33.8994
|
776 |
-
c13.2002 -5.7002 26.5996 -8.10059 38.7998 -8.10059c29.6006 0.200195 49.9004 14.7002 49.9004 40.3008zM191 223.5v30.2998h-26.9004v30.7998l-34.6992 -7.39941l-0.200195 -113.9c0 -21 15.7998 -36.5 36.8994 -36.5c11.6006 0 20.2002 2.10059 24.9004 4.7002v28.9004
|
777 |
-
c-4.5 -1.80078 -27 -8.30078 -27 12.5996v50.5h27zM265 221.1v32.7002h-0.0996094c-4.7002 1.7002 -21.3008 4.7998 -29.6006 -10.5l-2.2002 10.5h-30.6992v-124.5h35.5v84.4004c8.39941 11 22.5996 8.89941 27.0996 7.39941zM309.1 129.3v124.5h-35.6992v-124.5h35.6992z
|
778 |
-
M309.1 272.2v28.8994l-35.6992 -7.59961v-28.9004zM383.2 126.7c25.3994 0.0996094 48.5996 20.5 48.5996 65.5996c0 41.2998 -23.5 63.7998 -48.3994 63.7998c-13.9004 0 -22.9004 -6.59961 -27.8008 -11.0996l-1.7998 8.7998h-31.2998v-165.8l35.5 7.5l0.0996094 40.2002
|
779 |
-
c5.10059 -3.7002 12.7002 -9 25.1006 -9zM543.6 178.2c0.100586 2 0.400391 9.39941 0.400391 12.8994c0 36.4004 -17.5996 65.1006 -51.2998 65.1006c-33.7998 0 -54.2998 -28.7002 -54.2998 -64.9004c0 -42.7998 24.1992 -64.5 58.7998 -64.5
|
780 |
-
c17 0 29.7002 3.90039 39.3994 9.2002v28.5996c-9.69922 -4.89941 -20.7998 -7.89941 -34.8994 -7.89941c-13.7998 0 -26 4.89941 -27.6006 21.5h69.5z" />
|
781 |
-
<glyph glyph-name="lastfm" unicode="" horiz-adv-x="512"
|
782 |
-
d="M225.8 80.9004c0 0 -31.7002 -31.1006 -97.8994 -31.1006c-82.2002 0 -127.9 48.1006 -127.9 137.2c0 92.7002 45.7002 147.2 131.8 147.2c117.7 0 129.3 -66.2002 161.3 -163c14 -42.7998 38.7002 -73.9004 97.9004 -73.9004c39.9004 0 61 8.7998 61 30.5
|
783 |
-
c0 31.9004 -34.9004 35.1006 -79.7998 45.7002c-48.6006 11.7002 -68 36.9004 -68 76.7998c0 64 51.5996 83.9004 104.399 83.9004c59.8008 0 96.2002 -21.7002 100.9 -74.5l-58.5996 -7c-2.30078 25.2002 -17.5 35.7998 -45.7002 35.7998
|
784 |
-
c-25.7998 0 -41.6006 -11.7998 -41.6006 -31.7002c0 -17.5996 7.60059 -28.0996 33.4004 -34c52.2998 -11.5 115 -19.2002 115 -92.0996c0 -58.6006 -49.2998 -80.9004 -122 -80.9004c-101.4 0 -136.6 45.7002 -155.4 102.601
|
785 |
-
c-26.0996 81.5996 -34.3994 134.899 -100.899 134.899c-35.7002 0 -72.1006 -25.7998 -72.1006 -97.8994c0 -56.3008 28.7002 -91.5 69.2002 -91.5c45.7002 0 76.2002 34 76.2002 34z" />
|
786 |
-
<glyph glyph-name="lastfm-square" unicode=""
|
787 |
-
d="M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM307.8 103.1c45.4004 0 76.2002 13.9004 76.1006 50.6006c0 45.5 -39.1006 50.3994 -71.8008 57.5
|
788 |
-
c-16.0996 3.7002 -20.8994 10.2998 -20.8994 21.2998c0 12.5 9.89941 19.7998 26 19.7998c17.5996 0 27.0996 -6.59961 28.5996 -22.3994l36.7002 4.39941c-2.90039 33 -25.5996 46.6006 -63 46.6006c-32.9004 0 -65.2002 -12.4004 -65.2002 -52.4004
|
789 |
-
c0 -24.9004 12.1006 -40.7002 42.5 -48c28.1006 -6.59961 49.9004 -8.7002 49.9004 -28.5996c0 -13.6006 -13.2002 -19.1006 -38.1006 -19.1006c-37 0 -52.3994 19.4004 -61.1992 46.2002c-20 60.5 -27.3008 101.9 -100.801 101.9c-53.8994 0 -82.5 -34.1006 -82.5 -92
|
790 |
-
c0 -55.7002 28.6006 -85.8008 79.9004 -85.8008c41.4004 0 61.2002 19.4004 61.2002 19.4004l-11.7002 31.9004s-19 -21.3008 -47.5996 -21.3008c-25.3008 0 -43.3008 22 -43.3008 57.2002c0 45.1006 22.7002 61.2002 45.1006 61.2002c41.5 0 46.7002 -33.2998 63 -84.2998
|
791 |
-
c11.7002 -35.5 33.7002 -64.1006 97.0996 -64.1006z" />
|
792 |
-
<glyph glyph-name="ioxhost" unicode="" horiz-adv-x="640"
|
793 |
-
d="M616 288c13.2998 0 24 -10.7002 24 -24c0 -13.2002 -10.7002 -24 -24 -24h-52.7002c3.10059 -15.5 4.7002 -31.5996 4.7002 -48c0 -137 -111 -248 -248 -248c-102.9 0 -191.2 62.7002 -228.7 152h-67.2998c-13.2998 0 -24 10.7002 -24 24c0 13.2002 10.7002 24 24 24
|
794 |
-
h52.7002c-3.10059 15.5 -4.7002 31.5996 -4.7002 48c0 137 111 248 248 248c102.9 0 191.2 -62.7002 228.7 -152h67.2998zM520 192c0 16.5996 -2 32.5996 -5.7998 48h-298.2c-13.2998 0 -24 10.7002 -24 24c0 13.2002 10.7002 24 24 24h279.5
|
795 |
-
c-33.9004 62 -99.7998 104 -175.5 104c-110.5 0 -200 -89.5 -200 -200c0 -16.5996 2 -32.5996 5.7998 -48h298.2c13.2998 0 24 -10.7002 24 -24c0 -13.2002 -10.7002 -24 -24 -24h-279.5c33.9004 -62 99.7998 -104 175.5 -104c110.5 0 200 89.5 200 200zM216 216h208
|
796 |
-
c13.2998 0 24 -10.7002 24 -24c0 -13.2002 -10.7002 -24 -24 -24h-208c-13.2998 0 -24 10.7002 -24 24c0 13.2002 10.7002 24 24 24z" />
|
797 |
-
<glyph glyph-name="angellist" unicode=""
|
798 |
-
d="M347.1 232.6c48 -11.6992 54.9004 -50.5996 54.9004 -93.6992c0 -114.301 -73.4004 -202.9 -191.4 -202.9c-96.1992 0 -164.6 76.4004 -164.5 148.6c0 37.1006 14.2002 61.7002 51.1006 71.7002c-3.10059 8.2998 -8 20.7998 -8 29.7002
|
799 |
-
c0 23.5 24.8994 52.5996 48.2998 52.5996c6.90039 0 13.7002 -2 20 -4.2998c-12.4004 35.2002 -46.5996 126.7 -46.5996 162c0 28.7998 14.5996 51.7002 45.6992 51.7002c40 0 85.4004 -144 95.1006 -172.5c12.5 31.4004 52.5 163.1 97.0996 163.1
|
800 |
-
c28 0 43.7002 -22.2998 43.7002 -48.8994c0 -30.2002 -33.7002 -124.5 -45.4004 -157.101zM311.7 340l-33.1006 -93.7002l34 -6c8.5 23.4004 47.1006 128.9 47.1006 148c0 7.10059 -2.2998 16 -10.9004 16c-16 0 -33.0996 -52 -37.0996 -64.2998zM142.3 399.7
|
801 |
-
c0 -29.1006 34.6006 -120 45.5 -148.8c7.7002 4.39941 19.7998 2.69922 35.4004 1.39941l-34.6006 100.3c-31.7998 92.8008 -46.2998 59 -46.2998 47.1006zM140 204c-7.7002 0 -20.2998 -13.4004 -20.4004 -21.0996c0 -20.8008 56 -97.7002 76.9004 -97.7002
|
802 |
-
c5.7002 0 10.5996 6.2998 10.5996 11.3994c0 12.8008 -37.7998 107.4 -67.0996 107.4zM324.3 17.7002c55.2998 61.5 49.1006 158.6 31 174.7c-24 21.0996 -106 29.0996 -138.3 29.0996c-17.2998 0 -17.4004 -6.40039 -17.4004 -13.0996
|
803 |
-
c0 -43.7002 92.9004 -39.7002 120.601 -39.7002c11.2002 0 15.7998 -9.90039 16.8994 -21.1006c-7.39941 -7.39941 -17.6992 -11.6992 -27.3994 -15.3994c-9.40039 -3.40039 -19.1006 -7.10059 -27.1006 -13.1006c-22 -16 -43.6992 -43.3994 -43.6992 -71.6992
|
804 |
-
c0 -17.7002 10.5996 -32.9004 10.5996 -50.3008c0 -0.299805 -2 -6.5 -2 -7.39941c-32.5996 2.2998 -40.5996 34.5996 -41.7002 61.7002c-3.39941 -0.900391 -8 -0.600586 -11.7002 -0.600586c5.10059 -17.7998 -11.8994 -42 -38 -42
|
805 |
-
c-37.7998 0 -88 57.2002 -58.2998 86.9004c28.7002 -35.9004 35 -51.4004 51.1006 -51.4004c4 0 11.6992 3.40039 11.6992 8.2998c0 12.8008 -42.8994 73.1006 -54.2998 73.1006c-16.7998 0 -37.7002 -24.9004 -20.5996 -68.2998
|
806 |
-
c22.5996 -55.7002 69.5 -88.3008 128.899 -88.3008c43.4004 0 80.6006 16.6006 109.7 48.6006zM225.7 143.7c3.2002 -8.2998 6.59961 -16.6006 9.39941 -25.1006c6.30078 7.10059 12.9004 13.7002 20.3008 19.1006c-10 2 -20 2.89941 -29.7002 6z" />
|
807 |
-
<glyph glyph-name="buysellads" unicode=""
|
808 |
-
d="M224 297.3l42.9004 -160.7h-85.8008zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM382.7 42.7002l-94.5 298.7h-128.4l-94.5 -298.7h90.7002l111.7 91.5996l24.2002 -91.5996h90.7998z
|
809 |
-
" />
|
810 |
-
<glyph glyph-name="connectdevelop" unicode="" horiz-adv-x="576"
|
811 |
-
d="M550.5 207c6.69629 -1.33887 11.7861 -7.5 11.7881 -14.7324c0 -7.5 -5.3584 -13.6602 -12.3223 -15l-54.9111 -95.3574c0.536133 -1.60742 0.804688 -3.21387 0.804688 -4.82129c0 -7.23145 -5.09082 -13.3926 -12.0547 -14.7314l-51.6963 -90.2686
|
812 |
-
c0.535156 -1.33887 0.802734 -2.67773 0.802734 -4.28516c0 -8.30371 -6.69727 -15.2676 -15.2686 -15.2676c-4.28516 0 -8.30371 1.875 -10.9814 4.82129h-107.144c-2.67871 -3.21484 -6.96484 -5.35742 -11.5176 -5.35742s-8.83887 2.14258 -11.5166 5.35645h-106.875
|
813 |
-
c-2.67969 -3.21484 -6.69727 -5.35742 -11.5186 -5.35742c-8.30371 0 -15.2676 6.69727 -15.2676 15.2676c0 1.875 0.535156 3.75 1.07031 5.35742l-51.6963 89.7324c-6.96484 1.33887 -12.0547 7.5 -12.0547 14.7314c0 1.875 0.268555 3.21387 0.804688 4.82129
|
814 |
-
l-55.1797 95.3574c-6.96484 1.60742 -12.0537 7.76855 -12.0537 15c0 7.5 5.3584 13.6611 12.5898 15l53.3047 92.1436c0 0.536133 -0.268555 1.07227 -0.268555 1.60645c0 6.16113 3.75098 11.251 9.10742 13.6611l55.9824 97.2334
|
815 |
-
c-0.536133 1.33887 -1.07129 3.21387 -1.07129 4.82129c0 8.57129 6.96484 15.2676 15.2676 15.2676c4.82227 0 8.83887 -2.14258 11.7861 -5.625h106.071c2.67871 3.48242 6.69629 5.625 11.5176 5.625s8.83887 -2.14258 11.5176 -5.62402h106.606
|
816 |
-
c2.94727 3.48242 6.96484 5.625 11.7861 5.625c8.30371 0 15.2676 -6.69727 15.2676 -15.2676c0 -1.60742 -0.535156 -3.21484 -1.07031 -4.82129l55.4463 -95.8936c8.03613 -0.267578 14.7324 -6.96484 14.7324 -15.001c0 -2.67871 -0.803711 -5.08984 -1.875 -7.23145z
|
817 |
-
M153.535 -2.73242v75.8037h-43.6602zM153.535 81.1074v50.624l-44.999 -47.4102c0.535156 -1.07227 1.07129 -2.14355 1.33887 -3.21387h43.6602zM153.535 143.518l0.000976562 92.9463l-50.0889 51.9648c-2.41113 -1.60645 -5.08887 -2.41113 -7.76855 -2.67871
|
818 |
-
l-51.9648 -90c0.268555 -1.07227 0.268555 -2.14258 0.268555 -3.48242c0 -1.33887 0 -2.67871 -0.535156 -4.01758l55.7129 -96.4287c1.33887 -0.267578 2.67871 -1.07129 4.01758 -1.60742zM153.535 245.84v72.0527l-43.9277 -15.8037
|
819 |
-
c0 -0.267578 0.267578 -0.803711 0.267578 -1.07227c0 -2.94531 -0.803711 -5.62402 -2.14258 -7.7666zM153.535 326.465v59.7324l-43.6602 -75.5361zM480.054 287.357l-0.267578 0.267578l-98.0361 -101.518l63.75 -67.2324l35.3584 167.143zM291.75 92.8926
|
820 |
-
l-11.25 -11.7852h22.7676zM291.482 104.143l79.2852 82.2324l-83.0352 87.5889l-79.5537 -84.375zM296.839 98.25l16.875 -17.1426h124.02l5.8916 28.125l-67.5 71.25zM410.411 403.607l-117.053 -124.019l83.0342 -87.5889l97.5 101.25
|
821 |
-
c-1.33984 2.14258 -2.14258 4.82129 -2.14258 7.7666v0.536133l-57.8574 100.714c-1.33984 0.268555 -2.41016 0.804688 -3.48145 1.34082zM401.304 405.75h-4.28711l-166.339 -60l57.0547 -60.2676zM277.821 405.75h-103.929l50.8936 -53.5713l148.393 53.5713h-75
|
822 |
-
c-2.67871 -2.67773 -6.16016 -4.28516 -10.1787 -4.28516s-7.50098 1.60742 -10.1787 4.28516zM161.572 400.125v-70.7148l54.9111 19.8213l-51.1611 53.8398c-0.870117 -0.300781 -1.77832 -0.574219 -2.67969 -0.804688zM161.572 320.839v-83.3037l40.9814 -42.0527
|
823 |
-
l79.5537 84.1064l-59.7324 63.2139zM161.572 228.161v-76.0723l36.4277 38.3037zM161.572 140.303v-59.1953h107.678l17.1426 17.6777l-82.7676 85.9814zM168.536 -21.75h1.33887l91.6074 94.8213h-99.9102v-89.7324l1.07031 -1.60645
|
824 |
-
c2.41113 -0.804688 4.28613 -1.875 5.89355 -3.48242zM298.447 -21.75h104.194l-91.6064 94.8213h-38.3037l-91.6074 -94.8213h96.4287c2.68066 2.41016 6.42871 4.28516 10.4473 4.28516s7.76758 -1.875 10.4473 -4.28516zM418.447 -9.96387l17.4121 83.0361h-114.376
|
825 |
-
l89.1953 -91.875c1.07227 0.536133 2.14355 1.07031 3.48242 1.33887zM431.303 12.2676l34.8223 60.8037h-21.9639zM466.125 81.1074c0.267578 1.07129 0.803711 2.14258 1.33887 2.94531l-17.1426 18.2139l-4.55371 -21.1592h20.3574zM532.286 188.518
|
826 |
-
c-0.268555 1.33984 -0.536133 2.41113 -0.536133 3.75c0 1.60742 0.536133 2.94629 0.802734 4.28516l-45.8027 79.2861l-34.5537 -163.928l20.625 -21.9639c1.33887 0.802734 2.67871 1.33887 4.01758 1.87402z" />
|
827 |
-
<glyph glyph-name="dashcube" unicode=""
|
828 |
-
d="M326.6 344l102.2 104v-427c0 -50.5 -40.0996 -85 -91.2002 -85h-227.199c-51.1006 0 -91.2002 34.5 -91.2002 85v229.5c0 50.2002 40.0996 93.5 91.2002 93.5h216.199zM153.9 31.5v-0.0996094h223.8l-51.1006 52.2998v123.5c0 17.7002 -14.2998 32.5 -32 32.5h-140.699
|
829 |
-
c-17.7002 0 -32.4004 -14.7998 -32.4004 -32.5v-142.9c0 -17.7002 14.7002 -32.7998 32.4004 -32.7998z" />
|
830 |
-
<glyph glyph-name="forumbee" unicode=""
|
831 |
-
d="M5.7998 138.3c-3.7998 17 -5.7998 34.2002 -5.7998 51.4004c0 123.3 99.7998 223.3 223.1 223.3c16.6006 0 33.3008 -2 49.3008 -5.5c-123.4 -47 -220.5 -145.5 -266.601 -269.2zM398.7 327.5c-151.101 -44 -269.2 -164.4 -312.3 -315.7
|
832 |
-
c-17.2002 13.4004 -32.7002 30.9004 -45.2002 49c43.3994 149.9 160.1 267.7 309.7 312c18.0996 -12.5996 34.0996 -27.7998 47.7998 -45.2998zM414.5 74.7998c13.0996 -35.2998 24.2002 -73.2998 33.5 -109.8c-36.0996 9.2998 -72 20.5 -107 33.5996
|
833 |
-
c-25.7002 -16 -54.5996 -26.8994 -84.5996 -31.2998c42.5996 79.7002 108.199 147.4 187.6 190.3c-4.09961 -29.0996 -14.2998 -57.6992 -29.5 -82.7998zM444.2 220.3c-113.7 -46.7002 -204.2 -139.399 -250.5 -253.5c-19.6006 2.7002 -38.5 7.60059 -56.6006 15.2002
|
834 |
-
c44.9004 138.5 153.4 249.3 291.301 295.1c7.89941 -18.0996 13.1992 -37.2998 15.7998 -56.7998z" />
|
835 |
-
<glyph glyph-name="leanpub" unicode="" horiz-adv-x="576"
|
836 |
-
d="M386.539 336.515l15.0957 -248.955l-10.9785 0.275391c-36.2324 0.824219 -71.6406 -8.7832 -102.657 -27.9971c-31.0156 19.2139 -66.4238 27.9971 -102.657 27.9971c-45.5635 0 -82.0693 -10.7051 -123.516 -27.7227l31.291 258.288
|
837 |
-
c28.5459 11.8027 61.4834 18.1143 92.2256 18.1143c41.1729 0 73.8359 -13.1748 102.657 -42.5439c27.7227 28.2715 59.0127 41.7217 98.5391 42.5439zM569.07 0c-25.5264 0 -47.4854 5.21484 -70.542 15.6445c-34.3105 15.6455 -69.9932 24.9785 -107.871 24.9785
|
838 |
-
c-38.9775 0 -74.9346 -12.9014 -102.657 -40.623c-27.7227 27.7227 -63.6797 40.623 -102.657 40.623c-37.8779 0 -73.5605 -9.33301 -107.871 -24.9785c-22.2324 -9.88086 -44.7402 -15.6445 -69.1689 -15.6445h-1.37305l42.5449 349.141
|
839 |
-
c39.251 22.2334 87.0117 34.8594 132.301 34.8594c37.0547 0 75.209 -7.68457 106.225 -29.0947c31.0156 21.4102 69.1699 29.0947 106.225 29.0947c45.2891 0 93.0498 -12.626 132.301 -34.8594zM525.702 44.7412l-34.0361 280.246
|
840 |
-
c-30.7422 13.999 -67.248 21.4102 -101.009 21.4102c-38.4287 0 -74.3848 -12.0771 -102.657 -38.7021c-28.2725 26.625 -64.2275 38.7021 -102.657 38.7021c-33.7607 0 -70.2666 -7.41113 -101.009 -21.4102l-34.0361 -280.246
|
841 |
-
c47.2109 19.4863 82.8945 33.4854 135.045 33.4854c37.6045 0 70.8174 -9.60547 102.657 -29.6436c31.8398 20.0381 65.0518 29.6436 102.657 29.6436c52.1504 0 87.834 -13.999 135.045 -33.4854z" />
|
842 |
-
<glyph glyph-name="sellsy" unicode="" horiz-adv-x="640"
|
843 |
-
d="M539.71 210.692c55.1572 -13.4834 94.0742 -63.124 94.0732 -119.509c0 -68.0264 -55.4639 -123.184 -123.185 -123.184h-381.197c-67.7217 0 -123.186 55.1572 -123.185 123.185c0 47.4961 27.8848 91.0098 70.7852 111.234
|
844 |
-
c-2.14453 7.35449 -3.06543 15.0146 -3.06543 22.3691c0 46.2705 37.6914 83.9609 83.9629 83.9609c20.2227 0 39.835 -7.35449 55.1562 -20.5303c18.3867 74.7695 85.8008 127.781 163.021 127.781c92.542 0 167.924 -75.3818 167.924 -167.924
|
845 |
-
c0 -12.5635 -1.22559 -25.127 -4.29004 -37.3838zM199.88 46.4463v110.928c0 8.27344 -7.04688 15.3213 -15.3213 15.3213h-30.9482c-8.27344 0 -15.3213 -7.04785 -15.3213 -15.3213v-110.928c0 -8.27344 7.04688 -15.3213 15.3213 -15.3213h30.9482
|
846 |
-
c8.27344 0 15.3213 7.04688 15.3213 15.3213zM289.357 46.4463v131.458c0 8.27246 -7.04883 15.3203 -15.3223 15.3203h-30.9492c-8.27246 0 -15.3213 -7.04688 -15.3213 -15.3203v-131.458c0 -8.27344 7.04688 -15.3213 15.3213 -15.3213h30.9492
|
847 |
-
c8.27344 0 15.3223 7.04688 15.3223 15.3213zM378.834 46.4463v162.714c0 8.27246 -7.04688 15.3213 -15.3213 15.3213h-30.9482c-8.27441 0 -15.3223 -7.04785 -15.3223 -15.3213v-162.714c0 -8.27344 7.04785 -15.3213 15.3223 -15.3213h30.9482
|
848 |
-
c8.27441 0 15.3213 7.04688 15.3213 15.3213zM465.861 46.4463v224.612c0 8.58008 -7.04785 15.6279 -15.3223 15.6279h-28.4971c-8.27441 0 -15.3213 -7.04883 -15.3213 -15.6279v-224.612c0 -8.27344 7.04688 -15.3213 15.3213 -15.3213h28.4971
|
849 |
-
c8.27441 0 15.3223 7.04688 15.3223 15.3213z" />
|
850 |
-
<glyph glyph-name="shirtsinbulk" unicode=""
|
851 |
-
d="M100 37.7002l4.40039 9.89941l30.5996 -13.3994l-4.40039 -9.90039zM139.4 20.2002l4.39941 9.89941l30.6006 -13.3994l-4.40039 -9.90039zM311.5 34.2002l30.5996 13.3994l4.40039 -9.89941l-30.5996 -13.4004zM179.1 3l4.40039 9.59961l30.2998 -13.3994
|
852 |
-
l-4.39941 -9.90039zM60.4004 55.2002l4.39941 9.89941l30.6006 -13.6992l-4.40039 -9.60059zM271.8 16.7002l30.6006 13.3994l4.39941 -9.89941l-30.5996 -13.4004zM232.5 -0.799805l30.5996 13.3994l4.40039 -9.59961l-30.5996 -13.7002zM350.9 51.4004l30.5996 13.6992
|
853 |
-
l4.40039 -9.89941l-30.6006 -13.4004zM170 401.4v-10.5h-33.5v10.5h33.5zM122.8 401.4l-0.0996094 -10.5h-33.5v10.5h33.5996zM75.5 401.4l0.0996094 -10.5h-33.2998v10.5h33.2002zM217 401.4v-10.5h-33.2002v10.5h33.2002zM311.5 401.4v-10.5h-33.5v10.5h33.5zM358.8 401.4
|
854 |
-
v-10.5h-33.5v10.5h33.5zM264.2 401.4v-10.5h-33.2002v10.5h33.2002zM405.7 401.4v-10.5h-33.2998v10.5h33.2998zM52.7998 96.9004v-33.5h-10.7998v33.5h10.7998zM122.8 312.8l-0.0996094 -10.5h-33.5v10.5h33.5996zM52.7998 302.2v-23h-10.7998v33.5h33.5996v-10.5h-22.7998
|
855 |
-
zM221.7 73.5996c-50.2002 0 -91.2998 40.8008 -91.2998 91.3008c0 50.1992 41.0996 91.2998 91.2998 91.2998c50.5 0 91.2998 -41.1006 91.2998 -91.2998c0 -50.5 -40.7998 -91.3008 -91.2998 -91.3008zM173.5 184.7c0 -44.2998 77.5996 -11.9004 77.5996 -38
|
856 |
-
c0 -13.1006 -24 -14.2998 -32.6992 -14.2998c-12.3008 0 -29.8008 2.69922 -35.9004 14.8994h-0.900391l-9 -18.3994c14.8008 -9.30078 29.1006 -12.2002 47.2002 -12.2002c19.5 0 51 5.7998 51 31.2002c0 48.0996 -78.5 16.2998 -78.5 37.8994
|
857 |
-
c0 13.1006 20.7998 14.9004 29.7998 14.9004c10.8008 0 29.2002 -3.2002 35.6006 -13.1006h0.899414l8.80078 16.9004c-15.1006 6.2002 -27.4004 12 -44.3008 12c-20.0996 0 -49.5996 -6.40039 -49.5996 -31.7998zM52.7998 269.6v-33.5996h-10.7998v33.5996h10.7998z
|
858 |
-
M395.2 63.4004v33.5h10.7998v-33.5h-10.7998zM52.7998 140.1v-33.5h-10.7998v33.5h10.7998zM0 444.3h448v-406l-226.3 -98.5996l-221.7 98.5996v406zM418.8 57.2002h0.100586v270.1h-389.7v-270.1l192.8 -85.7002zM418.8 356.5h0.100586v58.5996h-389.7v-58.5996h389.6z
|
859 |
-
M52.7998 226.4v-33.5h-10.7998v33.5h10.7998zM52.7998 183.2v-33.5h-10.7998v33.5h10.7998zM170 312.8v-10.5h-33.5v10.5h33.5zM395.2 149.7v33.5h10.7998v-33.5h-10.7998zM395.2 192.9v33.5h10.7998v-33.5h-10.7998zM217 312.8v-10.5h-33.2002v10.5h33.2002zM395.2 236
|
860 |
-
v33.5h10.7998v-33.5h-10.7998zM395.2 106.5v33.5h10.7998v-33.5h-10.7998zM264.2 312.8v-10.5h-33.2002v10.5h33.2002zM311.5 312.8v-10.5h-33.5v10.5h33.5zM395.2 279.2l0.0996094 23h-22.7998v10.5h33.5v-33.5h-10.7998zM358.8 312.8v-10.5h-33.5v10.5h33.5z" />
|
861 |
-
<glyph glyph-name="simplybuilt" unicode="" horiz-adv-x="512"
|
862 |
-
d="M481.2 384c14.7002 0 26.5 -11.7998 26.7002 -26.2998v-331.4c0 -14.5 -11.8008 -26.2998 -26.6006 -26.2998h-450.399c-14.8008 0 -26.6006 11.7998 -26.6006 26.2998v331.4c0 14.5 11.7998 26.2998 26.4004 26.2998h106c14.5996 0 26.5996 -11.7998 26.5996 -26.2998
|
863 |
-
v-39.6006h185.3v39.6006c0 14.5 12.1006 26.2998 26.6006 26.2998h106zM149.8 92.2002c36.9004 0 66.6006 29.7002 66.6006 66.3994c0 36.9004 -29.7002 66.6006 -66.6006 66.6006c-36.7002 0 -66.3994 -29.7002 -66.3994 -66.6006
|
864 |
-
c0 -36.6992 29.7998 -66.3994 66.3994 -66.3994zM362.2 92.2002c36.5996 0 66.3994 29.7002 66.3994 66.5996c0 36.7002 -29.7998 66.4004 -66.3994 66.4004c-36.9004 0 -66.6006 -29.7998 -66.6006 -66.4004c0 -36.8994 29.7002 -66.5996 66.6006 -66.5996z" />
|
865 |
-
<glyph glyph-name="skyatlas" unicode="" horiz-adv-x="640"
|
866 |
-
d="M640 118.7c0 -65.9004 -52.5 -114.4 -117.5 -114.4c-165.9 0 -196.6 249.7 -359.7 249.7c-146.899 0 -147.1 -212.2 5.60059 -212.2c42.5 0 90.8994 17.7998 125.3 42.5c5.59961 4.10059 16.8994 16.2998 22.7998 16.2998s10.9004 -5 10.9004 -10.8994
|
867 |
-
c0 -7.7998 -13.1006 -19.1006 -18.7002 -24.1006c-40.9004 -35.5996 -100.3 -61.1992 -154.7 -61.1992c-83.4004 -0.100586 -154 59 -154 144.899c0 85.9004 67.5 149.101 152.8 149.101c185.3 0 222.5 -245.9 361.9 -245.9c99.8994 0 94.7998 139.7 3.39941 139.7
|
868 |
-
c-17.5 0 -35 -11.6006 -46.8994 -11.6006c-8.40039 0 -15.9004 7.2002 -15.9004 15.6006c0 11.5996 5.2998 23.7002 5.2998 36.2998c0 66.5996 -50.8994 114.7 -116.899 114.7c-53.1006 0 -80 -36.9004 -88.7998 -36.9004c-6.2002 0 -11.2002 5 -11.2002 11.2002
|
869 |
-
c0 5.59961 4.09961 10.2998 7.7998 14.4004c25.2998 28.7998 64.7002 43.6992 102.8 43.6992c79.4004 0 139.101 -58.3994 139.101 -137.8c0 -6.89941 -0.300781 -13.7002 -1.2002 -20.5996c11.8994 3.09961 24.0996 4.7002 35.8994 4.7002
|
870 |
-
c60.7002 0 111.9 -45.3008 111.9 -107.2z" />
|
871 |
-
<glyph glyph-name="pinterest-p" unicode="" horiz-adv-x="384"
|
872 |
-
d="M204 441.5c94.2002 0 180 -64.7998 180 -164.1c0 -93.3008 -47.7002 -196.801 -153.9 -196.801c-25.1992 0 -57 12.6006 -69.2998 36c-22.7998 -90.2998 -21 -103.8 -71.3994 -172.8c-5.2002 -1.89941 -3.5 -2.2998 -6.90039 1.5c-1.7998 18.9004 -4.5 37.5 -4.5 56.4004
|
873 |
-
c0 61.2002 28.2002 149.7 42 209.1c-7.5 15.2998 -9.59961 33.9004 -9.59961 50.7002c0 80 93.8994 92 93.8994 25.7998c0 -39 -26.3994 -75.5996 -26.3994 -113.399c0 -25.8008 21.2998 -43.8008 46.1992 -43.8008c69 0 90.3008 99.6006 90.3008 152.7
|
874 |
-
c0 71.1006 -50.4004 109.8 -118.5 109.8c-79.2002 0 -140.4 -57 -140.4 -137.399c0 -38.7002 23.7002 -58.5 23.7002 -67.7998c0 -7.80078 -5.7002 -35.4004 -15.6006 -35.4004c-24 0 -63.5996 40 -63.5996 110.4c0 110.699 101.4 179.1 204 179.1z" />
|
875 |
-
<glyph glyph-name="whatsapp" unicode=""
|
876 |
-
d="M380.9 350.9c41.8994 -42 67.0996 -97.7002 67.0996 -157c0 -122.4 -101.8 -222 -224.1 -222h-0.100586c-37.2002 0 -73.7002 9.2998 -106.1 27l-117.7 -30.9004l31.5 115c-19.4004 33.7002 -29.5996 71.9004 -29.5996 111c0 122.4 99.5996 222 222 222
|
877 |
-
c59.2998 0 115.1 -23.0996 157 -65.0996zM223.9 9.2998c101.699 0 186.6 82.7998 186.6 184.601c0.0996094 49.2998 -21.2998 95.5996 -56.0996 130.5c-34.8008 34.8994 -81.1006 54.0996 -130.4 54.0996c-101.8 0 -184.6 -82.7998 -184.6 -184.5
|
878 |
-
c0 -34.9004 9.69922 -68.7998 28.1992 -98.2002l4.40039 -7l-18.5996 -68.0996l69.7998 18.2998l6.7002 -4c28.2998 -16.7998 60.7998 -25.7002 94 -25.7002zM325.1 147.5c5.5 -2.7002 9.2002 -4.09961 10.5 -6.59961c1.40039 -2.30078 1.40039 -13.4004 -3.19922 -26.4004
|
879 |
-
c-4.60059 -13 -26.7002 -24.7998 -37.4004 -26.4004c-17.5996 -2.59961 -31.4004 -1.2998 -66.5996 13.9004c-55.7002 24.0996 -92 80.0996 -94.8008 83.7998c-2.69922 3.7002 -22.5996 30.1006 -22.5996 57.4004s14.2998 40.7002 19.4004 46.2998
|
880 |
-
c5.09961 5.5 11.0996 6.90039 14.7998 6.90039s7.39941 0 10.5996 -0.200195c3.40039 -0.200195 8 1.2998 12.5 -9.5c4.60059 -11.1006 15.7002 -38.4004 17.1006 -41.2002c1.39941 -2.7998 2.2998 -6 0.5 -9.7002c-10.6006 -21.2002 -22 -20.5 -16.3008 -30.2998
|
881 |
-
c21.5 -36.9004 42.9004 -49.7002 75.5 -66c5.5 -2.7998 8.80078 -2.2998 12 1.40039c3.30078 3.7998 13.9004 16.1992 17.6006 21.7998c3.7002 5.59961 7.39941 4.7002 12.5 2.7998c5.09961 -1.7998 32.3994 -15.2002 37.8994 -18z" />
|
882 |
-
<glyph glyph-name="viacoin" unicode="" horiz-adv-x="384"
|
883 |
-
d="M384 416l-48 -112h48v-48h-68.5l-13.7998 -32h82.2998v-48h-102.8l-89.2002 -208l-89.2002 208h-102.8v48h82.2998l-13.7998 32h-68.5v48h48l-48 112h64l80.7998 -192h94.5l80.7002 192h64zM192 112l27 64h-54z" />
|
884 |
-
<glyph glyph-name="medium" unicode=""
|
885 |
-
d="M0 416h448v-448h-448v448zM372.2 309.9v5h-83.2002l-59.2998 -147.9l-67.4004 148h-87.2998v-5.09961l28.0996 -33.9004c2.80078 -2.5 4.2002 -6.09961 3.80078 -9.7998v-133c0.799805 -4.7998 -0.700195 -9.7002 -4.10059 -13.2002l-31.5996 -38.2998v-5.10059h89.7998
|
886 |
-
v5.10059l-31.5996 38.2998c-3.40039 3.5 -5.10059 8.40039 -4.40039 13.2002v115l78.7002 -171.601h9.09961l67.6006 171.601v-136.9c0 -3.59961 0 -4.2998 -2.40039 -6.7002l-24.2998 -23.5996v-4.90039h118v5.10059l-23.5 23
|
887 |
-
c-2.10059 1.5 -3.10059 4.09961 -2.7002 6.7002v169.3c-0.400391 2.5 0.599609 5.09961 2.7002 6.7002z" />
|
888 |
-
<glyph glyph-name="y-combinator" unicode=""
|
889 |
-
d="M448 416v-448h-448v448h448zM236 160.5l77.5 145.5h-32.7002l-45.7998 -91c-4.7002 -9.2998 -9 -18.2998 -12.7998 -26.7998l-12.2002 26.7998l-45.2002 91h-35l76.7002 -143.8v-94.5h29.5v92.7998z" />
|
890 |
-
<glyph glyph-name="optin-monster" unicode="" horiz-adv-x="576"
|
891 |
-
d="M572.6 26.5996c1 -3.5 1.90039 -7 1.7002 -10.6992c0.799805 -31.6006 -44.2998 -64 -73.5 -65.1006c-17.2998 -0.799805 -34.5996 8.40039 -42.7002 23.5c-113.5 -4.09961 -227 -4.89941 -340.199 0c-8.40039 -15.0996 -25.7002 -24 -43 -23.5
|
892 |
-
c-28.9004 1.10059 -74 33.5 -73.5 65.1006c0.299805 3.7998 0.799805 7.2998 1.89941 10.7998c-5.59961 9.39941 -4.7998 15.2998 5.40039 11.5996c3.2998 5.2002 7 9.5 11.0996 13.7998c-2.5 10.9004 1.2998 14.1006 11.1006 9.2002c4.5 3.2998 10 6.5 15.8994 9.2002
|
893 |
-
c0 15.7998 11.7998 11.2002 17.2998 5.7002c12.5 1.7998 20.2002 -0.700195 26.8008 -5.7002v19.7002c-12.9004 0 -40.6006 11.3994 -45.9004 36.2002c-5 20.7998 2.59961 38.0996 25.0996 47.5996c0.800781 5.90039 8.10059 14 14.9004 15.9004
|
894 |
-
c7.59961 1.89941 12.5 -4.60059 14.0996 -10.3008c7.40039 0 17.8008 -1.5 21.1006 -8.09961c5.39941 0.5 11.0996 1.40039 16.5 1.90039c-2.40039 1.89941 -5.10059 3.5 -8.10059 4.59961c-5.09961 8.90039 -13.7998 11.0996 -24.5996 11.5996
|
895 |
-
c0 0.800781 0 1.60059 0.299805 2.7002c-19.7998 0.5 -44.0996 5.60059 -54.8994 17.7998c-21.3008 23.6006 -15.9004 83.6006 12.1992 103.5c8.40039 5.7002 21.6006 0.800781 22.7002 -9.69922c2.40039 -20.6006 0.400391 -26.8008 26.2002 -25.9004
|
896 |
-
c8.09961 7.7998 16.7998 14.5996 26.5 20c-14.9004 1.2998 -28.9004 -1.59961 -43.7998 -3.7998c12.7002 12.5 23.8994 25.3994 56.7002 42.3994c23.5 11.9004 50 20.8008 76.1992 23.2002c-18.5996 7.90039 -40 11.9004 -59.6992 16.5
|
897 |
-
c76.5 16.2002 174.6 22.1006 244.199 -37.5996c18.1006 -15.4004 32.4004 -36.2002 42.7002 -60c39.7998 -4.90039 36.4004 5.5 38.6006 25.0996c1.09961 10.2998 14.2998 15.4004 22.6992 9.5c14.9004 -10.5 22.2002 -30.7998 24.6006 -48.0996
|
898 |
-
c2.2002 -17.7998 0.299805 -41.2998 -12.4004 -55.1006c-10.7998 -12.1992 -34.2998 -17.5996 -53.7998 -18.0996v-2.7998c-11.0996 -0.200195 -20.2998 -2.40039 -25.7002 -11.6006c-3 -1.09961 -5.7002 -2.69922 -8.39941 -4.59961
|
899 |
-
c5.69922 -0.5 11.3994 -1.40039 16.7998 -1.90039c1.89941 5.60059 12.5996 8.40039 21.0996 8.40039c1.7002 5.40039 6.7998 11.9004 14.1006 10.2998c7.2998 -1.59961 14.0996 -10 14.8994 -15.8994c10.7998 -4.40039 22.1006 -12.2002 25.1006 -25.7002
|
900 |
-
c1.89941 -8.10059 1.69922 -15.1006 0.299805 -21.9004c-5.7002 -25.2002 -33.2998 -36.2002 -45.9004 -36.2002c0 -6.69922 0 -13.1992 -0.299805 -19.6992c8.09961 6 16.4004 7.19922 26.7998 5.69922c6 5.90039 17.6006 9.40039 17.6006 -5.69922
|
901 |
-
c5.59961 -2.7002 11.2998 -6 15.8994 -9.2002c10.1006 5 13.7002 0.5 10.7998 -9.2002c4.10059 -4.2998 8.10059 -8.90039 11.1006 -13.7998c10.0996 3.59961 11 -2.10059 5.39941 -11.6006zM498.8 280.6c17.2998 -6.69922 26.2002 -22.0996 30.2998 -35.6992
|
902 |
-
c1.10059 10.5996 -2.69922 39.5 -13.7998 51.0996c-7.2998 7.2998 -14.0996 5.09961 -14.0996 -0.799805c0 -6.2002 -1.2998 -11.6006 -2.40039 -14.6006zM494.2 273.9c-3.2002 -3.30078 -9.2002 -4.90039 -14.1006 -5.7002c13 -15.7002 17 -41.7002 12.7002 -63
|
903 |
-
c10.7998 2.2002 20.5 6.2998 26.2002 12.2002c1.90039 2.19922 3.7998 4.89941 4.90039 7.59961c-1.10059 21.2998 -10.2002 42.7002 -29.7002 48.9004zM470.1 267.1c-3.69922 0 -8.09961 0 -11.7998 0.300781c7.5 -20.6006 12.4004 -42.7002 14.2998 -64.6006
|
904 |
-
c3.5 0 7.5 0.299805 11.6006 0.799805c5.89941 24.3008 -0.299805 51.6006 -14.1006 63.5zM47.5 245c4.09961 13.5 13 28.9004 30.2998 35.7002c-1 3 -2.39941 8.39941 -2.39941 14.5996c0 5.90039 -7.10059 8.10059 -14.1006 0.799805
|
905 |
-
c-11.3994 -11.5996 -14.8994 -40.5996 -13.7998 -51.0996zM57.2002 217.4c5.7002 -6.2002 15.3994 -10 26.2002 -12.2002c-4.30078 21.3994 -0.300781 47.2998 12.6992 63c-4.89941 0.799805 -10.8994 2.5 -14.0996 5.7002
|
906 |
-
c-19.4004 -6.2002 -28.2998 -27.6006 -29.7002 -48.9004c1.40039 -2.7002 3 -5.40039 4.90039 -7.59961zM105.1 202.8c2.40039 22.2002 9.10059 43.7998 19.8008 63.5c-5.2002 -1.09961 -10 -3 -14.9004 -4.89941l-12.2002 -5.10059v0.299805
|
907 |
-
c-7.2998 -14.0996 -10 -34.3994 -5.39941 -53c4.59961 -0.5 8.59961 -0.799805 12.6992 -0.799805zM289.1 365.5c-41.8994 0 -76.1992 -34.0996 -76.1992 -75.9004c0 -42.1992 34.2998 -76.1992 76.1992 -76.1992c41.9004 0 76.2002 34 76.2002 76.1992
|
908 |
-
c0 41.9004 -34.2998 75.9004 -76.2002 75.9004zM404.7 191.2c-12.9004 0.799805 -26.2002 0.799805 -39.5 1.09961c10 -50.5996 3.2998 -64.7002 16.5 -58.0996c16 8.09961 22.7002 39.2002 23 57zM350.7 192.8c-18.9004 0.299805 -38.1006 0.299805 -57 0v0.299805
|
909 |
-
c-0.299805 -5.19922 0.200195 -38.0996 4.2998 -41.0996c11.0996 -5.40039 39.5 -4.59961 51.0996 -1.09961c5.40039 1.59961 2.40039 37 1.60059 41.8994zM278.3 139c4.60059 2.5 2.40039 45.4004 1.2998 53.7002v0.299805
|
910 |
-
c-19.3994 -0.299805 -38.5996 -0.299805 -57.7998 -0.799805c-1.89941 -9.2002 -4.59961 -48.9004 1.90039 -51.6006c13 -5.69922 41.5996 -5.09961 54.5996 -1.59961zM171.8 190.1c-5.39941 -19.6992 0.299805 -45.0996 22.2002 -54.8994
|
911 |
-
c5.40039 -2.5 8.59961 -2.5 9.7002 4.2998c1.89941 8.7002 2.5 36.7998 4.89941 52.2002c-12.1992 -0.200195 -24.5996 -0.799805 -36.7998 -1.60059zM136.4 158.8c2.39941 -3.7002 1.59961 -9.09961 -8 -12.5c43.7998 -47 92.6992 -85.7002 155.899 -106.5
|
912 |
-
c67.5 19.2002 115.601 60 163.2 107c-11.0996 4.2998 -7.7002 10.2998 -7.2998 11.6006c-8.90039 0.799805 -17.9004 1.89941 -26.5 2.69922c-9.5 -33 -36 -52.8994 -46.7998 -31.5996c-2.7002 5.2002 -3.5 11.7002 -4.60059 16.7998
|
913 |
-
c-3.7998 -8.39941 -13.2998 -8.09961 -24.5996 -8.89941c-13.2002 -1.10059 -31.6006 -1.30078 -44 3c-3 -12.9004 -11.1006 -12.9004 -26.7998 -14.3008c-14.1006 -1.39941 -48.7002 -4.09961 -54.9004 10.8008c-1.09961 -28.7002 -35.0996 -10 -45.0996 7
|
914 |
-
c-3.2002 5.69922 -5.40039 11.3994 -7 17.5996c-7.80078 -0.799805 -15.7002 -1.59961 -23.5 -2.7002zM114.8 -13.7002c0.5 2.5 0.799805 5.2002 0.799805 8.2002c-5.69922 23.2002 -18.5996 49.7002 -33.5 54c-22.3994 6.7002 -68.8994 -23.5 -66.1992 -54.5996
|
915 |
-
c12.6992 -19.5 40 -35.7002 59.1992 -36.5c17.8008 -0.800781 35.9004 11.0996 39.7002 28.8994zM106.1 52.2998c9 -16 15.5 -33.2998 16.7002 -51.8994c33.5 19.3994 69.1006 35.6992 105.9 47c-38.7002 20.5 -68.1006 47.7998 -97.2998 77
|
916 |
-
c-2.10059 -1.30078 -5.10059 -2.40039 -7.80078 -3.5c-1.59961 -4.90039 8.7002 -5.30078 5.40039 -12.4004c-2.09961 -4.09961 -8.59961 -7.59961 -15.0996 -9.2002c-2.10059 -2.7002 -5.10059 -4.89941 -7.80078 -6.5h-0.299805
|
917 |
-
c-0.200195 -13.5 -0.200195 -27 0.299805 -40.5zM443.7 -12.2998c-36.7998 21.2998 -74.1006 41.2998 -115.601 53c-13.7998 -6.2002 -27.8994 -11.2998 -42.1992 -15.4004c-2.10059 -0.799805 -2.10059 -0.799805 -4.30078 0
|
918 |
-
c-11.8994 3.7002 -23.2998 8.10059 -34.8994 13.2002c-40.2002 -11.5996 -77.2998 -29.2002 -112.4 -50.7998h-0.299805v-0.299805c0.299805 0 0.299805 0 0.299805 0.299805c103.2 -4.10059 206.4 -3.5 309.4 0zM454.2 0.0996094c1 14.7002 7.2002 35.8008 16.5 51.7002
|
919 |
-
l-0.299805 -0.299805c0.5 13.7002 0.799805 27.5 0.799805 41.2998c-3 1.7002 -5.7002 4.10059 -8.10059 6.7998c-6.5 1.30078 -12.8994 5.10059 -15.0996 8.90039c-1.90039 4.09961 1.2998 7.59961 5.90039 10.2998c-0.200195 0.5 -0.5 1.60059 -0.5 2.40039
|
920 |
-
c-3 0.799805 -5.40039 1.7998 -7.60059 3.2002c-31.5996 -29.4004 -65.3994 -56.7002 -103.5 -76.7002c38.9004 -11.7002 76 -28.1006 111.9 -47.6006zM560.1 -6.09961c3 31.0996 -43.5 61.3994 -66.1992 54.5c-14.6006 -4.30078 -27.8008 -30.8008 -33.5 -54
|
921 |
-
c0 -23.8008 21.1992 -37.9004 40.5 -37c19.1992 0.799805 46.5 17 59.1992 36.5zM372.9 372.8c-35.7002 39.2002 -81.4004 47.7998 -126 23.5c25.1992 56.2002 122.199 48.6006 126 -23.5zM74.7998 40.9004c14.9004 1.89941 24.6006 -19.2002 18.6006 -30.8008
|
922 |
-
c-4.80078 -9.69922 -23.7002 -24.0996 -35.9004 -27.2998c-16.5 -4.59961 -32.2002 3.2998 -32.2002 14.9004c0 17.7998 33.7998 41.5996 49.5 43.2002zM290.7 217.1c-30.9004 0 -57.6006 25.7002 -50.2998 59.8008c13.1992 -20.7002 46.5 -12 46.5 11.2998
|
923 |
-
c0 10 -7 18.5996 -16.5 21.5996c31.6992 13.7998 72.1992 -8.2002 72.1992 -44.2998c0 -26.7998 -23.2998 -48.4004 -51.8994 -48.4004zM68 -26.0996c-0.5 8.39941 20.2998 23.5 29.2002 25.0996c8.59961 1.59961 12.7002 -11.4004 9.7002 -18.4004
|
924 |
-
c-2.7002 -5.69922 -10.5 -13.5 -17.3008 -16.1992c-9.39941 -3.2002 -21.0996 3 -21.5996 9.5zM501.2 40.9004c15.7002 -1.60059 49.5 -25.4004 49.5 -43.2002c0 -11.7002 -15.7002 -19.5 -32.2002 -14.9004c-12.0996 3.2002 -31.2998 17.6006 -36.2002 27.2998
|
925 |
-
c-5.7002 11.6006 4 32.7002 18.9004 30.8008zM478.8 -1c8.90039 -1.59961 30 -16.7002 29.1006 -25.0996c-0.200195 -6.5 -12.1006 -12.7002 -21.3008 -9.5c-7 2.69922 -14.8994 10.5 -17.2998 16.1992c-2.89941 7.10059 1.10059 20 9.5 18.4004z" />
|
926 |
-
<glyph glyph-name="opencart" unicode="" horiz-adv-x="640"
|
927 |
-
d="M423.3 7.2998c0 -25.2998 -20.2998 -45.5996 -45.5996 -45.5996s-45.7998 20.2998 -45.7998 45.5996s20.5996 45.7998 45.7998 45.7998c25.3994 0 45.5996 -20.5 45.5996 -45.7998zM169.4 53.0996c25.2998 0 45.7998 -20.5 45.7998 -45.7998
|
928 |
-
s-20.5 -45.5996 -45.7998 -45.5996c-25.3008 0 -45.6006 20.3994 -45.6006 45.5996s20.2998 45.7998 45.6006 45.7998zM461.1 323.1c302.2 0 169.5 -67.1992 -17.1992 -233.899c59.1992 102.8 262.5 193.899 -70.8008 188.899c-319.8 -4.69922 -338.699 92.5 -373.1 144.2
|
929 |
-
c81.9004 -86.3994 158.9 -99.2002 461.1 -99.2002z" />
|
930 |
-
<glyph glyph-name="expeditedssl" unicode="" horiz-adv-x="496"
|
931 |
-
d="M248 404.6c117.4 0 212.6 -95.1992 212.6 -212.6s-95.1992 -212.6 -212.6 -212.6s-212.6 95.1992 -212.6 212.6s95.1992 212.6 212.6 212.6zM150.6 271.7h-0.199219v-26.6006c0 -5 3.89941 -8.89941 8.89941 -8.89941h17.7002c5 0 8.90039 3.89941 8.90039 8.89941
|
932 |
-
v26.6006c0 82.0996 124 82.0996 124 0v-26.6006c0 -5 3.89941 -8.89941 8.89941 -8.89941h17.7002c5 0 8.90039 3.89941 8.90039 8.89941v26.6006c0 53.7002 -43.7002 97.3994 -97.4004 97.3994s-97.4004 -43.6992 -97.4004 -97.3994zM389.7 68v141.7
|
933 |
-
c0 9.7002 -8 17.7002 -17.7002 17.7002h-248c-9.7002 0 -17.7002 -8 -17.7002 -17.7002v-141.7c0 -9.7002 8 -17.7002 17.7002 -17.7002h248c9.7002 0 17.7002 8 17.7002 17.7002zM141.7 205.3v-132.899c0 -2.5 -1.90039 -4.40039 -4.40039 -4.40039h-8.89941
|
934 |
-
c-2.5 0 -4.40039 1.90039 -4.40039 4.40039v132.899c0 2.5 1.90039 4.40039 4.40039 4.40039h8.89941c2.5 0 4.40039 -1.90039 4.40039 -4.40039zM283.4 156.6c0 -13 -7.2002 -24.3994 -17.7002 -30.3994v-31.6006c0 -5 -3.90039 -8.89941 -8.90039 -8.89941h-17.7002
|
935 |
-
c-5 0 -8.89941 3.89941 -8.89941 8.89941v31.6006c-10.5 6.09961 -17.7002 17.3994 -17.7002 30.3994c0 19.7002 15.7998 35.4004 35.4004 35.4004c19.5996 0 35.5 -15.7998 35.5 -35.4004zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248
|
936 |
-
s111 248 248 248zM248 -38.2998c127 0 230.3 103.3 230.3 230.3s-103.3 230.3 -230.3 230.3s-230.3 -103.3 -230.3 -230.3s103.3 -230.3 230.3 -230.3z" />
|
937 |
-
<glyph glyph-name="cc-jcb" unicode="" horiz-adv-x="576"
|
938 |
-
d="M431.5 203.7v32.2998c41.2002 0 38.5 -0.200195 38.5 -0.200195c7.2998 -1.2998 13.2998 -7.2998 13.2998 -16c0 -8.7998 -6 -14.5 -13.2998 -15.7998c-1.2002 -0.400391 -3.2998 -0.299805 -38.5 -0.299805zM474.3 183.5c7.5 -1.5 13.5 -8.2998 13.5 -17
|
939 |
-
c0 -9 -6 -15.5 -13.5 -17c-2.7998 -0.700195 -3.2002 -0.5 -42.7998 -0.5v35c39.5 0 40 0.200195 42.7998 -0.5zM576 368v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h480c26.5 0 48 -21.5 48 -48zM182 255.7h-57
|
940 |
-
c0 -67.1006 10.7002 -109.7 -35.7998 -109.7c-19.5 0 -38.7998 5.7002 -57.2002 14.7998v-28c30 -8.2998 68 -8.2998 68 -8.2998c97.9004 0 82 47.7002 82 131.2zM360.5 251.2c-63.4004 16 -165 14.8994 -165 -59.2998c0 -77.1006 108.2 -73.6006 165 -59.2002v28.2998
|
941 |
-
c-47.5996 -24.7002 -107.5 -22 -107.5 31s59.7998 55.5996 107.5 31.2002v28zM544 161.5c0 18.5 -16.5 30.5 -38 32v0.799805c19.5 2.7002 30.2998 15.5 30.2998 30.2002c0 19 -15.7002 30 -37 31c0 0 6.2998 0.299805 -120.3 0.299805v-127.5h122.7
|
942 |
-
c24.2998 -0.0996094 42.2998 12.9004 42.2998 33.2002z" />
|
943 |
-
<glyph glyph-name="cc-diners-club" unicode="" horiz-adv-x="576"
|
944 |
-
d="M239.7 368.1c97.2002 0 175.8 -78.5996 175.8 -175.8c0 -96.8994 -78.5996 -175.8 -175.8 -175.8c-96.9004 0 -175.8 78.9004 -175.8 175.8c0 97.2002 78.8994 175.8 175.8 175.8zM199.8 88.5v207.9c-41.7002 -16.2002 -71.3994 -56.7002 -71.3994 -104.101
|
945 |
-
c0 -47.3994 29.6992 -87.8994 71.3994 -103.8zM279.6 88.2002c41.7002 16.2002 71.4004 56.7002 71.4004 104.1c0 47.4004 -29.7002 87.9004 -71.4004 104.101v-208.2zM528 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352
|
946 |
-
c0 26.5 21.5 48 48 48h480zM329.7 0c105 0 200.7 85.5 200.7 190.2c0 114.6 -95.7002 193.8 -200.7 193.8h-90.2998c-106.2 0 -193.801 -79.2002 -193.801 -193.8c0 -104.7 87.6006 -190.2 193.801 -190.2h90.2998z" />
|
947 |
-
<glyph glyph-name="creative-commons" unicode="" horiz-adv-x="496"
|
948 |
-
d="M245.83 233.13l-33.2197 -17.2803c-9.43066 19.5801 -25.2402 19.9307 -27.46 19.9307c-22.1309 0 -33.2207 -14.6104 -33.2207 -43.8398c0 -23.5703 9.20996 -43.8408 33.2207 -43.8408c14.4697 0 24.6494 7.09082 30.5693 21.2607l30.5498 -15.5
|
949 |
-
c-6.16992 -11.5107 -25.6895 -38.9805 -65.0996 -38.9805c-22.5996 0 -73.96 10.3203 -73.96 77.0498c0 58.6904 43 77.0605 72.6299 77.0605c30.7197 0.00976562 52.7002 -11.9502 65.9902 -35.8604zM388.88 233.13l-32.7803 -17.2803
|
950 |
-
c-9.5 19.7705 -25.7197 19.9307 -27.8994 19.9307c-22.1406 0 -33.2197 -14.6104 -33.2197 -43.8398c0 -23.5508 9.22949 -43.8408 33.2197 -43.8408c14.4502 0 24.6494 7.09082 30.54 21.2607l31 -15.5c-2.10059 -3.75 -21.3906 -38.9805 -65.0898 -38.9805
|
951 |
-
c-22.6904 0 -73.96 9.87012 -73.96 77.0498c0 58.6699 42.9697 77.0605 72.6299 77.0605c30.71 0.00976562 52.5801 -11.9502 65.5596 -35.8604zM247.56 439.95c141.82 0 248.44 -110.13 248.44 -248c0 -147.13 -118.51 -248 -248.44 -248
|
952 |
-
c-133.96 0 -247.56 109.51 -247.56 248c0 132.939 104.74 248 247.56 248zM248.43 -10.8604c103.16 0 202.83 81.1299 202.84 202.82c0 113.8 -90.2891 203.26 -202.819 203.26c-118.29 0 -203.72 -97.8496 -203.72 -203.27c0 -109.771 91.1592 -202.811 203.699 -202.811z
|
953 |
-
" />
|
954 |
-
<glyph glyph-name="gg" unicode="" horiz-adv-x="512"
|
955 |
-
d="M179.2 217.6l102.399 -102.399l-102.399 -102.4l-179.2 179.2l179.2 179.2l44.7998 -44.7998l-25.5996 -25.6006l-19.2002 19.2002l-128 -128l128 -128l51.5 51.5l-77.1006 76.5zM332.8 371.2l179.2 -179.2l-179.2 -179.2l-44.7998 44.7998l25.5996 25.6006
|
956 |
-
l19.2002 -19.2002l128 128l-128 128l-51.5 -51.5l77.1006 -76.5l-25.6006 -25.5996l-102.399 102.399z" />
|
957 |
-
<glyph glyph-name="gg-circle" unicode="" horiz-adv-x="512"
|
958 |
-
d="M257 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM207.5 65.2002l75 75.2002l-77.2002 77.1992l-24.3994 -24.3994l53.0996 -52.9004l-26.5996 -26.5996l-77.2002 77.2002l77.2002 77.1992l11.0996 -11.0996l24.2002 24.2002
|
959 |
-
l-35.2002 35.3994l-125.7 -125.699zM306.5 67.4004l125.7 125.6l-125.7 125.7l-75 -75l77.2002 -77.2002l24.3994 24.4004l-53.0996 52.8994l26.5 26.5l77.2002 -77.2002l-77.2002 -77.1992l-11.0996 11.0996l-24.1006 -24.4004z" />
|
960 |
-
<glyph glyph-name="tripadvisor" unicode="" horiz-adv-x="576"
|
961 |
-
d="M528.91 269.18c28.8652 -26.2666 46.9404 -64.1113 46.9404 -106.176c0 -0.0615234 -0.000976562 -0.12207 -0.000976562 -0.183594h0.0302734c-0.00195312 -79.4414 -64.5479 -143.928 -143.989 -143.928c-37.7363 0 -72.0996 14.5527 -97.7803 38.3477
|
962 |
-
l-46.1104 -50.1699l-46.1396 50.1992c-25.6064 -23.4443 -59.8145 -37.7793 -97.2334 -37.7793c-79.4268 0 -143.911 64.4844 -143.911 143.911c0 41.8076 17.8662 79.4756 46.374 105.778l-47.0898 51.2402h104.66c52.2266 35.5498 115.938 56.3369 183.822 56.3369
|
963 |
-
s130.95 -20.7871 183.178 -56.3369h104.34zM144.06 65.4297c53.751 0 97.3906 43.6396 97.3906 97.3906s-43.6396 97.3896 -97.3906 97.3896s-97.3896 -43.6387 -97.3896 -97.3896s43.6387 -97.3906 97.3896 -97.3906zM288 165.63c0 64.0801 46.6104 119.07 108.08 142.59
|
964 |
-
c-33.2285 13.8467 -70.0527 21.4941 -108.272 21.4941c-38.2207 0 -74.6689 -7.64746 -107.897 -21.4941c61.4697 -23.5098 108.09 -78.5 108.09 -142.59zM431.88 65.4297c53.7568 0.00292969 97.4004 43.6475 97.4004 97.4053c0 53.7598 -43.6455 97.4053 -97.4053 97.4053
|
965 |
-
c-53.7588 0 -97.4053 -43.6455 -97.4053 -97.4053c0 -53.7578 43.6436 -97.4023 97.4004 -97.4053h0.00976562zM144.06 213.88c0.0175781 0 0.0332031 -0.000976562 0.0507812 -0.000976562c28.1299 0 50.9717 -22.8242 51 -50.9492v-0.109375
|
966 |
-
c0 -28.1807 -22.8799 -51.0605 -51.0605 -51.0605s-51.0596 22.8799 -51.0596 51.0605s22.8789 51.0596 51.0596 51.0596h0.00976562zM431.88 213.88c28.1807 0 51.0605 -22.8789 51.0605 -51.0596s-22.8799 -51.0605 -51.0605 -51.0605s-51.0596 22.8799 -51.0596 51.0605
|
967 |
-
s22.8789 51.0596 51.0596 51.0596z" />
|
968 |
-
<glyph glyph-name="odnoklassniki" unicode="" horiz-adv-x="320"
|
969 |
-
d="M275.1 114c-27.3994 -17.4004 -65.0996 -24.2998 -90 -26.9004l20.9004 -20.5996l76.2998 -76.2998c27.9004 -28.6006 -17.5 -73.2998 -45.7002 -45.7002c-19.0996 19.4004 -47.0996 47.4004 -76.2998 76.5996l-76.2998 -76.5
|
970 |
-
c-28.2002 -27.5 -73.5996 17.6006 -45.4004 45.7002c19.4004 19.4004 47.1006 47.4004 76.3008 76.2998l20.5996 20.6006c-24.5996 2.59961 -62.9004 9.09961 -90.5996 26.8994c-32.6006 21 -46.9004 33.3008 -34.3008 59c7.40039 14.6006 27.7002 26.9004 54.6006 5.7002
|
971 |
-
c0 0 36.2998 -28.8994 94.8994 -28.8994c58.6006 0 94.9004 28.8994 94.9004 28.8994c26.9004 21.1006 47.0996 8.90039 54.5996 -5.7002c12.4004 -25.6992 -1.89941 -38 -34.5 -59.0996zM30.2998 318.3c0 71.7002 58.2998 129.7 129.7 129.7s129.7 -58 129.7 -129.7
|
972 |
-
c0 -71.3994 -58.2998 -129.399 -129.7 -129.399s-129.7 58 -129.7 129.399zM96.2998 318.3c0 -35.0996 28.6006 -63.7002 63.7002 -63.7002s63.7002 28.6006 63.7002 63.7002c0 35.4004 -28.6006 64 -63.7002 64s-63.7002 -28.5996 -63.7002 -64z" />
|
973 |
-
<glyph glyph-name="odnoklassniki-square" unicode=""
|
974 |
-
d="M184.2 270.9c0 22.0996 17.8994 40 39.7998 40s39.7998 -17.9004 39.7998 -40c0 -22 -17.8994 -39.8008 -39.7998 -39.8008s-39.7998 17.9004 -39.7998 39.8008zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352
|
975 |
-
c26.5 0 48 -21.5 48 -48zM142.9 270.9c0 -44.6006 36.3994 -80.9004 81.0996 -80.9004s81.0996 36.2002 81.0996 80.9004c0 44.7998 -36.3994 81.0996 -81.0996 81.0996s-81.0996 -36.2002 -81.0996 -81.0996zM317.4 180.2
|
976 |
-
c-4.60059 9.09961 -17.3008 16.7998 -34.1006 3.59961c0 0 -22.7002 -18 -59.2998 -18s-59.2998 18 -59.2998 18c-16.7998 13.2002 -29.5 5.5 -34.1006 -3.59961c-7.89941 -16.1006 1.10059 -23.7002 21.4004 -37c17.2998 -11.1006 41.2002 -15.2002 56.5996 -16.7998
|
977 |
-
l-12.8994 -12.9004c-18.2002 -18 -35.5 -35.5 -47.7002 -47.7002c-17.5996 -17.5996 10.7002 -45.7998 28.4004 -28.5996l47.6992 47.8994c18.2002 -18.1992 35.7002 -35.6992 47.7002 -47.8994c17.6006 -17.2002 46 10.7002 28.6006 28.5996l-47.7002 47.7002l-13 12.9004
|
978 |
-
c15.5 1.59961 39.0996 5.89941 56.2002 16.7998c20.3994 13.2998 29.2998 21 21.5 37z" />
|
979 |
-
<glyph glyph-name="get-pocket" unicode=""
|
980 |
-
d="M407.6 384c22.7002 0 40.4004 -18.2002 40.4004 -40.5996v-135.2c0 -124.7 -99.7998 -224.2 -223.8 -224.2c-124.5 0 -224.2 99.5 -224.2 224.2v135.2c0 22.0996 18.5 40.5996 40.5996 40.5996h367zM245.6 115.5c111.9 107.5 114.801 105.4 114.801 123.2
|
981 |
-
c0 16.8994 -13.8008 30.7002 -30.7002 30.7002c-16.9004 0 -14.9004 -2.40039 -105.5 -89.3008c-89.1006 85.5 -88.2002 89.3008 -105.2 89.3008c-16.9004 0 -30.7002 -13.8008 -30.7002 -30.7002c0 -18.1006 1.2002 -14.2998 114.9 -123.2
|
982 |
-
c11 -11.0996 30 -11.7998 42.3994 0z" />
|
983 |
-
<glyph glyph-name="wikipedia-w" unicode="" horiz-adv-x="640"
|
984 |
-
d="M640 396.8l-0.299805 -12.2002c-28.1006 -0.799805 -45 -15.7998 -55.7998 -40.2998c-25 -57.7998 -103.301 -240 -155.301 -358.6h-13.5996l-81.9004 193.1c-32.5 -63.5996 -68.2998 -130 -99.1992 -193.1c-0.300781 -0.299805 -15 0 -15 0.299805
|
985 |
-
c-46.9004 109.7 -96.1006 218.6 -143.101 328.6c-11.3994 26.7002 -49.3994 70 -75.5996 69.7002c0 3.10059 -0.299805 10 -0.299805 14.2002h161.899v-13.9004c-19.2002 -1.09961 -52.7998 -13.2998 -43.2998 -34.1992c21.9004 -49.7002 103.6 -240.301 125.6 -288.601
|
986 |
-
c15 29.7002 57.8008 109.2 75.3008 142.8c-13.9004 28.3008 -58.6006 133.9 -72.8008 160c-9.69922 17.8008 -36.0996 19.4004 -55.7998 19.7002v13.9004l142.5 -0.299805v-13.1006c-19.3994 -0.599609 -38.0996 -7.7998 -29.3994 -26.0996
|
987 |
-
c18.8994 -40 30.5996 -68.1006 48.0996 -104.7c5.59961 10.7998 34.7002 69.4004 48.0996 100.8c8.90039 20.6006 -3.89941 28.6006 -38.5996 29.4004c0.299805 3.59961 0 10.2998 0.299805 13.5996c44.4004 0.299805 111.101 0.299805 123.101 0.600586v-13.6006
|
988 |
-
c-22.5 -0.799805 -45.8008 -12.7998 -58.1006 -31.7002l-59.2002 -122.8c6.40039 -16.0996 63.3008 -142.8 69.2002 -156.7l122.4 282.601c-8.60059 23.0996 -36.4004 28.0996 -47.2002 28.2998v13.9004l127.8 -1.10059z" />
|
989 |
-
<glyph glyph-name="safari" unicode="" horiz-adv-x="512"
|
990 |
-
d="M274.69 173.31l-108.69 -71.3096l71.3096 108.69zM256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM411.85 265.21c-2.88672 -1.20801 -4.9082 -4.0625 -4.9082 -7.38574c0 -1.08496 0.21582 -2.12012 0.608398 -3.06445v0
|
991 |
-
c1.20215 -2.90039 4.06348 -4.93457 7.39648 -4.93457c1.08105 0 2.1123 0.214844 3.05371 0.604492l14.75 6.11035c2.90234 1.20117 4.93848 4.06348 4.93848 7.39746c0 1.08496 -0.216797 2.11914 -0.608398 3.0625v0c-1.2002 2.90527 -4.06348 4.94336 -7.39941 4.94336
|
992 |
-
c-1.08008 0 -2.11035 -0.214844 -3.05078 -0.603516zM314.43 354c-0.396484 -0.949219 -0.625 -1.99219 -0.625 -3.08496c0 -3.33398 2.04395 -6.19336 4.94531 -7.39551v0c0.941406 -0.388672 1.97461 -0.613281 3.05566 -0.613281
|
993 |
-
c3.33301 0 6.19238 2.04297 7.39453 4.94336l6.12988 14.7803c0.389648 0.941406 0.613281 1.97461 0.613281 3.05566c0 3.33301 -2.04297 6.19238 -4.94336 7.39453v0c-0.944336 0.392578 -1.98047 0.618164 -3.06641 0.618164
|
994 |
-
c-3.32324 0 -6.17578 -2.03125 -7.38379 -4.91797zM256 388c-4.41504 0 -8 -3.58496 -8 -8v-16c0 -4.41504 3.58496 -8 8 -8v0c4.41504 0 8 3.58496 8 8v16c0 4.41504 -3.58496 8 -8 8v0zM181 373.08c-2.89941 -1.20215 -4.93262 -4.0625 -4.93262 -7.39551
|
995 |
-
c0 -1.06934 0.210938 -2.09082 0.592773 -3.02441l6.12988 -14.7803c1.16504 -2.97754 4.05762 -5.07812 7.44531 -5.07812c4.41602 0 8 3.58496 8 8c0 1.13672 -0.237305 2.21875 -0.665039 3.19824l-6.11035 14.75c-1.20117 2.90234 -4.06348 4.93848 -7.39746 4.93848
|
996 |
-
c-1.08496 0 -2.11914 -0.216797 -3.0625 -0.608398zM117.42 330.59c-1.44727 -1.44824 -2.35254 -3.44922 -2.35254 -5.65625c0 -2.19141 0.883789 -4.17773 2.3125 -5.62402l11.3105 -11.3096c1.44727 -1.44727 3.44922 -2.34277 5.65527 -2.34277
|
997 |
-
c2.20703 0 4.20605 0.895508 5.6543 2.34277v0c1.43848 1.44629 2.32715 3.44238 2.32715 5.6416c0 2.19824 -0.888672 4.19141 -2.32715 5.63867l-11.2695 11.3096c-1.44824 1.44727 -3.4502 2.34277 -5.65625 2.34277c-2.20703 0 -4.20605 -0.895508 -5.6543 -2.34277v0z
|
998 |
-
M60 192c0 -4.41504 3.58496 -8 8 -8h16c4.41504 0 8 3.58496 8 8v0c0 4.41504 -3.58496 8 -8 8h-16c-4.41504 0 -8 -3.58496 -8 -8v0zM100.15 118.79c2.88672 1.20801 4.9082 4.0625 4.9082 7.38574c0 1.08496 -0.21582 2.12012 -0.608398 3.06445v0
|
999 |
-
c-1.20215 2.90039 -4.06348 4.93457 -7.39648 4.93457c-1.08105 0 -2.1123 -0.214844 -3.05371 -0.604492l-14.75 -6.11035c-2.90234 -1.20117 -4.93848 -4.06348 -4.93848 -7.39746c0 -1.08496 0.216797 -2.11914 0.608398 -3.0625v0
|
1000 |
-
c1.2002 -2.90527 4.06348 -4.94336 7.39941 -4.94336c1.08008 0 2.11035 0.214844 3.05078 0.603516zM104.48 254.79c0.386719 0.939453 0.609375 1.93945 0.609375 3.0166c0 3.33203 -2.04102 6.19043 -4.93945 7.39355l-14.7803 6.12988
|
1001 |
-
c-0.941406 0.389648 -1.97461 0.613281 -3.05566 0.613281c-3.33301 0 -6.19238 -2.04297 -7.39453 -4.94336v0c-0.392578 -0.944336 -0.618164 -1.98047 -0.618164 -3.06641c0 -3.32324 2.03125 -6.17578 4.91797 -7.38379l14.7803 -6.12012
|
1002 |
-
c0.945312 -0.393555 1.9834 -0.619141 3.07129 -0.619141c3.34668 0 6.21582 2.05957 7.40918 4.97949v0zM197.57 30c0.427734 0.979492 0.672852 2.07129 0.672852 3.20801c0 4.41602 -3.58496 8 -8 8c-3.38867 0 -6.28809 -2.11035 -7.45312 -5.08789l-6.12988 -14.7803
|
1003 |
-
c-0.389648 -0.941406 -0.611328 -1.9834 -0.611328 -3.06543c0 -4.41699 3.58594 -8.00293 8.00293 -8.00293c3.33496 0 6.19727 2.04492 7.39844 4.94824zM264 4v16c0 4.41504 -3.58496 8 -8 8v0c-4.41504 0 -8 -3.58496 -8 -8v-16c0 -4.41504 3.58496 -8 8 -8v0
|
1004 |
-
c4.41504 0 8 3.58496 8 8zM331 10.9199c2.89941 1.20215 4.93262 4.0625 4.93262 7.39551c0 1.06934 -0.210938 2.09082 -0.592773 3.02441l-6.12988 14.7803c-1.20215 2.90039 -4.06348 4.93457 -7.39648 4.93457c-1.08105 0 -2.1123 -0.214844 -3.05371 -0.604492v0
|
1005 |
-
c-2.90039 -1.20215 -4.93457 -4.06348 -4.93457 -7.39648c0 -1.08105 0.214844 -2.1123 0.604492 -3.05371l6.11035 -14.75c1.20117 -2.90234 4.06348 -4.93848 7.39746 -4.93848c1.08496 0 2.11914 0.216797 3.0625 0.608398v0zM394.58 53.4102
|
1006 |
-
c1.44727 1.44824 2.35254 3.44922 2.35254 5.65625c0 2.19141 -0.883789 4.17773 -2.3125 5.62402l-11.3105 11.3096c-1.44727 1.44727 -3.44922 2.34277 -5.65527 2.34277c-2.20703 0 -4.20605 -0.895508 -5.6543 -2.34277v0
|
1007 |
-
c-1.43848 -1.44629 -2.32715 -3.44238 -2.32715 -5.6416c0 -2.19824 0.888672 -4.19141 2.32715 -5.63867l11.2695 -11.3096c1.44824 -1.44727 3.4502 -2.34277 5.65625 -2.34277c2.20703 0 4.20605 0.895508 5.6543 2.34277v0zM286.25 161.75l115.41 175.91
|
1008 |
-
l-175.91 -115.41l-115.41 -175.91zM437.08 117c0.392578 0.944336 0.618164 1.98047 0.618164 3.06641c0 3.32324 -2.03125 6.17578 -4.91797 7.38379l-14.7803 6.12012c-0.949219 0.396484 -1.99219 0.625 -3.08496 0.625c-3.33398 0 -6.19336 -2.04395 -7.39551 -4.94531
|
1009 |
-
v0c-0.388672 -0.941406 -0.613281 -1.97461 -0.613281 -3.05566c0 -3.33301 2.04297 -6.19238 4.94336 -7.39453l14.7803 -6.12988c0.941406 -0.389648 1.97461 -0.613281 3.05566 -0.613281c3.33301 0 6.19238 2.04297 7.39453 4.94336v0zM444 184c4.41504 0 8 3.58496 8 8
|
1010 |
-
v0c0 4.41504 -3.58496 8 -8 8h-16c-4.41504 0 -8 -3.58496 -8 -8v0c0 -4.41504 3.58496 -8 8 -8h16z" />
|
1011 |
-
<glyph glyph-name="chrome" unicode="" horiz-adv-x="496"
|
1012 |
-
d="M131.5 230.5l-76.4004 117.4c47.6006 59.1992 119 91.7998 192 92.0996c42.3008 0.299805 85.5 -10.5 124.801 -33.2002c43.3994 -25.2002 76.3994 -61.3994 97.3994 -103l-205.3 10.7998c-58.0996 3.40039 -113.4 -29.2998 -132.5 -84.0996zM164.4 192
|
1013 |
-
c0 46.2998 37.3994 83.5996 83.5996 83.5996s83.5996 -37.3994 83.5996 -83.5996s-37.3994 -83.5996 -83.5996 -83.5996s-83.5996 37.3994 -83.5996 83.5996zM479.3 281.2c43.5 -111.9 0 -241.9 -107.399 -303.9c-43.4004 -25.2002 -91.3008 -35.3994 -137.801 -32.8994
|
1014 |
-
l112.101 172.399c31.8994 49 31.2998 112.9 -6.60059 157.2zM133.7 144.4c26.2998 -51.7002 81.8994 -83.3008 139.5 -72.5l-63.7002 -124.801c-118.7 18.2002 -209.5 120.9 -209.5 244.9c0 50.0996 14.9004 96.9004 40.4004 135.9z" />
|
1015 |
-
<glyph glyph-name="firefox" unicode="" horiz-adv-x="512"
|
1016 |
-
d="M503.52 206.52c0.240234 -4.43945 0.360352 -9 0.480469 -13.5195c0 -137.19 -111.23 -248.42 -248.32 -248.42c-122.779 0 -224.859 89.2695 -244.779 206.38c-0.360352 3.24023 -0.720703 6.36035 -1.08008 9.59961c-4.91992 42.6006 0.479492 87.3604 16.0801 124.79
|
1017 |
-
c10.7998 25.8809 32.6396 54 49.7998 62.8809c-16.2002 -31.8008 -24.1201 -63 -25.7998 -83.8809c11.2793 37.2002 32.6299 68.3604 62.5098 90.3604c51.2402 37.6699 120.229 39.3604 147.71 15.3604c-51 -17.5107 -106.55 -87.96 -94.3105 -170.511
|
1018 |
-
c2.00586 -13.791 6.21289 -27.1582 12.1201 -39.2393c-9.51953 25.0801 -10.3594 60.3594 5 83.2793c17.1602 25.5508 41.6299 30.9502 54.71 28.1904c-5.15918 1.08008 -16.5596 -20.75 -18.2393 -24.5898c-3.99609 -9.09863 -6.25098 -19.1865 -6.25098 -29.7539
|
1019 |
-
c0 -0.416016 0.00390625 -0.832031 0.0107422 -1.24609c0.392578 -23.1182 10.1045 -44.0088 25.5596 -59c47.6504 -46.4307 124.561 -28.1602 159 24.8398c23.6406 36.4795 26.5205 98.3896 -3.83984 147.59c-7.62891 12.0801 -16.5693 22.9639 -26.8799 32.7598
|
1020 |
-
c-47.6602 45.4707 -116.06 64.6699 -180.24 52.9902c-0.240234 0 -0.599609 -0.120117 -0.839844 -0.120117c-1.7998 -0.359375 -3.47949 -0.719727 -5.16016 -1.08008c-0.359375 -0.120117 -0.839844 -0.120117 -1.2002 -0.239258l-5.87988 -1.44043
|
1021 |
-
c-14.5195 -3.55957 -34.7998 -10.7998 -49.4395 -19.5596c-0.09375 -0.0136719 -0.176758 -0.0566406 -0.240234 -0.120117l0.120117 0.120117c0 -0.0664062 -0.0537109 -0.120117 -0.120117 -0.120117l-0.120117 -0.120117l0.120117 0.120117h-0.129883l0.479492 0.479492
|
1022 |
-
c0.480469 0.480469 1.32031 1.16016 2.40039 2.16016c19.6797 17.7598 49.3203 31.9199 82.9102 39c14.7383 3.09766 29.8691 4.81543 45.4795 5h10.6299c12.9863 -0.311523 25.6123 -1.67188 38 -4c0.960938 -0.120117 1.76074 -0.360352 2.76074 -0.479492h0.120117
|
1023 |
-
c1.7998 -0.360352 3.71973 -0.84082 5.63965 -1.2002c19.2676 -4.375 38.0977 -11.0762 55.4297 -19.5605c2.40039 -1.2002 4.7998 -2.39941 7.2002 -3.71973c8.6748 -4.32129 16.8906 -9.37891 24.5996 -15.1201c4.32031 -3.12012 8.48047 -6.36035 12.4805 -9.83984
|
1024 |
-
c6.50781 -5.19434 12.5332 -10.6973 18.29 -16.7002c8.51074 -8.35645 16.2646 -17.1406 23.5098 -26.6396c0.959961 -1.2002 1.75977 -2.40039 2.75977 -3.71973c0.400391 -0.480469 0.640625 -0.84082 1 -1.32031l1.80078 -2.52051
|
1025 |
-
c0.359375 -0.479492 0.719727 -1.08008 1.08008 -1.55957c0.479492 -0.719727 1.0791 -1.56055 1.55957 -2.28027c0.441406 -0.571289 0.839844 -1.16992 1.2002 -1.7998l1.43945 -2.12988c0.441406 -0.571289 0.84082 -1.16992 1.2002 -1.7998
|
1026 |
-
c0.480469 -0.720703 0.959961 -1.56055 1.32031 -2.16016c0.359375 -0.600586 0.839844 -1.24023 1.2002 -1.91992c0.359375 -0.680664 0.839844 -1.32031 1.19922 -2c0.360352 -0.680664 0.84082 -1.28027 1.2002 -2c0.441406 -0.638672 0.842773 -1.30566 1.2002 -2
|
1027 |
-
c0.360352 -0.720703 0.839844 -1.56055 1.2002 -2.16016c0.359375 -0.599609 0.719727 -1.32031 1.08008 -1.91992c0.359375 -0.839844 0.799805 -1.67969 1.2002 -2.28027c0.399414 -0.599609 0.639648 -1.2002 1 -1.7998
|
1028 |
-
c0.359375 -0.839844 0.839844 -1.56055 1.19922 -2.40039c0.240234 -0.479492 0.480469 -1.08008 0.720703 -1.55957c0.479492 -0.839844 0.839844 -1.63965 1.31934 -2.63965l0.360352 -0.720703c1.75977 -3.71973 3.44043 -7.55957 5 -11.3994
|
1029 |
-
c0 -0.120117 0.120117 -0.240234 0.120117 -0.360352c0.439453 -1.2002 0.959961 -2.28027 1.43945 -3.48047c0.120117 -0.239258 0.240234 -0.599609 0.360352 -0.839844c0.480469 -1.08008 0.839844 -2.2793 1.32031 -3.35938
|
1030 |
-
c0.138672 -0.321289 0.261719 -0.660156 0.359375 -1c0.360352 -1.08008 0.84082 -2.28027 1.2002 -3.36035l0.360352 -1.08008c0.479492 -1.2002 0.839844 -2.28027 1.2002 -3.47949c0.119141 -0.400391 0.239258 -0.640625 0.359375 -1
|
1031 |
-
c0.360352 -1.08008 0.720703 -2.28027 1.08008 -3.48047c0.120117 -0.240234 0.120117 -0.599609 0.240234 -0.839844c0.360352 -1.2002 0.719727 -2.52051 1.08008 -3.71973c0.120117 -0.120117 0.120117 -0.360352 0.240234 -0.600586l1.08008 -4
|
1032 |
-
c0.119141 -0.120117 0.119141 -0.120117 0.119141 -0.240234c3.54297 -13.2549 6.04102 -27.1152 7.32031 -41.1494v-0.120117l0.360352 -4.67969v-0.120117c0 -1.56055 0.120117 -3.12012 0.239258 -4.68066z" />
|
1033 |
-
<glyph glyph-name="opera" unicode="" horiz-adv-x="496"
|
1034 |
-
d="M313.9 415.3c-170.2 0 -252.601 -223.8 -147.5 -355.1c36.5 -45.4004 88.5996 -75.6006 147.5 -75.6006c36.2998 0 70.2998 11.1006 99.3994 30.4004c-43.7998 -39.2002 -101.899 -63 -165.3 -63c-3.90039 0 -8 0 -11.9004 0.299805
|
1035 |
-
c-131.5 6.10059 -236.1 114.601 -236.1 247.7c0 137 111 248 248 248h0.799805c63.1006 -0.299805 120.7 -24.0996 164.4 -63.0996c-29 19.3994 -63.1006 30.3994 -99.2998 30.3994zM415.7 17.5996c-40.9004 -24.6992 -90.7002 -23.5996 -132 5.80078
|
1036 |
-
c56.2002 20.5 97.7002 91.5996 97.7002 176.6c0 84.7002 -41.2002 155.8 -97.4004 176.6c41.7998 29.2002 91.2002 30.3008 132.9 5c105.899 -98.6992 105.5 -265.699 -1.2002 -364z" />
|
1037 |
-
<glyph glyph-name="internet-explorer" unicode="" horiz-adv-x="512"
|
1038 |
-
d="M483.049 288.294c25.1963 -45.4473 33.2578 -97.5811 26.8516 -141.162h-328.792c0 -100.432 144.31 -136.029 196.818 -47.4355h120.833c-32.5645 -91.7285 -119.689 -146.022 -216.813 -146.022c-35.1367 0 -70.2725 0.143555 -101.695 15.5732
|
1039 |
-
c-87.3975 -44.4941 -180.251 -56.5693 -180.251 42.0059c0 45.8066 23.2461 107.096 43.9922 145.022c35.1357 63.7227 81.4121 124.875 135.687 173.168c-43.7061 -18.8604 -91.125 -66.2959 -121.977 -101.158c25.877 112.787 129.466 193.638 237.098 186.457
|
1040 |
-
c130.032 59.7939 209.673 34.1445 209.673 -38.5771c0 -27.4326 -10.5684 -63.2959 -21.4238 -87.8711zM64.5586 101.123c-73.001 -152.4 11.5254 -172.244 100.267 -123.304c-46.5635 27.4326 -82.5557 72.1533 -100.267 123.304zM180.536 209.996h207.961
|
1041 |
-
c-2 55.1514 -50.5635 94.8711 -103.981 94.8711c-53.7041 0 -101.979 -39.7197 -103.979 -94.8711zM365.072 397.596c46.2764 -18.002 85.9824 -57.2939 112.263 -99.5859c7.1416 18.8604 14.5693 47.8643 14.5693 67.8672c0 32.0049 -22.8525 53.7217 -54.2744 53.7217
|
1042 |
-
c-23.9951 0 -51.1328 -11.7158 -72.5576 -22.0029z" />
|
1043 |
-
<glyph glyph-name="contao" unicode="" horiz-adv-x="512"
|
1044 |
-
d="M45.4004 143c14.3994 -67.0996 26.3994 -129 68.1992 -175h-79.5996c-18.7002 0 -34 15.2002 -34 34v380c0 18.7002 15.2002 34 34 34h57.7002c-13.7998 -12.5996 -26.1006 -27.2002 -36.9004 -43.5996c-45.3994 -70 -27 -146.801 -9.39941 -229.4zM478 416
|
1045 |
-
c18.7998 0 34 -15.2002 34 -34v-380.1c0 -18.8008 -15.2998 -34 -34 -34h-52.0996c38.6992 38.3994 60.5996 92.0996 57.3994 163.6l-137.399 -29.5996c-1.7002 -32.5 -12.9004 -63.8008 -57.4004 -73.2002c-24.9004 -5.2998 -45.4004 0.599609 -58.2998 11.7002
|
1046 |
-
c-15.7998 13.5 -28.4004 31 -49.5 131.199c-21.4004 100.5 -17 121.601 -8.2002 140.301c7.2998 15.2998 23.7002 29.2998 48.2998 34.5996c44.7998 9.40039 67.7002 -14.9004 82.6006 -43.9004l137.1 29.3008c-13.5 34.5996 -31.2998 62.6992 -52.7002 84.0996h90.2002z
|
1047 |
-
" />
|
1048 |
-
<glyph glyph-name="500px" unicode=""
|
1049 |
-
d="M103.3 103.7c-6.5 14.2002 -6.89941 18.2998 7.40039 23.0996c25.5996 8 8 -9.2002 43.2002 -49.2002h0.299805v93.9004c1.2002 50.2002 44 92.2002 97.7002 92.2002c53.8994 0 97.6992 -43.5 97.6992 -96.7998c0 -63.4004 -60.7998 -113.2 -128.5 -93.3008
|
1050 |
-
c-10.5 4.2002 -2.09961 31.7002 8.5 28.6006c53 0 89.4004 10.0996 89.4004 64.3994c0 61 -77.0996 89.6006 -116.9 44.6006c-23.5 -26.4004 -17.5996 -42.1006 -17.5996 -157.601c50.7002 -31 118.3 -22 160.4 20.1006c24.7998 24.7998 38.5 58 38.5 93
|
1051 |
-
c0 35.2002 -13.8008 68.2002 -38.8008 93.2998c-24.7998 24.7998 -57.7998 38.5 -93.2998 38.5s-68.7998 -13.7998 -93.5 -38.5c-0.299805 -0.299805 -16 -16.5 -21.2002 -23.9004l-0.5 -0.599609c-3.2998 -4.7002 -6.2998 -9.09961 -20.0996 -6.09961
|
1052 |
-
c-6.90039 1.69922 -14.2998 5.7998 -14.2998 11.7998v186.8c0 5 3.89941 10.5 10.5 10.5h241.3c8.2998 0 8.2998 -11.5996 8.2998 -15.0996c0 -3.90039 0 -15.1006 -8.2998 -15.1006h-223.2v-132.899h0.299805c104.2 109.8 282.801 36 282.801 -108.9
|
1053 |
-
c0 -178.1 -244.801 -220.3 -310.101 -62.7998zM166.6 364.5c3.80078 18.7998 145.101 50.7998 238.301 -38.2002c8.5 -7.5 -9.5 -22.7998 -14.3008 -22.7998c-6.59961 0 -84.5996 87.9004 -209.399 40.4004c-10 -3.90039 -15.1006 16.3994 -14.6006 20.5996zM393 33.2998
|
1054 |
-
c8.09961 8 27.5996 -12.5996 20.7002 -20.3994c-135.601 -135.601 -357.601 -52.1006 -381.601 121.3c-1.5 10.7002 28.9004 15.5 28.9004 3.2998c33 -165 222 -214.1 332 -104.2zM213.6 141.4c0 3.39941 2.30078 4.69922 20.4004 22.5996l-18.2002 18.2002
|
1055 |
-
c-5.59961 5.59961 7.40039 17.2998 12.4004 17.2998c3.09961 0 2.89941 -0.700195 21.5 -19.5l17.8994 17.9004c6.10059 6.09961 22.5 -8.90039 16.2002 -15.7002l-18.2002 -18.2002l17.3008 -17.2998c7.7998 -7.7998 -5.30078 -18.2002 -10.7002 -18.2002
|
1056 |
-
c-3.2002 0 -2.7002 0.200195 -22.2998 19.5c-19.7002 -19.7002 -18.5 -19.5 -22.3008 -19.5c-2.39941 0 -5.5 1.40039 -8.5 4.40039c-1.19922 1.19922 -5.5 4.5 -5.5 8.5z" />
|
1057 |
-
<glyph glyph-name="amazon" unicode=""
|
1058 |
-
d="M257.2 285.3c0 39.2998 5.2002 69.2002 -35.5 69.1006c0 0 -37.9004 0 -54.2002 -49.5l-73.5 6.7998c0 49.2998 46.7002 104.3 134.7 104.3c87.7998 0 112.3 -57 112.3 -82.2998v-147.101c0 -27.5 32.2998 -52.7998 32.2998 -52.7998l-56.7998 -56
|
1059 |
-
c-9.90039 9.2998 -38.7998 36.6006 -45.2998 46.7998c-45.2002 -70.7998 -183.5 -66.2998 -183.5 43.2002c0 102 120.8 115.7 169.5 117.5zM257.2 198.5v40.5996c-33.7002 -1.09961 -84.2002 -10.5996 -84.2002 -57.7998c0 -50.7998 84.2002 -62.7998 84.2002 17.2002z
|
1060 |
-
M393.2 35c-7.7002 -10 -70 -67 -174.5 -67s-184.5 71.5 -209 101c-6.7998 7.7002 1 11.2998 5.5 8.2998c73.2998 -44.5 187.8 -117.8 372.5 -30.2998c7.5 3.7002 13.2998 -2 5.5 -12zM433 32.7998c-6.5 -15.7998 -16 -26.7998 -21.2002 -31
|
1061 |
-
c-5.5 -4.5 -9.5 -2.7002 -6.5 3.7998s19.2998 46.5 12.7002 55c-6.5 8.30078 -37 4.30078 -48 3.2002c-10.7998 -1 -13 -2 -14 0.299805c-2.2998 5.7002 21.7002 15.5 37.5 17.5c15.7002 1.80078 41 0.800781 46 -5.69922c3.7002 -5.10059 0 -27.1006 -6.5 -43.1006z" />
|
1062 |
-
<glyph glyph-name="houzz" unicode=""
|
1063 |
-
d="M275.9 117.3h-104.601v-149.3h-154.3v448h109.5v-104.5l305.1 -85.5996v-257.9h-155.699v149.3z" />
|
1064 |
-
<glyph glyph-name="vimeo-v" unicode=""
|
1065 |
-
d="M447.8 294.4c-2 -43.6006 -32.3994 -103.301 -91.3994 -179.101c-60.9004 -79.2002 -112.4 -118.8 -154.601 -118.8c-26.0996 0 -48.2002 24.0996 -66.2998 72.2998c-35.2002 129.2 -50.2002 204.9 -79.2998 204.9c-3.40039 0 -15.1006 -7.10059 -35.2002 -21.1006
|
1066 |
-
l-21 27.2002c51.5996 45.2998 100.9 95.7002 131.8 98.5c34.9004 3.40039 56.2998 -20.5 64.4004 -71.5c28.7002 -181.5 41.3994 -208.899 93.5996 -126.7c18.7002 29.6006 28.7998 52.1006 30.2002 67.6006c4.7998 45.8994 -35.7998 42.7998 -63.2998 31
|
1067 |
-
c22 72.0996 64.0996 107.1 126.2 105.1c45.7998 -1.2002 67.5 -31.0996 64.8994 -89.3994z" />
|
1068 |
-
<glyph glyph-name="black-tie" unicode=""
|
1069 |
-
d="M0 416h448v-448h-448v448zM316.5 90.7998l-64.5 184l64.4004 86.6006h-184.9l64.5 -86.6006l-64.5 -184l92.5 -88.7002z" />
|
1070 |
-
<glyph glyph-name="fonticons" unicode=""
|
1071 |
-
d="M0 416h448v-448h-448v448zM187 275.1c11.9004 0 16.5996 -4.2998 16.2998 -23l50.7002 6.10059c0 44.5996 -30.5996 52.7998 -64.7002 52.7998c-50.7998 0 -77.2998 -20.4004 -77.2998 -70v-21h-28v-37.4004h22.2002c2.89941 0 5.7998 0 5.7998 -2.2998v-111.399
|
1072 |
-
c0 -5.60059 -1.5 -7.30078 -6.7002 -7.90039l-21.2998 -2v-25.7002h130.7v25.1006l-43.5 4.09961c-5.2002 0.599609 -3.2002 1.5 -3.2002 7.2998v112.9h55.7002l11.0996 37.2998h-67.3994c-2.90039 0 0.599609 2 0.599609 4.40039v23.2998
|
1073 |
-
c0 17.5 0.599609 27.3994 19 27.3994zM261.3 33.2998h102.601v25.1006l-15.7002 2.59961c-5.5 0.900391 -2.90039 1.5 -2.90039 7.2998v151.7h-80.2002l-6.69922 -29.5l24.1992 -6.40039c3.80078 -1.19922 6.7002 -3.7998 6.7002 -7.89941v-107.9
|
1074 |
-
c0 -5.59961 -2.39941 -6.7002 -7.59961 -7.2998l-20.4004 -2.59961v-25.1006zM342.1 288.8l21.9004 24.2002l-3.5 9.59961h-27.7002l-15.5 28h-9.2998l-15.5 -28h-27.7002l-3.5 -9.59961l21.7998 -24.2002l-9 -33.2002l7.30078 -7.2998l31.1992 16.6006l31.2002 -16.6006
|
1075 |
-
l7.2998 7.2998z" />
|
1076 |
-
<glyph glyph-name="reddit-alien" unicode="" horiz-adv-x="512"
|
1077 |
-
d="M440.3 244.5c55.2998 0 73.7002 -74.0996 23.7998 -99.7002c2.2002 -7.89941 3.10059 -16.7002 3.10059 -25.0996c0 -83.7998 -94.4004 -151.7 -210.8 -151.7c-115.9 0 -210.301 67.9004 -210.301 151.7c0 8.39941 0.800781 16.7998 2.60059 24.7002
|
1078 |
-
c-50.9004 25.5 -32.7002 100.1 22.8994 100.1c15 0 28.7002 -6.2002 38.4004 -16.2998c35.7998 24.7002 83.4004 40.5996 136.3 42.7998l30.4004 137.6c1.2998 4.90039 6.09961 8.40039 11 7.10059l97.3994 -21.6006c6.60059 12.7002 19.9004 22 35.3008 22
|
1079 |
-
c22.0996 0 39.6992 -18.0996 39.6992 -39.6992c0 -21.6006 -17.6992 -39.7002 -39.6992 -39.7002c-21.6006 0 -39.2002 17.5996 -39.2002 39.2002l-88.2002 19.7998l-27.7002 -124.8c53.2998 -1.7002 101.4 -17.6006 137.101 -42.3008
|
1080 |
-
c9.69922 9.7002 22.8994 15.9004 37.8994 15.9004zM129.4 139.1c0 -21.5996 17.6992 -39.2998 39.6992 -39.1992c21.6006 0 39.2002 17.5996 39.2002 39.1992c0 22.1006 -17.5996 39.7002 -39.2002 39.7002c-22.0996 0 -39.6992 -17.7002 -39.6992 -39.7002zM343.7 45.5996
|
1081 |
-
c4 3.5 4 9.7002 -0.100586 13.7002c-3.5 3.5 -9.69922 3.5 -13.1992 0c-29 -29 -121.2 -28.5 -149 0c-3.5 3.5 -9.7002 3.5 -13.2002 0c-4 -4 -4 -10.2002 0 -13.7002c36.3994 -36.3994 139.1 -36.3994 175.5 0zM342.9 99.7998c22 0 39.5996 17.7002 39.6992 39.2002
|
1082 |
-
c0 22.0996 -17.6992 39.7002 -39.6992 39.7002c-21.6006 0 -39.2002 -17.7002 -39.2002 -39.7002c0 -21.5996 17.5996 -39.2002 39.2002 -39.2002z" />
|
1083 |
-
<glyph glyph-name="edge" unicode="" horiz-adv-x="512"
|
1084 |
-
d="M481.92 313.52c6.46973 -12.7793 22.4697 -41.6494 21.9697 -85.0791c-0.0917969 -43.7148 -23.6953 -81.8525 -58.9492 -102.44c-17.1387 -10.1797 -37.2617 -16.1211 -58.6104 -16.1797c-0.139648 0 -52.6504 -2.56055 -80.5098 16.8096
|
1085 |
-
c-5.85059 4.08008 -9.14062 8.94043 -9.14062 14c0 6.16016 4.82031 9 6.39062 11c9.7998 12.75 15.1094 28.1699 15.1094 38.5703c0 32.71 -11 59.2998 -33 83.0996c-1.16016 1.25 -42.9795 50.1807 -122.25 50.1807c-63.2393 0 -123.46 -32.6504 -149.46 -79.1406
|
1086 |
-
c24.04 111.98 123.58 195.66 242.44 195.66c96.3496 0 184.96 -46.1797 226.01 -126.48zM212.77 -27.6699c1.28027 -0.570312 29.0107 -20.5898 67.1309 -27.21c-7.89551 -0.759766 -15.5156 -1.3584 -23.6084 -1.3584c-99.3408 0 -185.118 58.5361 -224.692 142.969
|
1087 |
-
c-25.75 55.4697 -24.0801 105.96 -23 118.27c4.16992 34.2803 27.0801 59.7002 46.8408 74.7998c29.6299 22.6904 68.8193 35.6904 107.529 35.6904c7.0498 0 43.9199 -0.900391 77.6406 -18.5898c32.5596 -17.1006 47.3193 -37.5801 56.5596 -53.5107
|
1088 |
-
c1.84961 -3.23242 3.49902 -6.64551 4.88965 -10.1396c-4.21973 4.65039 -40.0596 44.2002 -99.0596 -1c-26.6719 -19.334 -46.8008 -46.8369 -56.9697 -78.9199c-14.1406 -40.4004 -12.8398 -88.5801 20.0996 -136c12.2471 -18.1914 27.9951 -33.3955 46.6396 -45z
|
1089 |
-
M463.49 70.6602c2.1748 -1.37305 3.60742 -3.80176 3.60742 -6.56152c0 -1.53418 -0.447266 -2.96484 -1.21777 -4.16895c-47.5703 -75.4297 -127.86 -108.87 -163 -108.87c-22.7002 0 -48.1299 6.95996 -71.7002 19.6104c-33 17.6699 -49.4893 38.7598 -56 47.6699
|
1090 |
-
c-46.3301 63.5303 -28.25 122.29 -13.3301 151.66c9.73145 19.1172 22.8193 35.9404 38.7607 50c-4.04688 -8.04102 -6.40625 -17.168 -6.52051 -26.75c0 -80.9404 79.8506 -144 171.521 -144c0.116211 0 0.310547 0.0693359 0.426758 0.0693359
|
1091 |
-
c24.3125 0 47.6045 4.40137 69.123 12.4502c6.98145 2.61816 13.8652 5.69824 20.4102 9.12012c1.11328 0.618164 2.41113 0.970703 3.77441 0.970703c1.52344 0 2.94531 -0.44043 4.14551 -1.2002z" />
|
1092 |
-
<glyph glyph-name="codiepie" unicode="" horiz-adv-x="472"
|
1093 |
-
d="M422.5 245.1c30.7002 0 33.5 -53.0996 -0.299805 -53.0996h-10.7998v-44.2998h-26.6006v97.3994h37.7002zM472 95.4004c-42.0996 -91.9004 -121.6 -151.4 -224 -151.4c-137 0 -248 111 -248 248s111 248 248 248c97.4004 0 172.8 -53.7002 218.2 -138.4l-186 -108.8z
|
1094 |
-
M433.5 82.9004l-60.2998 30.6992c-27.1006 -44.2998 -70.4004 -71.3994 -122.4 -71.3994c-82.5 0 -149.2 66.7002 -149.2 148.899c0 82.5 66.7002 149.2 149.2 149.2c48.4004 0 88.9004 -23.5 116.9 -63.3994l59.5 34.5996c-40.7002 62.5996 -104.7 100 -179.2 100
|
1095 |
-
c-121.2 0 -219.5 -98.2998 -219.5 -219.5s98.2998 -219.5 219.5 -219.5c78.5996 0 146.5 42.0996 185.5 110.4z" />
|
1096 |
-
<glyph glyph-name="modx" unicode=""
|
1097 |
-
d="M356 206.2l36.7002 -23.7002v-214.5l-133 83.7998zM440 373l-83.2002 -134.3l-153.5 96.5l23 37.7998h213.7zM351 230.2l-249.8 -57.7002l-46 29v214.5zM97 153.8l249.7 57.7002l-125 -200.5h-213.7z" />
|
1098 |
-
<glyph glyph-name="fort-awesome" unicode="" horiz-adv-x="512"
|
1099 |
-
d="M489.2 160.1c2.59961 0 4.59961 -2 4.5 -4.59961v-219.5h-182.9v96c0 72.5996 -109.7 72.5996 -109.7 0v-96h-182.899v219.5c0 2.59961 2 4.59961 4.59961 4.59961h27.4004c2.59961 0 4.59961 -2 4.59961 -4.59961v-32h36.6006v178.3
|
1100 |
-
c0 2.60059 2 4.60059 4.59961 4.60059h27.4004c2.59961 0 4.59961 -2 4.59961 -4.60059v-32h36.2998v32c0 2.60059 2 4.60059 4.60059 4.60059h27.3994c2.60059 0 4.60059 -2 4.60059 -4.60059v-32h36.5996v32c0 6 8 4.60059 11.7002 4.60059v111.699
|
1101 |
-
c-5.40039 2.60059 -9.10059 8.30078 -9.10059 14.3008c0 20.7998 31.4004 20.6992 31.4004 0c0 -6 -3.7002 -11.7002 -9.09961 -14.3008v-4.89941c7.69922 1.7998 15.6992 2.89941 23.6992 2.89941c11.7002 0 22.9004 -4.2998 32.6006 -4.2998
|
1102 |
-
c8.89941 0 18.8994 4.2998 24 4.2998c2.59961 0 4.59961 -2 4.59961 -4.59961v-60c0 -6.90039 -23.0996 -8 -27.7002 -8c-10.5 0 -20.5 4.2998 -31.3994 4.2998c-8.60059 0 -17.4004 -1.39941 -25.7002 -3.39941v-38c3.7002 0 11.7002 1.39941 11.7002 -4.60059v-32h36.5996
|
1103 |
-
v32c0 2.60059 2 4.60059 4.60059 4.60059h27.3994c2.60059 0 4.60059 -2 4.60059 -4.60059v-32h36.5996v32c0 2.60059 2 4.60059 4.59961 4.60059h27.4004c2.59961 0 4.59961 -2 4.59961 -4.60059v-178.3h36.6006v32c0 2.59961 2 4.59961 4.59961 4.59961h27.4004z
|
1104 |
-
M201.1 164.6v64c0 2.60059 -2 4.60059 -4.59961 4.60059h-27.4004c-2.59961 0 -4.59961 -2 -4.59961 -4.60059v-64c0 -2.59961 2 -4.59961 4.59961 -4.59961h27.4004c2.59961 0 4.59961 2 4.59961 4.59961zM347.5 164.6v64c0 2.60059 -2 4.60059 -4.59961 4.60059h-27.4004
|
1105 |
-
c-2.59961 0 -4.59961 -2 -4.59961 -4.60059v-64c0 -2.59961 2 -4.59961 4.59961 -4.59961h27.4004c2.59961 0 4.59961 2 4.59961 4.59961z" />
|
1106 |
-
<glyph glyph-name="usb" unicode="" horiz-adv-x="640"
|
1107 |
-
d="M641.5 192c0 -3.09961 -1.7002 -6.09961 -4.5 -7.5l-89.0996 -53.5c-1.40039 -0.799805 -2.80078 -1.40039 -4.5 -1.40039c-1.40039 0 -3.10059 0.300781 -4.5 1.10059c-2.80078 1.7002 -4.5 4.5 -4.5 7.7998v35.5996h-238.7
|
1108 |
-
c25.2998 -39.5996 40.5 -106.899 69.5996 -106.899h26.7002v26.7998c0 5 3.90039 8.90039 8.90039 8.90039h89.0996c5 0 8.90039 -3.90039 8.90039 -8.90039v-89.0996c0 -5 -3.90039 -8.90039 -8.90039 -8.90039h-89.0996c-5 0 -8.90039 3.90039 -8.90039 8.90039v26.6992
|
1109 |
-
h-26.7002c-75.3994 0 -81.0996 142.5 -124.7 142.5h-100.3c-8.09961 -30.5996 -35.8994 -53.5 -69 -53.5c-39.2998 0.100586 -71.2998 32.1006 -71.2998 71.4004s32 71.2998 71.2998 71.2998c33.1006 0 61 -22.7998 69 -53.5c39.1006 0 43.9004 -9.5 74.6006 60.4004
|
1110 |
-
c40.0996 89.0996 58.0996 82.0996 108.899 82.0996c7.5 20.9004 27 35.6006 50.4004 35.6006c29.5 0 53.5 -23.9004 53.5 -53.5c0 -29.6006 -23.9004 -53.5 -53.5 -53.5c-23.4004 0 -42.9004 14.7998 -50.4004 35.5996h-29.7998
|
1111 |
-
c-29.0996 0 -44.2998 -67.4004 -69.5996 -106.9h310.1v35.6006c0 3.2998 1.7002 6.09961 4.5 7.7998s6.40039 1.40039 8.90039 -0.299805l89.0996 -53.5c2.7998 -1.10059 4.5 -4.10059 4.5 -7.2002z" />
|
1112 |
-
<glyph glyph-name="product-hunt" unicode="" horiz-adv-x="512"
|
1113 |
-
d="M326.3 229.2c0 -20.5 -16.7002 -37.2002 -37.2002 -37.2002h-70.2998v74.4004h70.2998c20.5 0 37.2002 -16.7002 37.2002 -37.2002zM504 192c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248s248 -111 248 -248zM375.9 229.2
|
1114 |
-
c0 47.8994 -38.9004 86.7998 -86.8008 86.7998h-119.899v-248h49.5996v74.4004h70.2998c47.9004 0 86.8008 38.8994 86.8008 86.7998z" />
|
1115 |
-
<glyph glyph-name="mixcloud" unicode="" horiz-adv-x="640"
|
1116 |
-
d="M424.43 228.271c42.3623 -9.1377 74.4805 -47.0693 74.4805 -92.2002c0 -52.3311 -42.6406 -94.6934 -94.9688 -94.6934h-289.614c-62.5752 0 -113.243 50.668 -113.243 112.966c0 56.7598 42.085 103.554 96.6299 111.582
|
1117 |
-
c22.9814 67.5586 86.9395 114.074 159.205 114.074c87.2158 0 159.205 -66.7266 167.511 -151.729zM403.941 83.7412c29.0713 0 52.6064 23.5352 52.6064 52.3301c0 22.1494 -14.1211 40.9766 -33.502 48.4531c-1.38477 -8.58301 -3.59961 -17.166 -6.36914 -25.4727
|
1118 |
-
c-8.01367 -25.6484 -49.0898 -14.2266 -40.1465 13.29c4.15332 12.7373 6.36914 26.0264 6.36914 39.5938c0 69.2197 -56.4834 125.702 -125.979 125.702c-49.8379 0 -94.6934 -29.626 -114.628 -73.9258c19.3809 -4.98438 37.3779 -14.9512 52.0527 -29.3486
|
1119 |
-
c19.9531 -19.9531 -10.2168 -50.1436 -30.1797 -30.1807c-13.29 13.291 -31.0107 20.7666 -49.8379 20.7666c-39.04 0 -70.8809 -31.5645 -70.8809 -70.6045s31.8408 -70.6035 70.8809 -70.6035h289.614zM639.01 136.071c0 -44.0244 -12.7363 -86.3867 -37.1016 -122.657
|
1120 |
-
c-4.15332 -6.0918 -10.7979 -9.41406 -17.7197 -9.41406c-16.3174 0 -27.1279 18.8262 -17.4434 32.9492c19.3809 29.3486 29.9033 63.6816 29.9033 99.1221c0 35.4395 -10.5215 69.7725 -29.9033 98.8447c-15.6553 22.8311 19.3613 47.2402 35.1631 23.5342
|
1121 |
-
c24.3662 -35.9932 37.1016 -78.3564 37.1016 -122.379zM568.13 136.071c0 -31.5654 -9.13672 -62.0215 -26.8564 -88.3252c-4.15332 -6.09082 -10.7988 -9.13574 -17.7207 -9.13574c-17.2012 0 -27.0215 18.9785 -17.4424 32.9473
|
1122 |
-
c13.0127 19.1045 19.6572 41.2559 19.6572 64.5137c0 22.9805 -6.64453 45.4072 -19.6572 64.5117c-15.7617 22.9863 19.0078 47.0947 35.1631 23.5352c17.7188 -26.0264 26.8564 -56.4834 26.8564 -88.0469z" />
|
1123 |
-
<glyph glyph-name="scribd" unicode="" horiz-adv-x="384"
|
1124 |
-
d="M42.2998 195.3c-16.0996 19 -24.7002 45.9004 -24.7998 79.9004c0 100.399 75.2002 153.1 167.2 153.1c98.5996 1.60059 156.8 -49 184.3 -70.5996l-50.5 -72.1006l-37.2998 24.6006l26.8994 38.5996c-36.5 24 -79.3994 36.5 -123 35.7998
|
1125 |
-
c-50.6992 0.800781 -111.699 -27.1992 -111.699 -76.1992c0 -18.7002 11.1992 -20.7002 28.5996 -15.6006c23.2998 5.2998 41.9004 -0.599609 55.7998 -14c26.4004 -24.2998 23.2002 -67.5996 -0.700195 -91.8994c-29.1992 -29.5 -85.1992 -27.3008 -114.8 8.39941z
|
1126 |
-
M360 189.4c33.9004 -40.4004 36.7998 -138.2 -20.2998 -189.601c-39.2002 -33.5996 -82.2002 -44.0996 -133.601 -44.0996c-70.2998 -0.299805 -138.199 25.3994 -190.699 72.2002l-15.4004 13.7998l60.7998 71.7998l35.6006 -27.4004l-33.7002 -39.3994
|
1127 |
-
c41.7002 -30.9004 92.2002 -47.5 144.1 -47.2998c61.9004 0 104.7 23.5 121.4 64.3994c0.899414 4.2002 1.39941 8.40039 1.39941 12.7002c0 18.7002 -11.1992 20.7002 -28.5996 15.5996c-23.2998 -5.2998 -42.2002 0.5 -56.2998 14.4004
|
1128 |
-
c-12.4004 11.2998 -19.1006 27.5 -18.4004 44.2998c-0.599609 39.2002 32.4004 69.2002 70.5 67.2002c24.2998 0.799805 47.7002 -9.7998 63.2002 -28.5996z" />
|
1129 |
-
<glyph glyph-name="bluetooth" unicode=""
|
1130 |
-
d="M292.6 276.9l-42.8994 -42.9004l-0.299805 86zM249.4 57.0996l0.199219 86l42.9004 -42.8994zM416 188.6c0 -205.6 -71.9004 -252.6 -185.1 -252.6c-113.2 0 -198.9 47 -198.9 252.6c0 205.601 83.4004 259.4 196.6 259.4c113.2 0 187.4 -53.9004 187.4 -259.4z
|
1131 |
-
M257.5 188.6l79.4004 88.6006l-125.101 134.3v-176.9l-73.7998 73.8008l-27 -26.9004l92.7002 -93l-92.7002 -93l26.9004 -26.9004l73.7998 73.8008l2.2998 -170l127.4 127.5z" />
|
1132 |
-
<glyph glyph-name="bluetooth-b" unicode="" horiz-adv-x="320"
|
1133 |
-
d="M196.48 187.977l97.9111 -103.333l-148.552 -148.644l-2.71484 198.284l-86.1113 -86.1113l-31.4053 31.4053l108.061 108.398l-108.061 108.399l31.4053 31.4053l86.1113 -86.1113v206.33l145.981 -156.69zM237.34 290.973l-50.3145 50.3174l0.337891 -100.295z
|
1134 |
-
M187.363 134.96l-0.337891 -100.294l50.3145 50.3164z" />
|
1135 |
-
<glyph glyph-name="gitlab" unicode="" horiz-adv-x="512"
|
1136 |
-
d="M105.2 423.1c0 0 56.5 -174.8 56.5996 -174.8h-132l56.5 174.8c3.2002 8.90039 15.7998 8.90039 18.9004 0zM0.900391 160.3l28.7998 88l226.2 -294l-247.9 184c-6.7998 5.10059 -9.7002 14 -7.09961 22zM161.7 248.3h188.6l-94.2998 -294zM511.1 160.3
|
1137 |
-
c2.5 -8 -0.299805 -16.8994 -7.19922 -22l-247.9 -184l226.3 294zM425.7 423.1l56.5 -174.8h-132l56.5996 174.8c3.2002 8.90039 15.7998 8.90039 18.9004 0z" />
|
1138 |
-
<glyph glyph-name="wpbeginner" unicode="" horiz-adv-x="512"
|
1139 |
-
d="M462.799 125.626c56.2109 -64.3076 4.16211 -157.626 -91.8545 -157.626c-39.6025 0 -78.8242 17.6865 -100.143 50.04c-6.88672 -0.356445 -22.7021 -0.356445 -29.5898 0c-21.3643 -32.4209 -60.624 -50.04 -100.143 -50.04
|
1140 |
-
c-95.4902 0 -148.349 92.9961 -91.8555 157.626c-79.1387 131.851 31.2646 290.374 206.792 290.374c175.632 0 285.87 -158.626 206.793 -290.374zM123.152 208.598h41.5283v58.0752h-41.5283v-58.0752zM340.332 122.526v23.8389
|
1141 |
-
c-60.5059 -20.915 -132.355 -9.19824 -187.589 33.9707l0.246094 -24.8965c51.1006 -46.3672 131.746 -57.875 187.343 -32.9131zM189.579 208.598h166.058v58.0752h-166.058v-58.0752z" />
|
1142 |
-
<glyph glyph-name="wpforms" unicode=""
|
1143 |
-
d="M448 372.8v-361.7c0 -24.2998 -19 -43.1992 -43.2002 -43.1992h-361.6c-23.9004 0.0996094 -43.2002 18.6992 -43.2002 43.2998v361.6c0 24.1006 18.7998 43.2002 43.2002 43.2002h361.7c24 0 43.0996 -18.7998 43.0996 -43.2002zM410.7 11.2002v361.6
|
1144 |
-
c0 3 -2.60059 5.7998 -5.7998 5.7998h-9.30078l-110.3 -74.5996l-61.2998 49.9004l-61.2002 -49.9004l-110.3 74.7002h-9.2998c-3.2002 0 -5.7998 -2.7998 -5.7998 -5.7998v-361.7c0 -3 2.59961 -5.7998 5.7998 -5.7998h361.7
|
1145 |
-
c3.19922 -0.100586 5.7998 2.69922 5.7998 5.7998zM150.2 262v-37h-73.5v37h73.5zM150.2 187.6v-37.2998h-73.5v37.2998h73.5zM161.3 334.9l54 43.6992h-118.5zM371.3 262v-37h-196v37h196zM371.3 187.6v-37.2998h-196v37.2998h196zM286.7 334.9l64.5 43.6992h-118.4z
|
1146 |
-
M371.3 113v-37.2998h-99.3994v37.2998h99.3994z" />
|
1147 |
-
<glyph glyph-name="envira" unicode=""
|
1148 |
-
d="M0 416c477.6 0 366.6 -317.3 367.1 -366.3l80.9004 -81.7002h-26l-70.4004 71.2002c-39 -4.2002 -124.399 -34.5 -214.399 37c-90.2002 71.5 -85.2002 157.1 -137.2 339.8zM79.7002 370c-49.7002 23.5 -5.2002 -9.2002 -5.2002 -9.2002
|
1149 |
-
c45.2002 -31.2002 66 -73.7002 90.2002 -119.899c31.5 -60.2002 79 -139.7 144.2 -167.7c65 -28 34.1992 -12.5 6 8.5c-28.2002 21.2002 -68.2002 87 -91 130.2c-31.7002 60 -61 118.6 -144.2 158.1z" />
|
1150 |
-
<glyph glyph-name="glide" unicode=""
|
1151 |
-
d="M252.8 299.4c0 -8.80078 -1.59961 -17.7002 -3.39941 -26.4004c-5.80078 -27.7998 -11.6006 -55.7998 -17.3008 -83.5996c-1.39941 -6.30078 -8.2998 -4.90039 -13.6992 -4.90039c-23.8008 0 -30.5 26 -30.5 45.5c0 29.2998 11.1992 68.0996 38.5 83.0996
|
1152 |
-
c4.2998 2.5 9.19922 4.2002 14.0996 4.2002c11.4004 0 12.2998 -8.2998 12.2998 -17.8994zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM384 181c0 5.09961 -20.7998 37.7002 -25.5 39.5
|
1153 |
-
c-2.2002 0.900391 -7.2002 2.2998 -9.59961 2.2998c-23.1006 0 -38.7002 -10.5 -58.2002 -21.5l-0.5 0.5c4.2998 29.4004 14.5996 57.2002 14.5996 87.4004c0 44.5996 -23.7998 62.7002 -67.5 62.7002c-71.7002 0 -108 -70.8008 -108 -123.5c0 -54.7002 32 -85 86.2998 -85
|
1154 |
-
c7.5 0 6.90039 0.599609 6.90039 -2.30078c-10.5 -80.2998 -56.5 -82.8994 -56.5 -58.8994c0 24.3994 28 36.5 28.2998 38c-0.200195 7.59961 -29.2998 17.2002 -36.7002 17.2002c-21.0996 0 -32.6992 -33 -32.6992 -50.6006c0 -32.2998 20.3994 -54.7002 53.2998 -54.7002
|
1155 |
-
c48.2002 0 83.3994 49.7002 94.2998 91.7002c9.40039 37.7002 7 39.4004 12.2998 42.1006c20 10.0996 35.7998 16.7998 58.4004 16.7998c11.0996 0 19 -2.2998 36.7002 -5.2002c1.7998 -0.0996094 4.09961 1.7002 4.09961 3.5z" />
|
1156 |
-
<glyph glyph-name="glide-g" unicode=""
|
1157 |
-
d="M407.1 236.8c7.5 -2.89941 40.9004 -55.3994 40.9004 -63.3994c0 -2.90039 -3.7998 -5.80078 -6.7002 -5.80078c-28.3994 4.7002 -41.0996 8.40039 -58.8994 8.40039c-36.3008 0 -61.6006 -10.7998 -93.8008 -27c-8.5 -4.2998 -4.59961 -7.09961 -19.6992 -67.5996
|
1158 |
-
c-17.4004 -67.6006 -74 -145.4 -151.4 -145.4c-52.7002 0 -85.5 36 -85.5 87.9004c0 28.0996 18.5 79.1992 52.4004 79.2998c11.8994 0 58.5996 -15.4004 58.8994 -27.6006c-0.5 -2.39941 -45.5 -21.7998 -45.5 -61c0 -38.5 73.9004 -34.2998 90.7998 94.6006
|
1159 |
-
c0 4.7998 1 3.7998 -11 3.7998c-87.2998 0 -138.6 48.7002 -138.6 136.6c0 84.7002 58.2998 198.4 173.4 198.4c70.1992 0 108.399 -29.0996 108.399 -100.6c0 -48.5 -16.5 -93.1006 -23.5 -140.4l0.900391 -0.900391c31.2998 17.7002 56.3994 34.5 93.5 34.5
|
1160 |
-
c3.7998 0 11.8994 -2.39941 15.3994 -3.7998zM231.8 321.2c2.90039 13.8994 5.5 28.0996 5.60059 42.3994c0 15.4004 -1.40039 28.7002 -20 28.7002c-7.80078 0 -15.6006 -2.59961 -22.6006 -6.7002c-43.7998 -24.0996 -61.7998 -86.3994 -61.7998 -133.399
|
1161 |
-
c0 -31.2998 10.7002 -73.1006 49 -73.1006c8.7002 0 19.7002 -2.39941 22 7.80078c9.2002 44.6992 18.5 89.5996 27.7998 134.3z" />
|
1162 |
-
<glyph glyph-name="viadeo" unicode=""
|
1163 |
-
d="M276.2 297.5v-0.700195c-17.9004 52.6006 -42.6006 103.4 -70.7998 151.2c43.2998 -29.2002 67 -100 70.7998 -150.5zM308.9 175.8c15.0996 3.10059 29.5 9 42.1992 17c24.5 -58.5996 20.2002 -139.7 -36.3994 -201c-67.7998 -73.8994 -191.9 -74.5996 -259.8 0
|
1164 |
-
c-108.801 117.8 -31.6006 313.7 129.899 313.7c21.2998 0 42.6006 -3.5 62.5 -10.7002c-6.89941 -13.3994 -11.7002 -28.2002 -13.3994 -43.2998c-15.4004 6.5 -32.3008 9.59961 -49.1006 9.59961c-78 0 -135.399 -66.6992 -135.399 -142.3
|
1165 |
-
c0 -68.7998 45.5996 -126 111.3 -137.399c98.5 38.3994 116.6 188.199 116.6 280c0 11.6992 0 23.6992 -1 35.3994c12.4004 -36.0996 18.9004 -73.8994 18.9004 -112c0 -86.5 -35.1006 -158.399 -109.3 -205.1l-3.80078 -0.299805
|
1166 |
-
c80 -1.60059 137.801 61.6992 137.801 139.399c0 19.5 -3.40039 38.7998 -11 57zM418.1 436.3c52 -74 20.9004 -208.6 -58.0996 -208.6c-21.2998 0 -40.2002 11.3994 -55 25.7998c35.0996 19.2998 79.4004 49.2002 99.7002 84.9004
|
1167 |
-
c2.39941 4.7998 6.5 13.6992 7.2002 19.1992c-19.9004 -44.6992 -70.8008 -79.6992 -118.2 -90.6992c-7.5 11.6992 -12 24.6992 -12 38.7998c0 16.5 8.2002 38.5 20.5996 50.5c34.5 32.8994 84.7998 13.5996 115.8 80.0996z" />
|
1168 |
-
<glyph glyph-name="viadeo-square" unicode=""
|
1169 |
-
d="M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM280.7 66.7998c35.3994 38.2998 38.0996 89 22.7998 125.601c-7.90039 -4.90039 -16.9004 -8.60059 -26.4004 -10.5
|
1170 |
-
c4.80078 -11.4004 6.90039 -23.5 6.90039 -35.7002c0 -48.6006 -36.2002 -88.2002 -86.2002 -87.2002l2.40039 0.200195c46.3994 29.2002 68.2998 74.0996 68.2998 128.2c0 23.7998 -4.09961 47.5 -11.7998 70v0.399414c-2.2998 31.6006 -17.1006 75.7998 -44.2002 94.1006
|
1171 |
-
c17.5996 -29.9004 33 -61.6006 44.2002 -94.5c0.599609 -7.30078 0.599609 -14.8008 0.599609 -22.1006c0 -57.3994 -11.3994 -151 -72.8994 -175c-41 7.2002 -69.5 42.9004 -69.5 85.9004c0 47.2002 35.7998 88.8994 84.5996 88.8994c10.5 0 21 -1.89941 30.7002 -6
|
1172 |
-
c1.09961 9.5 4.09961 18.7002 8.39941 27.1006c-12.5 4.59961 -25.7998 6.7002 -39.0996 6.7002c-101 0 -149.2 -122.5 -81.2002 -196.101c42.4004 -46.5996 120 -46.2002 162.4 0zM309 214.3c49.4004 0 68.7998 84.1006 36.2998 130.3
|
1173 |
-
c-19.3994 -41.5 -50.7998 -29.5 -72.3994 -50c-7.7002 -7.5 -12.9004 -21.2998 -12.9004 -31.5996c0 -8.7998 2.7998 -17 7.5 -24.2998c29.7002 6.89941 61.4004 28.7998 73.9004 56.7002c-0.400391 -3.40039 -3 -9 -4.5 -12c-12.7002 -22.3008 -40.4004 -41 -62.3008 -53
|
1174 |
-
c9.30078 -9 21.1006 -16.1006 34.4004 -16.1006z" />
|
1175 |
-
<glyph glyph-name="snapchat" unicode="" horiz-adv-x="496"
|
1176 |
-
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM417.5 101.1c2.2002 5.30078 -0.900391 9.80078 -4.90039 10.8008c-46.2998 7.59961 -67.0996 55.0996 -68 57.0996
|
1177 |
-
c-0.0996094 0.0996094 -0.0996094 0.200195 -0.199219 0.299805c-2.40039 5 -3 9.2002 -1.60059 12.5c2.60059 6.2998 12.5 9.40039 19 11.5c1.7998 0.600586 3.5 1.10059 4.90039 1.7002c11.5 4.5 17.2998 10.0996 17.2002 16.5996
|
1178 |
-
c-0.100586 5.10059 -4.10059 9.60059 -10.4004 11.9004c-4 1.59961 -9.59961 1.90039 -13.5996 0c-5.5 -2.59961 -10.4004 -4 -14.7002 -4.2002c-2.7998 0.100586 -4.60059 0.799805 -5.7002 1.40039c1.40039 24 4.7002 58 -3.7998 77.0996
|
1179 |
-
c-16.2998 36.5 -49.6006 54.2998 -84.2998 54.2998c-0.600586 0 -6.10059 -0.0996094 -6.7002 -0.0996094c-14 0 -61.6006 -4 -84.1006 -54.2998c-8.5 -19.1006 -5.19922 -53.2002 -3.7998 -77.1006c-1.09961 -0.599609 -3.2998 -1.39941 -6.59961 -1.39941
|
1180 |
-
c-4.5 0 -9.7998 1.39941 -15.7002 4.2002c-7.5 3.5 -20.2998 -1.80078 -21.9004 -10.3008c-1 -4.89941 1.2002 -12.0996 17 -18.2998c6.10059 -2.5 20.6006 -5.2998 24 -13.2002c1.40039 -3.2998 0.900391 -7.5 -1.59961 -12.5
|
1181 |
-
c-0.0996094 -0.0996094 -0.200195 -0.199219 -0.200195 -0.299805c-0.899414 -2 -21.7002 -49.5 -68 -57.0996c-3.59961 -0.600586 -6.09961 -3.7998 -5.89941 -7.40039c0.699219 -13.8994 31.6992 -19.2998 45.5 -21.3994c1.39941 -1.90039 2.5 -9.90039 4.2998 -16
|
1182 |
-
c0.799805 -2.7002 2.89941 -6 8.2998 -6s13.2998 3.09961 25.7998 3.09961c17.6006 0 23.6006 -4 37.4004 -13.7002c9.89941 -7 27.5 -19.7998 48.5 -18.2002c20.7998 -0.899414 34.7002 7.90039 49.2002 18.2002c13.6992 9.7002 19.7998 13.7002 37.3994 13.7002
|
1183 |
-
c13 0 19.6006 -2.90039 25.7998 -2.90039h0.200195c4.40039 0 7 2.2002 8.10059 5.90039c1.7998 6.09961 2.89941 14 4.2998 15.9004c26.7002 4.19922 41.2998 10.0996 44.7998 18.1992z" />
|
1184 |
-
<glyph glyph-name="snapchat-ghost" unicode="" horiz-adv-x="512"
|
1185 |
-
d="M510.846 55.3271c-5.21094 -12.1572 -27.2383 -21.0889 -67.3594 -27.3184c-2.06445 -2.78613 -3.77539 -14.6855 -6.50781 -23.9561c-1.625 -5.56543 -5.62207 -8.86914 -12.1279 -8.86914l-0.296875 0.00585938c-9.39453 0 -19.2031 4.32227 -38.8516 4.32227
|
1186 |
-
c-26.5215 0 -35.6621 -6.04297 -56.2539 -20.5879c-21.832 -15.4375 -42.7715 -28.7637 -74.0273 -27.3984c-31.6455 -2.33398 -58.0244 16.9072 -72.8711 27.4033c-20.7139 14.6436 -29.8281 20.582 -56.2412 20.582c-18.8633 0 -30.7354 -4.71973 -38.8516 -4.71973
|
1187 |
-
c-8.07324 0 -11.2129 4.92188 -12.4219 9.04004c-2.70312 9.18848 -4.4043 21.2627 -6.52344 24.1299c-20.6787 3.20898 -67.3096 11.3438 -68.498 32.1504c-0.0107422 0.196289 -0.015625 0.393555 -0.015625 0.591797c0 5.27148 3.85645 9.64355 8.89258 10.4766
|
1188 |
-
c69.583 11.4551 100.925 82.9014 102.228 85.9346c0.0742188 0.175781 0.155273 0.34375 0.237305 0.514648c3.71289 7.53711 4.54395 13.8486 2.46289 18.7529c-5.05078 11.8965 -26.8721 16.1641 -36.0537 19.7959c-23.7148 9.36621 -27.0146 20.1279 -25.6113 27.5039
|
1189 |
-
c2.43652 12.8359 21.7246 20.7354 33.002 15.4531c8.91895 -4.18066 16.8428 -6.29688 23.5469 -6.29688c5.02148 0 8.21191 1.2041 9.95996 2.1709c-2.04297 35.9365 -7.10156 87.29 5.68652 115.969c33.7734 75.7188 105.356 81.6025 126.478 81.6025
|
1190 |
-
c0.943359 0 9.14062 0.0888672 10.1094 0.0888672c52.1484 0 102.255 -26.7803 126.724 -81.6426c12.7764 -28.6504 7.74902 -79.792 5.69434 -116.01c1.58203 -0.87207 4.35742 -1.94141 8.59961 -2.13867c6.39648 0.286133 13.8145 2.38867 22.0693 6.25684
|
1191 |
-
c6.08496 2.84668 14.4053 2.46094 20.4795 -0.0576172l0.0292969 -0.00976562c9.47559 -3.38574 15.4385 -10.2158 15.5889 -17.8701c0.183594 -9.74707 -8.52246 -18.165 -25.8779 -25.0186c-2.11816 -0.834961 -4.69434 -1.6543 -7.43457 -2.52441
|
1192 |
-
c-9.79688 -3.10645 -24.5996 -7.80566 -28.6152 -17.2715c-2.0791 -4.9043 -1.25684 -11.2109 2.45996 -18.748c0.0869141 -0.167969 0.166016 -0.341797 0.238281 -0.514648c1.30176 -3.03027 32.6152 -74.46 102.23 -85.9346
|
1193 |
-
c6.42676 -1.05762 11.1631 -7.87695 7.72461 -15.8584z" />
|
1194 |
-
<glyph glyph-name="snapchat-square" unicode=""
|
1195 |
-
d="M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM393.5 101.1c2.2002 5.30078 -0.900391 9.80078 -4.90039 10.8008c-46.2998 7.59961 -67.0996 55.0996 -68 57.0996
|
1196 |
-
c-0.0996094 0.0996094 -0.0996094 0.200195 -0.199219 0.299805c-2.40039 5 -3 9.2002 -1.60059 12.5c2.60059 6.2998 12.5 9.40039 19 11.5c1.7998 0.600586 3.5 1.10059 4.90039 1.7002c11.5 4.5 17.2998 10.0996 17.2002 16.5996
|
1197 |
-
c-0.100586 5.10059 -4.10059 9.60059 -10.4004 11.9004c-4 1.59961 -9.59961 1.90039 -13.5996 0c-5.5 -2.59961 -10.4004 -4 -14.7002 -4.2002c-2.7998 0.100586 -4.60059 0.799805 -5.7002 1.40039c1.40039 24 4.7002 58 -3.7998 77.0996
|
1198 |
-
c-16.2998 36.5 -49.6006 54.2998 -84.2998 54.2998c-0.600586 0 -6.10059 -0.0996094 -6.7002 -0.0996094c-14 0 -61.6006 -4 -84.1006 -54.2998c-8.5 -19.1006 -5.19922 -53.2002 -3.7998 -77.1006c-1.09961 -0.599609 -3.2998 -1.39941 -6.59961 -1.39941
|
1199 |
-
c-4.5 0 -9.7998 1.39941 -15.7002 4.2002c-7.5 3.5 -20.2998 -1.80078 -21.9004 -10.3008c-1 -4.89941 1.2002 -12.0996 17 -18.2998c6.10059 -2.5 20.6006 -5.2998 24 -13.2002c1.40039 -3.2998 0.900391 -7.5 -1.59961 -12.5
|
1200 |
-
c-0.0996094 -0.0996094 -0.200195 -0.199219 -0.200195 -0.299805c-0.899414 -2 -21.7002 -49.5 -68 -57.0996c-3.59961 -0.600586 -6.09961 -3.7998 -5.89941 -7.40039c0.699219 -13.8994 31.6992 -19.2998 45.5 -21.3994c1.39941 -1.90039 2.5 -9.90039 4.2998 -16
|
1201 |
-
c0.799805 -2.7002 2.89941 -6 8.2998 -6s13.2998 3.09961 25.7998 3.09961c17.6006 0 23.6006 -4 37.4004 -13.7002c9.89941 -7 27.5 -19.7998 48.5 -18.2002c20.7998 -0.899414 34.7002 7.90039 49.2002 18.2002c13.6992 9.7002 19.7998 13.7002 37.3994 13.7002
|
1202 |
-
c13 0 19.6006 -2.90039 25.7998 -2.90039h0.200195c4.40039 0 7 2.2002 8.10059 5.90039c1.7998 6.09961 2.89941 14 4.2998 15.9004c26.7002 4.19922 41.2998 10.0996 44.7998 18.1992z" />
|
1203 |
-
<glyph glyph-name="pied-piper" unicode="" horiz-adv-x="480"
|
1204 |
-
d="M455.93 424.8c9.41992 2.40039 15.0703 -10.25 6.99023 -15.6797c-98.2295 -65.9199 -120.439 -127.561 -126.229 -160.18c-33.5205 -188.881 -101.37 -119.32 -184.311 -226.65c25.7607 -14.8125 55.8076 -23.3984 87.6299 -23.4004
|
1205 |
-
c97.6504 0 177.09 79.4502 177.09 177.11c-0.00488281 45.0508 -16.9824 86.25 -44.8496 117.41c4.72754 9.75293 10.4238 18.9131 17 27.3994c36.3574 -37.3457 58.75 -88.3779 58.75 -144.564v-0.245117c0 -114.87 -93.1299 -208 -208 -208s-208 93.1201 -208 208
|
1206 |
-
s93.1299 208 208 208c36.7422 -0.000976562 71.4697 -9.77246 101.35 -26.6602c46.4404 38.9697 87.8809 60.6602 114.58 67.46zM125 41.5996c64.7695 140.881 125.64 231.641 191.63 293.75c-23.0674 11.3037 -49.1611 17.75 -76.5615 17.75h-0.0683594
|
1207 |
-
c-97.6504 0 -177.1 -79.4395 -177.1 -177.1c0.0234375 -53.8203 24.0684 -102.002 62.0996 -134.4z" />
|
1208 |
-
<glyph glyph-name="first-order" unicode=""
|
1209 |
-
d="M12.9004 218.8c0.0996094 0.100586 0.199219 0.299805 0.299805 0.400391c0 -0.100586 0 -0.299805 -0.100586 -0.400391h-0.199219zM224 351.4c7.40039 0 14.5996 -0.5 21.7002 -1.7002l-4 -67.7002l22.2998 64.2998c14.2998 -3.7998 27.7002 -9.5 40 -16.8994
|
1210 |
-
l-29.4004 -61.1006l45.1006 50.9004c11.5 -8.90039 21.7002 -19.2002 30.5996 -30.9004l-50.5996 -45.3994l60.8994 29.6992c7.5 -12.2998 12.9004 -26 16.6006 -40.2998l-64 -22.2998l67.7002 4c1.09961 -7.09961 1.39941 -14.5996 1.39941 -22
|
1211 |
-
s-0.299805 -14.5996 -1.39941 -21.7002l-67.4004 4l64 -22.2998c-3.7002 -14.5996 -9.5 -28 -16.5996 -40.2998l-61.1006 29.3994l50.6006 -45.0996c-8.60059 -11.7998 -18.9004 -22 -30.6006 -30.9004l-44.8994 50.9004l29.3994 -61.2998
|
1212 |
-
c-12.2998 -7.5 -25.7002 -12.9004 -40 -16.9004l-22.5996 65.1006l4 -68.6006c-7.10059 -1.09961 -14.2998 -1.7002 -21.7002 -1.7002c-7.09961 0 -14.5996 0.600586 -21.7002 1.7002l4 68l-22.2998 -64.5996c-14.2998 3.7998 -27.7002 9.5 -40 16.8994l29.5 61.4004
|
1213 |
-
l-44.9004 -50.9004c-11.7998 8.60059 -22 19.2002 -30.8994 30.9004l50.8994 45.0996l-61.0996 -29.6992c-7.2002 12.5996 -12.9004 26 -16.5996 40.2998l64 22.5996l-67.7002 -4c-0.799805 7.10059 -1.40039 14.2998 -1.40039 21.7002s0.5 14.9004 1.40039 22l68 -4
|
1214 |
-
l-64.2998 22.5996c3.69922 14.3008 9.5 27.7002 16.5996 40l61.0996 -29.6992l-50.5996 45.3994c8.90039 11.7998 19.2002 22 30.5996 30.9004l45.1006 -50.9004l-29.4004 61.4004c12.2998 7.2002 25.7002 12.8994 40 16.5996l22 -64l-3.7002 67.4004
|
1215 |
-
c6.80078 1.09961 14.3008 1.7002 21.4004 1.7002zM443.4 320v-256l-219.4 -128l-219.4 128v256l219.4 128zM426.3 309.7l-202.3 117.399l-202.3 -117.399v-235.101l202.3 -117.699l202.3 117.699v235.101zM224 410.9l187.7 -109.4v-218.9l-187.7 -109.5l-187.7 109.5
|
1216 |
-
v218.801zM224 360c-92.2998 0 -166.9 -75.0996 -166.9 -168c0 -92.5996 74.6006 -167.7 166.9 -167.7c92 0 166.9 75.1006 166.9 167.7c0 92.9004 -74.9004 168 -166.9 168z" />
|
1217 |
-
<glyph glyph-name="yoast" unicode=""
|
1218 |
-
d="M91.2998 372h186l-7 -18.9004h-179c-39.7002 0 -71.8994 -31.5996 -71.8994 -70.2998v-205.399c0 -35.4004 24.8994 -70.3008 84 -70.3008v-19.0996h-12.1006c-50.0996 0 -91.2998 40.2002 -91.2998 89.5v205.3c0 49.2998 40.7002 89.2002 91.2998 89.2002zM320.4 428
|
1219 |
-
h66.5c-143.801 -378.1 -145.7 -398.9 -184.7 -439.3c-20.7998 -21.6006 -49.2998 -31.7002 -78.2998 -32.7002v51.0996c49.1992 7.7002 64.5996 49.9004 64.5996 75.3008c0 20.0996 0.599609 12.5996 -82.0996 223.199h61.3994l50.4004 -156.6zM448 286.5v-298.5h-214
|
1220 |
-
c6.59961 9.59961 10.7002 16.2998 12.0996 19.4004h182.5v279.1c0 32.5 -17.0996 51.9004 -48.1992 62.9004l6.69922 17.5996c41.7002 -13.5996 60.9004 -43.0996 60.9004 -80.5z" />
|
1221 |
-
<glyph glyph-name="themeisle" unicode="" horiz-adv-x="512"
|
1222 |
-
d="M208 359.714c0 10 6.28613 21.7139 17.7148 21.7139c11.1426 0 17.7139 -11.7139 17.7139 -21.7139c0 -10.2852 -6.57129 -21.7139 -17.7139 -21.7139c-11.4287 0 -17.7148 11.4287 -17.7148 21.7139zM512 199.714c0 -36.001 -11.4287 -102.286 -36.2861 -129.714
|
1223 |
-
c-22.8574 -24.8584 -87.4277 -61.1426 -120.856 -70.5723l-1.14355 -0.286133v-32.5703c0 -16.2861 -12.5723 -30.5713 -29.1426 -30.5713c-10 0 -19.4297 5.71387 -24.5723 14.2861c-5.42676 -8.57227 -14.8564 -14.2861 -24.8564 -14.2861
|
1224 |
-
s-19.4287 5.71387 -24.8574 14.2861c-5.14258 -8.57227 -14.5713 -14.2861 -24.5703 -14.2861c-10.2861 0 -19.4287 5.71387 -24.8574 14.2861c-5.14355 -8.57227 -14.5713 -14.2861 -24.5713 -14.2861c-18.8574 0 -29.4287 15.7139 -29.4287 32.8574
|
1225 |
-
c-16.2861 -12.2852 -35.7158 -19.4287 -56.5713 -19.4287c-22 0 -43.4287 8.28516 -60.2861 22.8574c10.2852 0.286133 20.5713 2.28613 30.2852 5.71387c-20.8574 5.71387 -39.4277 18.8574 -52 36.2861c21.3701 -4.64551 46.209 -1.67285 67.1426 11.1426
|
1226 |
-
c-22 22 -56.5703 58.8574 -68.5713 87.4287c-5.71387 13.4287 -6.85645 31.4287 -6.85645 45.7139c0 49.7139 20.2861 160 86.2861 160c10.5713 0 18.8564 -4.8584 23.1426 -14.8574c3.7041 5.41992 7.6709 10.5186 12 15.4277c2 2.57227 5.71387 5.42969 7.14355 8.28613
|
1227 |
-
c7.99902 12.5713 11.7139 21.1426 21.7139 34c32.2852 41.1445 81.7139 69.4297 134.856 69.4297c6 0 12 -0.285156 17.7148 -1.14355c10.8564 11.7148 26 18.2861 41.7148 18.2861c14.5703 0 29.7139 -6 40 -16.2861c0.856445 -0.857422 1.42773 -2.28613 1.42773 -3.42773
|
1228 |
-
c0 -3.71387 -10.2852 -13.4287 -12.8574 -16.2861c4.28613 -1.42871 15.7148 -6.8584 15.7148 -12c0 -2.85742 -2.85742 -5.14258 -4.57129 -7.14258c31.4287 -27.7148 49.4287 -67.1436 56.2861 -108c4.28613 5.14258 10.2852 8.57129 17.1426 8.57129
|
1229 |
-
c10.5713 0 20.8574 -7.14355 28.5713 -14.001c20.8564 -18.5703 25.7139 -53.1416 25.7139 -79.7139zM188 358.572c0 -18.2861 12.5713 -37.1436 32.2861 -37.1436c19.7139 0 32.2852 18.8574 32.2852 37.1436c0 18 -12.5713 36.8564 -32.2852 36.8564
|
1230 |
-
c-19.7148 0 -32.2861 -18.8574 -32.2861 -36.8564zM237.714 254c0 19.7139 3.71387 39.1426 8.57129 58.2861c-52.0391 -79.5342 -13.5312 -184.571 68.8574 -184.571c21.4287 0 42.5713 7.71387 60 20c2 7.42871 3.71484 14.8574 3.71484 22.5723
|
1231 |
-
c0 14.2861 -6.28613 21.4277 -20.5723 21.4277c-4.57129 0 -9.14355 -0.856445 -13.4287 -1.71387c-63.3438 -12.668 -107.143 -3.66895 -107.143 63.999zM196.572 -0.858398c0 11.1436 -8.8584 20.8574 -20.2861 20.8574c-11.4287 0 -20 -9.71484 -20 -20.8574v-32.5703
|
1232 |
-
c0 -11.1436 8.57129 -21.1426 20 -21.1426c11.4277 0 20.2861 9.71484 20.2861 21.1426v32.5703zM245.715 -0.858398c0 11.1436 -8.57227 20.8574 -20 20.8574c-11.4287 0 -20.2861 -9.71484 -20.2861 -20.8574v-32.5703c0 -11.1436 8.85742 -21.1426 20.2861 -21.1426
|
1233 |
-
c11.4277 0 20 10 20 21.1426v32.5703zM295.428 -0.858398c0 11.1436 -8.85645 20.8574 -20.2852 20.8574s-20.2852 -9.71484 -20.2852 -20.8574v-32.5703c0 -11.1436 8.85645 -21.1426 20.2852 -21.1426s20.2852 9.71484 20.2852 21.1426v32.5703zM345.143 -0.858398
|
1234 |
-
c0 11.1436 -8.85645 20.8574 -20.2852 20.8574s-20.2861 -9.71484 -20.2861 -20.8574v-32.5703c0 -11.1436 8.85742 -21.1426 20.2861 -21.1426s20.2852 10 20.2852 21.1426v32.5703zM421.714 162c-30.8564 -59.1416 -90.2852 -102.572 -158.571 -102.572
|
1235 |
-
c-96.5703 0 -160.57 84.5723 -160.57 176.572c0 16.8574 2 33.4287 6 49.7139c-20 -33.7148 -29.7139 -72.5723 -29.7139 -111.429c0 -60.2861 24.8564 -121.715 71.4287 -160.857c5.14258 9.71387 14.8564 16.2861 26 16.2861c10 0 19.4277 -5.71387 24.5713 -14.2861
|
1236 |
-
c5.42871 8.57129 14.5703 14.2861 24.8574 14.2861c10 0 19.4277 -5.71387 24.5713 -14.2861c5.42871 8.57129 14.8564 14.2861 24.8574 14.2861c10 0 19.4287 -5.71387 24.8574 -14.2861c5.14258 8.57129 14.5713 14.2861 24.5723 14.2861
|
1237 |
-
c10.8564 0 20.8564 -6.57227 25.7139 -16c43.4268 36.2861 68.5693 92 71.4258 148.286zM432.286 261.714c0 53.7139 -34.5713 105.714 -92.5723 105.714c-30.2852 0 -58.5713 -15.1426 -78.8564 -36.8564c-19.9951 -66.3828 -27.4473 -136.571 41.4287 -136.571
|
1238 |
-
c28.8047 0 97.3564 28.5381 84.2861 -36.8574c28.8564 26 45.7139 65.7148 45.7139 104.571z" />
|
1239 |
-
<glyph glyph-name="google-plus" unicode="" horiz-adv-x="512"
|
1240 |
-
d="M256 440c136.9 0 248 -111.1 248 -248s-111.1 -248 -248 -248s-248 111.1 -248 248s111.1 248 248 248zM185.3 68c71.2998 0 118.8 50.4004 118.8 121.2c0.000976562 0.140625 0.00195312 0.182617 0.00195312 0.323242c0 6.96289 -0.65332 13.7744 -1.90137 20.377
|
1241 |
-
h-116.9v-42.6006h70.1006c-5.2002 -34.2002 -37.5 -53.2998 -70.1006 -53.2998c-43 0 -77.2002 35.5 -77.2002 78.0996c0 42.6006 34.3008 78.1006 77.2002 78.1006c18.1006 0 36.2002 -6.2002 49.4004 -19.1006l33.5996 32.6006
|
1242 |
-
c-22.8994 21.2998 -51.7002 32.2998 -83 32.2998c-68.4375 0 -124 -55.5625 -124 -124s55.5625 -124 124 -124zM415.5 174.2h35.2002v35.5h-35.2002v35.5h-35.5v-35.5h-35.5v-35.5h35.5v-35.5h35.5v35.5z" />
|
1243 |
-
<glyph glyph-name="font-awesome" unicode=""
|
1244 |
-
d="M397.8 416c27.5 0 50.2002 -22.7002 50.2002 -50.2002v-347.6c0 -27.5 -22.7002 -50.2002 -50.2002 -50.2002h-347.6c-27.5 0 -50.2002 22.7002 -50.2002 50.2002v347.6c0 27.5 22.7002 50.2002 50.2002 50.2002h347.6zM352.4 131.7h0.0996094v140.3
|
1245 |
-
c0 4.2002 -4.2002 7.7998 -9 7.7998c-6 0 -31.0996 -16.0996 -53.7998 -16.0996c-4.7002 0 -8.90039 0.599609 -13.1006 2.39941c-20.2998 7.7002 -38.1992 13.7002 -60.8994 13.7002c-20.9004 0 -43 -6.5 -61.5 -14.2998
|
1246 |
-
c-1.7998 -1.2002 -3.60059 -1.7998 -5.40039 -2.40039v18.5c8.2998 6 13.1006 15.5 13.1006 26.3008c0 18.5996 -15 33.5 -33.5 33.5c-18.6006 0 -33.5 -15 -33.5 -33.5c0 -10.8008 5.2998 -20.3008 13.0996 -26.3008v-218.6c0 -11.2998 9 -20.2998 20.2998 -20.2998
|
1247 |
-
c8.90039 0 16.7002 5.89941 19.1006 14.2998v1.2002c0.599609 1.2002 0.599609 3 0.599609 4.7998v45.4004c1.2002 0.599609 2.40039 0.599609 3.59961 1.19922c19.7002 8.90039 44.2002 17.3008 67.5 17.3008c32.3008 0 44.8008 -16.7002 71.7002 -16.7002
|
1248 |
-
c19.2002 0 37.1006 6.5 53.7998 13.7002c4.2002 1.7998 7.80078 3.59961 7.80078 7.7998z" />
|
1249 |
-
<glyph glyph-name="linode" unicode=""
|
1250 |
-
d="M437.4 221.7c0.599609 -2 -8.80078 -66.2998 -9.7002 -72.7998c0 -0.900391 -0.5 -1.7002 -1.10059 -2l-54.5996 -43.7002c-1.09961 -0.900391 -2.59961 -0.900391 -3.7002 0l-20.2998 14l-2.2998 -33.4004c0 -0.899414 -0.200195 -1.7002 -1.10059 -2.2998
|
1251 |
-
l-66.8994 -53.4004c-1.10059 -0.899414 -2.90039 -0.899414 -4 0l-28 23.7002l2 -46c0 -0.899414 -0.200195 -1.7002 -1.10059 -2.2998l-83.6992 -66.9004c-0.600586 -0.299805 -1.10059 -0.599609 -1.7002 -0.599609c-0.900391 0.299805 -1.7002 0.299805 -2.2998 0.900391
|
1252 |
-
l-65.1006 69.0996c-1.5 1.40039 -15.5 72 -16.8994 79.0996c-0.300781 1.10059 0.5 2.5 1.39941 3.10059l17.4004 10.5996c-3.40039 3.2002 -26.5 23.4004 -27.1006 26.2998l-20.5996 100.301c-0.299805 1.09961 0.299805 2.5 1.7002 3.39941l26.8994 12.9004
|
1253 |
-
c-4.59961 3.5 -37.6992 27.5 -38.5996 30.8994l-27.4004 133.101c-0.299805 1.7002 0.600586 3.09961 2 3.7002l123.7 38.5996c0.600586 0 1.40039 0 2.2998 -0.299805l90.6006 -43.7002c0.799805 -0.599609 1.7002 -1.7002 1.7002 -2.59961l5.69922 -132.301
|
1254 |
-
c0 -1.19922 -0.599609 -2.2998 -1.69922 -2.89941l-33.7002 -17.4004l36 -24.2998c0.799805 -0.299805 1.39941 -1.40039 1.39941 -2.2998l1.40039 -35.1006l34.5996 21.2002c0.800781 0.600586 2.2002 0.600586 3.10059 0l24 -16l0.899414 31.4004
|
1255 |
-
c0 0.899414 0.5 2 1.40039 2.59961l58.9004 36c1.09961 0.600586 2.19922 0.600586 3.09961 0l70 -38.5996c0.5 -0.600586 1.09961 -1.10059 1.40039 -2zM232.6 216.9l-100.6 -57.2002l14 -96.6006l90.5996 61.2002zM224.9 396.9l-120.9 -46.6006l19.7002 -134.8
|
1256 |
-
l106.6 55.4004zM44 274.9l73.0996 -57.2002l-19.3994 132.899l-79.7002 49.4004zM74.5996 127.1l64.8008 -60.7998l-13.7002 93.4004l-70 58.2998zM98.9004 9.40039l57.6992 -61.2002l-9.69922 67.3994l-61.7002 60.9004zM163.4 -55.0996l78.1992 62.2998l-3.09961 70
|
1257 |
-
l-85.7002 -61.4004zM245.4 60l27.0996 -22.9004l-0.599609 68.3008l-29.4004 22.5996c0 -2.2998 1.2002 -6.2998 -1.09961 -8l-22.3008 -14.9004l24.3008 -20c2.89941 -2.19922 2 -21.6992 2 -25.0996zM339.7 85.4004l4.2002 66.8994l-65.7002 -46.8994l0.599609 -68.6006z
|
1258 |
-
M367.4 111.1l5.7998 66.6006l-64.6006 40.5996l-0.599609 -30l41.2002 -27.2002c0.799805 -0.599609 1.39941 -1.69922 1.09961 -2.59961l-2 -34zM422 150.9l8.5 63.3994l-51.0996 -36.5996l-5.7002 -65.1006z" />
|
1259 |
-
<glyph glyph-name="quora" unicode=""
|
1260 |
-
d="M440.5 61.2998c1.7998 -18 -7.2002 -93.2998 -89 -93.2998c-49.5 0 -75.5 28.7002 -95.2002 62.2998c-117.7 -32.5996 -249 54.9004 -249 189c0 117 98 196.7 197.7 196.7c101.8 0 198.5 -79.2002 198.4 -196.7c0 -65.5 -30.5 -118.8 -74.7002 -153
|
1261 |
-
c14.2002 -21.5996 29 -35.7998 49.5 -35.7998c22.5 0 31.5 17.2998 33 30.7998h29.2998zM297 118.8c11.2998 24.9004 16.7998 58.7002 16.7002 100.5c0 104.2 -32.5 157.7 -108.7 157.7c-75 0 -107.5 -53.5 -107.5 -157.9c0 -103.699 32.5 -156.699 107.5 -156.699
|
1262 |
-
c12 0 22.7002 1.19922 32.7002 4.19922c-15.5 30.5 -33.7002 61.3008 -69.2002 61.3008c-6.7998 0 -13.5996 -1 -19.7998 -4l-12.2002 24.2998c14.7002 12.7998 38.5 22.7998 69 22.7998c47.7998 0 72 -23 91.5 -52.2002z" />
|
1263 |
-
<glyph glyph-name="free-code-camp" unicode="" horiz-adv-x="576"
|
1264 |
-
d="M97.2197 351.79c-43.2197 -41.6201 -64.9697 -92.5898 -64.8193 -154.021c0.15918 -68 23.0293 -122.67 67.4795 -165c9.33984 -8.34961 13.2002 -14.9199 13.2002 -20.5498c0 -2.75 -1.90039 -5.62012 -3.81055 -8.37988
|
1265 |
-
c-2.19141 -2.1543 -5.12598 -3.56836 -8.36914 -3.83984c-10.2803 0 -24.6807 12.1396 -43.4707 35.79c-36.5898 44.8701 -53.1992 94.3398 -54.0596 161.87s20.3096 113.34 61.79 160.6c14.9199 16.9004 27.3594 25.6904 35.8398 25.6904
|
1266 |
-
c3.12402 -0.0712891 6.03027 -1.11914 8.38965 -2.83984c1.91016 -1.91016 3.83008 -4.66016 3.83008 -7.41992c0 -4.78027 -5.63965 -11.25 -16 -21.9004zM239.47 27.9297c0.580078 -0.370117 0.910156 -0.549805 0.910156 -0.549805zM333.26 27.3799l0.169922 0.129883
|
1267 |
-
c-0.189453 -0.129883 -0.259766 -0.179688 -0.169922 -0.129883zM336.39 185.56c16.2305 -4.14941 24.04 24.04 30.0303 30.0508c84.71 -110.101 -27.5098 -184.45 -33 -188.101c3.86035 3.04004 44.3301 49.7705 21.5801 76.5498
|
1268 |
-
c-1 1.03027 -67.2998 -20.0596 -54.8398 53.54c8.30957 48.6807 -7.60059 71.1309 -7.60059 71.1309c-17.9697 -37.29 -32.5 -53.8604 -43.5 -72.1602c-56.9492 -92.9404 -16.2793 -124.29 -9.5498 -128.641c-10.54 6.5 -108.27 70.8799 -34 175.23
|
1269 |
-
c78.3701 110.189 62.8301 159.57 62.8301 159.57c118.46 -94.2803 51.8105 -173.021 68.0498 -177.171zM510.88 358.31c41.4404 -47.3096 62.6699 -93.1592 61.75 -160.649s-17.4697 -117.021 -54.0596 -161.87c-18.79 -23.6602 -33.1904 -35.79 -43.4707 -35.79
|
1270 |
-
c-3.24219 0.279297 -6.17676 1.69629 -8.36914 3.84961c-1.91016 2.76074 -3.81055 5.63086 -3.81055 8.38086c0.0205078 5.62988 3.86035 12.1992 13.2002 20.5498c44.4795 42.3701 67.3203 97 67.4795 165c0.180664 61.4697 -21.5898 112.45 -64.8193 154.06
|
1271 |
-
c-10.4004 10.6406 -16 17.1201 -16 21.9004c0 2.75977 1.91992 5.50977 3.83008 7.41992c2.35938 1.7207 5.26562 2.76855 8.38965 2.83984c8.51953 0 21 -8.79004 35.8799 -25.6904z" />
|
1272 |
-
<glyph glyph-name="telegram" unicode="" horiz-adv-x="496"
|
1273 |
-
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM369.8 270.1c3.60059 16.8008 -6.09961 23.5 -17.2002 19.5l-239.1 -92.1992c-16.4004 -6.40039 -16.0996 -15.5 -2.7998 -19.7002l61.2002 -19.1006l142 89.4004
|
1274 |
-
c6.59961 4.40039 12.6992 1.90039 7.69922 -2.5l-114.899 -103.8l-4.40039 -63.1006c6.40039 0 9.2002 2.80078 12.5 6.10059l29.9004 28.7998l62 -45.7002c11.2998 -6.39941 19.3994 -3.09961 22.3994 10.5z" />
|
1275 |
-
<glyph glyph-name="bandcamp" unicode="" horiz-adv-x="512"
|
1276 |
-
d="M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM304.2 113.9l84.7002 156.1h-181l-84.7002 -156.1h181z" />
|
1277 |
-
<glyph glyph-name="grav" unicode="" horiz-adv-x="512"
|
1278 |
-
d="M301.1 236c4.40039 -4.40039 4.40039 -11.9004 0 -16.2998l-9.69922 -9.7002c-4.40039 -4.7002 -11.9004 -4.7002 -16.6006 0l-10.5 10.5c-4.39941 4.7002 -4.39941 11.9004 0 16.5996l9.7002 9.7002c4.40039 4.40039 11.9004 4.40039 16.5996 0zM270.9 255.7
|
1279 |
-
c-2.7002 -2.7998 -7.40039 -2.7998 -10.5 0c-2.80078 3 -2.80078 7.7002 0 10.5c3 3 7.69922 3 10.5 0c3 -2.7002 3 -7.5 0 -10.5zM244.9 250.4c2.7998 3 7.5 3 10.5 0c2.7998 -2.7002 2.7998 -7.40039 0 -10.2002c-3 -3 -7.7002 -3 -10.5 0c-3 2.7002 -3 7.39941 0 10.2002
|
1280 |
-
zM317.4 263.7c-19.9004 14.3994 -33.8008 43.2002 -11.9004 68.0996c21.5996 24.9004 40.7002 17.2002 59.7998 -0.799805c11.9004 -11.2998 29.2998 -24.9004 17.2002 -48.2002c-12.5 -23.5 -45.0996 -33.2002 -65.0996 -19.0996zM365.1 308.2
|
1281 |
-
c-8.89941 10 -23.2998 -6.90039 -15.5 -16.1006c7.40039 -9 32.1006 -2.39941 15.5 16.1006zM504 192c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248s248 -111 248 -248zM437.8 149.4c2.5 16.0996 -20.2002 16.5996 -25.2002 25.6992
|
1282 |
-
c-13.5996 24.1006 -27.6992 36.8008 -54.5 30.4004c11.6006 8 23.5 6.09961 23.5 6.09961c0.300781 6.40039 0 13 -9.39941 24.9004c3.89941 12.5 0.299805 22.4004 0.299805 22.4004c15.5 8.59961 26.7998 24.3994 29.0996 43.1992
|
1283 |
-
c3.60059 31 -18.7998 59.2002 -49.7998 62.8008c-22.0996 2.5 -43.7002 -7.7002 -54.2998 -25.7002c-23.2002 -40.1006 1.40039 -70.9004 22.4004 -81.4004c-14.4004 1.40039 -34.3008 11.9004 -40.1006 34.2998c-6.59961 25.7002 2.7998 49.8008 8.90039 61.4004
|
1284 |
-
c0 0 -4.40039 5.7998 -8 8.90039c0 0 -13.7998 0 -24.6006 -5.30078c11.9004 15.2002 25.2002 14.4004 25.2002 14.4004c0 6.40039 -0.599609 14.9004 -3.59961 21.5996c-5.40039 11 -23.7998 12.9004 -31.7002 -2.7998c0.0996094 0.200195 0.299805 0.400391 0.400391 0.5
|
1285 |
-
c-5 -11.8994 -1.10059 -55.8994 16.8994 -87.2002c-2.5 -1.39941 -9.09961 -6.09961 -13 -10c-21.5996 -9.69922 -56.2002 -60.2998 -56.2002 -60.2998c-28.1992 -10.7998 -77.1992 -50.8994 -70.5996 -79.7002c0.299805 -3 1.40039 -5.5 3 -7.5
|
1286 |
-
c-2.7998 -2.19922 -5.5 -5 -8.2998 -8.2998c-11.9004 -13.7998 -5.2998 -35.2002 17.7002 -24.3994c15.7998 7.19922 29.5996 20.1992 36.2998 30.3994c0 0 -5.5 5 -16.2998 4.40039c27.6992 6.59961 34.2998 9.39941 46.1992 9.09961c8 -3.89941 8 34.2998 8 34.2998
|
1287 |
-
c0 14.7002 -2.19922 31 -11.0996 41.5c12.5 -12.1992 29.0996 -32.6992 28 -60.5996c-0.799805 -18.2998 -15.2002 -23 -15.2002 -23c-9.09961 -16.5996 -43.2002 -65.9004 -30.3994 -106c0 0 -9.7002 14.9004 -10.2002 22.0996
|
1288 |
-
c-17.4004 -19.3994 -46.5 -52.2998 -24.6006 -64.5c26.6006 -14.6992 108.801 88.6006 126.2 142.301c34.6006 20.7998 55.4004 47.2998 63.9004 65c22 -43.5 95.2998 -94.5 101.1 -59z" />
|
1289 |
-
<glyph glyph-name="etsy" unicode="" horiz-adv-x="384"
|
1290 |
-
d="M384 100c-1.75 -10.75 -13.75 -110 -15.5 -132c-117.879 4.29883 -219.895 4.74316 -368.5 0v25.5c45.457 8.94824 60.627 8.01855 61 35.25c1.79297 72.3223 3.52441 244.143 0 322c-1.0293 28.46 -12.1299 26.7646 -61 36v25.5
|
1291 |
-
c73.8857 -2.3584 255.933 -8.55078 362.999 3.75c-3.5 -38.25 -7.75 -126.5 -7.75 -126.5h-23.249c-11.0527 42.835 -18.7588 90.5 -54.75 90.5h-137c-10.25 0 -10.75 -3.5 -10.75 -9.75v-163.75c58 -0.5 88.5 2.5 88.5 2.5c29.7695 0.951172 27.5596 8.50195 40.75 65.251
|
1292 |
-
h25.75c-4.40723 -101.351 -3.91016 -61.8291 -1.75 -160.25h-25.75c-9.15527 40.0859 -9.06543 61.0449 -39.501 61.5c0 0 -21.5 2 -88 2v-139c0 -26 14.25 -38.25 44.25 -38.25h89.251c63.6357 0 66.5645 24.9961 98.751 99.75h22.249v-0.000976562z" />
|
1293 |
-
<glyph glyph-name="imdb" unicode=""
|
1294 |
-
d="M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM21.2998 218.8h-0.299805c0.0996094 0.100586 0.200195 0.299805 0.299805 0.400391v-0.400391zM97 128.2v127.8h-33v-127.8h33z
|
1295 |
-
M210.2 128.2v127.8h-43l-7.60059 -59.9004c-2.69922 20 -5.39941 40.1006 -8.69922 59.9004h-42.8008v-127.8h29v84.5l12.2002 -84.5h20.6006l11.5996 86.3994v-86.3994h28.7002zM221.6 128.2c86.1006 -0.100586 75 -6 75 82.5c0 8.09961 0.300781 16.7998 -1.39941 24.3994
|
1296 |
-
c-4.2998 22.5 -31.4004 20.9004 -49 20.9004h-24.6006v-127.8zM382.5 157.4v36c0 17.2998 -0.799805 30.0996 -22.2002 30.0996c-8.89941 0 -14.8994 -2.7002 -20.8994 -9.2002v41.7002h-31.7002v-127.8h29.7998l1.90039 8.09961
|
1297 |
-
c5.69922 -6.7998 11.8994 -9.7998 20.8994 -9.7998c19.7998 0 22.2002 15.2002 22.2002 30.9004zM265 218.1v-49.2998c0 -9.7002 1.90039 -18.7002 -10.2998 -18.3994v83.6992c11.8994 0 10.2998 -6.2998 10.2998 -16zM350.5 192v-32.7002
|
1298 |
-
c0 -5.39941 1.59961 -14.3994 -6.2002 -14.3994c-1.59961 0 -3 0.799805 -3.7998 2.39941c-2.2002 5.10059 -1.09961 44.1006 -1.09961 44.7002c0 3.7998 -1.10059 12.7002 4.89941 12.7002c7.2998 0 6.2002 -7.2998 6.2002 -12.7002z" />
|
1299 |
-
<glyph glyph-name="ravelry" unicode="" horiz-adv-x="512"
|
1300 |
-
d="M498.252 213.777c0.129883 -0.613281 0.322266 -1.21777 0.561523 -1.78223v-37.0557c-0.194336 -0.300781 -0.516602 -0.583008 -0.552734 -0.900391c-0.619141 -5.36426 -0.837891 -10.8076 -1.87012 -16.0869c-2.06934 -10.6074 -4.15723 -21.2393 -7.0166 -31.6523
|
1301 |
-
c-4.94531 -18.0205 -12.7578 -34.8809 -22.2998 -50.9258c-8.94336 -15.126 -19.4043 -28.9668 -31.4268 -41.6387c-3.74609 -3.92188 -7.54688 -7.80078 -11.5107 -11.5c-5.31152 -4.95703 -10.5146 -10.1094 -16.2998 -14.457
|
1302 |
-
c-9.3418 -7.02344 -18.9883 -13.6533 -28.7373 -20.1006c-15.083 -9.81543 -31.6211 -17.9053 -48.9512 -23.8174c-15.3828 -5.38281 -31.1533 -9.38574 -47.4893 -10.7178c-2.52734 -0.206055 -5.02051 -0.753906 -7.52734 -1.14258h-32.2891
|
1303 |
-
c-0.358398 0.245117 -0.762695 0.436523 -1.18945 0.55957c-6.1377 0.620117 -12.3418 0.863281 -18.4121 1.87305c-13.8301 2.22949 -27.5977 5.58398 -40.6416 9.83496c-19.5498 6.43359 -38.4463 15.0176 -55.8994 25.2773
|
1304 |
-
c-15.0488 8.79004 -28.9365 18.9688 -41.7871 30.5859c-9.6875 8.70605 -18.3936 18.0898 -26.3584 28.416c-9.38184 12.1963 -17.4385 25.4316 -24 39.5283c-7.5918 16.6592 -13.3467 34.7812 -16.7295 53.2998c-2.35547 13.1611 -3.85059 26.5459 -4.4248 40.2402
|
1305 |
-
c-0.136719 3.0332 -0.209961 5.74121 -0.209961 8.80859c0 9.05566 0.599609 17.9717 1.76172 26.7119c1.52637 11.874 4.15625 23.6367 7.69043 34.7588c5.05762 15.7021 12.0283 30.7871 20.4941 44.6006c9.58203 15.9961 20.7793 30.6025 33.6484 43.9502
|
1306 |
-
c9.55469 9.83496 19.7539 19.0605 29.9268 28.2676c5.70605 5.1582 11.8066 9.9082 17.9736 14.5186c12.0029 9.04004 24.6963 17.1025 38.0801 24.1572c12.5137 6.63281 25.9795 12.1963 39.7686 16.3555c10.9453 3.41016 22.5254 5.84375 34.2559 7.09961
|
1307 |
-
c2.42773 0.225586 4.82617 0.761719 7.23633 1.15039c10.7627 -0.00195312 21.5254 0 32.2881 0.00585938c0.299805 -0.195312 0.583984 -0.516602 0.899414 -0.552734c6.87793 -0.81543 13.8467 -1.16797 20.627 -2.48242
|
1308 |
-
c11.2432 -2.18359 22.4971 -4.51465 33.5156 -7.61523c19.999 -5.78125 39.2266 -14.2031 56.7227 -24.668c17.2832 -10.0947 32.9639 -22.1357 47.1133 -36.1152c6.71973 -6.90527 12.9209 -14.0508 18.8174 -21.6895c13.4639 -16.959 24.0283 -36.4561 30.874 -57.5
|
1309 |
-
c3.88867 -11.8086 7.16211 -24.2148 9.62207 -36.5996c2.0459 -10.1748 2.53809 -20.6602 3.74609 -31zM337.135 214.927l0.00488281 67.2695c-35.2686 0 -53.1152 -9.36719 -62.04 -36.1895v31.9316h-73.5176v-190.738h73.5127v93.667
|
1310 |
-
c0 22.1396 6.37012 37.04 33.5703 37.04c11.8984 0 28.4697 -2.98047 28.4697 -2.98047z" />
|
1311 |
-
<glyph glyph-name="sellcast" unicode=""
|
1312 |
-
d="M353.4 416c52.0996 0 94.6992 -42.5996 94.6992 -94.5996v-258.801c0 -52 -42.5996 -94.5996 -94.6992 -94.5996h-258.7c-52.1006 0 -94.7002 42.5996 -94.7002 94.7002v258.7c0 52 42.5996 94.5996 94.7002 94.5996h258.7zM303.4 99.5996
|
1313 |
-
c27.8994 48.2002 11.1992 110.5 -37.2002 138.5c-18.6006 10.8008 0.0996094 -0.0996094 -18.5 10.7002c-25 14.4004 -46.2002 -23.2998 -21.6006 -37.5c18 -10.2002 0.800781 -0.399414 18.6006 -10.5996c27.5996 -16 37.2002 -51.7998 21.2998 -79.4004
|
1314 |
-
c-16 -27.5996 -51.7998 -37.2002 -79.4004 -21.2998c-18.5996 10.7998 0.100586 -0.0996094 -18.5 10.7002c-10.2998 6 -23.5996 2.39941 -29.5 -7.90039l-15.6992 -27.2002c-12.6006 -21.7998 19.3994 -53 42.2998 -13.1992c48.2998 -27.7002 110.3 -11 138.2 37.1992z
|
1315 |
-
M325.2 308.4c14.2998 24.7998 -23.4004 46.3994 -37.7002 21.5l-4.7998 -8.40039c-48.2998 27.7002 -110.3 11 -138.2 -37.2002c-27.7998 -48.2998 -11.0996 -110.6 37.0996 -138.399c18.6006 -10.8008 -0.0996094 0.0996094 18.5 -10.7002
|
1316 |
-
c25 -14.4004 46.2002 23.2998 21.6006 37.5c-0.100586 0 -18.6006 10.5996 -18.6006 10.5996c-27.5996 16 -37.2998 51.7998 -21.2998 79.4004c16 27.5996 51.7998 37.2002 79.4004 21.2998c18.5996 -10.7998 -0.100586 0.0996094 18.5 -10.7002
|
1317 |
-
c10.2002 -5.09961 20 -2.89941 26.5 3.60059c2.7002 2.69922 2 2 19 31.5z" />
|
1318 |
-
<glyph glyph-name="superpowers" unicode=""
|
1319 |
-
d="M448 416l-87.2002 -87c39.7002 -38.7002 61.2002 -92.7002 57.7002 -148.2c-5.40039 -93 -76.9004 -167.3 -168.7 -179.8c-83.2998 -11 -166.5 -22 -249.8 -33l86.7998 86.7998c-39.7998 38.7002 -61.0996 92.7002 -57.7998 148.2c5.7002 93.2998 77 167.5 169 180
|
1320 |
-
c83.2002 11 166.7 22 250 33zM368.3 183.7c4.40039 80 -56.7998 146.3 -136.1 151c-78.7002 4.7998 -148.5 -55.2998 -153 -134.5c-4.40039 -80 56.7998 -146.3 136.3 -151c78.7998 -4.7002 148.6 55 152.8 134.5z" />
|
1321 |
-
<glyph glyph-name="wpexplorer" unicode="" horiz-adv-x="512"
|
1322 |
-
d="M512 192c0 -141.2 -114.7 -256 -256 -256c-141.2 0 -256 114.7 -256 256s114.7 256 256 256s256 -114.7 256 -256zM480 192c0 123.2 -100.3 224 -224 224c-123.5 0 -224 -100.5 -224 -224s100.5 -224 224 -224s224 100.5 224 224zM160.9 323.4l86.8994 -37.1006
|
1323 |
-
l-37.0996 -86.8994l-86.9004 37.0996zM270.9 154.3l46.5996 -94h-14.5996l-50 100l-48.9004 -100h-14l51.0996 106.9l-22.2998 9.39941l6 14l68.6006 -29.0996l-6 -14.2998zM259.1 270.6l68.6006 -29.3994l-29.4004 -68.2998l-68.2998 29.0996zM339.4 227.7
|
1324 |
-
l54.5996 -23.1006l-23.4004 -54.2998l-54.2998 23.1006z" />
|
1325 |
-
<glyph glyph-name="meetup" unicode="" horiz-adv-x="512"
|
1326 |
-
d="M99 33.7002c1.09961 -5.7002 -2.2998 -11.1006 -8 -12.2998c-5.40039 -1.10059 -10.9004 2.2998 -12 8c-1.09961 5.39941 2.2998 11.0996 7.7002 12.2998c5.39941 1.2002 11.0996 -2.2998 12.2998 -8zM242.1 -37.7002c6.60059 4.60059 15.5 2.7998 19.7002 -3.7002
|
1327 |
-
c4.60059 -6.59961 2.90039 -15.3994 -3.39941 -20c-6.60059 -4.59961 -15.4004 -2.89941 -20 3.7002c-4.30078 6.60059 -2.60059 15.4004 3.69922 20zM156.1 424.6c-6.2998 -1.5 -12.5 2.5 -13.8994 9.10059c-1.2002 6.2998 2.7998 12.5996 9.09961 14
|
1328 |
-
c6.2998 1.5 12.6006 -2.5 13.7002 -9.10059c1.40039 -6.2998 -2.59961 -12.5996 -8.90039 -14zM34.4004 221.7c10 -7.10059 12.5996 -20.7998 5.69922 -31.2002c-6.89941 -10.2998 -20.5996 -12.7998 -30.5996 -5.7002c-10 6.90039 -12.5996 20.9004 -5.7002 30.9004
|
1329 |
-
c6.90039 10.2998 20.6006 12.8994 30.6006 6zM306.4 392.6c-10.3008 -6.2998 -23.7002 -2.89941 -29.7002 7.40039c-6.2998 10.5996 -2.90039 24.2998 7.39941 30.5996c10.3008 6.30078 23.7002 2.90039 30 -7.69922c6 -10.3008 2.90039 -24 -7.69922 -30.3008zM115.3 334.6
|
1330 |
-
c-7.5 -5.19922 -18 -3.5 -23.0996 4.30078c-5.10059 7.69922 -3.40039 18.2998 4.2998 23.6992c7.40039 5.10059 18 3.40039 23.0996 -4.2998c5.10059 -7.7002 3.40039 -18.2998 -4.2998 -23.7002zM487.6 178.6c7.40039 1.40039 14.8008 -3.5 16.3008 -10.8994
|
1331 |
-
c1.69922 -7.7002 -3.2002 -15.2002 -10.6006 -16.6006c-7.39941 -1.69922 -14.8994 3.2002 -16.2998 10.6006c-1.7002 7.7998 3.2002 15.2002 10.5996 16.8994zM527.3 235.4c1.40039 -5.7002 -2.2998 -11.1006 -7.7002 -12.6006
|
1332 |
-
c-5.69922 -1.09961 -11.1992 2.60059 -12.2998 8c-1.09961 5.7002 2.2998 11.5 8 12.6006c5.40039 1.09961 10.9004 -2.30078 12 -8zM447 309.1c8.2998 6 20 3.80078 25.7002 -4.89941c5.7002 -8.60059 3.7002 -20.2998 -4.60059 -26.2998
|
1333 |
-
c-8.59961 -5.7002 -20.2998 -3.7002 -26 4.89941c-5.69922 8.60059 -3.69922 20.2998 4.90039 26.2998zM440.7 169.7c26.2998 -43.1006 15.0996 -100 -26.2998 -129.101c-17.4004 -12.2998 -37.1006 -17.6992 -56.9004 -17.0996
|
1334 |
-
c-12 -47.0996 -69.4004 -64.5996 -105.1 -32.5996c-1.10059 -0.900391 -2.60059 -1.7002 -3.7002 -2.90039c-39.1006 -27.0996 -92.2998 -17.4004 -119.4 22.2998c-9.7002 14.2998 -14.5996 30.6006 -15.0996 46.9004c-65.4004 10.8994 -90 94 -41.1006 139.7
|
1335 |
-
c-28.2998 46.8994 0.600586 107.399 53.4004 114.899c25.0996 66.2002 107.6 97.6006 163.6 54.2002c67.4004 22.2998 136.301 -29.4004 130.9 -101.1c41.0996 -12.6006 52.7998 -66.9004 19.7002 -95.2002zM370.7 95.4004
|
1336 |
-
c-3.10059 20.5996 -40.9004 4.59961 -43.1006 27.0996c-3.09961 32 43.7002 101.1 40 128c-3.39941 24 -19.3994 29.0996 -33.3994 29.4004c-13.4004 0.299805 -16.9004 -2 -21.4004 -4.60059c-2.89941 -1.7002 -6.59961 -4.89941 -11.7002 0.299805
|
1337 |
-
c-6.2998 6 -11.0996 11.7002 -19.3994 12.9004c-12.2998 2 -17.7002 -2 -26.6006 -9.7002c-3.39941 -2.89941 -12 -12.8994 -20 -9.09961c-3.39941 1.7002 -15.3994 7.7002 -24 11.3994c-16.2998 7.10059 -40 -4.59961 -48.5996 -20
|
1338 |
-
c-12.9004 -22.8994 -38 -113.1 -41.7002 -125.1c-8.59961 -26.5996 10.9004 -48.5996 36.9004 -47.0996c11.0996 0.599609 18.2998 4.59961 25.3994 17.3994c4 7.40039 41.7002 107.7 44.6006 112.601c2 3.39941 8.89941 8 14.5996 5.09961
|
1339 |
-
c5.7002 -3.09961 6.90039 -9.40039 6 -15.0996c-1.09961 -9.7002 -28 -70.9004 -28.8994 -77.7002c-3.40039 -22.9004 26.8994 -26.6006 38.5996 -4c3.7002 7.09961 45.7002 92.5996 49.4004 98.2998c4.2998 6.2998 7.39941 8.2998 11.6992 8
|
1340 |
-
c3.10059 0 8.30078 -0.900391 7.10059 -10.9004c-1.40039 -9.39941 -35.1006 -72.2998 -38.9004 -87.6992c-4.59961 -20.6006 6.60059 -41.4004 24.9004 -50.6006c11.3994 -5.7002 62.5 -15.7002 58.5 11.1006zM376.4 3.09961c10.5996 7.5 24.8994 4.60059 32.2998 -6
|
1341 |
-
c7.09961 -10.5996 4.59961 -25.1992 -6 -32.5996c-10.6006 -7.09961 -24.9004 -4.59961 -32 6c-7.2002 10.5996 -4.60059 25.2002 5.7002 32.5996z" />
|
1342 |
-
<glyph glyph-name="font-awesome-alt" unicode=""
|
1343 |
-
d="M339.3 276.8c5.40039 0 9.5 -3 7.7002 -7.09961v-134.4c0 -4.2002 -3 -6 -7.2002 -7.7998c-15.5996 -7.09961 -33.5 -13.7002 -52 -13.7002c-26.2998 0 -38.2002 16.1006 -69.2998 16.1006c-22.7002 0 -46 -8.30078 -65.7002 -16.7002
|
1344 |
-
c-0.599609 -0.600586 -1.7998 -1.2002 -3 -1.2002v-44.2002c0 -1.7998 0 -3 -0.599609 -4.7998v-1.2998c-2.40039 -7.7002 -9.5 -13.7002 -18.5 -13.7002c-10.7002 0 -19.7002 8.90039 -19.7002 19.7002v212.1c-7.7002 6 -12.5 15.5 -12.5 25.7002
|
1345 |
-
c0 18 14.2998 32.2998 32.2998 32.2998s32.2998 -14.3994 32.2998 -32.2998c0 -10.7998 -4.69922 -19.7002 -12.5 -25.7002v-17.8994c1.2002 0.599609 3 1.19922 4.80078 1.7998c17.8994 7.09961 39.3994 13.7002 59.6992 13.7002
|
1346 |
-
c22.1006 0 39.4004 -5.90039 59.1006 -13.7002c4.09961 -1.7998 8.2998 -2.40039 12.5 -2.40039c22.7002 0 46.5996 15.5 52.5996 15.5zM397.8 416c27.5 0 50.2002 -22.7002 50.2002 -50.2002v-347.6c0 -27.5 -22.7002 -50.2002 -50.2002 -50.2002h-347.6
|
1347 |
-
c-27.5 0 -50.2002 22.7002 -50.2002 50.2002v347.6c0 27.5 22.7002 50.2002 50.2002 50.2002h347.6zM412.1 18.2998v347.601c0 7.69922 -6.5 14.2998 -14.2998 14.2998v-0.100586h-347.6c-7.7002 0 -14.2998 -6.5 -14.2998 -14.2998v-347.5
|
1348 |
-
c0 -7.7002 6.5 -14.2998 14.2998 -14.2998h347.6c7.7002 0 14.2998 6.5 14.2998 14.2998z" />
|
1349 |
-
<glyph glyph-name="accessible-icon" unicode=""
|
1350 |
-
d="M423.9 192.2l-12.9004 -157.3c-3.2998 -40.7002 -63.9004 -35.1006 -60.5996 4.89941l10 122.5l-41.1006 -2.2998c10.1006 -20.7002 15.7998 -43.9004 15.7998 -68.5c0 -41.2002 -16.0996 -78.7002 -42.2998 -106.5l-39.2998 39.2998
|
1351 |
-
c57.9004 63.7002 13.0996 167.2 -74 167.2c-25.9004 0 -49.5 -9.90039 -67.2002 -26l-39.2998 39.2998c22 20.7002 50.0996 35.1006 81.4004 40.2002l75.2998 85.7002l-42.6006 24.7998l-51.5996 -46c-30 -26.7998 -70.5996 18.5 -40.5 45.4004l68 60.6992
|
1352 |
-
c9.7998 8.80078 24.0996 10.2002 35.5 3.60059c0 0 139.3 -80.9004 139.5 -81.1006c16.2002 -10.0996 20.7002 -36 6.09961 -52.5996l-58.3994 -66.5l106.1 5.90039c18.5 1.09961 33.6006 -14.4004 32.1006 -32.7002zM359 346.2
|
1353 |
-
c-28.0996 0 -50.9004 22.7998 -50.9004 50.8994c0 28.1006 22.8008 50.9004 50.9004 50.9004s50.9004 -22.7998 50.9004 -50.9004c0 -28.0996 -22.8008 -50.8994 -50.9004 -50.8994zM179.6 -8.5c20.8008 0 40.1006 6.40039 56.1006 17.2998l39.7002 -39.7002
|
1354 |
-
c-100.7 -78.8994 -251.4 -8.19922 -251.4 122.5c0 36.1006 12.4004 69.4004 33.2002 95.7002l39.7002 -39.7002c-44.7002 -65.5 2.09961 -156.1 82.6992 -156.1z" />
|
1355 |
-
<glyph glyph-name="accusoft" unicode="" horiz-adv-x="640"
|
1356 |
-
d="M322.1 196c-1.69922 -1.59961 -89.5996 -82.5 -90.1992 -83.2998l-92.6006 -33.7998c-4.7998 -2 -7.59961 -3.7002 -7 -8.90039c0.200195 -1.5 0.600586 -22.5996 1 -27.7002c-0.700195 -0.5 -0.0996094 0 -0.599609 -0.599609c0 0 -113.7 -36.6006 -114.5 -36.6006
|
1357 |
-
c-14.1006 -5.09961 -22.7002 -8.2998 -15.7002 1.7002c1.2998 1.7998 234.4 231.601 243.4 240.9c13 13.5 25 15.0996 25 15.0996l51.1992 -65.7998v-1zM482.2 75.9004c-5.7002 6.89941 -232.2 297.1 -239.9 306.6c-13.7002 17.2002 0 16.7998 19.2002 16.9004
|
1358 |
-
c9.7002 0.0996094 106.3 0.599609 116.5 0.599609c24.0996 0.0996094 28.7002 -0.599609 38.4004 -12.7998c2.09961 -2.7002 205.1 -245.8 207.199 -248.3c5.5 -6.7002 15.2002 -19.1006 7.2002 -23.4004c-2.39941 -1.2998 -114.6 -47.7002 -117.8 -48.9004
|
1359 |
-
c-10.0996 -4 -17.5 -6.7998 -30.7998 9.30078zM634.9 74.2998c6 -1.39941 7.09961 -4.2002 1.69922 -8.2002c-2 -1.39941 -123.699 -76.5996 -125.8 -77.7998c-15.0996 -8.7998 -38 -1.59961 -53.5996 1.7002c-7.10059 1.5 -305.3 68.2998 -308 69.0996
|
1360 |
-
c-2.60059 0.900391 -4.40039 1 -4.60059 3.5c-0.299805 4 6 5.60059 11.1006 7.60059c5 1.89941 145.3 52.5996 150.2 54.7002c4.7998 2.09961 11.2998 2.69922 14.3994 2.89941c4.90039 0.299805 59.9004 -8.39941 65.2998 -9.2998l57.1006 -74
|
1361 |
-
c9.7998 -11.4004 20.7002 -21.9004 36.7002 -14.5996c2.5 1.19922 117.5 51.5996 117.5 51.5996c13.3994 -2.5 35.6992 -6.90039 38 -7.2002z" />
|
1362 |
-
<glyph glyph-name="adversal" unicode="" horiz-adv-x="512"
|
1363 |
-
d="M482.1 416c24.5 0 29.9004 -5.59961 29.9004 -30.2002v-388.1c0 -24.5 -5.5 -29.7002 -29.9004 -29.7002h-453.399c-22.9004 0 -28.7002 5.59961 -28.7002 28.9004v390.199c0 23 5.7998 28.9004 28.7002 28.9004h453.399zM178.4 227.7
|
1364 |
-
c9.39941 -7.2002 12.3994 -17.1006 11.2998 -27.2998c-1.7998 -19.1006 -75.7998 -11.4004 -114 -30.9004c-27.2002 -13.9004 -42.7002 -41.7002 -39.6006 -71c6.7002 -64.7002 89.6006 -79.7002 147 -43.2998c4.60059 3.2002 8.30078 4.89941 11.9004 1
|
1365 |
-
c2.09961 -2.60059 2 -4 3.90039 -6.2002c7.2998 -9.59961 38.1992 -14.0996 46.5996 -7.40039c3.09961 2.80078 4.59961 6.30078 2.7002 10.7002c-13.6006 30.5 -6.60059 63 -9.2998 88.7998c0 69.3008 6.39941 111.7 -34.5 128.5
|
1366 |
-
c-41.9004 17.4004 -84.2002 16.6006 -125.301 -4.7998c-16.2998 -9 -53.6992 -52.8994 -24.8994 -64.2998c5.2998 -2.2998 12.7998 -4 22.5 -5.5c8.2002 -1.2002 13.2002 -2.7998 17.5 8.2998c12.0996 32.1006 56.7002 43.6006 84.2002 23.4004zM465.1 5.7002
|
1367 |
-
c0 14.2998 -9.7998 9.89941 -16.5996 9.89941c-132.3 0.400391 -264.5 0.400391 -396.8 0c-6.60059 0 -16.7002 4.80078 -17.1006 -9.09961c-0.399414 -15.5 10.4004 -10.7002 17.8008 -10.7002h394.899c6.7002 0 17.7998 -5.2002 17.7998 9.90039zM468.9 346.2
|
1368 |
-
c0 0.200195 0 0.299805 0.0996094 0.5c0 9.89941 -3.5 15.0996 -13.5996 14.2998c-3.10059 -0.400391 -6.60059 0 -9.7002 0c-26.1006 0 -26 0 -26 -26.2002v-71c-79.2002 45.6006 -124.3 -6.59961 -136.101 -30.5c-16.3994 -32.8994 -21.7998 -66.5996 -15.6992 -100
|
1369 |
-
c16.2998 -92.2998 91 -114.899 144.399 -85.2002c4.60059 2.80078 6.60059 7.5 12.4004 -1.19922c8.59961 -12.7002 23.7002 -5.2002 36.0996 -5.60059c7.40039 0 8.10059 8.2002 8.10059 13.9004v291zM417.4 113.9c-19.5 -47.6006 -72.9004 -43.3008 -90 -5.2002
|
1370 |
-
c-15.1006 33.2998 -15.5 68.2002 0.399414 101.5c16.2998 34.0996 59.7002 35.7002 81.5 4.7998c20.6006 -28.7998 14.9004 -84.5996 8.10059 -101.1zM122.6 78.5996c-7.5 1.30078 -33 3.30078 -33.6992 27.8008c-0.400391 13.8994 7.7998 23 19.7998 25.7998
|
1371 |
-
c24.3994 5.89941 49.2998 9.89941 73.7002 14.7002c8.89941 2 7.39941 -4.40039 7.7998 -9.5c1.39941 -33 -26.1006 -59.2002 -67.6006 -58.8008z" />
|
1372 |
-
<glyph glyph-name="affiliatetheme" unicode="" horiz-adv-x="512"
|
1373 |
-
d="M159.7 210.6c-51.2998 -70.8994 -116.601 -110.8 -145.7 -89.1992c-29.2002 21.6992 -11.2002 96.5996 40.2002 167.5c51.2998 70.8994 116.6 110.8 145.7 89.1992c29.0996 -21.5996 11.0996 -96.5996 -40.2002 -167.5zM510.9 267.9
|
1374 |
-
c0.699219 -8.2002 1.09961 -16.5 1 -25c0 -151.801 -121.601 -274.9 -271.601 -274.9c-82.8994 0 -157.2 37.5996 -207 96.9004c71.2998 19.3994 130.5 68.3994 164.101 133.199c7.69922 -32.5996 24 -58.5996 49 -73.7998c72.5996 -44.0996 190.699 20.2002 264.5 143.601z
|
1375 |
-
" />
|
1376 |
-
<glyph glyph-name="algolia" unicode=""
|
1377 |
-
d="M229.3 265.4c49.2002 0 89.2002 -39.9004 89.2002 -89.2002s-39.9004 -89.2002 -89.2002 -89.2002s-89.2002 39.9004 -89.2002 89.2002s39.9004 89.2002 89.2002 89.2002zM292 208.8c1.2998 0.700195 1.7998 2.40039 1.09961 3.7002
|
1378 |
-
c-12.1992 21.4004 -34.8994 36.0996 -61.0996 37.0996c-1.40039 0.100586 -2.7002 -1.09961 -2.7002 -2.59961v-66.5c0 -1.90039 2 -3.2002 3.7998 -2.2998zM389.1 416c32.5 0 58.9004 -26.4004 58.8008 -58.9004v-330.199c0 -32.5 -26.3008 -58.9004 -58.9004 -58.9004
|
1379 |
-
h-330.1c-32.5 0 -58.9004 26.4004 -58.9004 59v330.1c0 32.5 26.4004 58.9004 58.9004 58.9004h330.199zM186.5 331.3h0.0996094v-15.7998c0 -1.7002 1.7002 -3 3.40039 -2.5c12.7002 3.7002 25.9004 5.5 39.4004 5.5c13 0 25.7998 -1.7002 38.0996 -5.09961
|
1380 |
-
c1.59961 -0.5 3.2998 0.699219 3.2998 2.5v15.3994c0 10.7998 -8.7002 19.5 -19.5 19.5h-45.2998c-10.7998 0 -19.5 -8.7002 -19.5 -19.5zM102.1 294.3c-7.59961 -7.59961 -7.59961 -19.8994 0 -27.3994l7.7002 -7.7002c1.10059 -1.2002 3 -1 4 0.299805
|
1381 |
-
c4.40039 6.09961 9.40039 12 14.7998 17.4004c5.5 5.5 11.4004 10.3994 17.6006 14.8994c1.2998 1 1.39941 2.90039 0.299805 4l-7.7002 7.7002c-7.59961 7.59961 -19.8994 7.59961 -27.5 0zM229.3 49.5c69.9004 0 126.601 56.7998 126.601 126.6
|
1382 |
-
c0 70 -56.6006 126.601 -126.601 126.601c-69.8994 0 -126.6 -56.7002 -126.6 -126.601c0 -69.8994 56.5996 -126.6 126.6 -126.6z" />
|
1383 |
-
<glyph glyph-name="amilia" unicode=""
|
1384 |
-
d="M240.1 416c134.101 0 191.9 -55.7002 192 -136v-296.6c0 -3 -1 -8.10059 -5.09961 -9.10059c-4 -1 -57.2998 -0.700195 -66.5 -0.700195s-56.7998 1 -59.9004 2c-4 0.900391 -6.09961 6.10059 -6.09961 9.10059v25.3994
|
1385 |
-
c-39.5996 -21.3994 -105.5 -42.0996 -153.3 -42.0996c-109.7 0 -124.9 85.7002 -124.9 104s-5.09961 95.5 30.4004 111.8c31.5 13.2002 156.3 36.5 243.7 47.7998v38.5c0 44.7002 -1 73.1006 -58.9004 73.1006c-55.7998 0 -119.8 -25.4004 -152.3 -47.7002
|
1386 |
-
c-6.10059 -4.09961 -16.2002 -4.09961 -20.2998 6.09961c-5.10059 12.2002 -9.10059 34.5 -10.2002 39.6006c-1.90039 10.2002 2.09961 16.2998 7.2002 19.3994c52.6992 38.5 122.3 55.4004 184.199 55.4004zM290.3 68v106.7c-44.7002 -4.10059 -95.5 -20.2998 -119.8 -33.5
|
1387 |
-
c-21.2998 -10.2002 -18.2998 -40.7002 -18.2998 -52.9004c0.0996094 -11.2002 6.2002 -44.7002 59 -44.7002c30.3994 0 57.7002 11.2002 79.0996 24.4004z" />
|
1388 |
-
<glyph glyph-name="angrycreative" unicode="" horiz-adv-x="640"
|
1389 |
-
d="M640 209.8l-3.2002 -28.2002l-34.5 -2.2998l-2 -18.0996l34.5 2.2998l-3.2002 -28.2002l-34.3994 -2.2002l-2.2998 -20.0996l34.3994 2.2002l-3 -26.1006l-64.7002 -4.09961l12.7002 113.2l-47.2998 -115.4l-31.9004 -2l-23.7998 117.8l30.2998 2l13.6006 -79.3994
|
1390 |
-
l31.7002 82.3994zM426.8 76.5l12.7998 120l28.4004 1.90039l-12.9004 -120.101zM162 59.9004l-19.4004 36l-3.5 -37.4004l-28.1992 -1.7002l2.69922 29.1006c-11 -18 -32 -34.3008 -56.8994 -35.8008c-32.7998 -2 -59.7002 20.9004 -56.4004 58.2002
|
1391 |
-
c2.60059 29.2998 26.7002 62.7998 67.5 65.4004c37.7002 2.39941 47.6006 -23.2002 51.2998 -28.7998l2.80078 30.7998l38.8994 2.5c20.1006 1.2998 38.7002 -3.7002 42.5 -23.7002l2.60059 26.5996l64.7998 4.2002l-2.7002 -27.8994l-36.4004 -2.40039l-1.69922 -17.9004
|
1392 |
-
l36.3994 2.30078l-2.7002 -27.9004l-36.3994 -2.2998l-1.90039 -19.9004l36.2998 2.2998l-2.09961 -20.7998l55 117.2l23.7998 1.59961l32.1006 -110.6l8.89941 85.5996l-22.2998 -1.39941l2.90039 27.8994l75 4.90039l-3 -28l-24.3008 -1.59961l-9.69922 -91.9004
|
1393 |
-
l-58 -3.7002l-4.30078 15.6006l-39.3994 -2.5l-8 -16.3008zM117.7 130.1l-26.4004 -1.69922c-6.7002 12.3994 -14.3994 16.5996 -26.2998 15.7998c-19 -1.2002 -33.2998 -17.5 -34.5996 -33.2998c-1.40039 -16 7.2998 -32.5 28.6992 -31.2002
|
1394 |
-
c12.8008 0.799805 21.3008 8.59961 28.9004 18.8994l27 1.7002zM173.8 137.8c1.2002 12.9004 -7.59961 13.6006 -26.0996 12.4004l-2.7002 -28.5c14.2002 0.899414 27.5 2.09961 28.7998 16.0996zM194.9 67l5.7998 60c-5 -13.5 -14.7002 -21.0996 -27.9004 -26.5996z
|
1395 |
-
M330.3 112l-7.89941 37.7998l-15.8008 -39.2998zM160.2 186.6l-4.2998 17.5l-39.6006 -2.59961l-8.09961 -18.2002l-31.9004 -2.09961l57 121.899l23.9004 1.60059l30.7002 -102l9.89941 104.7l27 1.7998l37.7998 -63.6006l6.5 66.6006l28.5 1.89941l-4 -41.1992
|
1396 |
-
c7.40039 13.5 22.9004 44.6992 63.6006 47.5c40.5 2.7998 52.3994 -29.3008 53.3994 -30.3008l3.30078 32l39.2998 2.7002c12.7002 0.900391 27.7998 -0.299805 36.2998 -9.7002l-4.40039 11.9004l32.2002 2.2002l12.9004 -43.2002l23 45.7002l31 2.2002l-43.6006 -78.4004
|
1397 |
-
l-4.7998 -44.2998l-28.3994 -1.90039l4.7998 44.2998l-15.7998 43c1 -22.2998 -9.2002 -40.0996 -32 -49.5996l25.1992 -38.7998l-36.3994 -2.40039l-19.2002 36.7998l-4 -38.2998l-28.4004 -1.89941l3.30078 31.5c-6.7002 -9.30078 -19.7002 -35.4004 -59.6006 -38
|
1398 |
-
c-26.2002 -1.7002 -45.5996 10.2998 -55.3994 39.1992l-4 -40.2998l-25 -1.59961l-37.6006 63.2998l-6.2998 -66.2002zM436.8 268.7c10.2002 0.700195 17.5 2.09961 21.6006 4.2998c4.5 2.40039 7 6.40039 7.59961 12.0996
|
1399 |
-
c0.599609 5.30078 -0.599609 8.80078 -3.40039 10.4004c-3.59961 2.09961 -10.5996 2.7998 -22.8994 2zM327.7 234c5.59961 -5.90039 12.7002 -8.5 21.2998 -7.90039c4.7002 0.300781 9.09961 1.80078 13.2998 4.10059c5.5 3 10.6006 8 15.1006 14.2998l-34.2002 -2.2998
|
1400 |
-
l2.39941 23.8994l63.1006 4.30078l1.2002 12l-31.2002 -2.10059c-4.10059 3.7002 -7.7998 6.60059 -11.1006 8.10059c-4 1.69922 -8.09961 2.7998 -12.1992 2.5c-8 -0.5 -15.3008 -3.60059 -22 -9.2002c-7.7002 -6.40039 -12 -14.5 -12.9004 -24.4004
|
1401 |
-
c-1.09961 -9.59961 1.40039 -17.2998 7.2002 -23.2998zM126.4 225.8l23.7998 1.60059l-8.2998 37.5996z" />
|
1402 |
-
<glyph glyph-name="app-store" unicode="" horiz-adv-x="512"
|
1403 |
-
d="M255.9 327.1l9.09961 15.7002c5.59961 9.7998 18.0996 13.1006 27.9004 7.5c9.7998 -5.59961 13.0996 -18.0996 7.5 -27.8994l-87.5 -151.5h63.2998c20.5 0 32 -24.1006 23.0996 -40.8008h-185.5c-11.2998 0 -20.3994 9.10059 -20.3994 20.4004
|
1404 |
-
s9.09961 20.4004 20.3994 20.4004h52l66.6006 115.399l-20.8008 36.1006c-5.59961 9.7998 -2.2998 22.1992 7.5 27.8994c9.80078 5.60059 22.2002 2.2998 27.9004 -7.5zM177.2 109.1l-19.6006 -34c-5.59961 -9.7998 -18.0996 -13.0996 -27.8994 -7.5
|
1405 |
-
c-9.7998 5.60059 -13.1006 18.1006 -7.5 27.9004l14.5996 25.2002c16.4004 5.09961 29.7998 1.2002 40.4004 -11.6006zM346.1 170.8h53.1006c11.2998 0 20.3994 -9.09961 20.3994 -20.3994c0 -11.3008 -9.09961 -20.4004 -20.3994 -20.4004h-29.5l19.8994 -34.5
|
1406 |
-
c5.60059 -9.7998 2.30078 -22.2002 -7.5 -27.9004c-9.7998 -5.59961 -22.1992 -2.2998 -27.8994 7.5c-33.5 58.1006 -58.7002 101.601 -75.4004 130.601c-17.0996 29.5 -4.89941 59.0996 7.2002 69.0996c13.4004 -23 33.4004 -57.7002 60.0996 -104zM256 440
|
1407 |
-
c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM472 192c0 119.9 -97.2998 216 -216 216c-119.9 0 -216 -97.2998 -216 -216c0 -119.9 97.2998 -216 216 -216c119.9 0 216 97.2998 216 216z" />
|
1408 |
-
<glyph glyph-name="app-store-ios" unicode=""
|
1409 |
-
d="M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM127 63.5l19.2998 33.2998c-10.2998 12.5 -23.5 16.2998 -39.5996 11.4004l-14.2998 -24.7002
|
1410 |
-
c-5.5 -9.5 -2.30078 -21.7998 7.2998 -27.2998c9.5 -5.5 21.7998 -2.2998 27.2998 7.2998zM265.9 117.4c8.7998 16.2998 -2.5 40 -22.7002 40h-62.1006l85.8008 148.6c5.5 9.5 2.2998 21.7998 -7.30078 27.2998c-9.5 5.5 -21.7998 2.2998 -27.2998 -7.2998
|
1411 |
-
l-8.89941 -15.4004l-8.90039 15.4004c-5.5 9.5 -17.7002 12.7998 -27.2998 7.2998c-9.5 -5.5 -12.7998 -17.7002 -7.2998 -27.2998l20.5 -35.4004l-65.4004 -113.199h-51c-11 0 -20 -9 -20 -20s9 -20 20 -20h181.9zM364 117.4c11 0 20 8.89941 20 20c0 11 -9 20 -20 20h-52
|
1412 |
-
c-26.2002 45.2998 -45.7998 79.2998 -58.9004 102c-11.8994 -9.80078 -23.7998 -38.8008 -7.09961 -67.8008c16.5 -28.3994 41.0996 -71.1992 74 -128.1c5.5 -9.5 17.7002 -12.7998 27.2998 -7.2998c9.5 5.5 12.7998 17.7002 7.2998 27.2998l-19.5996 33.9004h29z" />
|
1413 |
-
<glyph glyph-name="apper" unicode="" horiz-adv-x="640"
|
1414 |
-
d="M42.0996 208.9c22.2002 0 29 -2.80078 33.5 -14.6006h0.800781v22.9004c0 11.2998 -4.80078 15.3994 -17.9004 15.3994c-11.2998 0 -14.4004 -2.5 -15.0996 -12.7998h-38.6006c0.299805 13.9004 1.5 19.1006 5.7998 24.4004
|
1415 |
-
c7.30078 8.7998 18.9004 11.7998 46.1006 11.7998c33 0 47.0996 -5 53.8994 -18.9004c2 -4.2998 4 -15.5996 4 -23.6992v-76.3008h-38.2998l1.2998 19.1006h-1c-5.2998 -15.6006 -13.5996 -20.4004 -35.5 -20.4004c-30.2998 0 -41.0996 10.1006 -41.0996 37.2998
|
1416 |
-
c0 25.2002 12.2998 35.8008 42.0996 35.8008zM59.2002 160.8c13.0996 0 16.8994 3 16.8994 13.4004c0 9.09961 -4.2998 11.5996 -19.5996 11.5996c-13.0996 0 -17.9004 -3 -17.9004 -12.0996c-0.0996094 -10.4004 3.7002 -12.9004 20.6006 -12.9004zM137 255.7h38.2998
|
1417 |
-
l-1.5 -20.6006h0.799805c9.10059 17.1006 15.9004 20.9004 37.5 20.9004c14.4004 0 24.7002 -3 31.5 -9.09961c9.80078 -8.60059 12.8008 -20.4004 12.8008 -48.1006c0 -30 -3 -43.0996 -12.1006 -52.8994c-6.7998 -7.30078 -16.3994 -10.1006 -33.2002 -10.1006
|
1418 |
-
c-20.3994 0 -29.1992 5.5 -33.7998 21.2002h-0.799805v-70.2998h-39.5v169zM217.9 195c0 27.5 -3.30078 32.5 -20.7002 32.5c-16.9004 0 -20.7002 -5 -20.7002 -28.7002c0 -28 3.5 -33.5 21.2002 -33.5c16.3994 0 20.2002 5.60059 20.2002 29.7002zM275.8 255.7h38.2998
|
1419 |
-
l-1.5 -20.6006h0.800781c9.09961 17.1006 15.8994 20.9004 37.5 20.9004c14.3994 0 24.6992 -3 31.5 -9.09961c9.7998 -8.60059 12.7998 -20.4004 12.7998 -48.1006c0 -30 -3 -43.0996 -12.1006 -52.8994c-6.7998 -7.30078 -16.3994 -10.1006 -33.2998 -10.1006
|
1420 |
-
c-20.3994 0 -29.2002 5.5 -33.7998 21.2002h-0.799805v-70.2998h-39.5v169h0.0996094zM356.7 195c0 27.5 -3.2998 32.5 -20.7002 32.5c-16.9004 0 -20.7002 -5 -20.7002 -28.7002c0 -28 3.5 -33.5 21.2002 -33.5c16.4004 0 20.2002 5.60059 20.2002 29.7002zM410.5 198.8
|
1421 |
-
c0 25.4004 3.2998 37.7998 12.2998 45.7998c8.7998 8.10059 22.2002 11.3008 45.1006 11.3008c42.7998 0 55.6992 -12.8008 55.6992 -55.7002v-11.1006h-75.2998c-0.299805 -2 -0.299805 -4 -0.299805 -4.7998c0 -16.8994 4.5 -21.8994 20.0996 -21.8994
|
1422 |
-
c13.9004 0 17.9004 3 17.9004 13.8994h37.5v-2.2998c0 -9.7998 -2.5 -18.9004 -6.7998 -24.7002c-7.2998 -9.7998 -19.6006 -13.5996 -44.2998 -13.5996c-27.5 0 -41.6006 3.2998 -50.6006 12.2998c-8.5 8.5 -11.2998 21.2998 -11.2998 50.7998zM486.9 210.4
|
1423 |
-
c-0.300781 1.7998 -0.300781 3.2998 -0.300781 3.7998c0 12.2998 -3.2998 14.5996 -19.5996 14.5996c-14.4004 0 -17.0996 -3 -18.0996 -15.0996l-0.300781 -3.2998h38.3008zM542.5 255.7h38.2998l-1.7998 -19.9004h0.700195
|
1424 |
-
c6.7998 14.9004 14.3994 20.2002 29.7002 20.2002c10.7998 0 19.0996 -3.2998 23.3994 -9.2998c5.2998 -7.2998 6.7998 -14.4004 6.7998 -34c0 -1.5 0 -5 0.200195 -9.2998h-35c0.299805 1.7998 0.299805 3.2998 0.299805 4c0 15.3994 -2 19.3994 -10.2998 19.3994
|
1425 |
-
c-6.2998 0 -10.7998 -3.2998 -13.0996 -9.2998c-1 -3 -1 -4.2998 -1 -12.2998v-68h-38.2998v118.5h0.0996094z" />
|
1426 |
-
<glyph glyph-name="asymmetrik" unicode="" horiz-adv-x="576"
|
1427 |
-
d="M517.5 138.8c-13.9004 -14.2998 -30.4004 -27.7002 -48.9004 -39.7998l73.4004 -110.4h-101.6l-45.9004 71.8008c-17.5996 -7.2002 -35.9004 -13.4004 -54.5 -18.7002l32.5996 -53.1006h-135.5l22.8008 37.1006c-23.3008 -2.7002 -46.4004 -3.7002 -68.6006 -2.7002
|
1428 |
-
l-22 -34.4004h-101.6l34.5 51.7002c-45 17.9004 -68.9004 47.9004 -68.4004 83c0.299805 25.7998 14 54.2998 41.7002 82.9004c38.9004 40 96.5 72.5996 161.6 92.8994c-22.2998 -8.09961 -42 -18.5 -62 -30.6992c-31.1992 -16.2002 -58.6992 -35.9004 -79.5 -58.1006
|
1429 |
-
c-57.3994 -61 -46.5 -121.8 19.1006 -151.2l190.2 285.5l150.899 -226.399c13 9.5 24.7998 19.7998 35 30.5996c98 104.2 53.7002 207.9 -98.7998 231.7c-68.2998 10.5996 -146.8 5.7002 -221.3 -14.7998c-60.1006 -10 -118.7 -31.7002 -170.7 -58.2002
|
1430 |
-
c118.1 66.9004 277.9 102.1 406.6 82.4004c110 -16.8008 170.2 -69.5 169.4 -135c-0.400391 -36.1006 -19.7002 -76.1006 -58.5 -116.101zM329.9 58.2998c18.3994 5.2998 36.5 11.7998 53.6992 19.2002l-78.6992 123l-101.9 -159.3
|
1431 |
-
c22.5 -0.700195 45.7998 0.899414 69.2002 4.39941l32.7002 53.3008z" />
|
1432 |
-
<glyph glyph-name="audible" unicode="" horiz-adv-x="640"
|
1433 |
-
d="M640 248.1v-54l-320 -200l-320 199.9v54l320 -200zM445.5 176.1c-70.7998 94.4004 -200.5 110.7 -290.2 36.3008c-2.59961 -2.2002 -5.2002 -4.40039 -7.7002 -6.7002h-0.299805c37.1006 55.7002 100.601 92.3994 172.601 92.3994s135.5 -36.7998 172.699 -92.5996z
|
1434 |
-
M225.4 157.3c21 29.6006 55.5 49 94.3994 49c39.2002 0 73.9004 -19.5996 94.7998 -49.5l-45.3994 -28.3994c-21.2002 29.1992 -52 47.5996 -86.4004 47.5996c-20.8994 0 -40.5 -6.7998 -57.3994 -18.7002zM103.6 286.9c-11.5 -9.10059 -24.2998 -22.1006 -34.1992 -32.6006
|
1435 |
-
c53.8994 82.1006 147 135.601 250.5 135.601c104.899 0 197.199 -54 250.699 -135.7l-48.7998 -30.4004l-0.700195 1c-99.2998 138.5 -285.699 166.4 -417.5 62.1006zM570.6 254.2z" />
|
1436 |
-
<glyph glyph-name="avianex" unicode="" horiz-adv-x="512"
|
1437 |
-
d="M453.1 416c39 0 64.8008 -31.2002 57.8008 -69.7998l-56.7002 -308.5c-7.10059 -38.5 -44.4004 -69.7002 -83.2998 -69.7002h-312c-39 0 -64.8008 31.2002 -57.7002 69.7002l56.5996 308.6c7.10059 38.5 44.4004 69.7002 83.2998 69.7002h312zM394.9 68.7002
|
1438 |
-
l6.2998 7.89941l-94.9004 119.4l-4.5 7.2998c19.7998 14.2002 33.5 24.2998 35.2998 25.6006c7.90039 6.59961 6.30078 20.7998 -2.69922 31.2998c-9.2002 10.7998 -23 14.3994 -30.7002 7.89941c0 0 -14.4004 -13.5996 -33.7998 -32.3994l-4.90039 4.5l-103.1 112.399
|
1439 |
-
l-8.90039 -4.7998l-18.7998 -28.8994l68.7998 -99.8008l20.5 -29.5996c-12 -12.2998 -23.5 -24.4004 -32.7998 -34.9004l-58 31.1006l-15.7002 -15.4004l52.4004 -48.0996l40.5996 -61l17.9004 12.7002l-22.1006 64.1992c12.5 7.60059 27 17.1006 41.7002 27.1006
|
1440 |
-
l115.4 -110z" />
|
1441 |
-
<glyph glyph-name="aws" unicode="" horiz-adv-x="640"
|
1442 |
-
d="M180.41 244.99c-0.719727 -22.6504 10.5996 -32.6807 10.8799 -39.0498c-0.276367 -2.69141 -1.85352 -4.99902 -4.09961 -6.27051l-12.8008 -8.95996c-1.60352 -1.12402 -3.54785 -1.82422 -5.62988 -1.91992c-0.429688 0.0195312 -8.18945 -1.83008 -20.4795 25.6104
|
1443 |
-
c-14.4111 -17.9883 -36.5596 -29.5156 -61.3789 -29.5156c-0.427734 0 -0.804688 0.0585938 -1.23145 0.0654297c-16.2803 -0.890625 -60.4004 9.24023 -58.1299 56.21c-1.58984 38.2803 34.0596 62.0596 70.9297 60.0498
|
1444 |
-
c7.10059 -0.0195312 21.6006 -0.370117 46.9902 -6.26953v15.6191c2.69043 26.46 -14.7002 46.9902 -44.8096 43.9102c-2.40039 -0.00976562 -19.4004 0.5 -45.8408 -10.1094c-7.35938 -3.37988 -8.2998 -2.82031 -10.75 -2.82031
|
1445 |
-
c-7.40918 0 -4.35938 21.4795 -2.93945 24.2002c5.20996 6.39941 35.8604 18.3496 65.9395 18.1797c2.25586 0.199219 4.53906 0.301758 6.84668 0.301758c18.5547 0 35.5566 -6.61719 48.8438 -17.582c11.1152 -12.4326 17.877 -28.8398 17.877 -46.8135
|
1446 |
-
c0 -1.87891 -0.0615234 -3.70508 -0.207031 -5.5459zM93.9902 212.6c32.4297 0.470703 46.1602 19.9707 49.29 30.4707c2.45996 10.0498 2.0498 16.4102 2.0498 27.3994c-9.66992 2.32031 -23.5898 4.85059 -39.5605 4.87012
|
1447 |
-
c-15.1494 1.14062 -42.8193 -5.62988 -41.7393 -32.2598c-1.24023 -16.79 11.1201 -31.4004 29.96 -30.4805zM264.91 189.55c-7.86035 -0.719727 -11.5205 4.86035 -12.6797 10.3701l-49.8008 164.65c-0.969727 2.7793 -1.60938 5.64941 -1.91992 8.58008
|
1448 |
-
c-0.0341797 0.227539 -0.0527344 0.459961 -0.0527344 0.697266c0 2.30566 1.70117 4.21387 3.91309 4.55273c0.240234 0.0400391 -2.12988 0 22.25 0c8.78027 0.879883 11.6396 -6.03027 12.5498 -10.3701l35.7197 -140.83l33.1602 140.83
|
1449 |
-
c0.530273 3.21973 2.94043 11.0693 12.7998 10.2393h17.1602c2.16992 0.180664 11.1104 0.5 12.6807 -10.3691l33.4199 -142.631l36.8701 142.631c0.479492 2.17969 2.71973 11.3691 12.6797 10.3691h19.7197c0.850586 0.130859 6.15039 0.810547 5.25 -8.5791
|
1450 |
-
c-0.429688 -1.85059 3.41016 10.6592 -52.75 -169.9c-1.14941 -5.50977 -4.82031 -11.0898 -12.6797 -10.3701h-18.6904c-10.9395 -1.15039 -12.5098 9.66016 -12.6797 10.75l-33.1602 137.13l-32.7803 -136.99c-0.15918 -1.08984 -1.72949 -11.8994 -12.6797 -10.75
|
1451 |
-
h-18.2998v-0.00976562zM538.39 183.92c-5.87988 -0.00976562 -33.9199 0.299805 -57.3594 12.29c-4.59375 1.94531 -7.81934 6.49609 -7.81934 11.7949c0 0.0410156 0.00878906 0.0742188 0.00878906 0.115234v10.75c0 8.4502 6.2002 6.89941 8.83008 5.88965
|
1452 |
-
c10.04 -4.05957 16.4805 -7.13965 28.8105 -9.59961c36.6494 -7.53027 52.7695 2.2998 56.7197 4.47949c13.1504 7.81055 14.1895 25.6807 5.25 34.9502c-10.4805 8.79004 -15.4805 9.12012 -53.1299 21c-4.64062 1.29004 -43.7002 13.6104 -43.79 52.3604
|
1453 |
-
c-0.610352 28.2402 25.0498 56.1797 69.5195 55.9502c12.6699 0.00976562 46.4307 -4.13086 55.5703 -15.6201c1.34961 -2.08984 2.01953 -4.5498 1.91992 -7.04004v-10.1104c0 -4.43945 -1.62012 -6.66016 -4.87012 -6.66016
|
1454 |
-
c-7.70996 0.860352 -21.3896 11.1699 -49.1602 10.75c-6.88965 0.360352 -39.8896 -0.910156 -38.4092 -24.9697c-0.430664 -18.96 26.6094 -26.0703 29.6992 -26.8896c36.46 -10.9707 48.6504 -12.79 63.1201 -29.5801c17.1406 -22.25 7.90039 -48.2998 4.35059 -55.4404
|
1455 |
-
c-19.0801 -37.4902 -68.4199 -34.4395 -69.2607 -34.4199zM578.59 79.0596c-70.0303 -51.7197 -171.689 -79.25 -258.49 -79.25c-1.0498 -0.00683594 -2.10059 -0.00976562 -3.15234 -0.00976562c-120.699 0 -230.949 45.7383 -314.117 120.74
|
1456 |
-
c-6.53027 5.88965 -0.770508 13.96 7.16992 9.46973c93.1143 -53.2637 200.925 -83.7148 315.791 -83.7148c0.138672 0 0.950195 -0.405273 1.08887 -0.405273c85.4404 0.458984 167.381 18.2432 241.59 49.5508c11.7803 5 21.7705 -7.80078 10.1201 -16.3809z
|
1457 |
-
M607.78 112.35c-8.95996 11.5205 -59.2803 5.38086 -81.8105 2.69043c-6.79004 -0.770508 -7.93945 5.12012 -1.79004 9.46973c40.0703 28.1699 105.88 20.1006 113.44 10.6299c7.5498 -9.46973 -2.0498 -75.4092 -39.5605 -106.909
|
1458 |
-
c-5.75977 -4.87012 -11.2695 -2.30078 -8.70996 4.09961c8.44043 21.25 27.3906 68.4902 18.4307 80.0195z" />
|
1459 |
-
<glyph glyph-name="bimobject" unicode=""
|
1460 |
-
d="M416 416c17.5996 0 32 -14.4004 32 -32v-384c0 -17.5996 -14.4004 -32 -32 -32h-384c-17.5996 0 -32 14.4004 -32 32v384c0 17.5996 14.4004 32 32 32h384zM352 158.6h-0.0996094v35c0 49.4004 -11.4004 82.5 -103.801 82.5h-17.2998
|
1461 |
-
c-30 0 -65.0996 -8.2998 -69.7002 -38.7998h-1.09961v74.7002h-64v-232h64v34.7998h0.900391c8 -23.8994 26.2998 -38.7998 70.3994 -38.7998h16.9004c92.3994 0 103.8 33.2002 103.8 82.5996zM288 187.5v-22.9004c0 -21.6992 -3.40039 -33.7998 -38.4004 -33.7998h-45.2998
|
1462 |
-
c-28.8994 0 -44.0996 6.5 -44.0996 35.7002v19c0 29.2998 15.2002 35.7002 44.0996 35.7002h45.2998c35 0.200195 38.4004 -12 38.4004 -33.7002z" />
|
1463 |
-
<glyph glyph-name="bitcoin" unicode="" horiz-adv-x="512"
|
1464 |
-
d="M504 192c0 -136.967 -111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248s248 -111.033 248 -248zM362.349 227.33c4.9375 32.999 -20.1904 50.7393 -54.5498 62.5732l11.1465 44.7021l-27.2129 6.78027l-10.8516 -43.5234
|
1465 |
-
c-7.1543 1.78223 -14.502 3.46387 -21.8027 5.12988l10.9287 43.8096l-27.1982 6.78125l-11.1523 -44.6855c-5.92188 1.34863 -11.7354 2.68164 -17.377 4.08398l0.0302734 0.139648l-37.5293 9.37012l-7.23926 -29.0625s20.1914 -4.62695 19.7646 -4.91309
|
1466 |
-
c11.0225 -2.75098 13.0146 -10.0439 12.6807 -15.8242l-12.6963 -50.9258c0.759766 -0.193359 1.74414 -0.472656 2.8291 -0.90625c-0.907227 0.224609 -1.87598 0.472656 -2.87598 0.712891l-17.7959 -71.3379c-1.34961 -3.34863 -4.76758 -8.37012 -12.4717 -6.46484
|
1467 |
-
c0.271484 -0.394531 -19.7793 4.9375 -19.7793 4.9375l-13.5107 -31.1475l35.4141 -8.82617c6.58887 -1.65137 13.0449 -3.37988 19.4004 -5.00684l-11.2617 -45.2129l27.1816 -6.78027l11.1533 44.7324c7.14062 -1.93457 14.4863 -3.84082 21.6865 -5.62695
|
1468 |
-
l-11.1152 -44.5225l27.2139 -6.78125l11.2617 45.1279c46.4043 -8.78125 81.2988 -5.23926 95.9863 36.7266c11.8359 33.79 -0.589844 53.2812 -25.0049 65.9912c17.7803 4.09766 31.1748 15.792 34.7471 39.9492zM300.172 140.151
|
1469 |
-
c-8.41016 -33.79 -65.3076 -15.5234 -83.7549 -10.9434l14.9443 59.8994c18.4453 -4.60352 77.5996 -13.7178 68.8105 -48.9561zM308.589 227.818c-7.67285 -30.7363 -55.0312 -15.1201 -70.3926 -11.292l13.5479 54.3262
|
1470 |
-
c15.3633 -3.82715 64.8359 -10.9727 56.8447 -43.0342z" />
|
1471 |
-
<glyph glyph-name="bity" unicode="" horiz-adv-x="496"
|
1472 |
-
d="M78.4004 380.8c95.3994 89.2002 246.1 91.2002 343.1 -3.7998c14.2998 -14.0996 -6.40039 -37.0996 -22.4004 -21.5c-84.7998 82.4004 -215.8 80.2998 -298.899 3.2002c-16.2998 -15.1006 -36.5 8.2998 -21.7998 22.0996zM177.3 -37.7998
|
1473 |
-
c-128.7 38.2998 -201.899 170.7 -169.8 298.1c5.2998 21 35.2002 12.5 30.2002 -7.09961c-28.2998 -111.3 35.2998 -227.101 147.5 -261c21.3994 -6.40039 11.3994 -35.7002 -7.90039 -30zM325.4 -35.7998c-19.2002 -6.2998 -30 22.7002 -8.80078 29.7002
|
1474 |
-
c106.101 35.5 167.4 145.699 143.2 253.399c-4.89941 21.7002 25.5 27.6006 30 7.90039c28.5 -124.101 -42.5 -250.8 -164.399 -291zM262.5 43.2002c0 -8.2002 -6.59961 -14.7998 -14.7998 -14.7998s-14.7998 6.59961 -14.7998 14.7998l0.199219 71.7998
|
1475 |
-
c0 8.09961 6.60059 14.7998 14.8008 14.7998c8.19922 0 14.7998 -6.59961 14.7998 -14.7998zM333.5 312.2c0 21.7998 32.5 19.5996 32.5 0v-71.6006c0 -69.2998 -60.7002 -90.8994 -118 -90.0996c-57.2998 -0.799805 -118 20.7998 -118 90.0996v71.6006
|
1476 |
-
c0 19.5996 32.5 21.7998 32.5 0c-1.40039 -88.2002 -7 -131.8 85.5 -132.5c90.2002 0.599609 87.5996 41.5996 85.5 132.5z" />
|
1477 |
-
<glyph glyph-name="blackberry" unicode="" horiz-adv-x="512"
|
1478 |
-
d="M166 331.1c0 -23.3994 -16.4004 -49.0996 -72.5 -49.0996h-70.0996l21 88.7998h67.7998c42.0996 0 53.7998 -23.2998 53.7998 -39.7002zM292.2 370.8c42.0996 0 53.7998 -23.2998 53.7002 -39.7002c0 -23.3994 -16.3008 -49.0996 -70.1006 -49.0996h-70.0996
|
1479 |
-
l18.7002 88.7998h67.7998zM88.7998 239.9c42.1006 0 53.7998 -23.4004 53.7998 -39.7002c0 -25.7002 -16.3994 -49.1006 -72.5 -49.1006h-70.0996l21 88.8008h67.7998zM268.9 239.9c42 0 53.6992 -23.4004 53.6992 -39.7002c0 -25.7002 -16.2998 -49.1006 -70.0996 -49.1006
|
1480 |
-
h-70.0996l18.6992 88.8008h67.8008zM458.2 293.7c42.0996 0 53.7998 -23.4004 53.7002 -39.7002c0 -25.7002 -16.3008 -49.0996 -70.1006 -49.0996h-70.0996l18.7002 88.7998h67.7998zM430.2 155.8c42.0996 0 53.7002 -23.3994 53.7002 -39.7002
|
1481 |
-
c0 -25.6992 -14 -49.0996 -70.1006 -49.0996h-70.0996l18.7002 88.7998h67.7998zM240.8 102c42.1006 0 53.7998 -23.4004 53.7002 -39.7002c0 -23.3994 -14 -49.0996 -70.0996 -49.0996h-70.1006l18.7002 88.7998h67.7998z" />
|
1482 |
-
<glyph glyph-name="blogger" unicode=""
|
1483 |
-
d="M162.4 252c4.7998 4.90039 6.19922 5.09961 36.3994 5.09961c27.2002 0 28.1006 -0.0996094 32.1006 -2.09961c5.7998 -2.90039 8.2998 -7 8.2998 -13.5996c0 -5.90039 -2.40039 -10 -7.60059 -13.4004c-2.7998 -1.7998 -4.5 -1.90039 -31.0996 -2.09961
|
1484 |
-
c-16.4004 -0.100586 -29.5 0.199219 -31.5 0.799805c-10.2998 2.89941 -14.0996 17.7002 -6.59961 25.2998zM223.8 157.5c55.4004 0 55.1006 0 60.4004 -4.7002c7.39941 -7 5.89941 -19.2998 -3.10059 -24.3994l-9.19922 -1.5l-47.9004 -0.600586
|
1485 |
-
c-42.2002 -0.5 -54.0996 0.200195 -56.2998 1.2002c-4.40039 1.90039 -8.5 7.2998 -9.2002 12c-0.599609 4.5 1.59961 10.7998 5.09961 13.9004c4.40039 3.89941 6.30078 4.09961 60.2002 4.09961zM447.2 27.4004c-3.5 -28.4004 -23 -50.4004 -51.1006 -57.5
|
1486 |
-
c-7.19922 -1.80078 -9.69922 -1.90039 -172.899 -1.80078c-157.8 0 -165.9 0.100586 -172 1.80078c-8.40039 2.19922 -15.6006 5.5 -22.2998 10c-5.60059 3.7998 -13.9004 11.7998 -17 16.3994c-3.80078 5.60059 -8.2002 15.2998 -10 22
|
1487 |
-
c-1.80078 6.7002 -1.90039 9.40039 -1.90039 173.4c0 163.1 0 166.6 1.7998 173.7c6.2998 24.6992 25.9004 43.5996 51.2002 49.1992c7.2998 1.60059 332.1 1.90039 340 0.300781c21.2002 -4.30078 37.9004 -17.1006 47.5996 -36.4004c7.7002 -15.2998 7 1.5 7.30078 -180.6
|
1488 |
-
c0.199219 -115.801 0 -164.5 -0.700195 -170.5zM361.8 212.6c-1.09961 5 -4.2002 9.60059 -7.7002 11.5c-1.09961 0.600586 -8 1.30078 -15.5 1.7002c-12.3994 0.600586 -13.7998 0.799805 -17.7998 3.10059c-6.2002 3.59961 -7.89941 7.59961 -8 18.2998
|
1489 |
-
c0 20.3994 -8.5 39.3994 -25.2998 56.5c-12 12.2002 -25.2998 20.5 -40.5996 25.0996c-3.60059 1.10059 -11.8008 1.5 -39.2002 1.7998c-42.9004 0.5 -52.5 -0.399414 -67.1006 -6.19922c-27 -10.7002 -46.2998 -33.4004 -53.3994 -62.4004
|
1490 |
-
c-1.2998 -5.40039 -1.60059 -14.2002 -1.90039 -64.2998c-0.399414 -62.7998 0 -72.1006 4 -84.5c9.7002 -30.7002 37.1006 -53.4004 64.6006 -58.4004c9.19922 -1.7002 122.199 -2.09961 133.699 -0.5c20.1006 2.7002 35.9004 10.7998 50.7002 25.9004
|
1491 |
-
c10.7002 10.8994 17.4004 22.7998 21.7998 38.5c3.2002 10.8994 2.90039 88.3994 1.7002 93.8994z" />
|
1492 |
-
<glyph glyph-name="blogger-b" unicode=""
|
1493 |
-
d="M446.6 225.3c2 -8.89941 2.40039 -134.1 -2.5 -151.7c-7.09961 -25.2998 -17.8994 -44.3994 -35.1992 -62.0996c-23.9004 -24.4004 -49.4004 -37.5 -81.9004 -41.9004c-18.7002 -2.5 -201.2 -1.89941 -216 0.800781c-44.5 8 -88.7998 44.6992 -104.4 94.2998
|
1494 |
-
c-6.2998 20.0996 -7 35 -6.39941 136.5c0.5 81 1 95.0996 3.09961 103.899c11.4004 46.8008 42.6006 83.4004 86.1006 100.601c23.5996 9.39941 39 10.7998 108.399 10c44.2002 -0.5 57.4004 -1.10059 63.2998 -2.90039c24.6006 -7.5 46.2002 -20.7998 65.5 -40.5
|
1495 |
-
c27.1006 -27.5996 40.8008 -58.2998 40.9004 -91.2998c0.0996094 -17.2002 2.7998 -23.5996 12.9004 -29.5c6.39941 -3.7002 8.59961 -4.09961 28.6992 -5c12 -0.5 23.2002 -1.7002 25 -2.7002c5.7002 -3.09961 10.7002 -10.5 12.5 -18.5zM124.5 288.9
|
1496 |
-
c-12.2002 -12.3008 -6 -36.1006 10.5996 -40.8008c3.10059 -0.799805 24.3008 -1.39941 50.8008 -1.19922c43 0.199219 45.6992 0.399414 50.2998 3.2998c8.5 5.39941 12.2998 12.0996 12.2998 21.5996c0 10.6006 -4.09961 17.2002 -13.4004 21.9004
|
1497 |
-
c-6.39941 3.2998 -7.89941 3.39941 -51.7998 3.39941c-48.7998 0 -51 -0.299805 -58.7998 -8.19922zM316.3 89.0996c14.4004 8.2002 17 28.1006 4.90039 39.4004c-8.5 7.90039 -8 7.90039 -97.6006 7.7998c-87.0996 -0.0996094 -90.1992 -0.299805 -97.2998 -6.7002
|
1498 |
-
c-5.59961 -5.09961 -9.2998 -15.0996 -8.2002 -22.3994c1.10059 -7.7002 7.80078 -16.2998 14.9004 -19.4004c3.59961 -1.59961 22.7998 -2.7998 90.9004 -2l77.5 0.900391z" />
|
1499 |
-
<glyph glyph-name="buromobelexperte" unicode=""
|
1500 |
-
d="M0 416h128v-128h-128v128zM120 296v112h-112v-112h112zM160 416h128v-128h-128v128zM280 296v112h-112v-112h112zM320 416h128v-128h-128v128zM440 296v112h-112v-112h112zM0 256h128v-128h-128v128zM120 136v112h-112v-112h112zM160 256h128v-128h-128v128zM280 136v112
|
1501 |
-
h-112v-112h112zM320 256h128v-128h-128v128zM440 136v112h-112v-112h112zM0 96h128v-128h-128v128zM120 -24v112h-112v-112h112zM160 96h128v-128h-128v128zM280 -24v112h-112v-112h112zM320 96h128v-128h-128v128z" />
|
1502 |
-
<glyph glyph-name="centercode" unicode="" horiz-adv-x="512"
|
1503 |
-
d="M329.2 179.4c-3.7998 -35.2002 -35.4004 -60.6006 -70.6006 -56.8008c-35.1992 3.80078 -60.5996 35.4004 -56.7998 70.6006s35.4004 60.5996 70.6006 56.7998c35.0996 -3.7998 60.5996 -35.4004 56.7998 -70.5996zM243.4 -55.7002
|
1504 |
-
c-146.7 7.7002 -251.601 138.2 -233.301 279.4c11.2002 86.5996 65.8008 156.899 139.101 192c161 77.0996 349.7 -37.4004 354.7 -216.601c4.09961 -147 -118.4 -262.199 -260.5 -254.8zM423.3 124.3c27.9004 118 -160.5 205.9 -237.2 234.2
|
1505 |
-
c-57.5 -56.2998 -69.0996 -188.6 -33.7998 -344.4c68.7998 -15.7998 169.101 26.4004 271 110.2z" />
|
1506 |
-
<glyph glyph-name="cloudscale" unicode=""
|
1507 |
-
d="M318.1 294c6.2002 6.2998 15.8008 -3.09961 9.5 -9.59961l-75.1992 -88.8008c0.899414 -8.19922 -1.80078 -16.7998 -8.10059 -23.0996c-11.0996 -11 -28.8994 -11 -40 0c-11.0996 11.0996 -11.0996 29 0 40c6.2998 6.2998 14.7998 9 23.1006 8.09961l25.1992 20.4004
|
1508 |
-
c-16.3994 15.2998 -38.3994 24.7002 -62.5996 24.7002c-50.7998 0 -94.5996 -41.4004 -92.5996 -97.4004c-1 6.2998 -1.40039 12.7998 -1.40039 19.4004c0 71.5 57.7998 132.3 129.4 132.3c31.7998 0 60.7998 -14.2998 83.2998 -33.5996zM234.3 182.5
|
1509 |
-
c5.60059 5.5 5.60059 14.5996 0 20.2002c-5.59961 5.59961 -14.5996 5.59961 -20.2002 0c-5.59961 -5.60059 -5.59961 -14.6006 0 -20.2002c5.60059 -5.5 14.6006 -5.5 20.2002 0zM224 416c123.5 0 224 -100.5 224 -224s-100.5 -224 -224 -224s-224 100.5 -224 224
|
1510 |
-
s100.5 224 224 224zM224 32c88.2002 0 160 71.7998 160 160s-71.7998 160 -160 160s-160 -71.7998 -160 -160s71.7998 -160 160 -160z" />
|
1511 |
-
<glyph glyph-name="cloudsmith" unicode="" horiz-adv-x="332"
|
1512 |
-
d="M332.5 28.0996c0 -46.3994 -37.5996 -84.0996 -84 -84.0996s-84 37.7002 -84 84.0996c0 46.4004 37.5996 84 84 84s84 -37.5996 84 -84zM248.5 272c-46.4004 0 -80 -33.5996 -80 -80s-37.5996 -80 -84 -80s-84 33.5996 -84 80s37.5996 88 84 88s76 29.5996 76 76
|
1513 |
-
s41.5996 84 88 84s80 -37.5996 80 -84s-33.5996 -84 -80 -84z" />
|
1514 |
-
<glyph glyph-name="cloudversify" unicode="" horiz-adv-x="616"
|
1515 |
-
d="M148.6 144v-0.0996094h-48.8994c-6.40039 0 -11.7002 5.39941 -11.7002 11.7998v40.3994c0 7.60059 7 11.9004 10.7998 11.9004h46.7998v-6.59961c0 -10.7002 8.80078 -16.7002 19.5 -16.7002h20.2002c10.7998 0 19.5 8.7998 19.5 19.5v20.3994
|
1516 |
-
c0 10.6006 -3.5 19.5 -15.2002 19.5c18.5 15.2002 37.2002 21.4004 45 24.1006c15 56.5 42 92.3994 99.3008 109.7c55.0996 16.5 153.5 3.09961 186.5 -85c73.8994 -22.6006 106.899 -92.6006 92.0996 -155.101c-13 -54.8994 -62.2998 -100.6 -131.5 -99.5
|
1517 |
-
c-49.5996 -51.3994 -135.2 -48.8994 -186.4 -5.59961c-78.5996 -4.2002 -137.8 42.7998 -146 111.3zM376 136c8.7002 -54.0996 59.7002 -65.5 91.7998 -59.2002c39.1006 7.7002 70.5 37.5 79.7002 76.5c5.7998 24.4004 2.40039 50 -9.40039 72l-10.5 19.6006
|
1518 |
-
c1.2002 -22.5 -12.5 -60.6006 -47.5 -76.9004c65.5 67.7002 2.10059 141.2 -67.6992 150.5c-49.8008 6.59961 -83.3008 -13 -114.2 -43.7002c48 -4.7002 87.7002 -26.7998 101.8 -74.7998c-30.0996 49.2998 -103 56.5996 -133.6 40.7998
|
1519 |
-
c-35.5 -18.2002 -60 -54 -57 -93.8994c3.59961 -47.4004 39.5 -67.4004 57.3994 -79.8008c-4.5 21.7002 -4 71.3008 29.2002 92.9004c-36.2998 -60 28.0996 -144.6 135.3 -110.8c-33.5996 14.3994 -66 40.5 -55.2998 86.7998zM128 240h-39.7998
|
1520 |
-
c-8.90039 0 -16.2002 7.2998 -16.2002 16.2002v39.5996c0 8.90039 7.2998 16.2002 16.2002 16.2002h39.7998c8.90039 0 16.2002 -7.2998 16.2002 -16.2002v-39.5996c0 -8.90039 -7.2998 -16.2002 -16.2002 -16.2002zM10.0996 280c-5.59961 0 -10.0996 4.5 -10.0996 10.0996
|
1521 |
-
v27.8008c0 5.59961 4.5 10.0996 10.0996 10.0996h27.7002c5.5 0 10.1006 -4.5 10.1006 -10.0996v-27.8008c0 -5.59961 -4.5 -10.0996 -10.1006 -10.0996h-27.7002zM168 305.3v21.4004c0 5.09961 4.2002 9.2998 9.2998 9.2998h21.4004
|
1522 |
-
c5.09961 0 9.2998 -4.2002 9.2998 -9.2998v-21.4004c0 -5.09961 -4.2002 -9.2998 -9.2998 -9.2998h-21.4004c-5.09961 0 -9.2998 4.2002 -9.2998 9.2998zM56 212.5v-25c0 -6.2998 -5.09961 -11.5 -11.4004 -11.5h-25.1992c-6.30078 0 -11.4004 5.2002 -11.4004 11.5v25
|
1523 |
-
c0 6.2998 5.09961 11.5 11.4004 11.5h25.0996c6.40039 0 11.5 -5.2002 11.5 -11.5z" />
|
1524 |
-
<glyph glyph-name="cpanel" unicode="" horiz-adv-x="640"
|
1525 |
-
d="M210.3 227.8c6.60059 -29.0996 -14.5 -65.2998 -51.7002 -65.2998h-32l6.40039 23.7998c1.7998 6.2002 7.2998 10.7998 14.2998 10.7998h10.2998c12.4004 0 20.8008 11.7002 18.3008 22.6006c-2.10059 9.2002 -9.90039 14.7998 -18.3008 14.7998h-19.7998
|
1526 |
-
l-25.7998 -95.7002c-1.90039 -6.2002 -7.40039 -10.7002 -14.2002 -10.7002l-24.7002 -0.0996094l34.9004 130.1c1.7998 6.40039 7.2002 10.9004 14.2998 10.9004h37c24.1006 0 45.4004 -16.4004 51 -41.2002zM53.7998 199.8c-24.8994 0 -24.7002 -37.3994 0 -37.3994
|
1527 |
-
h11.2998c4.2002 0 7.60059 -3.90039 6.40039 -8.30078l-7.09961 -26.0996h-12.4004c-33.5 0 -59 31.4004 -50.2998 65.2002c7.2998 27 28.2998 41.0996 51.2002 41.0996h40l-6.2002 -23.5996c-1.90039 -6.5 -7.40039 -10.9004 -14.2998 -10.9004h-18.6006zM301.3 234.6
|
1528 |
-
c18.7998 0 33.2998 -17.5996 28.5 -36.7998l-14 -51.7998c-2.7998 -10.5996 -12.2002 -17.7998 -23.3994 -17.7998l-57.5 0.200195c-42.9004 0 -38.5 63.7998 0.699219 63.7998h48.4004l-3.5 -13.2002c-1.90039 -6.2002 -7.40039 -10.7998 -14.2002 -10.7998h-21.5996
|
1529 |
-
c-5.2998 0 -5.2998 -7.90039 0 -7.90039h34.8994c4.60059 0 5.10059 3.90039 5.5 5.2998l8.60059 31.8008c0.299805 1 1.89941 5.2998 -2.10059 5.2998h-57.5c-9.69922 0 -16.5996 8.89941 -14.1992 18.5l3.5 13.3994h77.8994zM633.1 269c4.5 0 7.7002 -4 6.5 -8.2998
|
1530 |
-
l-26.5 -98.2002c-5.09961 -20.7002 -24.1992 -34.5 -44.8994 -34.5l35.5996 133.1c1.2002 4.7002 5.5 7.90039 10.4004 7.90039h18.8994zM396.8 234.3c34.4004 0 59.2998 -32.2998 50.2998 -65.3994l-8.7998 -33.1006c-1.2002 -4.89941 -5.7002 -7.7998 -10.2998 -7.7998
|
1531 |
-
h-19.0996c-4.5 0 -7.60059 4 -6.40039 8.2998l10.5996 40c3.30078 11.6006 -5.59961 23.4004 -18.0996 23.4004h-19.7998l-17.2002 -64c-1.2002 -4.7998 -5.59961 -7.7998 -10.4004 -7.7998h-18.8994c-4.2002 0 -7.60059 3.89941 -6.40039 8.2998l26.2002 98h48.2998
|
1532 |
-
v0.0996094zM495.1 159.7h73.3008l-5.7002 -21c-1.90039 -6.2002 -7.40039 -10.7002 -14.2002 -10.7002h-66.7002c-20 0 -33.2998 19 -28.2998 36.7002l10.7998 40c4.7998 17.5996 20.7002 29.5996 38.6006 29.5996h47.2998c19 0 33.2002 -17.7002 28.2998 -36.7998
|
1533 |
-
l-3.2002 -12c-2.89941 -11 -12.7002 -17.5996 -23.2002 -17.5996h-53.3994l3.5 13c1.59961 6.19922 7.2002 10.7998 14.2002 10.7998h21.5996c2 0 3.2998 1 3.90039 3l0.699219 2.59961c0.700195 2.7002 -1.2998 5.10059 -3.89941 5.10059h-32.9004
|
1534 |
-
c-4.09961 0 -6.89941 -2.10059 -7.7998 -6l-8 -30c-0.900391 -3.30078 1.5 -6.7002 5.09961 -6.7002z" />
|
1535 |
-
<glyph glyph-name="css3-alt" unicode="" horiz-adv-x="384"
|
1536 |
-
d="M0 416h384l-34.9004 -395.8l-157.1 -52.2002l-157.1 52.2002zM313.1 336h-242.199l5.7998 -47.2998h122.899l-6.5 -2.7002l-112.1 -46.7002l3.59961 -46.2998l0.200195 0.0996094v-0.0996094l166.3 -0.5l-3.69922 -61.5996l-54.7002 -15.4004l-52.6006 13.2998
|
1537 |
-
l-3.19922 38.2998h-48.9004l6.40039 -73.8994l98.7998 -29.2002l98.2002 28.7002l12.7998 146.6h-111.5l0.299805 0.100586l115.3 49.2998z" />
|
1538 |
-
<glyph glyph-name="cuttlefish" unicode="" horiz-adv-x="440"
|
1539 |
-
d="M344 142.5c13.7002 -50.9004 41.7002 -93.2998 87 -117.8c-45.2998 -49.6006 -110.5 -80.7002 -183 -80.7002c-137 0 -248 111 -248 248s111 248 248 248c72.5 0 137.7 -31.0996 183 -80.7002c-45.2998 -24.5 -73.2998 -66.8994 -87 -117.8
|
1540 |
-
c-17.5 31.5996 -57.4004 54.5 -96 54.5c-56.5996 0 -104 -47.4004 -104 -104s47.4004 -104 104 -104c38.5996 0 78.5 22.9004 96 54.5z" />
|
1541 |
-
<glyph glyph-name="d-and-d" unicode="" horiz-adv-x="576"
|
1542 |
-
d="M82.5 349.1c-0.599609 17.2002 2 33.8008 12.7002 48.2002c0.299805 -7.39941 1.2002 -14.5 4.2002 -21.5996c5.89941 27.5 19.6992 49.2998 42.2998 65.5c-1.90039 -5.90039 -3.5 -11.7998 -3 -17.7002c8.7002 7.40039 18.7998 17.7998 44.3994 22.7002
|
1543 |
-
c14.7002 2.7998 29.7002 2 42.1006 -1c38.5 -9.2998 61 -34.2998 69.7002 -72.2998c5.2998 -23.1006 0.699219 -45 -8.30078 -66.4004c-5.19922 -12.4004 -12 -24.4004 -20.6992 -35.0996c-2 1.89941 -3.90039 3.7998 -5.80078 5.59961
|
1544 |
-
c-42.7998 40.7998 -26.7998 25.2002 -37.3994 37.4004c-1.10059 1.19922 -1 2.19922 -0.100586 3.59961c8.30078 13.5 11.8008 28.2002 10 44c-1.09961 9.7998 -4.2998 18.9004 -11.2998 26.2002c-14.5 15.2998 -39.2002 15 -53.5 -0.600586
|
1545 |
-
c-11.3994 -12.5 -14.0996 -27.3994 -10.8994 -43.5996c0.199219 -1.2998 0.399414 -2.7002 0 -3.90039c-3.40039 -13.6992 -4.60059 -27.5996 -2.5 -41.5996c0.0996094 -0.5 0.0996094 -1.09961 0.0996094 -1.59961c0 -0.300781 -0.0996094 -0.5 -0.200195 -1.10059
|
1546 |
-
c-21.7998 11 -36 28.2998 -43.2002 52.2002c-8.2998 -17.7998 -11.0996 -35.5 -6.59961 -54.0996c-15.5996 15.1992 -21.2998 34.2998 -22 55.1992zM552.1 225.9c0.5 -0.600586 1.2002 -1 1.7002 -1.40039v-0.5c-15 3.59961 -29.7998 1.7998 -44.5 -1.2998
|
1547 |
-
c-9.2998 -2 -18.2998 -4.7002 -26.7002 -9c-2.89941 -1.5 -5.69922 -3.2998 -8 -4.7002c-5.7998 2.40039 -11.2998 5.5 -17.1992 6.7998c-24.5 5.2998 -45.8008 -1.2002 -62.5 -20c-19.7002 -22.2002 -34.5 -47.5996 -46.7002 -74.5l-1.2002 -2.7002
|
1548 |
-
c-0.0996094 -0.199219 -0.200195 -0.299805 -0.400391 -0.399414c-12.0996 8.2998 -21.5996 20.2998 -36.0996 25.5996c0.299805 0.400391 0.400391 0.900391 0.700195 1.2998c20.5996 28.2002 44.8994 52.5 75.0996 70.4004c16 9.5 33 16.0996 51.5 18.5
|
1549 |
-
c1.7998 0.200195 3.5 0.400391 5.2998 1.09961c-4.39941 0 -8.7998 0.300781 -13.0996 -0.0996094c-21.2002 -1.90039 -40.5 -9.59961 -58.7002 -20.2002c-13.7998 -8 -26.2002 -17.7002 -36.5996 -29.7998c-0.400391 -0.5 -0.600586 -1.09961 -0.900391 -1.7002
|
1550 |
-
c-0.299805 0.299805 -0.700195 0.600586 -1 0.900391c11 30.8994 30.7002 55 57.7002 73.2998c0.200195 -0.200195 0.5 -0.299805 0.700195 -0.5c-1.2002 -1.7002 -2.5 -3.2998 -3.5 -5.09961c-1.7998 -3.30078 -3.7002 -6.5 -5.10059 -10
|
1551 |
-
c-1.7998 -4.30078 1.60059 -8.60059 12 -0.5c18.2002 14.0996 29.6006 26.2998 48.9004 29.5996c0.700195 0.0996094 1.2998 0.299805 1.90039 0.299805h2.5c-1 -0.700195 -1.60059 -1.09961 -2.2002 -1.5c-11.6006 -7.7998 -11.7998 -7.39941 -15 -12
|
1552 |
-
c-2.60059 -3.7002 -0.200195 -8 4.7002 -6.7998c2.59961 0.599609 5.19922 1.2998 7.69922 2.2002c9.40039 3.2998 19 5.7998 29 6.39941c13.9004 0.800781 27.1006 -1.89941 39.9004 -7.09961c15.0996 -6.2002 28.5 -15 40.0996 -26.5996zM316.7 50.4004
|
1553 |
-
c1.5 -1.30078 1.89941 -2.40039 0.899414 -4.2002c-25.2998 -50.2002 -61.0996 -89.1006 -116 -98.7998c-26.7998 -4.7002 -52.8994 -2.7002 -77.8994 8.59961c-18.5 8.2002 -34.6006 19.5996 -47.2002 35.5996c-2 2.60059 -3.7002 5.40039 -5.90039 8.60059
|
1554 |
-
c-0.699219 -7.7998 0.100586 -14.9004 1.5 -21.9004c-0.199219 -0.200195 -0.399414 -0.299805 -0.599609 -0.5c-3.2002 3.40039 -6.59961 6.60059 -9.5 10.2998c-12.2002 15.5 -19.5 33.3008 -24.0996 52.3008c-11.8008 48.2998 -0.5 78.7998 7.7998 101.1
|
1555 |
-
c-8.7002 -4.7998 -16.2002 -10.2998 -23.6006 -16.2002c11.6006 32.7998 31.9004 59.9004 56.1006 84.6006c2.39941 -2.10059 3.2998 -4.7002 3 -7.40039c-0.200195 -1 -5.90039 -38.9004 -5.60059 -44.7002c18.9004 18.9004 40.5 33.2998 64.8008 43.9004
|
1556 |
-
c-7.5 -11.1006 -11 -23.4004 -11.8008 -37.2998c13.4004 12.1992 27.7002 20.0996 46.4004 13.8994c-8.5 -9.09961 -30.7998 -30.5 -38.5996 -64.2998c-5.10059 -21.9004 -3.80078 -43.0996 8.19922 -62.5996c11.2002 -18.3008 27.8008 -27.8008 49.4004 -27.8008
|
1557 |
-
c12.5996 0 23.7998 5 34.0996 11.8008c18.5 12.2998 32.8008 28.5 44 47.5996c1.90039 3.2002 1.10059 2.09961 1.90039 3c19.9004 -16.0996 3.2998 -2.59961 42.7002 -35.5996zM488.7 96.7998c20.2002 -6.59961 35.5 -18.7998 43.7998 -38.8994
|
1558 |
-
c9.2002 -23.1006 2.09961 -49.4004 -17.4004 -66c-16.3994 -14 -35.6992 -19.2002 -57 -17.4004c-0.599609 0 -1.19922 0 -1.89941 -0.299805c15.0996 -10.7002 31.5996 -15.2002 50.8994 -10.6006c-2.19922 -2.39941 -3.89941 -4.69922 -5.89941 -6.5
|
1559 |
-
c-12.2998 -10.8994 -26.9004 -16.8994 -42.9004 -19.7998c-39.5996 -7.2998 -75.5996 12.7998 -85 56.9004c-0.5 2.09961 -0.599609 4.2002 -0.899414 6.39941c-10.8008 -8.19922 -16.4004 -34.0996 -0.700195 -52.2998c-1.60059 0.5 -2.60059 0.700195 -3.60059 1.10059
|
1560 |
-
c-21.2998 8.2998 -34.3994 28.2998 -33.5 51.1992c0.900391 23.2002 4.90039 41 -13 56c-16.5 13.8008 -33 27.4004 -49.5 41.1006c-8.09961 6.7002 -14.7998 14.5 -17 25.0996c-1 4.60059 -1.39941 9.40039 -1.7998 14.1006c-0.5 6.09961 -3.2998 11 -7.89941 14.7998
|
1561 |
-
c-4.5 3.89941 -9.30078 7.39941 -13.8008 11.2002c-8.89941 7.5 -12.2998 18.8994 -7.2998 29.8994c2.7998 -12.8994 9.60059 -18.8994 22.6006 -20.2998c4.39941 -0.5 8.89941 -0.799805 13.2998 -1.5c8.09961 -1.2002 12.7998 -6.09961 14.2998 -14.2002
|
1562 |
-
c0.700195 -3.39941 1.2998 -6.7998 2.2002 -10.2002c1.59961 -5.59961 4.5 -8 10.3994 -8.39941c4.60059 -0.299805 9.30078 -0.5 13.9004 -0.900391c7.59961 -0.599609 14.2002 -3.7998 20.0996 -8.7002c19.4004 -16.1992 39 -32.1992 58.5 -48.2998
|
1563 |
-
c5.7002 -4.7002 12 -8.2002 19.6006 -8.5c16.7002 -0.599609 29 15.2002 24.7998 31.7998c-0.200195 0.700195 -0.400391 1.5 -0.0996094 2.80078c2.39941 -2 4.89941 -3.80078 7 -5.90039c14.0996 -14 18.0996 -39.2998 8.69922 -56.0996
|
1564 |
-
c-2.09961 -3.80078 -5.2998 -7.10059 -8.09961 -10.8008c0.700195 -0.199219 1.7998 -0.5 3 -0.599609c14 -1.40039 27.2002 1 38.9004 9.09961c15.7998 10.9004 18 31.2002 5.39941 45.6006c-4.7002 5.39941 -8.89941 8 -18.7998 12
|
1565 |
-
c6.5 1.2998 19.2002 0.200195 28.7002 -2.90039zM99.4004 268.7c-5.30078 9.2002 -13.2002 15.5996 -22.1006 21.2998c13.7002 0.5 26.6006 -0.200195 39.6006 -3.7002c-7 12.2002 -8.5 24.7002 -5 38.7002c5.2998 -11.9004 13.6992 -20.0996 23.5996 -26.7998
|
1566 |
-
c19.7002 -13.2002 35.7002 -19.6006 46.7002 -30.2002c3.39941 -3.2998 6.2998 -7.09961 9.59961 -10.9004c-0.799805 2.10059 -1.39941 4.10059 -2.2002 6c-5 10.6006 -13 18.6006 -22.5996 25c-1.7998 1.2002 -2.7998 2.5 -3.40039 4.5
|
1567 |
-
c-3.2998 12.5 -3 25.1006 -0.699219 37.6006c1 5.5 2.7998 10.8994 4.5 16.2998c0.799805 2.40039 2.2998 4.59961 4 6.59961c0.599609 -6.89941 0 -25.5 19.5996 -46c10.7998 -11.2998 22.4004 -21.8994 33.9004 -32.6992c9 -8.5 18.2998 -16.7002 25.5 -26.8008
|
1568 |
-
c1.09961 -1.59961 2.19922 -3.2998 3.7998 -4.69922c-5 13 -14.2002 24.0996 -24.2002 33.7998c-9.59961 9.2998 -19.4004 18.3994 -29.2002 27.3994c-3.2998 3 -4.59961 6.7002 -5.09961 10.9004c-1.2002 10.4004 0 20.5996 4.2998 30.2002c0.5 1 1.09961 2 1.90039 3.2998
|
1569 |
-
c0.5 -4.2002 0.599609 -7.90039 1.39941 -11.5996c4.7998 -23.1006 20.4004 -36.3008 49.2998 -63.5c10 -9.40039 19.3008 -19.2002 25.6006 -31.6006c4.7998 -9.2998 7.2998 -19 5.7002 -29.5996c-0.100586 -0.600586 0.5 -1.7002 1.09961 -2
|
1570 |
-
c6.2002 -2.60059 10 -6.90039 9.7002 -14.2998c7.7002 2.59961 12.5 8 16.3994 14.5c4.2002 -20.2002 -9.09961 -50.3008 -27.1992 -58.7002c0.399414 4.5 5 23.3994 -16.5 27.7002c-6.80078 1.2998 -12.8008 1.2998 -22.9004 2.09961c4.7002 9 10.4004 20.5996 0.5 22.4004
|
1571 |
-
c-24.9004 4.59961 -52.7998 -1.90039 -57.7998 -4.60059c8.2002 -0.399414 16.2998 -1 23.5 -3.2998c-2 -6.5 -4 -12.7002 -5.7998 -18.9004c-1.90039 -6.5 2.09961 -14.5996 9.2998 -9.59961c1.2002 0.900391 2.2998 1.90039 3.2998 2.7002
|
1572 |
-
c-3.09961 -17.9004 -2.90039 -15.9004 -2.7998 -18.2998c0.299805 -10.2002 9.5 -7.80078 15.7002 -7.30078c-2.5 -11.7998 -29.5 -27.2998 -45.4004 -25.7998c7 4.7002 12.7002 10.2998 15.9004 17.9004c-6.5 -0.799805 -12.9004 -1.60059 -19.2002 -2.40039
|
1573 |
-
l-0.299805 0.900391c4.69922 3.39941 8 7.7998 10.1992 13.0996c8.7002 21.1006 -3.59961 38 -25 39.9004c-9.09961 0.799805 -17.7998 -0.799805 -25.8994 -5.5c6.2002 15.5996 17.2002 26.5996 32.5996 34.5c-15.2002 4.2998 -8.89941 2.7002 -24.5996 6.2998
|
1574 |
-
c14.5996 9.2998 30.2002 13.2002 46.5 14.5996c-5.2002 3.2002 -48.1006 3.60059 -70.2002 -20.8994c7.90039 -1.40039 15.5 -2.7998 23.2002 -4.2002c-23.7998 -7 -44 -19.7002 -62.4004 -35.5996c1.10059 4.7998 2.7002 9.5 3.2998 14.2998
|
1575 |
-
c0.600586 4.5 0.800781 9.2002 0.100586 13.5996c-1.5 9.40039 -8.90039 15.1006 -19.7002 16.2998c-7.90039 0.900391 -15.5996 -0.0996094 -23.2998 -1.2998c-0.900391 -0.0996094 -1.7002 -0.299805 -2.90039 0c15.7998 14.7998 36 21.7002 53.1006 33.5
|
1576 |
-
c6 4.5 6.7998 8.2002 3 14.9004zM227.8 241.9c3.2998 -16 12.6006 -25.5 23.7998 -24.3008c-4.59961 11.3008 -12.0996 19.5 -23.7998 24.3008z" />
|
1577 |
-
<glyph glyph-name="deploydog" unicode="" horiz-adv-x="512"
|
1578 |
-
d="M382.2 312h51.7002v-239.6h-51.7002v20.6992c-19.7998 -24.7998 -52.7998 -24.0996 -73.7998 -14.6992c-26.2002 11.6992 -44.3008 38.0996 -44.3008 71.7998c0 29.7998 14.8008 57.8994 43.3008 70.7998c20.1992 9.09961 52.6992 10.5996 74.7998 -12.9004v103.9z
|
1579 |
-
M317.5 150.2c0 -18.2002 13.5996 -33.5 33.2002 -33.5c19.7998 0 33.2002 16.3994 33.2002 32.8994c0 17.1006 -13.7002 33.2002 -33.2002 33.2002c-19.6006 0 -33.2002 -16.3994 -33.2002 -32.5996zM188.5 312h51.7002v-239.6h-51.7002v20.6992
|
1580 |
-
c-19.7998 -24.7998 -52.7998 -24.0996 -73.7998 -14.6992c-26.2002 11.6992 -44.2998 38.0996 -44.2998 71.7998c0 29.7998 14.7998 57.8994 43.2998 70.7998c20.2002 9.09961 52.7002 10.5996 74.7998 -12.9004v103.9zM123.8 150.2c0 -18.2002 13.6006 -33.5 33.2002 -33.5
|
1581 |
-
c19.7998 0 33.2002 16.3994 33.2002 32.8994c0 17.1006 -13.7002 33.2002 -33.2002 33.2002c-19.7002 0 -33.2002 -16.3994 -33.2002 -32.5996zM448 352h-384c-17.5996 0 -32 -14.5 -32 -32v-256c0 -17.5996 14.5 -32 32 -32h384c17.5996 0 32 14.5 32 32v256
|
1582 |
-
c0 17.5996 -14.5 32 -32 32zM448 384c35.2002 0 64 -28.7998 64 -64v-256c0 -35.2002 -28.7998 -64 -64 -64h-384c-35.2002 0 -64 28.7998 -64 64v256c0 35.2002 28.7998 64 64 64h384z" />
|
1583 |
-
<glyph glyph-name="deskpro" unicode="" horiz-adv-x="480"
|
1584 |
-
d="M205.9 -64l31.0996 38.4004c12.2998 0.199219 25.5996 1.39941 36.5 6.59961c38.9004 18.5996 38.4004 61.9004 38.2998 63.7998c-0.0996094 5 -0.799805 4.40039 -28.8994 37.4004h79.0996c-0.200195 -50.1006 -7.2998 -68.5 -10.2002 -75.7002
|
1585 |
-
c-9.39941 -23.7002 -43.8994 -62.7998 -95.2002 -69.4004c-8.69922 -1.09961 -32.7998 -1.19922 -50.6992 -1.09961zM406.3 103.7l-119.2 -0.100586l17.4004 31.3008l175.5 -0.300781c-15.2002 -17.2998 -35.0996 -30.8994 -73.7002 -30.8994zM362.7 327.6v-168.3h-73.5
|
1586 |
-
l-32.7002 -55.5h-6.5c-52.2998 0 -58.0996 56.5 -58.2998 58.9004c-1.2002 13.2002 -21.2998 11.5996 -20.1006 -1.7998c1.40039 -15.8008 8.80078 -40 26.4004 -57.1006h-91c-25.5 0 -110.8 26.7998 -107 114v213.3c0 16 9.7002 16.6006 15 16.8008h82
|
1587 |
-
c0.200195 0 0.299805 -0.100586 0.5 -0.100586c4.2998 0.400391 50.0996 2.10059 50.0996 -43.7002c0 -13.2998 20.2002 -13.3994 20.2002 0c0 18.2002 -5.5 32.8008 -15.7998 43.7002h84.2002c108.7 0.400391 126.5 -79.3994 126.5 -120.2zM230.2 271.6l64 -29.2998
|
1588 |
-
c13.2998 45.5 -42.2002 71.7002 -64 29.2998z" />
|
1589 |
-
<glyph glyph-name="digital-ocean" unicode="" horiz-adv-x="512"
|
1590 |
-
d="M87 -33.7998v73.5996h73.7002v-73.5996h-73.7002zM25.4004 101.4h61.5996v-61.6006h-61.5996v61.6006zM491.6 271.1c53.2002 -170.3 -73 -327.1 -235.6 -327.1v95.7998h0.299805v0.299805c101.7 0.200195 180.5 101 141.4 208
|
1591 |
-
c-14.2998 39.6006 -46.1006 71.4004 -85.7998 85.7002c-107.101 38.7998 -208.101 -39.8994 -208.101 -141.7h-95.7998c0 162.2 156.9 288.7 327 235.601c74.2002 -23.2998 133.6 -82.4004 156.6 -156.601zM256.3 40.0996h-0.299805v-0.299805h-95.2998v95.6006h95.5996
|
1592 |
-
v-95.3008z" />
|
1593 |
-
<glyph glyph-name="discord" unicode=""
|
1594 |
-
d="M297.216 204.8c0 -15.6162 -11.5195 -28.416 -26.1123 -28.416c-14.3359 0 -26.1113 12.7998 -26.1113 28.416s11.5195 28.416 26.1113 28.416c14.5928 0 26.1123 -12.7998 26.1123 -28.416zM177.664 233.216c14.5918 0 26.3682 -12.7998 26.1123 -28.416
|
1595 |
-
c0 -15.6162 -11.5205 -28.416 -26.1123 -28.416c-14.3359 0 -26.1123 12.7998 -26.1123 28.416s11.5205 28.416 26.1123 28.416zM448 395.264v-459.264c-64.4941 56.9941 -43.8682 38.1279 -118.784 107.776l13.5684 -47.3604h-290.304
|
1596 |
-
c-28.9287 0 -52.4805 23.5518 -52.4805 52.7363v346.111c0 29.1846 23.5518 52.7363 52.4805 52.7363h343.039c28.9287 0 52.4805 -23.5518 52.4805 -52.7363zM375.04 152.576c0 82.4316 -36.8643 149.248 -36.8643 149.248
|
1597 |
-
c-36.8643 27.6475 -71.9355 26.8799 -71.9355 26.8799l-3.58398 -4.0957c43.5195 -13.3125 63.7441 -32.5127 63.7441 -32.5127c-60.8115 33.3291 -132.244 33.335 -191.232 7.42383c-9.47168 -4.35156 -15.1035 -7.42383 -15.1035 -7.42383
|
1598 |
-
s21.2471 20.2246 67.3271 33.5361l-2.55957 3.07227s-35.0723 0.767578 -71.9355 -26.8799c0 0 -36.8643 -66.8164 -36.8643 -149.248c0 0 21.5039 -37.1201 78.0801 -38.9121c0 0 9.47168 11.5195 17.1514 21.248c-32.5117 9.72754 -44.7998 30.208 -44.7998 30.208
|
1599 |
-
c3.7666 -2.63574 9.97656 -6.05273 10.4961 -6.40039c43.21 -24.1973 104.588 -32.126 159.744 -8.95996c8.95996 3.32812 18.9443 8.19238 29.4395 15.1045c0 0 -12.7998 -20.9922 -46.3359 -30.4639c7.68066 -9.72852 16.8965 -20.7363 16.8965 -20.7363
|
1600 |
-
c56.5762 1.79199 78.3359 38.9121 78.3359 38.9121z" />
|
1601 |
-
<glyph glyph-name="discourse" unicode=""
|
1602 |
-
d="M225.9 416c122.699 0 222.1 -102.3 222.1 -223.9c0 -121.6 -99.4004 -223.899 -222.1 -223.899l-225.801 -0.200195s-0.0996094 224 -0.0996094 227.9c0 121.6 103.3 220.1 225.9 220.1zM224 64c70.7002 0 128 57.2998 128 128s-57.2998 128 -128 128
|
1603 |
-
s-128 -57.2998 -128 -128c0 -22.0996 5.59961 -42.9004 15.4004 -61l-22.9004 -75l81.0996 20.0996c16.5 -7.7998 35 -12.0996 54.4004 -12.0996z" />
|
1604 |
-
<glyph glyph-name="dochub" unicode="" horiz-adv-x="416"
|
1605 |
-
d="M397.9 288h-141.9v140.4zM304 256h96v-126.1c0 -129.301 -70.2998 -193.9 -210.8 -193.9h-189.2v512h189.2c12.2002 0 23.7002 -1.09961 34.5996 -3.2998v-84c-10 1.7002 -21.0996 2.5 -33.0996 2.5h-94.7002v-337.3h94.7002c76.7998 0 113.3 33.2998 113.3 100.1v130z
|
1606 |
-
" />
|
1607 |
-
<glyph glyph-name="docker" unicode="" horiz-adv-x="640"
|
1608 |
-
d="M349.9 211.7h-66.1006v59.3994h66.1006v-59.3994zM349.9 416v-60.7002h-66.1006v60.7002h66.1006zM428.1 271.2v-59.4004h-66.0996v59.4004h66.0996zM271.8 343.3v-60.0996h-66.0996v60.0996h66.0996zM349.9 343.3v-60.0996h-66.1006v60.0996h66.1006zM626.7 243.3
|
1609 |
-
l13.2998 -8.89941c-1.90039 -3.90039 -7 -14.6006 -8.5 -17.1006c-23.7002 -45.2998 -69.9004 -45.5996 -91.2998 -45.2002c-54.5 -131.699 -171 -204.199 -328.4 -204.199c-72.7002 0 -128.3 22.2998 -165.399 66.1992c-38.2002 45.3008 -52.7002 111.301 -44 162.101
|
1610 |
-
h434.699c22.6006 -0.400391 39.7002 6 48.4004 10.7002c-19.7002 30.1992 -14.7002 76 3.7002 103.8l9.2998 14l14 -9.2998c24.4004 -18.8008 37.7998 -39.7002 41.0996 -63.7002c25.5 4.7998 58.7002 1.2998 73.1006 -8.40039zM115.6 271.2h0.100586v-59.4004h-66.1006
|
1611 |
-
v59.4004h66zM193.7 271.2v-59.4004h-66.1006v59.4004h66.1006zM271.8 271.2v-59.4004h-66.0996v59.4004h66.0996zM193.7 343.3v-60.0996h-66.1006v60.0996h66.1006z" />
|
1612 |
-
<glyph glyph-name="draft2digital" unicode="" horiz-adv-x="480"
|
1613 |
-
d="M480 49.9004l-144 -81.9004v64.2002l-336 -0.100586c18.2998 19.1006 84.5 87.8008 161.1 174.801c32.6006 37.1992 78 83.2998 69.7002 127.6c-5.2998 28.2998 -42.2002 50.7998 -83.2998 33.5c-8.59961 -3.59961 -24.5 -17.4004 -26.2998 -24.7002
|
1614 |
-
c28.2998 -4.7002 48 -29.7002 48 -56.7998c0 -31.7002 -25.6006 -57.4004 -57.2998 -57.4004c-37.3008 0 -62.2002 34.1006 -56.7002 67.1006c1.2002 7.89941 5.09961 26.7998 18.2002 47.7002c14.8994 23.8994 45.1992 54.8994 104.3 67.2998
|
1615 |
-
c103.8 21.7002 161.6 -36.6006 166 -41.2002c28.8994 -29.9004 48 -90.7002 12.7998 -153.3c-30 -53.4004 -81 -114.3 -111.8 -149.3h91.2998v64.6992zM369.9 77v-54.4004l47.0996 27.2002zM134.2 286.6c0 12.3008 -10 22.4004 -22.4004 22.4004
|
1616 |
-
c-12.3994 0 -22.3994 -10 -22.3994 -22.4004c0 -12.3994 10 -22.3994 22.3994 -22.3994c12.4004 0 22.4004 10 22.4004 22.3994zM82.5 67.5h114.4c17.5996 19.2002 91.5 100.8 128.5 166.7c36.5996 65.0996 -5.80078 113.3 -5.80078 113.3
|
1617 |
-
c-14.1992 14.9004 -36.8994 36.2002 -82.1992 38.2998c6.7998 -5.5 16.8994 -16.8994 24.2998 -35.7002c11.8994 -30.2998 6.7002 -69.5996 -28.4004 -112.699c-53.0996 -65.2002 -125.2 -142.5 -150.8 -169.9z" />
|
1618 |
-
<glyph glyph-name="dribbble-square" unicode=""
|
1619 |
-
d="M90.2002 219.8c8.89941 42.4004 37.3994 77.7002 75.7002 95.7002c3.59961 -4.90039 28 -38.7998 50.6992 -79c-64 -17 -120.3 -16.7998 -126.399 -16.7002zM314.6 294c-2.5 -3.5 -23 -31.0996 -71.5996 -49.4004c-22.4004 41.1006 -47.2002 74.9004 -51 80
|
1620 |
-
c43.2998 10.5 89 -0.799805 122.6 -30.5996zM140.1 84c14.3008 29.2002 53 66.7998 108.101 85.5996c19.2002 -49.7998 27.2002 -91.5996 29.2002 -103.6c-44 -18.7002 -96.8008 -13.5996 -137.301 18zM238.9 192.2c-49.4004 -13.9004 -94.3008 -53.9004 -116.5 -91.7998
|
1621 |
-
c-21.8008 24.2998 -35.1006 56.2998 -35.1006 91.3994c0 1.40039 0.100586 2.7998 0.100586 4.2002c6 -0.200195 72.1992 -1 140.399 19.4004c3.90039 -7.7002 7.7002 -15.4004 11.1006 -23.2002zM273.8 175.9c42.7998 6.89941 80.5 -4.30078 85.1006 -5.80078
|
1622 |
-
c-6.10059 -38 -27.9004 -70.8994 -58.6006 -91.5996c-1.39941 8.2998 -8.59961 48.2998 -26.5 97.4004zM253.5 224.3c50.5 20.7002 73.4004 50 76.2998 53.9004c19.1006 -23.2002 30.6006 -52.7998 30.9004 -85.1006c-4.5 1 -49.7002 10.1006 -95.2002 4.40039
|
1623 |
-
c-3.7002 9 -7.2002 17 -12 26.7998zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM384 192c0 88.2002 -71.7998 160 -160 160s-160 -71.7998 -160 -160s71.7998 -160 160 -160
|
1624 |
-
s160 71.7998 160 160z" />
|
1625 |
-
<glyph glyph-name="dyalog" unicode="" horiz-adv-x="416"
|
1626 |
-
d="M0 416h171.2c74.5 0 137.7 -24 182.5 -69.5996c40.2002 -40.9004 62.2998 -95.6006 62.2998 -154.301c0 -111.399 -84.0996 -224.1 -244.8 -224.1h-171.2v64h171.2c122.2 0 180.8 84 180.8 160.1c0 79.7002 -67.4004 159.9 -180.8 159.9h-107.2v-55.2002h-64v119.2z" />
|
1627 |
-
<glyph glyph-name="earlybirds" unicode="" horiz-adv-x="480"
|
1628 |
-
d="M313.2 400.5c1.2002 13 21.2998 14 36.5996 8.7002c0.900391 -0.299805 26.2002 -9.7002 19 -15.2002c-27.8994 7.40039 -56.3994 -18.2002 -55.5996 6.5zM112.2 393.6c-7.7998 6.2002 19.8994 16.4004 20.8994 16.7002c16.8008 5.7002 38.9004 4.60059 40.2002 -9.59961
|
1629 |
-
c0.900391 -27.1006 -30.3994 1 -61.0996 -7.10059zM319.4 288c8.7998 0 16 -7.2002 16 -16s-7.2002 -16 -16 -16c-8.80078 0 -16 7.2002 -16 16s7.19922 16 16 16zM159.7 288c8.7998 0 16 -7.2002 16 -16s-7.2002 -16 -16 -16s-16 7.2002 -16 16s7.2002 16 16 16z
|
1630 |
-
M478.2 124.8c-9.90039 -24 -40.7002 -11 -63.9004 1.2002c-13.5 -69.0996 -58.0996 -111.4 -126.3 -124.2c0.299805 -0.899414 -2 0.100586 24 -1c33.5996 -1.39941 63.7998 3.10059 97.4004 8c-19.8008 13.7998 -11.4004 37.1006 -9.80078 38.1006
|
1631 |
-
c1.40039 0.899414 14.7002 -1.7002 21.6006 -11.5c8.59961 12.5 28.3994 14.7998 30.2002 13.5996c1.59961 -1.09961 6.59961 -20.9004 -6.90039 -34.5996c4.7002 0.899414 8.2002 1.59961 9.7998 2.09961c2.60059 0.799805 17.7002 -11.2998 3.10059 -13.2998
|
1632 |
-
c-14.3008 -2.2998 -22.6006 -5.10059 -47.1006 -10.7998c-45.8994 -10.7002 -85.8994 -11.8008 -117.7 -12.8008l1 -11.5996c3.80078 -18.0996 -23.3994 -24.2998 -27.5996 -6.2002c0.799805 -17.8994 -27.0996 -21.7998 -28.4004 1l-0.5 -5.2998
|
1633 |
-
c-0.699219 -18.4004 -28.3994 -17.9004 -28.2998 0.599609c-7.5 -13.5 -28.0996 -6.7998 -26.3994 8.5l1.19922 12.4004c-36.6992 -0.900391 -59.6992 -3.09961 -61.7998 -3.09961c-20.8994 0 -20.8994 31.5996 0 31.5996c2.40039 0 27.7002 -1.2998 63.2002 -2.7998
|
1634 |
-
c-61.0996 15.5 -103.7 55 -114.9 118.2c-25 -12.8008 -57.5 -26.8008 -68.1992 -0.800781c-10.5 25.4004 21.5 42.6006 66.7998 73.4004c0.700195 6.59961 1.59961 13.2998 2.7002 19.7998c-14.4004 19.6006 -11.6006 36.2998 -16.1006 60.4004
|
1635 |
-
c-16.7998 -2.40039 -23.2002 9.09961 -23.5996 23.0996c0.299805 7.2998 2.09961 14.9004 2.39941 15.4004c1.10059 1.7998 10.1006 2 12.7002 2.59961c6 31.7002 50.6006 33.2002 90.9004 34.5c19.7002 21.7998 45.2002 41.5 80.8994 48.2998
|
1636 |
-
c-15.2998 19.4004 -3.39941 39.9004 -2.39941 40.4004c1.7002 0.799805 21.2002 -4.2998 26.2998 -23.2002c5.2002 8.7998 18.2998 11.4004 19.5996 10.7002c1.10059 -0.599609 6.40039 -15 -4.89941 -25.9004c40.2998 -3.5 72.2002 -24.6992 96 -50.6992
|
1637 |
-
c36.0996 -1.5 71.7998 -5.90039 77.0996 -34c2.7002 -0.600586 11.6006 -0.800781 12.7002 -2.60059c0.299805 -0.5 2.09961 -8.09961 2.40039 -15.3994c-0.5 -13.9004 -6.80078 -25.4004 -23.6006 -23.1006c-3.2002 -17.2998 -2.7002 -32.8994 -8.7002 -47.7002
|
1638 |
-
c2.40039 -11.6992 4 -23.7998 4.80078 -36.3994c37 -25.4004 70.2998 -42.5 60.2998 -66.9004zM207.4 288.1c0.899414 44 -37.9004 42.2002 -78.6006 40.3008c-21.7002 -1 -38.8994 -1.90039 -45.5 -13.9004c-11.3994 -20.9004 5.90039 -92.9004 23.2002 -101.2
|
1639 |
-
c9.7998 -4.7002 73.4004 -7.89941 86.2998 7.10059c8.2002 9.39941 15 49.3994 14.6006 67.6992zM259.4 229.8c-4.30078 12.4004 -6 30.1006 -15.3008 32.7002c-2 0.5 -9 0.5 -11 0c-10 -2.7998 -10.7998 -22.0996 -17 -37.2002c15.4004 0 19.3008 -9.7002 23.7002 -9.7002
|
1640 |
-
c4.2998 0 6.2998 11.3008 19.6006 14.2002zM395.1 314.5c-6.59961 12.0996 -24.7998 12.9004 -46.5 13.9004c-40.1992 1.89941 -78.1992 3.7998 -77.2998 -40.3008c-0.5 -18.2998 5 -58.2998 13.2002 -67.7998c13 -14.8994 76.5996 -11.7998 86.2998 -7.09961
|
1641 |
-
c15.7998 7.59961 36.5 78.8994 24.2998 101.3z" />
|
1642 |
-
<glyph glyph-name="erlang" unicode="" horiz-adv-x="640"
|
1643 |
-
d="M87.2002 394.5c-41.5 -50.2002 -65.6006 -116.2 -65.5 -192.9c-0.100586 -86.7998 29 -159.5 78.7002 -212.1h-100.4v405h87.2002zM325.4 384.8c46.1992 -0.0996094 79.5996 -33.5 80.6992 -83.2002h-169.899c4.09961 49.7002 43.2998 83.1006 89.2002 83.2002z
|
1644 |
-
M556.1 394.4h0.300781l-0.100586 0.0996094zM556.4 394.4h83.5996v-405h-80.7998c21.3994 23 40.5 49.8994 57.8994 80.7998l-96.3994 48.2002c-33.9004 -55.1006 -83.4004 -105.801 -151.9 -106.101c-99.7002 0.400391 -138.8 85.6006 -138.6 195.3h372.399
|
1645 |
-
c0.5 12.4004 0.5 18.1006 0 24.1006c2.5 65.2002 -14.7998 120 -46.1992 162.7z" />
|
1646 |
-
<glyph glyph-name="facebook-f" unicode="" horiz-adv-x="320"
|
1647 |
-
d="M279.14 160h-74.6895v-224h-100.17v224h-81.3906v92.6602h81.3906v70.6201c0 80.3398 47.8594 124.72 121.08 124.72c35.0693 0 71.75 -6.25977 71.75 -6.25977v-78.8906h-40.4199c-39.8203 0 -52.2402 -24.71 -52.2402 -50.0596v-60.1299h88.9102z" />
|
1648 |
-
<glyph glyph-name="facebook-messenger" unicode="" horiz-adv-x="512"
|
1649 |
-
d="M256.55 440c140.04 0 247.45 -102.34 247.45 -240.57c0 -175.13 -166.15 -273.229 -319.44 -231.04c-8.96973 2.44043 -9.64941 0.600586 -62.5596 -22.6992c-2.4375 -1.06445 -5.14355 -1.6543 -7.97168 -1.6543c-10.7617 0 -19.541 8.55176 -19.9082 19.2236
|
1650 |
-
c-1.41992 46.3701 0.299805 50.7207 -8.0498 58.2305c-48.3604 43.1602 -78.0703 105.64 -78.0703 177.939c0 138.23 108.52 240.57 248.55 240.57zM405.79 254.87c7.0498 11.0801 -6.65039 23.5996 -17.0898 15.6201l-78.4102 -59.3799
|
1651 |
-
c-2.50586 -1.87988 -5.64258 -2.99316 -9.0127 -2.99316s-6.48145 1.11328 -8.9873 2.99316l-58.0596 43.46c-6.23047 4.65234 -13.9668 7.46582 -22.333 7.46582c-13.2803 0 -24.9512 -6.94434 -31.5771 -17.3965l-73 -115.569
|
1652 |
-
c-7.05078 -11.0703 6.64941 -23.6006 17.1094 -15.6699l78.3701 59.4395c2.50586 1.87891 5.64258 2.99316 9.0127 2.99316s6.48242 -1.11426 8.9873 -2.99316l58.0801 -43.4697c6.23047 -4.65039 13.9658 -7.46191 22.3301 -7.46191
|
1653 |
-
c13.2803 0 24.9512 6.94141 31.5801 17.3916z" />
|
1654 |
-
<glyph glyph-name="firstdraft" unicode="" horiz-adv-x="384"
|
1655 |
-
d="M384 256h-64v-128h-128v-128h-192v25.5996h166.4v128h128v128h89.5996v-25.5996zM358.4 217.6h25.5996v-153.6h-128v-128h-192v25.5996h166.4v128h128v128zM384 25.5996v-25.5996h-64v-64h-25.5996v89.5996h89.5996zM0 448h384v-128h-128v-128h-128v-128h-128v384z" />
|
1656 |
-
<glyph glyph-name="fonticons-fi" unicode="" horiz-adv-x="384"
|
1657 |
-
d="M114.4 224h92.3994l-15.2002 -51.2002h-76.3994v-157.8c0 -8 -2.7998 -9.2002 4.39941 -10l59.6006 -5.59961v-34.4004h-179.2v35.2002l29.2002 2.7998c7.2002 0.799805 9.2002 3.2002 9.2002 10.7998v155.8c0 3.2002 -4 3.2002 -8 3.2002h-30.4004v51.2002h38.4004
|
1658 |
-
v28.7998c0 68 36.3994 96 106 96c46.7998 0 88.7998 -11.2002 88.7998 -72.3994l-69.6006 -8.40039c0.400391 25.5996 -6 31.5996 -22.3994 31.5996c-25.2002 0 -26 -13.5996 -26 -37.5996v-32c0 -3.2002 -4.7998 -6 -0.799805 -6zM384 -35h-140.8v34.4004l28 3.59961
|
1659 |
-
c7.2002 0.799805 10.3994 2.40039 10.3994 10v148c0 5.59961 -4 9.2002 -9.19922 10.7998l-33.2002 8.7998l9.2002 40.4004h110v-208c0 -8 -3.60059 -8.7998 4 -10l21.5996 -3.59961v-34.4004zM354 312.2l12.4004 -45.6006l-10 -10l-42.8008 22.8008l-42.7998 -22.8008
|
1660 |
-
l-10 10l12.4004 45.6006l-30 36.3994l4.7998 10h38l21.2002 38.4004h12.7998l21.2002 -38.4004h38l4.7998 -13.1992z" />
|
1661 |
-
<glyph glyph-name="fort-awesome-alt" unicode="" horiz-adv-x="512"
|
1662 |
-
d="M208 210.6c2.09961 0 3.7002 -1.59961 3.7002 -3.69922v-51.7002c0 -2.10059 -1.60059 -3.7002 -3.7002 -3.7002h-22.2002c-2.09961 0 -3.7002 1.59961 -3.7002 3.7002v51.7002c0 2.09961 1.60059 3.69922 3.7002 3.69922h22.2002zM326.2 210.6
|
1663 |
-
c2 0 3.59961 -1.59961 3.7002 -3.69922v-51.7002c0 -2.10059 -1.60059 -3.7002 -3.7002 -3.7002h-22.2002c-2.09961 0 -3.7002 1.59961 -3.7002 3.7002v51.7002c0 2.09961 1.60059 3.69922 3.7002 3.69922h22.2002zM458.2 335.7
|
1664 |
-
c28.8994 -40.7002 45.7998 -90.2002 45.7998 -143.7c0 -2 0 -4 -0.0996094 -6c0 -0.700195 0 -1.2998 -0.100586 -2c0 -1.2998 -0.0996094 -2.7002 -0.200195 -4c0 -0.799805 -0.0996094 -1.5 -0.0996094 -2.2998
|
1665 |
-
c-0.0996094 -1.2002 -0.0996094 -2.40039 -0.200195 -0.700195c-0.0996094 -0.799805 -0.0996094 -1.59961 -0.200195 -2.40039c-0.0996094 -1.19922 -0.199219 -2.39941 -0.299805 -3.5c-0.0996094 -0.799805 -0.200195 -1.59961 -0.200195 -2.39941
|
1666 |
-
c-0.0996094 -1.2002 -0.299805 -2.40039 -0.399414 -3.60059c-0.100586 -0.799805 -0.200195 -1.5 -0.299805 -2.2998c-0.200195 -1.2998 -0.400391 -2.59961 -0.5 -3.89941c-0.100586 -0.600586 -0.200195 -1.30078 -0.300781 -1.90039l-0.899414 -5.7002
|
1667 |
-
c-0.100586 -0.599609 -0.200195 -1.09961 -0.299805 -1.7002c-0.200195 -1.2998 -0.5 -2.69922 -0.800781 -4c-0.199219 -0.799805 -0.299805 -1.59961 -0.5 -2.39941c-0.199219 -1.10059 -0.5 -2.2002 -0.699219 -3.2002
|
1668 |
-
c-0.200195 -0.900391 -0.400391 -1.7002 -0.600586 -2.59961c-0.200195 -1 -0.5 -2 -0.700195 -3c-0.199219 -0.900391 -0.5 -1.80078 -0.699219 -2.7002c-0.300781 -1 -0.5 -1.90039 -0.800781 -2.90039c-0.199219 -0.899414 -0.5 -1.7998 -0.799805 -2.7002
|
1669 |
-
c-0.299805 -0.899414 -0.599609 -1.89941 -0.799805 -2.7998c-0.299805 -0.899414 -0.5 -1.7998 -0.799805 -2.7002c-0.299805 -0.899414 -0.600586 -1.7998 -0.900391 -2.7998c-0.5 -1.59961 -1.09961 -3.2998 -1.7002 -4.89941
|
1670 |
-
c-0.299805 -0.900391 -0.599609 -1.80078 -1 -2.80078c-0.399414 -1 -0.699219 -2 -1.09961 -3c-0.299805 -0.799805 -0.599609 -1.5 -0.900391 -2.2998l-1.19922 -3c-0.300781 -0.700195 -0.600586 -1.5 -0.900391 -2.2002c-0.400391 -1 -0.799805 -2 -1.2998 -3
|
1671 |
-
l-0.900391 -2.09961c-0.399414 -1 -0.899414 -2 -1.39941 -3c-0.300781 -0.700195 -0.600586 -1.2998 -0.900391 -2c-0.5 -1 -1 -2.09961 -1.5 -3.09961c-0.299805 -0.600586 -0.599609 -1.10059 -0.799805 -1.7002c-0.600586 -1.10059 -1.10059 -2.2002 -1.7002 -3.2998
|
1672 |
-
c-0.0996094 -0.200195 -0.200195 -0.300781 -0.299805 -0.5c-2.2002 -4.10059 -4.40039 -8.2002 -6.7998 -12.2002c-0.200195 -0.400391 -0.5 -0.799805 -0.700195 -1.2002c-0.700195 -1.09961 -1.2998 -2.2002 -2 -3.2998
|
1673 |
-
c-0.299805 -0.5 -0.600586 -0.900391 -0.900391 -1.40039c-0.700195 -1.09961 -1.39941 -2.09961 -2 -3.2002c-0.299805 -0.5 -0.599609 -0.899414 -0.899414 -1.39941c-0.700195 -1.10059 -1.40039 -2.10059 -2.10059 -3.2002
|
1674 |
-
c-0.299805 -0.400391 -0.599609 -0.799805 -0.799805 -1.2002c-0.799805 -1.09961 -1.5 -2.2002 -2.2998 -3.2998c-0.200195 -0.200195 -0.299805 -0.5 -0.5 -0.700195c-37.6006 -54.7002 -94.5 -91.3994 -160.101 -102.399
|
1675 |
-
c-0.899414 -0.100586 -1.69922 -0.300781 -2.59961 -0.400391c-1 -0.200195 -2.09961 -0.299805 -3.09961 -0.5c-0.900391 -0.0996094 -1.80078 -0.299805 -2.80078 -0.400391c-1 -0.0996094 -2 -0.299805 -3 -0.399414c-1 -0.100586 -2 -0.200195 -2.89941 -0.299805
|
1676 |
-
c-1 -0.100586 -1.90039 -0.200195 -2.90039 -0.300781c-1 -0.0996094 -2.09961 -0.199219 -3.09961 -0.299805c-0.900391 -0.0996094 -1.7998 -0.200195 -2.7002 -0.200195c-1.09961 -0.0996094 -2.2998 -0.0996094 -3.40039 -0.199219
|
1677 |
-
c-0.799805 0 -1.69922 -0.100586 -2.5 -0.100586c-1.2998 -0.0996094 -2.59961 -0.0996094 -3.89941 -0.0996094c-0.700195 0 -1.40039 -0.100586 -2.10059 -0.100586c-2 0 -4 -0.0996094 -6 -0.0996094s-4 0 -6 0.0996094c-0.699219 0 -1.39941 0 -2.09961 0.100586
|
1678 |
-
c-1.2998 0 -2.59961 0.0996094 -3.90039 0.0996094c-0.799805 0 -1.69922 0.100586 -2.5 0.100586c-1.09961 0.0996094 -2.2998 0.0996094 -3.39941 0.199219c-0.900391 0.100586 -1.7998 0.100586 -2.7002 0.200195c-1 0.100586 -2.09961 0.200195 -3.09961 0.299805
|
1679 |
-
c-1 0.100586 -1.90039 0.200195 -2.90039 0.300781c-1 0.0996094 -2 0.199219 -2.90039 0.299805c-1 0.0996094 -2 0.200195 -3 0.399414c-0.899414 0.100586 -1.7998 0.300781 -2.7998 0.400391s-2.09961 0.299805 -3.09961 0.5
|
1680 |
-
c-0.900391 0.0996094 -1.7002 0.299805 -2.60059 0.400391c-65.5996 10.8994 -122.5 47.6992 -160 99.3994c-0.199219 0.200195 -0.299805 0.5 -0.5 0.700195c-0.799805 1.09961 -1.59961 2.2002 -2.2998 3.2998c-0.299805 0.400391 -0.599609 0.799805 -0.799805 1.2002
|
1681 |
-
c-0.700195 1.09961 -1.40039 2.09961 -2.09961 3.2002c-0.300781 0.5 -0.600586 0.899414 -0.900391 1.39941c-0.700195 1.10059 -1.40039 2.10059 -2 3.2002c-0.299805 0.5 -0.599609 0.900391 -0.900391 1.40039c-0.699219 1.09961 -1.2998 2.2002 -2 3.2998
|
1682 |
-
c-0.199219 0.400391 -0.5 0.799805 -0.699219 1.2002c-2.40039 4 -4.60059 8.09961 -6.80078 12.2002c-0.0996094 0.199219 -0.199219 0.299805 -0.299805 0.5c-0.599609 1.09961 -1.09961 2.19922 -1.7002 3.2998c-0.299805 0.599609 -0.599609 1.09961 -0.799805 1.7002
|
1683 |
-
c-0.5 1 -1 2.09961 -1.5 3.09961c-0.299805 0.700195 -0.599609 1.2998 -0.899414 2c-0.5 1 -0.900391 2 -1.40039 3l-0.900391 2.09961c-0.399414 1 -0.899414 2 -1.2998 3c-0.299805 0.700195 -0.599609 1.5 -0.899414 2.2002l-1.2002 3
|
1684 |
-
c-0.299805 0.799805 -0.600586 1.5 -0.900391 2.2998c-0.399414 1 -0.799805 2 -1.09961 3c-0.299805 0.900391 -0.600586 1.80078 -1 2.80078c-0.600586 1.59961 -1.10059 3.2998 -1.7002 4.89941c-0.299805 0.900391 -0.599609 1.7998 -0.900391 2.7998
|
1685 |
-
c-0.299805 0.900391 -0.5 1.80078 -0.799805 2.7002c-0.299805 0.900391 -0.599609 1.90039 -0.799805 2.7998c-0.299805 0.900391 -0.5 1.80078 -0.799805 2.7002c-0.299805 1 -0.5 1.90039 -0.799805 2.90039c-0.200195 0.899414 -0.5 1.7998 -0.700195 2.7002
|
1686 |
-
c-0.299805 1 -0.5 2 -0.700195 3c-0.200195 0.899414 -0.400391 1.69922 -0.599609 2.59961c-0.200195 1.09961 -0.5 2.2002 -0.700195 3.2002c-0.200195 0.799805 -0.299805 1.59961 -0.5 2.39941c-0.299805 1.30078 -0.5 2.7002 -0.799805 4
|
1687 |
-
c-0.100586 0.600586 -0.200195 1.10059 -0.300781 1.7002l-0.899414 5.7002c-0.100586 0.599609 -0.200195 1.2998 -0.299805 1.90039c-0.200195 1.2998 -0.400391 2.59961 -0.5 3.89941c-0.100586 0.799805 -0.200195 1.5 -0.300781 2.2998
|
1688 |
-
c-0.0996094 1.2002 -0.299805 2.40039 -0.399414 3.60059c-0.100586 0.799805 -0.200195 1.59961 -0.200195 2.39941c-0.0996094 1.2002 -0.200195 2.40039 -0.299805 3.5c-0.100586 0.800781 -0.100586 1.60059 -0.200195 2.40039
|
1689 |
-
c-0.0996094 1.2002 -0.200195 2.40039 -0.200195 3.7002c0 0.799805 -0.0996094 1.5 -0.0996094 2.2998c-0.100586 1.2998 -0.100586 2.7002 -0.200195 4c0 0.700195 0 1.2998 -0.0996094 2c0 2 -0.100586 4 -0.100586 6c0 53.5 16.9004 103 45.7998 143.6
|
1690 |
-
c2.30078 3.2002 4.7002 6.40039 7.10059 9.5c4.89941 6.2002 10.0996 12.3008 15.5996 18c2.7002 2.90039 5.5 5.7002 8.40039 8.40039c2.89941 2.7002 5.7998 5.40039 8.7998 8c4.5 3.90039 9.09961 7.59961 13.9004 11.2002c1.59961 1.2002 3.19922 2.39941 4.7998 3.5
|
1691 |
-
c27.2998 19.5996 59 33.7002 93.2998 40.7998c16.0996 3.2998 32.9004 5 50 5s33.7998 -1.7002 50 -5c34.2998 -7 66 -21.0996 93.5996 -40.7002c1.60059 -1.2002 3.2002 -2.2998 4.80078 -3.5c4.7998 -3.59961 9.39941 -7.2998 13.8994 -11.2002
|
1692 |
-
c12 -10.3994 23 -21.8994 32.7998 -34.3994c2.5 -3.10059 4.80078 -6.2998 7.10059 -9.5zM448 76.5v71.2998c0 2.10059 -1.59961 3.7002 -3.7002 3.7002h-22.2002c-2.09961 0 -3.69922 -1.59961 -3.69922 -3.7002v-25.7998h-29.5v144
|
1693 |
-
c0 2.09961 -1.60059 3.7002 -3.7002 3.7002h-22.1006c-2.09961 0 -3.69922 -1.60059 -3.69922 -3.7002v-25.9004h-29.5v25.9004c0 2.09961 -1.60059 3.7002 -3.7002 3.7002h-22.2002c-2.09961 0 -3.7002 -1.60059 -3.7002 -3.7002v-25.9004h-29.5v25.9004
|
1694 |
-
c0 4.7998 -6.5 3.7002 -9.5 3.7002v30.7002c6.7002 1.59961 13.7998 2.7998 20.7998 2.7998c8.80078 0 16.8008 -3.5 25.4004 -3.5c3.7002 0 22.4004 0.899414 22.4004 6.5v48.3994c0 2.10059 -1.60059 3.7002 -3.7002 3.7002c-4.2002 0 -12.2002 -3.5 -19.4004 -3.5
|
1695 |
-
c-7.89941 0 -16.8994 3.5 -26.2998 3.5c-6.5 0 -12.9004 -0.899414 -19.2002 -2.2998v3.90039c4.40039 2.09961 7.40039 6.69922 7.40039 11.5c0 16.7998 -25.4004 16.7998 -25.4004 0c0 -4.80078 3 -9.5 7.40039 -11.5v-90.2002c-3 0 -9.5 1.09961 -9.5 -3.7002v-25.9004
|
1696 |
-
h-29.5v25.9004c0 2.09961 -1.60059 3.7002 -3.7002 3.7002h-22.2002c-2.09961 0 -3.7002 -1.60059 -3.7002 -3.7002v-25.9004h-29.5v25.9004c0 2.09961 -1.59961 3.7002 -3.69922 3.7002h-22.1006c-2.09961 0 -3.7002 -1.60059 -3.7002 -3.7002v-144h-29.5996v25.7998
|
1697 |
-
c0 2.10059 -1.59961 3.7002 -3.7002 3.7002h-22.0996c-2.10059 0 -3.7002 -1.59961 -3.7002 -3.7002v-71.2998c9.40039 -15.5 20.5996 -29.9004 33.5996 -42.9004c20.6006 -20.5996 44.5 -36.6992 71.2002 -48c13.9004 -5.89941 28.2002 -10.2998 42.9004 -13.1992v75.7998
|
1698 |
-
c0 58.5996 88.5996 58.5996 88.5996 0v-75.7998c14.7002 2.89941 29 7.39941 42.9004 13.1992c26.7002 11.3008 50.5996 27.4004 71.2002 48c13 13 24.1992 27.4004 33.5996 42.9004z" />
|
1699 |
-
<glyph glyph-name="freebsd" unicode=""
|
1700 |
-
d="M303.7 351.8c11.0996 11.1006 115.5 77 139.2 53.2002c23.6992 -23.7002 -42.1006 -128.1 -53.2002 -139.2c-11.1006 -11.0996 -39.4004 -0.899414 -63.1006 22.9004c-23.7998 23.7002 -34.0996 52 -22.8994 63.0996zM109.9 379.9
|
1701 |
-
c-31.6006 -19.4004 -57.9004 -46.5 -76.4004 -78.7002c-20.7998 36.2998 -44.5 89.0996 -27.9004 105.7c16.4004 16.5 68 -6.40039 104.301 -27zM406.7 274c3.2998 5.5 7 11.7998 10.8994 18.7998c17.6006 -31.2998 27.7002 -67.3994 27.7002 -105.8
|
1702 |
-
c0 -119.1 -96.5 -215.6 -215.6 -215.6c-119.101 0 -215.601 96.5996 -215.601 215.6c0 119.1 96.5 215.6 215.601 215.6c35.8994 0 69.7002 -8.7998 99.5 -24.2998c-7.2998 -4 -13.9004 -8 -19.6006 -11.5996c-26 4.7002 -32.8994 -16.4004 -14.8994 -48.7002
|
1703 |
-
c21.7998 -43.0996 89 -90.4004 109.3 -70.0996c5.40039 5.39941 6 14.7998 2.7002 26.0996z" />
|
1704 |
-
<glyph glyph-name="gitkraken" unicode="" horiz-adv-x="592"
|
1705 |
-
d="M565.7 329.9c11.7998 -31.6006 18.2998 -65.7002 18.2998 -101.4c0 -155.1 -122.6 -281.6 -276.3 -287.7v145.8c-8.40039 -0.5 -16.6006 -0.399414 -23.4004 0v-145.899c-153.7 6.2002 -276.3 132.7 -276.3 287.8c0 35.7002 6.5 69.7998 18.2998 101.3
|
1706 |
-
c2.2998 6.2002 9.2998 9.2002 15.2998 6.60059c5.7002 -2.40039 8.5 -8.80078 6.30078 -14.6006c-10.9004 -29 -16.9004 -60.5 -16.9004 -93.2998c0 -134.6 100.4 -245.7 230.2 -262.7v123.7c-7.90039 1.59961 -15.4004 3.7002 -23 6.2002v-104
|
1707 |
-
c-106.7 26 -185.9 122.1 -185.9 236.8c0 91.7998 50.7998 171.8 125.8 213.3c5.80078 3.2002 13 0.900391 15.9004 -5c2.7002 -5.5 0.700195 -12.0996 -4.7002 -15.0996c-67.8994 -37.7002 -113.899 -110.101 -113.899 -193.2c0 -93.4004 57.8994 -173.2 139.8 -205.4
|
1708 |
-
v92.2002c-14.2002 4.5 -24.7998 17.7002 -24.7998 33.5c0 13.1006 6.69922 24.4004 17.2998 30.5c-8.2002 79.6006 -44.5 58.6006 -44.5 83.9004v14.7998c0 38 87.8994 161.7 129.1 164.7c2.60059 0.200195 5.10059 0.200195 7.60059 0
|
1709 |
-
c41.0996 -2.90039 129 -126.7 129 -164.7v-14.7002c0 -25.2998 -36.2002 -4.39941 -44.5 -83.8994c10.5 -6.10059 17.2998 -17.4004 17.2998 -30.5c0 -15.8008 -10.7002 -29 -24.9004 -33.5v-92.2002c81.9004 32.2998 139.8 112.1 139.8 205.399
|
1710 |
-
c0 83.2002 -46 155.601 -113.899 193.2c-5.2998 2.90039 -7.40039 9.60059 -4.7002 15.1006c2.90039 5.89941 10.2002 8.19922 15.9004 5c75 -41.5 125.8 -121.5 125.8 -213.301c0 -114.699 -79.2002 -210.899 -185.9 -236.8v104
|
1711 |
-
c-7.5 -2.59961 -15.0996 -4.7002 -23 -6.2002v-123.699c129.9 17 230.2 128.1 230.2 262.699c0 32.8008 -6 64.3008 -16.9004 93.3008c-2.19922 5.69922 0.600586 12.1992 6.30078 14.5996c6 2.59961 13 -0.5 15.2998 -6.59961zM365.9 172.5
|
1712 |
-
c-13.1006 0 -23.7002 -10.5996 -23.7002 -23.7002c0 -13.2002 10.7002 -23.7002 23.7002 -23.7002c13.0996 0 23.6992 10.6006 23.6992 23.7002c0 13.2002 -10.6992 23.7002 -23.6992 23.7002zM226.1 125.2c13.2002 0 23.7002 10.7002 23.7002 23.7002
|
1713 |
-
c0 13.0996 -10.5996 23.6992 -23.7002 23.6992c-13.1992 0 -23.6992 -10.6992 -23.6992 -23.6992s10.5 -23.7002 23.6992 -23.7002z" />
|
1714 |
-
<glyph glyph-name="gofore" unicode="" horiz-adv-x="400"
|
1715 |
-
d="M324 128.2c54.2998 0 65.7002 -50.1006 67.7002 -77.7002c-46.5 -56.2998 -107.8 -82.5 -171 -82.5c-123.7 0 -220.7 101.5 -220.7 224c0 123.4 98 224 220.7 224c59 0 114.3 -23.2998 156.1 -65.5996l-62.2998 -63.3008c-25 25.4004 -58.2998 39.4004 -93.5996 39.4004
|
1716 |
-
c-73.2002 0 -132.4 -60.2998 -132.4 -134.4c0 -74.1992 59.2002 -134.399 132.4 -134.399c33.5996 0 65.3994 12.7002 89.8994 35.7998v34.7002h13.2002zM311.9 240.7c47.6992 0 88.0996 -35 88.0996 -100.2v-30.5996c-15.5 26.6992 -42.5 41.7998 -76 41.7998h-118.4v89
|
1717 |
-
h106.301z" />
|
1718 |
-
<glyph glyph-name="goodreads" unicode=""
|
1719 |
-
d="M299.9 256.8c5.09961 -37.2998 -4.7002 -79 -35.9004 -100.7c-22.2998 -15.5 -52.7998 -14.0996 -70.7998 -5.69922c-37.1006 17.2998 -49.5 58.5996 -46.7998 97.1992c4.2998 60.9004 40.8994 87.9004 75.2998 87.5c46.8994 0.200195 71.7998 -31.7998 78.2002 -78.2998
|
1720 |
-
zM448 360v-336c0 -30.9004 -25.0996 -56 -56 -56h-336c-30.9004 0 -56 25.0996 -56 56v336c0 30.9004 25.0996 56 56 56h336c30.9004 0 56 -25.0996 56 -56zM330 134.8c0 0 -0.0996094 34 -0.0996094 217.3h-29v-40.2998c-0.800781 -0.299805 -1.2002 0.5 -1.60059 1.2002
|
1721 |
-
c-9.59961 20.7002 -35.8994 46.2998 -76 46c-51.8994 -0.400391 -87.2002 -31.2002 -100.6 -77.7998c-4.2998 -14.9004 -5.7998 -30.1006 -5.5 -45.6006c1.7002 -77.8994 45.0996 -117.8 112.399 -115.199c28.9004 1.09961 54.5 17 69 45.1992
|
1722 |
-
c0.5 1 1.10059 1.90039 1.7002 2.90039c0.200195 -0.0996094 0.400391 -0.0996094 0.600586 -0.200195c0.299805 -3.7998 0.199219 -30.7002 0.0996094 -34.5c-0.200195 -14.7998 -2 -29.5 -7.2002 -43.5c-7.7998 -21 -22.2998 -34.7002 -44.5 -39.5
|
1723 |
-
c-17.7998 -3.89941 -35.5996 -3.7998 -53.2002 1.2002c-21.5 6.09961 -36.5 19 -41.0996 41.7998c-0.299805 1.60059 -1.2998 1.2998 -2.2998 1.2998h-26.7998c0.799805 -10.5996 3.19922 -20.2998 8.5 -29.1992c24.1992 -40.5 82.6992 -48.5 128.199 -37.4004
|
1724 |
-
c49.9004 12.2998 67.3008 54.9004 67.4004 106.3z" />
|
1725 |
-
<glyph glyph-name="goodreads-g" unicode="" horiz-adv-x="384"
|
1726 |
-
d="M42.5996 44.7002h2.80078c12.6992 0 25.5 0 38.1992 -0.100586c1.60059 0 3.10059 0.400391 3.60059 -2.09961c7.09961 -34.9004 30 -54.5996 62.8994 -63.9004c26.9004 -7.59961 54.1006 -7.7998 81.3008 -1.7998c33.7998 7.40039 56 28.2998 68 60.4004
|
1727 |
-
c8 21.5 10.6992 43.7998 11 66.5c0.0996094 5.7998 0.299805 47 -0.200195 52.7998l-0.900391 0.299805c-0.799805 -1.5 -1.7002 -2.89941 -2.5 -4.39941c-22.0996 -43.1006 -61.2998 -67.4004 -105.399 -69.1006c-103 -4 -169.4 57 -172 176.2
|
1728 |
-
c-0.5 23.7002 1.7998 46.9004 8.2998 69.7002c20.5996 71.0996 74.5996 118.2 153.899 118.8c61.3008 0.400391 101.5 -38.7002 116.2 -70.2998c0.5 -1.10059 1.2998 -2.2998 2.40039 -1.90039v61.6006h44.2998c0 -280.301 0.0996094 -332.2 0.0996094 -332.2
|
1729 |
-
c-0.0996094 -78.5 -26.6992 -143.7 -103 -162.2c-69.5 -16.9004 -159 -4.7998 -196 57.2002c-8 13.5 -11.7998 28.2998 -13 44.5zM188.9 411.5c-52.5 0.5 -108.5 -40.7002 -115 -133.8c-4.10059 -59 14.7998 -122.2 71.5 -148.601
|
1730 |
-
c27.5996 -12.8994 74.2998 -15 108.3 8.7002c47.5996 33.2002 62.7002 97 54.7998 154c-9.7002 71.1006 -47.7998 120 -119.6 119.7z" />
|
1731 |
-
<glyph glyph-name="google-drive" unicode="" horiz-adv-x="512"
|
1732 |
-
d="M339 133.1l-163.6 282.9h161.199l163.601 -282.9h-161.2zM201.5 109.5h310.5l-80.5996 -141.5h-310.5zM154.1 380.6l82.9004 -141.399l-156.4 -271.2l-80.5996 141.5z" />
|
1733 |
-
<glyph glyph-name="google-play" unicode="" horiz-adv-x="512"
|
1734 |
-
d="M325.3 213.7l-220.7 221.3l280.801 -161.2zM47 448l256.6 -255.9l-256.6 -256c-13 6.80078 -21.7002 19.2002 -21.7002 35.3008v441.3c0 16.0996 8.7002 28.5 21.7002 35.2998zM472.2 222.4c19.2002 -14.3008 19.2002 -46.5 1.2002 -60.8008l-60.1006 -34.0996
|
1735 |
-
l-65.7002 64.5l65.7002 64.5zM104.6 -51l220.7 221.3l60.1006 -60.0996z" />
|
1736 |
-
<glyph glyph-name="gripfire" unicode="" horiz-adv-x="384"
|
1737 |
-
d="M112.5 146.6c0 -26.8994 16.5996 -47.1992 32.5996 -69.5c22.5 -30.1992 44.2002 -56.8994 44.2002 -86.5c-0.0996094 -14.5 -4.39941 -29.6992 -17.5 -46.3994c0 5.2998 4.7998 12.2002 4.7998 22.2998c0 15.2002 -13 39.9004 -78.0996 86.5996
|
1738 |
-
c-34.2998 29.1006 -66.5 58.5 -66.5 108.301c0 114.699 147.1 176.5 147.1 268.6c0 3.2998 -0.199219 6.7002 -0.599609 10c5.09961 -2.40039 39.0996 -43.2998 39.0996 -90.4004c0 -80.5 -105.1 -129.199 -105.1 -203zM317.8 185.6
|
1739 |
-
c1.5 -8.39941 2.2002 -16.5996 2.2002 -24.5996c0 -51.7998 -29.4004 -97.5 -67.2998 -136.8c-1 -1 -2.2002 -2.40039 -3.2002 -2.40039c-3.59961 0 -35.5 41.6006 -35.5 53.2002c0 0 41.7998 55.7002 41.7998 96.9004c0 10.7998 -2.7002 21.6992 -9.09961 33.3994
|
1740 |
-
c-1.5 -32.2998 -55.7002 -87.7002 -58.1006 -87.7002c-2.69922 0 -17.8994 22 -17.8994 42.1006c0 5.2998 1 10.7002 3.2002 15.7998c2.39941 5.5 56.5996 72 56.5996 116.7c0 6.2002 -1 12 -3.40039 17.0996l-4 7.2002c16.7002 -6.5 82.6006 -64.0996 94.7002 -130.9z" />
|
1741 |
-
<glyph glyph-name="grunt" unicode="" horiz-adv-x="384"
|
1742 |
-
d="M61.2998 258.7c0.5 4.89941 2.7998 10 7 12h0.100586c-4.60059 1.7002 -9.2002 3.09961 -13.5 4.09961c42.1992 10.2002 73.3994 -20.5996 83.0996 -31.7998c16.5996 -19.2002 35.5 -8.7998 35.5 -8.7998c0.299805 -11.1006 -10.2998 -19 -21.0996 -19.5
|
1743 |
-
c1.19922 -15.4004 -13.9004 -32.5 -13.9004 -32.5s5.59961 15 2.7002 25.2998c-0.900391 3.2002 -2 6.09961 -3 8.5c-19.2998 -17.2002 -48 -1.5 -54.9004 6.09961c-9.59961 10.6006 -12.3994 23.8008 -12.7998 34.1006c-1.7998 -3.7998 -3.2998 -9.10059 -4 -16.6006
|
1744 |
-
c0 0 -6.2998 9.10059 -5.2002 19.1006zM89.5996 260.5c-2.89941 -9.09961 -3.39941 -27.7002 6.90039 -35.2998c16.2998 -12.1006 32.2998 -5 38 -1.7002c-7.5 11.2998 -25.4004 26 -44.9004 37zM231.7 214.7c-10.7998 0.399414 -21.4004 8.39941 -21.2002 19.2998
|
1745 |
-
c0 0 18.7998 -10.4004 35.5 8.7998c9.7002 11.2002 40.7998 42 83.0996 31.7998c-4.2998 -0.899414 -8.89941 -2.2998 -13.5 -4.09961h0.100586c4.09961 -1.7998 6.39941 -6.7998 7 -11.7998c1.2002 -10 -5.2002 -19.1006 -5.2002 -19.1006
|
1746 |
-
c-0.599609 7.5 -2.2002 12.8008 -4 16.6006c-0.5 -10.2998 -3.2002 -23.5 -12.7998 -34.1006c-6.7998 -7.59961 -35.5 -23.3994 -54.7998 -6.09961c-1 -2.5 -2.10059 -5.2998 -3 -8.5c-2.90039 -10.2998 2.69922 -25.2998 2.69922 -25.2998s-15.0996 17 -13.8994 32.5z
|
1747 |
-
M294.4 260.5c-19.5 -11 -37.4004 -25.5996 -44.9004 -37c5.7002 -3.40039 21.5996 -10.5 37.9004 1.59961c10.3994 7.7002 10 26.3008 7 35.4004zM160 29.5c4.09961 0 7 -0.900391 8.7998 -2.7002c2.2002 -2.2998 1.5 -5.2998 0.900391 -6.7998
|
1748 |
-
c-1.10059 -2.7002 -5.5 -11.5996 -13 -19.7998c-2.7002 -2.90039 -6.60059 -4.60059 -11 -4.60059c-4.2998 0 -8.7002 1.60059 -11.7998 4.30078c-2.30078 2.09961 -10.2002 9.5 -13.7002 18.5996c-1.2998 3.40039 -1 6.09961 0.899414 8.09961
|
1749 |
-
c1.30078 1.30078 4 2.90039 9.5 2.90039h29.4004zM349.2 130.7c0 0 29.2998 -22.5 21.0996 -70.9004c-5.2998 -29.5 -23.2002 -46 -47 -54.7002c-8.7998 -19.0996 -29.3994 -45.6992 -67.2998 -49.5996c-14.5 -11.7998 -34.5 -19.5 -63.5996 -19.5h-0.200195
|
1750 |
-
c-29.2002 0 -49.2002 7.7002 -63.6006 19.5c-37.8994 3.90039 -58.5 30.5 -67.2998 49.5996c-23.7998 8.60059 -41.7998 25.2002 -47 54.7002c-8.59961 48.2002 20.6006 70.7998 20.6006 70.7998c2.39941 -17.8994 13 -33.8994 24.5996 -43.7998
|
1751 |
-
c3.09961 22.7002 3.7002 55.5 3.7002 62.4004c0 14.7002 -9.5 24.5 -12.2002 26.0996c-2.5 1.5 -5.2998 3 -8.2998 4.60059c-18 9.59961 -40.4004 21.5996 -40.4004 43.6992c0 16.1006 9.2998 23.2002 15.4004 27.8008c0.799805 0.599609 1.5 1.19922 2.2002 1.69922
|
1752 |
-
c2.09961 1.7002 3.69922 3 4.2998 4.40039c4.39941 9.7998 3.59961 34.2002 1.7002 37.5996c-0.600586 0.700195 -16.8008 21 -11.8008 39.2002c2 7.40039 6.90039 13.2998 14.1006 17c5.2998 2.7002 11.7998 4.2002 19.5 4.5c0.0996094 2 0.5 4 0.899414 5.90039
|
1753 |
-
c0.5 2.59961 1.10059 5.2998 0.900391 8.09961c-0.400391 4.7002 -0.799805 9.10059 -2.2002 11.2998c-8.39941 13.3008 -28.7998 17.6006 -29 17.6006l-12.2998 2.39941l8.09961 9.40039c0.200195 0.200195 17.3008 17.5 46.3008 17.5c7.89941 0 16 -1.2998 23.8994 -3.5
|
1754 |
-
c24.2998 -7.7998 42.9004 -30.5 49.4004 -39.2998c2 0.599609 3.89941 1.2002 5.89941 1.7002c-1 26.3994 20.7002 47.3994 28.2002 48.2998c0.5 -4.5 -0.399414 -22.2002 7.2002 -27.6006c2.2002 14.4004 9.59961 30.3008 39.0996 40.7002
|
1755 |
-
c-6.2998 -16.7002 -0.799805 -30.7002 1.80078 -37.2002c20.0996 18.2002 33.6992 15.2002 33.6992 15.2002s-13.1992 -22.7002 -9 -38.5c3.30078 -0.799805 6.5 -1.7002 9.60059 -2.7002c6.5 8.80078 25.2002 31.5 49.3994 39.3008
|
1756 |
-
c8.10059 2.59961 16.2002 3.89941 24.1006 3.89941c29 0 46.2002 -17.2998 46.2998 -17.5l8.09961 -9.5l-12.2998 -2.39941c-0.200195 0 -20.5996 -4.30078 -29 -17.6006c-1.39941 -2.2998 -1.7998 -6.59961 -2.2002 -11.2998
|
1757 |
-
c-0.199219 -2.7998 0.300781 -5.5 0.900391 -8.09961c0.400391 -2 0.799805 -3.90039 0.900391 -5.90039c7.59961 -0.299805 14.1992 -1.7998 19.5 -4.5c7.19922 -3.7002 12.0996 -9.59961 14.0996 -17c4.90039 -18.2998 -11.2002 -38.5996 -11.7998 -39.2002
|
1758 |
-
c-1.90039 -3.39941 -2.7002 -27.7998 1.7002 -37.5996c0.599609 -1.40039 2.19922 -2.7002 4.2998 -4.40039c0.700195 -0.599609 1.39941 -1.09961 2.2002 -1.7002c6.09961 -4.59961 15.3994 -11.5996 15.3994 -27.7998c0 -22.0996 -22.3994 -34.0996 -40.3994 -43.7002
|
1759 |
-
c-2.90039 -1.59961 -5.80078 -3.09961 -8.30078 -4.59961c-2.69922 -1.59961 -12.1992 -11.4004 -12.1992 -26.0996c0 -6.90039 0.599609 -39.7002 3.69922 -62.4004c11.6006 9.90039 22.2002 25.7998 24.6006 43.7002zM305.7 410.3
|
1760 |
-
c-17.7998 -5.7002 -31.6006 -23.0996 -37.7002 -32.2002c1.59961 -0.699219 3.09961 -1.39941 4.7002 -2.19922c2.59961 -1.2002 4.89941 -2.40039 7.09961 -3.7002c2.7002 5.5 8.40039 13.7002 20.7002 22.3994c8.2002 5.80078 18.2002 8.90039 28.7002 8.90039
|
1761 |
-
c3.59961 0 6.7998 -0.400391 9.2002 -0.799805c3.2998 2.09961 6.59961 3.89941 9.69922 5.2998c-4.7998 2 -13.6992 5 -24.6992 5c-6.10059 0 -12.1006 -0.900391 -17.7002 -2.7002zM326.7 392.1c-7.40039 -0.299805 -14 -2.69922 -19.6006 -7
|
1762 |
-
c-8 -6.39941 -12.0996 -17.6992 -13.5 -22.5c4.90039 -4.19922 8.2002 -8.09961 10.5 -11.1992c3.40039 1 7.30078 1.89941 11.5 2.69922c3.30078 4.5 3.90039 10.6006 4.40039 17c0.5 6.2002 1.09961 12.6006 4.40039 17.8008c0.699219 1.09961 1.5 2.19922 2.2998 3.19922
|
1763 |
-
zM45.5996 402.7c2.40039 0.399414 5.60059 0.799805 9 0.899414c10.6006 0 20.5 -3.09961 28.8008 -8.89941c12.3994 -8.7002 18.0996 -17 20.6992 -22.4004c2.2002 1.2002 4.60059 2.5 7.10059 3.7002c1.59961 0.799805 3.2002 1.5 4.7998 2.2002
|
1764 |
-
c-6.09961 8.89941 -19.9004 26.2998 -37.7002 32.0996c-5.7002 1.7998 -11.5996 2.7002 -17.7002 2.7002c-11 0 -19.8994 -3 -24.6992 -5c3.09961 -1.2998 6.39941 -3.09961 9.69922 -5.2998zM90.2998 362.6c-1.39941 4.80078 -5.5 16.1006 -13.5 22.4004
|
1765 |
-
c-5.5 4.40039 -12.0996 6.7002 -19.5 7c0.799805 -1 1.60059 -2.09961 2.2998 -3.2002c3.30078 -5.2002 3.90039 -11.5996 4.40039 -17.7998c0.5 -6.40039 1 -12.5 4.2998 -16.9004c4.2002 -0.799805 8.10059 -1.7998 11.5 -2.69922c2.2002 3.19922 5.60059 7 10.5 11.1992z
|
1766 |
-
M58.0996 188.1c8.7002 -5 18.1006 -16.7998 19 -34.1992c0.900391 -14.7002 -0.899414 -49.9004 -3.39941 -75.9004c12.5 -4.7998 26.7002 -6.40039 39.7002 -6.7998c2 4.09961 3.89941 8.5 5.5 13.0996c0.699219 1.90039 19.5996 51 26.3994 62.2002
|
1767 |
-
c-5.39941 -39 -17.5 -73.7002 -23.5 -89.5996c3.40039 0.399414 7.2998 0.699219 11.7002 0.699219h117c4.40039 0 8.2002 -0.199219 11.7002 -0.699219c-6 15.8994 -18 50.5996 -23.5 89.5996c6.7998 -11.0996 25.7002 -60.2002 26.3994 -62.2002
|
1768 |
-
c1.60059 -4.59961 3.5 -9 5.5 -13.0996c13 0.399414 27.3008 2 39.7002 6.7998c-2.5 26 -4.2998 61.2998 -3.39941 75.9004c1.09961 17.5 10.3994 29.1992 19.0996 34.1992c2.7002 1.5 5.5 3.10059 8.40039 4.60059c14.7998 8 30.1992 16.2998 30.1992 30.5
|
1769 |
-
c0 11.0996 -4.2998 14.5 -8.89941 18.2002l-0.5 0.399414c-0.700195 0.600586 -1.5 1.2002 -2.2002 1.7998c0.900391 -7.19922 1.90039 -13.2998 2.7002 -14.8994c0 0 -12.1006 15 -15.7002 44.2998c-1.40039 11.5 1.09961 34.2002 5.09961 43
|
1770 |
-
c-0.199219 -4.90039 0 -9.7998 0.300781 -14.4004c0.399414 0.900391 0.799805 1.60059 1.2998 2.2002c3.2998 4 11.8994 17.5 9.39941 26.6006c-1 3.39941 -3.19922 6 -6.69922 7.7998c-3.80078 1.89941 -8.80078 2.89941 -15.1006 2.89941
|
1771 |
-
c-12.2998 0 -25.8994 -3.7998 -32.8994 -6c-25.1006 -7.89941 -55.4004 -30.8994 -64.1006 -37.6992c-0.200195 -0.200195 -0.399414 -0.300781 -0.399414 -0.300781l-5.60059 -3.89941l3.5 5.7998c0.200195 0.299805 19.1006 31.4004 53.1006 46.5
|
1772 |
-
c-2 2.90039 -7.40039 8.2002 -21.6006 15.0996c-21.3994 10.5 -46.3994 15.8008 -74.2998 15.8008c-27.7998 0 -52.9004 -5.30078 -74.2998 -15.8008c-14.2002 -7 -19.6006 -12.1992 -21.6006 -15.0996c34.1006 -15.0996 53 -46.2002 53.2002 -46.5l3.5 -5.7998
|
1773 |
-
l-5.59961 3.89941s-0.200195 0.100586 -0.400391 0.300781c-8.7002 6.7998 -39 29.6992 -64.0996 37.6992c-7 2.30078 -20.6006 6 -32.9004 6c-6.2998 0 -11.2998 -1 -15.0996 -2.89941c-3.60059 -1.7998 -5.7998 -4.2998 -6.7002 -7.7998
|
1774 |
-
c-2.40039 -9.10059 6.2002 -22.6006 9.40039 -26.6006c0.5 -0.599609 0.899414 -1.39941 1.2998 -2.2002c0.299805 4.60059 0.5 9.5 0.299805 14.4004c4 -8.7002 6.5 -31.5 5.09961 -43c-3.59961 -29.2998 -15.6992 -44.2998 -15.6992 -44.2998
|
1775 |
-
c0.799805 1.59961 1.7998 7.7002 2.69922 14.8994c-0.799805 -0.599609 -1.5 -1.19922 -2.19922 -1.7998l-0.5 -0.399414c-4.60059 -3.60059 -8.90039 -7.10059 -8.90039 -18.2002c0 -14.2002 15.2998 -22.5 30.2002 -30.5c2.7998 -1.5 5.7002 -3 8.39941 -4.60059z
|
1776 |
-
M34.7998 43.4004c11.9004 -19.7002 35.5 -29.4004 58.2002 -29.5c-4.5 13.2998 -3.09961 24 4.09961 31.7998l1.40039 1.39941c1.7998 2.40039 4.2998 5.80078 7 10c-27.2002 1.10059 -63.5 11 -74.4004 45.4004c-5 -5 -8.39941 -39.0996 3.7002 -59.0996zM80.5 -0.0996094
|
1777 |
-
c6.5 -9.5 16.5 -19.6006 30.9004 -25.5c-4.90039 7.19922 -8.80078 15.0996 -12.3008 23.0996c-6.39941 0.5 -12.5996 1.2998 -18.5996 2.40039zM192 -50.2002c60.5996 0.100586 78.2998 45.9004 84.9004 64.7002c3.59961 10.5 3.2998 18.2998 -0.900391 23.0996
|
1778 |
-
c-2.7998 3.30078 -9.5 7.2002 -24.5996 7.2002h-118.801c-15.0996 0 -21.6992 -3.89941 -24.5996 -7.2002c-4.2998 -4.89941 -4.59961 -12.5996 -0.900391 -23.0996c6.60059 -18.9004 24.3008 -64.5996 84.9004 -64.7002zM272.6 -25.5996
|
1779 |
-
c14.4004 5.89941 24.4004 16 30.9004 25.5c-6 -1.10059 -12.2002 -1.90039 -18.5996 -2.40039c-3.5 -8 -7.40039 -15.9004 -12.3008 -23.0996zM349.2 43.4004c12.2002 19.8994 8.7998 54 3.7998 59c-10.9004 -34.4004 -47.2002 -44.2002 -74.4004 -45.4004
|
1780 |
-
c2.7002 -4.2002 5.2002 -7.59961 7 -10c0.5 -0.5 1 -1 1.40039 -1.5c7.2002 -7.7002 8.59961 -18.5 4.09961 -31.7998c22.5 0.399414 46.1006 10 58.1006 29.7002zM191.9 260.3c-12.7002 0.200195 -27.2002 17.7998 -27.2002 17.7998
|
1781 |
-
c9.89941 -6 18.7998 -8.09961 27.2998 -8.2998c8.5 0.200195 17.4004 2.2998 27.2998 8.2998c0 0 -14.5 -17.6992 -27.2002 -17.7998h-0.199219zM253.6 29.5996c5.40039 -0.0996094 8.10059 -1.69922 9.40039 -3c1.90039 -1.89941 2.2002 -4.59961 0.900391 -7.89941
|
1782 |
-
c-3.5 -8.90039 -11.4004 -16.1006 -13.7002 -18.1006c-3.10059 -2.59961 -7.40039 -4.19922 -11.7998 -4.19922c-4.40039 0 -8.30078 1.59961 -11 4.5c-7.5 8 -12 16.6992 -13 19.2998c-0.600586 1.5 -1.30078 4.39941 0.899414 6.7002
|
1783 |
-
c1.7002 1.7998 4.7002 2.69922 8.90039 2.69922h29.3994z" />
|
1784 |
-
<glyph glyph-name="gulp" unicode="" horiz-adv-x="256"
|
1785 |
-
d="M209.8 56.9004l-14.0996 -24.6006l-4.60059 -80.2002c0 -8.89941 -28.2998 -16.0996 -63.0996 -16.0996s-63.0996 7.2002 -63.0996 16.0996l-5.80078 79.4004l-14.8994 25.4004c41.2002 -17.3008 126 -16.7002 165.6 0zM13.7998 310.2
|
1786 |
-
c30.7002 -17 197.8 -16.9004 228.3 0.200195l-14.7998 -136.801c-4.7998 -4.19922 -11.5996 -10.1992 -16.5996 -14.0996c-1.60059 -1.2002 -6 -4.7002 -8 -4.7002c-1.2998 0 -2.2002 0.5 -2.2002 1.7998c0.0996094 1 3.40039 4.5 5 6.40039
|
1787 |
-
c4.90039 5.7002 13.7998 16 13.7998 23.4004c0 7 -10.7002 14.0996 -25.7002 0.199219c-1.59961 -1.5 -3.09961 -3 -4.5 -4.5c0.400391 1.10059 1.10059 5.10059 1.10059 6.2002c0 2.7998 -1.40039 4 -4.2002 4c-1 0 -1.90039 -0.599609 -2.7002 -1.59961
|
1788 |
-
c-2.59961 -3.10059 -3.89941 -7.5 -5.2998 -11.2998c-0.5 -1.80078 -1.09961 -3.60059 -1.7002 -5.5c-0.399414 -0.200195 -0.700195 -0.300781 -0.899414 -0.600586c-3.80078 -3.89941 -17.7002 -17 -23.1006 -17c-2.2998 0 -1.59961 3.60059 -1 5.7998
|
1789 |
-
c1 3.40039 6.7998 17.7002 8.7002 22.3008c4.59961 11.0996 8 19.7998 13.2002 31.8994c3.89941 9.2002 3.7998 8.60059 4.5 10.5c0.700195 2.10059 0.700195 4.90039 -1 6.2002c-1 0.700195 -2 1.09961 -3.2002 1.09961c-2.40039 0 -4.7998 -1.39941 -6.09961 -4.69922
|
1790 |
-
c-25.5 -64.4004 -25.2002 -63.3008 -26.4004 -68.2002c-2 -1.7002 -4.40039 -3.40039 -6.7998 -4.5c-3.10059 -1.40039 -6.7998 -2.2002 -6.7998 1.2002c0 3.69922 1.39941 8.19922 2.69922 11.6992c2.2002 6.10059 4.90039 11.1006 6.90039 16.7002
|
1791 |
-
c0.900391 2.40039 1.2998 4.7002 -0.400391 6.90039c-0.799805 1 -1.89941 1.5 -3.19922 1.5c-2.60059 0 -4.10059 -2.60059 -5.2002 -5.10059c-0.700195 -1.5 -1.2998 -3.09961 -1.7998 -4.7998c-1.2002 -4 -3.60059 -8.7002 -5.60059 -12.2998
|
1792 |
-
c-2.7998 -5 -6.5 -10.0996 -11.0996 -13.5c-2.2002 -1.59961 -4.5 -2.40039 -6.90039 -2.40039c-3.5 0 -2.39941 5.7002 -1.5 9c2.2002 7.80078 5.5 13.3008 9.2998 20.8008c1.30078 2.69922 2.30078 5.39941 -0.299805 7.19922c-0.5 0.300781 -1 0.5 -1.59961 0.700195
|
1793 |
-
c-3.40039 0.900391 -6 -1.09961 -7.60059 -4.5c-3.09961 -6.2998 -5.39941 -11.7002 -7.09961 -16.2002c-3.2998 -8.89941 -6.90039 -18.2998 -4.59961 -23.7998c1.5 -3.7002 4.5 -5.09961 8.59961 -5.09961c9.7998 0 17.7998 6.7002 22.4004 14.8994
|
1794 |
-
c-4.30078 -19.7998 8.19922 -17.2998 20 -8.09961c0.0996094 -0.400391 0.0996094 -0.799805 0.199219 -1.2002c1.5 -6.7002 8.7002 -6.7002 14.5 -4.09961c3.5 1.59961 8.2002 4.5 14.4004 10.5c0.200195 0.299805 0.799805 1.39941 -0.799805 -2.2998
|
1795 |
-
c-7.2002 -16.2002 -13.5 -28.2002 -15 -34.3008c-0.200195 -0.899414 -0.299805 -1.7998 -0.299805 -2.69922c0 -1.80078 0.399414 -3.10059 1.2998 -3.7002c1.59961 -1.2002 4.2002 -1.2998 6.09961 -0.299805c1.7998 1 3.10059 2.59961 4 4.5
|
1796 |
-
c1 2.19922 0.200195 0.699219 5.2002 14c5 13.3994 2.90039 7.7998 9.09961 22c1.90039 4.2998 4.2002 9.5 8.5 15.5c2.5 3.39941 5.5 7 8.7002 9.69922c5.7002 4.7002 11.7002 5.40039 11.7002 2.5c0 -2.19922 -3.2998 -6.39941 -4.7002 -8.09961
|
1797 |
-
c-5.2998 -6.7002 -14.3994 -16.2998 -14.3994 -21.5c0 -9.5 12 -8 17.3994 -5.7002c7.2998 3.2002 13.9004 9.60059 19.6006 14.7998l-10.9004 -94.5996c-1.90039 -4.90039 -39.0996 -17.0996 -88.2002 -17.0996c-49 0 -86.2002 12.0996 -88.2002 17.0996l-7.59961 79.5996
|
1798 |
-
c2.09961 -1.5 4.2998 -2.39941 7.7002 -2.39941c7.39941 0 16.0996 6.7002 21.5 11.7998c2.2998 2.2002 4.39941 4.40039 6.39941 6.59961c-1 -3 -7.09961 -22 -7.2998 -25.1992c-0.0996094 -1 -0.200195 -4.90039 0.799805 -6.30078
|
1799 |
-
c0.5 -0.799805 1.40039 -1.19922 2.60059 -1.19922c2.89941 0 5.59961 4.69922 6.2998 7.5c0 0 1.7998 6.2998 7.59961 25.7998c6.30078 21.0996 10 24.5 10 34.7002c0 5.59961 -7.2998 6.7998 -9.89941 0l-5.2002 -15.5c-2.2002 -4.5 -8 -11.5 -12.5 -16
|
1800 |
-
c-3.5 -3.5 -10.7998 -10.1006 -15.7998 -10.1006c-2.40039 0 -3.90039 1.40039 -4.90039 3.60059c-2.2998 5.2998 -0.899414 14.2998 0.600586 19.8994c2.59961 9.7002 6.89941 19.4004 12 28.2002c4.19922 7.2998 10.1992 15.7002 17.0996 20.7002
|
1801 |
-
c6.59961 4.7998 12.7998 4.5 16.9004 -2.7998c1.5 -2.7002 3.7998 -7.30078 6.7998 -7.30078c2.5 0 5.7002 2.60059 4.5 9.10059c-0.5 2.5 -4.90039 8.7998 -10.1006 11.7998c-6 3.59961 -12.3994 3.59961 -18.6992 0.900391
|
1802 |
-
c-19.2002 -8.2002 -34.1006 -35.2002 -40 -55.2002zM243.5 318.7c0 -21 -231.2 -21 -231.2 0c0 8.7998 51.7998 15.8994 115.601 15.8994c9 0 17.7998 -0.0996094 26.2998 -0.399414l12.5996 48.7002l61.2998 64.5c1.40039 1.39941 5.80078 0.199219 9.90039 -3.5
|
1803 |
-
c4.09961 -3.7002 6.59961 -7.90039 5.2998 -9.30078l-0.0996094 -0.0996094l-57.2998 -60.5l-10 -40.7002c39.8994 -2.59961 67.5996 -8.09961 67.5996 -14.5996zM174.1 314.1c0 0.800781 -0.899414 1.5 -2.5 2.10059l-0.199219 -0.799805
|
1804 |
-
c0 -1.30078 -5 -2.40039 -11.1006 -2.40039c-6.09961 0 -11.0996 1.09961 -11.0996 2.40039c0 0.0996094 0 0.199219 0.0996094 0.299805l0.200195 0.700195c-1.7998 -0.600586 -3 -1.40039 -3 -2.30078c0 -2.09961 6.2002 -3.69922 13.7002 -3.69922
|
1805 |
-
c7.7002 -0.100586 13.8994 1.59961 13.8994 3.69922z" />
|
1806 |
-
<glyph glyph-name="hacker-news-square" unicode=""
|
1807 |
-
d="M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM21.2002 218.8h-0.200195c0.0996094 0.100586 0.200195 0.299805 0.299805 0.400391c0 -0.100586 0 -0.299805 -0.0996094 -0.400391z
|
1808 |
-
M239.2 164.9l80.7998 155.1h-34.7998c-54.7998 -101.2 -48.2998 -98.5996 -60.6006 -125.6c-10.0996 24.3994 -6.7998 27.2998 -59.2998 125.6h-37.2998l79.7998 -153.3v-102.7h31.4004v100.9z" />
|
1809 |
-
<glyph glyph-name="hire-a-helper" unicode="" horiz-adv-x="512"
|
1810 |
-
d="M443.1 448c3.90039 -36.4004 32.5 -65.7998 68.9004 -71.7002v-370.5c-35.4004 -4 -64.9004 -33.3994 -67.9004 -69.7998h-372.199c-5.90039 36.4004 -34.5 63.9004 -71.9004 68.7998v371.5c37.4004 3.90039 67.9004 34.4004 71.9004 71.7002h371.199zM406.1 43.0996
|
1811 |
-
c7.80078 0 5.80078 10.8008 0 10.8008c-10.2998 3.39941 -13.5 3.59961 -21.6992 13.7998c-7.80078 12.8994 -7.90039 44.3994 -7.90039 127.8v101.2c0 22.0996 12.2002 28.2998 28.5996 32.3994c8.90039 2.2002 3.90039 11.8008 -1 11.8008
|
1812 |
-
c-36.5 0 -20.5996 -2 -57.0996 -2c-32.7002 0 -16.5 2 -49.2002 2c-3.2998 0 -8.5 -8.30078 -1 -10.8008c4.90039 -1.59961 27.6006 -3.69922 27.6006 -39.2998c0 -45.5996 0.199219 -55.7998 -1 -68.7998c0 -1.2998 -2.30078 -12.7998 -12.8008 -12.7998h-109.199
|
1813 |
-
c-10.5 0 -12.8008 11.5 -12.8008 12.7998c-1.19922 13 -1 23.2002 -1 68.7998c0 35.6006 22.7002 37.7002 27.6006 39.2998c7.5 2.5 2.2998 10.8008 -1 10.8008c-32.7002 0 -16.5 -2 -49.2002 -2c-36.5 0 -20.5996 2 -57.0996 2c-5 0 -9.80078 -9.60059 -1 -11.8008
|
1814 |
-
c16.3994 -4.09961 28.5996 -10.1992 28.5996 -32.3994v-101.2c0 -83.4004 -0.200195 -114.9 -7.90039 -127.8c-8.19922 -10.2998 -11.5 -10.4004 -21.6992 -13.7998c-5.80078 0 -7.90039 -10.8008 0 -10.8008c36.2998 0 18.7998 2 55.0996 2c35.7998 0 21 -2 56.0996 -2
|
1815 |
-
c6 0 4.90039 8.2002 0 9.80078c-22.7998 7.59961 -22.8994 10.2998 -24.5996 12.7998c-10.4004 15.5996 -5.90039 83 -5.90039 113c0 5.2998 6.40039 12.7998 13.8008 12.7998h111.199c7.40039 0 13.8008 -7.5 13.8008 -12.7998c0 -30 4.5 -97.4004 -5.90039 -113
|
1816 |
-
c-1.7002 -2.60059 -1.7998 -5.2002 -24.5996 -12.7998c-4.90039 -1.60059 -5.90039 -9.80078 0 -9.80078c35.0996 0 20.2998 2 56.0996 2c36.2998 0 18.7998 -2 55.0996 -2z" />
|
1817 |
-
<glyph glyph-name="hotjar" unicode=""
|
1818 |
-
d="M414.9 286.5c30 -53 41.7998 -121.6 26.2998 -180.9c-14.7002 -56.6992 -68.2998 -120.3 -148.8 -145.6c54.5 76.9004 43.8994 200.1 -27.1006 215.5c54.2002 -93.9004 -53.7002 -180.3 -110.8 -93.9004c-2.5 -7.19922 -25.0996 -74.5 4.09961 -129.6
|
1819 |
-
c-61.0996 9.09961 -117.8 33.5 -144.6 93.4004c-35 78.1992 -2.7002 149.8 79 204.899c129.2 87.2998 28.0996 197.7 28.0996 197.7s219.101 -29 293.801 -161.5z" />
|
1820 |
-
<glyph glyph-name="hubspot" unicode="" horiz-adv-x="512"
|
1821 |
-
d="M267.4 236.4l-163.2 114.699c-7.90039 -4.69922 -17 -7.59961 -26.7998 -7.59961c-28.8008 0 -52.2002 23.4004 -52.2002 52.2998c0 28.7998 23.3994 52.2002 52.2002 52.2002c28.8994 0 52.3994 -23.4004 52.3994 -52.2002c0 -4.7998 -0.799805 -9.39941 -2 -13.7998
|
1822 |
-
c51.4004 -39.0996 141.3 -103.9 168.9 -124.8c13.0996 6.89941 27.5 11.5 42.7002 13.5996v61.2002c-17.5 7.40039 -28.2002 23.7998 -28.2002 42.9004c0 26.0996 20.5996 47.8994 46.7002 47.8994c26.0996 0 47 -21.7998 47 -47.8994
|
1823 |
-
c0 -19.1006 -10.7002 -35.5 -28.2002 -42.9004v-61.5996c62.5 -9.5 110.2 -63.5 110.2 -128.7c0 -71.9004 -58.1006 -130.2 -130 -130.2c-29.9004 0 -57.3008 10 -79.3008 26.9004l-50 -50.2002c1.30078 -3.90039 1.90039 -7.90039 1.90039 -12.1006
|
1824 |
-
c0 -10.6992 -4.2002 -20.8994 -11.7998 -28.5c-7.7002 -7.69922 -17.7998 -11.5996 -28.6006 -11.5996c-10.6992 0 -20.8994 4 -28.5 11.5996c-7.59961 7.60059 -11.7998 17.7002 -11.7998 28.5c0 10.8008 4.2002 21 11.7998 28.6006
|
1825 |
-
c7.60059 7.59961 17.7002 11.7998 28.5 11.7998c4.90039 0 9.60059 -0.900391 14 -2.5l49.5 49.7998c-16.2998 21.7002 -26 48.7002 -26 78c0 37.2998 15.7002 70.9004 40.8008 94.6006zM356.9 72.7998c38.0996 0 69 30.9004 69 69c0 38.1006 -30.9004 69 -69 69
|
1826 |
-
c-38.1006 0 -69 -30.8994 -69 -69c0 -38.0996 30.8994 -69 69 -69z" />
|
1827 |
-
<glyph glyph-name="itunes" unicode=""
|
1828 |
-
d="M223.6 367.7c94.5 0 171.2 -76.7002 171.2 -171.3c0 -94.5 -76.5996 -171.2 -171.2 -171.2c-94.5996 0 -171.1 76.7998 -171.1 171.3s76.5 171.2 171.1 171.2zM303 127.7c1.40039 6.2002 0.900391 -3 1 167.6c0 5.7002 -3.2998 9.10059 -9 8.7002
|
1829 |
-
c-1.7998 0 -14.0996 -2.40039 -115.1 -21.4004c-0.900391 0 -4.60059 -1 -6.7002 -2.69922c-2 -1.60059 -3.10059 -3.80078 -3.5 -6.40039c-1.7002 -6.7002 2.39941 -128 -2.60059 -133.7c-2.09961 -2.5 -4.69922 -3.2002 -7.69922 -3.7002
|
1830 |
-
c-17.7002 -3.19922 -29.6006 -4.7998 -38 -12.7998c-14.5 -14.2002 -7 -38.8994 14.3994 -42.8994c8 -1.40039 23.1006 0.599609 31.4004 5.19922c7.2998 3.80078 12.7998 10.6006 14.8994 19.6006c1.7002 7.7002 1.2002 2.39941 1.2002 118.5
|
1831 |
-
c0 5.7002 1.7002 7.2002 6.7002 8.2998c0 0 87.9004 16.4004 91.9004 17.0996c5.69922 1 8.39941 -0.5 8.39941 -6.09961c0 -78.7998 1 -77.2002 -2.2002 -80.7998c-2.09961 -2.5 -4.69922 -3.2002 -7.69922 -3.7002c-17.7002 -3.2002 -29.6006 -4.7998 -38 -12.7998
|
1832 |
-
c-10.6006 -10.4004 -10.4004 -26.7998 1.39941 -36.7998c9.7002 -7.80078 19.7998 -7.2002 31.9004 -5c13.7998 2.59961 24.0996 10.1992 27.2998 23.7998zM345.2 416c56.8994 0 102.8 -45.9004 102.8 -102.8v-242.4c0 -56.8994 -45.7998 -102.8 -102.8 -102.8h-242.4
|
1833 |
-
c-56.8994 0 -102.8 45.9004 -102.8 102.8v242.4c0 56.8994 45.9004 102.8 102.8 102.8h242.4zM223.6 4c106.301 0 192.5 86.2002 192.5 192.5s-86.1992 192.5 -192.5 192.5c-106.3 0 -192.5 -86.2002 -192.5 -192.5s86.2002 -192.5 192.5 -192.5z" />
|
1834 |
-
<glyph glyph-name="itunes-note" unicode="" horiz-adv-x="384"
|
1835 |
-
d="M381.9 59.7998c-6.40039 -27.3994 -27.2002 -42.7998 -55.1006 -48c-24.5 -4.5 -44.8994 -5.59961 -64.5 10.2002c-23.8994 20.0996 -24.2002 53.4004 -2.7002 74.4004c17 16.1992 40.9004 19.5 76.8008 25.7998c6 1.09961 11.1992 2.5 15.5996 7.39941
|
1836 |
-
c6.40039 7.2002 4.40039 4.10059 4.40039 163.2c0 11.2002 -5.5 14.2998 -17 12.2998c-8.2002 -1.39941 -185.7 -34.5996 -185.7 -34.5996c-10.2002 -2.2002 -13.4004 -5.2002 -13.4004 -16.7002c0 -234.7 1.10059 -223.899 -2.5 -239.5
|
1837 |
-
c-4.2002 -18.2002 -15.3994 -31.8994 -30.2002 -39.5c-16.7998 -9.2998 -47.1992 -13.3994 -63.3994 -10.3994c-43.2002 8.09961 -58.4004 58 -29.1006 86.5996c17 16.2002 40.9004 19.5 76.8008 25.7998c6 1.10059 11.1992 2.5 15.5996 7.40039
|
1838 |
-
c10.0996 11.5 1.7998 256.6 5.2002 270.2c0.799805 5.19922 3 9.59961 7.09961 12.8994c4.2002 3.5 11.7998 5.5 13.4004 5.5c204 38.2002 228.899 43.1006 232.399 43.1006c11.5 0.799805 18.1006 -6 18.1006 -17.6006c0.200195 -344.5 1.09961 -326 -1.7998 -338.5z" />
|
1839 |
-
<glyph glyph-name="jenkins" unicode="" horiz-adv-x="512"
|
1840 |
-
d="M487.1 23c1.5 -11.9004 -5.2998 -28.2998 -8.69922 -39.7002c-4.90039 -16.2998 -9.7002 -31.8994 -14.6006 -47.2002h-422c-0.700195 1.90039 -1.39941 4 -2.09961 6c-4.60059 14.2002 -12.6006 31.7002 -14.7002 45.8008
|
1841 |
-
c-3.09961 20.8994 16.5996 22.0996 29.2002 31.0996c19.5 14 34.7998 21.7998 55.8994 34.2998c6.30078 3.7998 25.1006 13.2002 27.3008 17.6006c4.2998 8.69922 -7.30078 20.8994 -10.4004 27.6992c-4.90039 10.7002 -7.5 19.8008 -8.2002 30.4004
|
1842 |
-
c-17.7002 2.7998 -31.0996 13.2998 -39.2002 25.2002c-13.3994 19.7002 -22.6992 56 -11.0996 83.7002c0.900391 2.19922 5.40039 6.5 6.09961 9.7998c1.40039 6.59961 -2.5 15.3994 -2.69922 22.3994c-1.2002 36 6.09961 67 30.2998 77.8008
|
1843 |
-
c9.7998 39.0996 45 52.1992 78.0996 71.5996c12.2998 7.2998 26 11.9004 40.1006 17.0996c50.5 18.7002 128.1 15.1006 170.1 -16.5996c17.7998 -13.5 46.2002 -41.9004 56.4004 -62.5c26.8994 -54.2998 25 -145.1 6.19922 -211.2
|
1844 |
-
c-2.5 -8.89941 -6.19922 -21.8994 -11.2998 -32.5996c-3.59961 -7.40039 -14.7002 -22.2998 -13.2998 -28.9004c1.40039 -6.7998 25.2998 -24.8994 30.4004 -29.8994c9.19922 -8.80078 26.7998 -20.7002 28.1992 -31.9004zM205.9 414.3
|
1845 |
-
c-33.2002 -9.39941 -75.7002 -33.5 -89.3008 -63.3994c10.6006 1.5 17.9004 6.7998 28.3008 7.5c3.89941 0.299805 9.09961 -1.60059 13.5996 -0.5c9 2.2998 16.5996 22.5 23.4004 30c6.59961 7.39941 14.5996 10.5 20 17.1992c3.5 1.7002 8.69922 1.60059 8.89941 6.80078
|
1846 |
-
c-1.5 1.69922 -3.09961 2.89941 -4.89941 2.39941zM101.1 320.7c-14.6992 -16.1006 -11.5996 -46.2998 -9.7998 -67.7998c26.5 16.6992 61.6006 -1.30078 61.2998 -29.6006c12.6006 0.299805 4.7002 15.7998 2.40039 25.7002c-7.5 32.5996 12.5996 67.9004 0.900391 97.5996
|
1847 |
-
c-22.7002 -1.7998 -41.3008 -11 -54.8008 -25.8994zM137.8 120.5c4.90039 -20 15.7002 -46 26.2998 -61.4004c13.6006 -19.3994 40.1006 -22.2998 68.7002 -24.1992c5.10059 11 23.9004 10.0996 36.2002 7.19922c-14.7002 5.80078 -28.4004 19.9004 -39.7002 32.4004
|
1848 |
-
c-13 14.2998 -26.0996 29.7002 -26.7998 48.4004c24.5 -34 44.7998 -63.8008 89.5 -78.8008c33.7998 -11.2998 73.2002 5.2002 99.2002 23.4004c10.7998 7.59961 17.2002 19.5996 24.8994 30.5996c28.7002 41.2002 42 100.101 39.1006 157.101
|
1849 |
-
c-1.2002 23.5 -1.10059 47 -9 62.7998c-8.2998 16.5996 -36.2002 31.2998 -52.5 16.4004c-3 16.0996 13.5996 26.0996 33.0996 20.2998c-13.8994 18 -28.5996 39.5996 -48.2998 50.7002c-34.4004 19.5 -92.7002 34.0996 -129.3 15.7998
|
1850 |
-
c-29.6006 -14.7002 -69.5 -39.1006 -83.1006 -70c12.7002 -29.7998 -3.7998 -57.1006 -4.7998 -87.4004c-0.599609 -16.0996 7.60059 -30.2002 8.2002 -47.7002c-4.40039 -7.19922 -17.7002 -8.09961 -26.9004 -7.59961c-3.09961 15.5 -8.5 32.9004 -24.5 34.7002
|
1851 |
-
c-22.5 2.39941 -39.0996 -16.2998 -40.0996 -35.7998c-1.2002 -23 17.7002 -61 44.4004 -58.4004c10.2998 1.09961 12.7998 11.4004 24.0996 11.2998c6.09961 -12.2002 -9.40039 -16 -11 -24.7002c-0.400391 -2.19922 1.2998 -11 2.2998 -15.0996zM359.8 -3.59961
|
1852 |
-
c-1.59961 -4.40039 0.299805 -10.4004 -0.599609 -16.5c14.8994 -4.2002 31.8994 -6.40039 50.7002 -7c3.69922 4.7998 4.89941 13.7998 4.5 22.7998c-0.600586 10.7998 -3.40039 33.0996 -10.1006 37c-14.0996 8.2002 -39 -16.5 -49.5996 -20.2998
|
1853 |
-
c1.2002 -3.40039 3.09961 -6 3.2002 -10.2002c6.2998 1.5 13.8994 0.5 19.2998 -2.2002c-6.2998 -0.700195 -13.2998 -0.599609 -17.4004 -3.59961zM342.6 16.4004c7.60059 5.5 14.3008 12 22.2002 17.0996c-18.2002 -1.59961 -41 -12.9004 -59 -4.90039
|
1854 |
-
c-0.0996094 -0.899414 -1.2998 -0.599609 -1.5 -1.39941c12.2998 -9.60059 21.5 -11.6006 38.2998 -10.7998zM330.5 -16.7998c26.9004 -8.40039 22.2002 36.7998 -2.7998 20.2002c-0.700195 -8.2002 1.2002 -10.8008 2.7998 -20.2002zM226 9.40039
|
1855 |
-
c0 6.19922 3.59961 12 2.7998 16.3994c-13.7998 2.40039 -31.8994 0.799805 -41.2998 7.2998c-9.59961 -9.69922 26.9004 -23 38.5 -23.6992zM57.7002 -49.0996v-0.100586h180.7c-0.800781 2.5 -1.5 4.90039 -2.2002 7.2002c-4.7998 15.2998 -7.5 26.7002 -8.7002 35.5
|
1856 |
-
c-19.2002 9.2002 -39.7002 18.5 -56.2002 30.2002c-3 2.2002 -23.3994 28.7002 -26.2002 27.5996c-36.8994 -14.5996 -71.3994 -39.7002 -102.199 -63.5c5.59961 -11.7998 10.5 -24.2002 14.7998 -36.8994zM298.3 -54.7998h-0.799805
|
1857 |
-
c0.299805 0.200195 0.5 0.399414 0.799805 0.5v-0.5zM305.8 -49.0996h9.60059c-1 1.5 -2.10059 2.89941 -3.2002 4.2998c-2.10059 -1.5 -4.2998 -2.90039 -6.40039 -4.2998zM320.9 -24.4004c0.0996094 3.60059 0.299805 7.2002 0.399414 10.6006
|
1858 |
-
c-6.5 3.2002 -14 5.5 -23.5 5.89941c6.5 3.30078 15.9004 3.2002 21.7998 7.10059c0.100586 1.5 0.100586 2.89941 0.200195 4.2998c-10.7998 0.900391 -14.7998 5.59961 -21.8994 9.5c-11.6006 6.40039 -29 13.2002 -43.9004 16.0996
|
1859 |
-
c-18.5 3.60059 -16.7998 -25.1992 -16 -42.3994c0.700195 -13.6006 7.7002 -28 10.7998 -37c1.5 -4.2002 1.7998 -8.7002 5.40039 -9.5c6.39941 -1.5 27.3994 6.89941 33.3994 10.2002c12.7002 6.89941 22.5 17.8994 33.3008 25.1992zM374.3 -49.0996l0.600586 12.5996
|
1860 |
-
c-11.2002 -0.700195 -17.5 10.2002 -25.4004 11c-6.90039 0.700195 -12.7002 -7.90039 -21.7002 -4.2002c-2 -2.2002 -3.89941 -4.7002 -6 -6.89941c3.2002 -3.90039 6.10059 -8.10059 8.90039 -12.5h17.3994c0.200195 3.19922 2.80078 5.7998 6.10059 5.7998
|
1861 |
-
s6 -2.60059 6.09961 -5.7998h14zM383 -49.0996h36.2998c-6.7002 10.1992 -20.0996 18.7998 -35.7002 11.5c-0.199219 -3.7002 -0.399414 -7.5 -0.599609 -11.5zM466.4 -12.0996c1.19922 6.19922 4.59961 19.5996 3.7998 25.0996
|
1862 |
-
c-1.40039 9.7998 -14.6006 17.0996 -21.4004 23.0996c-12.3994 11.1006 -20.2002 21 -33.2002 31.4004c-5.19922 -7.7998 -16.5 -13 -20.7998 -19.2998c30.7002 14.8994 36.2998 -55.7998 24.2002 -78.5c1.90039 -6.7998 8.2998 -9.40039 10.9004 -15.5
|
1863 |
-
c-0.700195 -1.10059 -1.30078 -2.2002 -1.90039 -3.2998h27.9004c0.199219 0 0.399414 0 0.599609 -0.100586c4.09961 13.1006 7.59961 25.9004 9.90039 37.1006zM222.2 317.5c5.39941 14.9004 27.2002 34.7002 45 32c7.7002 -1.2002 18 -8.2002 12.2002 -17.7002
|
1864 |
-
c-30.2002 7 -45.2002 -12.5996 -54.4004 -33.0996c-8.09961 2 -4.90039 13.0996 -2.7998 18.7998zM406.3 254.4c8.2002 3.59961 22.4004 0.699219 29.6006 5.2998c-4.2002 11.5 -10.3008 21.3994 -9.30078 37.7002c0.5 0 1 0 1.40039 -0.100586
|
1865 |
-
c6.7998 -14.2002 12.7002 -29.2002 21.4004 -41.7002c-5.7002 -13.5 -43.6006 -25.3994 -43.1006 -1.19922zM309.5 251.7c-6.7998 10.8994 -19 32.5 -14.5 45.2998c6.5 -11.9004 8.59961 -24.4004 17.7998 -33.2998c4.10059 -4 12.2002 -9 8.2002 -20.2002
|
1866 |
-
c-0.900391 -2.7002 -7.7998 -8.59961 -11.7002 -9.7002c-14.3994 -4.2998 -47.8994 -0.899414 -36.5996 17.1006c11.8994 -0.700195 27.8994 -7.80078 36.7998 0.799805zM336.8 181.7c3.7998 -6.60059 1.40039 -18.7002 12.1006 -20.6006
|
1867 |
-
c20.1992 -3.39941 43.5996 12.3008 58.0996 17.8008c9 15.1992 -0.799805 20.6992 -8.90039 30.5c-16.5996 20 -38.7998 44.7998 -38 74.6992c6.7002 4.90039 7.30078 -7.39941 8.2002 -9.69922c8.7002 -20.3008 30.4004 -46.2002 46.2998 -63.5
|
1868 |
-
c3.90039 -4.30078 10.3008 -8.40039 11 -11.2002c2.10059 -8.2002 -5.39941 -18 -4.5 -23.5c-21.6992 -13.9004 -45.7998 -29.1006 -81.3994 -25.6006c-7.40039 6.7002 -10.2998 21.4004 -2.90039 31.1006zM135.5 190.9c-6.7998 3.89941 -8.40039 21 -16.4004 21.3994
|
1869 |
-
c-11.3994 0.700195 -9.2998 -22.2002 -9.2998 -35.5c-7.7998 7.10059 -9.2002 29.1006 -3.5 40.2998c-6.59961 3.2002 -9.5 -3.59961 -13.0996 -5.89941c4.7002 34.0996 49.7998 15.7998 42.2998 -20.2998zM435.1 162.1c-10.0996 -19.1992 -24.3994 -40.3994 -54 -41
|
1870 |
-
c-0.599609 6.2002 -1.09961 15.6006 0 19.4004c22.7002 2.2002 36.6006 13.7002 54 21.5996zM293.2 149.7c18.8994 -9.90039 53.5996 -11 79.2998 -10.2002c1.40039 -5.59961 1.2998 -12.5996 1.40039 -19.4004c-33 -1.7998 -72 6.40039 -80.7002 29.6006zM385.4 103
|
1871 |
-
c-1.7002 -4.2998 -5.30078 -9.2998 -9.80078 -11.0996c-12.0996 -4.90039 -45.5996 -8.7002 -62.3994 0.299805c-10.7002 5.7002 -17.5 18.5 -23.4004 26c-2.7998 3.59961 -16.8994 12.8994 -0.200195 12.8994c13.1006 -32.6992 58 -29 95.8008 -28.0996z" />
|
1872 |
-
<glyph glyph-name="joget" unicode="" horiz-adv-x="496"
|
1873 |
-
d="M378.1 403c116.601 -71.7998 152.9 -224.6 81 -341.2c-71.8994 -116.5 -224.6 -152.8 -341.199 -80.8994c-116.601 71.8994 -152.9 224.6 -81 341.199c46.8994 76 128.1 117.9 211.3 117.9c44.3994 0 89.3994 -11.9004 129.899 -37zM429.9 79.7998
|
1874 |
-
c5.2998 8.7002 9.89941 17.6006 13.8994 26.6006c-32.0996 -1.10059 -157.1 1.5 -208.8 -17.6006c-58.4004 -21.5 -36.9004 -53.3994 -31.2002 -67.0996c3.7998 -9.10059 14.7002 -28.7998 23.7002 -42.4004c6.7998 -0.599609 13.5996 -1 20.4004 -1
|
1875 |
-
c71.5996 0 141.6 36 182 101.5zM229.1 166.1c51 -1.2998 205.4 -4.39941 230.301 -4.89941c11.8994 81.7998 -24.5 166.6 -99.3008 212.7c-100.5 61.8994 -232.1 30.6992 -294 -69.8008c-28.5996 -46.3994 -37.2998 -99.3994 -28.5 -149.1
|
1876 |
-
c11 40.9004 49.7002 131.5 178.301 140.2c50.8994 4 41.5 -19.2002 23.5996 -29.7002c-17.7998 -10.5 -45.7002 -23.7998 -68.9004 -51.2002c-23.1992 -27.3994 3 -46.7998 58.5 -48.2002zM412.9 220.9c22.6992 -6 19.0996 -15.5 19.0996 -15.5l-46.5 -23.4004
|
1877 |
-
l-169.5 -1.59961s33.7998 10.7998 65.2998 31.2998c26 16.8994 49.7002 35.5996 67.5 35.5996c3.7002 0 7.2002 -0.899414 10.4004 -2.7002c18.5 -10.5996 -2.90039 -18.1992 -13.4004 -24.5996s-50.7002 -34.5 -50.7002 -34.5s1.40039 -7.59961 31.1006 8.2002
|
1878 |
-
c29.7002 15.8994 64 33.2002 86.7002 27.2002z" />
|
1879 |
-
<glyph glyph-name="js" unicode=""
|
1880 |
-
d="M0 416h448v-448h-448v448zM243.8 66.5996v143.7h-42.0996v-143.1c0 -21.1006 -8.7998 -26.5 -22.6006 -26.5c-14.5 0 -20.5 9.89941 -27.0996 21.5996l-34.2998 -20.7002c10 -21.0996 29.5 -38.5 63.2002 -38.5c37.2998 0 62.8994 19.9004 62.8994 63.5zM343.4 3.09961
|
1881 |
-
c39.8994 0 69.6992 20.8008 69.6992 58.6006c0 35.2002 -20.0996 50.8994 -55.8994 66.2002l-10.5 4.5c-18.1006 7.89941 -25.9004 13 -25.9004 25.5996c0 10.2002 7.7998 18 20.1006 18c12.0996 0 19.8994 -5.09961 27.0996 -18l32.7998 21
|
1882 |
-
c-13.7998 24.4004 -33 33.7002 -59.7998 33.7002c-37.5 0 -61.5996 -24 -61.5996 -55.6006c0 -34.2998 20.0996 -50.5996 50.5 -63.5l10.5 -4.5c19.2998 -8.5 30.6992 -13.5996 30.6992 -28c0 -12.0996 -11.1992 -20.7998 -28.5996 -20.7998
|
1883 |
-
c-20.7002 0 -32.5 10.9004 -41.5 25.6006l-34.2998 -19.8008c12.2998 -24.3994 37.5996 -43 76.7002 -43z" />
|
1884 |
-
<glyph glyph-name="js-square" unicode=""
|
1885 |
-
d="M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM243.8 66.5996v143.7h-42.0996v-143.1c0 -21.1006 -8.7998 -26.5 -22.6006 -26.5c-14.5 0 -20.5 9.89941 -27.0996 21.5996
|
1886 |
-
l-34.2998 -20.7002c10 -21.0996 29.5 -38.5 63.2002 -38.5c37.2998 0 62.8994 19.9004 62.8994 63.5zM343.4 3.09961c39.8994 0 69.6992 20.8008 69.6992 58.6006c0 35.2002 -20.0996 50.8994 -55.8994 66.2002l-10.5 4.5c-18.1006 7.89941 -25.9004 13 -25.9004 25.5996
|
1887 |
-
c0 10.2002 7.7998 18 20.1006 18c12.0996 0 19.8994 -5.09961 27.0996 -18l32.7998 21c-13.7998 24.4004 -33 33.7002 -59.7998 33.7002c-37.5 0 -61.5996 -24 -61.5996 -55.6006c0 -34.2998 20.0996 -50.5996 50.5 -63.5l10.5 -4.5
|
1888 |
-
c19.2998 -8.5 30.6992 -13.5996 30.6992 -28c0 -12.0996 -11.1992 -20.7998 -28.5996 -20.7998c-20.7002 0 -32.5 10.9004 -41.5 25.6006l-34.2998 -19.8008c12.2998 -24.3994 37.5996 -43 76.7002 -43z" />
|
1889 |
-
<glyph glyph-name="keycdn" unicode="" horiz-adv-x="512"
|
1890 |
-
d="M63.7998 38.7002l60.5 59c32.1006 -42.7998 71.1006 -66 126.601 -67.4004c30.5 -0.700195 60.2998 7 86.3994 22.4004c5.10059 -5.2998 18.5 -19.5 20.9004 -22c-32.2002 -20.7002 -69.6006 -31.1006 -108.101 -30.2002
|
1891 |
-
c-43.2998 1.09961 -84.5996 16.7002 -117.699 44.4004c0.299805 0.599609 -38.2002 -37.5 -38.6006 -37.9004c9.5 -29.7998 -13.0996 -62.4004 -46.2998 -62.4004c-26.7998 0.100586 -47.5 21.7002 -47.5 48.5c0 34.3008 33.0996 56.6006 63.7998 45.6006zM418.7 291.1
|
1892 |
-
c19.0996 -31.2998 29.5996 -67.3994 28.7002 -104c-1.10059 -44.7998 -19 -87.5 -48.6006 -121c0.299805 -0.299805 23.7998 -25.1992 24.1006 -25.5c9.59961 1.30078 19.1992 -2 25.8994 -9.09961c11.2998 -12 10.9004 -30.9004 -1.09961 -42.4004
|
1893 |
-
c-12 -11.2998 -30.9004 -10.8994 -42.4004 1.10059c-6.7002 7 -9.39941 16.7998 -7.59961 26.2998c-24.9004 26.5996 -44.4004 47.2002 -44.4004 47.2002c42.7002 34.0996 63.2998 79.5996 64.4004 124.2c0.700195 28.8994 -7.2002 57.1992 -21.1006 82.1992zM104 394.9
|
1894 |
-
c6.7002 -7 9.40039 -16.8008 7.59961 -26.3008l45.9004 -48.0996c-4.7002 -3.7998 -13.2998 -10.4004 -22.7998 -21.2998c-25.4004 -28.5 -39.6006 -64.7998 -40.7002 -102.9c-0.700195 -28.8994 6.09961 -57.2002 20 -82.3994l-22 -21.5
|
1895 |
-
c-19.2998 31.5996 -28.9004 67.6992 -27.7998 104.699c1 44.6006 18.2998 87.6006 47.5 121.101l-25.2998 26.3994c-9.60059 -1.2998 -19.2002 2 -25.9004 9.10059c-11.2998 12 -10.9004 30.8994 1.09961 42.3994c11.9004 11.2002 30.6006 10.9004 42.4004 -1.19922z
|
1896 |
-
M464.9 440c26 0 47.0996 -22.4004 47.0996 -48.2998c0 -25.9004 -21.0996 -47.7002 -47.0996 -47.7002c-6.30078 -0.0996094 -14 1.09961 -15.9004 1.7998l-62.9004 -59.7002c-32.6992 43.6006 -76.6992 65.9004 -126.899 67.2002
|
1897 |
-
c-30.5 0.700195 -60.2998 -6.7998 -86.2002 -22.3994l-21.0996 22c32.1992 20.7998 69.5996 31.0996 108.1 30.1992c43.2998 -1.09961 84.5996 -16.6992 117.7 -44.5996l41.0996 38.5996c-1.5 4.7002 -2.2002 9.60059 -2.2002 14.5
|
1898 |
-
c-0.0996094 26.7002 22.3008 48.4004 48.3008 48.4004zM256.7 334.6c5.5 0 10.8994 -0.399414 16.3994 -1.09961c78.1006 -9.7998 133.4 -81.0996 123.801 -159.1c-9.80078 -78.1006 -81.1006 -133.4 -159.101 -123.801c-78.0996 9.80078 -133.399 81.1006 -123.8 159.2
|
1899 |
-
c9.2998 72.4004 70.0996 124.601 142.7 124.8zM197.7 215.2c0.599609 -22.7002 12.2002 -41.7998 32.3994 -52.2002l-11 -51.7002h73.7002l-11 51.7002c20.1006 10.9004 32.1006 29 32.4004 52.2002c-0.400391 32.7998 -25.7998 57.5 -58.2998 58.2998
|
1900 |
-
c-32.1006 -0.799805 -57.3008 -24.7998 -58.2002 -58.2998zM256 288z" />
|
1901 |
-
<glyph glyph-name="kickstarter" unicode=""
|
1902 |
-
d="M400 -32h-352c-26.4004 0 -48 21.5996 -48 48v352c0 26.4004 21.5996 48 48 48h352c26.4004 0 48 -21.5996 48 -48v-352c0 -26.4004 -21.5996 -48 -48 -48zM199.6 269.5c0 30.7002 -17.5996 45.0996 -39.6992 45.0996c-25.8008 0 -40 -19.7998 -40 -44.5v-154.8
|
1903 |
-
c0 -25.7998 13.6992 -45.5996 40.5 -45.5996c21.5 0 39.1992 14 39.1992 45.5996v41.7998l60.6006 -75.6992c12.2998 -14.9004 39 -16.8008 55.7998 0c14.5996 15.0996 14.7998 36.7998 4 50.3994l-49.0996 62.7998l40.5 58.7002c9.39941 13.5 9.5 34.5 -5.60059 49.1006
|
1904 |
-
c-16.3994 15.8994 -44.5996 17.2998 -61.3994 -7l-44.8008 -64.7002v38.7998z" />
|
1905 |
-
<glyph glyph-name="kickstarter-k" unicode="" horiz-adv-x="384"
|
1906 |
-
d="M147.3 333.6v-70.5996l82.7998 118.2c31.2002 44.3994 83.3008 41.7998 113.601 12.7998c27.8994 -26.7002 27.7998 -65.0996 10.3994 -89.7998l-74.8994 -107.4l90.7998 -114.8c19.9004 -24.7998 19.5996 -64.5996 -7.40039 -92.2002
|
1907 |
-
c-31.0996 -30.7002 -80.5 -27.2002 -103.199 0l-112.101 138.3v-76.5c0 -57.7998 -32.5996 -83.3994 -72.3994 -83.3994c-49.6006 0 -74.9004 36.0996 -74.9004 83.3994v283c0 45.2002 26.2002 81.4004 73.9004 81.4004c40.8994 0 73.3994 -26.2002 73.3994 -82.4004z" />
|
1908 |
-
<glyph glyph-name="laravel" unicode="" horiz-adv-x="512"
|
1909 |
-
d="M504.4 332.17c0.15625 -0.650391 0.240234 -1.32324 0.240234 -2.02051c0 -0.0234375 0 -0.046875 -0.000976562 -0.0693359v-109.85c0.000976562 -0.0244141 0.00878906 -0.0429688 0.00878906 -0.0673828c0 -2.96191 -1.61328 -5.5498 -4.00879 -6.93262
|
1910 |
-
l-92.2393 -53.1104v-105.26c0 -0.0078125 0.0078125 -0.00976562 0.0078125 -0.0166016c0 -2.96289 -1.61328 -5.55078 -4.00781 -6.93359l-192.561 -110.84c-0.442383 -0.231445 -0.916016 -0.428711 -1.39941 -0.580078
|
1911 |
-
c-0.180664 -0.0605469 -0.350586 -0.169922 -0.550781 -0.220703c-0.654297 -0.174805 -1.33789 -0.268555 -2.04688 -0.268555c-0.709961 0 -1.39844 0.09375 -2.05273 0.268555c-0.219727 0.0605469 -0.419922 0.180664 -0.629883 0.260742
|
1912 |
-
c-0.458008 0.143555 -0.908203 0.327148 -1.33008 0.540039l-192.5 110.84c-2.39551 1.38281 -4 3.96582 -4 6.92773v0.0224609v329.699c0.00195312 0.727539 0.0996094 1.42969 0.280273 2.10059c0.0839844 0.228516 0.181641 0.454102 0.290039 0.669922
|
1913 |
-
c0.133789 0.427734 0.307617 0.84668 0.509766 1.24023c0.149414 0.259766 0.370117 0.469727 0.549805 0.719727c0.21582 0.329102 0.450195 0.636719 0.709961 0.929688c0.250977 0.217773 0.512695 0.416016 0.790039 0.600586
|
1914 |
-
c0.274414 0.254883 0.56543 0.483398 0.879883 0.689453v0l96.2705 55.4199c1.1748 0.678711 2.55469 1.06738 4.00781 1.06738s2.81641 -0.388672 3.99219 -1.06738l96.29 -55.4199v0c0.307617 -0.210938 0.598633 -0.435547 0.879883 -0.679688
|
1915 |
-
c0.271484 -0.1875 0.529297 -0.385742 0.779297 -0.599609c0.260742 -0.298828 0.499023 -0.610352 0.720703 -0.94043c0.169922 -0.25 0.399414 -0.459961 0.540039 -0.719727c0.203125 -0.393555 0.379883 -0.813477 0.519531 -1.24023
|
1916 |
-
c0.0800781 -0.230469 0.219727 -0.44043 0.280273 -0.679688c0.181641 -0.661133 0.280273 -1.35352 0.280273 -2.07129v-0.0195312v-205.93l80.2197 46.1904v105.239c0.00292969 0.720703 0.100586 1.41602 0.280273 2.08008
|
1917 |
-
c0.0693359 0.240234 0.199219 0.450195 0.279297 0.680664c0.144531 0.427734 0.320312 0.850586 0.520508 1.25c0.149414 0.259766 0.370117 0.469727 0.540039 0.709961c0.21875 0.329102 0.457031 0.636719 0.719727 0.929688
|
1918 |
-
c0.248047 0.216797 0.505859 0.416016 0.780273 0.599609c0.277344 0.250977 0.568359 0.479492 0.879883 0.69043v0l96.2803 55.4502c1.1748 0.677734 2.55469 1.06641 4.00781 1.06641s2.81641 -0.388672 3.99219 -1.06641l96.2598 -55.4199
|
1919 |
-
c0.316406 -0.208984 0.613281 -0.433594 0.899414 -0.680664c0.25 -0.199219 0.540039 -0.379883 0.770508 -0.599609c0.260742 -0.298828 0.499023 -0.609375 0.719727 -0.94043c0.198242 -0.223633 0.376953 -0.458008 0.540039 -0.709961
|
1920 |
-
c0.207031 -0.396484 0.386719 -0.819336 0.530273 -1.25c0.106445 -0.217773 0.201172 -0.447266 0.280273 -0.679688zM111.6 430.72l-80.1895 -46.1602l80.1797 -46.1699l80.2002 46.1807l-80.1904 46.1494v0zM199.85 370.72l-33.6895 -19.4297l-46.5303 -26.79v-201.29
|
1921 |
-
l33.6904 19.4004l46.5293 26.79v201.319zM199.85 -42.0596l-0.109375 92.3594l-92.1904 52.1807v0v0c-0.301758 0.203125 -0.585938 0.421875 -0.859375 0.65918c-0.25 0.200195 -0.540039 0.360352 -0.770508 0.580078v0
|
1922 |
-
c-0.240234 0.265625 -0.458008 0.542969 -0.660156 0.839844c-0.21582 0.25 -0.414062 0.507812 -0.599609 0.780273v0c-0.166016 0.316406 -0.308594 0.655273 -0.419922 1c-0.149414 0.285156 -0.27832 0.589844 -0.379883 0.900391v0
|
1923 |
-
c-0.0820312 0.383789 -0.135742 0.77832 -0.160156 1.17969c-0.0595703 0.293945 -0.0996094 0.594727 -0.120117 0.900391v215.18l-46.5205 26.7998l-33.6895 19.3799v-311.18zM207.85 64.1104l117.62 67.1494l58.7998 33.5605l-80.1299 46.1299l-92.2598 -53.1104
|
1924 |
-
l-84.0898 -48.4102zM392.37 59.54v91.4102l-45.7705 -26.1504l-130.72 -74.5996v-92.3105zM392.37 178.67v91.3301l-46.5303 26.8096l-33.6895 19.4004v-91.4199l46.5293 -26.79zM400.37 283.95l80.1797 46.1797l-80.1797 46.1504l-80.2002 -46.1602zM408.37 178.67
|
1925 |
-
l80.3096 46.1504v0v91.3896l-33.6797 -19.4004l-46.6299 -26.8096v-91.3301z" />
|
1926 |
-
<glyph glyph-name="line" unicode=""
|
1927 |
-
d="M272.1 243.8v-71.0996c0 -1.7998 -1.39941 -3.2002 -3.19922 -3.2002h-11.4004c-1.09961 0 -2.09961 0.599609 -2.59961 1.2998l-32.6006 44v-42.2002c0 -1.7998 -1.39941 -3.19922 -3.2002 -3.19922h-11.3994c-1.7998 0 -3.2002 1.39941 -3.2002 3.19922v71.1006
|
1928 |
-
c0 1.7998 1.40039 3.2002 3.2002 3.2002h11.2998c1 0 2.09961 -0.5 2.59961 -1.40039l32.6006 -44v42.2002c0 1.7998 1.39941 3.2002 3.2002 3.2002h11.3994c1.7998 0.0996094 3.2998 -1.40039 3.2998 -3.10059zM190.1 247c1.80078 0 3.2002 -1.5 3.2002 -3.2002v-71.0996
|
1929 |
-
c0 -1.7998 -1.39941 -3.2002 -3.2002 -3.2002h-11.3994c-1.7998 0 -3.2002 1.40039 -3.2002 3.2002v71.0996c0 1.7998 1.40039 3.2002 3.2002 3.2002h11.3994zM162.6 187.4c1.7002 0 3.10059 -1.5 3.10059 -3.2002v-11.4004c0 -1.7998 -1.40039 -3.2002 -3.2002 -3.2002
|
1930 |
-
h-45.7002c-0.899414 0 -1.59961 0.400391 -2.2002 0.900391c-0.599609 0.599609 -0.899414 1.2998 -0.899414 2.2002v71.0996c0 1.7998 1.39941 3.2002 3.2002 3.2002h11.3994c1.7998 0 3.2002 -1.40039 3.2002 -3.2002v-56.3994h31.0996zM332.1 247
|
1931 |
-
c1.7002 0 3.10059 -1.5 3.2002 -3.2002v-11.3994c0 -1.80078 -1.39941 -3.2002 -3.2002 -3.2002h-31.0996v-12h31.0996c1.80078 0 3.2002 -1.40039 3.2002 -3.2002v-11.5c0 -1.7998 -1.39941 -3.2002 -3.2002 -3.2002h-31.0996v-12h31.0996
|
1932 |
-
c1.80078 0 3.2002 -1.39941 3.2002 -3.2002v-11.3994c0 -1.7998 -1.39941 -3.2002 -3.2002 -3.2002h-45.6992c-1.80078 0 -3.2002 1.5 -3.2002 3.2002v71.0996c0 1.7998 1.5 3.2002 3.2002 3.2002h45.6992zM448 334.3v-285.3
|
1933 |
-
c-0.0996094 -44.7998 -36.7998 -81.0996 -81.7002 -81h-285.3c-44.7998 0.0996094 -81.0996 36.9004 -81 81.7002v285.3c0.0996094 44.7998 36.9004 81.0996 81.7002 81h285.3c44.7998 -0.0996094 81.0996 -36.7998 81 -81.7002zM386.4 211.7
|
1934 |
-
c0 73 -73.2002 132.399 -163.101 132.399c-89.8994 0 -163.1 -59.3994 -163.1 -132.399c0 -65.4004 58 -120.2 136.399 -130.601c19.1006 -4.09961 16.9004 -11.0996 12.6006 -36.7998c-0.700195 -4.09961 -3.2998 -16.0996 14.0996 -8.7998
|
1935 |
-
c17.4004 7.2998 93.9004 55.2998 128.2 94.7002c23.5996 26 34.9004 52.2998 34.9004 81.5z" />
|
1936 |
-
<glyph glyph-name="lyft" unicode="" horiz-adv-x="512"
|
1937 |
-
d="M0 366.9h77.7998v-208.7c0 -33.1006 15 -52.7998 27.2002 -61c-12.7002 -11.1006 -51.2002 -20.9004 -80.2002 2.7998c-17 14 -24.7998 37.2998 -24.7998 59v207.9zM485.9 193.4c0 -14.2002 11.5996 -25.9004 26.0996 -25.9004v-76.5
|
1938 |
-
c-56.7002 0 -102.7 46.0996 -102.7 102.7v77.0996c0 34.6006 -52.2002 34.6006 -52.2002 0v-23.2998h38.8008v-76.7998h-38.8008v-6.7002c0 -21.7998 -7.69922 -45 -24.7998 -59c-16.2998 -13.7002 -35.7002 -16.2998 -51.7002 -14v179.2
|
1939 |
-
c0 56.7002 46.1006 102.7 102.7 102.7c49.1006 0 90.2002 -34.4004 100.3 -80.7002h26.1006v-76.7998h-23.7998v-22zM191.6 292.4v0.5h77.1006v-178.2c0 -52.4004 -29.7002 -91.7002 -76.7998 -100.8c-26.1006 -5.10059 -52.5 -2.80078 -77.6006 4.69922v70.3008
|
1940 |
-
c9.7998 -4.2002 29.5 -9.40039 45 -7.80078c20.4004 2 32.7998 11.9004 34.9004 25.3008c0 0 -21.2002 -20.4004 -58.2002 -10.6006c-37 9.90039 -45 40.1006 -45 63.9004v132.7h76.7998v-113c0 -15.4004 23.7998 -15.4004 23.7998 0v113z" />
|
1941 |
-
<glyph glyph-name="magento" unicode=""
|
1942 |
-
d="M445.7 320.1v-256.1l-63.4004 -36.5v255.8l-158.5 91.6006l-158.6 -91.6006l0.399414 -255.899l-63.2998 36.5996v255.9l221.9 128.1zM255.6 27.5v255.9l63.4004 -36.6006v-256l-95.0996 -54.8994l-94.9004 54.8994l-0.0996094 255.9l63.2998 36.5996v-256
|
1943 |
-
l31.7998 -18.2002z" />
|
1944 |
-
<glyph glyph-name="medapps" unicode="" horiz-adv-x="320"
|
1945 |
-
d="M118.3 209.6c3.5 12.5 6.90039 33.6006 13.2002 33.6006c8.2998 -1.7998 9.59961 -23.4004 18.5996 -36.6006c4.60059 23.5 5.30078 85.1006 14.1006 86.7002c9 0.700195 19.7002 -66.5 22 -77.5c9.89941 -4.09961 48.8994 -6.59961 48.8994 -6.59961
|
1946 |
-
c1.90039 -7.2998 -24 -7.60059 -40 -7.7998c-4.59961 -14.8008 -5.39941 -27.7002 -11.3994 -28c-4.7002 -0.200195 -8.2002 28.7998 -17.5 49.5996l-9.40039 -65.5c-4.39941 -13 -15.5 22.5 -21.8994 39.2998c-3.30078 0.100586 -62.4004 1.60059 -47.6006 7.7998zM228 0
|
1947 |
-
h-136c-21.2002 0 -21.2002 32 0 32h136c21.2002 0 21.2002 -32 0 -32zM204 -64h-88c-21.2002 0 -21.2002 32 0 32h88c21.2002 0 21.2002 -32 0 -32zM238.2 77.5c-3.60059 -21.2998 -36 -15.5 -32.6006 5.09961c3.60059 21.2002 5.60059 40.6006 15.3008 58.6006
|
1948 |
-
c32.5996 60.2998 66.0996 95.5 66.0996 151.6c0 67.9004 -57 123.2 -127 123.2s-127 -55.2998 -127 -123.2c0 -56.0996 33.5 -91.2998 66.0996 -151.7c9.7002 -17.8994 11.7002 -36.8994 15.3008 -58.5996c3.5 -20.7998 -29.1006 -26.0996 -32.6006 -5.09961
|
1949 |
-
c-3.2002 19.0996 -5.2002 36.3994 -11.8994 48.8994c-8 14.7002 -16.1006 28.1006 -24 41c-24.6006 40.4004 -45.9004 75.2998 -45.9004 125.5c0 85.6006 71.7998 155.2 160 155.2s160 -69.5996 160 -155.2c0 -50.2998 -21.2998 -85.0996 -45.9004 -125.5
|
1950 |
-
c-7.89941 -12.8994 -16.0996 -26.2998 -24 -41c-6.69922 -12.3994 -8.69922 -29.8994 -11.8994 -48.7998z" />
|
1951 |
-
<glyph glyph-name="medium-m" unicode="" horiz-adv-x="512"
|
1952 |
-
d="M71.5 305.7c0.599609 5.89941 -1.7002 11.7998 -6.09961 15.7998l-45.1006 54.4004v8.09961h140.2l108.4 -237.7l95.2998 237.7h133.7v-8.09961l-38.6006 -37c-3.2998 -2.5 -5 -6.7002 -4.2998 -10.8008v-272c-0.700195 -4.09961 1 -8.2998 4.2998 -10.7998l37.7002 -37
|
1953 |
-
v-8.09961h-189.7v8.09961l39.1006 37.9004c3.7998 3.7998 3.7998 5 3.7998 10.7998v219.8l-108.7 -275.899h-14.7002l-126.399 275.899v-184.899c-1.10059 -7.80078 1.5 -15.6006 7 -21.2002l50.7998 -61.6006v-8.09961h-144v8l50.7998 61.7002
|
1954 |
-
c5.40039 5.59961 7.90039 13.5 6.5 21.2002v213.8z" />
|
1955 |
-
<glyph glyph-name="medrt" unicode="" horiz-adv-x="544"
|
1956 |
-
d="M113.7 192c0 -121.8 83.8994 -222.8 193.5 -241.1c-18.7002 -4.5 -38.2002 -6.90039 -58.2002 -6.90039c-137.6 0 -249 111 -249 248s111.4 248 248.9 248c20.0996 0 39.5996 -2.40039 58.1992 -6.90039c-109.6 -18.2998 -193.399 -119.3 -193.399 -241.1zM411.1 91.7002
|
1957 |
-
c77.7002 55.3994 104.4 155.1 67 233.899c11.2002 -9.89941 21.5 -21.2998 30.5 -34.1992c61.6006 -88.3008 40.8008 -210.301 -46.5 -272.601c-87.2998 -62.2998 -208.1 -41.2002 -269.699 47c-9 12.7998 -16.2002 26.4004 -21.7002 40.5
|
1958 |
-
c60.7998 -62.0996 162.7 -70 240.399 -14.5996zM192.3 335.7c72.5 54.5996 171.601 45.7002 221.601 -19.7998c45.2998 -59.7002 34.3994 -145.601 -22.3008 -201.801c18.5 51.4004 11.3008 111 -24.3994 158c-43 56.5 -114.601 78.3008 -178.9 60.5
|
1959 |
-
c1.2998 1 2.60059 2.10059 4 3.10059zM296 224h40c4.40039 0 8 -3.59961 8 -8v-48c0 -4.40039 -3.59961 -8 -8 -8h-40c-4.40039 0 -8 -3.59961 -8 -8v-40c0 -4.40039 -3.59961 -8 -8 -8h-48c-4.40039 0 -8 3.59961 -8 8v40c0 4.40039 -3.59961 8 -8 8h-40
|
1960 |
-
c-4.40039 0 -8 3.59961 -8 8v48c0 4.40039 3.59961 8 8 8h40c4.40039 0 8 3.59961 8 8v40c0 4.40039 3.59961 8 8 8h48c4.40039 0 8 -3.59961 8 -8v-40c0 -4.40039 3.59961 -8 8 -8z" />
|
1961 |
-
<glyph glyph-name="microsoft" unicode=""
|
1962 |
-
d="M0 416h214.6v-214.6h-214.6v214.6zM233.4 416h214.6v-214.6h-214.6v214.6zM0 182.6h214.6v-214.6h-214.6v214.6zM233.4 182.6h214.6v-214.6h-214.6v214.6z" />
|
1963 |
-
<glyph glyph-name="mix" unicode=""
|
1964 |
-
d="M0 384h448v-204.1c0 -56.6006 -88 -59.9004 -88 0v23.7998c0 56.7998 -82.7002 59 -88 4.2998v-116.1c0 -58 -96 -57.9004 -96 0v175.3c0 56.8994 -80.0996 59.3994 -88 6.5v-238.601c0 -58.0996 -88 -56.1992 -88 0v348.9z" />
|
1965 |
-
<glyph glyph-name="mizuni" unicode="" horiz-adv-x="496"
|
1966 |
-
d="M248 440c137 0 248 -111.1 248 -248c0 -137 -111 -248 -248 -248s-248 111 -248 248c0 136.9 111 248 248 248zM168 88.0996v223.9c0 22.0996 -17.9004 40 -40 40s-40 -17.9004 -40 -40v-272.1c21.2002 20.8994 48.5996 37.5996 80 48.1992zM288 98v214
|
1967 |
-
c0 22.0996 -17.9004 40 -40 40s-40 -17.9004 -40 -40v-214c13 2 26.4004 3.09961 40.2002 3.09961c13.5996 0 26.8994 -1.09961 39.7998 -3.09961zM408 40.2998v271.7c0 22.0996 -17.9004 40 -40 40s-40 -17.9004 -40 -40v-223.7c31.4004 -10.5996 58.7998 -27.2002 80 -48z
|
1968 |
-
" />
|
1969 |
-
<glyph glyph-name="monero" unicode="" horiz-adv-x="496"
|
1970 |
-
d="M352 64h108.4c-43.4004 -71.9004 -122.301 -120 -212.4 -120s-169 48.0996 -212.4 120h108.4v127.8l104 -104.8l104 105v-128zM88 112h-74.7998c-8.60059 25.0996 -13.2002 52 -13.2002 80c0 137 111 248 248 248s248 -111 248 -248c0 -28 -4.7002 -54.9004 -13.2002 -80
|
1971 |
-
h-74.7998v208l-160.6 -159.4l-159.4 159.4v-208z" />
|
1972 |
-
<glyph glyph-name="napster" unicode="" horiz-adv-x="496"
|
1973 |
-
d="M298.3 74.4004c-14.2002 -13.6006 -31.2998 -24.1006 -50.3994 -30.5c-19 6.39941 -36.2002 16.8994 -50.3008 30.5h100.7zM342.3 274c-56.3994 39.7998 -132.1 39.9004 -188.899 -0.0996094c-19.9004 16.7998 -43.6006 29.5 -69.5 36.3994v-161.6
|
1974 |
-
c0 -217.3 328 -219.101 328 0.299805v161.2c-26 -7 -49.6006 -19.2998 -69.6006 -36.2002zM133.5 332.5c6.5 -3.2002 14.0996 -7.40039 20.4004 -11.4004c58.6992 30.5 129.199 30.6006 187.899 0.100586c6.7002 4.2002 13.5 8 20.6006 11.5
|
1975 |
-
c-64.6006 59.8994 -164.5 59.7998 -228.9 -0.200195zM43.7998 354.8c17.5 -0.5 34.2998 -3.09961 50.6006 -7.5c82 91.6006 225.5 91.6006 307.5 0.100586c16.0996 4.39941 32.7998 6.89941 50.0996 7.39941v-69.2002c58.7002 -36.5 58.5 -121.899 -0.200195 -158.199
|
1976 |
-
l-0.299805 -1.7002c-25.9004 -238.8 -381.2 -243.601 -407.6 1.5c-58.5 37.2002 -58.5 121.8 -0.100586 158.3v69.2998zM259.2 96c13.0996 59.2998 33.5 56 113 55.4004c-0.799805 -8.2002 0.0996094 -32.3008 -26.2002 -47.4004c-4.40039 -2.5 -15.2998 -6 -25.5 -6.5
|
1977 |
-
c-25.2998 -1.2002 -61.2998 -1.5 -61.2998 -1.5zM123.7 151.3c79.2998 0.700195 99.7998 4 113 -55.3994c0 0 -36 0.399414 -61.2998 1.5c-10.3008 0.5 -21.1006 4 -25.5 6.5c-26.3008 15.0996 -25.4004 39.1992 -26.2002 47.3994zM292.8 27.9004
|
1978 |
-
c3 -4.90039 3.2002 -8.80078 3.2998 -8.90039c-29.0996 -17.5996 -67.0996 -17.5996 -96.1992 0c0 0 0.899414 5.5 3.69922 9.59961c3.5 5.10059 6.40039 6.60059 6.40039 6.60059c23.7002 -6.90039 51.0996 -7.2998 75.9004 0c0 0 3.69922 -2 6.89941 -7.2998z" />
|
1979 |
-
<glyph glyph-name="node-js" unicode=""
|
1980 |
-
d="M224 -60c-6.7002 0 -13.5 1.7998 -19.4004 5.2002l-61.6992 36.5c-9.2002 5.2002 -4.7002 7 -1.7002 8c12.2998 4.2998 14.7998 5.2002 27.8994 12.7002c1.40039 0.799805 3.2002 0.5 4.60059 -0.400391l47.3994 -28.0996c1.7002 -1 4.10059 -1 5.7002 0l184.7 106.6
|
1981 |
-
c1.7002 1 2.7998 3 2.7998 5v213.2c0 2.09961 -1.09961 4 -2.89941 5.09961l-184.601 106.5c-1.7002 1 -4 1 -5.7002 0l-184.5 -106.6c-1.7998 -1 -2.89941 -3 -2.89941 -5.10059v-213.1c0 -2 1.09961 -4 2.89941 -4.90039l50.6006 -29.1992
|
1982 |
-
c27.5 -13.7002 44.2998 2.39941 44.2998 18.6992v210.4c0 3 2.40039 5.2998 5.40039 5.2998h23.3994c2.90039 0 5.40039 -2.2998 5.40039 -5.2998v-210.5c0 -36.5996 -20 -57.5996 -54.7002 -57.5996c-10.7002 0 -19.0996 0 -42.5 11.5996l-48.4004 27.9004
|
1983 |
-
c-12 6.89941 -19.3994 19.7998 -19.3994 33.6992v213.101c0 13.7998 7.39941 26.7998 19.3994 33.7002l184.5 106.6c11.7002 6.59961 27.2002 6.59961 38.8008 0l184.699 -106.7c12 -6.89941 19.4004 -19.7998 19.4004 -33.7002v-213.1
|
1984 |
-
c0 -13
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|