Gallery – Photo Gallery – Image Gallery - Version 2.6.2

Version Description

Download this release

Release Info

Developer raldea89
Plugin Icon wp plugin Gallery – Photo Gallery – Image Gallery
Version 2.6.2
Comparing to
See all releases

Code changes from version 2.6.1 to 2.6.2

Modula.php CHANGED
@@ -1,110 +1,110 @@
1
- <?php
2
- /**
3
- * Plugin Name: Modula
4
- * Plugin URI: https://wp-modula.com/
5
- * Description: Modula is the most powerful, user-friendly WordPress gallery plugin. Add galleries, masonry grids and more in a few clicks.
6
- * Author: WPChill
7
- * Version: 2.6.1
8
- * Author URI: https://www.wpchill.com/
9
- * License: GPLv3 or later
10
- * License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
- * Requires PHP: 5.6
12
- * Text Domain: modula-best-grid-gallery
13
- * Domain Path: /languages
14
- *
15
- * Copyright 2015-2017 GreenTreeLabs diego@greentreelabs.net
16
- * Copyright 2017-2020 MachoThemes hello@wp-modula.com
17
- * Copyright 2020 WPchill hello@wp-modula.com
18
- *
19
- * Original Plugin URI: https://modula.greentreelabs.net/
20
- * Original Author URI: https://greentreelabs.net
21
- * Original Author: https://profiles.wordpress.org/greentreelabs/
22
- *
23
- * NOTE:
24
- * GreenTreeLabs transferred ownership rights on: 03/29/2017 06:34:07 PM when ownership was handed over to MachoThemes
25
- * The MachoThemes ownership period started on: 03/29/2017 06:34:08 PM
26
- * SVN commit proof of ownership transferral: https://plugins.trac.wordpress.org/changeset/1607943/modula-best-grid-gallery
27
- *
28
- * MachoThemes has transferred ownership to WPChill on: 5th of November, 2020. WPChill is a rebrand & restructure of MachoThemes.
29
- *
30
- * This program is free software; you can redistribute it and/or modify
31
- * it under the terms of the GNU General Public License, version 3, as
32
- * published by the Free Software Foundation.
33
- *
34
- * This program is distributed in the hope that it will be useful,
35
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
36
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
37
- * GNU General Public License for more details.
38
- *
39
- * You should have received a copy of the GNU General Public License
40
- * along with this program; if not, write to the Free software
41
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
42
- */
43
-
44
- /**
45
- * Define Constants
46
- *
47
- * @since 2.0.2
48
- */
49
-
50
- define( 'MODULA_LITE_VERSION' , '2.6.1' );
51
- define( 'MODULA_PATH' , plugin_dir_path( __FILE__ ) );
52
- define( 'MODULA_URL' , plugin_dir_url( __FILE__ ) );
53
- defined( 'MODULA_PRO_STORE_URL' ) || define( 'MODULA_PRO_STORE_URL' , 'https://wp-modula.com' );
54
- defined( 'MODULA_PRO_STORE_UPGRADE_URL' ) || define( 'MODULA_PRO_STORE_UPGRADE_URL' , 'https://wp-modula.com/pricing' );
55
- define( 'MODULA_FILE' , plugin_basename( __FILE__ ) );
56
-
57
- define ( 'MODULA_LITE_TRANSLATE', dirname( plugin_basename( __FILE__ ) ) . '/languages' );
58
-
59
- if( ! class_exists( 'Modula_Plugin_Usage_Tracker') ) {
60
- require_once dirname( __FILE__ ) . '/includes/tracking/class-plugin-usage-tracker.php';
61
- }
62
- if( ! function_exists( 'modula_best_grid_gallery_start_plugin_tracking' ) ) {
63
- function modula_best_grid_gallery_start_plugin_tracking() {
64
- $wisdom = new Modula_Plugin_Usage_Tracker(
65
- __FILE__,
66
- 'https://tracking.wp-modula.com/',
67
- array(),
68
- true,
69
- true,
70
- 0
71
- );
72
- }
73
- modula_best_grid_gallery_start_plugin_tracking();
74
- }
75
-
76
- /**
77
- * The code that runs during plugin activation.
78
- * This action is documented in includes/class-modula-activator.php
79
- */
80
- function modula_activate() {
81
- require_once plugin_dir_path( __FILE__ ) . 'includes/class-modula-upgrades.php';
82
- $upgrades = Modula_Upgrades::get_instance();
83
- $upgrades->check_on_activate();
84
- }
85
-
86
- register_activation_hook( __FILE__, 'modula_activate' );
87
-
88
- /**
89
- * The core plugin class that is used to define internationalization,
90
- * admin-specific hooks, and public-facing site hooks.
91
- */
92
- require plugin_dir_path( __FILE__ ) . 'includes/class-modula.php';
93
-
94
- /**
95
- * Begins execution of the plugin.
96
- *
97
- * Since everything within the plugin is registered via hooks,
98
- * then kicking off the plugin from this point in the file does
99
- * not affect the page life cycle.
100
- *
101
- * @since 2.0.0
102
- */
103
- function modula_run() {
104
-
105
- // Our core class
106
- $plugin = new Modula();
107
-
108
- }
109
-
110
- modula_run();
1
+ <?php
2
+ /**
3
+ * Plugin Name: Modula
4
+ * Plugin URI: https://wp-modula.com/
5
+ * Description: Modula is the most powerful, user-friendly WordPress gallery plugin. Add galleries, masonry grids and more in a few clicks.
6
+ * Author: WPChill
7
+ * Version: 2.6.2
8
+ * Author URI: https://www.wpchill.com/
9
+ * License: GPLv3 or later
10
+ * License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
+ * Requires PHP: 5.6
12
+ * Text Domain: modula-best-grid-gallery
13
+ * Domain Path: /languages
14
+ *
15
+ * Copyright 2015-2017 GreenTreeLabs diego@greentreelabs.net
16
+ * Copyright 2017-2020 MachoThemes hello@wp-modula.com
17
+ * Copyright 2020 WPchill hello@wp-modula.com
18
+ *
19
+ * Original Plugin URI: https://modula.greentreelabs.net/
20
+ * Original Author URI: https://greentreelabs.net
21
+ * Original Author: https://profiles.wordpress.org/greentreelabs/
22
+ *
23
+ * NOTE:
24
+ * GreenTreeLabs transferred ownership rights on: 03/29/2017 06:34:07 PM when ownership was handed over to MachoThemes
25
+ * The MachoThemes ownership period started on: 03/29/2017 06:34:08 PM
26
+ * SVN commit proof of ownership transferral: https://plugins.trac.wordpress.org/changeset/1607943/modula-best-grid-gallery
27
+ *
28
+ * MachoThemes has transferred ownership to WPChill on: 5th of November, 2020. WPChill is a rebrand & restructure of MachoThemes.
29
+ *
30
+ * This program is free software; you can redistribute it and/or modify
31
+ * it under the terms of the GNU General Public License, version 3, as
32
+ * published by the Free Software Foundation.
33
+ *
34
+ * This program is distributed in the hope that it will be useful,
35
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
36
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
37
+ * GNU General Public License for more details.
38
+ *
39
+ * You should have received a copy of the GNU General Public License
40
+ * along with this program; if not, write to the Free software
41
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
42
+ */
43
+
44
+ /**
45
+ * Define Constants
46
+ *
47
+ * @since 2.0.2
48
+ */
49
+
50
+ define( 'MODULA_LITE_VERSION' , '2.6.2' );
51
+ define( 'MODULA_PATH' , plugin_dir_path( __FILE__ ) );
52
+ define( 'MODULA_URL' , plugin_dir_url( __FILE__ ) );
53
+ defined( 'MODULA_PRO_STORE_URL' ) || define( 'MODULA_PRO_STORE_URL' , 'https://wp-modula.com' );
54
+ defined( 'MODULA_PRO_STORE_UPGRADE_URL' ) || define( 'MODULA_PRO_STORE_UPGRADE_URL' , 'https://wp-modula.com/pricing' );
55
+ define( 'MODULA_FILE' , plugin_basename( __FILE__ ) );
56
+
57
+ define ( 'MODULA_LITE_TRANSLATE', dirname( plugin_basename( __FILE__ ) ) . '/languages' );
58
+
59
+ if( ! class_exists( 'Modula_Plugin_Usage_Tracker') ) {
60
+ require_once dirname( __FILE__ ) . '/includes/tracking/class-plugin-usage-tracker.php';
61
+ }
62
+ if( ! function_exists( 'modula_best_grid_gallery_start_plugin_tracking' ) ) {
63
+ function modula_best_grid_gallery_start_plugin_tracking() {
64
+ $wisdom = new Modula_Plugin_Usage_Tracker(
65
+ __FILE__,
66
+ 'https://tracking.wp-modula.com/',
67
+ array(),
68
+ true,
69
+ true,
70
+ 0
71
+ );
72
+ }
73
+ modula_best_grid_gallery_start_plugin_tracking();
74
+ }
75
+
76
+ /**
77
+ * The code that runs during plugin activation.
78
+ * This action is documented in includes/class-modula-activator.php
79
+ */
80
+ function modula_activate() {
81
+ require_once plugin_dir_path( __FILE__ ) . 'includes/class-modula-upgrades.php';
82
+ $upgrades = Modula_Upgrades::get_instance();
83
+ $upgrades->check_on_activate();
84
+ }
85
+
86
+ register_activation_hook( __FILE__, 'modula_activate' );
87
+
88
+ /**
89
+ * The core plugin class that is used to define internationalization,
90
+ * admin-specific hooks, and public-facing site hooks.
91
+ */
92
+ require plugin_dir_path( __FILE__ ) . 'includes/class-modula.php';
93
+
94
+ /**
95
+ * Begins execution of the plugin.
96
+ *
97
+ * Since everything within the plugin is registered via hooks,
98
+ * then kicking off the plugin from this point in the file does
99
+ * not affect the page life cycle.
100
+ *
101
+ * @since 2.0.0
102
+ */
103
+ function modula_run() {
104
+
105
+ // Our core class
106
+ $plugin = new Modula();
107
+
108
+ }
109
+
110
+ modula_run();
assets/css/admin/about.css CHANGED
@@ -1,103 +1,103 @@
1
- #modula-about-page .modula-about__container {
2
- max-width: 1000px;
3
- margin: 24px auto;
4
- clear: both;
5
- line-height:1.4;
6
- }
7
- #modula-about-page div {
8
- display:block;
9
- float:none;
10
- position: relative;
11
- }
12
-
13
- .modula-about-header {
14
- background:#2ebf91;
15
- margin-bottom:32px;
16
- max-height:500px;
17
- }
18
-
19
- .modula-about-heading {
20
- background:url('../../images/modula.svg') center right no-repeat;
21
- background-size:contain;
22
- min-height: 24em;
23
- max-height: 32em;
24
- height: 80vh;
25
- padding: 0 32px;
26
- }
27
-
28
- .modula-about-heading h1 {
29
- color:#fff;
30
- font-size:43px;
31
- position: absolute;
32
- bottom:0;
33
- width:60%;
34
- }
35
-
36
- .modula-about-heading h1 span {
37
- display:inline-block;
38
- }
39
-
40
- .modula-about-header .about__header-badge {
41
- background-color:#472d7b;
42
- }
43
-
44
- .modula-about-header .modula-about__header-text {
45
- background-color:#16a085;
46
- padding: 16px 32px 32px;
47
- font-size: 1.5em;
48
- line-height: 1.4;
49
- }
50
-
51
- .modula-about-header .modula-about__header-text p {
52
- color:#fff;
53
- }
54
-
55
- h1.modula-about-heading {
56
- color: #774cce;
57
- font-size:40px;
58
- }
59
-
60
- .modula-about-row .modula-about__container h2 {
61
- font-size:25px;
62
- }
63
-
64
- ul.modula-about-list {
65
- padding-left:25px;
66
- position:relative;
67
- margin-left:0;
68
- }
69
-
70
- .modula-about-list li {
71
- position:relative;
72
- list-style-type: none;
73
- font-size:18px;
74
- }
75
-
76
- .modula-about-list li:before {
77
- font-family:Dashicons;
78
- display:block;
79
- position: absolute;
80
- left:-25px;
81
- }
82
-
83
- .modula-about-list li.fixed:before {
84
- content: "\f107";
85
- color:green;
86
- }
87
-
88
- .modula-about-list li.added:before {
89
- content: "\f132";
90
- color:blue;
91
- }
92
-
93
- .modula-about-list li.removed:before {
94
- content: "\f182";
95
- color:red;
96
- }
97
-
98
-
99
- .modula-about-list li.changed:before {
100
- content: "\f111";
101
- color:yellowgreen;
102
- }
103
-
1
+ #modula-about-page .modula-about__container {
2
+ max-width: 1000px;
3
+ margin: 24px auto;
4
+ clear: both;
5
+ line-height:1.4;
6
+ }
7
+ #modula-about-page div {
8
+ display:block;
9
+ float:none;
10
+ position: relative;
11
+ }
12
+
13
+ .modula-about-header {
14
+ background:#2ebf91;
15
+ margin-bottom:32px;
16
+ max-height:500px;
17
+ }
18
+
19
+ .modula-about-heading {
20
+ background:url('../../images/modula.svg') center right no-repeat;
21
+ background-size:contain;
22
+ min-height: 24em;
23
+ max-height: 32em;
24
+ height: 80vh;
25
+ padding: 0 32px;
26
+ }
27
+
28
+ .modula-about-heading h1 {
29
+ color:#fff;
30
+ font-size:43px;
31
+ position: absolute;
32
+ bottom:0;
33
+ width:60%;
34
+ }
35
+
36
+ .modula-about-heading h1 span {
37
+ display:inline-block;
38
+ }
39
+
40
+ .modula-about-header .about__header-badge {
41
+ background-color:#472d7b;
42
+ }
43
+
44
+ .modula-about-header .modula-about__header-text {
45
+ background-color:#16a085;
46
+ padding: 16px 32px 32px;
47
+ font-size: 1.5em;
48
+ line-height: 1.4;
49
+ }
50
+
51
+ .modula-about-header .modula-about__header-text p {
52
+ color:#fff;
53
+ }
54
+
55
+ h1.modula-about-heading {
56
+ color: #774cce;
57
+ font-size:40px;
58
+ }
59
+
60
+ .modula-about-row .modula-about__container h2 {
61
+ font-size:25px;
62
+ }
63
+
64
+ ul.modula-about-list {
65
+ padding-left:25px;
66
+ position:relative;
67
+ margin-left:0;
68
+ }
69
+
70
+ .modula-about-list li {
71
+ position:relative;
72
+ list-style-type: none;
73
+ font-size:18px;
74
+ }
75
+
76
+ .modula-about-list li:before {
77
+ font-family:Dashicons;
78
+ display:block;
79
+ position: absolute;
80
+ left:-25px;
81
+ }
82
+
83
+ .modula-about-list li.fixed:before {
84
+ content: "\f107";
85
+ color:green;
86
+ }
87
+
88
+ .modula-about-list li.added:before {
89
+ content: "\f132";
90
+ color:blue;
91
+ }
92
+
93
+ .modula-about-list li.removed:before {
94
+ content: "\f182";
95
+ color:red;
96
+ }
97
+
98
+
99
+ .modula-about-list li.changed:before {
100
+ content: "\f111";
101
+ color:yellowgreen;
102
+ }
103
+
assets/css/admin/addons.css CHANGED
@@ -1,290 +1,290 @@
1
- .modula-addons-container,
2
- .modula-free-addons-container{
3
- display: flex;
4
- justify-content: space-between;
5
- flex-wrap: wrap;
6
- padding-top:28px;
7
- }
8
-
9
- .modula-addons-container.hidden,
10
- .modula-free-addons-container.hidden {
11
- display : none;
12
- }
13
-
14
- .modula-addon {
15
- width: 100%;
16
- margin-bottom: 10px;
17
- background-color: #fff;
18
- border: 1px solid #ddd;
19
- box-sizing: border-box;
20
- padding-bottom:60px;
21
- position: relative;
22
- }
23
-
24
- @media screen and (min-width: 1100px) {
25
- .modula-addon {
26
- width: calc( 50% - 10px );
27
- margin-right: 10px;
28
- }
29
- }
30
-
31
- @media screen and (min-width: 1400px) {
32
- .modula-addon {
33
- width: calc( 25% - 10px );
34
- border-radius:5px;
35
- }
36
- }
37
-
38
- .modula-addon .modula-addon-box {
39
- display: block;
40
- padding: 20px 20px 10px;
41
- text-align: center;
42
- }
43
- .modula-addon .modula-addon-box img {
44
- display: block;
45
- max-width: 50px;
46
- max-height: 50px;
47
- margin:0 auto;
48
- }
49
- .modula-addon .modula-addon-box h3 {
50
- margin-top: 15px;
51
- text-align: center;
52
- }
53
- .modula-addon .modula-addon-actions,
54
- .modula-addon .modula-free-addon-actions{
55
- padding: 6px 20px;
56
- background-color: #fafafa;
57
- border-top: 1px solid #ddd;
58
- overflow: hidden;
59
- text-align: center;
60
- display:flex;
61
- justify-content: space-between;
62
- flex-wrap:wrap;
63
- bottom: 0;
64
- position: absolute;
65
- width: calc(100% - 40px);
66
- align-items: center;
67
- height: 30px;
68
- flex-flow: row-reverse;
69
- }
70
-
71
- .modula-addon-info {
72
- width: calc(100% - 40px);
73
- padding: 6px 20px;
74
- }
75
-
76
- /* Style Partners */
77
- .modula-partners {
78
- display: flex;
79
- flex-wrap: wrap;
80
- /*justify-content: space-between;*/
81
- }
82
- .modula-partners .modula-partner-box {
83
- background: #fff;
84
- border: 1px solid #e5e5e5;
85
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
86
- padding: 15px 15px 0;
87
- margin: 15px 0;
88
- position: relative;
89
- text-align: center;
90
- width: 33%;
91
- margin-right: 3%;
92
- }
93
- .modula-partner-box img {
94
- width: 125px;
95
- height: 125px;
96
- margin: 0 auto;
97
- margin-bottom: 15px;
98
- display: block;
99
- border: none;
100
- }
101
- .modula-partner-box__name {
102
- margin-bottom: 10px;
103
- padding: 0 26px;
104
- font-weight: 600;
105
- }
106
- .modula-partner-box__description {
107
- font-size: 0.875em;
108
- margin-bottom: 15px;
109
- font-style: italic;
110
- }
111
- .modula-partner-box__action-bar {
112
- -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, .1);
113
- box-shadow: inset 0 1px 0 rgba(0, 0, 0, .1);
114
- white-space: nowrap;
115
- text-overflow: ellipsis;
116
- text-align: left;
117
- margin-left: -15px;
118
- margin-right: -15px;
119
- }
120
- .modula-partner-box__action-button {
121
- display: block;
122
- padding: 9px 10px 10px;
123
- background: #f6f6f6;
124
- border-top: 1px solid rgba(0, 0, 0, .1);
125
- text-align: center;
126
- /*width: 100%;*/
127
- }
128
- .about-wrap {
129
- margin: 0;
130
- }
131
- .about-wrap h2 {
132
- margin-top: 25px;
133
- }
134
-
135
- #modula-reload-extensions {
136
- top : 2px;
137
- position : relative;
138
- margin-left : 25px;
139
- margin-right : 10px;
140
- }
141
-
142
- #modula-reload-extensions.updating-message:before {
143
- font-size : 16px;
144
- margin : 6px 2px 0 2px;
145
- }
146
-
147
- #modula-reload-extensions > span {
148
- vertical-align: middle;
149
- font-size: 16px;
150
- }
151
-
152
- #modula-reload-extensions.updating-message > span {
153
- display:none;
154
- }
155
-
156
- .last-reloaded-extensions {
157
- position:relative;
158
- top:5px;
159
- margin-left: 15px;
160
- font-style: italic;
161
- color: rgb(102, 102, 102);
162
- }
163
-
164
- .reload-extensions-wrapper {
165
- float : right;
166
- }
167
-
168
- .modula-addon-info * {
169
- display:inline-block;
170
- vertical-align:middle;
171
- margin-right:10px;
172
- }
173
-
174
- .modula-addon-version {
175
- margin-bottom:15px;
176
- display:block;
177
- }
178
-
179
- /**
180
- Toggles
181
- */
182
-
183
- /* Toggles */
184
- .modula-toggle {
185
- position : relative;
186
- user-select : none;
187
- display : inline-block;
188
- }
189
-
190
- .modula-toggle__items {
191
- box-sizing : border-box;
192
- display : inline-block;
193
- position : relative;
194
- }
195
-
196
- .modula-toggle__items > * {
197
- box-sizing : inherit;
198
- }
199
-
200
- .modula-toggle__input[type=checkbox],
201
- body .media-modal-content .attachment-details .modula-toggle__input[type=checkbox] {
202
- border-radius : 2px;
203
- border : 2px solid #6c7781;
204
- margin-right : 12px;
205
- transition : none;
206
- height : 100%;
207
- left : 0;
208
- top : 0;
209
- margin : 0;
210
- padding : 0;
211
- opacity : 0;
212
- position : absolute;
213
- width : 100%;
214
- z-index : 1;
215
- }
216
-
217
- .modula-toggle__track,
218
- body .media-modal-content .attachment-details .modula-toggle__track {
219
- background-color : #fff;
220
- border : 2px solid #6c7781;
221
- border-radius : 9px;
222
- display : inline-block;
223
- height : 18px;
224
- width : 36px;
225
- vertical-align : top;
226
- transition : background .2s ease;
227
- }
228
-
229
- .modula-toggle__thumb,
230
- body .media-modal-content .attachment-details .modula-toggle__thumb {
231
- background-color : #6c7781;
232
- border : 5px solid #6c7781;
233
- border-radius : 50%;
234
- display : block;
235
- height : 10px;
236
- width : 10px;
237
- position : absolute;
238
- left : 4px;
239
- top : 4px;
240
- transition : transform .2s ease;
241
- }
242
-
243
- body .media-modal-content .attachment-details .modula-toggle__thumb,
244
- body .media-modal-content .attachment-details .modula-toggle__track {
245
- min-width : auto;
246
- min-height : auto;
247
- float : none;
248
- padding : 0;
249
- }
250
-
251
- .modula-toggle__off {
252
- position : absolute;
253
- right : 6px;
254
- top : 6px;
255
- color : #6c7781;
256
- fill : currentColor;
257
- }
258
-
259
- .modula-toggle__on {
260
- position : absolute;
261
- top : 6px;
262
- left : 8px;
263
- border : 1px solid #fff;
264
- outline : 1px solid transparent;
265
- outline-offset : -1px;
266
- display : none;
267
- }
268
-
269
- .modula-toggle__input[type=checkbox]:checked + .modula-toggle__items .modula-toggle__track {
270
- background-color : #11a0d2;
271
- border : 9px solid transparent;
272
- }
273
-
274
- .modula-toggle__input[type=checkbox]:checked + .modula-toggle__items .modula-toggle__thumb {
275
- background-color : #fff;
276
- border-width : 0;
277
- transform : translateX(18px);
278
- }
279
-
280
- .modula-toggle__input[type=checkbox]:checked + .modula-toggle__items .modula-toggle__off {
281
- display : none;
282
- }
283
-
284
- .modula-toggle__input[type=checkbox]:checked + .modula-toggle__items .modula-toggle__on {
285
- display : inline-block;
286
- }
287
-
288
- /**
289
- End Toggles
290
  */
1
+ .modula-addons-container,
2
+ .modula-free-addons-container{
3
+ display: flex;
4
+ justify-content: space-between;
5
+ flex-wrap: wrap;
6
+ padding-top:28px;
7
+ }
8
+
9
+ .modula-addons-container.hidden,
10
+ .modula-free-addons-container.hidden {
11
+ display : none;
12
+ }
13
+
14
+ .modula-addon {
15
+ width: 100%;
16
+ margin-bottom: 10px;
17
+ background-color: #fff;
18
+ border: 1px solid #ddd;
19
+ box-sizing: border-box;
20
+ padding-bottom:60px;
21
+ position: relative;
22
+ }
23
+
24
+ @media screen and (min-width: 1100px) {
25
+ .modula-addon {
26
+ width: calc( 50% - 10px );
27
+ margin-right: 10px;
28
+ }
29
+ }
30
+
31
+ @media screen and (min-width: 1400px) {
32
+ .modula-addon {
33
+ width: calc( 25% - 10px );
34
+ border-radius:5px;
35
+ }
36
+ }
37
+
38
+ .modula-addon .modula-addon-box {
39
+ display: block;
40
+ padding: 20px 20px 10px;
41
+ text-align: center;
42
+ }
43
+ .modula-addon .modula-addon-box img {
44
+ display: block;
45
+ max-width: 50px;
46
+ max-height: 50px;
47
+ margin:0 auto;
48
+ }
49
+ .modula-addon .modula-addon-box h3 {
50
+ margin-top: 15px;
51
+ text-align: center;
52
+ }
53
+ .modula-addon .modula-addon-actions,
54
+ .modula-addon .modula-free-addon-actions{
55
+ padding: 6px 20px;
56
+ background-color: #fafafa;
57
+ border-top: 1px solid #ddd;
58
+ overflow: hidden;
59
+ text-align: center;
60
+ display:flex;
61
+ justify-content: space-between;
62
+ flex-wrap:wrap;
63
+ bottom: 0;
64
+ position: absolute;
65
+ width: calc(100% - 40px);
66
+ align-items: center;
67
+ height: 30px;
68
+ flex-flow: row-reverse;
69
+ }
70
+
71
+ .modula-addon-info {
72
+ width: calc(100% - 40px);
73
+ padding: 6px 20px;
74
+ }
75
+
76
+ /* Style Partners */
77
+ .modula-partners {
78
+ display: flex;
79
+ flex-wrap: wrap;
80
+ /*justify-content: space-between;*/
81
+ }
82
+ .modula-partners .modula-partner-box {
83
+ background: #fff;
84
+ border: 1px solid #e5e5e5;
85
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
86
+ padding: 15px 15px 0;
87
+ margin: 15px 0;
88
+ position: relative;
89
+ text-align: center;
90
+ width: 33%;
91
+ margin-right: 3%;
92
+ }
93
+ .modula-partner-box img {
94
+ width: 125px;
95
+ height: 125px;
96
+ margin: 0 auto;
97
+ margin-bottom: 15px;
98
+ display: block;
99
+ border: none;
100
+ }
101
+ .modula-partner-box__name {
102
+ margin-bottom: 10px;
103
+ padding: 0 26px;
104
+ font-weight: 600;
105
+ }
106
+ .modula-partner-box__description {
107
+ font-size: 0.875em;
108
+ margin-bottom: 15px;
109
+ font-style: italic;
110
+ }
111
+ .modula-partner-box__action-bar {
112
+ -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, .1);
113
+ box-shadow: inset 0 1px 0 rgba(0, 0, 0, .1);
114
+ white-space: nowrap;
115
+ text-overflow: ellipsis;
116
+ text-align: left;
117
+ margin-left: -15px;
118
+ margin-right: -15px;
119
+ }
120
+ .modula-partner-box__action-button {
121
+ display: block;
122
+ padding: 9px 10px 10px;
123
+ background: #f6f6f6;
124
+ border-top: 1px solid rgba(0, 0, 0, .1);
125
+ text-align: center;
126
+ /*width: 100%;*/
127
+ }
128
+ .about-wrap {
129
+ margin: 0;
130
+ }
131
+ .about-wrap h2 {
132
+ margin-top: 25px;
133
+ }
134
+
135
+ #modula-reload-extensions {
136
+ top : 2px;
137
+ position : relative;
138
+ margin-left : 25px;
139
+ margin-right : 10px;
140
+ }
141
+
142
+ #modula-reload-extensions.updating-message:before {
143
+ font-size : 16px;
144
+ margin : 6px 2px 0 2px;
145
+ }
146
+
147
+ #modula-reload-extensions > span {
148
+ vertical-align: middle;
149
+ font-size: 16px;
150
+ }
151
+
152
+ #modula-reload-extensions.updating-message > span {
153
+ display:none;
154
+ }
155
+
156
+ .last-reloaded-extensions {
157
+ position:relative;
158
+ top:5px;
159
+ margin-left: 15px;
160
+ font-style: italic;
161
+ color: rgb(102, 102, 102);
162
+ }
163
+
164
+ .reload-extensions-wrapper {
165
+ float : right;
166
+ }
167
+
168
+ .modula-addon-info * {
169
+ display:inline-block;
170
+ vertical-align:middle;
171
+ margin-right:10px;
172
+ }
173
+
174
+ .modula-addon-version {
175
+ margin-bottom:15px;
176
+ display:block;
177
+ }
178
+
179
+ /**
180
+ Toggles
181
+ */
182
+
183
+ /* Toggles */
184
+ .modula-toggle {
185
+ position : relative;
186
+ user-select : none;
187
+ display : inline-block;
188
+ }
189
+
190
+ .modula-toggle__items {
191
+ box-sizing : border-box;
192
+ display : inline-block;
193
+ position : relative;
194
+ }
195
+
196
+ .modula-toggle__items > * {
197
+ box-sizing : inherit;
198
+ }
199
+
200
+ .modula-toggle__input[type=checkbox],
201
+ body .media-modal-content .attachment-details .modula-toggle__input[type=checkbox] {
202
+ border-radius : 2px;
203
+ border : 2px solid #6c7781;
204
+ margin-right : 12px;
205
+ transition : none;
206
+ height : 100%;
207
+ left : 0;
208
+ top : 0;
209
+ margin : 0;
210
+ padding : 0;
211
+ opacity : 0;
212
+ position : absolute;
213
+ width : 100%;
214
+ z-index : 1;
215
+ }
216
+
217
+ .modula-toggle__track,
218
+ body .media-modal-content .attachment-details .modula-toggle__track {
219
+ background-color : #fff;
220
+ border : 2px solid #6c7781;
221
+ border-radius : 9px;
222
+ display : inline-block;
223
+ height : 18px;
224
+ width : 36px;
225
+ vertical-align : top;
226
+ transition : background .2s ease;
227
+ }
228
+
229
+ .modula-toggle__thumb,
230
+ body .media-modal-content .attachment-details .modula-toggle__thumb {
231
+ background-color : #6c7781;
232
+ border : 5px solid #6c7781;
233
+ border-radius : 50%;
234
+ display : block;
235
+ height : 10px;
236
+ width : 10px;
237
+ position : absolute;
238
+ left : 4px;
239
+ top : 4px;
240
+ transition : transform .2s ease;
241
+ }
242
+
243
+ body .media-modal-content .attachment-details .modula-toggle__thumb,
244
+ body .media-modal-content .attachment-details .modula-toggle__track {
245
+ min-width : auto;
246
+ min-height : auto;
247
+ float : none;
248
+ padding : 0;
249
+ }
250
+
251
+ .modula-toggle__off {
252
+ position : absolute;
253
+ right : 6px;
254
+ top : 6px;
255
+ color : #6c7781;
256
+ fill : currentColor;
257
+ }
258
+
259
+ .modula-toggle__on {
260
+ position : absolute;
261
+ top : 6px;
262
+ left : 8px;
263
+ border : 1px solid #fff;
264
+ outline : 1px solid transparent;
265
+ outline-offset : -1px;
266
+ display : none;
267
+ }
268
+
269
+ .modula-toggle__input[type=checkbox]:checked + .modula-toggle__items .modula-toggle__track {
270
+ background-color : #11a0d2;
271
+ border : 9px solid transparent;
272
+ }
273
+
274
+ .modula-toggle__input[type=checkbox]:checked + .modula-toggle__items .modula-toggle__thumb {
275
+ background-color : #fff;
276
+ border-width : 0;
277
+ transform : translateX(18px);
278
+ }
279
+
280
+ .modula-toggle__input[type=checkbox]:checked + .modula-toggle__items .modula-toggle__off {
281
+ display : none;
282
+ }
283
+
284
+ .modula-toggle__input[type=checkbox]:checked + .modula-toggle__items .modula-toggle__on {
285
+ display : inline-block;
286
+ }
287
+
288
+ /**
289
+ End Toggles
290
  */
assets/css/admin/edit.css CHANGED
@@ -1,214 +1,214 @@
1
- .post-type-modula-gallery:not( .single-modula-gallery ) .wrap h1.wp-heading-inline,
2
- .post-type-modula-gallery:not( .single-modula-gallery ) .wrap > .page-title-action {
3
- display: none;
4
- }
5
- .post-type-modula-gallery .wrap .nav-tab-wrapper .page-title-action {
6
- top: 7px;
7
- }
8
-
9
- /* Copy Shortcode */
10
- .modula-copy-shortcode {
11
- display: flex;
12
- align-items: center;
13
- flex-wrap: wrap;
14
- }
15
- .modula-copy-shortcode input {
16
- margin: 0;
17
- border-top-right-radius: 0;
18
- border-bottom-right-radius: 0;
19
- flex-grow: 1;
20
- width: calc(100% - 60px);
21
- }
22
- .modula-copy-shortcode span {
23
- width: 100%;
24
- }
25
- .wp-core-ui .modula-copy-shortcode a.button-primary {
26
- height: 30px;
27
- border-top-left-radius: 0;
28
- border-bottom-left-radius: 0;
29
- }
30
- .column-shortcode .modula-copy-shortcode {
31
- max-width: 300px;
32
- }
33
-
34
- tbody#the-list .no-items {
35
- text-align: center;
36
- }
37
-
38
- @keyframes modula-modal__fade-in-animation {
39
- from {
40
- opacity: 0;
41
- }
42
- to {
43
- opacity: 1;
44
- }
45
- }
46
-
47
- @keyframes modula-modal__appear-animation {
48
- from {
49
- margin-top: 32px;
50
- }
51
- to {
52
- margin-top: 0;
53
- }
54
- }
55
-
56
- .modula-modal__overlay {
57
- position: fixed;
58
- top: 0;
59
- bottom: 0;
60
- left: 0;
61
- right: 0;
62
- display: flex;
63
- justify-content: center;
64
- align-items: center;
65
- background-color: rgba(0, 0, 0, 0.35);
66
- z-index: 100000;
67
- animation: modula-modal__fade-in-animation 0.2s ease-out 0s;
68
- animation-fill-mode: forwards;
69
- }
70
-
71
- .modula-modal__frame {
72
- position: relative;
73
- box-sizing: border-box;
74
- background: #fff;
75
- width: 450px;
76
- max-height: 90vh;
77
- overflow: auto;
78
- animation: modula-modal__appear-animation 0.1s ease-out;
79
- animation-fill-mode: forwards;
80
- box-shadow: 0 3px 30px rgb(0 0 0 / 20%);
81
- }
82
-
83
- @media screen and (max-width: 800px) {
84
- .modula-modal__frame {
85
- width: auto;
86
- margin: 20px;
87
- }
88
- }
89
-
90
- .modula-modal__header {
91
- position: sticky;
92
- top: 0;
93
- left: 0;
94
- right: 0;
95
- }
96
-
97
- .modula-modal__dismiss {
98
- position: absolute;
99
- top: 0;
100
- right: 0;
101
- display: inline-flex;
102
- justify-content: center;
103
- height: 36px;
104
- min-width: 36px;
105
- margin: 8px;
106
- padding: 6px;
107
- border: 0;
108
- cursor: pointer;
109
- -webkit-appearance: none;
110
- background: none;
111
- transition: box-shadow 0.1s linear;
112
- border-radius: 2px;
113
- }
114
-
115
- .modula-modal__dismiss:focus {
116
- box-shadow: 0 0 0 2px #007cba;
117
- outline: 3px solid transparent;
118
- }
119
-
120
- .modula-modal__dismiss:hover svg {
121
- fill: #2271b1;
122
- }
123
-
124
- .modula-modal__body {
125
- padding: 40px 25px 40px;
126
- }
127
-
128
- @media screen and (max-width: 800px) {
129
- .modula-modal__body {
130
- padding: 30px 30px 40px;
131
- }
132
- }
133
-
134
-
135
- .modula-upsells-carousel-wrapper-modal{
136
- position: relative;
137
- display:flex;
138
- }
139
-
140
- .modula-upsells-carousel-modal {
141
- /*animation: carousel 20s infinite;*/
142
- flex-shrink: 0;
143
- position: relative;
144
- /* display:flex;*/
145
- display:block;
146
- width:100%;
147
- }
148
-
149
- .modula-upsells-carousel-modal .modula-upsell-item-modal {
150
- position: relative;
151
- width:100%;
152
- flex-shrink: 0;
153
- margin-top:0;
154
-
155
- }
156
-
157
- .modula-upsells-carousel-modal .modula-upsell-item-modal {
158
- text-align: center;
159
- }
160
-
161
- .modula-upsells-carousel-modal .modula-upsell-item-modal ul.modula-upsells-list-modal {
162
- padding-left:40px;
163
- }
164
-
165
- .modula-upsells-carousel-modal .modula-upsell-item-modal ul li {
166
- position: relative;
167
- list-style-type: none !important;
168
- text-align:left;
169
- }
170
-
171
- #modula-albums-upsell-modal .modula-upsells-carousel-modal .modula-upsell-item-modal ul li {
172
- display: inline-block;
173
- margin: 0px 15px 15px 35px;
174
- }
175
-
176
- .modula-upsells-carousel-modal .modula-upsell-item-modal ul li:before {
177
- font-family: Dashicons;
178
- content: "\f147";
179
- position: absolute;
180
- left: -30px;
181
- font-size: 14px;
182
- color: green;
183
- background-color: #FFF;
184
- padding: 0 3px;
185
- border-radius: 50%;
186
- border: 1px solid #DDD;
187
- top: -1px;
188
- }
189
-
190
-
191
- .modula-upsell-modal ul.modula-upsell-features li span.modula-check {
192
- display: inline-block;
193
- color: green;
194
- background-color: #FFF;
195
- border-radius: 50%;
196
- border: 1px solid #DDD;
197
- display: inline-block;
198
- margin-right: 5px;
199
- }
200
- .modula-upsell-modal {
201
- border: 0;
202
- padding: 15px 0;
203
- }
204
-
205
-
206
- .modula-upsell-modal .button:first-child {
207
- margin-right: 10px;
208
- }
209
-
210
- .modula-upsell-modal .button {
211
- height: 31px;
212
- line-height: 31px;
213
- font-weight: bold;
214
  }
1
+ .post-type-modula-gallery:not( .single-modula-gallery ) .wrap h1.wp-heading-inline,
2
+ .post-type-modula-gallery:not( .single-modula-gallery ) .wrap > .page-title-action {
3
+ display: none;
4
+ }
5
+ .post-type-modula-gallery .wrap .nav-tab-wrapper .page-title-action {
6
+ top: 7px;
7
+ }
8
+
9
+ /* Copy Shortcode */
10
+ .modula-copy-shortcode {
11
+ display: flex;
12
+ align-items: center;
13
+ flex-wrap: wrap;
14
+ }
15
+ .modula-copy-shortcode input {
16
+ margin: 0;
17
+ border-top-right-radius: 0;
18
+ border-bottom-right-radius: 0;
19
+ flex-grow: 1;
20
+ width: calc(100% - 60px);
21
+ }
22
+ .modula-copy-shortcode span {
23
+ width: 100%;
24
+ }
25
+ .wp-core-ui .modula-copy-shortcode a.button-primary {
26
+ height: 30px;
27
+ border-top-left-radius: 0;
28
+ border-bottom-left-radius: 0;
29
+ }
30
+ .column-shortcode .modula-copy-shortcode {
31
+ max-width: 300px;
32
+ }
33
+
34
+ tbody#the-list .no-items {
35
+ text-align: center;
36
+ }
37
+
38
+ @keyframes modula-modal__fade-in-animation {
39
+ from {
40
+ opacity: 0;
41
+ }
42
+ to {
43
+ opacity: 1;
44
+ }
45
+ }
46
+
47
+ @keyframes modula-modal__appear-animation {
48
+ from {
49
+ margin-top: 32px;
50
+ }
51
+ to {
52
+ margin-top: 0;
53
+ }
54
+ }
55
+
56
+ .modula-modal__overlay {
57
+ position: fixed;
58
+ top: 0;
59
+ bottom: 0;
60
+ left: 0;
61
+ right: 0;
62
+ display: flex;
63
+ justify-content: center;
64
+ align-items: center;
65
+ background-color: rgba(0, 0, 0, 0.35);
66
+ z-index: 100000;
67
+ animation: modula-modal__fade-in-animation 0.2s ease-out 0s;
68
+ animation-fill-mode: forwards;
69
+ }
70
+
71
+ .modula-modal__frame {
72
+ position: relative;
73
+ box-sizing: border-box;
74
+ background: #fff;
75
+ width: 450px;
76
+ max-height: 90vh;
77
+ overflow: auto;
78
+ animation: modula-modal__appear-animation 0.1s ease-out;
79
+ animation-fill-mode: forwards;
80
+ box-shadow: 0 3px 30px rgb(0 0 0 / 20%);
81
+ }
82
+
83
+ @media screen and (max-width: 800px) {
84
+ .modula-modal__frame {
85
+ width: auto;
86
+ margin: 20px;
87
+ }
88
+ }
89
+
90
+ .modula-modal__header {
91
+ position: sticky;
92
+ top: 0;
93
+ left: 0;
94
+ right: 0;
95
+ }
96
+
97
+ .modula-modal__dismiss {
98
+ position: absolute;
99
+ top: 0;
100
+ right: 0;
101
+ display: inline-flex;
102
+ justify-content: center;
103
+ height: 36px;
104
+ min-width: 36px;
105
+ margin: 8px;
106
+ padding: 6px;
107
+ border: 0;
108
+ cursor: pointer;
109
+ -webkit-appearance: none;
110
+ background: none;
111
+ transition: box-shadow 0.1s linear;
112
+ border-radius: 2px;
113
+ }
114
+
115
+ .modula-modal__dismiss:focus {
116
+ box-shadow: 0 0 0 2px #007cba;
117
+ outline: 3px solid transparent;
118
+ }
119
+
120
+ .modula-modal__dismiss:hover svg {
121
+ fill: #2271b1;
122
+ }
123
+
124
+ .modula-modal__body {
125
+ padding: 40px 25px 40px;
126
+ }
127
+
128
+ @media screen and (max-width: 800px) {
129
+ .modula-modal__body {
130
+ padding: 30px 30px 40px;
131
+ }
132
+ }
133
+
134
+
135
+ .modula-upsells-carousel-wrapper-modal{
136
+ position: relative;
137
+ display:flex;
138
+ }
139
+
140
+ .modula-upsells-carousel-modal {
141
+ /*animation: carousel 20s infinite;*/
142
+ flex-shrink: 0;
143
+ position: relative;
144
+ /* display:flex;*/
145
+ display:block;
146
+ width:100%;
147
+ }
148
+
149
+ .modula-upsells-carousel-modal .modula-upsell-item-modal {
150
+ position: relative;
151
+ width:100%;
152
+ flex-shrink: 0;
153
+ margin-top:0;
154
+
155
+ }
156
+
157
+ .modula-upsells-carousel-modal .modula-upsell-item-modal {
158
+ text-align: center;
159
+ }
160
+
161
+ .modula-upsells-carousel-modal .modula-upsell-item-modal ul.modula-upsells-list-modal {
162
+ padding-left:40px;
163
+ }
164
+
165
+ .modula-upsells-carousel-modal .modula-upsell-item-modal ul li {
166
+ position: relative;
167
+ list-style-type: none !important;
168
+ text-align:left;
169
+ }
170
+
171
+ #modula-albums-upsell-modal .modula-upsells-carousel-modal .modula-upsell-item-modal ul li {
172
+ display: inline-block;
173
+ margin: 0px 15px 15px 35px;
174
+ }
175
+
176
+ .modula-upsells-carousel-modal .modula-upsell-item-modal ul li:before {
177
+ font-family: Dashicons;
178
+ content: "\f147";
179
+ position: absolute;
180
+ left: -30px;
181
+ font-size: 14px;
182
+ color: green;
183
+ background-color: #FFF;
184
+ padding: 0 3px;
185
+ border-radius: 50%;
186
+ border: 1px solid #DDD;
187
+ top: -1px;
188
+ }
189
+
190
+
191
+ .modula-upsell-modal ul.modula-upsell-features li span.modula-check {
192
+ display: inline-block;
193
+ color: green;
194
+ background-color: #FFF;
195
+ border-radius: 50%;
196
+ border: 1px solid #DDD;
197
+ display: inline-block;
198
+ margin-right: 5px;
199
+ }
200
+ .modula-upsell-modal {
201
+ border: 0;
202
+ padding: 15px 0;
203
+ }
204
+
205
+
206
+ .modula-upsell-modal .button:first-child {
207
+ margin-right: 10px;
208
+ }
209
+
210
+ .modula-upsell-modal .button {
211
+ height: 31px;
212
+ line-height: 31px;
213
+ font-weight: bold;
214
  }
assets/css/admin/effects.css CHANGED
@@ -1,6655 +1,6655 @@
1
- @media screen and (min-width: 1px) {
2
-
3
- .modula-gallery .modula-items .modula-item .modula-item-overlay {
4
- position: absolute;
5
- width:100%;
6
- height:100%;
7
- z-index: -1;
8
- }
9
-
10
- .modula-gallery .modula-items .modula-item .jtg-title {
11
- margin:0;
12
- }
13
- .modula-gallery .modula-items .modula-item p {
14
- margin:0;
15
- padding: 0;
16
- }
17
- html body .modula-gallery .modula-items .figc {
18
- color: black;
19
- text-align: center;
20
- position: absolute;
21
- left: 0;
22
- width: 100%;
23
- padding:2em;
24
- box-sizing: border-box;
25
- }
26
-
27
- .modula-gallery .modula-item .jtg-social a {
28
- text-decoration: none;
29
- color: #fff;
30
- display: inline-block;
31
- margin:0 10px 0 0;
32
- padding: 0;
33
- border: 0;
34
- opacity: 0;
35
- transition: opacity .3s;
36
- }
37
- .modula-gallery .modula-item:hover .jtg-social a {
38
- opacity: 1;
39
- }
40
-
41
- /* Individual effects */
42
-
43
- /*---------------*/
44
- /***** quiet *****/
45
- /*---------------*/
46
- html body .modula-gallery .modula-items .effect-quiet .jtg-social {
47
- -webkit-transform: translate3d(0,20px,0);
48
- transform: translate3d(0,20px,0);
49
- position: absolute;
50
- bottom: 20px;
51
- width: 100%;
52
- text-align: center;
53
- left: 0;
54
- transition:all .3s;
55
- }
56
- .modula-gallery .modula-items .effect-quiet:hover .jtg-social {
57
- -webkit-transform: translate3d(0,0,0);
58
- transform: translate3d(0,0,0);
59
- }
60
- .modula-gallery .modula-item.effect-quiet .figc {
61
- display: flex;
62
- align-items: center;
63
- justify-content: center;
64
- height: 100%;
65
- }
66
-
67
- .modula-gallery .modula-item.effect-quiet .jtg-title {
68
- -webkit-transition: -webkit-transform 0.35s;
69
- transition: transform 0.35s;
70
- -webkit-transform: translate3d(0,-20px,0);
71
- transform: translate3d(0,-20px,0);
72
- }
73
-
74
- .modula-gallery .modula-item.effect-quiet:hover .figc::before,
75
- .modula-gallery .modula-item.effect-quiet:hover .figc::after {
76
- opacity: 1;
77
- -webkit-transform: scale(1);
78
- transform: scale(1);
79
- }
80
-
81
- .modula-gallery .modula-item.effect-quiet:hover .jtg-title,
82
- .modula-gallery .modula-item.effect-quiet:hover p {
83
- opacity: 1;
84
- -webkit-transform: translate3d(0,0,0);
85
- transform: translate3d(0,0,0);
86
- }
87
-
88
- /*---------------*/
89
- /***** seemo *****/
90
- /*---------------*/
91
- .modula-gallery .modula-item.effect-seemo {
92
- -webkit-perspective: 1000px;
93
- perspective: 1000px;
94
- }
95
-
96
- body .modula-gallery .modula-items .modula-item.tg-loaded.effect-seemo .modula-item-content, body .modula-gallery.modula-columns .modula-items .modula-item.effect-seemo .modula-item-content {
97
- transform:none !important;
98
- }
99
-
100
- .modula-gallery .modula-item.effect-seemo img {
101
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
102
- transition: opacity 0.35s, transform 0.35s;
103
- -webkit-transform: translate3d(0,0,300px);
104
- transform: translate3d(0,0,300px);
105
- }
106
-
107
- .modula-gallery .modula-item.effect-seemo .jtg-title {
108
- width: 100%;
109
- -webkit-transition: -webkit-transform 0.35s;
110
- transition: transform 0.35s;
111
- }
112
-
113
- .modula-gallery .modula-item.effect-seemo .jtg-title {
114
- -webkit-transform: translate3d(0,0px,0) translate3d(0,0,0);
115
- transform: translate3d(0,0,0) translate3d(0,0,0);
116
- }
117
-
118
- .modula-gallery .modula-item.effect-seemo:hover .jtg-title {
119
- -webkit-transform: translate3d(0,-20px,0);
120
- transform: translate3d(0,-20px,0);
121
- }
122
-
123
- .modula-gallery .modula-item.effect-seemo:hover img {
124
- -webkit-transform: translate3d(0,0,0) translate3d(0,0,0);
125
- transform: translate3d(0,0,0) translate3d(0,0,0);
126
- }
127
-
128
- @media all and (max-width:480px){
129
- html body .modula-gallery .modula-item.effect-seemo .jtg-social {
130
- left:0;
131
- right:0;
132
- text-align:center;
133
- }
134
-
135
- html body .modula-gallery .modula-items .modula-item.effect-seemo .jtg-social a {
136
- margin-right:10px;
137
- padding:5px;
138
- }
139
- }
140
-
141
-
142
- /*---------------*/
143
- /***** appear *****/
144
- /*---------------*/
145
- .modula-gallery .modula-item.effect-appear .figc::before {
146
- position: absolute;
147
- bottom: 0;
148
- left: 0;
149
- width: 100%;
150
- height: 2.5%;
151
- background: #fff;
152
- content: '';
153
- -webkit-transform: translate3d(0,10px,0);
154
- transform: translate3d(0,10px,0);
155
- }
156
-
157
- html body .modula-gallery .modula-item.effect-appear .jtg-title {
158
- position: absolute;
159
- bottom: 7.5%;
160
- left: 0;
161
- padding: 6% 5%;
162
- width: 100%;
163
- text-align: left;
164
- -webkit-transform: translate3d(0,-30px,0);
165
- transform: translate3d(0,-30px,0);
166
- }
167
-
168
- @media all and (max-width:480px) {
169
- html body .modula-gallery .modula-item.effect-appear .jtg-title {
170
- bottom:60px;
171
- }
172
-
173
- html body .modula-gallery .modula-item.effect-appear .jtg-social {
174
- left:0;
175
- right:0;
176
- text-align:center;
177
- }
178
-
179
- html body .modula-gallery .modula-items .modula-item.effect-appear .jtg-social a {
180
- margin-right:10px;
181
- padding:5px;
182
- }
183
- }
184
-
185
- .modula-gallery .modula-item.effect-appear .jtg-title i {
186
- font-style: normal;
187
- opacity: 0;
188
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
189
- transition: opacity 0.35s, transform 0.35s;
190
- -webkit-transform: translate3d(0,-30px,0);
191
- transform: translate3d(0,-30px,0);
192
- }
193
-
194
- .modula-gallery .modula-item.effect-appear .jtg-social a:last-of-type {
195
- margin-right: 0;
196
- }
197
-
198
- .modula-gallery .modula-item.effect-appear .figc::before,
199
- .modula-gallery .modula-item.effect-appear .jtg-title {
200
- -webkit-transition: -webkit-transform 0.35s;
201
- transition: transform 0.35s;
202
- }
203
-
204
- .modula-gallery .modula-item.effect-appear:hover .figc::before,
205
- .modula-gallery .modula-item.effect-appear:hover .jtg-title,
206
- .modula-gallery .modula-item.effect-appear:hover .jtg-title i {
207
- opacity: 1;
208
- -webkit-transform: translate3d(0,0,0);
209
- transform: translate3d(0,0,0);
210
- }
211
-
212
- /*---------------*/
213
- /***** crafty *****/
214
- /*---------------*/
215
- .modula-gallery .modula-item.effect-crafty .jtg-title {
216
- margin: 0 0 10px 0;
217
- -webkit-transition: -webkit-transform 0.35s;
218
- transition: transform 0.35s;
219
- -webkit-transform: translate3d(0,50%,0);
220
- transform: translate3d(0,50%,0);
221
- }
222
-
223
- .modula-gallery .modula-item.effect-crafty p {
224
- opacity: 0;
225
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
226
- transition: opacity 0.35s, transform 0.35s;
227
- -webkit-transform: scale(0);
228
- transform: scale(0);
229
- margin-bottom: 10px;
230
- }
231
-
232
- .modula-gallery .modula-item.effect-crafty:hover .jtg-title {
233
- -webkit-transform: translate3d(0,0,0);
234
- transform: translate3d(0,0,0);
235
- }
236
-
237
- .modula-gallery .modula-item.effect-crafty:hover .figc::before,
238
- .modula-gallery .modula-item.effect-crafty:hover p {
239
- opacity: 1;
240
- -webkit-transform: scale(1);
241
- transform: scale(1);
242
- }
243
-
244
-
245
- /*---------------*/
246
- /***** pufrobo *****/
247
- /*---------------*/
248
-
249
- html body .modula-gallery .modula-items .effect-pufrobo .jtg-social {
250
- opacity: 0;
251
- /*transition: opacity 0.1s;*/
252
- right: 30px;
253
- position: absolute;
254
- bottom: 2em;
255
- text-align: right;
256
- transition:all .3s;
257
- }
258
-
259
- .modula-gallery .modula-items .effect-pufrobo:hover .jtg-social {
260
- opacity: 1;
261
- }
262
-
263
- .modula-gallery .modula-items .effect-pufrobo .jtg-social a:last-of-type {
264
- margin-right: 0;
265
- }
266
-
267
- .modula-gallery .modula-item.effect-pufrobo p.description {
268
- margin-bottom: 2em;
269
- }
270
-
271
- html body .modula-gallery .modula-item.effect-pufrobo .figc {
272
- text-align: right;
273
- }
274
-
275
- html body .modula-gallery .modula-item.effect-pufrobo .jtg-title,
276
- html body .modula-gallery .modula-item.effect-pufrobo p {
277
- position: absolute;
278
- right: 30px;
279
- left: 30px;
280
- padding: 10px 0;
281
- text-align: right;
282
- }
283
-
284
- .modula-gallery .modula-item.effect-pufrobo p {
285
- bottom: 20%;
286
- line-height: 1.5;
287
- -webkit-transform: translate3d(0,100%,0);
288
- transform: translate3d(0,100%,0);
289
- letter-spacing: 1px;
290
- }
291
-
292
- .modula-gallery .modula-item.effect-pufrobo .jtg-title {
293
- /*top: 30px;*/
294
- top: 10%;
295
- -webkit-transition: -webkit-transform 0.35s;
296
- transition: transform 0.35s;
297
- -webkit-transform: translate3d(0,20px,0);
298
- transform: translate3d(0,20px,0);
299
- }
300
-
301
- .modula-gallery .modula-item.effect-pufrobo:hover .jtg-title {
302
- -webkit-transform: translate3d(0,0,0);
303
- transform: translate3d(0,0,0);
304
- }
305
-
306
- .modula-gallery .modula-item.effect-pufrobo .jtg-title::after {
307
- position: absolute;
308
- top: 80%;
309
- left: 0;
310
- width: 100%;
311
- height: 4px;
312
- background: #fff;
313
- content: '';
314
- -webkit-transform: translate3d(0,40px,0);
315
- transform: translate3d(0,40px,0);
316
- }
317
-
318
- .modula-gallery .modula-item.effect-pufrobo .jtg-title::after,
319
- .modula-gallery .modula-item.effect-pufrobo p {
320
- opacity: 0;
321
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
322
- transition: opacity 0.35s, transform 0.35s;
323
- }
324
-
325
- .modula-gallery .modula-item.effect-pufrobo:hover .jtg-title::after,
326
- .modula-gallery .modula-item.effect-pufrobo:hover p {
327
- margin-top: 10px;
328
- margin-bottom: 5px;
329
- opacity: 1;
330
- -webkit-transform: translate3d(0,0,0);
331
- transform: translate3d(0,0,0);
332
- }
333
-
334
- /*---------------*/
335
- /***** hide *****/
336
- /*---------------*/
337
-
338
- html body .modula-gallery .modula-items .effect-hide .jtg-social {
339
- -webkit-transform: translate3d(0,-20px,0);
340
- transform: translate3d(0,-20px,0);
341
- position: absolute;
342
- bottom: 5%;
343
- width: 100%;
344
- text-align: center;
345
- left: 0;
346
- transition:all .3s;
347
- }
348
-
349
- html body .modula-gallery .modula-items .effect-hide .jtg-social a {
350
- margin-right:10px;
351
- }
352
-
353
- @media all and (max-width:480px){
354
- html body .modula-gallery .modula-items .effect-hide .jtg-social a {
355
- padding:5px;
356
- }
357
- }
358
-
359
- .modula-gallery .modula-items .effect-hide:hover .jtg-social {
360
- -webkit-transform: translate3d(0,0,0);
361
- transform: translate3d(0,0,0);
362
- }
363
- .modula-gallery .modula-item.effect-hide .figc {
364
- display: flex;
365
- align-items: center;
366
- justify-content: center;
367
- }
368
-
369
- .modula-gallery .modula-item.effect-hide .figc-inner .jtg-title,
370
- .modula-gallery .modula-item.effect-hide .figc-inner p {
371
- margin: 0 20px;
372
- }
373
-
374
- .modula-gallery .modula-item.effect-hide img {
375
- opacity: 1;
376
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
377
- transition: opacity 0.35s, transform 0.35s;
378
- -webkit-transform: scale(1.15);
379
- transform: scale(1.15);
380
- }
381
-
382
- .modula-gallery .modula-item.effect-hide:hover img {
383
- -webkit-transform: scale(1);
384
- transform: scale(1);
385
- }
386
-
387
- .modula-gallery .modula-item.effect-hide .jtg-title {
388
- -webkit-transition: -webkit-transform 0.35s;
389
- transition: transform 0.35s;
390
- -webkit-transform: translate3d(0,20px,0);
391
- transform: translate3d(0,20px,0);
392
- margin-bottom: 10px;
393
- }
394
-
395
- .modula-gallery .modula-item.effect-hide p {
396
- opacity: 0;
397
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
398
- transition: opacity 0.35s, transform 0.35s;
399
- -webkit-transform: translate3d(0,20px,0) scale(1.1);
400
- transform: translate3d(0,20px,0) scale(1.1);
401
- }
402
-
403
- .modula-gallery .modula-item.effect-hide:hover .jtg-title {
404
- -webkit-transform: translate3d(0,0,0);
405
- transform: translate3d(0,0,0);
406
- }
407
-
408
- .modula-gallery .modula-item.effect-hide:hover p {
409
- opacity: 1;
410
- -webkit-transform: translate3d(0,0,0) scale(1);
411
- transform: translate3d(0,0,0) scale(1);
412
- }
413
-
414
- /*---------------*/
415
- /***** Sarah *****/
416
- /*---------------*/
417
-
418
- .modula-gallery .modula-item.effect-sarah {
419
- background: #42b078;
420
- }
421
-
422
- .modula-gallery .modula-item.effect-sarah img {
423
- max-width: none;
424
- min-width: -webkit-calc(100% + 60px) !important;
425
- min-width: calc(100% + 60px) !important;
426
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
427
- transition: opacity 0.35s, transform 0.35s;
428
- -webkit-transform: translate3d(-10px,0,0);
429
- transform: translate3d(-10px,0,0);
430
- -webkit-backface-visibility: hidden;
431
- backface-visibility: hidden;
432
- inset:unset !important;
433
- }
434
-
435
- .modula-gallery.modula-columns .modula-items .modula-item.effect-sarah img.pic {
436
- max-width:none;
437
- }
438
-
439
- .modula-gallery .modula-item.effect-sarah:hover img {
440
- opacity: 0.4;
441
- -webkit-transform: translate3d(0,0,0);
442
- transform: translate3d(0,0,0);
443
- }
444
-
445
- .modula-gallery .modula-item.effect-sarah .figc {
446
- text-align: left;
447
- }
448
-
449
- .modula-gallery .modula-item.effect-sarah .jtg-title {
450
- position: relative;
451
- overflow: hidden;
452
- padding: 20px 0;
453
- }
454
-
455
- .modula-gallery .modula-item.effect-sarah p.description {
456
- padding: 20px 0;
457
- }
458
-
459
- .modula-gallery .modula-item.effect-sarah .jtg-title:before {
460
- display:none;
461
- }
462
-
463
- .modula-gallery .modula-item.effect-sarah .jtg-title::after {
464
- position: absolute;
465
- bottom: 0;
466
- left: 0;
467
- width: 100%;
468
- height: 3px;
469
- background: #fff;
470
- content: '';
471
- -webkit-transition: -webkit-transform 0.35s;
472
- transition: transform 0.35s;
473
- -webkit-transform: translate3d(-100%,0,0);
474
- transform: translate3d(-100%,0,0);
475
- }
476
-
477
- .modula-gallery .modula-item.effect-sarah:hover .jtg-title::after {
478
- -webkit-transform: translate3d(0,0,0);
479
- transform: translate3d(0,0,0);
480
- }
481
-
482
- .modula-gallery .modula-item.effect-sarah p {
483
- padding: 1em 0;
484
- opacity: 0;
485
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
486
- transition: opacity 0.35s, transform 0.35s;
487
- -webkit-transform: translate3d(100%,0,0);
488
- transform: translate3d(100%,0,0);
489
- }
490
-
491
- .modula-gallery .modula-item.effect-sarah:hover p {
492
- opacity: 1;
493
- -webkit-transform: translate3d(0,0,0);
494
- transform: translate3d(0,0,0);
495
- }
496
- .modula-gallery .modula-item.effect-sarah .jtg-social {
497
- left: 30px;
498
- right: auto;
499
- }
500
- .modula-gallery .modula-item.effect-sarah .jtg-social a {
501
- padding:5px;
502
- margin-right:10px;
503
- }
504
-
505
- /*---------------*/
506
- /***** Lily *****/
507
- /*---------------*/
508
-
509
- .modula-gallery .modula-items .modula-item.effect-lily img {
510
- max-width: none;
511
- min-width: -webkit-calc(100% + 50px) !important;
512
- min-width: calc(100% + 50px) !important;
513
- opacity: 0.7;
514
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
515
- transition: opacity 0.35s, transform 0.35s;
516
- -webkit-transform: translate3d(-20px,0, 0);
517
- transform: translate3d(-20px,0,0);
518
-
519
- }
520
-
521
- body .modula-gallery.modula-columns .modula-items .modula-item.effect-lily img.pic {
522
- max-width:none;
523
-
524
- }
525
-
526
- html body .modula-gallery .modula-items .modula-item.effect-lily .figc {
527
- text-align: left;
528
- }
529
-
530
- html body .modula-gallery .modula-items .modula-item.effect-lily .figc > div {
531
- position: absolute;
532
- bottom: 0;
533
- left: 0;
534
- padding: 5%;
535
- width: 100%;
536
- box-sizing: border-box;
537
- }
538
-
539
- .modula-gallery .modula-item.effect-lily .jtg-title,
540
- .modula-gallery .modula-item.effect-lily .jtg-body {
541
- -webkit-transform: translate3d(0,40px,0);
542
- transform: translate3d(0,40px,0);
543
- }
544
-
545
- .modula-gallery .modula-item.effect-lily .jtg-title {
546
- -webkit-transition: -webkit-transform 0.35s;
547
- transition: transform 0.35s;
548
- }
549
-
550
- .modula-gallery .modula-item.effect-lily .jtg-title:before {
551
- displaY:none;
552
- }
553
-
554
- .modula-gallery .modula-item.effect-lily .jtg-body {
555
- color: rgba(255,255,255,0.8);
556
- opacity: 0;
557
- -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
558
- transition: opacity 0.2s, transform 0.35s;
559
- }
560
-
561
- .modula-gallery .modula-item.effect-lily:hover img,
562
- .modula-gallery .modula-item.effect-lily:hover .jtg-body {
563
- opacity: 1;
564
- }
565
-
566
- .modula-gallery .modula-item.effect-lily:hover img,
567
- .modula-gallery .modula-item.effect-lily:hover .jtg-title,
568
- .modula-gallery .modula-item.effect-lily:hover .jtg-body {
569
- -webkit-transform: translate3d(0,0,0);
570
- transform: translate3d(0,0,0);
571
- }
572
-
573
- .modula-gallery .modula-item.effect-lily:hover .jtg-body {
574
- -webkit-transition-delay: 0.05s;
575
- transition-delay: 0.05s;
576
- -webkit-transition-duration: 0.35s;
577
- transition-duration: 0.35s;
578
- z-index:9999;
579
- }
580
-
581
- html body .modula-gallery .modula-items .modula-item.effect-lily .jtg-body .jtg-social {
582
- text-align: left;
583
- margin-top:10px;
584
- }
585
-
586
- @media all and (max-width:480px) {
587
- html body .modula-gallery .modula-items .modula-item.effect-lily .jtg-body .jtg-social a {
588
- margin-right:10px;
589
- padding:5px;
590
- }
591
- }
592
-
593
- /*---------------*/
594
- /***** Sadie *****/
595
- /*---------------*/
596
-
597
- .modula-gallery .modula-item.effect-sadie .figc::before {
598
- position: absolute;
599
- top: 0;
600
- left: 0;
601
- width: 100%;
602
- height: 100%;
603
- background: -webkit-linear-gradient(top, rgba(72,76,97,0) 0%, rgba(72,76,97,0.8) 75%);
604
- background: linear-gradient(to bottom, rgba(72,76,97,0) 0%, rgba(72,76,97,0.8) 75%);
605
- content: '';
606
- opacity: 0;
607
- -webkit-transform: translate3d(0,50%,0);
608
- transform: translate3d(0,50%,0);
609
- }
610
-
611
- .modula-gallery .modula-item.effect-sadie .jtg-title {
612
- position: absolute;
613
- top: 50%;
614
- left: 0;
615
- width: 100%;
616
- color: #484c61;
617
- -webkit-transition: -webkit-transform 0.35s, color 0.35s;
618
- transition: transform 0.35s, color 0.35s;
619
- -webkit-transform: translate3d(0,-50%,0);
620
- transform: translate3d(0,-50%,0);
621
- }
622
-
623
- .modula-gallery .modula-item.effect-sadie .jtg-title:before {
624
- display:none;
625
- }
626
-
627
- .modula-gallery .modula-item.effect-sadie .figc::before,
628
- .modula-gallery .modula-item.effect-sadie .jtg-body {
629
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
630
- transition: opacity 0.35s, transform 0.35s;
631
- }
632
-
633
- .modula-gallery .modula-item.effect-sadie .jtg-body {
634
- position: absolute;
635
- bottom: 0;
636
- left: 0;
637
- padding: 15%;
638
- width: 100%;
639
- opacity: 0;
640
- -webkit-transform: translate3d(0,10px,0);
641
- transform: translate3d(0,10px,0);
642
- z-index:99;
643
- box-sizing: border-box;
644
- }
645
-
646
- .modula-gallery .modula-item.effect-sadie:hover .jtg-title {
647
- color: #fff;
648
- -webkit-transform: translate3d(0,-50%,0) translate3d(0,-40px,0);
649
- transform: translate3d(0,-50%,0) translate3d(0,-40px,0);
650
- }
651
-
652
- .modula-gallery .modula-item.effect-sadie:hover .figc::before ,
653
- .modula-gallery .modula-item.effect-sadie:hover .jtg-body {
654
- opacity: 1;
655
- -webkit-transform: translate3d(0,0,0);
656
- transform: translate3d(0,0,0);
657
- }
658
-
659
- html body .modula-gallery .modula-items .modula-item.effect-sadie .jtg-body .jtg-social {
660
- position: relative;
661
- bottom: auto;
662
- right: auto;
663
- text-align: center;
664
- }
665
-
666
- html body .modula-gallery .modula-items .modula-item.effect-sadie .jtg-body .jtg-social a {
667
- margin-right:10px;
668
- }
669
-
670
- @media all and (max-width:480px) {
671
- html body .modula-gallery .modula-items .modula-item.effect-sadie .jtg-body .jtg-social a {
672
- padding:5px;
673
- }
674
- }
675
-
676
- .modula-gallery .modula-items .modula-item.effect-sadie .jtg-body p.description {
677
- margin-bottom:15px;
678
- }
679
-
680
- /*---------------*/
681
- /***** Roxy *****/
682
- /*---------------*/
683
-
684
- .modula-gallery .modula-item.effect-roxy {
685
- background: -webkit-linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
686
- background: linear-gradient(45deg, #ff89e9 0%,#05abe0 100%);
687
- }
688
-
689
- .modula-gallery .modula-item.effect-roxy img {
690
- max-width: none;
691
- width: -webkit-calc(100% + 60px) !important;
692
- /*width: calc(100% + 60px) !important;*/
693
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
694
- transition: opacity 0.35s, transform 0.35s;
695
- -webkit-transform: translate3d(-50px,0,0);
696
- transform: translate3d(-50px,0,0);
697
- min-width:calc(100% + 100px) !important;
698
- inset:unset;
699
- }
700
-
701
- .modula-gallery.modula-columns .modula-items .modula-item.effect-roxy img.pic {
702
- width: -webkit-calc(100% + 20px) !important;
703
- width: calc(100% + 20px) !important;
704
-
705
- }
706
-
707
- .modula-gallery .modula-item.effect-roxy .figc::before {
708
- position: absolute;
709
- top: 5%;
710
- right: 5%;
711
- bottom: 5%;
712
- left: 5%;
713
- border: 1px solid #fff;
714
- content: '';
715
- opacity: 0;
716
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
717
- transition: opacity 0.35s, transform 0.35s;
718
- -webkit-transform: translate3d(-20px,0,0);
719
- transform: translate3d(-20px,0,0);
720
- }
721
-
722
- html body .modula-gallery .modula-item.effect-roxy .figc {
723
- padding: 10%;
724
- text-align: left;
725
- }
726
-
727
- html body .modula-gallery .modula-item.effect-roxy .figc .figc-inner{
728
- text-align:left;
729
- max-width:85%;
730
- }
731
-
732
- .modula-gallery .modula-item.effect-roxy .jtg-title {
733
- padding: 10px 0 10px 0;
734
- }
735
-
736
- .modula-gallery .modula-item.effect-roxy .jtg-title:before {
737
- display:none;
738
- }
739
-
740
- html body .modula-gallery .modula-item.effect-roxy .jtg-social {
741
- position: relative;
742
- bottom: auto;
743
- right: auto;
744
- text-align: left;
745
- }
746
-
747
- .modula-gallery .modula-item.effect-roxy p,
748
- .modula-gallery .modula-item.effect-roxy .jtg-social {
749
- opacity: 0;
750
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
751
- transition: opacity 0.35s, transform 0.35s;
752
- -webkit-transform: translate3d(-10px,0,0);
753
- transform: translate3d(-10px,0,0);
754
- }
755
-
756
- .modula-gallery .modula-item.effect-roxy:hover img {
757
- opacity: 0.7;
758
- -webkit-transform: translate3d(0,0,0);
759
- transform: translate3d(0,0,0);
760
- }
761
-
762
- .modula-gallery .modula-item.effect-roxy:hover .figc::before,
763
- .modula-gallery .modula-item.effect-roxy:hover p,
764
- .modula-gallery .modula-item.effect-roxy:hover .jtg-social {
765
- opacity: 1;
766
- -webkit-transform: translate3d(0,0,0);
767
- transform: translate3d(0,0,0);
768
- }
769
-
770
- html body .modula-gallery .modula-item.effect-roxy .jtg-social {
771
- margin-top:10px;
772
- }
773
-
774
- html body .modula-gallery .modula-item.effect-roxy .jtg-social a {
775
- padding:5px;
776
- }
777
-
778
- /*---------------*/
779
- /***** Bubba *****/
780
- /*---------------*/
781
-
782
- .modula-gallery .modula-item.effect-bubba {
783
- background: #9e5406;
784
- }
785
-
786
- .modula-gallery .modula-item.effect-bubba img {
787
- opacity: 0.7;
788
- -webkit-transition: opacity 0.35s;
789
- transition: opacity 0.35s;
790
- }
791
-
792
- .modula-gallery .modula-item.effect-bubba:hover img {
793
- opacity: 0.4;
794
- }
795
-
796
- .modula-gallery .modula-item.effect-bubba .figc::before,
797
- .modula-gallery .modula-item.effect-bubba .figc::after {
798
- position: absolute;
799
- top: 5%;
800
- right: 5%;
801
- bottom: 5%;
802
- left: 5%;
803
- content: '';
804
- opacity: 0;
805
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
806
- transition: opacity 0.35s, transform 0.35s;
807
- }
808
-
809
- .modula-gallery .modula-item.effect-bubba .figc::before {
810
- border-top: 1px solid #fff;
811
- border-bottom: 1px solid #fff;
812
- -webkit-transform: scale(0,1);
813
- transform: scale(0,1);
814
- }
815
-
816
- .modula-gallery .modula-item.effect-bubba .figc::after {
817
- border-right: 1px solid #fff;
818
- border-left: 1px solid #fff;
819
- -webkit-transform: scale(1,0);
820
- transform: scale(1,0);
821
- }
822
-
823
- .modula-gallery .modula-item.effect-bubba .jtg-title {
824
- -webkit-transition: -webkit-transform 0.35s;
825
- transition: transform 0.35s;
826
- -webkit-transform: translate3d(0,-100%,0);
827
- transform: translate3d(0,-100%,0);
828
- }
829
-
830
- .modula-gallery .modula-item.effect-bubba .jtg-title:before {
831
- display:none;
832
- }
833
-
834
- .modula-gallery .modula-item.effect-bubba .jtg-body {
835
- padding: 20px 2.5em;
836
- opacity: 0;
837
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
838
- transition: opacity 0.35s, transform 0.35s;
839
- -webkit-transform: translate3d(0,20px,0);
840
- transform: translate3d(0,20px,0);
841
- z-index:999;
842
- }
843
-
844
- .modula-gallery .modula-item.effect-bubba:hover .figc::before,
845
- .modula-gallery .modula-item.effect-bubba:hover .figc::after {
846
- opacity: 1;
847
- -webkit-transform: scale(1);
848
- transform: scale(1);
849
- }
850
-
851
- .modula-gallery .modula-item.effect-bubba:hover .jtg-title,
852
- .modula-gallery .modula-item.effect-bubba:hover .jtg-body {
853
- opacity: 1;
854
- -webkit-transform: translate3d(0,0,0);
855
- transform: translate3d(0,0,0);
856
- }
857
-
858
- html body .modula-gallery .modula-item.effect-bubba .jtg-body .jtg-social {
859
- position: relative;
860
- bottom: auto;
861
- right: auto;
862
- text-align: center;
863
- }
864
-
865
- html body .modula-gallery .modula-item.effect-bubba .jtg-body .jtg-social a {
866
- padding: 5px;
867
- margin-right: 10px;
868
- }
869
-
870
- .modula-gallery .modula-item.effect-bubba .jtg-body p.description {
871
- padding-bottom: 20px;
872
- }
873
-
874
- html body .modula-gallery .modula-item.effect-bubba .figc {
875
- padding:5.5%;
876
- }
877
-
878
- /*---------------*/
879
- /***** Romeo *****/
880
- /*---------------*/
881
-
882
- .modula-gallery .modula-item.effect-romeo {
883
- -webkit-perspective: 1000px;
884
- perspective: 1000px;
885
- }
886
-
887
- .modula-gallery .modula-item.effect-romeo img {
888
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
889
- transition: opacity 0.35s, transform 0.35s;
890
- -webkit-transform: translate3d(0,0,300px);
891
- transform: translate3d(0,0,300px);
892
- }
893
-
894
- .modula-gallery .modula-item.effect-romeo:hover img {
895
- opacity: 0.6;
896
- -webkit-transform: translate3d(0,0,0);
897
- transform: translate3d(0,0,0);
898
- }
899
-
900
- .modula-gallery .modula-item.effect-romeo .figc {
901
- padding: 15%;
902
- }
903
-
904
- .modula-gallery .modula-item.effect-romeo .figc::before,
905
- .modula-gallery .modula-item.effect-romeo .figc::after {
906
- position: absolute;
907
- top: 50%;
908
- left: 50%;
909
- width: 80%;
910
- height: 1px;
911
- background: #fff;
912
- content: '';
913
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
914
- transition: opacity 0.35s, transform 0.35s;
915
- -webkit-transform: translate3d(-50%,-50%,0);
916
- transform: translate3d(-50%,-50%,0);
917
- }
918
-
919
- .modula-gallery .modula-item.effect-romeo:hover .figc::before {
920
- opacity: 0.5;
921
- -webkit-transform: translate3d(-50%,-50%,0) rotate(45deg);
922
- transform: translate3d(-50%,-50%,0) rotate(45deg);
923
- }
924
-
925
- .modula-gallery .modula-item.effect-romeo:hover .figc::after {
926
- opacity: 0.5;
927
- -webkit-transform: translate3d(-50%,-50%,0) rotate(-45deg);
928
- transform: translate3d(-50%,-50%,0) rotate(-45deg);
929
- }
930
-
931
- .modula-gallery .modula-item.effect-romeo .jtg-title,
932
- .modula-gallery .modula-item.effect-romeo .jtg-body {
933
- position: absolute;
934
- top: 50%;
935
- left: 0;
936
- width: 100%;
937
- -webkit-transition: -webkit-transform 0.35s;
938
- transition: transform 0.35s;
939
- }
940
-
941
- .modula-gallery .modula-item.effect-romeo .jtg-title {
942
- -webkit-transform: translate3d(0,-50%,0) translate3d(0,-150%,0);
943
- transform: translate3d(0,-50%,0) translate3d(0,-150%,0);
944
- }
945
-
946
- .modula-gallery .modula-item.effect-romeo .jtg-title:before {
947
- display:none;
948
- }
949
-
950
- .modula-gallery .modula-item.effect-romeo .jtg-body {
951
- padding: 0.25em 2em;
952
- -webkit-transform: translate3d(0,-50%,0) translate3d(0,150%,0);
953
- transform: translate3d(0,-50%,0) translate3d(0,150%,0);
954
- }
955
-
956
- .modula-gallery .modula-item.effect-romeo:hover .jtg-title {
957
- -webkit-transform: translate3d(0,-50%,0) translate3d(0,-100%,0);
958
- transform: translate3d(0,-50%,0) translate3d(0,-100%,0);
959
- }
960
-
961
- .modula-gallery .modula-item.effect-romeo:hover .jtg-body {
962
- -webkit-transform: translate3d(0,-50%,0) translate3d(0,100%,0);
963
- transform: translate3d(0,-50%,0) translate3d(0,100%,0);
964
- }
965
-
966
- /*---------------*/
967
- /***** Layla *****/
968
- /*---------------*/
969
-
970
- .modula-gallery .modula-item.effect-layla {
971
- background: #18a367;
972
- }
973
-
974
- .modula-gallery .modula-item.effect-layla .modula-item-content {
975
- height:100%;
976
- }
977
-
978
- .modula-gallery .modula-item.effect-layla img {
979
- height: 390px;
980
- }
981
-
982
- .modula-gallery .modula-item.effect-layla .figc {
983
- padding: 3em;
984
- }
985
-
986
- .modula-gallery .modula-item.effect-layla .figc::before,
987
- .modula-gallery .modula-item.effect-layla .figc::after {
988
- position: absolute;
989
- content: '';
990
- opacity: 0;
991
- }
992
-
993
- .modula-gallery .modula-item.effect-layla .figc::before {
994
- top: 10%;
995
- right: 5%;
996
- bottom: 10%;
997
- left: 5%;
998
- border-top: 1px solid #fff;
999
- border-bottom: 1px solid #fff;
1000
- -webkit-transform: scale(0,1);
1001
- transform: scale(0,1);
1002
- -webkit-transform-origin: 0 0;
1003
- transform-origin: 0 0;
1004
- }
1005
-
1006
- .modula-gallery .modula-item.effect-layla .figc::after {
1007
- top: 5%;
1008
- right: 10%;
1009
- bottom: 5%;
1010
- left: 10%;
1011
- border-right: 1px solid #fff;
1012
- border-left: 1px solid #fff;
1013
- -webkit-transform: scale(1,0);
1014
- transform: scale(1,0);
1015
- -webkit-transform-origin: 100% 0;
1016
- transform-origin: 100% 0;
1017
- }
1018
-
1019
- .modula-gallery .modula-item.effect-layla .jtg-title {
1020
- padding-top: 26%;
1021
- -webkit-transition: -webkit-transform 0.35s;
1022
- transition: transform 0.35s;
1023
- }
1024
-
1025
- .modula-gallery .modula-item.effect-layla .jtg-title:before {
1026
- display:none;
1027
- }
1028
-
1029
- .modula-gallery .modula-item.effect-layla p {
1030
- padding: 0.5em 2em;
1031
- text-transform: none;
1032
- opacity: 0;
1033
- -webkit-transform: translate3d(0,-10px,0);
1034
- transform: translate3d(0,-10px,0);
1035
- }
1036
-
1037
- .modula-gallery .modula-item.effect-layla img,
1038
- .modula-gallery .modula-item.effect-layla .jtg-title {
1039
- -webkit-transform: translate3d(0,-30px,0);
1040
- transform: translate3d(0,-30px,0);
1041
- min-height:calc(100% + 60px) !important;
1042
- }
1043
-
1044
- .modula-gallery .modula-item.effect-layla img,
1045
- .modula-gallery .modula-item.effect-layla .figc::before,
1046
- .modula-gallery .modula-item.effect-layla .figc::after,
1047
- .modula-gallery .modula-item.effect-layla p {
1048
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1049
- transition: opacity 0.35s, transform 0.35s;
1050
- }
1051
-
1052
- .modula-gallery .modula-item.effect-layla:hover img {
1053
- opacity: 0.7;
1054
- -webkit-transform: translate3d(0,0,0);
1055
- transform: translate3d(0,0,0);
1056
- }
1057
-
1058
- .modula-gallery .modula-item.effect-layla:hover .figc::before,
1059
- .modula-gallery .modula-item.effect-layla:hover .figc::after {
1060
- opacity: 1;
1061
- -webkit-transform: scale(1);
1062
- transform: scale(1);
1063
- }
1064
-
1065
- .modula-gallery .modula-item.effect-layla:hover .jtg-title,
1066
- .modula-gallery .modula-item.effect-layla:hover p {
1067
- opacity: 1;
1068
- -webkit-transform: translate3d(0,0,0);
1069
- transform: translate3d(0,0,0);
1070
- }
1071
-
1072
- .modula-gallery .modula-item.effect-layla:hover figc::after,
1073
- .modula-gallery .modula-item.effect-layla:hover .jtg-title,
1074
- .modula-gallery .modula-item.effect-layla:hover p,
1075
- .modula-gallery .modula-item.effect-layla:hover img {
1076
- -webkit-transition-delay: 0.15s;
1077
- transition-delay: 0.15s;
1078
- }
1079
-
1080
- /*---------------*/
1081
- /***** Honey *****/
1082
- /*---------------*/
1083
-
1084
- .modula-gallery .modula-item.effect-honey {
1085
- background: #4a3753;
1086
- }
1087
-
1088
- .modula-gallery .modula-item.effect-honey img {
1089
- opacity: 0.9;
1090
- -webkit-transition: opacity 0.35s;
1091
- transition: opacity 0.35s;
1092
- }
1093
-
1094
- .modula-gallery .modula-item.effect-honey:hover img {
1095
- opacity: 0.5;
1096
- }
1097
-
1098
- .modula-gallery .modula-item.effect-honey .figc::before {
1099
- position: absolute;
1100
- bottom: 0;
1101
- left: 0;
1102
- width: 100%;
1103
- height: 10px;
1104
- background: #fff;
1105
- content: '';
1106
- -webkit-transform: translate3d(0,10px,0);
1107
- transform: translate3d(0,10px,0);
1108
- }
1109
-
1110
- html body .modula-gallery .modula-item.effect-honey .jtg-title {
1111
- position: absolute;
1112
- bottom: 0;
1113
- left: 0;
1114
- padding: 5% 6%;
1115
- width: 100%;
1116
- text-align: left;
1117
- -webkit-transform: translate3d(0,-30px,0);
1118
- transform: translate3d(0,-30px,0);
1119
- }
1120
-
1121
- .modula-gallery .modula-item.effect-honey .jtg-title:before {
1122
- display:none;
1123
- }
1124
-
1125
- .modula-gallery .modula-item.effect-honey .jtg-title i {
1126
- font-style: normal;
1127
- opacity: 0;
1128
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1129
- transition: opacity 0.35s, transform 0.35s;
1130
- -webkit-transform: translate3d(0,-30px,0);
1131
- transform: translate3d(0,-30px,0);
1132
- }
1133
-
1134
- .modula-gallery .modula-item.effect-honey .figc::before,
1135
- .modula-gallery .modula-item.effect-honey .jtg-title {
1136
- -webkit-transition: -webkit-transform 0.35s;
1137
- transition: transform 0.35s;
1138
- }
1139
-
1140
- .modula-gallery .modula-item.effect-honey:hover .figc::before,
1141
- .modula-gallery .modula-item.effect-honey:hover .jtg-title,
1142
- .modula-gallery .modula-item.effect-honey:hover .jtg-title i {
1143
- opacity: 1;
1144
- -webkit-transform: translate3d(0,0,0);
1145
- transform: translate3d(0,0,0);
1146
- }
1147
-
1148
- /*---------------*/
1149
- /***** Oscar *****/
1150
- /*---------------*/
1151
-
1152
- .modula-gallery .modula-item.effect-oscar {
1153
- background: -webkit-linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
1154
- background: linear-gradient(45deg, #22682a 0%,#9b4a1b 40%,#3a342a 100%);
1155
- }
1156
-
1157
- .modula-gallery .modula-item.effect-oscar img {
1158
- opacity: 0.9;
1159
- -webkit-transition: opacity 0.35s;
1160
- transition: opacity 0.35s;
1161
- }
1162
-
1163
- .modula-gallery .modula-item.effect-oscar .figc {
1164
- padding: 3em;
1165
- background-color: rgba(58,52,42,0.7);
1166
- -webkit-transition: background-color 0.35s;
1167
- transition: background-color 0.35s;
1168
- }
1169
-
1170
- .modula-gallery .modula-item.effect-oscar .figc::before {
1171
- position: absolute;
1172
- top: 7.5%;
1173
- right: 7.5%;
1174
- bottom: 7.5%;
1175
- left: 7.5%;
1176
- border: 1px solid #fff;
1177
- content: '';
1178
- }
1179
-
1180
- /*.modula-gallery .modula-item.effect-oscar div.jtg-title {
1181
- margin: 20% 0 10px 0;
1182
- -webkit-transition: -webkit-transform 0.35s;
1183
- transition: transform 0.35s;
1184
- -webkit-transform: translate3d(0,100%,0);
1185
- transform: translate3d(0,100%,0);
1186
- }*/
1187
-
1188
- .modula-gallery .modula-item.effect-oscar .jtg-title:before {
1189
- display:none;
1190
- }
1191
-
1192
- .modula-gallery .modula-item.effect-oscar .figc::before,
1193
- .modula-gallery .modula-item.effect-oscar p {
1194
- opacity: 0;
1195
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1196
- transition: opacity 0.35s, transform 0.35s;
1197
- -webkit-transform: scale(0);
1198
- transform: scale(0);
1199
- }
1200
-
1201
- /*.modula-gallery .modula-item.effect-oscar:hover .jtg-title {
1202
- -webkit-transform: translate3d(0,0,0);
1203
- transform: translate3d(0,0,0);
1204
- }*/
1205
-
1206
- .modula-gallery .modula-item.effect-oscar:hover .figc::before,
1207
- .modula-gallery .modula-item.effect-oscar:hover p {
1208
- opacity: 1;
1209
- -webkit-transform: scale(1);
1210
- transform: scale(1);
1211
- }
1212
-
1213
- .modula-gallery .modula-item.effect-oscar:hover .figc {
1214
- background-color: rgba(58,52,42,0);
1215
- }
1216
-
1217
- .modula-gallery .modula-item.effect-oscar:hover img {
1218
- opacity: 0.4;
1219
- }
1220
-
1221
- /*---------------*/
1222
- /***** Marley *****/
1223
- /*---------------*/
1224
-
1225
- html body .modula-gallery .modula-item.effect-marley .figc {
1226
- text-align: right;
1227
- }
1228
-
1229
- .modula-gallery .modula-item.effect-marley .jtg-title,
1230
- .modula-gallery .modula-item.effect-marley p {
1231
- position: absolute;
1232
- right: 7.5%;
1233
- left: 7.5%;
1234
- padding: 2.5% 0;
1235
- }
1236
-
1237
-
1238
- .modula-gallery .modula-item.effect-marley p {
1239
- bottom: 7.5%;
1240
- line-height: 1.5;
1241
- -webkit-transform: translate3d(0,100%,0);
1242
- transform: translate3d(0,100%,0);
1243
- }
1244
-
1245
- .modula-gallery .modula-item.effect-marley .jtg-title {
1246
- top: 7.5%;
1247
- -webkit-transition: -webkit-transform 0.35s;
1248
- transition: transform 0.35s;
1249
- -webkit-transform: translate3d(0,20px,0);
1250
- transform: translate3d(0,20px,0);
1251
- }
1252
-
1253
- .modula-gallery .modula-item.effect-marley .jtg-title:before {
1254
- display:none;
1255
- }
1256
-
1257
- .modula-gallery .modula-item.effect-marley:hover .jtg-title {
1258
- -webkit-transform: translate3d(0,0,0);
1259
- transform: translate3d(0,0,0);
1260
- }
1261
-
1262
- .modula-gallery .modula-item.effect-marley .jtg-title::after {
1263
- position: absolute;
1264
- top: 100%;
1265
- left: 0;
1266
- width: 100%;
1267
- height: 4px;
1268
- background: #fff;
1269
- content: '';
1270
- -webkit-transform: translate3d(0,40px,0);
1271
- transform: translate3d(0,40px,0);
1272
- }
1273
-
1274
- .modula-gallery .modula-item.effect-marley .jtg-title::after,
1275
- .modula-gallery .modula-item.effect-marley p {
1276
- opacity: 0;
1277
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1278
- transition: opacity 0.35s, transform 0.35s;
1279
- }
1280
-
1281
- .modula-gallery .modula-item.effect-marley:hover .jtg-title::after,
1282
- .modula-gallery .modula-item.effect-marley:hover p {
1283
- opacity: 1;
1284
- -webkit-transform: translate3d(0,0,0);
1285
- transform: translate3d(0,0,0);
1286
- }
1287
-
1288
- /*---------------*/
1289
- /***** Ruby *****/
1290
- /*---------------*/
1291
-
1292
- .modula-gallery .modula-item.effect-ruby {
1293
- background-color: #17819c;
1294
- }
1295
-
1296
- .modula-gallery .modula-item.effect-ruby .figc {
1297
- padding: 5%;
1298
- }
1299
-
1300
- .modula-gallery .modula-item.effect-ruby .figc .figc-inner {
1301
- min-width:60%;
1302
- max-width:90%;
1303
- }
1304
-
1305
- .modula-gallery .modula-item.effect-ruby img {
1306
- opacity: 0.7;
1307
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1308
- transition: opacity 0.35s, transform 0.35s;
1309
- -webkit-transform: scale(1.15);
1310
- transform: scale(1.15);
1311
- }
1312
-
1313
- .modula-gallery .modula-item.effect-ruby:hover img {
1314
- opacity: 0.5;
1315
- -webkit-transform: scale(1);
1316
- transform: scale(1);
1317
- }
1318
-
1319
- .modula-gallery .modula-item.effect-ruby .jtg-title {
1320
- margin-top: 20%;
1321
- -webkit-transition: -webkit-transform 0.35s;
1322
- transition: transform 0.35s;
1323
- -webkit-transform: translate3d(0,20px,0);
1324
- transform: translate3d(0,20px,0);
1325
- }
1326
-
1327
- .modula-gallery .modula-item.effect-ruby .jtg-title:before {
1328
- display:none;
1329
- }
1330
-
1331
- .modula-gallery .modula-item.effect-ruby .jtg-body {
1332
- margin: 2.5% 0 0;
1333
- padding: 5%;
1334
- border: 1px solid #fff;
1335
- opacity: 0;
1336
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1337
- transition: opacity 0.35s, transform 0.35s;
1338
- -webkit-transform: translate3d(0,20px,0) scale(1.1);
1339
- transform: translate3d(0,20px,0) scale(1.1);
1340
- z-index:10;
1341
- }
1342
-
1343
- .modula-gallery .modula-item.effect-ruby:hover .jtg-title {
1344
- -webkit-transform: translate3d(0,0,0);
1345
- transform: translate3d(0,0,0);
1346
- }
1347
-
1348
- .modula-gallery .modula-item.effect-ruby:hover .jtg-body {
1349
- opacity: 1;
1350
- -webkit-transform: translate3d(0,0,0) scale(1);
1351
- transform: translate3d(0,0,0) scale(1);
1352
- }
1353
-
1354
- html body .modula-gallery .modula-item.effect-ruby .jtg-body .jtg-social {
1355
- position: relative;
1356
- bottom: auto;
1357
- right: auto;
1358
- width: 100%;
1359
- text-align: center;
1360
- margin-top:15px;
1361
- }
1362
-
1363
- html body .modula-gallery .modula-item.effect-ruby .jtg-body .jtg-social a {
1364
- padding:5px;
1365
- margin-right:10px;
1366
- }
1367
-
1368
- /*---------------*/
1369
- /***** Milo *****/
1370
- /*---------------*/
1371
-
1372
- .modula-gallery .modula-item.effect-milo {
1373
- background: #2e5d5a;
1374
- }
1375
-
1376
- .modula-gallery .modula-item.effect-milo img {
1377
- max-width: none;
1378
- min-width: -webkit-calc(100% + 60px) !important;
1379
- min-width: calc(100% + 60px) !important;
1380
- opacity: 1;
1381
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1382
- transition: opacity 0.35s, transform 0.35s;
1383
- -webkit-transform: translate3d(-30px,0,0) scale(1.12);
1384
- transform: translate3d(-30px,0,0) scale(1.12);
1385
- -webkit-backface-visibility: hidden;
1386
- backface-visibility: hidden;
1387
- }
1388
-
1389
- .modula-gallery.modula-columns .modula-items .modula-item.effect-milo img {
1390
- max-width:none;
1391
- }
1392
-
1393
- .modula-gallery .modula-item.effect-milo:hover img {
1394
- opacity: 0.5;
1395
- -webkit-transform: translate3d(0,0,0) scale(1);
1396
- transform: translate3d(0,0,0) scale(1);
1397
- }
1398
-
1399
- .modula-gallery .modula-item.effect-milo .jtg-title {
1400
- position: absolute;
1401
- right: 0;
1402
- bottom: 0;
1403
- padding: 1em 1.2em;
1404
- }
1405
-
1406
- html body .modula-gallery .modula-items .modula-item.effect-milo p {
1407
- padding: 0 10px 0 0;
1408
- width: 50%;
1409
- border-right: 1px solid #fff;
1410
- text-align: right;
1411
- opacity: 0;
1412
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1413
- transition: opacity 0.35s, transform 0.35s;
1414
- -webkit-transform: translate3d(-40px,0,0);
1415
- transform: translate3d(-40px,0,0);
1416
- }
1417
-
1418
- .modula-gallery .modula-item.effect-milo:hover p {
1419
- opacity: 1;
1420
- -webkit-transform: translate3d(0,0,0);
1421
- transform: translate3d(0,0,0);
1422
- }
1423
-
1424
- /*---------------*/
1425
- /***** Dexter *****/
1426
- /*---------------*/
1427
-
1428
- .modula-gallery .modula-item.effect-dexter {
1429
- background: -webkit-linear-gradient(top, rgba(37,141,200,1) 0%, rgba(104,60,19,1) 100%);
1430
- background: linear-gradient(to bottom, rgba(37,141,200,1) 0%,rgba(104,60,19,1) 100%);
1431
- }
1432
-
1433
- .modula-gallery .modula-item.effect-dexter .jtg-title:before {
1434
- display:none;
1435
- }
1436
-
1437
- .modula-gallery .modula-item.effect-dexter img {
1438
- -webkit-transition: opacity 0.35s;
1439
- transition: opacity 0.35s;
1440
- }
1441
-
1442
- .modula-gallery .modula-item.effect-dexter:hover img {
1443
- opacity: 0.4;
1444
- }
1445
-
1446
- .modula-gallery .modula-item.effect-dexter .figc::after {
1447
- position: absolute;
1448
- right: 5%;
1449
- bottom: 5%;
1450
- left: 5%;
1451
- height: -webkit-calc(60% - 10px) !important;
1452
- height: calc(60% - 10px) !important;
1453
- border: 7px solid #fff;
1454
- content: '';
1455
- -webkit-transition: -webkit-transform 0.35s;
1456
- transition: transform 0.35s;
1457
- -webkit-transform: translate3d(0,-60%,0);
1458
- transform: translate3d(0,-60%,0);
1459
- }
1460
-
1461
- .modula-gallery .modula-item.effect-dexter:hover .figc::after {
1462
- -webkit-transform: translate3d(0,0,0);
1463
- transform: translate3d(0,0,0);
1464
- }
1465
-
1466
- html body .modula-gallery .modula-item.effect-dexter .figc {
1467
- padding: 7%;
1468
- text-align: left;
1469
- display:block;
1470
- }
1471
-
1472
- .modula-gallery .modula-item.effect-dexter .figc div.jtg-title {
1473
- padding:10px;
1474
- }
1475
-
1476
- #poststuff .modula-effects-preview.modula-gallery .modula-item.effect-dexter .figc .jtg-title {
1477
- padding: 15px;
1478
- }
1479
-
1480
- .modula-gallery .modula-item.effect-dexter .jtg-body {
1481
- position: absolute;
1482
- right: 8%;
1483
- bottom: 10%;
1484
- left: 8%;
1485
- opacity: 0;
1486
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1487
- transition: opacity 0.35s, transform 0.35s;
1488
- -webkit-transform: translate3d(0,-100px,0);
1489
- transform: translate3d(0,-100px,0);
1490
- z-index: 999;
1491
- }
1492
-
1493
- .modula-gallery .modula-item.effect-dexter:hover .jtg-body {
1494
- opacity: 1;
1495
- -webkit-transform: translate3d(0,0,0);
1496
- transform: translate3d(0,0,0);
1497
- }
1498
-
1499
- .modula-gallery .modula-item.effect-dexter .jtg-body .jtg-social {
1500
- position: relative;
1501
- right: auto;
1502
- bottom: auto;
1503
- text-align: left;
1504
- padding: 0 10px;
1505
- }
1506
-
1507
- .modula-gallery .modula-item.effect-dexter .jtg-body .jtg-social a {
1508
- padding:5px;
1509
- }
1510
-
1511
- .modula-gallery .modula-item.effect-dexter .jtg-body p.description {
1512
- padding:15px;
1513
- }
1514
-
1515
- /*---------------*/
1516
- /***** Zoe *****/
1517
- /*---------------*/
1518
-
1519
- .modula-gallery .modula-item.effect-zoe .modula-item-content {
1520
- height:100%;
1521
- }
1522
-
1523
- .modula-gallery .modula-item.effect-zoe .figc {
1524
- top: auto;
1525
- bottom: 0;
1526
- padding: 1em;
1527
- height: auto !important;
1528
- background: #fff;
1529
- color: #3c4a50;
1530
- -webkit-transition: -webkit-transform 0.35s;
1531
- transition: transform 0.35s;
1532
- -webkit-transform: translate3d(0,100%,0);
1533
- transform: translate3d(0,100%,0);
1534
- box-sizing: border-box;
1535
- width: 100%;
1536
- z-index:99;
1537
- }
1538
-
1539
- .modula-gallery.modula-columns .modula-items .modula-item.effect-zoe .figc {
1540
- top:auto;
1541
- }
1542
-
1543
- .modula-gallery .modula-item.effect-zoe .figc .figc-inner {
1544
- width: 100%;
1545
- display: flex;
1546
- align-items: center;
1547
- justify-content: space-between;
1548
- }
1549
-
1550
- .modula-gallery .modula-item.effect-zoe .figc .figc-inner .jtg-social {
1551
- flex-shrink: 0;
1552
- }
1553
-
1554
- html body .modula .modula-items .modula-item.effect-zoe .jtg-social a:last-of-type {
1555
- margin-right:10px;
1556
- }
1557
-
1558
- html body .modula-gallery .modula-item.effect-zoe .jtg-title {
1559
- float: left;
1560
- text-align: left;
1561
- }
1562
-
1563
- .modula-gallery .modula-item.effect-zoe .jtg-title:before {
1564
- display:none;
1565
- }
1566
-
1567
- .modula-gallery .modula-item.effect-zoe .jtg-social {
1568
- position: relative;
1569
- right: auto;
1570
- bottom: auto;
1571
- }
1572
- .modula-gallery .modula-item.effect-zoe .jtg-social a {
1573
- font-size: 1.4em;
1574
- }
1575
-
1576
- .modula-gallery .modula-item.effect-zoe p.description {
1577
- position: absolute;
1578
- bottom: 150%;
1579
- padding: 5%;
1580
- color: #fff;
1581
- text-transform: none;
1582
- font-size: 90%;
1583
- opacity: 0;
1584
- -webkit-transition: opacity 0.35s;
1585
- transition: opacity 0.35s;
1586
- -webkit-backface-visibility: hidden; /* Fix for Chrome 37.0.2062.120 (Mac) */
1587
- box-sizing: border-box;
1588
- width: 100%;
1589
- left: 0;
1590
- }
1591
-
1592
- .modula-gallery .modula-item.effect-zoe .jtg-title,
1593
- .modula-gallery .modula-item.effect-zoe .jtg-social a {
1594
- -webkit-transition: -webkit-transform 0.35s;
1595
- transition: transform 0.35s;
1596
- -webkit-transform: translate3d(0,200%,0);
1597
- transform: translate3d(0,200%,0);
1598
- }
1599
-
1600
- .modula-gallery .modula-item.effect-zoe:hover p.description {
1601
- opacity: 1;
1602
- }
1603
-
1604
- .modula-gallery .modula-item.effect-zoe:hover .figc,
1605
- .modula-gallery .modula-item.effect-zoe:hover .jtg-title,
1606
- .modula-gallery .modula-item.effect-zoe:hover .jtg-social a {
1607
- -webkit-transform: translate3d(0,0,0);
1608
- transform: translate3d(0,0,0);
1609
- }
1610
-
1611
- .modula-gallery .modula-item.effect-zoe:hover .jtg-title {
1612
- -webkit-transition-delay: 0.05s;
1613
- transition-delay: 0.05s;
1614
- }
1615
-
1616
- .modula-gallery .modula-item.effect-zoe:hover .jtg-social a:nth-child(4) {
1617
- -webkit-transition-delay: 0.1s;
1618
- transition-delay: 0.1s;
1619
- }
1620
-
1621
- .modula-gallery .modula-item.effect-zoe:hover .jtg-social a:nth-child(3) {
1622
- -webkit-transition-delay: 0.15s;
1623
- transition-delay: 0.15s;
1624
- }
1625
-
1626
- .modula-gallery .modula-item.effect-zoe:hover .jtg-social a:nth-child(2) {
1627
- -webkit-transition-delay: 0.2s;
1628
- transition-delay: 0.2s;
1629
- }
1630
-
1631
- .modula-gallery .modula-item.effect-zoe:hover .jtg-social a:first-child {
1632
- -webkit-transition-delay: 0.25s;
1633
- transition-delay: 0.25s;
1634
- }
1635
-
1636
- /* Color for admin */
1637
- .modula-gallery .panel-zoe .modula-item.effect-zoe .jtg-title,
1638
- .modula-gallery .panel-zoe .modula-item.effect-zoe .jtg-social a {
1639
- color: #000;
1640
- }
1641
-
1642
- /*---------------*/
1643
- /***** Chico *****/
1644
- /*---------------*/
1645
-
1646
- .modula-gallery .modula-item.effect-chico img {
1647
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1648
- transition: opacity 0.35s, transform 0.35s;
1649
- -webkit-transform: scale(1.12);
1650
- transform: scale(1.12);
1651
- }
1652
-
1653
- .modula-gallery .modula-item.effect-chico:hover img {
1654
- opacity: 0.5;
1655
- -webkit-transform: scale(1);
1656
- transform: scale(1);
1657
- }
1658
-
1659
- .modula-gallery .modula-item.effect-chico .figc {
1660
- padding: 3em;
1661
- }
1662
-
1663
- .modula-gallery .modula-item.effect-chico .figc::before {
1664
- position: absolute;
1665
- top: 7.5%;
1666
- right: 7.5%;
1667
- bottom: 7.5%;
1668
- left: 7.5%;
1669
- border: 1px solid #fff;
1670
- content: '';
1671
- -webkit-transform: scale(1.1);
1672
- transform: scale(1.1);
1673
- }
1674
-
1675
- .modula-gallery .modula-item.effect-chico .figc::before,
1676
- .modula-gallery .modula-item.effect-chico p {
1677
- opacity: 0;
1678
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1679
- transition: opacity 0.35s, transform 0.35s;
1680
- }
1681
-
1682
- html body .modula-gallery .modula-items .modula-item.effect-chico .figc-inner {
1683
- padding:8%;
1684
- }
1685
-
1686
- html body .modula-gallery .modula-items .modula-item.effect-chico .figc-inner .jtg-social a {
1687
- margin-right:10px;
1688
- padding:5px;
1689
- }
1690
-
1691
- .modula-gallery .modula-item.effect-chico .jtg-title {
1692
- padding: 20px 0 20px 0;
1693
- }
1694
-
1695
- .modula-gallery .modula-item.effect-chico .jtg-title:before {
1696
- display:none;
1697
- }
1698
-
1699
- .modula-gallery .modula-item.effect-chico p {
1700
- -webkit-transform: scale(1.5);
1701
- transform: scale(1.5);
1702
- }
1703
-
1704
- .modula-gallery .modula-item.effect-chico:hover .figc::before,
1705
- .modula-gallery .modula-item.effect-chico:hover p {
1706
- opacity: 1;
1707
- -webkit-transform: scale(1);
1708
- transform: scale(1);
1709
- }
1710
-
1711
- .modula-gallery .modula-item.effect-chico p.description {
1712
- padding-bottom:20px;
1713
- }
1714
-
1715
- /*---------------*/
1716
- /***** Julia *****/
1717
- /*---------------*/
1718
-
1719
- .modula-gallery .modula-item.effect-julia {
1720
- background: #2f3238;
1721
- }
1722
-
1723
- .modula-gallery .modula-item.effect-julia img {
1724
- max-width: none;
1725
- height: 400px;
1726
- -webkit-transition: opacity 1s, -webkit-transform 1s;
1727
- transition: opacity 1s, transform 1s;
1728
- -webkit-backface-visibility: hidden;
1729
- backface-visibility: hidden;
1730
- }
1731
-
1732
- html body .modula-gallery .modula-item.effect-julia .figc {
1733
- text-align: left;
1734
- }
1735
-
1736
- html body .modula-gallery .modula-items .modula-item.effect-julia .figc .figc-inner {
1737
- display:flex;
1738
- flex-direction: column;
1739
- width:100%;
1740
- text-align:left;
1741
-
1742
- }
1743
-
1744
- html body .modula-gallery .modula-items .modula-item.effect-julia .figc .figc-inner .jtg-social a {
1745
- padding:5px;
1746
- color: #000;
1747
- }
1748
-
1749
- .modula-gallery .modula-item.effect-julia .jtg-title {
1750
- position: relative;
1751
- padding: 0.5em 0;
1752
- }
1753
-
1754
- .modula-gallery .modula-item.effect-julia .jtg-title:before {
1755
- display:none;
1756
- }
1757
-
1758
- html body .modula-gallery .modula-item.effect-julia p.description,
1759
- html body .modula-gallery .modula-item.effect-julia .jtg-social {
1760
- display: table;
1761
- margin: 0 0 0.25em;
1762
- padding: 0.4em 1em;
1763
- background: rgba(255,255,255,0.9);
1764
- color: #2f3238;
1765
- text-transform: none;
1766
- font-weight: 500;
1767
- font-size: 75%;
1768
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1769
- transition: opacity 0.35s, transform 0.35s;
1770
- -webkit-transform: translate3d(-120%,0,0);
1771
- transform: translate3d(-999%,0,0);
1772
- text-align:left;
1773
- }
1774
-
1775
- .modula-gallery .modula-item.effect-julia p:first-child {
1776
- -webkit-transition-delay: 0.15s;
1777
- transition-delay: 0.15s;
1778
- }
1779
-
1780
- .modula-gallery .modula-item.effect-julia .jtg-social {
1781
- -webkit-transition-delay: 0.1s;
1782
- transition-delay: 0.1s;
1783
- }
1784
-
1785
- .modula-gallery .modula-item.effect-julia p:nth-of-type(3) {
1786
- -webkit-transition-delay: 0.05s;
1787
- transition-delay: 0.05s;
1788
- }
1789
-
1790
- .modula-gallery .modula-item.effect-julia:hover p:first-child {
1791
- -webkit-transition-delay: 0s;
1792
- transition-delay: 0s;
1793
- }
1794
-
1795
- .modula-gallery .modula-item.effect-julia:hover p:nth-of-type(2) {
1796
- -webkit-transition-delay: 0.05s;
1797
- transition-delay: 0.05s;
1798
- }
1799
-
1800
- .modula-gallery .modula-item.effect-julia:hover p:nth-of-type(3) {
1801
- -webkit-transition-delay: 0.1s;
1802
- transition-delay: 0.1s;
1803
- }
1804
-
1805
- .modula-gallery .modula-item.effect-julia:hover img {
1806
- opacity: 0.4;
1807
- -webkit-transform: scale3d(1.1,1.1,1);
1808
- transform: scale3d(1.1,1.1,1);
1809
- }
1810
-
1811
- .modula-gallery .modula-item.effect-julia:hover p,
1812
- .modula-gallery .modula-item.effect-julia:hover .jtg-social {
1813
- opacity: 1;
1814
- -webkit-transform: translate3d(0,0,0);
1815
- transform: translate3d(0,0,0);
1816
- }
1817
-
1818
- /*-----------------*/
1819
- /***** Goliath *****/
1820
- /*-----------------*/
1821
-
1822
- .modula-gallery .modula-item.effect-goliath {
1823
- background: #df4e4e;
1824
- }
1825
-
1826
- .modula-gallery .modula-item.effect-goliath img,
1827
- .modula-gallery .modula-item.effect-goliath .jtg-title {
1828
- -webkit-transition: -webkit-transform 0.35s;
1829
- transition: transform 0.35s;
1830
- }
1831
-
1832
- .modula-gallery .modula-item.effect-goliath img {
1833
- -webkit-backface-visibility: hidden;
1834
- backface-visibility: hidden;
1835
- }
1836
-
1837
- .modula-gallery .modula-item.effect-goliath .jtg-title,
1838
- .modula-gallery .modula-item.effect-goliath p {
1839
- position: absolute;
1840
- bottom: 0;
1841
- left: 0;
1842
- padding: 30px;
1843
- }
1844
-
1845
- .modula-gallery .modula-item.effect-goliath p {
1846
- text-transform: none;
1847
- font-size: 90%;
1848
- opacity: 0;
1849
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1850
- transition: opacity 0.35s, transform 0.35s;
1851
- -webkit-transform: translate3d(0,50px,0);
1852
- transform: translate3d(0,50px,0);
1853
- }
1854
-
1855
- .modula-gallery .modula-item.effect-goliath:hover img {
1856
- -webkit-transform: translate3d(0,-80px,0);
1857
- transform: translate3d(0,-80px,0);
1858
- }
1859
-
1860
- .modula-gallery .modula-item.effect-goliath:hover .jtg-title {
1861
- -webkit-transform: translate3d(0,-100px,0);
1862
- transform: translate3d(0,-100px,0);
1863
- }
1864
-
1865
- .modula-gallery .modula-item.effect-goliath .jtg-title:before {
1866
- display: none;
1867
- }
1868
-
1869
- .modula-gallery .modula-item.effect-goliath:hover p {
1870
- opacity: 1;
1871
- -webkit-transform: translate3d(0,0,0);
1872
- transform: translate3d(0,0,0);
1873
- }
1874
-
1875
- /*-----------------*/
1876
- /***** Hera *****/
1877
- /*-----------------*/
1878
-
1879
- .modula-gallery .modula-item.effect-hera {
1880
- background: #303fa9;
1881
- }
1882
-
1883
- .modula-gallery .modula-item.effect-hera .jtg-title {
1884
- font-size: 158.75%;
1885
- }
1886
-
1887
- .modula-gallery .modula-item.effect-hera .jtg-title:before {
1888
- display: none;
1889
- }
1890
-
1891
- .modula-gallery .modula-item.effect-hera .jtg-title,
1892
- .modula-gallery .modula-item.effect-hera .jtg-social {
1893
- position: absolute;
1894
- top: 50%;
1895
- left: 50%;
1896
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1897
- transition: opacity 0.35s, transform 0.35s;
1898
- -webkit-transform: translate3d(-50%,-50%,0);
1899
- transform: translate3d(-50%,-50%,0);
1900
- -webkit-transform-origin: 50%;
1901
- transform-origin: 50%;
1902
- }
1903
-
1904
- .modula-gallery .modula-item.effect-hera .jtg-social {
1905
- right: auto;
1906
- bottom: auto;
1907
- }
1908
-
1909
- .modula-gallery .modula-item.effect-hera .figc::before {
1910
- position: absolute;
1911
- top: 50%;
1912
- left: 50%;
1913
- width: 150px;
1914
- height: 150px;
1915
- border: 2px solid #fff;
1916
- content: '';
1917
- opacity: 0;
1918
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1919
- transition: opacity 0.35s, transform 0.35s;
1920
- -webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(0,0,1);
1921
- transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(0,0,1);
1922
- -webkit-transform-origin: 50%;
1923
- transform-origin: 50%;
1924
- }
1925
-
1926
- html body .modula-gallery .modula-item.effect-hera .jtg-social {
1927
- width: 50%;
1928
- text-transform: none;
1929
- font-size: 121%;
1930
- line-height: 2;
1931
- text-align: center;
1932
- }
1933
-
1934
- html body .modula-gallery .modula-item.effect-hera .jtg-social a {
1935
- text-align: center;
1936
- box-sizing: border-box;
1937
- /* Fix for gutter in socials settings */
1938
- margin:0 auto !important;
1939
- padding:5px;
1940
-
1941
- }
1942
-
1943
- .modula-gallery .modula-item.effect-hera .jtg-social a:hover,
1944
- .modula-gallery .modula-item.effect-hera .jtg-social a:focus {
1945
- opacity: 0.6;
1946
- }
1947
-
1948
- .modula-gallery .modula-item.effect-hera .jtg-social a svg {
1949
- opacity: 0;
1950
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1951
- transition: opacity 0.35s, transform 0.35s;
1952
- vertical-align: middle;
1953
- margin:0 auto;
1954
- }
1955
-
1956
- .modula-gallery .modula-item.effect-hera .jtg-social a:first-child svg {
1957
- -webkit-transform: translate3d(-60px,-60px,0);
1958
- transform: translate3d(-60px,-60px,0);
1959
- }
1960
-
1961
- .modula-gallery .modula-item.effect-hera .jtg-social a:nth-child(2) svg {
1962
- -webkit-transform: translate3d(60px,-60px,0);
1963
- transform: translate3d(60px,-60px,0);
1964
- }
1965
-
1966
- .modula-gallery .modula-item.effect-hera .jtg-social a:nth-child(3) svg {
1967
- -webkit-transform: translate3d(-60px,60px,0);
1968
- transform: translate3d(-60px,60px,0);
1969
- }
1970
-
1971
- .modula-gallery .modula-item.effect-hera .jtg-social a:nth-child(4) svg {
1972
- -webkit-transform: translate3d(60px,60px,0);
1973
- transform: translate3d(60px,60px,0);
1974
- }
1975
-
1976
- .modula-gallery .modula-item.effect-hera .jtg-social a:nth-child(5) svg {
1977
- -webkit-transform: translate3d(-60px,60px,0);
1978
- transform: translate3d(-60px,60px,0);
1979
- }
1980
-
1981
- .modula-gallery .modula-item.effect-hera .jtg-social a:nth-child(6) svg {
1982
- -webkit-transform: translate3d(60px,60px,0);
1983
- transform: translate3d(60px,60px,0);
1984
- }
1985
-
1986
- .modula-gallery .modula-item.effect-hera:hover .figc::before {
1987
- opacity: 1;
1988
- -webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(1,1,1);
1989
- transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(1,1,1);
1990
- }
1991
-
1992
- .modula-gallery .modula-item.effect-hera:hover .jtg-title {
1993
- opacity: 0;
1994
- -webkit-transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
1995
- transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
1996
- }
1997
-
1998
- .modula-gallery .modula-items .modula-item.effect-hera:hover .jtg-social svg {
1999
- -webkit-transform: translate3d(0,0,0);
2000
- transform: translate3d(0,0,0); /* just because it's stronger than nth-child */
2001
- opacity: 1;
2002
- }
2003
-
2004
-
2005
- .modula-gallery .modula-item.effect-hera p.description {
2006
- display:none;
2007
- }
2008
-
2009
- .modula-gallery .modula-item.effect-hera:hover p.description {
2010
- display:block;
2011
- }
2012
-
2013
-
2014
- /*-----------------*/
2015
- /***** Selena *****/
2016
- /*-----------------*/
2017
-
2018
- .modula-gallery .modula-item.effect-selena {
2019
- background: #fff;
2020
- }
2021
-
2022
- .modula-gallery .modula-item.effect-selena img {
2023
- opacity: 0.95;
2024
- -webkit-transition: -webkit-transform 0.35s;
2025
- transition: transform 0.35s;
2026
- -webkit-transform-origin: 50% 50%;
2027
- transform-origin: 50% 50%;
2028
- }
2029
-
2030
- .modula-gallery .modula-item.effect-selena:hover img {
2031
- -webkit-transform: scale3d(0.95,0.95,1);
2032
- transform: scale3d(0.95,0.95,1);
2033
- }
2034
-
2035
- .modula-gallery .modula-item.effect-selena .jtg-title {
2036
- -webkit-transition: -webkit-transform 0.35s;
2037
- transition: transform 0.35s;
2038
- -webkit-transform: translate3d(0,20px,0);
2039
- transform: translate3d(0,20px,0);
2040
- }
2041
-
2042
- .modula-gallery .modula-item.effect-selena p {
2043
- opacity: 0;
2044
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2045
- transition: opacity 0.35s, transform 0.35s;
2046
- -webkit-transform: perspective(1000px) rotate3d(1,0,0,90deg);
2047
- transform: perspective(1000px) rotate3d(1,0,0,90deg);
2048
- -webkit-transform-origin: 50% 0%;
2049
- transform-origin: 50% 0%;
2050
- }
2051
-
2052
- .modula-gallery .modula-item.effect-selena:hover .jtg-title {
2053
- -webkit-transform: translate3d(0,0,0);
2054
- transform: translate3d(0,0,0);
2055
- }
2056
-
2057
- .modula-gallery .modula-item.effect-selena:hover p {
2058
- opacity: 1;
2059
- -webkit-transform: perspective(1000px) rotate3d(1,0,0,0);
2060
- transform: perspective(1000px) rotate3d(1,0,0,0);
2061
- }
2062
-
2063
- html body .modula-gallery .modula-items .modula-item.effect-selena .jtg-social a {
2064
- margin-right:10px;
2065
- padding:5px;
2066
- }
2067
-
2068
- /*-----------------*/
2069
- /***** Terry *****/
2070
- /*-----------------*/
2071
-
2072
- .modula-gallery .modula-item.effect-terry {
2073
- background: #34495e;
2074
- }
2075
-
2076
- .modula-gallery .modula-item.effect-terry .figc {
2077
- padding: 10px;
2078
- }
2079
-
2080
- .modula-gallery:not(.modula-custom-grid) .modula-item.effect-terry .figc,
2081
- .modula-gallery:not(.modula-custom-grid) .modula-item.effect-terry {
2082
- min-height:200px;
2083
- }
2084
-
2085
- .modula-gallery .modula-item.effect-terry .figc::before,
2086
- .modula-gallery .modula-item.effect-terry .figc::after {
2087
- position: absolute;
2088
- width: 200%;
2089
- height: 200%;
2090
- border-style: solid;
2091
- border-color: #101010;
2092
- content: '';
2093
- -webkit-transition: -webkit-transform 0.35s;
2094
- transition: transform 0.35s;
2095
- }
2096
-
2097
- .modula-gallery .modula-item.effect-terry .figc::before {
2098
- right: 0;
2099
- bottom: 0;
2100
- border-width: 0 70px 60px 0;
2101
- -webkit-transform: translate3d(70px,60px,0);
2102
- transform: translate3d(70px,60px,0);
2103
- }
2104
-
2105
- .modula-gallery .modula-item.effect-terry .figc::after {
2106
- top: 0;
2107
- left: 0;
2108
- border-width: 15px 0 0 15px;
2109
- -webkit-transform: translate3d(-15px,-15px,0);
2110
- transform: translate3d(-15px,-15px,0);
2111
- }
2112
-
2113
- .modula-gallery .modula-item.effect-terry .figc .figc-inner {
2114
- width: 100%;
2115
- height: 100%;
2116
- }
2117
-
2118
- .modula-gallery .modula-item.effect-terry img,
2119
- .modula-gallery .modula-item.effect-terry .jtg-social a {
2120
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2121
- transition: opacity 0.35s, transform 0.35s;
2122
- }
2123
-
2124
- .modula-gallery .modula-item.effect-terry img {
2125
- opacity: 0.85;
2126
- }
2127
-
2128
- html body .modula-gallery .modula-item.effect-terry .jtg-title {
2129
- position: absolute;
2130
- bottom: 0;
2131
- left: 0;
2132
- padding: 0.4em 15px;
2133
- width: 100%;
2134
- text-align: left;
2135
- }
2136
-
2137
- .modula-gallery .modula-item.effect-terry .jtg-title:before {
2138
- display: none;
2139
- }
2140
-
2141
- .modula-gallery .modula-item.effect-terry .jtg-social {
2142
- float: right;
2143
- clear: both;
2144
- text-align: left;
2145
- text-transform: none;
2146
- font-size: 111%;
2147
- position: relative;
2148
- right: auto;
2149
- bottom: auto;
2150
- /*margin-right: 25px;
2151
- margin-top: 15px;*/
2152
- width: 60px;
2153
- text-align: center;
2154
- padding: 5px 0 15px;
2155
-
2156
- }
2157
-
2158
- .modula-gallery .modula-item.effect-terry .jtg-social a {
2159
- display: block;
2160
- margin-right: 0 !important;
2161
- color: #fff;
2162
- opacity: 0;
2163
- -webkit-transform: translate3d(90px,0,0);
2164
- transform: translate3d(90px,0,0);
2165
- width: auto;
2166
- padding: 5px;
2167
- box-sizing: border-box;
2168
- margin-bottom: 10px;
2169
- }
2170
-
2171
- .modula-gallery .modula-item.effect-terry:hover .figc::before,
2172
- .modula-gallery .modula-item.effect-terry:hover .figc::after {
2173
- -webkit-transform: translate3d(0,0,0);
2174
- transform: translate3d(0,0,0);
2175
- }
2176
-
2177
- .modula-gallery .modula-item.effect-terry:hover img {
2178
- opacity: 0.6;
2179
-
2180
- }
2181
-
2182
- .modula-gallery .modula-item.effect-terry:hover .jtg-social a {
2183
- -webkit-transform: translate3d(0,0,0);
2184
- transform: translate3d(0,0,0);
2185
- }
2186
-
2187
- .modula-gallery .modula-item.effect-terry:hover .jtg-social a {
2188
- opacity: 1;
2189
- }
2190
-
2191
- .modula-gallery .modula-item.effect-terry:hover .jtg-social a:first-child {
2192
- -webkit-transition-delay: 0.025s;
2193
- transition-delay: 0.025s;
2194
- }
2195
-
2196
- .modula-gallery .modula-item.effect-terry:hover .jtg-social a:nth-child(2) {
2197
- -webkit-transition-delay: 0.05s;
2198
- transition-delay: 0.05s;
2199
- }
2200
-
2201
- .modula-gallery .modula-item.effect-terry:hover .jtg-social a:nth-child(3) {
2202
- -webkit-transition-delay: 0.075s;
2203
- transition-delay: 0.075s;
2204
- }
2205
-
2206
- .modula-gallery .modula-item.effect-terry:hover .jtg-social a:nth-child(4) {
2207
- -webkit-transition-delay: 0.1s;
2208
- transition-delay: 0.1s;
2209
- }
2210
-
2211
- .modula-gallery .modula-item.effect-terry:hover .jtg-social a:nth-child(5) {
2212
- -webkit-transition-delay: 0.125s;
2213
- transition-delay: 0.125s;
2214
- }
2215
-
2216
- .modula-gallery .modula-item.effect-terry:hover .jtg-social a:nth-child(6) {
2217
- -webkit-transition-delay: 0.15s;
2218
- transition-delay: 0.15s;
2219
- }
2220
-
2221
-
2222
- /*-----------------*/
2223
- /***** Apollo *****/
2224
- /*-----------------*/
2225
-
2226
- .modula-gallery .modula-item.effect-apollo {
2227
- background: #3498db;
2228
- }
2229
-
2230
- .modula-gallery .modula-item.effect-apollo img {
2231
- opacity: 0.95;
2232
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2233
- transition: opacity 0.35s, transform 0.35s;
2234
- -webkit-transform: scale3d(1.05,1.05,1);
2235
- transform: scale3d(1.05,1.05,1);
2236
- }
2237
-
2238
- html body .modula-gallery .modula-items .modula-item.effect-apollo .figc {
2239
- padding:10%;
2240
- }
2241
-
2242
- .modula-gallery .modula-item.effect-apollo .figc::before {
2243
- position: absolute;
2244
- top: 0;
2245
- left: 0;
2246
- width: 100%;
2247
- height: 100%;
2248
- background: rgba(255,255,255,0.5);
2249
- content: '';
2250
- -webkit-transition: -webkit-transform 0.6s;
2251
- transition: transform 0.6s;
2252
- -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-120%,0);
2253
- transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-120%,0);
2254
- }
2255
-
2256
- html body .modula-gallery .modula-items .modula-item.effect-apollo p {
2257
- position: absolute;
2258
- right: 3%;
2259
- bottom: 3%;
2260
- margin: 10%;
2261
- padding: 0 5%;
2262
- border-right: 4px solid #fff;
2263
- text-align: right;
2264
- opacity: 0;
2265
- -webkit-transition: opacity 0.35s;
2266
- transition: opacity 0.35s;
2267
- width:70%;
2268
- }
2269
-
2270
- html body .modula-gallery .modula-items .modula-item.effect-apollo .jtg-title {
2271
- text-align: left;
2272
- }
2273
-
2274
- .modula-gallery .modula-item.effect-apollo .jtg-title:before {
2275
- display: none;
2276
- }
2277
-
2278
- .modula-gallery .modula-item.effect-apollo:hover img {
2279
- opacity: 0.6;
2280
- -webkit-transform: scale3d(1,1,1);
2281
- transform: scale3d(1,1,1);
2282
- }
2283
-
2284
- .modula-gallery .modula-item.effect-apollo:hover .figc::before {
2285
- -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,120%,0);
2286
- transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,120%,0);
2287
- }
2288
-
2289
- html body .modula-gallery .modula-items .modula-item.effect-apollo:hover p {
2290
- opacity: 1;
2291
- -webkit-transition-delay: 0.1s;
2292
- transition-delay: 0.1s;
2293
- }
2294
-
2295
- /*-----------------*/
2296
- /***** Kira *****/
2297
- /*-----------------*/
2298
-
2299
- html body .modula-gallery .modula-item.effect-kira {
2300
- background: #fff;
2301
- text-align: left;
2302
- }
2303
-
2304
- .modula-gallery .modula-item.effect-kira img {
2305
- -webkit-transition: opacity 0.35s;
2306
- transition: opacity 0.35s;
2307
- }
2308
-
2309
- .modula-gallery .modula-item.effect-kira .figc {
2310
- z-index: 1;
2311
- }
2312
-
2313
- .modula-gallery .modula-item.effect-kira p {
2314
- padding: 2.25em 0.5em;
2315
- font-weight: 600;
2316
- font-size: 100%;
2317
- line-height: 1.5;
2318
- opacity: 0;
2319
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2320
- transition: opacity 0.35s, transform 0.35s;
2321
- -webkit-transform: translate3d(0,-10px,0);
2322
- transform: translate3d(0,-10px,0);
2323
- }
2324
-
2325
-
2326
- .modula-gallery .modula-item.effect-kira .figc::before {
2327
- position: absolute;
2328
- top: 0;
2329
- right: 2em;
2330
- left: 2em;
2331
- z-index: -1;
2332
- height: 3.5em;
2333
- background: #fff;
2334
- content: '';
2335
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2336
- transition: opacity 0.35s, transform 0.35s;
2337
- -webkit-transform: translate3d(0,4em,0) scale3d(1,0.023,1) ;
2338
- transform: translate3d(0,4em,0) scale3d(1,0.023,1);
2339
- -webkit-transform-origin: 50% 0;
2340
- transform-origin: 50% 0;
2341
- }
2342
-
2343
- .modula-gallery .modula-item.effect-kira:hover img {
2344
- opacity: 0.5;
2345
- }
2346
-
2347
- .modula-gallery .modula-item.effect-kira:hover p {
2348
- opacity: 1;
2349
- -webkit-transform: translate3d(0,0,0);
2350
- transform: translate3d(0,0,0);
2351
- }
2352
-
2353
- .modula-gallery .modula-item.effect-kira .jtg-title:before {
2354
- display: none;
2355
- }
2356
-
2357
- .modula-gallery .modula-item.effect-kira:hover .figc::before {
2358
- opacity: 0.7;
2359
- -webkit-transform: translate3d(0,5em,0) scale3d(1,1,1) ;
2360
- transform: translate3d(0,5em,0) scale3d(1,1,1);
2361
- }
2362
-
2363
- /*-----------------*/
2364
- /***** Steve *****/
2365
- /*-----------------*/
2366
-
2367
- .modula-gallery .modula-item.effect-steve {
2368
- z-index: auto;
2369
- overflow: visible;
2370
- background: #000;
2371
- overflow:hidden;
2372
- }
2373
-
2374
- .modula-gallery .modula-item.effect-steve:before{
2375
- position: absolute;
2376
- top: 0;
2377
- left: 0;
2378
- z-index: -1;
2379
- width: 100%;
2380
- height: 100%;
2381
- background: #000;
2382
- content: '';
2383
- -webkit-transition: opacity 0.35s;
2384
- transition: opacity 0.35s;
2385
- }
2386
-
2387
- html body .modula-gallery .modula-items .modula-item.effect-steve .figc {
2388
- padding:5%;
2389
- }
2390
-
2391
- .modula-gallery .modula-item.effect-steve .jtg-title:before {
2392
- display: none;
2393
- }
2394
-
2395
- .modula-gallery .modula-item.effect-steve:before {
2396
- box-shadow: 0 3px 30px rgba(0,0,0,0.8);
2397
- opacity: 0;
2398
- }
2399
-
2400
- .modula-gallery .modula-item.effect-steve .figc {
2401
- z-index: 1;
2402
- }
2403
-
2404
- .modula-gallery .modula-item.effect-steve img {
2405
- opacity: 1;
2406
- -webkit-transition: -webkit-transform 0.35s;
2407
- transition: transform 0.35s;
2408
- -webkit-transform: perspective(1000px) translate3d(0,0,0);
2409
- transform: perspective(1000px) translate3d(0,0,0);
2410
- }
2411
-
2412
- .modula-gallery .modula-item.effect-steve .jtg-title,
2413
- .modula-gallery .modula-item.effect-steve p {
2414
- background: #fff;
2415
- color: #2d434e;
2416
- }
2417
-
2418
- .modula-gallery .modula-item.effect-steve .jtg-title {
2419
- position: relative;
2420
- margin-top: 2em;
2421
- padding: 0.25em;
2422
- }
2423
-
2424
- html body .modula-gallery .modula-items .modula-item.effect-steve p {
2425
- margin-top: 1em;
2426
- padding: 0.5em;
2427
- font-weight: 800;
2428
- opacity: 0;
2429
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2430
- transition: opacity 0.35s, transform 0.35s;
2431
- -webkit-transform: scale3d(0.9,0.9,1);
2432
- transform: scale3d(0.9,0.9,1);
2433
- }
2434
-
2435
- .modula-gallery .modula-item.effect-steve:hover:before {
2436
- opacity: 1;
2437
- }
2438
-
2439
- .modula-gallery .modula-item.effect-steve:hover img {
2440
- -webkit-transform: perspective(1000px) translate3d(0,0,21px);
2441
- transform: perspective(1000px) translate3d(0,0,21px);
2442
- }
2443
-
2444
- html body .modula-gallery .modula-items .modula-item.effect-steve:hover p {
2445
- opacity: 1;
2446
- -webkit-transform: scale3d(1,1,1);
2447
- transform: scale3d(1,1,1);
2448
- }
2449
-
2450
- /*---------------*/
2451
- /***** Jazz *****/
2452
- /*---------------*/
2453
-
2454
- .modula-gallery .modula-item.effect-jazz {
2455
- background: -webkit-linear-gradient(-45deg, #f3cf3f 0%,#f33f58 100%);
2456
- background: linear-gradient(-45deg, #f3cf3f 0%,#f33f58 100%);
2457
- }
2458
-
2459
- .modula-gallery .modula-item.effect-jazz img {
2460
- opacity: 0.9;
2461
- }
2462
-
2463
- .modula-gallery .modula-item.effect-jazz .figc::after,
2464
- .modula-gallery .modula-item.effect-jazz img,
2465
- .modula-gallery .modula-item.effect-jazz p {
2466
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2467
- transition: opacity 0.35s, transform 0.35s;
2468
- }
2469
-
2470
- .modula-gallery .modula-item.effect-jazz .figc::after {
2471
- position: absolute;
2472
- top: 0;
2473
- left: 0;
2474
- width: 100%;
2475
- height: 100%;
2476
- border-top: 1px solid #fff;
2477
- border-bottom: 1px solid #fff;
2478
- content: '';
2479
- opacity: 0;
2480
- -webkit-transform: rotate3d(0,0,1,45deg) scale3d(1,0,1);
2481
- transform: rotate3d(0,0,1,45deg) scale3d(1,0,1);
2482
- -webkit-transform-origin: 50% 50%;
2483
- transform-origin: 50% 50%;
2484
- }
2485
-
2486
- .modula-gallery .modula-item.effect-jazz .figc-inner {
2487
- display: flex;
2488
- align-items: center;
2489
- justify-content: center;
2490
- flex-direction: column;
2491
- }
2492
-
2493
- .modula-gallery .modula-item.effect-jazz .jtg-title,
2494
- .modula-gallery .modula-item.effect-jazz p {
2495
- opacity: 1;
2496
- -webkit-transform: scale3d(0.8,0.8,1);
2497
- transform: scale3d(0.8,0.8,1);
2498
- }
2499
-
2500
- .modula-gallery .modula-item.effect-jazz .jtg-title:before {
2501
- display: none;
2502
- }
2503
-
2504
- .modula-gallery .modula-item.effect-jazz .jtg-title {
2505
- -webkit-transition: -webkit-transform 0.35s;
2506
- transition: transform 0.35s;
2507
- }
2508
-
2509
- .modula-gallery .modula-item.effect-jazz p {
2510
- padding: 0.5em 2em;
2511
- text-transform: none;
2512
- font-size: 0.85em;
2513
- opacity: 0;
2514
- }
2515
-
2516
- .modula-gallery .modula-item.effect-jazz:hover img {
2517
- opacity: 0.7;
2518
- -webkit-transform: scale3d(1.05,1.05,1);
2519
- transform: scale3d(1.05,1.05,1);
2520
- }
2521
-
2522
- .modula-gallery .modula-item.effect-jazz:hover .figc::after {
2523
- opacity: 1;
2524
- -webkit-transform: rotate3d(0,0,1,45deg) scale3d(1,1,1);
2525
- transform: rotate3d(0,0,1,45deg) scale3d(1,1,1);
2526
- }
2527
-
2528
- .modula-gallery .modula-item.effect-jazz:hover .jtg-title,
2529
- .modula-gallery .modula-item.effect-jazz:hover p {
2530
- opacity: 1;
2531
- -webkit-transform: scale3d(1,1,1);
2532
- transform: scale3d(1,1,1);
2533
- }
2534
-
2535
- /*---------------*/
2536
- /***** Ming *****/
2537
- /*---------------*/
2538
-
2539
- .modula-gallery .modula-item.effect-ming {
2540
- background: #030c17;
2541
- }
2542
-
2543
- .modula-gallery .modula-item.effect-ming img {
2544
- opacity: 0.9;
2545
- -webkit-transition: opacity 0.35s;
2546
- transition: opacity 0.35s;
2547
- }
2548
-
2549
- .modula-gallery .modula-item.effect-ming .figc::before {
2550
- position: absolute;
2551
- top: 7.5%;
2552
- right: 7.5%;
2553
- bottom: 7.5%;
2554
- left: 7.5%;
2555
- border: 2px solid #fff;
2556
- box-shadow: 0 0 0 30px rgba(255,255,255,0.2);
2557
- content: '';
2558
- opacity: 0;
2559
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2560
- transition: opacity 0.35s, transform 0.35s;
2561
- -webkit-transform: scale3d(1.4,1.4,1);
2562
- transform: scale3d(1.4,1.4,1);
2563
- }
2564
-
2565
- html body .modula-gallery .modula-items .modula-item.effect-ming .figc {
2566
- padding:9%;
2567
- }
2568
-
2569
- html body .modula-gallery .modula-items .modula-item.effect-ming .figc .figc-inner {
2570
- padding:5%;
2571
- }
2572
-
2573
- .modula-gallery .modula-item.effect-ming .jtg-title {
2574
- margin: 20% 0 10px 0;
2575
- -webkit-transition: -webkit-transform 0.35s;
2576
- transition: transform 0.35s;
2577
- }
2578
-
2579
- .modula-gallery .modula-item.effect-ming .jtg-title:before {
2580
- display: none;
2581
- }
2582
-
2583
- .modula-gallery .modula-item.effect-ming .jtg-body {
2584
- opacity: 0;
2585
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2586
- transition: opacity 0.35s, transform 0.35s;
2587
- -webkit-transform: scale(1.5);
2588
- transform: scale(1.5);
2589
- z-index:999;
2590
- }
2591
-
2592
- .modula-gallery .modula-item.effect-ming:hover .jtg-title {
2593
- -webkit-transform: scale(0.9);
2594
- transform: scale(0.9);
2595
- }
2596
-
2597
- .modula-gallery .modula-item.effect-ming:hover .figc::before,
2598
- .modula-gallery .modula-item.effect-ming:hover .jtg-body {
2599
- opacity: 1;
2600
- -webkit-transform: scale3d(1,1,1);
2601
- transform: scale3d(1,1,1);
2602
- }
2603
-
2604
- .modula-gallery .modula-item.effect-ming:hover .figc {
2605
- background-color: rgba(58,52,42,0);
2606
- }
2607
-
2608
- .modula-gallery .modula-item.effect-ming:hover img {
2609
- opacity: 0.4;
2610
- }
2611
-
2612
- html body .modula-gallery .modula-items .modula-item.effect-ming .jtg-body .jtg-social {
2613
- margin-top:10px;
2614
- }
2615
-
2616
- html body .modula-gallery .modula-items .modula-item.effect-ming .jtg-body .jtg-social a {
2617
- margin-right:10px;
2618
- padding:5px;
2619
- }
2620
-
2621
- /*---------------*/
2622
- /***** Lexi *****/
2623
- /*---------------*/
2624
-
2625
- .modula-gallery .modula-item.effect-lexi {
2626
- background: -webkit-linear-gradient(-45deg, #000 0%,#fff 100%);
2627
- background: linear-gradient(-45deg, #000 0%,#fff 100%);
2628
- }
2629
-
2630
- html body .modula-gallery .modula-items .modula-item.effect-lexi .figc {
2631
- padding:5%;
2632
- }
2633
-
2634
- .modula-gallery .modula-item.effect-lexi .modula-item-content {
2635
- height:100%;
2636
- }
2637
-
2638
- .modula-gallery .modula-item.effect-lexi img {
2639
- margin: -10px 0 0 -10px;
2640
- max-width: none;
2641
- width: -webkit-calc(100% + 10px) !important;
2642
- width: calc(100% + 10px) !important;
2643
- opacity: 0.9;
2644
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2645
- transition: opacity 0.35s, transform 0.35s;
2646
- -webkit-transform: translate3d(10px,10px,0);
2647
- transform: translate3d(-10px,-10px,0);
2648
- -webkit-backface-visibility: hidden;
2649
- backface-visibility: hidden;
2650
- min-height:calc(100% + 60px) !important;
2651
- min-width:calc(100% + 60px) !important;
2652
- }
2653
-
2654
- .modula-gallery.modula-columns .modula-items:not(.justified-gallery) .modula-item.effect-lexi img.pic{
2655
- -webkit-transform: translate3d(-10px,0px,0);
2656
- transform: translate3d(-10px,0px,0);
2657
- }
2658
-
2659
- .modula-gallery .modula-item.effect-lexi .figc::before,
2660
- .modula-gallery .modula-item.effect-lexi p {
2661
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2662
- transition: opacity 0.35s, transform 0.35s;
2663
- }
2664
-
2665
- .modula-gallery .modula-item.effect-lexi .figc::before {
2666
- position: absolute;
2667
- right: -100px;
2668
- bottom: -100px;
2669
- width: 300px;
2670
- height: 300px;
2671
- border: 2px solid #fff;
2672
- border-radius: 50%;
2673
- box-shadow: 0 0 0 900px rgba(255,255,255,0.2);
2674
- content: '';
2675
- opacity: 0;
2676
- -webkit-transform: scale3d(0.5,0.5,1);
2677
- transform: scale3d(0.5,0.5,1);
2678
- -webkit-transform-origin: 50% 50%;
2679
- transform-origin: 50% 50%;
2680
- }
2681
-
2682
- .modula-gallery .modula-item.effect-lexi:hover img,
2683
- .modula-gallery.modula-columns .modula-items:not(.justified-gallery) .modula-item.effect-lexi:hover img.pic {
2684
- opacity: 0.6;
2685
- -webkit-transform: translate3d(0,0,0);
2686
- transform: translate3d(0,0,0);
2687
- }
2688
-
2689
- html body .modula-gallery .modula-item.effect-lexi .jtg-title {
2690
- text-align: left;
2691
- -webkit-transition: -webkit-transform 0.35s;
2692
- transition: transform 0.35s;
2693
- -webkit-transform: translate3d(5px,5px,0);
2694
- transform: translate3d(5px,5px,0);
2695
- }
2696
-
2697
- .modula-gallery .modula-item.effect-lexi .jtg-title:before {
2698
- display:none;
2699
- }
2700
-
2701
- html body .modula-gallery .modula-items .modula-item.effect-lexi p {
2702
- position: absolute;
2703
- right: 0;
2704
- bottom: 0;
2705
- padding: 0 1.5em 1.5em 0;
2706
- width: 140px;
2707
- text-align: right;
2708
- opacity: 0;
2709
- -webkit-transform: translate3d(20px,20px,0);
2710
- transform: translate3d(20px,20px,0);
2711
- }
2712
-
2713
- .modula-gallery .modula-item.effect-lexi:hover .figc::before {
2714
- opacity: 1;
2715
- -webkit-transform: scale3d(1,1,1);
2716
- transform: scale3d(1,1,1);
2717
- }
2718
-
2719
- html body .modula-gallery .modula-item.effect-lexi:hover .jtg-title,
2720
- html body .modula-gallery .modula-item.effect-lexi:hover p {
2721
- opacity: 1;
2722
- -webkit-transform: translate3d(0,0,0);
2723
- transform: translate3d(0,0,0);
2724
- }
2725
-
2726
- /*---------------*/
2727
- /***** Duke *****/
2728
- /*---------------*/
2729
-
2730
- .modula-gallery .modula-item.effect-duke {
2731
- background: -webkit-linear-gradient(-45deg, #34495e 0%,#cc6055 100%);
2732
- background: linear-gradient(-45deg, #34495e 0%,#cc6055 100%);
2733
- }
2734
-
2735
- html body .modula-gallery .modula-items .modula-item.effect-duke .figc {
2736
- padding:5%;
2737
- }
2738
-
2739
- .modula-gallery .modula-item.effect-duke img,
2740
- .modula-gallery .modula-item.effect-duke p {
2741
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2742
- transition: opacity 0.35s, transform 0.35s;
2743
- }
2744
-
2745
- .modula-gallery .modula-item.effect-duke:hover img {
2746
- opacity: 0.1;
2747
- -webkit-transform: scale3d(2,2,1);
2748
- transform: scale3d(2,2,1);
2749
- }
2750
-
2751
- .modula-gallery .modula-item.effect-duke .jtg-title {
2752
- -webkit-transition: -webkit-transform 0.35s;
2753
- transition: transform 0.35s;
2754
- -webkit-transform: scale3d(0.8,0.8,1);
2755
- transform: scale3d(0.8,0.8,1);
2756
- -webkit-transform-origin: 50% 100%;
2757
- transform-origin: 50% 100%;
2758
- }
2759
-
2760
- .modula-gallery .modula-item.effect-duke .jtg-title:before {
2761
- display: none;
2762
- }
2763
-
2764
- .modula-gallery .modula-items .modula-item.effect-duke p {
2765
- position: absolute;
2766
- bottom: 0;
2767
- left: 0;
2768
- margin: 20px;
2769
- padding: 30px;
2770
- border: 2px solid #fff;
2771
- text-transform: none;
2772
- font-size: 90%;
2773
- opacity: 0;
2774
- -webkit-transform: scale3d(0.8,0.8,1);
2775
- transform: scale3d(0.8,0.8,1);
2776
- -webkit-transform-origin: 50% -100%;
2777
- transform-origin: 50% -100%;
2778
- width:calc(100% - 40px) !important;
2779
- }
2780
-
2781
- .modula-gallery .modula-item.effect-duke:hover .jtg-title,
2782
- .modula-gallery .modula-item.effect-duke:hover p {
2783
- opacity: 1;
2784
- -webkit-transform: scale3d(1,1,1);
2785
- transform: scale3d(1,1,1);
2786
- }
2787
-
2788
- /**
2789
- Tilt Hover Effects
2790
- **/
2791
-
2792
- .modula-gallery .modula-item.effect-tilt_1 > *,
2793
- .modula-gallery .modula-item.effect-tilt_2 > *,
2794
- .modula-gallery .modula-item.effect-tilt_3 > *,
2795
- .modula-gallery .modula-item.effect-tilt_4 > *,
2796
- .modula-gallery .modula-item.effect-tilt_5 > *,
2797
- .modula-gallery .modula-item.effect-tilt_6 > *,
2798
- .modula-gallery .modula-item.effect-tilt_7 > *,
2799
- .modula-gallery .modula-item.effect-tilt_8 > *{
2800
- transform: translateZ(0px); /* Force correct stacking order */
2801
- }
2802
-
2803
- .modula-gallery .modula-item.effect-tilt_1 .jtg-title:before,
2804
- .modula-gallery .modula-item.effect-tilt_2 .jtg-title:before,
2805
- .modula-gallery .modula-item.effect-tilt_3 .jtg-title:before,
2806
- .modula-gallery .modula-item.effect-tilt_4 .jtg-title:before,
2807
- .modula-gallery .modula-item.effect-tilt_5 .jtg-title:before,
2808
- .modula-gallery .modula-item.effect-tilt_6 .jtg-title:before,
2809
- .modula-gallery .modula-item.effect-tilt_7 .jtg-title:before,
2810
- .modula-gallery .modula-item.effect-tilt_8 .jtg-title:before {
2811
- display:none;
2812
- }
2813
-
2814
- .modula-gallery .modula-item.effect-tilt_1 .modula-item-content,
2815
- .modula-gallery .modula-item.effect-tilt_2 .modula-item-content,
2816
- .modula-gallery .modula-item.effect-tilt_3 .modula-item-content,
2817
- .modula-gallery .modula-item.effect-tilt_4 .modula-item-content,
2818
- .modula-gallery .modula-item.effect-tilt_5 .modula-item-content,
2819
- .modula-gallery .modula-item.effect-tilt_6 .modula-item-content,
2820
- .modula-gallery .modula-item.effect-tilt_7 .modula-item-content,
2821
- .modula-gallery .modula-item.effect-tilt_8 .modula-item-content {
2822
- height:100%;
2823
- }
2824
-
2825
- .modula-gallery .modula-item.effect-tilt_1 ,
2826
- .modula-gallery .modula-item.effect-tilt_2 ,
2827
- .modula-gallery .modula-item.effect-tilt_3 ,
2828
- .modula-gallery .modula-item.effect-tilt_4 ,
2829
- .modula-gallery .modula-item.effect-tilt_5 ,
2830
- .modula-gallery .modula-item.effect-tilt_6 ,
2831
- .modula-gallery .modula-item.effect-tilt_7 ,
2832
- .modula-gallery .modula-item.effect-tilt_8 ,
2833
- .modula-gallery .modula-item.effect-tilt_1 .figc,
2834
- .modula-gallery .modula-item.effect-tilt_2 .figc,
2835
- .modula-gallery .modula-item.effect-tilt_3 .figc,
2836
- .modula-gallery .modula-item.effect-tilt_4 .figc,
2837
- .modula-gallery .modula-item.effect-tilt_5 .figc,
2838
- .modula-gallery .modula-item.effect-tilt_6 .figc,
2839
- .modula-gallery .modula-item.effect-tilt_7 .figc,
2840
- .modula-gallery .modula-item.effect-tilt_8 .figc,
2841
- .modula-gallery .tilter__deco--lines,
2842
- .modula-gallery .tilter__deco--shine div {
2843
- transition: transform 0.2s ease-out;
2844
- }
2845
-
2846
- .modula-gallery .modula-item.effect-tilt_1::before,
2847
- .modula-gallery .modula-item.effect-tilt_2::before ,
2848
- .modula-gallery .modula-item.effect-tilt_3::before ,
2849
- .modula-gallery .modula-item.effect-tilt_4::before ,
2850
- .modula-gallery .modula-item.effect-tilt_5::before ,
2851
- .modula-gallery .modula-item.effect-tilt_6::before ,
2852
- .modula-gallery .modula-item.effect-tilt_7::before ,
2853
- .modula-gallery .modula-item.effect-tilt_8::before {
2854
- content: '';
2855
- position: absolute;
2856
- width: 90%;
2857
- height: 90%;
2858
- top: 5%;
2859
- left: 5%;
2860
- }
2861
-
2862
- .modula-gallery .tilter__deco {
2863
- position: absolute;
2864
- top: 0;
2865
- left: 0;
2866
- width: 100%;
2867
- height: 100%;
2868
- overflow: hidden;
2869
- }
2870
-
2871
- .modula-gallery .tilter__deco--overlay {
2872
- /*background-image: linear-gradient(45deg, rgba(226, 60, 99, 0.4), rgba(145, 58, 252, 0.4), rgba(16, 11, 192, 0.4));*/
2873
- }
2874
-
2875
- .modula-gallery .tilter__deco--shine div {
2876
- position: absolute;
2877
- width: 200%;
2878
- height: 200%;
2879
- top: -50%;
2880
- left: -50%;
2881
- /*background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);*/
2882
- }
2883
-
2884
- .modula-gallery .tilter__deco--lines {
2885
- width: 90%;
2886
- height: 90%;
2887
- position: absolute;
2888
- top:5%;
2889
- left: 5%;
2890
- border: 1.5px solid #fff;
2891
- box-sizing: border-box;
2892
- }
2893
-
2894
- html body .modula-gallery .modula-items .modula-item.effect-tilt_1 .figc,
2895
- html body .modula-gallery .modula-items .modula-item.effect-tilt_2 .figc ,
2896
- html body .modula-gallery .modula-items .modula-item.effect-tilt_3 .figc ,
2897
- html body .modula-gallery .modula-items .modula-item.effect-tilt_4 .figc ,
2898
- html body .modula-gallery .modula-items .modula-item.effect-tilt_5 .figc ,
2899
- html body .modula-gallery .modula-items .modula-item.effect-tilt_6 .figc ,
2900
- html body .modula-gallery .modula-items .modula-item.effect-tilt_7 .figc ,
2901
- html body .modula-gallery .modula-items .modula-item.effect-tilt_8 .figc {
2902
- position: absolute;
2903
- bottom: 0;
2904
- width: 100%;
2905
- padding: 10%;
2906
- }
2907
-
2908
-
2909
- /* Individual styles */
2910
-
2911
- /* Example 1 */
2912
- html body .modula-gallery .modula-item.effect-tilt_1 .figc {
2913
- text-align: left;
2914
- align-items: flex-end;
2915
- justify-content: flex-start;
2916
- }
2917
-
2918
- html body .modula-gallery .modula-item.effect-tilt_1 .figc .jtg-social {
2919
- position: relative;
2920
- bottom: auto;
2921
- right: auto;
2922
- text-align: left;
2923
- margin-top:10px;
2924
- }
2925
-
2926
- .modula-gallery .modula-item.effect-tilt_1 .figc .jtg-social a {
2927
- opacity: 1;
2928
- }
2929
-
2930
- /* Example 3 (no lines, overlay hard-light) */
2931
- html body .modula-gallery .modula-items.effect-tilt_3 .figc {
2932
- padding: 15%;
2933
- text-align: right;
2934
- text-shadow: 0.1em 0.8em 1em rgba(0,0,0,0.35);
2935
- }
2936
- html body .modula-gallery .modula-item.effect-tilt_3 .figc {
2937
- text-align: right;
2938
- align-items: flex-end;
2939
- justify-content: flex-end;
2940
- }
2941
- .modula-gallery .modula-item.effect-tilt_3 .figc .jtg-social {
2942
- position: relative;
2943
- bottom: auto;
2944
- right: auto;
2945
- margin-top:10px;
2946
- }
2947
- .modula-gallery .modula-item.effect-tilt_3 .figc .jtg-social a {
2948
- opacity: 1;
2949
- }
2950
-
2951
- /* Example 7 (different line) */
2952
- .modula-gallery .modula-item.effect-tilt_7 .tilter__deco--lines {
2953
- border-width: 10px;
2954
- transform: scale3d(0.9,0.9,1);
2955
- opacity: 0;
2956
- transition: transform 0.3s, opacity 0.3s;
2957
- }
2958
- .modula-gallery .modula-item.effect-tilt_7:hover .tilter__deco--lines {
2959
- opacity: 1;
2960
- transform: scale3d(1,1,1);
2961
- }
2962
- .modula-gallery .modula-item.effect-tilt_7 .tilter__figure::before {
2963
- box-shadow: none;
2964
- }
2965
- html body .modula-gallery .modula-item.effect-tilt_7 .figc {
2966
- text-align: left;
2967
- align-items: flex-end;
2968
- justify-content: flex-start;
2969
- }
2970
- html body .modula-gallery .modula-item.effect-tilt_7 .figc .jtg-social {
2971
- position: relative;
2972
- bottom: auto;
2973
- right: auto;
2974
- text-align: left;
2975
- margin-top:10px;
2976
- }
2977
- .modula-gallery .modula-item.effect-tilt_7 .figc .jtg-social a {
2978
- opacity: 1;
2979
- }
2980
-
2981
-
2982
- /*---------------*/
2983
- /***** fluid-up *****/
2984
- /*---------------*/
2985
- .modula-gallery .modula-item.effect-fluid-up .modula-item-content {
2986
- height:100%;
2987
- }
2988
-
2989
- html body .modula-gallery .modula-items .modula-item.effect-fluid-up .figc {
2990
- top: auto;
2991
- display: block;
2992
- bottom: 0;
2993
- padding: 5%;
2994
- background: #fff;
2995
- -webkit-transition: -webkit-transform 0.35s;
2996
- transition: transform 0.35s;
2997
- -webkit-transform: translate3d(0,100%,0);
2998
- transform: translate3d(0,100%,0);
2999
- height:auto !important;
3000
- }
3001
-
3002
- .modula-gallery .modula-items .modula-item.effect-fluid-up .jtg-title {
3003
- float: left;
3004
- color:#121212;
3005
- }
3006
-
3007
- html body .modula-gallery .modula-item.effect-fluid-up p.description {
3008
- position: absolute;
3009
- bottom: 6em;
3010
- text-align: left;
3011
- text-transform: none;
3012
- opacity: 0;
3013
- left:0;
3014
- margin:0 1em;
3015
- -webkit-transition: opacity 0.35s;
3016
- transition: opacity 0.35s;
3017
- -webkit-backface-visibility: hidden; /* Fix for Chrome 37.0.2062.120 (Mac) */
3018
- }
3019
-
3020
- .modula-gallery .modula-item.effect-fluid-up .jtg-title {
3021
- -webkit-transition: -webkit-transform 0.35s;
3022
- transition: transform 0.35s;
3023
- -webkit-transform: translate3d(0,200%,0);
3024
- transform: translate3d(0,200%,0);
3025
- }
3026
-
3027
- .modula-gallery .modula-item.effect-fluid-up .jtg-title {
3028
- display: inline-block;
3029
- }
3030
-
3031
- .modula-gallery .modula-item.effect-fluid-up:hover p.description {
3032
- opacity: 1;
3033
- }
3034
-
3035
- .modula-gallery .modula-item:not(.notitle).effect-fluid-up:hover .figc,
3036
- .modula-gallery .modula-item:not(.notitle).effect-fluid-up:hover .jtg-title,
3037
- .modula-gallery .modula-item:not(.notitle).effect-fluid-up:hover p.icon-links a {
3038
- -webkit-transform: translate3d(0,0,0);
3039
- transform: translate3d(0,0,0);
3040
- }
3041
-
3042
- .modula-gallery .modula-item.effect-fluid-up:hover .jtg-title {
3043
- -webkit-transition-delay: 0.05s;
3044
- transition-delay: 0.05s;
3045
- }
3046
-
3047
-
3048
- /*---------------*/
3049
- /***** comodo *****/
3050
- /*---------------*/
3051
-
3052
- html body .modula-gallery .modula-items .effect-comodo .jtg-social {
3053
- position: absolute;
3054
- bottom: 20px;
3055
- text-align: center;
3056
- left: 0;
3057
- right: 0;
3058
- }
3059
-
3060
- .modula-gallery .modula-items .effect-comodo .jtg-social a {
3061
- display: inline-block;
3062
- }
3063
- .modula-gallery .modula-items .effect-comodo .jtg-social a:last-of-type {
3064
- margin-right: 0;
3065
- }
3066
-
3067
- .modula-gallery .modula-items .modula-item.effect-comodo img {
3068
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
3069
- transition: opacity 0.35s, transform 0.35s;
3070
- -webkit-transform: scale(1.12);
3071
- transform: scale(1.12);
3072
- }
3073
-
3074
- .modula-gallery .modula-items .modula-item.effect-comodo:hover img {
3075
- -webkit-transform: scale(1);
3076
- transform: scale(1);
3077
- }
3078
-
3079
- .modula-gallery .modula-items .modula-item.effect-comodo .figc {
3080
- display: block;
3081
- }
3082
-
3083
- .modula-gallery .modula-items .modula-item.effect-comodo .jtg-title {
3084
- margin-top: 20px;
3085
- }
3086
-
3087
- @media all and (max-width:480px) {
3088
- html body .modula-gallery .modula-items .modula-item.effect-comodo .jtg-social a {
3089
- margin-right:10px;
3090
- padding:5px;
3091
- }
3092
- }
3093
-
3094
- /* Individual effects */
3095
- /*-----------------*/
3096
- /***** catinelle *****/
3097
- /*-----------------*/
3098
- .modula-gallery .modula-items .effect-catinelle .figc {
3099
- display: flex;
3100
- align-items: center;
3101
- justify-content: center;
3102
- }
3103
-
3104
- .modula-gallery .modula-items .effect-catinelle .jtg-social {
3105
- width:60px;
3106
- transform:scale(2);
3107
- transition:all .3s;
3108
- }
3109
-
3110
- html body .modula .modula-items .effect-catinelle .jtg-social a {
3111
- padding: 0;
3112
- margin:0 10px 10px 0;
3113
- font-size: 24px;
3114
- }
3115
- /*.modula-gallery .modula-items .effect-catinelle .jtg-social a:nth-child(2n) {
3116
- margin-right: 0;
3117
- }*/
3118
- .modula-gallery .modula-items .effect-catinelle:hover .jtg-social {
3119
- width:60px;
3120
- transform:scale(1);
3121
- }
3122
-
3123
-
3124
-
3125
- /*-----------------*/
3126
- /***** Winston *****/
3127
- /*-----------------*/
3128
-
3129
- html body .modula-gallery .modula-item.effect-winston {
3130
- background: #162633;
3131
- text-align: left;
3132
- }
3133
-
3134
- .modula-gallery .modula-item.effect-winston img {
3135
- -webkit-transition: opacity 0.45s;
3136
- transition: opacity 0.45s;
3137
- -webkit-backface-visibility: hidden;
3138
- backface-visibility: hidden;
3139
- }
3140
-
3141
- .modula-gallery .modula-item.effect-winston .figc::before {
3142
- position: absolute;
3143
- bottom: 0;
3144
- left: 0;
3145
- width: 1200%;
3146
- height: 300%;
3147
- background: url(../images/triangle.svg) no-repeat bottom center;
3148
- background-size: cover;
3149
- content: '';
3150
- -webkit-transition: opacity 0.45s, -webkit-transform 0.45s;
3151
- transition: opacity 0.45s, transform 0.45s;
3152
- -webkit-transform: rotate3d(0,0,1,45deg);
3153
- transform: rotate3d(0,0,1,45deg);
3154
- -webkit-transform-origin: 0 100%;
3155
- transform-origin: 0 100%;
3156
- }
3157
-
3158
- .modula-gallery .modula-item.effect-winston .jtg-title {
3159
- -webkit-transition: -webkit-transform 0.35s;
3160
- transition: transform 0.35s;
3161
- -webkit-transform: translate3d(0,20px,0);
3162
- transform: translate3d(0,20px,0);
3163
- }
3164
-
3165
- .modula-gallery .modula-item.effect-winston .jtg-title:before {
3166
- display:none;
3167
- }
3168
-
3169
- .modula-gallery .modula-item.effect-winston .jtg-social {
3170
- position: absolute;
3171
- right: 7.25%;
3172
- bottom: 7.25%;
3173
- padding: 0 1.5em 2em 0;
3174
- }
3175
-
3176
- .modula-gallery .modula-item.effect-winston a {
3177
- margin: 0 10px;
3178
- }
3179
-
3180
- .modula-gallery .modula-item.effect-winston .jtg-social a {
3181
- opacity: 0;
3182
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
3183
- transition: opacity 0.35s, transform 0.35s;
3184
- -webkit-transform: translate3d(0,50px,0);
3185
- transform: translate3d(0,50px,0);
3186
- }
3187
-
3188
- .modula-gallery .modula-item.effect-winston:hover img {
3189
- opacity: 0.6;
3190
- }
3191
-
3192
- .modula-gallery .modula-item.effect-winston:hover .jtg-title {
3193
- -webkit-transform: translate3d(0,0,0);
3194
- transform: translate3d(0,0,0);
3195
- }
3196
-
3197
- .modula-gallery .modula-item.effect-winston:hover .figc::before {
3198
- opacity: 0.7;
3199
- -webkit-transform: rotate3d(0, 0, 1, 20deg);
3200
- transform: rotate3d(0, 0, 1, 20deg);
3201
- height: 300%;
3202
- width: 1200%;
3203
- }
3204
-
3205
- .modula-gallery .modula-item.effect-winston:hover .jtg-social a {
3206
- opacity: 1;
3207
- -webkit-transform: translate3d(0,0,0);
3208
- transform: translate3d(0,0,0);
3209
- }
3210
-
3211
- .modula-gallery .modula-item.effect-winston:hover .jtg-social a:nth-child(4) {
3212
- -webkit-transition-delay: 0.05s;
3213
- transition-delay: 0.05s;
3214
- }
3215
-
3216
- .modula-gallery .modula-item.effect-winston:hover .jtg-social a:nth-child(3) {
3217
- -webkit-transition-delay: 0.1s;
3218
- transition-delay: 0.1s;
3219
- }
3220
-
3221
- .modula-gallery .modula-item.effect-winston:hover .jtg-social a:nth-child(2) {
3222
- -webkit-transition-delay: 0.15s;
3223
- transition-delay: 0.15s;
3224
- }
3225
-
3226
- .modula-gallery .modula-item.effect-winston:hover .jtg-social a:first-child {
3227
- -webkit-transition-delay: 0.2s;
3228
- transition-delay: 0.2s;
3229
- }
3230
-
3231
- /*-----------------*/
3232
- /***** Selena *****/
3233
- /*-----------------*/
3234
-
3235
- .modula-gallery .modula-item.effect-selena {
3236
- background: #fff;
3237
- }
3238
-
3239
- html body .modula-gallery .modula-items .modula-item.effect-selena .figc {
3240
- padding:10%;
3241
- }
3242
-
3243
- .modula-gallery .modula-item.effect-selena img {
3244
- opacity: 0.95;
3245
- -webkit-transition: -webkit-transform 0.35s;
3246
- transition: transform 0.35s;
3247
- -webkit-transform-origin: 50% 50%;
3248
- transform-origin: 50% 50%;
3249
- }
3250
-
3251
- .modula-gallery .modula-item.effect-selena:hover img {
3252
- -webkit-transform: scale3d(0.95,0.95,1);
3253
- transform: scale3d(0.95,0.95,1);
3254
- }
3255
-
3256
- .modula-gallery .modula-item.effect-selena .jtg-title {
3257
- -webkit-transition: -webkit-transform 0.35s;
3258
- transition: transform 0.35s;
3259
- -webkit-transform: translate3d(0,20px,0);
3260
- transform: translate3d(0,20px,0);
3261
- }
3262
-
3263
- .modula-gallery .modula-item.effect-selena .jtg-title:before {
3264
- display: none;
3265
- }
3266
-
3267
- .modula-gallery .modula-item.effect-selena p {
3268
- opacity: 0;
3269
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
3270
- transition: opacity 0.35s, transform 0.35s;
3271
- -webkit-transform: perspective(1000px) rotate3d(1,0,0,90deg);
3272
- transform: perspective(1000px) rotate3d(1,0,0,90deg);
3273
- -webkit-transform-origin: 50% 0%;
3274
- transform-origin: 50% 0%;
3275
- }
3276
-
3277
- .modula-gallery .modula-item.effect-selena:hover .jtg-title {
3278
- -webkit-transform: translate3d(0,0,0);
3279
- transform: translate3d(0,0,0);
3280
- }
3281
-
3282
- .modula-gallery .modula-item.effect-selena:hover p {
3283
- opacity: 1;
3284
- -webkit-transform: perspective(1000px) rotate3d(1,0,0,0);
3285
- transform: perspective(1000px) rotate3d(1,0,0,0);
3286
- }
3287
-
3288
- /*-----------------*/
3289
- /***** Phoebe *****/
3290
- /*-----------------*/
3291
-
3292
- .modula-gallery .modula-item.effect-phoebe {
3293
- background: #675983;
3294
- }
3295
-
3296
- .modula-gallery .modula-item.effect-phoebe img {
3297
- opacity: 0.85;
3298
- -webkit-transition: opacity 0.35s;
3299
- transition: opacity 0.35s;
3300
- }
3301
-
3302
- .modula-gallery .modula-item.effect-phoebe:hover img {
3303
- opacity: 0.6;
3304
- }
3305
-
3306
- .modula-gallery .modula-item.effect-phoebe .figc::before {
3307
- position: absolute;
3308
- top: 0;
3309
- left: 0;
3310
- width: 100%;
3311
- height: 100%;
3312
- background: url(../../images/triangle2.svg) no-repeat center center;
3313
- background-size: cover;
3314
- content: '';
3315
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
3316
- transition: opacity 0.35s, transform 0.35s;
3317
- -webkit-transform: scale3d(5,2.5,1);
3318
- transform: scale3d(5,2.5,1);
3319
- -webkit-transform-origin: 50% 50%;
3320
- transform-origin: 50% 50%;
3321
- }
3322
-
3323
- html body .modula-gallery .modula-items .modula-item.effect-phoebe .figc {
3324
- padding:10%;
3325
- }
3326
-
3327
- .modula-gallery .modula-item.effect-phoebe:hover .figc::before {
3328
- opacity: 0.6;
3329
- -webkit-transform: scale3d(1,1,1);
3330
- transform: scale3d(1,1,1);
3331
- }
3332
-
3333
- .modula-gallery .modula-items .modula-item.effect-phoebe .jtg-title {
3334
- margin-top: 1em;
3335
- -webkit-transition: transform 0.35s;
3336
- transition: transform 0.35s;
3337
- -webkit-transform: translate3d(0,40px,0);
3338
- transform: translate3d(0,40px,0);
3339
- }
3340
-
3341
- .modula-gallery .modula-item.effect-phoebe .jtg-title:before {
3342
- display: none;
3343
- }
3344
-
3345
- .modula-gallery .modula-item.effect-phoebe:hover .jtg-title {
3346
- -webkit-transform: translate3d(0,0,0);
3347
- transform: translate3d(0,0,0);
3348
- }
3349
-
3350
- html body .modula-gallery .modula-item.effect-phoebe .jtg-social {
3351
- text-align: center;
3352
- }
3353
-
3354
- html body .modula-gallery .modula-items .modula-item.effect-phoebe .jtg-social a {
3355
- color: #fff;
3356
- opacity: 0;
3357
- position: relative;
3358
- display: inline-block;
3359
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
3360
- transition: opacity 0.35s, transform 0.35s;
3361
- padding:5px;
3362
- margin-right:10px;
3363
- }
3364
-
3365
- .modula-gallery .modula-item.effect-phoebe .jtg-social a:first-child {
3366
- -webkit-transform: translate3d(-60px,-60px,0);
3367
- transform: translate3d(-60px,-60px,0);
3368
- }
3369
-
3370
- .modula-gallery .modula-item.effect-phoebe .jtg-social a:nth-child(2) {
3371
- -webkit-transform: translate3d(0,60px,0);
3372
- transform: translate3d(0,60px,0);
3373
- }
3374
-
3375
- .modula-gallery .modula-item.effect-phoebe .jtg-social a:nth-child(3) {
3376
- -webkit-transform: translate3d(60px,-60px,0);
3377
- transform: translate3d(60px,-60px,0);
3378
- }
3379
-
3380
- .modula-gallery .modula-item.effect-phoebe .jtg-social a:nth-child(4) {
3381
- -webkit-transform: translate3d(0,60px,0);
3382
- transform: translate3d(0,60px,0);
3383
- }
3384
- .modula-gallery .modula-item.effect-phoebe .jtg-social a:nth-child(5) {
3385
- -webkit-transform: translate3d(60px,60px,0);
3386
- transform: translate3d(60px,60px,0);
3387
- }
3388
-
3389
- .modula-gallery .modula-item.effect-phoebe .jtg-social a:nth-child(6) {
3390
- -webkit-transform: translate3d(60px,-60px,0);
3391
- transform: translate3d(60px,-60px,0);
3392
- }
3393
-
3394
- html body .modula-gallery .modula-items .modula-item.effect-phoebe:hover .jtg-social a {
3395
- opacity: 1;
3396
- -webkit-transform: translate3d(0,0,0);
3397
- transform: translate3d(0,0,0);
3398
- }
3399
-
3400
- /*-----------------*/
3401
- /***** reflex *****/
3402
- /*-----------------*/
3403
- .modula-gallery .modula-item.effect-reflex img {
3404
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
3405
- transition: opacity 0.35s, transform 0.35s;
3406
- -webkit-transform: scale3d(1.05,1.05,1);
3407
- transform: scale3d(1.05,1.05,1);
3408
- }
3409
-
3410
- .modula-gallery .modula-item.effect-reflex .figc {
3411
- display: block;
3412
- }
3413
- .modula-gallery .modula-item.effect-reflex .figc-inner {
3414
- margin:5%;
3415
- }
3416
-
3417
- .modula-gallery .modula-item.effect-reflex .figc-inner .jtg-title,
3418
- .modula-gallery .modula-item.effect-reflex .figc-inner p {
3419
- border-left: 3px solid #fff;
3420
- padding-left: 2.5%;
3421
- }
3422
- html body .modula-gallery .modula-item.effect-reflex .figc-inner p {
3423
- text-align: left;
3424
- margin-top:0px;
3425
- opacity: 0;
3426
- transition: opacity .3s;
3427
- }
3428
- .modula-gallery .modula-item.effect-reflex:hover .figc-inner p {
3429
- opacity: 1
3430
- }
3431
-
3432
- html body .modula-gallery .modula-item.effect-reflex .jtg-title {
3433
- text-align: left;
3434
- }
3435
-
3436
- .modula-gallery .modula-item.effect-reflex .jtg-social {
3437
- position: absolute;
3438
- bottom: 5%;
3439
- right: 5%;
3440
- }
3441
-
3442
- @media all and (max-width: 480px) {
3443
- html body .modula-gallery .modula-item.effect-reflex .jtg-social {
3444
- right: 0;
3445
- left:0;
3446
- text-align:center;
3447
- }
3448
-
3449
- html body .modula-gallery .modula-items .modula-item.effect-reflex .jtg-social a {
3450
- padding: 5px;
3451
- margin-right:10px;
3452
- }
3453
- }
3454
-
3455
- .modula-gallery .modula-item.effect-reflex:hover img {
3456
- -webkit-transform: scale3d(1,1,1);
3457
- transform: scale3d(1,1,1);
3458
- }
3459
-
3460
-
3461
-
3462
- /*-----------------*/
3463
- /***** curtain *****/
3464
- /*-----------------*/
3465
-
3466
- html body .modula-gallery .modula-items .effect-curtain .jtg-social {
3467
- position: relative;
3468
- text-align: left;
3469
- bottom: auto;
3470
- right: auto;
3471
- background: rgba( 255,255,255,.6 );
3472
- padding: 2.5% 2.5% 2%;
3473
- overflow: hidden;
3474
- transform:scaleY(0);
3475
- transform-origin:top;
3476
- }
3477
-
3478
- @media all and (max-width: 480px) {
3479
- html body .modula-gallery .modula-items .effect-curtain .jtg-social {
3480
- text-align: center;
3481
- }
3482
-
3483
- html body .modula-gallery .modula-items .effect-curtain .jtg-social a {
3484
- margin-right:10px;
3485
- padding:5px;
3486
- }
3487
- }
3488
-
3489
- .modula-gallery .modula-items .effect-curtain:hover .jtg-social {
3490
- transform:scaleY(1);
3491
- }
3492
-
3493
- html body .modula-gallery .modula-items .effect-curtain .jtg-title {
3494
- text-align: left;
3495
- padding: 0 0 2.5%;
3496
- border-bottom: 2px solid rgba( 255,255,255,.6 );
3497
- }
3498
-
3499
- html body .modula-gallery .modula-items .modula-item.effect-curtain .figc {
3500
- text-align: left;
3501
- display: block;
3502
- }
3503
-
3504
- .modula-gallery .modula-items .modula-item.effect-curtain .figc-inner {
3505
- position: relative;
3506
- width: 100%;
3507
- height: 100%;
3508
- padding: 10%;
3509
- box-sizing: border-box;
3510
- }
3511
-
3512
- /*.modula-gallery .modula-item.effect-curtain .figc::before {
3513
- position: absolute;
3514
- top: 0;
3515
- right: 35px;
3516
- left: 35px;
3517
- height: 60px;
3518
- background: #fff;
3519
- content: '';
3520
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
3521
- transition: opacity 0.35s, transform 0.35s;
3522
- -webkit-transform: translate3d(0,70px,0) scale3d(1,0.023,1) ;
3523
- transform: translate3d(0,70px,0) scale3d(1,0.023,1);
3524
- -webkit-transform-origin: 50% 0;
3525
- transform-origin: 50% 0;
3526
- }*/
3527
-
3528
- .modula-gallery .modula-item.effect-curtain:hover p {
3529
- opacity: 1;
3530
- -webkit-transform: translate3d(0,0,0);
3531
- transform: translate3d(0,0,0);
3532
- }
3533
-
3534
- /*.modula-gallery .modula-item.effect-curtain:hover .figc::before {
3535
- opacity: 0.7;
3536
- -webkit-transform: translate3d(0,5em,0) scale3d(1,1,1) ;
3537
- transform: translate3d(0,5em,0) scale3d(1,1,1);
3538
- }*/
3539
-
3540
-
3541
- /*---------------*/
3542
- /***** lens *****/
3543
- /*---------------*/
3544
- .modula-gallery .modula-item .figc {
3545
- display: flex;
3546
- align-items: center;
3547
- justify-content: center;
3548
- }
3549
-
3550
- .modula-gallery .modula-item.effect-lens img,
3551
- .modula-gallery .modula-item.effect-lens p {
3552
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
3553
- transition: opacity 0.35s, transform 0.35s;
3554
- }
3555
-
3556
- .modula-gallery .modula-item.effect-lens:hover img {
3557
- -webkit-transform: scale3d(2,2,1);
3558
- transform: scale3d(2,2,1);
3559
- }
3560
-
3561
- .modula-gallery .modula-item.effect-lens .jtg-title {
3562
- -webkit-transition: -webkit-transform 0.35s;
3563
- transition: transform 0.35s;
3564
- -webkit-transform: scale3d(0.8,0.8,1);
3565
- transform: scale3d(0.8,0.8,1);
3566
- -webkit-transform-origin: 50% 100%;
3567
- transform-origin: 50% 100%;
3568
- }
3569
-
3570
- html body .modula-gallery .modula-item.effect-lens .jtg-social {
3571
- position: absolute;
3572
- bottom: 5%;
3573
- left: 0;
3574
- right: 0;
3575
- text-align: center;
3576
- }
3577
-
3578
- @media all and (max-width:480px) {
3579
- html body .modula-gallery .modula-item.effect-lens .jtg-social a {
3580
- padding:5px;
3581
- margin-right:10px;
3582
- }
3583
- }
3584
-
3585
- html body .modula-gallery .modula-item.effect-lens p {
3586
- text-align: center;
3587
- opacity: 0;
3588
- -webkit-transform: scale3d(0.8,0.8,1);
3589
- transform: scale3d(0.8,0.8,1);
3590
- -webkit-transform-origin: 50% -100%;
3591
- transform-origin: 50% -100%;
3592
- margin-top: 10px;
3593
- }
3594
-
3595
- .modula-gallery .modula-item.effect-lens:hover .jtg-title,
3596
- .modula-gallery .modula-item.effect-lens:hover p {
3597
- opacity: 1;
3598
- -webkit-transform: scale3d(1,1,1);
3599
- transform: scale3d(1,1,1);
3600
- }
3601
- }
3602
-
3603
- /**
3604
- Effect Black White
3605
- */
3606
-
3607
- html body .modula-gallery .modula-item.effect-greyscale img.pic {
3608
- -webkit-filter : grayscale(1);
3609
- filter : grayscale(1);
3610
- transition:300ms ease-in;
3611
- }
3612
-
3613
- html body .modula-gallery .modula-item.effect-greyscale:hover img.pic {
3614
- -webkit-filter : grayscale(0);
3615
- filter : none;
3616
- }
3617
-
3618
- html body .modula-gallery .modula-item.effect-greyscale:hover .jtg-title,
3619
- html body .modula-gallery .modula-item.effect-greyscale:hover p.description {
3620
- display:none;
3621
- }
3622
-
3623
- html body .modula-gallery .modula-item.effect-greyscale .modula-item-overlay {
3624
- display:none;
3625
- }
3626
-
3627
- #modula-hover-effect.modula-tab-content .modula-gallery .modula-item.effect-greyscale .jtg-social {
3628
-
3629
- right: 30px;
3630
- position: absolute;
3631
- bottom: 20px;
3632
- text-align: right;
3633
- transition: all .3s;
3634
- }
3635
-
3636
-
3637
- /****
3638
- Filter Styles
3639
- */
3640
- html body .modula >.filters {
3641
- margin: 20px 0 20px 0;
3642
- }
3643
-
3644
- html body .modula > .filters.vertical-filters {
3645
- margin-top: 0;
3646
- width: 20%;
3647
- float: left;
3648
- }
3649
-
3650
-
3651
- html body .modula > .filters ul.modula_menu__list a.modula_menu__link,
3652
- html body .modula-pro-live-preview ul.modula_menu__list a.modula_menu__link{
3653
- text-decoration: none;
3654
- display: inline-block;
3655
- margin:0;
3656
- color: #333;
3657
- outline: none;
3658
- transition: 350ms ease-in;
3659
- }
3660
-
3661
- html body .modula > .filters.menu--default a {
3662
- border-bottom: 2px solid transparent;
3663
- }
3664
-
3665
- html body .modula > .filters.colored a {
3666
- border: 0;
3667
- color: #fff;
3668
- }
3669
-
3670
- html body .modula > .filters:not(.styled-menu) a:hover,
3671
- html body .modula > .filters:not(.styled-menu) a.selected {
3672
- border-bottom-color: #333;
3673
- border-bottom: 1px solid;
3674
- }
3675
-
3676
- /*html body .modula .modula-item {
3677
- width: 100%;
3678
- }*/
3679
- html body .modula.vertical-filters .modula-items {
3680
- width: 80%;
3681
- float: left;
3682
- }
3683
-
3684
- html body .modula:after {
3685
- content: "";
3686
- display: block;
3687
- clear: both;
3688
- }
3689
-
3690
- html body .modula.vertical-filters .filters {
3691
- width: 20%;
3692
- float: left;
3693
- }
3694
-
3695
- html body .modula > .filters ul.modula_menu__list {
3696
- display:inline-block;
3697
- }
3698
-
3699
- html body .modula > .filters.vertical-filters.both-vertical + .modula-items {
3700
- width: 60%;
3701
- float: left;
3702
- }
3703
-
3704
- html body .modula > .filters.vertical-filters a {
3705
- display: block;
3706
- margin-bottom: 15px;
3707
- }
3708
-
3709
- html body .modula > .filters.vertical-filters.colored a {
3710
- border-radius: 5px;
3711
- text-align: center;
3712
- background: #fff;
3713
- border: 1px solid #3498db;
3714
- color: #3498db;
3715
- }
3716
-
3717
- html body .modula > .filters.vertical-filters.colored a:hover,
3718
- html body .modula > .filters.vertical-filters.colored a.selected {
3719
- background: #fff;
3720
- color: #8e44ad;
3721
- border-color: #8e44ad;
3722
- }
3723
-
3724
- html body .modula > .filters.horizontal-filters.colored a {
3725
- display: inline-block;
3726
- padding: 0 30px;
3727
- margin-right: 2px;
3728
- background: #3498db;
3729
- position: relative;
3730
- border: 0px;
3731
- }
3732
-
3733
- html body .modula > .filters.horizontal-filters.colored a:hover,
3734
- html body .modula > .filters.horizontal-filters.colored a.selected {
3735
- background: #8e44ad;
3736
- }
3737
-
3738
- html body .modula > .filters.horizontal-filters.colored a:before {
3739
- position: absolute;
3740
- content: '';
3741
- left: 0;
3742
- top: 0;
3743
- width: 0;
3744
- height: 0;
3745
- border: none;
3746
- border-bottom-color: currentcolor;
3747
- border-bottom-style: none;
3748
- border-bottom-width: medium;
3749
- border-left-color: currentcolor;
3750
- border-left-style: none;
3751
- border-left-width: medium;
3752
- border-left: solid 17px white;
3753
- border-bottom: solid 41px transparent;
3754
- z-index: 1;
3755
- transition: .4s;
3756
- }
3757
-
3758
- html body .modula > .filters.horizontal-filters.colored a:after {
3759
- position: absolute;
3760
- content: '';
3761
- right: 0;
3762
- top: 0;
3763
- width: 0;
3764
- height: 0;
3765
- border: none;
3766
- border-bottom-color: currentcolor;
3767
- border-bottom-style: none;
3768
- border-bottom-width: medium;
3769
- border-left-color: currentcolor;
3770
- border-left-style: none;
3771
- border-left-width: medium;
3772
- border-left: solid 17px transparent;
3773
- border-bottom: solid 41px white;
3774
- z-index: 1;
3775
- transition: .4s;
3776
- }
3777
-
3778
- html body .filter-by-wrapper {
3779
- text-align: center;
3780
- margin-bottom: 25px;
3781
- text-transform: uppercase;
3782
- }
3783
-
3784
- html body .filter-by-wrapper span {
3785
- cursor: pointer;
3786
- }
3787
-
3788
- html body .filter-by-wrapper span:after {
3789
- content: "";
3790
- margin-left: 15px;
3791
- width: 0;
3792
- height: 0;
3793
- border-style: solid;
3794
- border-width: 15px 10px 0 10px;
3795
- border-color: #0470e3 transparent transparent transparent;
3796
- display: inline-block;
3797
- }
3798
-
3799
- html body .filter-by-wrapper.opened span:after {
3800
- content: "";
3801
- width: 0;
3802
- height: 0;
3803
- border-style: solid;
3804
- border-width: 0 10px 15px 10px;
3805
- border-color: transparent transparent #d500ff transparent;
3806
- display: inline-block;
3807
- }
3808
-
3809
- html body .modula > .filters.vertical-filters a {
3810
- margin-bottom: 0;
3811
- }
3812
-
3813
- html body .modula > .filters .modula_menu__list li.modula_menu__item {
3814
- margin: 15px;
3815
- }
3816
-
3817
- @media all and (min-width: 1025px) {
3818
- html body .filter-by-wrapper {
3819
- display: none !important;
3820
- }
3821
-
3822
- html body .modula > .filters {
3823
- display: block !important;
3824
- }
3825
- }
3826
-
3827
- @media all and (max-width: 1024px) {
3828
-
3829
- html body .modula.vertical-filters .filters,
3830
- html body .modula.vertical-filters .modula-items,
3831
- html body .modula > .filters.vertical-filters.both-vertical + .modula-items {
3832
- width: 100% !important;
3833
- float: none;
3834
- }
3835
-
3836
- html body .modula > .filters .modula_menu__list {
3837
- padding: 0px;
3838
- }
3839
-
3840
- html body .modula > .filters .modula_menu__list li.modula_menu__item {
3841
- margin: 0;
3842
- }
3843
-
3844
- }
3845
-
3846
- html body .modula > .filters {
3847
- margin: 0;
3848
- box-sizing: border-box;
3849
- }
3850
- .modula-gallery.horizontal-filters .filters {
3851
- margin-bottom: 20px;
3852
- }
3853
- .modula-gallery.horizontal-filters .modula-items + .filters {
3854
- margin-top: 20px;
3855
- margin-bottom: 0;
3856
- }
3857
- .modula-gallery.vertical-filters .filters {
3858
- padding-right: 20px;
3859
- }
3860
- .modula-gallery.vertical-filters .modula-items + .filters {
3861
- padding-left: 20px;
3862
- padding-right: 0;
3863
- }
3864
-
3865
- /* Default */
3866
- html body .modula > .filters.menu--default a {
3867
- text-decoration: none;
3868
- display: inline-block;
3869
- margin:0 10px 0 0;
3870
- color: #333;
3871
- outline:none;
3872
- transition:350ms ease-in;
3873
- }
3874
-
3875
- html body .modula > .filters.menu--default a:hover,
3876
- html body .modula > .filters.menu--default .modula_menu__item--current a {
3877
- border-bottom-color: #333;
3878
- border-bottom:1px solid;
3879
- }
3880
-
3881
- html body .modula > .filters .modula_menu__item {
3882
- display:inline-block;
3883
- }
3884
- html body .modula > .filters.vertical-filters .modula_menu__item {
3885
- display: block;
3886
- }
3887
-
3888
- html body .modula > .filters .modula_menu__link {
3889
- text-decoration:none;
3890
- outline:none;
3891
- color:#000000;
3892
- padding: 10px;
3893
- -webkit-user-select: none;
3894
- -moz-user-select: none;
3895
- -ms-user-select: none;
3896
- user-select: none;
3897
- -webkit-touch-callout: none;
3898
- -khtml-user-select: none;
3899
- display: inline-block;
3900
- line-height: 1;
3901
- }
3902
- html body .modula > .filters.menu--default .modula_menu__list li.modula_menu__item .modula_menu__link {
3903
- padding: 0;
3904
- }
3905
-
3906
- html body .modula > .filters .modula_menu__link:hover,
3907
- html body .modula > .filters .modula_menu__link:focus {
3908
- outline: none;
3909
- color:#ff0000;
3910
- }
3911
-
3912
- html body .modula > .filters .modula_menu__list {
3913
- margin: 0 0 5px 0;
3914
- padding-left: 0;
3915
- }
3916
-
3917
- html body .modula > .filters .modula_menu__list li.modula_menu__item {
3918
- margin: 0 10px 0 0;
3919
- }
3920
-
3921
- /* Individual styles */
3922
-
3923
- /* Alonso */
3924
- html body .modula > .filters.menu--alonso .modula_menu__item {
3925
- margin: 0;
3926
- }
3927
-
3928
- html body .modula > .filters.menu--alonso .modula_menu__link {
3929
- width: 120px;
3930
- height: 3em;
3931
- text-align: center;
3932
- color: #b5b5b5;
3933
- -webkit-transition: color 0.3s;
3934
- transition: color 0.3s;
3935
- }
3936
-
3937
- html body .modula > .filters.menu--alonso .modula_menu__link:hover,
3938
- html body .modula > .filters.menu--alonso .modula_menu__link:focus {
3939
- color: #929292;
3940
- }
3941
-
3942
- html body .modula > .filters.menu--alonso .modula_menu__item--current .modula_menu__link {
3943
- color: #d94f5c;
3944
- -webkit-transition: color 0.5s;
3945
- transition: color 0.5s;
3946
- }
3947
-
3948
- html body .modula > .filters.menu--alonso .modula_menu__line {
3949
- position: absolute;
3950
- top: 100%;
3951
- left: 0;
3952
- width: 120px;
3953
- height: 2px;
3954
- pointer-events: none;
3955
- border: 1px solid #fff;
3956
- border-width: 0 45px;
3957
- background: #d94f5c;
3958
- -webkit-transition: -webkit-transform 0.5s;
3959
- transition: transform 0.5s;
3960
- -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1);
3961
- -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
3962
- transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
3963
- }
3964
-
3965
- html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(1).modula_menu__item--current ~ .modula_menu__line {
3966
- -webkit-transform: translate3d(0, 0, 0);
3967
- transform: translate3d(0, 0, 0);
3968
- }
3969
-
3970
- html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(2).modula_menu__item--current ~ .modula_menu__line {
3971
- -webkit-transform: translate3d(100%, 0, 0);
3972
- transform: translate3d(100%, 0, 0);
3973
- }
3974
-
3975
- html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(3).modula_menu__item--current ~ .modula_menu__line {
3976
- -webkit-transform: translate3d(200%, 0, 0);
3977
- transform: translate3d(200%, 0, 0);
3978
- }
3979
-
3980
- html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(4).modula_menu__item--current ~ .modula_menu__line {
3981
- -webkit-transform: translate3d(300%, 0, 0);
3982
- transform: translate3d(300%, 0, 0);
3983
- }
3984
-
3985
- html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(5).modula_menu__item--current ~ .modula_menu__line {
3986
- -webkit-transform: translate3d(400%, 0, 0);
3987
- transform: translate3d(400%, 0, 0);
3988
- }
3989
-
3990
- @media screen and (max-width:55em) {
3991
- html body .modula > .filters.menu--alonso .modula_menu__line {
3992
- top: 3em;
3993
- }
3994
-
3995
- html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(1).modula_menu__item--current ~ .modula_menu__line {
3996
- -webkit-transform: translate3d(0, 0, 0);
3997
- transform: translate3d(0, 0, 0);
3998
- }
3999
-
4000
- html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(2).modula_menu__item--current ~ .modula_menu__line {
4001
- -webkit-transform: translate3d(0, 3em, 0);
4002
- transform: translate3d(0, 3em, 0);
4003
- }
4004
-
4005
- html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(3).modula_menu__item--current ~ .modula_menu__line {
4006
- -webkit-transform: translate3d(0, 6em, 0);
4007
- transform: translate3d(0, 6em, 0);
4008
- }
4009
-
4010
- html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(4).modula_menu__item--current ~ .modula_menu__line {
4011
- -webkit-transform: translate3d(0, 9em, 0);
4012
- transform: translate3d(0, 9em, 0);
4013
- }
4014
-
4015
- html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(5).modula_menu__item--current ~ .modula_menu__line {
4016
- -webkit-transform: translate3d(0, 12em, 0);
4017
- transform: translate3d(0, 12em, 0);
4018
- }
4019
- }
4020
-
4021
- /* Sebastian */
4022
- html body .modula > .filters.menu--sebastian .modula_menu__link {
4023
- position: relative;
4024
- display: block;
4025
- margin: 0 1em;
4026
- text-align: center;
4027
- color: #929292;
4028
- -webkit-transition: color 0.4s;
4029
- transition: color 0.4s;
4030
- }
4031
-
4032
- html body .modula > .filters.menu--sebastian .modula_menu__item--current .modula_menu__link {
4033
- color: #d94f5c;
4034
- }
4035
-
4036
- html body .modula > .filters.menu--sebastian .modula_menu__link::before,
4037
- html body .modula > .filters.menu--sebastian .modula_menu__link::after {
4038
- content: '';
4039
- position: absolute;
4040
- left: 0;
4041
- width: 100%;
4042
- height: 2px;
4043
- background: #d94f5c;
4044
- -webkit-transform: scale3d(0, 1, 1);
4045
- transform: scale3d(0, 1, 1);
4046
- -webkit-transition: -webkit-transform 0.2s;
4047
- transition: transform 0.2s;
4048
- }
4049
-
4050
- html body .modula > .filters.menu--sebastian .modula_menu__link::before {
4051
- top: 0;
4052
- -webkit-transform-origin: 0 50%;
4053
- transform-origin: 0 50%;
4054
- }
4055
-
4056
- html body .modula > .filters.menu--sebastian .modula_menu__link::after {
4057
- bottom: 0;
4058
- -webkit-transform-origin: 100% 50%;
4059
- transform-origin: 100% 50%;
4060
- }
4061
-
4062
- html body .modula > .filters.menu--sebastian .modula_menu__item--current .modula_menu__link::before,
4063
- html body .modula > .filters.menu--sebastian .modula_menu__item--current .modula_menu__link::after {
4064
- -webkit-transform: scale3d(1, 1, 1);
4065
- transform: scale3d(1, 1, 1);
4066
- -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
4067
- transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
4068
- -webkit-transition-duration: 0.4s;
4069
- transition-duration: 0.4s;
4070
- }
4071
-
4072
- /* Prospero */
4073
- html body .modula > .filters.menu--prospero .modula_menu__link {
4074
- position: relative;
4075
- display: block;
4076
- margin: 0 1.5em;
4077
- padding: 0.75em 0;
4078
- text-align: center;
4079
- color: #b5b5b5;
4080
- -webkit-transition: color 0.3s;
4081
- transition: color 0.3s;
4082
- }
4083
-
4084
- html body .modula > .filters.menu--prospero .modula_menu__link:hover,
4085
- html body .modula > .filters.menu--prospero .modula_menu__link:focus {
4086
- color: #929292;
4087
- }
4088
-
4089
- html body .modula > .filters.menu--prospero .modula_menu__item--current .modula_menu__link {
4090
- color: #d94f5c;
4091
- }
4092
-
4093
- html body .modula > .filters.menu--prospero .modula_menu__link::before {
4094
- content: '';
4095
- position: absolute;
4096
- bottom: 0;
4097
- left: 0;
4098
- width: 100%;
4099
- height: 4px;
4100
- background: #d94f5c;
4101
- -webkit-transform: scale3d(0, 1, 1);
4102
- transform: scale3d(0, 1, 1);
4103
- -webkit-transition: -webkit-transform 0.1s;
4104
- transition: transform 0.1s;
4105
- }
4106
-
4107
- html body .modula > .filters.menu--prospero .modula_menu__item--current .modula_menu__link::before {
4108
- -webkit-transform: scale3d(1, 1, 1);
4109
- transform: scale3d(1, 1, 1);
4110
- -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
4111
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
4112
- -webkit-transition-duration: 0.3s;
4113
- transition-duration: 0.3s;
4114
- }
4115
-
4116
- /* Viola */
4117
- html body .modula > .filters.menu--viola .modula_menu__item {
4118
- position: relative;
4119
- margin: 0 1em;
4120
- }
4121
-
4122
- html body .modula > .filters.menu--viola .modula_menu__link {
4123
- position: relative;
4124
- display: block;
4125
- text-align: center;
4126
- color: #929292;
4127
- -webkit-transition: color 0.4s;
4128
- transition: color 0.4s;
4129
- width:auto;
4130
- }
4131
-
4132
-
4133
- html body .modula > .filters.menu--viola .modula_menu__item--current .modula_menu__link {
4134
- color: #d94f5c;
4135
- }
4136
-
4137
- html body .modula > .filters.menu--viola .modula_menu__item::before,
4138
- html body .modula > .filters.menu--viola .modula_menu__item::after,
4139
- html body .modula > .filters.menu--viola .modula_menu__link::before,
4140
- html body .modula > .filters.menu--viola .modula_menu__link::after {
4141
- content: '';
4142
- position: absolute;
4143
- background: #d94f5c;
4144
- -webkit-transition: -webkit-transform 0.2s;
4145
- transition: transform 0.2s;
4146
- }
4147
-
4148
- html body .modula > .filters.menu--viola .modula_menu__item::before,
4149
- html body .modula > .filters.menu--viola .modula_menu__item::after {
4150
- top: 0;
4151
- width: 2px;
4152
- height: 100%;
4153
- -webkit-transform: scale3d(1, 0, 1);
4154
- transform: scale3d(1, 0, 1);
4155
- }
4156
-
4157
- html body .modula > .filters.menu--viola .modula_menu__item::before {
4158
- left: 0;
4159
- -webkit-transform-origin: 50% 100%;
4160
- transform-origin: 50% 100%;
4161
- }
4162
-
4163
- html body .modula > .filters.menu--viola .modula_menu__item::after {
4164
- right: 0;
4165
- -webkit-transform-origin: 50% 0%;
4166
- transform-origin: 50% 0%;
4167
- }
4168
-
4169
- html body .modula > .filters.menu--viola .modula_menu__link::before,
4170
- html body .modula > .filters.menu--viola .modula_menu__link::after {
4171
- left: 0;
4172
- width: 100%;
4173
- height: 2px;
4174
- -webkit-transform: scale3d(0, 1, 1);
4175
- transform: scale3d(0, 1, 1);
4176
- }
4177
-
4178
- html body .modula > .filters.menu--viola .modula_menu__link::before {
4179
- top: 0;
4180
- -webkit-transform-origin: 0 50%;
4181
- transform-origin: 0 50%;
4182
- }
4183
-
4184
- html body .modula > .filters.menu--viola .modula_menu__link::after {
4185
- bottom: 0;
4186
- -webkit-transform-origin: 100% 50%;
4187
- transform-origin: 100% 50%;
4188
- }
4189
-
4190
- html body .modula > .filters.menu--viola .modula_menu__item--current::before,
4191
- html body .modula > .filters.menu--viola .modula_menu__item--current::after,
4192
- html body .modula > .filters.menu--viola .modula_menu__item--current .modula_menu__link::before,
4193
- html body .modula > .filters.menu--viola .modula_menu__item--current .modula_menu__link::after {
4194
- -webkit-transform: scale3d(1, 1, 1);
4195
- transform: scale3d(1, 1, 1);
4196
- -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
4197
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
4198
- -webkit-transition-duration: 0.4s;
4199
- transition-duration: 0.4s;
4200
- }
4201
-
4202
- /* Antonio */
4203
- html body .modula > .filters.menu--antonio .modula_menu__item {
4204
- position: relative;
4205
- }
4206
-
4207
- html body .modula > .filters.menu--antonio .modula_menu__link {
4208
- position: relative;
4209
- display: block;
4210
- min-width: 110px;
4211
- text-align: center;
4212
- color: #b5b5b5;
4213
- -webkit-transition: color 0.2s;
4214
- transition: color 0.2s;
4215
- }
4216
-
4217
- html body .modula > .filters.menu--antonio .modula_menu__link:hover,
4218
- html body .modula > .filters.menu--antonio .modula_menu__link:focus {
4219
- color: #929292;
4220
- }
4221
-
4222
- html body .modula > .filters.menu--antonio .modula_menu__item--current .modula_menu__link {
4223
- color: #d94f5c;
4224
- -webkit-transition-duration: 0.4s;
4225
- transition-duration: 0.4s;
4226
- }
4227
-
4228
- html body .modula > .filters.menu--antonio .modula_menu__item::before,
4229
- html body .modula > .filters.menu--antonio .modula_menu__item::after,
4230
- html body .modula > .filters.menu--antonio .modula_menu__link::before,
4231
- html body .modula > .filters.menu--antonio .modula_menu__link::after {
4232
- content: '';
4233
- position: absolute;
4234
- background: #d94f5c;
4235
- -webkit-transition: -webkit-transform 0.2s;
4236
- transition: transform 0.2s;
4237
- }
4238
-
4239
- html body .modula > .filters.menu--antonio .modula_menu__item::before,
4240
- html body .modula > .filters.menu--antonio .modula_menu__item::after {
4241
- top: 0;
4242
- width: 4px;
4243
- height: 100%;
4244
- -webkit-transform: scale3d(1, 0, 1);
4245
- transform: scale3d(1, 0, 1);
4246
- }
4247
-
4248
- html body .modula > .filters.menu--antonio .modula_menu__item::before {
4249
- left: 0;
4250
- -webkit-transform-origin: 50% 100%;
4251
- transform-origin: 50% 100%;
4252
- }
4253
-
4254
- html body .modula > .filters.menu--antonio .modula_menu__item::after {
4255
- right: 0;
4256
- -webkit-transform-origin: 50% 0%;
4257
- transform-origin: 50% 0%;
4258
- }
4259
-
4260
- html body .modula > .filters.menu--antonio .modula_menu__link::before,
4261
- html body .modula > .filters.menu--antonio .modula_menu__link::after {
4262
- left: 0;
4263
- width: 100%;
4264
- height: 4px;
4265
- -webkit-transform: scale3d(0, 1, 1);
4266
- transform: scale3d(0, 1, 1);
4267
- }
4268
-
4269
- html body .modula > .filters.menu--antonio .modula_menu__link::before {
4270
- top: 0;
4271
- -webkit-transform-origin: 0 50%;
4272
- transform-origin: 0 50%;
4273
- }
4274
-
4275
- html body .modula > .filters.menu--antonio .modula_menu__link::after {
4276
- bottom: 0;
4277
- -webkit-transform-origin: 100% 50%;
4278
- transform-origin: 100% 50%;
4279
- }
4280
-
4281
- html body .modula > .filters.menu--antonio .modula_menu__item--current::before,
4282
- html body .modula > .filters.menu--antonio .modula_menu__item--current::after,
4283
- html body .modula > .filters.menu--antonio .modula_menu__item--current .modula_menu__link::before,
4284
- html body .modula > .filters.menu--antonio .modula_menu__item--current .modula_menu__link::after {
4285
- -webkit-transform: scale3d(1, 1, 1);
4286
- transform: scale3d(1, 1, 1);
4287
- -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
4288
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
4289
- -webkit-transition-duration: 0.4s;
4290
- transition-duration: 0.4s;
4291
- }
4292
-
4293
- html body .modula > .filters.menu--antonio .modula_menu__item--current::after {
4294
- -webkit-transition-delay: 0s;
4295
- transition-delay: 0s;
4296
- }
4297
-
4298
- html body .modula > .filters.menu--antonio .modula_menu__item--current .modula_menu__link::before {
4299
- -webkit-transition-delay: 0.2s;
4300
- transition-delay: 0.2s;
4301
- }
4302
-
4303
- html body .modula > .filters.menu--antonio .modula_menu__item--current .modula_menu__link::after {
4304
- -webkit-transition-delay: 0.2s;
4305
- transition-delay: 0.2s;
4306
- }
4307
-
4308
- /* Miranda */
4309
- html body .modula > .filters.menu--miranda .modula_menu__item {
4310
- position: relative;
4311
- margin: 1em;
4312
- }
4313
-
4314
- html body .modula > .filters.menu--miranda .modula_menu__link {
4315
- position: relative;
4316
- display: block;
4317
- min-width: 100px;
4318
- text-align: center;
4319
- color: #b5b5b5;
4320
- -webkit-transition: color 0.3s;
4321
- transition: color 0.3s;
4322
- }
4323
-
4324
- html body .modula > .filters.menu--miranda .modula_menu__link:hover,
4325
- html body .modula > .filters.menu--miranda .modula_menu__link:focus {
4326
- color: #929292;
4327
- }
4328
-
4329
- html body .modula > .filters.menu--miranda .modula_menu__item--current .modula_menu__link {
4330
- color: #d94f5c;
4331
- }
4332
-
4333
- html body .modula > .filters.menu--miranda .modula_menu__item::before,
4334
- html body .modula > .filters.menu--miranda .modula_menu__item::after,
4335
- html body .modula > .filters.menu--miranda .modula_menu__link::before,
4336
- html body .modula > .filters.menu--miranda .modula_menu__link::after {
4337
- content: '';
4338
- position: absolute;
4339
- background: #d94f5c;
4340
- -webkit-transition: -webkit-transform 0.1s;
4341
- transition: transform 0.1s;
4342
- -webkit-transition-timing-function: cubic-bezier(1, 0.68, 0.16, 0.9);
4343
- transition-timing-function: cubic-bezier(1, 0.68, 0.16, 0.9);
4344
- }
4345
-
4346
- /* left and right line */
4347
- html body .modula > .filters.menu--miranda .modula_menu__item::before,
4348
- html body .modula > .filters.menu--miranda .modula_menu__item::after {
4349
- top: 0;
4350
- width: 2px;
4351
- height: 100%;
4352
- -webkit-transform: scale3d(1, 0, 1);
4353
- transform: scale3d(1, 0, 1);
4354
- }
4355
-
4356
- /* left line */
4357
- html body .modula > .filters.menu--miranda .modula_menu__item::before {
4358
- left: 0;
4359
- -webkit-transform-origin: 50% 100%;
4360
- transform-origin: 50% 100%;
4361
- }
4362
-
4363
- /* right line */
4364
- html body .modula > .filters.menu--miranda .modula_menu__item::after {
4365
- right: 0;
4366
- -webkit-transform-origin: 50% 0%;
4367
- transform-origin: 50% 0%;
4368
- }
4369
-
4370
- /* top and bottom line */
4371
- html body .modula > .filters.menu--miranda .modula_menu__link::before,
4372
- html body .modula > .filters.menu--miranda .modula_menu__link::after {
4373
- left: 0;
4374
- width: 100%;
4375
- height: 2px;
4376
- -webkit-transform: scale3d(0, 1, 1);
4377
- transform: scale3d(0, 1, 1);
4378
- }
4379
-
4380
- /* top line */
4381
- html body .modula > .filters.menu--miranda .modula_menu__link::before {
4382
- top: 0;
4383
- -webkit-transform-origin: 0 50%;
4384
- transform-origin: 0 50%;
4385
- }
4386
-
4387
- /* bottom line */
4388
- html body .modula > .filters.menu--miranda .modula_menu__link::after {
4389
- bottom: 0;
4390
- -webkit-transform-origin: 100% 50%;
4391
- transform-origin: 100% 50%;
4392
- }
4393
-
4394
- /* Delays (first reverse, then current) */
4395
-
4396
- /* These rules can be simplified, but let's keep it for better readability */
4397
-
4398
- /* bottom line */
4399
- html body .modula > .filters.menu--miranda .modula_menu__item .modula_menu__link::after {
4400
- -webkit-transition-delay: 0.3s;
4401
- transition-delay: 0.3s;
4402
- }
4403
-
4404
- html body .modula > .filters.menu--miranda .modula_menu__item--current .modula_menu__link::after {
4405
- -webkit-transition-delay: 0s;
4406
- transition-delay: 0s;
4407
- }
4408
-
4409
- /* left line */
4410
- html body .modula > .filters.menu--miranda .modula_menu__item::before {
4411
- -webkit-transition-delay: 0.2s;
4412
- transition-delay: 0.2s;
4413
- }
4414
-
4415
- html body .modula > .filters.menu--miranda .modula_menu__item--current::before {
4416
- -webkit-transition-delay: 0.1s;
4417
- transition-delay: 0.1s;
4418
- }
4419
-
4420
- /* top line */
4421
- html body .modula > .filters.menu--miranda .modula_menu__item .modula_menu__link::before {
4422
- -webkit-transition-delay: 0.1s;
4423
- transition-delay: 0.1s;
4424
- }
4425
-
4426
- html body .modula > .filters.menu--miranda .modula_menu__item--current .modula_menu__link::before {
4427
- -webkit-transition-delay: 0.2s;
4428
- transition-delay: 0.2s;
4429
- }
4430
-
4431
- /* right line */
4432
- html body .modula > .filters.menu--miranda .modula_menu__item--current::after {
4433
- -webkit-transition-delay: 0.3s;
4434
- transition-delay: 0.3s;
4435
- }
4436
-
4437
- html body .modula > .filters.menu--miranda .modula_menu__item--current::before,
4438
- html body .modula > .filters.menu--miranda .modula_menu__item--current::after,
4439
- html body .modula > .filters.menu--miranda .modula_menu__item--current .modula_menu__link::before,
4440
- html body .modula > .filters.menu--miranda .modula_menu__item--current .modula_menu__link::after {
4441
- -webkit-transform: scale3d(1, 1, 1);
4442
- transform: scale3d(1, 1, 1);
4443
- }
4444
-
4445
- /* Ariel */
4446
- html body .modula > .filters.menu--ariel .modula_menu__item {
4447
- position: relative;
4448
- margin: 0.5em 1em;
4449
- }
4450
-
4451
- html body .modula > .filters.menu--ariel .modula_menu__link {
4452
- line-height: 1.15;
4453
- position: relative;
4454
- display: block;
4455
- min-width: 110px;
4456
- text-align: center;
4457
- color: #b5b5b5;
4458
- -webkit-transition: color 0.3s;
4459
- transition: color 0.3s;
4460
- }
4461
-
4462
- html body .modula > .filters.menu--ariel .modula_menu__link:hover,
4463
- html body .modula > .filters.menu--ariel .modula_menu__link:focus {
4464
- color: #929292;
4465
- }
4466
-
4467
- html body .modula > .filters.menu--ariel .modula_menu__item--current .modula_menu__link {
4468
- color: #d94f5c;
4469
- }
4470
-
4471
- html body .modula > .filters.menu--ariel .modula_menu__item::before,
4472
- html body .modula > .filters.menu--ariel .modula_menu__item::after,
4473
- html body .modula > .filters.menu--ariel .modula_menu__link::before,
4474
- html body .modula > .filters.menu--ariel .modula_menu__link::after {
4475
- content: '';
4476
- position: absolute;
4477
- background: #d94f5c;
4478
- -webkit-transition: -webkit-transform 0.3s;
4479
- transition: transform 0.3s;
4480
- -webkit-transition-timing-function: cubic-bezier(0.44, 0.05, 0.55, 0.95);
4481
- transition-timing-function: cubic-bezier(0.44, 0.05, 0.55, 0.95);
4482
- }
4483
-
4484
- html body .modula > .filters.menu--ariel .modula_menu__item::before,
4485
- html body .modula > .filters.menu--ariel .modula_menu__item::after {
4486
- top: 0;
4487
- width: 4px;
4488
- height: 100%;
4489
- -webkit-transform: scale3d(0.1, 0, 1);
4490
- transform: scale3d(0.1, 0, 1);
4491
- }
4492
-
4493
- /* left line */
4494
- html body .modula > .filters.menu--ariel .modula_menu__item::before {
4495
- left: 0;
4496
- }
4497
-
4498
- /* right line */
4499
- html body .modula > .filters.menu--ariel .modula_menu__item::after {
4500
- right: 0;
4501
- }
4502
-
4503
- html body .modula > .filters.menu--ariel .modula_menu__link::before,
4504
- html body .modula > .filters.menu--ariel .modula_menu__link::after {
4505
- left: 0;
4506
- width: 100%;
4507
- height: 4px;
4508
- -webkit-transform: scale3d(0, 0.1, 1);
4509
- transform: scale3d(0, 0.1, 1);
4510
- }
4511
-
4512
- /* top line */
4513
- html body .modula > .filters.menu--ariel .modula_menu__link::before {
4514
- top: 0;
4515
- }
4516
-
4517
- /* bottom line */
4518
- html body .modula > .filters.menu--ariel .modula_menu__link::after {
4519
- bottom: 0;
4520
- }
4521
-
4522
- html body .modula > .filters.menu--ariel .modula_menu__item--current::before,
4523
- html body .modula > .filters.menu--ariel .modula_menu__item--current::after,
4524
- html body .modula > .filters.menu--ariel .modula_menu__item--current .modula_menu__link::before,
4525
- html body .modula > .filters.menu--ariel .modula_menu__item--current .modula_menu__link::after {
4526
- -webkit-transform: scale3d(1, 1, 1);
4527
- transform: scale3d(1, 1, 1);
4528
- }
4529
-
4530
- /* Caliban */
4531
- html body .modula > .filters.menu--caliban .modula_menu__item {
4532
- margin: 0.5em 0;
4533
- }
4534
-
4535
- html body .modula > .filters.menu--caliban .modula_menu__link {
4536
- position: relative;
4537
- display: block;
4538
- margin: 0 1em;
4539
- color: #b5b5b5;
4540
- -webkit-transition: color 0.2s;
4541
- transition: color 0.2s;
4542
- text-align: center;
4543
- }
4544
-
4545
- html body .modula > .filters.menu--caliban .modula_menu__link:hover,
4546
- html body .modula > .filters.menu--caliban .modula_menu__link:focus {
4547
- color: #929292;
4548
- }
4549
-
4550
- html body .modula > .filters.menu--caliban .modula_menu__item--current .modula_menu__link {
4551
- color: #d94f5c;
4552
- }
4553
-
4554
- html body .modula > .filters.menu--caliban .modula_menu__link::before,
4555
- html body .modula > .filters.menu--caliban .modula_menu__link::after {
4556
- content: '';
4557
- position: absolute;
4558
- top: 0;
4559
- left: 0;
4560
- width: 100%;
4561
- height: 100%;
4562
- border: 2px solid #d94f5c;
4563
- -webkit-transition: -webkit-transform 0.2s;
4564
- transition: transform 0.2s;
4565
- background:transparent !important;
4566
- }
4567
-
4568
- html body .modula > .filters.menu--caliban .modula_menu__link::before {
4569
- border-width: 0 2px;
4570
- -webkit-transform: scale3d(1, 0, 1);
4571
- transform: scale3d(1, 0, 1);
4572
- -webkit-transform-origin: 0% 50%;
4573
- transform-origin: 0% 50%;
4574
- }
4575
-
4576
- html body .modula > .filters.menu--caliban .modula_menu__link::after {
4577
- border-width: 2px 0;
4578
- -webkit-transform: scale3d(0, 1, 1);
4579
- transform: scale3d(0, 1, 1);
4580
- -webkit-transform-origin: 0% 0%;
4581
- transform-origin: 0% 0%;
4582
- -webkit-transition-delay: 0.2s;
4583
- transition-delay: 0.2s;
4584
- }
4585
-
4586
- html body .modula > .filters.menu--caliban .modula_menu__item--current .modula_menu__link::before,
4587
- html body .modula > .filters.menu--caliban .modula_menu__item--current .modula_menu__link::after {
4588
- -webkit-transform: scale3d(1, 1, 1);
4589
- transform: scale3d(1, 1, 1);
4590
- }
4591
-
4592
- /* Ferdinand */
4593
- html body .modula > .filters.menu--ferdinand .modula_menu__link {
4594
- position: relative;
4595
- display: block;
4596
- margin: 0 1.5em;
4597
- padding: 0.65em 0;
4598
- text-align: center;
4599
- color: #b5b5b5;
4600
- -webkit-transition: background 0.3s, color 0.3s;
4601
- transition: background 0.3s, color 0.3s;
4602
- }
4603
-
4604
- html body .modula > .filters.menu--ferdinand .modula_menu__link:hover,
4605
- html body .modula > .filters.menu--ferdinand .modula_menu__link:focus {
4606
- color: #929292;
4607
- }
4608
-
4609
- html body .modula > .filters.menu--ferdinand .modula_menu__item--current .modula_menu__link {
4610
- color: #d94f5c;
4611
- }
4612
-
4613
- html body .modula > .filters.menu--ferdinand .modula_menu__link::before {
4614
- content: '';
4615
- position: absolute;
4616
- bottom: 0;
4617
- left: 0;
4618
- width: 100%;
4619
- height: 2px;
4620
- background: #d94f5c;
4621
- -webkit-transform: scale3d(0, 5, 1);
4622
- transform: scale3d(0, 5, 1);
4623
- -webkit-transform-origin: 0% 50%;
4624
- transform-origin: 0% 50%;
4625
- -webkit-transition: -webkit-transform 0.3s;
4626
- transition: transform 0.3s;
4627
- -webkit-transition-timing-function: cubic-bezier(1, 0.68, 0.16, 0.9);
4628
- transition-timing-function: cubic-bezier(1, 0.68, 0.16, 0.9);
4629
- }
4630
-
4631
- html body .modula > .filters.menu--ferdinand .modula_menu__item--current .modula_menu__link::before {
4632
- -webkit-transform: scale3d(1, 1, 1);
4633
- transform: scale3d(1, 1, 1);
4634
- }
4635
-
4636
- /* Adrian */
4637
- html body .modula > .filters.menu--adrian .modula_menu__item {
4638
- margin: 0 1em;
4639
- }
4640
-
4641
- html body .modula > .filters.menu--adrian .modula_menu__link {
4642
- position: relative;
4643
- overflow: hidden;
4644
- width: 130px;
4645
- padding: 1em 0;
4646
- color: #b5b5b5;
4647
- }
4648
-
4649
- html body .modula > .filters.menu--adrian .modula_menu__link:hover,
4650
- html body .modula > .filters.menu--adrian .modula_menu__link:focus {
4651
- color: #929292;
4652
- }
4653
-
4654
- html body .modula > .filters.menu--adrian .modula_menu__item--current .modula_menu__link {
4655
- color: #d94f5c;
4656
- }
4657
-
4658
- html body .modula > .filters.menu--adrian .modula_menu__link::before {
4659
- content: '';
4660
- position: absolute;
4661
- bottom: 0;
4662
- left: 0;
4663
- width: 300%;
4664
- height: 50px;
4665
- opacity: 0;
4666
- -webkit-transform: translate3d(130px, 0, 0);
4667
- transform: translate3d(130px, 0, 0);
4668
- -webkit-transition: -webkit-transform 0s 0.3s, opacity 0.3s;
4669
- transition: transform 0s 0.3s, opacity 0.3s;
4670
- }
4671
-
4672
- html body .modula > .filters.menu--adrian .modula_menu__item--current .modula_menu__link::before {
4673
- opacity: 1;
4674
- -webkit-transform: translate3d(-260px, 0, 0);
4675
- transform: translate3d(-260px, 0, 0);
4676
- -webkit-transition: -webkit-transform 0.5s;
4677
- transition: transform 0.5s;
4678
- }
4679
-
4680
- html body .modula > .filters.menu--adrian .modula_menu__helper {
4681
- display: block;
4682
- pointer-events: none;
4683
- }
4684
-
4685
- html body .modula > .filters.menu--adrian .modula_menu__item--current .modula_menu__helper {
4686
- -webkit-animation: anim-adrian 0.3s forwards;
4687
- animation: anim-adrian 0.3s forwards;
4688
- }
4689
-
4690
- @-webkit-keyframes anim-adrian {
4691
- 50% {
4692
- opacity: 0;
4693
- -webkit-transform: translate3d(0, -100%, 0);
4694
- transform: translate3d(0, -100%, 0);
4695
- }
4696
-
4697
- 51% {
4698
- opacity: 0;
4699
- -webkit-transform: translate3d(0, 100%, 0);
4700
- transform: translate3d(0, 100%, 0);
4701
- }
4702
-
4703
- 100% {
4704
- opacity: 1;
4705
- -webkit-transform: translate3d(0, 0, 0);
4706
- transform: translate3d(0, 0, 0);
4707
- }
4708
- }
4709
-
4710
- @keyframes anim-adrian {
4711
- 50% {
4712
- opacity: 0;
4713
- -webkit-transform: translate3d(0, -100%, 0);
4714
- transform: translate3d(0, -100%, 0);
4715
- }
4716
-
4717
- 51% {
4718
- opacity: 0;
4719
- -webkit-transform: translate3d(0, 100%, 0);
4720
- transform: translate3d(0, 100%, 0);
4721
- }
4722
-
4723
- 100% {
4724
- opacity: 1;
4725
- -webkit-transform: translate3d(0, 0, 0);
4726
- transform: translate3d(0, 0, 0);
4727
- }
4728
- }
4729
-
4730
- /* Francisco */
4731
- html body .modula > .filters.menu--francisco .modula_menu__item {
4732
- margin: 0 1.5em;
4733
- }
4734
-
4735
- html body .modula > .filters.menu--francisco .modula_menu__link {
4736
- position: relative;
4737
- overflow: hidden;
4738
- /*height: 3em;*/
4739
- padding: 1em 0;
4740
- text-align: center;
4741
- color: #b5b5b5;
4742
- -webkit-transition: color 0.3s;
4743
- transition: color 0.3s;
4744
- }
4745
-
4746
- html body .modula > .filters.menu--francisco .modula_menu__link:hover,
4747
- html body .modula > .filters.menu--francisco .modula_menu__link:focus {
4748
- color: #929292;
4749
- }
4750
-
4751
- html body .modula > .filters.menu--francisco .modula_menu__item--current .modula_menu__link {
4752
- color: #d94f5c;
4753
- }
4754
-
4755
- html body .modula > .filters.menu--francisco .modula_menu__link::before {
4756
- content: '';
4757
- position: absolute;
4758
- bottom: 0;
4759
- left: 0;
4760
- width: 100%;
4761
- height: 2px;
4762
- opacity: 0;
4763
- background: #d94f5c;
4764
- -webkit-transform: translate3d(0, -1em, 0);
4765
- transform: translate3d(0, -1em, 0);
4766
- -webkit-transition: -webkit-transform 0s 0.3s, opacity 0.2s;
4767
- transition: transform 0s 0.3s, opacity 0.2s;
4768
- }
4769
-
4770
- html body .modula > .filters.menu--francisco .modula_menu__item--current .modula_menu__link::before {
4771
- opacity: 1;
4772
- -webkit-transform: translate3d(0, 0, 0);
4773
- transform: translate3d(0, 0, 0);
4774
- -webkit-transition: -webkit-transform 0.3s, opacity 0.1s;
4775
- transition: transform 0.3s, opacity 0.1s;
4776
- -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
4777
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
4778
- }
4779
-
4780
- html body .modula > .filters.menu--francisco .modula_menu__helper {
4781
- display: block;
4782
- pointer-events: none;
4783
- }
4784
-
4785
- html body .modula > .filters.menu--francisco .modula_menu__item--current .modula_menu__helper {
4786
- -webkit-animation: anim-francisco 0.3s forwards;
4787
- animation: anim-francisco 0.3s forwards;
4788
- }
4789
-
4790
- @-webkit-keyframes anim-francisco {
4791
- 50% {
4792
- opacity: 0;
4793
- -webkit-transform: translate3d(0, 100%, 0);
4794
- transform: translate3d(0, 100%, 0);
4795
- }
4796
-
4797
- 51% {
4798
- opacity: 0;
4799
- -webkit-transform: translate3d(0, -100%, 0);
4800
- transform: translate3d(0, -100%, 0);
4801
- }
4802
-
4803
- 100% {
4804
- opacity: 1;
4805
- -webkit-transform: translate3d(0, 0, 0);
4806
- transform: translate3d(0, 0, 0);
4807
- }
4808
- }
4809
-
4810
- @keyframes anim-francisco {
4811
- 50% {
4812
- opacity: 0;
4813
- -webkit-transform: translate3d(0, 100%, 0);
4814
- transform: translate3d(0, 100%, 0);
4815
- }
4816
-
4817
- 51% {
4818
- opacity: 0;
4819
- -webkit-transform: translate3d(0, -100%, 0);
4820
- transform: translate3d(0, -100%, 0);
4821
- }
4822
-
4823
- 100% {
4824
- opacity: 1;
4825
- -webkit-transform: translate3d(0, 0, 0);
4826
- transform: translate3d(0, 0, 0);
4827
- }
4828
- }
4829
-
4830
- /* Trinculo */
4831
- html body .modula > .filters.menu--trinculo .modula_menu__item {
4832
- margin: 0 1.75em;
4833
- }
4834
-
4835
- html body .modula > .filters.menu--trinculo .modula_menu__link {
4836
- position: relative;
4837
- padding: 1em 0.1em;
4838
- text-align: center;
4839
- color: #b5b5b5;
4840
- -webkit-transition: color 0.3s;
4841
- transition: color 0.3s;
4842
- }
4843
-
4844
- html body .modula > .filters.menu--trinculo .modula_menu__link:hover,
4845
- html body .modula > .filters.menu--trinculo .modula_menu__link:focus {
4846
- color: #929292;
4847
- }
4848
-
4849
- html body .modula > .filters.menu--trinculo .modula_menu__link::before {
4850
- content: '';
4851
- position: absolute;
4852
- bottom: 0;
4853
- left: 0;
4854
- width: 100%;
4855
- height: 4px;
4856
- opacity: 0;
4857
- background: #d94f5c;
4858
- -webkit-transform: scale3d(0, 1, 1);
4859
- transform: scale3d(0, 1, 1);
4860
- -webkit-transform-origin: 100% 50%;
4861
- transform-origin: 100% 50%;
4862
- -webkit-transition: -webkit-transform 0s 0.2s, opacity 0.2s;
4863
- transition: transform 0s 0.2s, opacity 0.2s;
4864
- }
4865
-
4866
- html body .modula > .filters.menu--trinculo .modula_menu__item--current .modula_menu__link::before {
4867
- opacity: 1;
4868
- -webkit-transform: scale3d(1, 1, 1);
4869
- transform: scale3d(1, 1, 1);
4870
- -webkit-transition: -webkit-transform 0.2s, opacity 0.1s;
4871
- transition: transform 0.2s, opacity 0.1s;
4872
- -webkit-transition-delay: 0.35s;
4873
- transition-delay: 0.35s;
4874
- -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
4875
- transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
4876
- }
4877
-
4878
- html body .modula > .filters.menu--trinculo .modula_menu__helper {
4879
- display: block;
4880
- pointer-events: none;
4881
- }
4882
-
4883
- html body .modula > .filters.menu--trinculo .modula_menu__item--current .modula_menu__helper {
4884
- -webkit-animation: anim-trinculo 0.6s forwards;
4885
- animation: anim-trinculo 0.6s forwards;
4886
- }
4887
-
4888
- @-webkit-keyframes anim-trinculo {
4889
- 50% {
4890
- opacity: 0;
4891
- color: #929292;
4892
- -webkit-transform: translate3d(100%, 0, 0);
4893
- transform: translate3d(100%, 0, 0);
4894
- }
4895
-
4896
- 51% {
4897
- opacity: 0;
4898
- color: #d94f5c;
4899
- -webkit-transform: translate3d(-100%, 0, 0);
4900
- transform: translate3d(-100%, 0, 0);
4901
- }
4902
-
4903
- 75% {
4904
- opacity: 1;
4905
- -webkit-transform: translate3d(5px, 0, 0);
4906
- transform: translate3d(5px, 0, 0);
4907
- }
4908
-
4909
- 100% {
4910
- opacity: 1;
4911
- color: #d94f5c;
4912
- -webkit-transform: translate3d(0, 0, 0);
4913
- transform: translate3d(0, 0, 0);
4914
- }
4915
- }
4916
-
4917
- @keyframes anim-trinculo {
4918
- 50% {
4919
- opacity: 0;
4920
- color: #929292;
4921
- -webkit-transform: translate3d(100%, 0, 0);
4922
- transform: translate3d(100%, 0, 0);
4923
- }
4924
-
4925
- 51% {
4926
- opacity: 0;
4927
- color: #d94f5c;
4928
- -webkit-transform: translate3d(-100%, 0, 0);
4929
- transform: translate3d(-100%, 0, 0);
4930
- }
4931
-
4932
- 75% {
4933
- opacity: 1;
4934
- -webkit-transform: translate3d(5px, 0, 0);
4935
- transform: translate3d(5px, 0, 0);
4936
- }
4937
-
4938
- 100% {
4939
- opacity: 1;
4940
- color: #d94f5c;
4941
- -webkit-transform: translate3d(0, 0, 0);
4942
- transform: translate3d(0, 0, 0);
4943
- }
4944
- }
4945
-
4946
- /* Stephano */
4947
- html body .modula > .filters.menu--stephano .modula_menu__item {
4948
- position: relative;
4949
- margin: 0 1em;
4950
- }
4951
-
4952
- html body .modula > .filters.menu--stephano .modula_menu__link {
4953
- position: relative;
4954
- min-width: 105px;
4955
- text-align: center;
4956
- color: #b5b5b5;
4957
- -webkit-transition: color 0.3s;
4958
- transition: color 0.3s;
4959
- }
4960
-
4961
- html body .modula > .filters.menu--stephano .modula_menu__link:hover,
4962
- html body .modula > .filters.menu--stephano .modula_menu__link:focus {
4963
- color: #929292;
4964
- }
4965
-
4966
- html body .modula > .filters.menu--stephano .modula_menu__item--current .modula_menu__link {
4967
- color: #d94f5c;
4968
- }
4969
-
4970
- html body .modula > .filters.menu--stephano .modula_menu__item::before,
4971
- html body .modula > .filters.menu--stephano .modula_menu__link::before,
4972
- html body .modula > .filters.menu--stephano .modula_menu__link::after {
4973
- content: '';
4974
- position: absolute;
4975
- bottom: 0;
4976
- width: 10px;
4977
- height: 2px;
4978
- opacity: 0;
4979
- background: #d94f5c;
4980
- }
4981
-
4982
- /* flipped sides */
4983
- html body .modula > .filters.menu--stephano .modula_menu__link::before,
4984
- html body .modula > .filters.menu--stephano .modula_menu__link::after {
4985
- -webkit-transform: translate3d(0, 10px, 0);
4986
- transform: translate3d(0, 10px, 0);
4987
- -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
4988
- transition: transform 0.3s, opacity 0.3s;
4989
- }
4990
-
4991
- html body .modula > .filters.menu--stephano .modula_menu__item--current .modula_menu__link::before,
4992
- html body .modula > .filters.menu--stephano .modula_menu__item--current .modula_menu__link::after {
4993
- opacity: 1;
4994
- }
4995
-
4996
- /* left flip */
4997
- html body .modula > .filters.menu--stephano .modula_menu__link::before {
4998
- left: 0;
4999
- -webkit-transform-origin: 0% 0%;
5000
- transform-origin: 0% 0%;
5001
- }
5002
-
5003
- html body .modula > .filters.menu--stephano .modula_menu__item--current .modula_menu__link::before {
5004
- -webkit-transform: rotate3d(0, 0, 1, -90deg);
5005
- transform: rotate3d(0, 0, 1, -90deg);
5006
- }
5007
-
5008
- /* right flip */
5009
- html body .modula > .filters.menu--stephano .modula_menu__link::after {
5010
- right: 0;
5011
- -webkit-transform-origin: 100% 0%;
5012
- transform-origin: 100% 0%;
5013
- }
5014
-
5015
- html body .modula > .filters.menu--stephano .modula_menu__item--current .modula_menu__link::after {
5016
- -webkit-transform: rotate3d(0, 0, 1, 90deg);
5017
- transform: rotate3d(0, 0, 1, 90deg);
5018
- }
5019
-
5020
- /* bottom line */
5021
- html body .modula > .filters.menu--stephano .modula_menu__item::before {
5022
- left: 0;
5023
- width: 100%;
5024
- -webkit-transform: translate3d(0, 10px, 0);
5025
- transform: translate3d(0, 10px, 0);
5026
- -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
5027
- transition: transform 0.3s, opacity 0.3s;
5028
- }
5029
-
5030
- html body .modula > .filters.menu--stephano .modula_menu__item--current::before {
5031
- opacity: 1;
5032
- -webkit-transform: translate3d(0, 0, 0);
5033
- transform: translate3d(0, 0, 0);
5034
- -webkit-transition: -webkit-transform 0.3s, opacity 0.1s;
5035
- transition: transform 0.3s, opacity 0.1s;
5036
- }
5037
-
5038
- /* Iris */
5039
- html body .modula > .filters.menu--iris .modula_menu__item {
5040
- margin: 0 1em;
5041
- }
5042
-
5043
- html body .modula > .filters.menu--iris .modula_menu__link {
5044
- position: relative;
5045
- text-align: center;
5046
- color: #b5b5b5;
5047
- -webkit-transition: color 0.3s;
5048
- transition: color 0.3s;
5049
- }
5050
-
5051
- html body .modula > .filters.menu--iris .modula_menu__link:hover,
5052
- html body .modula > .filters.menu--iris .modula_menu__link:focus {
5053
- color: #929292;
5054
- }
5055
-
5056
- html body .modula > .filters.menu--iris .modula_menu__item--current .modula_menu__link {
5057
- color: #d94f5c;
5058
- }
5059
-
5060
- html body .modula > .filters.menu--iris .modula_menu__link::before,
5061
- html body .modula > .filters.menu--iris .modula_menu__link::after {
5062
- content: '';
5063
- position: absolute;
5064
- width: 10px;
5065
- height: 10px;
5066
- opacity: 0;
5067
- border: 2px solid #d94f5c;
5068
- -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
5069
- transition: transform 0.3s, opacity 0.3s;
5070
- -webkit-transition-timing-function: cubic-bezier(0.17, 0.67, 0.05, 1.29);
5071
- transition-timing-function: cubic-bezier(0.17, 0.67, 0.05, 1.29);
5072
- background:transparent !important;
5073
- }
5074
-
5075
- html body .modula > .filters.menu--iris .modula_menu__link::before {
5076
- top: 0;
5077
- left: 0;
5078
- border-width: 2px 0 0 2px;
5079
- -webkit-transform: translate3d(10px, 10px, 0);
5080
- transform: translate3d(10px, 10px, 0);
5081
- }
5082
-
5083
- html body .modula > .filters.menu--iris .modula_menu__link::after {
5084
- right: 0;
5085
- bottom: 0;
5086
- border-width: 0 2px 2px 0;
5087
- -webkit-transform: translate3d(-10px, -10px, 0);
5088
- transform: translate3d(-10px, -10px, 0);
5089
- }
5090
-
5091
- html body .modula > .filters.menu--iris .modula_menu__item--current .modula_menu__link::before,
5092
- html body .modula > .filters.menu--iris .modula_menu__item--current .modula_menu__link::after {
5093
- opacity: 1;
5094
- -webkit-transform: translate3d(0, 0, 0);
5095
- transform: translate3d(0, 0, 0);
5096
- }
5097
-
5098
- /* Ceres */
5099
- html body .modula > .filters.menu--ceres .modula_menu__item {
5100
- position: relative;
5101
- margin:0 !important;
5102
- }
5103
-
5104
- html body .modula > .filters.menu--ceres .modula_menu__link {
5105
- position: relative;
5106
- min-width: 115px;
5107
- height: 50px;
5108
- padding:0;
5109
- text-align: center;
5110
- color: #b5b5b5;
5111
- -webkit-transition: color 0.3s;
5112
- transition: color 0.3s;
5113
- line-height: 50px;
5114
- }
5115
-
5116
- html body .modula > .filters.menu--ceres .modula_menu__link:hover,
5117
- html body .modula > .filters.menu--ceres .modula_menu__link:focus {
5118
- color: #929292;
5119
- }
5120
-
5121
- html body .modula > .filters.menu--ceres .modula_menu__item--current .modula_menu__link {
5122
- color: #d94f5c;
5123
- }
5124
-
5125
- html body .modula > .filters.menu--ceres .modula_menu__item::before,
5126
- html body .modula > .filters.menu--ceres .modula_menu__item::after,
5127
- html body .modula > .filters.menu--ceres .modula_menu__link::after {
5128
- content: '';
5129
- position: absolute;
5130
- bottom: 0;
5131
- background: #d94f5c;
5132
- }
5133
-
5134
- html body .modula > .filters.menu--ceres .modula_menu__item::before,
5135
- html body .modula > .filters.menu--ceres .modula_menu__item::after {
5136
- width: 2px;
5137
- height: 100%;
5138
- opacity: 0;
5139
- -webkit-transform: scale3d(1, 0, 1);
5140
- transform: scale3d(1, 0, 1);
5141
- -webkit-transform-origin: 50% 0%;
5142
- transform-origin: 50% 0%;
5143
- -webkit-transition: -webkit-transform 0s 0.1s, opacity 0.1s;
5144
- transition: transform 0s 0.1s, opacity 0.1s;
5145
- }
5146
-
5147
- html body .modula > .filters.menu--ceres .modula_menu__item::before {
5148
- left: 0;
5149
- }
5150
-
5151
- html body .modula > .filters.menu--ceres .modula_menu__item::after {
5152
- right: 0;
5153
- }
5154
-
5155
- html body .modula > .filters.menu--ceres .modula_menu__item--current::before,
5156
- html body .modula > .filters.menu--ceres .modula_menu__item--current::after {
5157
- opacity: 1;
5158
- -webkit-transform: scale3d(1, 1, 1);
5159
- transform: scale3d(1, 1, 1);
5160
- -webkit-transition: -webkit-transform 0.3s;
5161
- transition: transform 0.3s;
5162
- -webkit-transition-delay: 0.3s;
5163
- transition-delay: 0.3s;
5164
- -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
5165
- transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
5166
- }
5167
-
5168
- /* bottom line */
5169
- html body .modula > .filters.menu--ceres .modula_menu__link::after {
5170
- left: 0;
5171
- width: 100%;
5172
- height: 2px;
5173
- -webkit-transition: -webkit-transform 0.3s;
5174
- transition: transform 0.3s;
5175
- }
5176
-
5177
- html body .modula > .filters.menu--ceres .modula_menu__item--current .modula_menu__link::after {
5178
- -webkit-transform: translate3d(0, -48px, 0);
5179
- transform: translate3d(0, -48px, 0);
5180
- -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
5181
- transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
5182
- }
5183
-
5184
- /* Juno */
5185
- html body .modula > .filters.menu--juno .modula_menu__item {
5186
- position: relative;
5187
- overflow: hidden;
5188
- margin: 0.5em;
5189
- }
5190
-
5191
- html body .modula > .filters.menu--juno .modula_menu__link {
5192
- position: relative;
5193
- z-index: 10;
5194
- text-align: center;
5195
- color: #b5b5b5;
5196
- -webkit-transition: color 0.3s;
5197
- transition: color 0.3s;
5198
- width:auto;
5199
- }
5200
-
5201
- html body .modula > .filters.menu--juno .modula_menu__link:hover,
5202
- html body .modula > .filters.menu--juno .modula_menu__link:focus {
5203
- color: #929292;
5204
- }
5205
-
5206
- html body .modula > .filters.menu--juno .modula_menu__item--current .modula_menu__link {
5207
- color: #d94f5c;
5208
- }
5209
-
5210
- html body .modula > .filters.menu--juno .modula_menu__item::before,
5211
- html body .modula > .filters.menu--juno .modula_menu__item::after,
5212
- html body .modula > .filters.menu--juno .modula_menu__link::before,
5213
- html body .modula > .filters.menu--juno .modula_menu__link::after {
5214
- content: '';
5215
- position: absolute;
5216
- pointer-events: none;
5217
- opacity: 0;
5218
- background: #d94f5c;
5219
- -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
5220
- transition: transform 0.3s, opacity 0.3s;
5221
- -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
5222
- transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
5223
- }
5224
-
5225
- /* top and bottom line */
5226
- html body .modula > .filters.menu--juno .modula_menu__item::before,
5227
- html body .modula > .filters.menu--juno .modula_menu__item::after {
5228
- left: 0;
5229
- width: 100%;
5230
- height: 2px;
5231
- }
5232
-
5233
- html body .modula > .filters.menu--juno .modula_menu__item::before {
5234
- top: 0;
5235
- -webkit-transform: translate3d(0, 15px, 0);
5236
- transform: translate3d(0, 15px, 0);
5237
- }
5238
-
5239
- html body .modula > .filters.menu--juno .modula_menu__item::after {
5240
- bottom: 0;
5241
- -webkit-transform: translate3d(0, -15px, 0);
5242
- transform: translate3d(0, -15px, 0);
5243
- }
5244
-
5245
- /* left and right line */
5246
- html body .modula > .filters.menu--juno .modula_menu__link::before,
5247
- html body .modula > .filters.menu--juno .modula_menu__link::after {
5248
- top: 0;
5249
- width: 2px;
5250
- height: 100%;
5251
- }
5252
-
5253
- html body .modula > .filters.menu--juno .modula_menu__link::before {
5254
- left: 0;
5255
- -webkit-transform: translate3d(15px, 0, 0);
5256
- transform: translate3d(15px, 0, 0);
5257
- }
5258
-
5259
- html body .modula > .filters.menu--juno .modula_menu__link::after {
5260
- right: 0;
5261
- -webkit-transform: translate3d(-15px, 0, 0);
5262
- transform: translate3d(-15px, 0, 0);
5263
- }
5264
-
5265
- html body .modula > .filters.menu--juno .modula_menu__item--current::before,
5266
- html body .modula > .filters.menu--juno .modula_menu__item--current::after,
5267
- html body .modula > .filters.menu--juno .modula_menu__item--current .modula_menu__link::before,
5268
- html body .modula > .filters.menu--juno .modula_menu__item--current .modula_menu__link::after {
5269
- opacity: 1;
5270
- -webkit-transform: translate3d(0, 0, 0);
5271
- transform: translate3d(0, 0, 0);
5272
- }
5273
-
5274
- /* Maria */
5275
- html body .modula > .filters.menu--maria .modula_menu__item {
5276
- position: relative;
5277
- display: inline-block;
5278
- -webkit-flex-direction: column;
5279
- flex-direction: column;
5280
- -webkit-justify-content: center;
5281
- justify-content: center;
5282
- -webkit-align-items: center;
5283
- align-items: center;
5284
- margin: 0 1.25em;
5285
- text-align: center;
5286
- }
5287
-
5288
- html body .modula > .filters.menu--maria.vertical-filters .modula_menu__item {
5289
- display:block;
5290
- }
5291
-
5292
- html body .modula > .filters.menu--maria .modula_menu__item::before {
5293
- content: '';
5294
- position: absolute;
5295
- top: 40px;
5296
- left: 50%;
5297
- width: 60px;
5298
- height: 4px;
5299
- margin-left: -15px;
5300
- background: #d94f5c;
5301
- -webkit-transform: rotate3d(0, 0, 1, -45deg) scale3d(0, 1, 1) translateX( -50% );
5302
- transform: rotate3d(0, 0, 1, -45deg) scale3d(0, 1, 1) translateX( -50% );
5303
- -webkit-transform-origin: 0 50%;
5304
- transform-origin: 0 50%;
5305
- -webkit-transition: -webkit-transform 0.4s;
5306
- transition: transform 0.4s;
5307
- }
5308
-
5309
- html body .modula > .filters.menu--maria .modula_menu__item.modula_menu__item--current::before {
5310
- -webkit-transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
5311
- transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
5312
- }
5313
-
5314
- html body .modula > .filters.menu--maria .modula_menu__link {
5315
- position: relative;
5316
- color: #929292;
5317
- -webkit-transition: color 0.4s;
5318
- transition: color 0.4s;
5319
- }
5320
-
5321
- html body .modula > .filters.menu--maria .modula_menu__link:hover,
5322
- html body .modula > .filters.menu--maria .modula_menu__link:focus {
5323
- color: #d94f5c;
5324
- }
5325
-
5326
- html body .modula > .filters.menu--maria .modula_menu__item.modula_menu__item--current .modula_menu__link {
5327
- color: #333;
5328
- }
5329
-
5330
- /* Valentine */
5331
- html body .modula > .filters.menu--valentine .modula_menu__item {
5332
- position: relative;
5333
- margin: 0 1em;
5334
- }
5335
-
5336
- html body .modula > .filters.menu--valentine .modula_menu__link {
5337
- position: relative;
5338
- display: block;
5339
- min-width: 105px;
5340
- text-align: center;
5341
- color: #b5b5b5;
5342
- -webkit-transition: color 0.3s;
5343
- transition: color 0.3s;
5344
- }
5345
-
5346
- html body .modula > .filters.menu--valentine .modula_menu__link:hover,
5347
- html body .modula > .filters.menu--valentine .modula_menu__link:focus {
5348
- color: #929292;
5349
- }
5350
-
5351
- html body .modula > .filters.menu--valentine .modula_menu__item--current .modula_menu__link {
5352
- color: #d94f5c;
5353
- }
5354
-
5355
- html body .modula > .filters.menu--valentine .modula_menu__item::before,
5356
- html body .modula > .filters.menu--valentine .modula_menu__item::after,
5357
- html body .modula > .filters.menu--valentine .modula_menu__link::before,
5358
- html body .modula > .filters.menu--valentine .modula_menu__link::after {
5359
- content: '';
5360
- position: absolute;
5361
- background: #d94f5c;
5362
- -webkit-transform-origin: 350% 350%;
5363
- transform-origin: 350% 350%;
5364
- -webkit-transition: -webkit-transform 0.5s;
5365
- transition: transform 0.5s;
5366
- -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
5367
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
5368
- }
5369
-
5370
- html body .modula > .filters.menu--valentine .modula_menu__item::before,
5371
- html body .modula > .filters.menu--valentine .modula_menu__item::after {
5372
- top: 0;
5373
- width: 2px;
5374
- height: 100%;
5375
- -webkit-transform: scale3d(1, 0, 1);
5376
- transform: scale3d(1, 0, 1);
5377
- }
5378
-
5379
- /* left line */
5380
- html body .modula > .filters.menu--valentine .modula_menu__item::before {
5381
- left: 0;
5382
- -webkit-transition-delay: 0.05s;
5383
- transition-delay: 0.05s;
5384
- }
5385
-
5386
- /* right line */
5387
- html body .modula > .filters.menu--valentine .modula_menu__item::after {
5388
- right: 0;
5389
- -webkit-transition-delay: 0.15s;
5390
- transition-delay: 0.15s;
5391
- }
5392
-
5393
- html body .modula > .filters.menu--valentine .modula_menu__link::before,
5394
- html body .modula > .filters.menu--valentine .modula_menu__link::after {
5395
- left: 0;
5396
- width: 100%;
5397
- height: 2px;
5398
- -webkit-transform: scale3d(0, 1, 1);
5399
- transform: scale3d(0, 1, 1);
5400
- }
5401
-
5402
- /* top line */
5403
- html body .modula > .filters.menu--valentine .modula_menu__link::before {
5404
- top: 0;
5405
- -webkit-transition-delay: 0.1s;
5406
- transition-delay: 0.1s;
5407
- }
5408
-
5409
- /* bottom line */
5410
- html body .modula > .filters.menu--valentine .modula_menu__link::after {
5411
- bottom: 0;
5412
- }
5413
-
5414
- html body .modula > .filters.menu--valentine .modula_menu__item--current::before,
5415
- html body .modula > .filters.menu--valentine .modula_menu__item--current::after,
5416
- html body .modula > .filters.menu--valentine .modula_menu__item--current .modula_menu__link::before,
5417
- html body .modula > .filters.menu--valentine .modula_menu__item--current .modula_menu__link::after {
5418
- -webkit-transform: scale3d(1, 1, 1);
5419
- transform: scale3d(1, 1, 1);
5420
- }
5421
-
5422
- /* Puck (by @eden_sg) */
5423
- html body .modula > .filters.menu--puck .modula_menu__link {
5424
- position: relative;
5425
- display: block;
5426
- margin: 0 1em;
5427
- text-align: center;
5428
- color: #929292;
5429
- -webkit-transition: color 0.4s;
5430
- transition: color 0.4s;
5431
- }
5432
-
5433
- html body .modula > .filters.menu--puck .modula_menu__link:hover,
5434
- html body .modula > .filters.menu--puck .modula_menu__link:focus {
5435
- color: #828282;
5436
- }
5437
-
5438
- html body .modula > .filters.menu--puck .modula_menu__item--current .modula_menu__link {
5439
- color: #d94f5c;
5440
- }
5441
-
5442
- html body .modula > .filters.menu--puck .modula_menu__link::before,
5443
- html body .modula > .filters.menu--puck .modula_menu__link::after {
5444
- content: '';
5445
- position: absolute;
5446
- left: 0;
5447
- width: 100%;
5448
- height: 7px;
5449
- background: #d94f5c;
5450
- -webkit-transform: scale3d(0, 1, 1);
5451
- transform: scale3d(0, 1, 1);
5452
- -webkit-transition: -webkit-transform 0.2s;
5453
- transition: transform 0.2s;
5454
- }
5455
-
5456
- html body .modula > .filters.menu--puck .modula_menu__link::before {
5457
- bottom: -5px;
5458
- height: 2px;
5459
- -webkit-transition-delay: 0.1s;
5460
- transition-delay: 0.1s;
5461
- }
5462
-
5463
- html body .modula > .filters.menu--puck .modula_menu__link::after {
5464
- bottom: 0;
5465
- }
5466
-
5467
- html body .modula > .filters.menu--puck .modula_menu__item--current .modula_menu__link::before,
5468
- html body .modula > .filters.menu--puck .modula_menu__item--current .modula_menu__link::after {
5469
- -webkit-transform: scale3d(1, 1, 1);
5470
- transform: scale3d(1, 1, 1);
5471
- -webkit-transition-timing-function: cubic-bezier(0, 1.54, 0.34, 1);
5472
- transition-timing-function: cubic-bezier(0, 1.54, 0.34, 1);
5473
- -webkit-transition-duration: 0.8s;
5474
- transition-duration: 0.8s;
5475
- }
5476
-
5477
- /* Titania (by @rileyjshaw) */
5478
- html body .modula > .filters.menu--titania .modula_menu__item {
5479
- margin: 0;
5480
- }
5481
-
5482
- html body .modula > .filters.menu--titania .modula_menu__link {
5483
- width: 120px;
5484
- height: 3em;
5485
- text-align: center;
5486
- color: #b5b5b5;
5487
- -webkit-transition: color 0.3s 0.2s;
5488
- transition: color 0.3s 0.2s;
5489
- }
5490
-
5491
- html body .modula > .filters.menu--titania .modula_menu__link:hover,
5492
- html body .modula > .filters.menu--titania .modula_menu__link:focus {
5493
- color: #929292;
5494
- }
5495
-
5496
- html body .modula > .filters.menu--titania .modula_menu__item--current .modula_menu__link {
5497
- color: #d94f5c;
5498
- -webkit-transition: color 0.7s 0.2s;
5499
- transition: color 0.7s 0.2s;
5500
- }
5501
-
5502
- html body .modula > .filters.menu--titania .modula_menu__lines {
5503
- position: absolute;
5504
- top: 0;
5505
- left: 0;
5506
- width: 120px;
5507
- height: 100%;
5508
- pointer-events: none;
5509
- border: 2px solid #d94f5c;
5510
- border-width: 2px 0;
5511
- -webkit-transition: -webkit-transform 0.5s 0.2s;
5512
- transition: transform 0.5s 0.2s;
5513
- -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1);
5514
- -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
5515
- transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
5516
- }
5517
-
5518
- /* vertical lines */
5519
- html body .modula > .filters.menu--titania .modula_menu__lines::before,
5520
- html body .modula > .filters.menu--titania .modula_menu__lines::after {
5521
- content: '';
5522
- position: absolute;
5523
- top: 0;
5524
- left: 0;
5525
- width: 100%;
5526
- height: 100%;
5527
- border: 2px solid #d94f5c;
5528
- border-width: 0 2px;
5529
- -webkit-transform-origin: 0% 50%;
5530
- transform-origin: 0% 50%;
5531
- }
5532
-
5533
- /* animates out at transition start */
5534
- html body .modula > .filters.menu--titania .modula_menu__lines::before {
5535
- -webkit-transform: scale3d(1, 0, 1);
5536
- transform: scale3d(1, 0, 1);
5537
- -webkit-transition: -webkit-transform 0.2s ease;
5538
- transition: transform 0.2s ease;
5539
- }
5540
-
5541
- /* animates back in at transition end */
5542
- html body .modula > .filters.menu--titania .modula_menu__lines::after {
5543
- -webkit-transform: scale3d(1, 1, 1);
5544
- transform: scale3d(1, 1, 1);
5545
- -webkit-transition: -webkit-transform 0.2s ease 0.7s;
5546
- transition: transform 0.2s ease 0.7s;
5547
- }
5548
-
5549
- html body .modula > .filters.menu--titania .modula_menu__item:active:not(.modula_menu__item--current) ~ .modula_menu__lines::before,
5550
- html body .modula > .filters.menu--titania .modula_menu__item:active:not(.modula_menu__item--current) ~ .modula_menu__lines::after {
5551
- -webkit-transition: -webkit-transform 0s;
5552
- transition: transform 0s;
5553
- }
5554
-
5555
- html body .modula > .filters.menu--titania .modula_menu__item:active:not(.modula_menu__item--current) ~ .modula_menu__lines::before {
5556
- -webkit-transform: scale3d(1, 1, 1);
5557
- transform: scale3d(1, 1, 1);
5558
- }
5559
-
5560
- html body .modula > .filters.menu--titania .modula_menu__item:active:not(.modula_menu__item--current) ~ .modula_menu__lines::after {
5561
- -webkit-transform: scale3d(1, 0, 1);
5562
- transform: scale3d(1, 0, 1);
5563
- }
5564
-
5565
- html body .modula > .filters.menu--titania .modula_menu__item:nth-child(1).modula_menu__item--current ~ .modula_menu__lines {
5566
- -webkit-transform: translate3d(0, 0, 0);
5567
- transform: translate3d(0, 0, 0);
5568
- }
5569
-
5570
- html body .modula > .filters.menu--titania .modula_menu__item:nth-child(2).modula_menu__item--current ~ .modula_menu__lines {
5571
- -webkit-transform: translate3d(100%, 0, 0);
5572
- transform: translate3d(100%, 0, 0);
5573
- }
5574
-
5575
- html body .modula > .filters.menu--titania .modula_menu__item:nth-child(3).modula_menu__item--current ~ .modula_menu__lines {
5576
- -webkit-transform: translate3d(200%, 0, 0);
5577
- transform: translate3d(200%, 0, 0);
5578
- }
5579
-
5580
- html body .modula > .filters.menu--titania .modula_menu__item:nth-child(4).modula_menu__item--current ~ .modula_menu__lines {
5581
- -webkit-transform: translate3d(300%, 0, 0);
5582
- transform: translate3d(300%, 0, 0);
5583
- }
5584
-
5585
- html body .modula > .filters.menu--titania .modula_menu__item:nth-child(5).modula_menu__item--current ~ .modula_menu__lines {
5586
- -webkit-transform: translate3d(400%, 0, 0);
5587
- transform: translate3d(400%, 0, 0);
5588
- }
5589
-
5590
- @media screen and (max-width:55em) {
5591
- html body .modula > .filters.menu--titania .modula_menu__lines {
5592
- height: 20%;
5593
- border-width: 0 2px;
5594
- }
5595
-
5596
- /* horizontal lines */
5597
- html body .modula > .filters.menu--titania .modula_menu__lines::before,
5598
- html body .modula > .filters.menu--titania .modula_menu__lines::after {
5599
- border-width: 2px 0;
5600
- -webkit-transform-origin: 50% 0%;
5601
- transform-origin: 50% 0%;
5602
- }
5603
-
5604
- html body .modula > .filters.menu--titania .modula_menu__lines::before {
5605
- -webkit-transform: scale3d(0, 1, 1);
5606
- transform: scale3d(0, 1, 1);
5607
- }
5608
-
5609
- html body .modula > .filters.menu--titania .modula_menu__item:active:not(.modula_menu__item--current) ~ .modula_menu__lines::after {
5610
- -webkit-transform: scale3d(0, 1, 1);
5611
- transform: scale3d(0, 1, 1);
5612
- }
5613
-
5614
- html body .modula > .filters.menu--titania .modula_menu__item:nth-child(1).modula_menu__item--current ~ .modula_menu__lines {
5615
- -webkit-transform: translate3d(0, 0, 0);
5616
- transform: translate3d(0, 0, 0);
5617
- }
5618
-
5619
- html body .modula > .filters.menu--titania .modula_menu__item:nth-child(2).modula_menu__item--current ~ .modula_menu__lines {
5620
- -webkit-transform: translate3d(0, 100%, 0);
5621
- transform: translate3d(0, 100%, 0);
5622
- }
5623
-
5624
- html body .modula > .filters.menu--titania .modula_menu__item:nth-child(3).modula_menu__item--current ~ .modula_menu__lines {
5625
- -webkit-transform: translate3d(0, 200%, 0);
5626
- transform: translate3d(0, 200%, 0);
5627
- }
5628
-
5629
- html body .modula > .filters.menu--titania .modula_menu__item:nth-child(4).modula_menu__item--current ~ .modula_menu__lines {
5630
- -webkit-transform: translate3d(0, 300%, 0);
5631
- transform: translate3d(0, 300%, 0);
5632
- }
5633
-
5634
- html body .modula > .filters.menu--titania .modula_menu__item:nth-child(5).modula_menu__item--current ~ .modula_menu__lines {
5635
- -webkit-transform: translate3d(0, 400%, 0);
5636
- transform: translate3d(0, 400%, 0);
5637
- }
5638
- }
5639
-
5640
- /* bagot (by @RplusTW) */
5641
- html body .modula > .filters.menu--bagot .modula_menu__item {
5642
- position: relative;
5643
- }
5644
-
5645
- html body .modula > .filters.menu--bagot .modula_menu__link {
5646
- position: relative;
5647
- min-width: 7rem;
5648
- height: 50px;
5649
- padding: 1em 1.5em;
5650
- text-align: center;
5651
- opacity: 0.7;
5652
- color: #929292;
5653
- -webkit-transition: opacity 0.3s;
5654
- transition: opacity 0.3s;
5655
- }
5656
-
5657
- html body .modula > .filters.menu--bagot .modula_menu__item::before,
5658
- html body .modula > .filters.menu--bagot .modula_menu__item::after {
5659
- content: '';
5660
- position: absolute;
5661
- z-index: -1;
5662
- top: 0;
5663
- right: 0;
5664
- bottom: 0;
5665
- left: 0;
5666
- color: #d94f5c;
5667
- border-style: solid;
5668
- -webkit-transition: -webkit-transform 0.2s cubic-bezier(1, 0.6, 0, 1);
5669
- transition: transform 0.2s cubic-bezier(1, 0.6, 0, 1);
5670
- }
5671
-
5672
- html body .modula > .filters.menu--bagot .modula_menu__item::before {
5673
- border-width: 2px 0 0;
5674
- -webkit-transform: translateY(calc(100% - 2px));
5675
- transform: translateY(calc(100% - 2px));
5676
- }
5677
-
5678
- html body .modula > .filters.menu--bagot .modula_menu__item::after {
5679
- right: -1px;
5680
- left: -1px; /* for border-collapse */
5681
- border-width: 0 2px;
5682
- -webkit-transform: scale(1, 0);
5683
- transform: scale(1, 0);
5684
- -webkit-transform-origin: 50% 100%;
5685
- transform-origin: 50% 100%;
5686
- }
5687
-
5688
- html body .modula > .filters.menu--bagot .modula_menu__item.modula_menu__item--current::before {
5689
- -webkit-transform: translate(0, 0);
5690
- transform: translate(0, 0);
5691
- -webkit-transition-timing-function: cubic-bezier(1, 0.6, 0, 1.22);
5692
- transition-timing-function: cubic-bezier(1, 0.6, 0, 1.22);
5693
- }
5694
-
5695
- html body .modula > .filters.menu--bagot .modula_menu__item.modula_menu__item--current::after {
5696
- -webkit-transform: scale(1);
5697
- transform: scale(1);
5698
- -webkit-transition-timing-function: cubic-bezier(1, 0.6, 0, 1.22);
5699
- transition-timing-function: cubic-bezier(1, 0.6, 0, 1.22);
5700
- }
5701
-
5702
- html body .modula > .filters.menu--bagot .modula_menu__item--current .modula_menu__link,
5703
- html body .modula > .filters.menu--bagot .modula_menu__link:hover,
5704
- html body .modula > .filters.menu--bagot .modula_menu__link:focus {
5705
- opacity: 1;
5706
- }
5707
-
5708
- html body .modula > .filters.menu--bagot .modula_menu__item--current .modula_menu__link {
5709
- color: #d94f5c;
5710
- }
5711
-
5712
- @media screen and (max-width:55em) {
5713
- html body .modula > .filters.menu--bagot .modula_menu__item {
5714
- margin: 0;
5715
- }
5716
-
5717
- html body .modula > .filters.menu--bagot .modula_menu__item::before {
5718
- border-width: 0 2px 0 0;
5719
- -webkit-transform: translateX(calc(2px - 100%));
5720
- transform: translateX(calc(2px - 100%));
5721
- }
5722
-
5723
- html body .modula > .filters.menu--bagot .modula_menu__item::after {
5724
- top: -1px;
5725
- right: 0;
5726
- bottom: -1px;
5727
- left: 0;
5728
- border-width: 2px 0;
5729
- -webkit-transform: scale(0, 1);
5730
- transform: scale(0, 1);
5731
- -webkit-transform-origin: 0% 50%;
5732
- transform-origin: 0% 50%;
5733
- }
5734
- }
5735
-
5736
- /* Shylock (by @benhanks040888) */
5737
- html body .modula > .filters.menu--shylock .modula_menu__link {
5738
- position: relative;
5739
- margin: 0 1em;
5740
- padding-right: 0;
5741
- padding-left: 0;
5742
- color: #b5b5b5;
5743
- -webkit-transition: color 0.4s;
5744
- transition: color 0.4s;
5745
- }
5746
-
5747
- html body .modula > .filters.menu--shylock .modula_menu__item--current .modula_menu__link,
5748
- html body .modula > .filters.menu--shylock .modula_menu__item--current .modula_menu__link:hover,
5749
- html body .modula > .filters.menu--shylock .modula_menu__item--current .modula_menu__link:focus {
5750
- color: #d94f5c;
5751
- }
5752
-
5753
- html body .modula > .filters.menu--shylock .modula_menu__item--current .modula_menu__link::after,
5754
- html body .modula > .filters.menu--shylock .modula_menu__item--current .modula_menu__link::before {
5755
- -webkit-transform: scale3d(1, 1, 1);
5756
- transform: scale3d(1, 1, 1);
5757
- }
5758
-
5759
- html body .modula > .filters.menu--shylock.modula_menu__item--current .modula_menu__link::before {
5760
- -webkit-transition-delay: 0s;
5761
- transition-delay: 0s;
5762
- }
5763
-
5764
- html body .modula > .filters.menu--shylock .modula_menu__link:hover,
5765
- html body .modula > .filters.menu--shylock .modula_menu__link:focus {
5766
- color: #b5b5b5;
5767
- }
5768
-
5769
- html body .modula > .filters.menu--shylock .modula_menu__link:hover::before,
5770
- html body .modula > .filters.menu--shylock .modula_menu__link:focus::before {
5771
- -webkit-transform: scale3d(1, 1, 1);
5772
- transform: scale3d(1, 1, 1);
5773
- -webkit-transition-delay: 0s;
5774
- transition-delay: 0s;
5775
- }
5776
-
5777
- html body .modula > .filters.menu--shylock .modula_menu__link::before,
5778
- html body .modula > .filters.menu--shylock .modula_menu__link::after {
5779
- content: '';
5780
- position: absolute;
5781
- bottom: 0;
5782
- left: 0;
5783
- width: 100%;
5784
- height: 3px;
5785
- -webkit-transform: scale3d(0, 1, 1);
5786
- transform: scale3d(0, 1, 1);
5787
- -webkit-transform-origin: center left;
5788
- transform-origin: center left;
5789
- -webkit-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
5790
- transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
5791
- }
5792
-
5793
- html body .modula > .filters.menu--shylock .modula_menu__link::before {
5794
- background: #b5b5b5;
5795
- -webkit-transition-delay: 0.4s;
5796
- transition-delay: 0.4s;
5797
- }
5798
-
5799
- html body .modula > .filters.menu--shylock .modula_menu__link::after {
5800
- background: #d94f5c;
5801
- }
5802
-
5803
- /* Cordelia (by @vivien_le_neez) */
5804
- html body .modula > .filters.menu--cordelia .modula_menu__item {
5805
- position: relative;
5806
- }
5807
-
5808
- html body .modula > .filters.menu--cordelia .modula_menu__link {
5809
- -webkit-transition: color 0.3s;
5810
- transition: color 0.3s;
5811
- }
5812
-
5813
- html body .modula > .filters.menu--cordelia .modula_menu__item--current .modula_menu__link {
5814
- color: #d94f5c;
5815
- -webkit-transition: color 0.6s;
5816
- transition: color 0.6s;
5817
- }
5818
-
5819
- html body .modula > .filters.menu--cordelia .modula_menu__item::before,
5820
- html body .modula > .filters.menu--cordelia .modula_menu__item::after {
5821
- content: '';
5822
- position: absolute;
5823
- z-index: 10;
5824
- width: 100%;
5825
- height: 2px;
5826
- background: #d94f5c;
5827
- -webkit-transform: scale3d(0, 1, 1);
5828
- transform: scale3d(0, 1, 1);
5829
- -webkit-animation-fill-mode: initial;
5830
- animation-fill-mode: initial;
5831
- }
5832
-
5833
- html body .modula > .filters.menu--cordelia .modula_menu__item::before {
5834
- top: 0;
5835
- right: 0;
5836
- -webkit-transform-origin: 100% 50%;
5837
- transform-origin: 100% 50%;
5838
- }
5839
-
5840
- html body .modula > .filters.menu--cordelia .modula_menu__item::after {
5841
- bottom: 0;
5842
- left: 0;
5843
- -webkit-transform-origin: 0% 50%;
5844
- transform-origin: 0% 50%;
5845
- }
5846
-
5847
- html body .modula > .filters.menu--cordelia .modula_menu__item--current::before {
5848
- -webkit-animation: anim-cordelia-top 0.6s linear both;
5849
- animation: anim-cordelia-top 0.6s linear both;
5850
- }
5851
-
5852
- html body .modula > .filters.menu--cordelia .modula_menu__item--current::after {
5853
- -webkit-animation: anim-cordelia-bottom 0.6s linear both;
5854
- animation: anim-cordelia-bottom 0.6s linear both;
5855
- }
5856
-
5857
- @-webkit-keyframes anim-cordelia-top {
5858
- 0% {
5859
- -webkit-transform: scale3d(0, 1, 1);
5860
- transform: scale3d(0, 1, 1);
5861
- }
5862
-
5863
- 10% {
5864
- -webkit-transform: scale3d(0.05, 1, 1);
5865
- transform: scale3d(0.05, 1, 1);
5866
- -webkit-animation-timing-function: ease-in;
5867
- animation-timing-function: ease-in;
5868
- }
5869
-
5870
- 50% {
5871
- -webkit-transform: translate3d(-95%, 0, 0) scale3d(0.05, 1, 1);
5872
- transform: translate3d(-95%, 0, 0) scale3d(0.05, 1, 1);
5873
- -webkit-animation-timing-function: ease-out;
5874
- animation-timing-function: ease-out;
5875
- }
5876
-
5877
- 100% {
5878
- -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
5879
- transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
5880
- }
5881
- }
5882
-
5883
- @keyframes anim-cordelia-top {
5884
- 0% {
5885
- -webkit-transform: scale3d(0, 1, 1);
5886
- transform: scale3d(0, 1, 1);
5887
- }
5888
-
5889
- 10% {
5890
- -webkit-transform: scale3d(0.05, 1, 1);
5891
- transform: scale3d(0.05, 1, 1);
5892
- -webkit-animation-timing-function: ease-in;
5893
- animation-timing-function: ease-in;
5894
- }
5895
-
5896
- 50% {
5897
- -webkit-transform: translate3d(-95%, 0, 0) scale3d(0.05, 1, 1);
5898
- transform: translate3d(-95%, 0, 0) scale3d(0.05, 1, 1);
5899
- -webkit-animation-timing-function: ease-out;
5900
- animation-timing-function: ease-out;
5901
- }
5902
-
5903
- 100% {
5904
- -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
5905
- transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
5906
- }
5907
- }
5908
-
5909
- @-webkit-keyframes anim-cordelia-bottom {
5910
- 0% {
5911
- -webkit-transform: scale3d(0, 1, 1);
5912
- transform: scale3d(0, 1, 1);
5913
- }
5914
-
5915
- 10% {
5916
- -webkit-transform: scale3d(0.05, 1, 1);
5917
- transform: scale3d(0.05, 1, 1);
5918
- -webkit-animation-timing-function: ease-in;
5919
- animation-timing-function: ease-in;
5920
- }
5921
-
5922
- 50% {
5923
- -webkit-transform: translate3d(95%, 0, 0) scale3d(0.05, 1, 1);
5924
- transform: translate3d(95%, 0, 0) scale3d(0.05, 1, 1);
5925
- -webkit-animation-timing-function: ease-out;
5926
- animation-timing-function: ease-out;
5927
- }
5928
-
5929
- 100% {
5930
- -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
5931
- transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
5932
- }
5933
- }
5934
-
5935
- @keyframes anim-cordelia-bottom {
5936
- 0% {
5937
- -webkit-transform: scale3d(0, 1, 1);
5938
- transform: scale3d(0, 1, 1);
5939
- }
5940
-
5941
- 10% {
5942
- -webkit-transform: scale3d(0.05, 1, 1);
5943
- transform: scale3d(0.05, 1, 1);
5944
- -webkit-animation-timing-function: ease-in;
5945
- animation-timing-function: ease-in;
5946
- }
5947
-
5948
- 50% {
5949
- -webkit-transform: translate3d(95%, 0, 0) scale3d(0.05, 1, 1);
5950
- transform: translate3d(95%, 0, 0) scale3d(0.05, 1, 1);
5951
- -webkit-animation-timing-function: ease-out;
5952
- animation-timing-function: ease-out;
5953
- }
5954
-
5955
- 100% {
5956
- -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
5957
- transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
5958
- }
5959
- }
5960
-
5961
- /* Horatio Styles */
5962
-
5963
- html body .modula > .filters.menu--horatio .modula_menu__item {
5964
- margin-left: 3px;
5965
- margin-right: 3px;
5966
- color: #4e3c3e;
5967
- }
5968
-
5969
- html body .modula > .filters.menu--horatio .modula_menu__item {
5970
- position: relative;
5971
- -webkit-transition: color .25s;
5972
- transition: color .25s;
5973
- }
5974
-
5975
- html body .modula > .filters.menu--horatio .modula_menu__item a {
5976
- position: relative;
5977
- color: inherit;
5978
- width:auto;
5979
- text-align:center;
5980
- }
5981
-
5982
- html body .modula > .filters.menu--horatio .modula_menu__item--current {
5983
- color: #b5b5b5;
5984
- }
5985
-
5986
- html body .modula > .filters.menu--horatio .modula_menu__item:hover {
5987
- color: #d94f5c;
5988
- }
5989
-
5990
- html body .modula > .filters.menu--horatio .modula_menu__item::before,
5991
- html body .modula > .filters.menu--horatio .modula_menu__item::after,
5992
- html body .modula > .filters.menu--horatio .modula_menu__item a::before,
5993
- html body .modula > .filters.menu--horatio .modula_menu__item a::after {
5994
- position: absolute;
5995
- display: block;
5996
- top: 0;
5997
- right: 0;
5998
- bottom: 0;
5999
- left: 0;
6000
- border: 2px solid currentColor;
6001
- }
6002
-
6003
- html body .modula > .filters.menu--horatio .modula_menu__item::before {
6004
- border-width: 0 0 0 2px;
6005
- -webkit-transform-origin: left bottom;
6006
- transform-origin: left bottom;
6007
- }
6008
-
6009
- html body .modula > .filters.menu--horatio .modula_menu__item::after {
6010
- border-width: 0 2px 0 0;
6011
- -webkit-transform-origin: right top;
6012
- transform-origin: right top;
6013
- }
6014
-
6015
- html body .modula > .filters.menu--horatio .modula_menu__item a::before,
6016
- html body .modula > .filters.menu--horatio .modula_menu__item a::after {
6017
- z-index: 2;
6018
- }
6019
-
6020
- html body .modula > .filters.menu--horatio .modula_menu__item a::before {
6021
- border-width: 2px 0 0;
6022
- -webkit-transform-origin: left top;
6023
- transform-origin: left top;
6024
- }
6025
-
6026
- html body .modula > .filters.menu--horatio .modula_menu__item a::after {
6027
- border-width: 0 0 2px;
6028
- -webkit-transform-origin: right bottom;
6029
- transform-origin: right bottom;
6030
- }
6031
-
6032
- html body .modula > .filters.menu--horatio .modula_menu__item--current::before,
6033
- html body .modula > .filters.menu--horatio .modula_menu__item--current::after,
6034
- html body .modula > .filters.menu--horatio .modula_menu__item:hover::before,
6035
- html body .modula > .filters.menu--horatio .modula_menu__item:hover::after,
6036
- html body .modula > .filters.menu--horatio .modula_menu__item--current a::before,
6037
- html body .modula > .filters.menu--horatio .modula_menu__item--current a::after,
6038
- html body .modula > .filters.menu--horatio .modula_menu__item:hover a::before,
6039
- html body .modula > .filters.menu--horatio .modula_menu__item:hover a::after {
6040
- content: '';
6041
- background-color: transparent !important;
6042
- }
6043
-
6044
- html body .modula > .filters.menu--horatio .modula_menu__item:not(.modula_menu__item--current):hover::before,
6045
- html body .modula > .filters.menu--horatio .modula_menu__item:not(.modula_menu__item--current):hover::after,
6046
- html body .modula > .filters.menu--horatio .modula_menu__item:not(.modula_menu__item--current):hover a::before,
6047
- html body .modula > .filters.menu--horatio .modula_menu__item:not(.modula_menu__item--current):hover a::after {
6048
- -webkit-animation: horatio-anim .6s ease-in-out;
6049
- animation: horatio-anim .6s ease-in-out;
6050
- }
6051
-
6052
- html body .modula > .filters.menu--horatio .modula_menu__item:not(.modula_menu__item--current):hover::before {
6053
- -webkit-animation-delay: -.45s;
6054
- animation-delay: -.45s;
6055
- }
6056
-
6057
- html body .modula > .filters.menu--horatio .modula_menu__item:not(.modula_menu__item--current):hover a::before {
6058
- -webkit-animation-delay: -.3s;
6059
- animation-delay: -.3s;
6060
- }
6061
-
6062
- html body .modula > .filters.menu--horatio .modula_menu__item:not(.modula_menu__item--current):hover::after {
6063
- -webkit-animation-delay: -.15s;
6064
- animation-delay: -.15s;
6065
- }
6066
-
6067
- html body .modula > .filters.menu--horatio .modula_menu__item:not(.modula_menu__item--current):hover a::after {
6068
- -webkit-animation-delay: 0;
6069
- animation-delay: 0;
6070
- }
6071
-
6072
- @-webkit-keyframes horatio-anim {
6073
- 0%, 33% {
6074
- opacity: 0;
6075
- -webkit-transform: rotate(45deg) scale(1.5);
6076
- transform: rotate(45deg) scale(1.5);
6077
- }
6078
-
6079
- 100% {
6080
- opacity: 1;
6081
- -webkit-transform: none;
6082
- transform: none;
6083
- }
6084
- }
6085
-
6086
- @keyframes horatio-anim {
6087
- 0%, 33% {
6088
- opacity: 0;
6089
- -webkit-transform: rotate(45deg) scale(1.5);
6090
- transform: rotate(45deg) scale(1.5);
6091
- }
6092
-
6093
- 100% {
6094
- opacity: 1;
6095
- -webkit-transform: none;
6096
- transform: none;
6097
- }
6098
- }
6099
-
6100
- /* End: Horatio Styles */
6101
-
6102
- /* Luce (by @ryjohnson) */
6103
- html body .modula > .filters.menu--luce .modula_menu__item {
6104
- position: relative;
6105
- margin: 1em;
6106
- }
6107
-
6108
- html body .modula > .filters.menu--luce .modula_menu__link {
6109
- position: relative;
6110
- display: block;
6111
- min-width: 100px;
6112
- text-align: center;
6113
- color: #b5b5b5;
6114
- -webkit-transition: color 0.6s;
6115
- transition: color 0.6s;
6116
- }
6117
-
6118
- html body .modula > .filters.menu--luce .modula_menu__link:hover,
6119
- html body .modula > .filters.menu--luce .modula_menu__link:focus {
6120
- color: #929292;
6121
- }
6122
-
6123
- html body .modula > .filters.menu--luce .modula_menu__item--current .modula_menu__link {
6124
- color: #d94f5c;
6125
- }
6126
-
6127
- html body .modula > .filters.menu--luce .modula_menu__item::before,
6128
- html body .modula > .filters.menu--luce .modula_menu__item::after,
6129
- html body .modula > .filters.menu--luce .modula_menu__link::before,
6130
- html body .modula > .filters.menu--luce .modula_menu__link::after {
6131
- content: '';
6132
- position: absolute;
6133
- background: #b5b5b5;
6134
- -webkit-transition: -webkit-transform 0.25s, background .75s;
6135
- transition: transform 0.25s, background .75s;
6136
- -webkit-transition-timing-function: cubic-bezier(1, 0.53, 0.79, 0.68);
6137
- transition-timing-function: cubic-bezier(1, 0.53, 0.79, 0.68);
6138
- }
6139
-
6140
- /* left and right line */
6141
- html body .modula > .filters.menu--luce .modula_menu__item::before,
6142
- html body .modula > .filters.menu--luce .modula_menu__item::after {
6143
- top: 0;
6144
- width: 2px;
6145
- height: 100%;
6146
- -webkit-transform: scale3d(1, 0, 1);
6147
- transform: scale3d(1, 0, 1);
6148
- }
6149
-
6150
- /* left line */
6151
- html body .modula > .filters.menu--luce .modula_menu__item::before {
6152
- left: 0;
6153
- -webkit-transform-origin: 0% 0%;
6154
- transform-origin: 0% 0%;
6155
- }
6156
-
6157
- /* right line */
6158
- html body .modula > .filters.menu--luce .modula_menu__item::after {
6159
- right: 0;
6160
- -webkit-transform-origin: 50% 0%;
6161
- transform-origin: 50% 0%;
6162
- }
6163
-
6164
- /* top and bottom line */
6165
- html body .modula > .filters.menu--luce .modula_menu__link::before,
6166
- html body .modula > .filters.menu--luce .modula_menu__link::after {
6167
- left: 0;
6168
- width: 100%;
6169
- height: 2px;
6170
- -webkit-transform: scale3d(0, 1, 1);
6171
- transform: scale3d(0, 1, 1);
6172
- }
6173
-
6174
- /* top line */
6175
- html body .modula > .filters.menu--luce .modula_menu__link::before {
6176
- top: 0;
6177
- -webkit-transform-origin: 0 50%;
6178
- transform-origin: 0 50%;
6179
- }
6180
-
6181
- /* bottom line */
6182
- html body .modula > .filters.menu--luce .modula_menu__link::after {
6183
- bottom: 0;
6184
- -webkit-transform-origin: 0% 50%;
6185
- transform-origin: 0% 50%;
6186
- }
6187
-
6188
- /* Delays (first reverse, then current) */
6189
- /* These rules can be simplified, but let's keep it for better readability */
6190
-
6191
- /* bottom line */
6192
- html body .modula > .filters.menu--luce .modula_menu__item .modula_menu__link::after {
6193
- -webkit-transition-delay: 0s;
6194
- transition-delay: 0s;
6195
- }
6196
-
6197
- html body .modula > .filters.menu--luce .modula_menu__item--current .modula_menu__link::after {
6198
- -webkit-transition-delay: 0.25s;
6199
- transition-delay: 0.25s;
6200
- }
6201
-
6202
- /* left line */
6203
- html body .modula > .filters.menu--luce .modula_menu__item::before {
6204
- -webkit-transition-delay: 0.25s;
6205
- transition-delay: 0.25s;
6206
- }
6207
-
6208
- html body .modula > .filters.menu--luce .modula_menu__item--current::before {
6209
- -webkit-transition-delay: 0s;
6210
- transition-delay: 0s;
6211
- }
6212
-
6213
- /* top line */
6214
- html body .modula > .filters.menu--luce .modula_menu__item .modula_menu__link::before {
6215
- -webkit-transition-delay: 0.25s;
6216
- transition-delay: 0.25s;
6217
- }
6218
-
6219
- html body .modula > .filters.menu--luce .modula_menu__item--current .modula_menu__link::before {
6220
- -webkit-transition-delay: 0s;
6221
- transition-delay: 0s;
6222
- }
6223
-
6224
- /* right line */
6225
- html body .modula > .filters.menu--luce .modula_menu__item--current::after {
6226
- -webkit-transition-delay: 0.25s;
6227
- transition-delay: 0.25s;
6228
- }
6229
-
6230
- html body .modula > .filters.menu--luce .modula_menu__item--current::before,
6231
- html body .modula > .filters.menu--luce .modula_menu__item--current::after,
6232
- html body .modula > .filters.menu--luce .modula_menu__item--current .modula_menu__link::before,
6233
- html body .modula > .filters.menu--luce .modula_menu__item--current .modula_menu__link::after {
6234
- -webkit-transform: scale3d(1, 1, 1);
6235
- transform: scale3d(1, 1, 1);
6236
- background: #d94f5c;
6237
- }
6238
- /* End: Luce Styles */
6239
-
6240
- /* Juliet Styles */
6241
-
6242
- html body .modula > .filters.menu--juliet .modula_menu__item {
6243
- position: relative;
6244
- -webkit-transition: color .25s;
6245
- transition: color .25s;
6246
- }
6247
-
6248
- html body .modula > .filters.menu--juliet .modula_menu__item::before,
6249
- html body .modula > .filters.menu--juliet .modula_menu__item::after,
6250
- html body .modula > .filters.menu--juliet .modula_menu__item--current::before,
6251
- html body .modula > .filters.menu--juliet .modula_menu__item--current::after {
6252
- position: absolute;
6253
- left: 50%;
6254
- width: 0;
6255
- height: 0;
6256
- border: solid transparent;
6257
- content: '';
6258
- pointer-events: none;
6259
- top: 100% !important;
6260
- }
6261
- html body .modula > .filters.menu--juliet .modula_menu__item::before,
6262
- html body .modula > .filters.menu--juliet .modula_menu__item::after {
6263
- -webkit-transform: scale3d(0, 1, 1);
6264
- transform: scale3d(0, 1, 1);
6265
- -webkit-transform-origin: left left;
6266
- transform-origin: left left;
6267
- -webkit-transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
6268
- transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
6269
- background:transparent !important;
6270
-
6271
- }
6272
-
6273
- html body .modula > .filters.menu--juliet .modula_menu__item--current::before,
6274
- html body .modula > .filters.menu--juliet .modula_menu__item--current::after {
6275
- -webkit-transform: scale3d(1, 1, 1);
6276
- transform: scale3d(1, 1, 1);
6277
- -webkit-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
6278
- transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
6279
- }
6280
-
6281
- html body .modula > .filters.menu--juliet .modula_menu__item:hover::before,
6282
- html body .modula > .filters.menu--juliet .modula_menu__item:hover::after {
6283
- -webkit-transform: scale3d(1, 1, 1);
6284
- transform: scale3d(1, 1, 1);
6285
- -webkit-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
6286
- transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
6287
- }
6288
-
6289
-
6290
- html body .modula > .filters.menu--juliet .modula_menu__item::before {
6291
- top: 100%;
6292
- margin-left: -9px;
6293
- border-width: 10px;
6294
- border-top-color: #b5b5b5;
6295
- }
6296
-
6297
- html body .modula > .filters.menu--juliet .modula_menu__item--current::before {
6298
- margin-left: -9px;
6299
- border-width: 10px;
6300
- border-top-color: #d94f5c;
6301
- border-bottom-color:transparent !important;
6302
- border-left-color: transparent !important;
6303
- border-right-color: transparent !important;
6304
- }
6305
-
6306
- html body .modula > .filters.menu--juliet .modula_menu__item::after,
6307
- html body .modula > .filters.menu--juliet .modula_menu__item--current::after {
6308
- top: 94%;
6309
- margin-left: -5px;
6310
- border-width: 6px;
6311
- border-top-color: #2a282b;
6312
- border-bottom-color:transparent !important;
6313
- border-left-color: transparent !important;
6314
- border-right-color: transparent !important;
6315
- }
6316
-
6317
- html body .modula > .filters.menu--juliet .modula_menu__link {
6318
- position: relative;
6319
- margin: 0 1em;
6320
- padding-right: 0;
6321
- padding-left: 0;
6322
- color: #b5b5b5;
6323
- -webkit-transition: color 0.4s;
6324
- transition: color 0.4s;
6325
- }
6326
-
6327
- html body .modula > .filters.menu--juliet .modula_menu__item--current .modula_menu__link,
6328
- html body .modula > .filters.menu--juliet .modula_menu__item--current .modula_menu__link:hover,
6329
- html body .modula > .filters.menu--juliet .modula_menu__item--current .modula_menu__link:focus {
6330
- color: #d94f5c;
6331
- }
6332
-
6333
- html body .modula > .filters.menu--juliet .modula_menu__item--current .modula_menu__link::after,
6334
- html body .modula > .filters.menu--juliet .modula_menu__item--current .modula_menu__link::before {
6335
- -webkit-transform: scale3d(1, 1, 1);
6336
- transform: scale3d(1, 1, 1);
6337
- }
6338
-
6339
- html body .modula > .filters.menu--juliet .modula_menu__item--current .modula_menu__link::before {
6340
- -webkit-transition-delay: 0s;
6341
- transition-delay: 0s;
6342
- }
6343
-
6344
- html body .modula > .filters.menu--juliet .modula_menu__link:hover,
6345
- html body .modula > .filters.menu--juliet .modula_menu__link:focus {
6346
- color: #b5b5b5;
6347
- }
6348
-
6349
- html body .modula > .filters.menu--juliet .modula_menu__item:hover .modula_menu__link::before,
6350
- html body .modula > .filters.menu--juliet .modula_menu__item:focus .modula_menu__link::before {
6351
- -webkit-transform: scale3d(1, 1, 1);
6352
- transform: scale3d(1, 1, 1);
6353
- -webkit-transition-delay: 0s;
6354
- transition-delay: 0s;
6355
- }
6356
-
6357
- html body .modula > .filters.menu--juliet .modula_menu__link::before,
6358
- html body .modula > .filters.menu--juliet .modula_menu__link::after {
6359
- content: '';
6360
- position: absolute;
6361
- bottom: 0;
6362
- left: 0;
6363
- width: 100%;
6364
- height: 3px;
6365
- -webkit-transform: scale3d(0, 1, 1);
6366
- transform: scale3d(0, 1, 1);
6367
- -webkit-transform-origin: center left;
6368
- transform-origin: center left;
6369
- -webkit-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
6370
- transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
6371
- }
6372
-
6373
- html body .modula > .filters.menu--juliet .modula_menu__link::before {
6374
- background: #b5b5b5;
6375
- -webkit-transition-delay: 0.4s;
6376
- transition-delay: 0.4s;
6377
- }
6378
-
6379
- html body .modula > .filters.menu--juliet .modula_menu__link::after {
6380
- background: #d94f5c;
6381
- }
6382
-
6383
- /* End: Juliet Styles */
6384
-
6385
- /* Invulner Styles */
6386
-
6387
- html body .modula > .filters.menu--invulner .modula_menu__link {
6388
- position: relative;
6389
- -webkit-transition: color .4s ease-in;
6390
- transition: color .4s ease-in;
6391
- }
6392
-
6393
- html body .modula > .filters.menu--invulner .modula_menu__item--current .modula_menu__link {
6394
- color: #d94f5c;
6395
- }
6396
-
6397
- html body .modula > .filters.menu--invulner .modula_menu__link::before {
6398
- content: '';
6399
- position: absolute;
6400
- left: 50%;
6401
- top: 50%;
6402
- width: 0;
6403
- height: 0;
6404
- border-radius: 100%;
6405
- border: 2px solid #d94f5c;
6406
- -webkit-transition: all .5s cubic-bezier(.52,.27,.4,1.52);
6407
- transition: all .5s cubic-bezier(.52,.27,.4,1.52);
6408
- opacity: 0;
6409
- background-color:transparent !important;
6410
- }
6411
-
6412
- html body .modula > .filters.menu--invulner .modula_menu__item--current .modula_menu__link::before {
6413
- left: 0;
6414
- top: 0;
6415
- margin-top: 0;
6416
- margin-left: 0;
6417
- width: 100%;
6418
- height: 100%;
6419
- border-radius: 0;
6420
- opacity: 1;
6421
- }
6422
-
6423
- /* End: Invulner Styles */
6424
-
6425
- /* tantalid Styles */
6426
-
6427
- html body .modula > .filters.menu--tantalid .modula_menu__link {
6428
- color: #929292;
6429
- position: relative;
6430
- -webkit-transition: color .4s ease-in;
6431
- transition: color .4s ease-in;
6432
- }
6433
-
6434
- html body .modula > .filters.menu--tantalid .modula_menu__link:hover {
6435
- color: #d94f5c;
6436
- }
6437
-
6438
- html body .modula > .filters.menu--tantalid .modula_menu__item--current .modula_menu__link {
6439
- color: #d94f5c;
6440
- overflow: visible;
6441
- }
6442
-
6443
- html body .modula > .filters.menu--tantalid .modula_menu__link::before,
6444
- html body .modula > .filters.menu--tantalid .modula_menu__link::after {
6445
- content: '';
6446
- position: absolute;
6447
- width: 100px;
6448
- height: 100px;
6449
- opacity: 0;
6450
- border: 2px solid #d94f5c;
6451
- -webkit-transition: -webkit-transform 0.4s, opacity 0.3s, width 0.4s;
6452
- transition: transform .4s, opacity 0.3s, width .4s;
6453
- -webkit-transition-timing-function: linear;
6454
- transition-timing-function: linear;
6455
- background-color: transparent !important;
6456
- }
6457
-
6458
- html body .modula > .filters.menu--tantalid .modula_menu__link::before {
6459
- top: 0;
6460
- left: 0;
6461
- border-width: 2px 0 0 2px;
6462
- -webkit-transform: translate3d(-150%, 70%, 0) rotate(-30deg);
6463
- transform: translate3d(-150%, 70%, 0) rotate(-30deg);
6464
- }
6465
-
6466
- html body .modula > .filters.menu--tantalid .modula_menu__link::after {
6467
- right: 0;
6468
- bottom: 0;
6469
- border-width: 0 2px 2px 0;
6470
- -webkit-transform: translate3d(150%, -70%, 0) rotate(-30deg);
6471
- transform: translate3d(150%, -70%, 0) rotate(-30deg);
6472
- }
6473
-
6474
- html body .modula > .filters.menu--tantalid .modula_menu__item--current .modula_menu__link::before,
6475
- html body .modula > .filters.menu--tantalid .modula_menu__item--current .modula_menu__link::after {
6476
- width: 80%;
6477
- height: 80%;
6478
- opacity: 1;
6479
- -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
6480
- transform: translate3d(0, 0, 0) rotate(0deg);
6481
- }
6482
-
6483
- /* End: tantalid Styles */
6484
-
6485
- /* Stack items for smaller screens */
6486
- @media screen and (max-width:55em) {
6487
- html body .modula > .filters .modula_menu__list {
6488
- display: block;
6489
- margin: 0 auto;
6490
- }
6491
- }
6492
-
6493
- /**
6494
- End Modula Filters
6495
- */
6496
-
6497
- /* Change Filter by color */
6498
- .filter-by-wrapper span {
6499
- color: #000;
6500
- }
6501
- .filter-by-wrapper.opened span:after{
6502
- border-color: transparent transparent #000 transparent;
6503
- }
6504
- .filter-by-wrapper span:after {
6505
- border-color: #000 transparent transparent transparent;
6506
- }
6507
-
6508
- /* Under Effect */
6509
- html body .modula-gallery.modula-creative-gallery .modula-items .modula-item.effect-under .modula-item-content,
6510
- html body .modula-gallery.modula-custom-grid .modula-items .modula-item.effect-under .modula-item-content {
6511
- height:auto;
6512
- opacity:1;
6513
- }
6514
- .modula-gallery .modula-items .modula-item.effect-under > a.modula-simple-link {
6515
- position: absolute;
6516
- width: 100%;
6517
- height: 100%;
6518
- top: 0;
6519
- left: 0;
6520
- }
6521
- .modula-gallery.modula-creative-gallery .modula-items .modula-item.effect-under a.tile-inner.modula-item-link,
6522
- .modula-gallery .modula-items .modula-item.effect-under > a {
6523
- position: absolute;
6524
- width: 100%;
6525
- height: 100%;
6526
- }
6527
- .modula-gallery .modula-items .modula-item.effect-under {
6528
- display: flex;
6529
- flex-direction: column;
6530
- }
6531
- .modula-gallery .modula-items .modula-item.effect-under .modula-item-image-continer {
6532
- flex-grow: 1;
6533
- width: 100%;
6534
- position: relative;
6535
- overflow: hidden;
6536
- }
6537
- .modula-gallery .modula-items .modula-item.effect-under .figc {
6538
- padding: 5%;
6539
- height: auto !important;
6540
- text-align: left;
6541
- position: relative;
6542
- }
6543
-
6544
- .modula-gallery .modula-items .modula-item.effect-under .modula-item-image-continer img {
6545
- margin:0 auto !important;
6546
- }
6547
- .modula-gallery .modula-items .modula-item.effect-under .figc-inner {
6548
- width: 100%;
6549
- }
6550
- .modula-gallery .modula-items .modula-item.effect-under .figc .jtg-social {
6551
- right: auto;
6552
- position: relative;
6553
- bottom: auto;
6554
- text-align: left;
6555
- }
6556
- .modula-gallery .modula-items .modula-item.effect-under .jtg-social a {
6557
- opacity: 1;
6558
- }
6559
- .modula-gallery .modula-items .modula-item.effect-under .jtg-title:before {
6560
- display: none;
6561
- }
6562
-
6563
- .modula-gallery .modula-items .modula-item.effect-under .figc p.description {
6564
- padding:10px 0;
6565
- }
6566
-
6567
- @media all and (max-width:480px) {
6568
- .modula-gallery .modula-items .modula-item.effect-under .figc .jtg-social a {
6569
- padding:5px;
6570
- }
6571
- }
6572
-
6573
- /* Comun CSS */
6574
- .modula-gallery .modula-items .modula-item.effect-julia .figc,
6575
- .modula-gallery .modula-items .modula-item.effect-selena .figc,
6576
- .modula-gallery .modula-items .modula-item.effect-phoebe .figc,
6577
- .modula-gallery .modula-items .modula-item.effect-apollo .figc,
6578
- .modula-gallery .modula-items .modula-item.effect-steve .figc,
6579
- .modula-gallery .modula-items .modula-item.effect-jazz .figc,
6580
- .modula-gallery .modula-items .modula-item.effect-ming .figc,
6581
- .modula-gallery .modula-items .modula-item.effect-lexi .figc,
6582
- .modula-gallery .modula-items .modula-item.effect-duke .figc,
6583
- .modula-gallery .modula-items .modula-item.effect-sarah .figc {
6584
- padding: 15%;
6585
- }
6586
-
6587
- .modula-gallery .modula-items .modula-item.effect-ming .figc-inner,
6588
- .modula-gallery .modula-items .modula-item.effect-chico .figc-inner {
6589
- width: 100%;
6590
- padding: 7.5%;
6591
- box-sizing: border-box;
6592
- }
6593
-
6594
- .modula-gallery .modula-item.effect-phoebe .figc-inner,
6595
- .modula-gallery .modula-item.effect-jazz .figc-inner,
6596
- .modula-gallery .modula-item.effect-lexi .figc-inner,
6597
- .modula-gallery .modula-item.effect-duke .figc-inner,
6598
- .modula-gallery .modula-item.effect-apollo .figc-inner {
6599
- width: 100%;
6600
- height: 100%;
6601
- }
6602
-
6603
- .modula-gallery .modula-items .modula-item.effect-chico .jtg-body .jtg-social,
6604
- .modula-gallery .modula-items .modula-item.effect-julia .jtg-social,
6605
- .modula-gallery .modula-items .modula-item.effect-phoebe .jtg-social,
6606
- .modula-gallery .modula-items .modula-item.effect-ming .jtg-social,
6607
- .modula-gallery .modula-items .modula-item.effect-lily .jtg-body .jtg-social {
6608
- position: relative;
6609
- bottom: auto;
6610
- right: auto;
6611
- }
6612
-
6613
- .modula-gallery .modula-items .modula-item.effect-chico .jtg-body .jtg-social,
6614
- .modula-gallery .modula-items .modula-item.effect-ming .jtg-body .jtg-social{
6615
- text-align: center;
6616
- }
6617
-
6618
- .modula-gallery .modula-item.effect-milo .jtg-title:before {
6619
- display:none;
6620
- }
6621
-
6622
- .modula-gallery .modula-item.effect-milo p.description {
6623
- min-width: 60%;
6624
- margin: 0 auto;
6625
- }
6626
-
6627
- .modula-effects-wrapper:after {
6628
- content: "";
6629
- width: 31%;
6630
- }
6631
-
6632
- /* Dropdown Filters */
6633
- select.filters {
6634
- /*background: transparent;*/
6635
- font-size: 16px;
6636
- font-family: sans-serif;
6637
- /* font-weight: 700;*/
6638
- color: #444;
6639
- line-height: 1.3;
6640
- padding: .6em 1.4em .5em .8em;
6641
- width: max-content;
6642
- box-sizing: border-box;
6643
- margin: 0;
6644
- border: 1px solid #aaa;
6645
- box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
6646
- border-radius: 3px;
6647
- -webkit-appearance: none;
6648
- -moz-appearance: none;
6649
- background-color: #fff;
6650
- background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E), linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
6651
- background-repeat: no-repeat, repeat;
6652
- background-position: right .7em top 50%, 0 0;
6653
- background-size: .65em auto, 100%;
6654
- position: relative;
6655
  }
1
+ @media screen and (min-width: 1px) {
2
+
3
+ .modula-gallery .modula-items .modula-item .modula-item-overlay {
4
+ position: absolute;
5
+ width:100%;
6
+ height:100%;
7
+ z-index: -1;
8
+ }
9
+
10
+ .modula-gallery .modula-items .modula-item .jtg-title {
11
+ margin:0;
12
+ }
13
+ .modula-gallery .modula-items .modula-item p {
14
+ margin:0;
15
+ padding: 0;
16
+ }
17
+ html body .modula-gallery .modula-items .figc {
18
+ color: black;
19
+ text-align: center;
20
+ position: absolute;
21
+ left: 0;
22
+ width: 100%;
23
+ padding:2em;
24
+ box-sizing: border-box;
25
+ }
26
+
27
+ .modula-gallery .modula-item .jtg-social a {
28
+ text-decoration: none;
29
+ color: #fff;
30
+ display: inline-block;
31
+ margin:0 10px 0 0;
32
+ padding: 0;
33
+ border: 0;
34
+ opacity: 0;
35
+ transition: opacity .3s;
36
+ }
37
+ .modula-gallery .modula-item:hover .jtg-social a {
38
+ opacity: 1;
39
+ }
40
+
41
+ /* Individual effects */
42
+
43
+ /*---------------*/
44
+ /***** quiet *****/
45
+ /*---------------*/
46
+ html body .modula-gallery .modula-items .effect-quiet .jtg-social {
47
+ -webkit-transform: translate3d(0,20px,0);
48
+ transform: translate3d(0,20px,0);
49
+ position: absolute;
50
+ bottom: 20px;
51
+ width: 100%;
52
+ text-align: center;
53
+ left: 0;
54
+ transition:all .3s;
55
+ }
56
+ .modula-gallery .modula-items .effect-quiet:hover .jtg-social {
57
+ -webkit-transform: translate3d(0,0,0);
58
+ transform: translate3d(0,0,0);
59
+ }
60
+ .modula-gallery .modula-item.effect-quiet .figc {
61
+ display: flex;
62
+ align-items: center;
63
+ justify-content: center;
64
+ height: 100%;
65
+ }
66
+
67
+ .modula-gallery .modula-item.effect-quiet .jtg-title {
68
+ -webkit-transition: -webkit-transform 0.35s;
69
+ transition: transform 0.35s;
70
+ -webkit-transform: translate3d(0,-20px,0);
71
+ transform: translate3d(0,-20px,0);
72
+ }
73
+
74
+ .modula-gallery .modula-item.effect-quiet:hover .figc::before,
75
+ .modula-gallery .modula-item.effect-quiet:hover .figc::after {
76
+ opacity: 1;
77
+ -webkit-transform: scale(1);
78
+ transform: scale(1);
79
+ }
80
+
81
+ .modula-gallery .modula-item.effect-quiet:hover .jtg-title,
82
+ .modula-gallery .modula-item.effect-quiet:hover p {
83
+ opacity: 1;
84
+ -webkit-transform: translate3d(0,0,0);
85
+ transform: translate3d(0,0,0);
86
+ }
87
+
88
+ /*---------------*/
89
+ /***** seemo *****/
90
+ /*---------------*/
91
+ .modula-gallery .modula-item.effect-seemo {
92
+ -webkit-perspective: 1000px;
93
+ perspective: 1000px;
94
+ }
95
+
96
+ body .modula-gallery .modula-items .modula-item.tg-loaded.effect-seemo .modula-item-content, body .modula-gallery.modula-columns .modula-items .modula-item.effect-seemo .modula-item-content {
97
+ transform:none !important;
98
+ }
99
+
100
+ .modula-gallery .modula-item.effect-seemo img {
101
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
102
+ transition: opacity 0.35s, transform 0.35s;
103
+ -webkit-transform: translate3d(0,0,300px);
104
+ transform: translate3d(0,0,300px);
105
+ }
106
+
107
+ .modula-gallery .modula-item.effect-seemo .jtg-title {
108
+ width: 100%;
109
+ -webkit-transition: -webkit-transform 0.35s;
110
+ transition: transform 0.35s;
111
+ }
112
+
113
+ .modula-gallery .modula-item.effect-seemo .jtg-title {
114
+ -webkit-transform: translate3d(0,0px,0) translate3d(0,0,0);
115
+ transform: translate3d(0,0,0) translate3d(0,0,0);
116
+ }
117
+
118
+ .modula-gallery .modula-item.effect-seemo:hover .jtg-title {
119
+ -webkit-transform: translate3d(0,-20px,0);
120
+ transform: translate3d(0,-20px,0);
121
+ }
122
+
123
+ .modula-gallery .modula-item.effect-seemo:hover img {
124
+ -webkit-transform: translate3d(0,0,0) translate3d(0,0,0);
125
+ transform: translate3d(0,0,0) translate3d(0,0,0);
126
+ }
127
+
128
+ @media all and (max-width:480px){
129
+ html body .modula-gallery .modula-item.effect-seemo .jtg-social {
130
+ left:0;
131
+ right:0;
132
+ text-align:center;
133
+ }
134
+
135
+ html body .modula-gallery .modula-items .modula-item.effect-seemo .jtg-social a {
136
+ margin-right:10px;
137
+ padding:5px;
138
+ }
139
+ }
140
+
141
+
142
+ /*---------------*/
143
+ /***** appear *****/
144
+ /*---------------*/
145
+ .modula-gallery .modula-item.effect-appear .figc::before {
146
+ position: absolute;
147
+ bottom: 0;
148
+ left: 0;
149
+ width: 100%;
150
+ height: 2.5%;
151
+ background: #fff;
152
+ content: '';
153
+ -webkit-transform: translate3d(0,10px,0);
154
+ transform: translate3d(0,10px,0);
155
+ }
156
+
157
+ html body .modula-gallery .modula-item.effect-appear .jtg-title {
158
+ position: absolute;
159
+ bottom: 7.5%;
160
+ left: 0;
161
+ padding: 6% 5%;
162
+ width: 100%;
163
+ text-align: left;
164
+ -webkit-transform: translate3d(0,-30px,0);
165
+ transform: translate3d(0,-30px,0);
166
+ }
167
+
168
+ @media all and (max-width:480px) {
169
+ html body .modula-gallery .modula-item.effect-appear .jtg-title {
170
+ bottom:60px;
171
+ }
172
+
173
+ html body .modula-gallery .modula-item.effect-appear .jtg-social {
174
+ left:0;
175
+ right:0;
176
+ text-align:center;
177
+ }
178
+
179
+ html body .modula-gallery .modula-items .modula-item.effect-appear .jtg-social a {
180
+ margin-right:10px;
181
+ padding:5px;
182
+ }
183
+ }
184
+
185
+ .modula-gallery .modula-item.effect-appear .jtg-title i {
186
+ font-style: normal;
187
+ opacity: 0;
188
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
189
+ transition: opacity 0.35s, transform 0.35s;
190
+ -webkit-transform: translate3d(0,-30px,0);
191
+ transform: translate3d(0,-30px,0);
192
+ }
193
+
194
+ .modula-gallery .modula-item.effect-appear .jtg-social a:last-of-type {
195
+ margin-right: 0;
196
+ }
197
+
198
+ .modula-gallery .modula-item.effect-appear .figc::before,
199
+ .modula-gallery .modula-item.effect-appear .jtg-title {
200
+ -webkit-transition: -webkit-transform 0.35s;
201
+ transition: transform 0.35s;
202
+ }
203
+
204
+ .modula-gallery .modula-item.effect-appear:hover .figc::before,
205
+ .modula-gallery .modula-item.effect-appear:hover .jtg-title,
206
+ .modula-gallery .modula-item.effect-appear:hover .jtg-title i {
207
+ opacity: 1;
208
+ -webkit-transform: translate3d(0,0,0);
209
+ transform: translate3d(0,0,0);
210
+ }
211
+
212
+ /*---------------*/
213
+ /***** crafty *****/
214
+ /*---------------*/
215
+ .modula-gallery .modula-item.effect-crafty .jtg-title {
216
+ margin: 0 0 10px 0;
217
+ -webkit-transition: -webkit-transform 0.35s;
218
+ transition: transform 0.35s;
219
+ -webkit-transform: translate3d(0,50%,0);
220
+ transform: translate3d(0,50%,0);
221
+ }
222
+
223
+ .modula-gallery .modula-item.effect-crafty p {
224
+ opacity: 0;
225
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
226
+ transition: opacity 0.35s, transform 0.35s;
227
+ -webkit-transform: scale(0);
228
+ transform: scale(0);
229
+ margin-bottom: 10px;
230
+ }
231
+
232
+ .modula-gallery .modula-item.effect-crafty:hover .jtg-title {
233
+ -webkit-transform: translate3d(0,0,0);
234
+ transform: translate3d(0,0,0);
235
+ }
236
+
237
+ .modula-gallery .modula-item.effect-crafty:hover .figc::before,
238
+ .modula-gallery .modula-item.effect-crafty:hover p {
239
+ opacity: 1;
240
+ -webkit-transform: scale(1);
241
+ transform: scale(1);
242
+ }
243
+
244
+
245
+ /*---------------*/
246
+ /***** pufrobo *****/
247
+ /*---------------*/
248
+
249
+ html body .modula-gallery .modula-items .effect-pufrobo .jtg-social {
250
+ opacity: 0;
251
+ /*transition: opacity 0.1s;*/
252
+ right: 30px;
253
+ position: absolute;
254
+ bottom: 2em;
255
+ text-align: right;
256
+ transition:all .3s;
257
+ }
258
+
259
+ .modula-gallery .modula-items .effect-pufrobo:hover .jtg-social {
260
+ opacity: 1;
261
+ }
262
+
263
+ .modula-gallery .modula-items .effect-pufrobo .jtg-social a:last-of-type {
264
+ margin-right: 0;
265
+ }
266
+
267
+ .modula-gallery .modula-item.effect-pufrobo p.description {
268
+ margin-bottom: 2em;
269
+ }
270
+
271
+ html body .modula-gallery .modula-item.effect-pufrobo .figc {
272
+ text-align: right;
273
+ }
274
+
275
+ html body .modula-gallery .modula-item.effect-pufrobo .jtg-title,
276
+ html body .modula-gallery .modula-item.effect-pufrobo p {
277
+ position: absolute;
278
+ right: 30px;
279
+ left: 30px;
280
+ padding: 10px 0;
281
+ text-align: right;
282
+ }
283
+
284
+ .modula-gallery .modula-item.effect-pufrobo p {
285
+ bottom: 20%;
286
+ line-height: 1.5;
287
+ -webkit-transform: translate3d(0,100%,0);
288
+ transform: translate3d(0,100%,0);
289
+ letter-spacing: 1px;
290
+ }
291
+
292
+ .modula-gallery .modula-item.effect-pufrobo .jtg-title {
293
+ /*top: 30px;*/
294
+ top: 10%;
295
+ -webkit-transition: -webkit-transform 0.35s;
296
+ transition: transform 0.35s;
297
+ -webkit-transform: translate3d(0,20px,0);
298
+ transform: translate3d(0,20px,0);
299
+ }
300
+
301
+ .modula-gallery .modula-item.effect-pufrobo:hover .jtg-title {
302
+ -webkit-transform: translate3d(0,0,0);
303
+ transform: translate3d(0,0,0);
304
+ }
305
+
306
+ .modula-gallery .modula-item.effect-pufrobo .jtg-title::after {
307
+ position: absolute;
308
+ top: 80%;
309
+ left: 0;
310
+ width: 100%;
311
+ height: 4px;
312
+ background: #fff;
313
+ content: '';
314
+ -webkit-transform: translate3d(0,40px,0);
315
+ transform: translate3d(0,40px,0);
316
+ }
317
+
318
+ .modula-gallery .modula-item.effect-pufrobo .jtg-title::after,
319
+ .modula-gallery .modula-item.effect-pufrobo p {
320
+ opacity: 0;
321
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
322
+ transition: opacity 0.35s, transform 0.35s;
323
+ }
324
+
325
+ .modula-gallery .modula-item.effect-pufrobo:hover .jtg-title::after,
326
+ .modula-gallery .modula-item.effect-pufrobo:hover p {
327
+ margin-top: 10px;
328
+ margin-bottom: 5px;
329
+ opacity: 1;
330
+ -webkit-transform: translate3d(0,0,0);
331
+ transform: translate3d(0,0,0);
332
+ }
333
+
334
+ /*---------------*/
335
+ /***** hide *****/
336
+ /*---------------*/
337
+
338
+ html body .modula-gallery .modula-items .effect-hide .jtg-social {
339
+ -webkit-transform: translate3d(0,-20px,0);
340
+ transform: translate3d(0,-20px,0);
341
+ position: absolute;
342
+ bottom: 5%;
343
+ width: 100%;
344
+ text-align: center;
345
+ left: 0;
346
+ transition:all .3s;
347
+ }
348
+
349
+ html body .modula-gallery .modula-items .effect-hide .jtg-social a {
350
+ margin-right:10px;
351
+ }
352
+
353
+ @media all and (max-width:480px){
354
+ html body .modula-gallery .modula-items .effect-hide .jtg-social a {
355
+ padding:5px;
356
+ }
357
+ }
358
+
359
+ .modula-gallery .modula-items .effect-hide:hover .jtg-social {
360
+ -webkit-transform: translate3d(0,0,0);
361
+ transform: translate3d(0,0,0);
362
+ }
363
+ .modula-gallery .modula-item.effect-hide .figc {
364
+ display: flex;
365
+ align-items: center;
366
+ justify-content: center;
367
+ }
368
+
369
+ .modula-gallery .modula-item.effect-hide .figc-inner .jtg-title,
370
+ .modula-gallery .modula-item.effect-hide .figc-inner p {
371
+ margin: 0 20px;
372
+ }
373
+
374
+ .modula-gallery .modula-item.effect-hide img {
375
+ opacity: 1;
376
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
377
+ transition: opacity 0.35s, transform 0.35s;
378
+ -webkit-transform: scale(1.15);
379
+ transform: scale(1.15);
380
+ }
381
+
382
+ .modula-gallery .modula-item.effect-hide:hover img {
383
+ -webkit-transform: scale(1);
384
+ transform: scale(1);
385
+ }
386
+
387
+ .modula-gallery .modula-item.effect-hide .jtg-title {
388
+ -webkit-transition: -webkit-transform 0.35s;
389
+ transition: transform 0.35s;
390
+ -webkit-transform: translate3d(0,20px,0);
391
+ transform: translate3d(0,20px,0);
392
+ margin-bottom: 10px;
393
+ }
394
+
395
+ .modula-gallery .modula-item.effect-hide p {
396
+ opacity: 0;
397
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
398
+ transition: opacity 0.35s, transform 0.35s;
399
+ -webkit-transform: translate3d(0,20px,0) scale(1.1);
400
+ transform: translate3d(0,20px,0) scale(1.1);
401
+ }
402
+
403
+ .modula-gallery .modula-item.effect-hide:hover .jtg-title {
404
+ -webkit-transform: translate3d(0,0,0);
405
+ transform: translate3d(0,0,0);
406
+ }
407
+
408
+ .modula-gallery .modula-item.effect-hide:hover p {
409
+ opacity: 1;
410
+ -webkit-transform: translate3d(0,0,0) scale(1);
411
+ transform: translate3d(0,0,0) scale(1);
412
+ }
413
+
414
+ /*---------------*/
415
+ /***** Sarah *****/
416
+ /*---------------*/
417
+
418
+ .modula-gallery .modula-item.effect-sarah {
419
+ background: #42b078;
420
+ }
421
+
422
+ .modula-gallery .modula-item.effect-sarah img {
423
+ max-width: none;
424
+ min-width: -webkit-calc(100% + 60px) !important;
425
+ min-width: calc(100% + 60px) !important;
426
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
427
+ transition: opacity 0.35s, transform 0.35s;
428
+ -webkit-transform: translate3d(-10px,0,0);
429
+ transform: translate3d(-10px,0,0);
430
+ -webkit-backface-visibility: hidden;
431
+ backface-visibility: hidden;
432
+ inset:unset !important;
433
+ }
434
+
435
+ .modula-gallery.modula-columns .modula-items .modula-item.effect-sarah img.pic {
436
+ max-width:none;
437
+ }
438
+
439
+ .modula-gallery .modula-item.effect-sarah:hover img {
440
+ opacity: 0.4;
441
+ -webkit-transform: translate3d(0,0,0);
442
+ transform: translate3d(0,0,0);
443
+ }
444
+
445
+ .modula-gallery .modula-item.effect-sarah .figc {
446
+ text-align: left;
447
+ }
448
+
449
+ .modula-gallery .modula-item.effect-sarah .jtg-title {
450
+ position: relative;
451
+ overflow: hidden;
452
+ padding: 20px 0;
453
+ }
454
+
455
+ .modula-gallery .modula-item.effect-sarah p.description {
456
+ padding: 20px 0;
457
+ }
458
+
459
+ .modula-gallery .modula-item.effect-sarah .jtg-title:before {
460
+ display:none;
461
+ }
462
+
463
+ .modula-gallery .modula-item.effect-sarah .jtg-title::after {
464
+ position: absolute;
465
+ bottom: 0;
466
+ left: 0;
467
+ width: 100%;
468
+ height: 3px;
469
+ background: #fff;
470
+ content: '';
471
+ -webkit-transition: -webkit-transform 0.35s;
472
+ transition: transform 0.35s;
473
+ -webkit-transform: translate3d(-100%,0,0);
474
+ transform: translate3d(-100%,0,0);
475
+ }
476
+
477
+ .modula-gallery .modula-item.effect-sarah:hover .jtg-title::after {
478
+ -webkit-transform: translate3d(0,0,0);
479
+ transform: translate3d(0,0,0);
480
+ }
481
+
482
+ .modula-gallery .modula-item.effect-sarah p {
483
+ padding: 1em 0;
484
+ opacity: 0;
485
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
486
+ transition: opacity 0.35s, transform 0.35s;
487
+ -webkit-transform: translate3d(100%,0,0);
488
+ transform: translate3d(100%,0,0);
489
+ }
490
+
491
+ .modula-gallery .modula-item.effect-sarah:hover p {
492
+ opacity: 1;
493
+ -webkit-transform: translate3d(0,0,0);
494
+ transform: translate3d(0,0,0);
495
+ }
496
+ .modula-gallery .modula-item.effect-sarah .jtg-social {
497
+ left: 30px;
498
+ right: auto;
499
+ }
500
+ .modula-gallery .modula-item.effect-sarah .jtg-social a {
501
+ padding:5px;
502
+ margin-right:10px;
503
+ }
504
+
505
+ /*---------------*/
506
+ /***** Lily *****/
507
+ /*---------------*/
508
+
509
+ .modula-gallery .modula-items .modula-item.effect-lily img {
510
+ max-width: none;
511
+ min-width: -webkit-calc(100% + 50px) !important;
512
+ min-width: calc(100% + 50px) !important;
513
+ opacity: 0.7;
514
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
515
+ transition: opacity 0.35s, transform 0.35s;
516
+ -webkit-transform: translate3d(-20px,0, 0);
517
+ transform: translate3d(-20px,0,0);
518
+
519
+ }
520
+
521
+ body .modula-gallery.modula-columns .modula-items .modula-item.effect-lily img.pic {
522
+ max-width:none;
523
+
524
+ }
525
+
526
+ html body .modula-gallery .modula-items .modula-item.effect-lily .figc {
527
+ text-align: left;
528
+ }
529
+
530
+ html body .modula-gallery .modula-items .modula-item.effect-lily .figc > div {
531
+ position: absolute;
532
+ bottom: 0;
533
+ left: 0;
534
+ padding: 5%;
535
+ width: 100%;
536
+ box-sizing: border-box;
537
+ }
538
+
539
+ .modula-gallery .modula-item.effect-lily .jtg-title,
540
+ .modula-gallery .modula-item.effect-lily .jtg-body {
541
+ -webkit-transform: translate3d(0,40px,0);
542
+ transform: translate3d(0,40px,0);
543
+ }
544
+
545
+ .modula-gallery .modula-item.effect-lily .jtg-title {
546
+ -webkit-transition: -webkit-transform 0.35s;
547
+ transition: transform 0.35s;
548
+ }
549
+
550
+ .modula-gallery .modula-item.effect-lily .jtg-title:before {
551
+ displaY:none;
552
+ }
553
+
554
+ .modula-gallery .modula-item.effect-lily .jtg-body {
555
+ color: rgba(255,255,255,0.8);
556
+ opacity: 0;
557
+ -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
558
+ transition: opacity 0.2s, transform 0.35s;
559
+ }
560
+
561
+ .modula-gallery .modula-item.effect-lily:hover img,
562
+ .modula-gallery .modula-item.effect-lily:hover .jtg-body {
563
+ opacity: 1;
564
+ }
565
+
566
+ .modula-gallery .modula-item.effect-lily:hover img,
567
+ .modula-gallery .modula-item.effect-lily:hover .jtg-title,
568
+ .modula-gallery .modula-item.effect-lily:hover .jtg-body {
569
+ -webkit-transform: translate3d(0,0,0);
570
+ transform: translate3d(0,0,0);
571
+ }
572
+
573
+ .modula-gallery .modula-item.effect-lily:hover .jtg-body {
574
+ -webkit-transition-delay: 0.05s;
575
+ transition-delay: 0.05s;
576
+ -webkit-transition-duration: 0.35s;
577
+ transition-duration: 0.35s;
578
+ z-index:9999;
579
+ }
580
+
581
+ html body .modula-gallery .modula-items .modula-item.effect-lily .jtg-body .jtg-social {
582
+ text-align: left;
583
+ margin-top:10px;
584
+ }
585
+
586
+ @media all and (max-width:480px) {
587
+ html body .modula-gallery .modula-items .modula-item.effect-lily .jtg-body .jtg-social a {
588
+ margin-right:10px;
589
+ padding:5px;
590
+ }
591
+ }
592
+
593
+ /*---------------*/
594
+ /***** Sadie *****/
595
+ /*---------------*/
596
+
597
+ .modula-gallery .modula-item.effect-sadie .figc::before {
598
+ position: absolute;
599
+ top: 0;
600
+ left: 0;
601
+ width: 100%;
602
+ height: 100%;
603
+ background: -webkit-linear-gradient(top, rgba(72,76,97,0) 0%, rgba(72,76,97,0.8) 75%);
604
+ background: linear-gradient(to bottom, rgba(72,76,97,0) 0%, rgba(72,76,97,0.8) 75%);
605
+ content: '';
606
+ opacity: 0;
607
+ -webkit-transform: translate3d(0,50%,0);
608
+ transform: translate3d(0,50%,0);
609
+ }
610
+
611
+ .modula-gallery .modula-item.effect-sadie .jtg-title {
612
+ position: absolute;
613
+ top: 50%;
614
+ left: 0;
615
+ width: 100%;
616
+ color: #484c61;
617
+ -webkit-transition: -webkit-transform 0.35s, color 0.35s;
618
+ transition: transform 0.35s, color 0.35s;
619
+ -webkit-transform: translate3d(0,-50%,0);
620
+ transform: translate3d(0,-50%,0);
621
+ }
622
+
623
+ .modula-gallery .modula-item.effect-sadie .jtg-title:before {
624
+ display:none;
625
+ }
626
+
627
+ .modula-gallery .modula-item.effect-sadie .figc::before,
628
+ .modula-gallery .modula-item.effect-sadie .jtg-body {
629
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
630
+ transition: opacity 0.35s, transform 0.35s;
631
+ }
632
+
633
+ .modula-gallery .modula-item.effect-sadie .jtg-body {
634
+ position: absolute;
635
+ bottom: 0;
636
+ left: 0;
637
+ padding: 15%;
638
+ width: 100%;
639
+ opacity: 0;
640
+ -webkit-transform: translate3d(0,10px,0);
641
+ transform: translate3d(0,10px,0);
642
+ z-index:99;
643
+ box-sizing: border-box;
644
+ }
645
+
646
+ .modula-gallery .modula-item.effect-sadie:hover .jtg-title {
647
+ color: #fff;
648
+ -webkit-transform: translate3d(0,-50%,0) translate3d(0,-40px,0);
649
+ transform: translate3d(0,-50%,0) translate3d(0,-40px,0);
650
+ }
651
+
652
+ .modula-gallery .modula-item.effect-sadie:hover .figc::before ,
653
+ .modula-gallery .modula-item.effect-sadie:hover .jtg-body {
654
+ opacity: 1;
655
+ -webkit-transform: translate3d(0,0,0);
656
+ transform: translate3d(0,0,0);
657
+ }
658
+
659
+ html body .modula-gallery .modula-items .modula-item.effect-sadie .jtg-body .jtg-social {
660
+ position: relative;
661
+ bottom: auto;
662
+ right: auto;
663
+ text-align: center;
664
+ }
665
+
666
+ html body .modula-gallery .modula-items .modula-item.effect-sadie .jtg-body .jtg-social a {
667
+ margin-right:10px;
668
+ }
669
+
670
+ @media all and (max-width:480px) {
671
+ html body .modula-gallery .modula-items .modula-item.effect-sadie .jtg-body .jtg-social a {
672
+ padding:5px;
673
+ }
674
+ }
675
+
676
+ .modula-gallery .modula-items .modula-item.effect-sadie .jtg-body p.description {
677
+ margin-bottom:15px;
678
+ }
679
+
680
+ /*---------------*/
681
+ /***** Roxy *****/
682
+ /*---------------*/
683
+
684
+ .modula-gallery .modula-item.effect-roxy {
685
+ background: -webkit-linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
686
+ background: linear-gradient(45deg, #ff89e9 0%,#05abe0 100%);
687
+ }
688
+
689
+ .modula-gallery .modula-item.effect-roxy img {
690
+ max-width: none;
691
+ width: -webkit-calc(100% + 60px) !important;
692
+ /*width: calc(100% + 60px) !important;*/
693
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
694
+ transition: opacity 0.35s, transform 0.35s;
695
+ -webkit-transform: translate3d(-50px,0,0);
696
+ transform: translate3d(-50px,0,0);
697
+ min-width:calc(100% + 100px) !important;
698
+ inset:unset;
699
+ }
700
+
701
+ .modula-gallery.modula-columns .modula-items .modula-item.effect-roxy img.pic {
702
+ width: -webkit-calc(100% + 20px) !important;
703
+ width: calc(100% + 20px) !important;
704
+
705
+ }
706
+
707
+ .modula-gallery .modula-item.effect-roxy .figc::before {
708
+ position: absolute;
709
+ top: 5%;
710
+ right: 5%;
711
+ bottom: 5%;
712
+ left: 5%;
713
+ border: 1px solid #fff;
714
+ content: '';
715
+ opacity: 0;
716
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
717
+ transition: opacity 0.35s, transform 0.35s;
718
+ -webkit-transform: translate3d(-20px,0,0);
719
+ transform: translate3d(-20px,0,0);
720
+ }
721
+
722
+ html body .modula-gallery .modula-item.effect-roxy .figc {
723
+ padding: 10%;
724
+ text-align: left;
725
+ }
726
+
727
+ html body .modula-gallery .modula-item.effect-roxy .figc .figc-inner{
728
+ text-align:left;
729
+ max-width:85%;
730
+ }
731
+
732
+ .modula-gallery .modula-item.effect-roxy .jtg-title {
733
+ padding: 10px 0 10px 0;
734
+ }
735
+
736
+ .modula-gallery .modula-item.effect-roxy .jtg-title:before {
737
+ display:none;
738
+ }
739
+
740
+ html body .modula-gallery .modula-item.effect-roxy .jtg-social {
741
+ position: relative;
742
+ bottom: auto;
743
+ right: auto;
744
+ text-align: left;
745
+ }
746
+
747
+ .modula-gallery .modula-item.effect-roxy p,
748
+ .modula-gallery .modula-item.effect-roxy .jtg-social {
749
+ opacity: 0;
750
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
751
+ transition: opacity 0.35s, transform 0.35s;
752
+ -webkit-transform: translate3d(-10px,0,0);
753
+ transform: translate3d(-10px,0,0);
754
+ }
755
+
756
+ .modula-gallery .modula-item.effect-roxy:hover img {
757
+ opacity: 0.7;
758
+ -webkit-transform: translate3d(0,0,0);
759
+ transform: translate3d(0,0,0);
760
+ }
761
+
762
+ .modula-gallery .modula-item.effect-roxy:hover .figc::before,
763
+ .modula-gallery .modula-item.effect-roxy:hover p,
764
+ .modula-gallery .modula-item.effect-roxy:hover .jtg-social {
765
+ opacity: 1;
766
+ -webkit-transform: translate3d(0,0,0);
767
+ transform: translate3d(0,0,0);
768
+ }
769
+
770
+ html body .modula-gallery .modula-item.effect-roxy .jtg-social {
771
+ margin-top:10px;
772
+ }
773
+
774
+ html body .modula-gallery .modula-item.effect-roxy .jtg-social a {
775
+ padding:5px;
776
+ }
777
+
778
+ /*---------------*/
779
+ /***** Bubba *****/
780
+ /*---------------*/
781
+
782
+ .modula-gallery .modula-item.effect-bubba {
783
+ background: #9e5406;
784
+ }
785
+
786
+ .modula-gallery .modula-item.effect-bubba img {
787
+ opacity: 0.7;
788
+ -webkit-transition: opacity 0.35s;
789
+ transition: opacity 0.35s;
790
+ }
791
+
792
+ .modula-gallery .modula-item.effect-bubba:hover img {
793
+ opacity: 0.4;
794
+ }
795
+
796
+ .modula-gallery .modula-item.effect-bubba .figc::before,
797
+ .modula-gallery .modula-item.effect-bubba .figc::after {
798
+ position: absolute;
799
+ top: 5%;
800
+ right: 5%;
801
+ bottom: 5%;
802
+ left: 5%;
803
+ content: '';
804
+ opacity: 0;
805
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
806
+ transition: opacity 0.35s, transform 0.35s;
807
+ }
808
+
809
+ .modula-gallery .modula-item.effect-bubba .figc::before {
810
+ border-top: 1px solid #fff;
811
+ border-bottom: 1px solid #fff;
812
+ -webkit-transform: scale(0,1);
813
+ transform: scale(0,1);
814
+ }
815
+
816
+ .modula-gallery .modula-item.effect-bubba .figc::after {
817
+ border-right: 1px solid #fff;
818
+ border-left: 1px solid #fff;
819
+ -webkit-transform: scale(1,0);
820
+ transform: scale(1,0);
821
+ }
822
+
823
+ .modula-gallery .modula-item.effect-bubba .jtg-title {
824
+ -webkit-transition: -webkit-transform 0.35s;
825
+ transition: transform 0.35s;
826
+ -webkit-transform: translate3d(0,-100%,0);
827
+ transform: translate3d(0,-100%,0);
828
+ }
829
+
830
+ .modula-gallery .modula-item.effect-bubba .jtg-title:before {
831
+ display:none;
832
+ }
833
+
834
+ .modula-gallery .modula-item.effect-bubba .jtg-body {
835
+ padding: 20px 2.5em;
836
+ opacity: 0;
837
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
838
+ transition: opacity 0.35s, transform 0.35s;
839
+ -webkit-transform: translate3d(0,20px,0);
840
+ transform: translate3d(0,20px,0);
841
+ z-index:999;
842
+ }
843
+
844
+ .modula-gallery .modula-item.effect-bubba:hover .figc::before,
845
+ .modula-gallery .modula-item.effect-bubba:hover .figc::after {
846
+ opacity: 1;
847
+ -webkit-transform: scale(1);
848
+ transform: scale(1);
849
+ }
850
+
851
+ .modula-gallery .modula-item.effect-bubba:hover .jtg-title,
852
+ .modula-gallery .modula-item.effect-bubba:hover .jtg-body {
853
+ opacity: 1;
854
+ -webkit-transform: translate3d(0,0,0);
855
+ transform: translate3d(0,0,0);
856
+ }
857
+
858
+ html body .modula-gallery .modula-item.effect-bubba .jtg-body .jtg-social {
859
+ position: relative;
860
+ bottom: auto;
861
+ right: auto;
862
+ text-align: center;
863
+ }
864
+
865
+ html body .modula-gallery .modula-item.effect-bubba .jtg-body .jtg-social a {
866
+ padding: 5px;
867
+ margin-right: 10px;
868
+ }
869
+
870
+ .modula-gallery .modula-item.effect-bubba .jtg-body p.description {
871
+ padding-bottom: 20px;
872
+ }
873
+
874
+ html body .modula-gallery .modula-item.effect-bubba .figc {
875
+ padding:5.5%;
876
+ }
877
+
878
+ /*---------------*/
879
+ /***** Romeo *****/
880
+ /*---------------*/
881
+
882
+ .modula-gallery .modula-item.effect-romeo {
883
+ -webkit-perspective: 1000px;
884
+ perspective: 1000px;
885
+ }
886
+
887
+ .modula-gallery .modula-item.effect-romeo img {
888
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
889
+ transition: opacity 0.35s, transform 0.35s;
890
+ -webkit-transform: translate3d(0,0,300px);
891
+ transform: translate3d(0,0,300px);
892
+ }
893
+
894
+ .modula-gallery .modula-item.effect-romeo:hover img {
895
+ opacity: 0.6;
896
+ -webkit-transform: translate3d(0,0,0);
897
+ transform: translate3d(0,0,0);
898
+ }
899
+
900
+ .modula-gallery .modula-item.effect-romeo .figc {
901
+ padding: 15%;
902
+ }
903
+
904
+ .modula-gallery .modula-item.effect-romeo .figc::before,
905
+ .modula-gallery .modula-item.effect-romeo .figc::after {
906
+ position: absolute;
907
+ top: 50%;
908
+ left: 50%;
909
+ width: 80%;
910
+ height: 1px;
911
+ background: #fff;
912
+ content: '';
913
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
914
+ transition: opacity 0.35s, transform 0.35s;
915
+ -webkit-transform: translate3d(-50%,-50%,0);
916
+ transform: translate3d(-50%,-50%,0);
917
+ }
918
+
919
+ .modula-gallery .modula-item.effect-romeo:hover .figc::before {
920
+ opacity: 0.5;
921
+ -webkit-transform: translate3d(-50%,-50%,0) rotate(45deg);
922
+ transform: translate3d(-50%,-50%,0) rotate(45deg);
923
+ }
924
+
925
+ .modula-gallery .modula-item.effect-romeo:hover .figc::after {
926
+ opacity: 0.5;
927
+ -webkit-transform: translate3d(-50%,-50%,0) rotate(-45deg);
928
+ transform: translate3d(-50%,-50%,0) rotate(-45deg);
929
+ }
930
+
931
+ .modula-gallery .modula-item.effect-romeo .jtg-title,
932
+ .modula-gallery .modula-item.effect-romeo .jtg-body {
933
+ position: absolute;
934
+ top: 50%;
935
+ left: 0;
936
+ width: 100%;
937
+ -webkit-transition: -webkit-transform 0.35s;
938
+ transition: transform 0.35s;
939
+ }
940
+
941
+ .modula-gallery .modula-item.effect-romeo .jtg-title {
942
+ -webkit-transform: translate3d(0,-50%,0) translate3d(0,-150%,0);
943
+ transform: translate3d(0,-50%,0) translate3d(0,-150%,0);
944
+ }
945
+
946
+ .modula-gallery .modula-item.effect-romeo .jtg-title:before {
947
+ display:none;
948
+ }
949
+
950
+ .modula-gallery .modula-item.effect-romeo .jtg-body {
951
+ padding: 0.25em 2em;
952
+ -webkit-transform: translate3d(0,-50%,0) translate3d(0,150%,0);
953
+ transform: translate3d(0,-50%,0) translate3d(0,150%,0);
954
+ }
955
+
956
+ .modula-gallery .modula-item.effect-romeo:hover .jtg-title {
957
+ -webkit-transform: translate3d(0,-50%,0) translate3d(0,-100%,0);
958
+ transform: translate3d(0,-50%,0) translate3d(0,-100%,0);
959
+ }
960
+
961
+ .modula-gallery .modula-item.effect-romeo:hover .jtg-body {
962
+ -webkit-transform: translate3d(0,-50%,0) translate3d(0,100%,0);
963
+ transform: translate3d(0,-50%,0) translate3d(0,100%,0);
964
+ }
965
+
966
+ /*---------------*/
967
+ /***** Layla *****/
968
+ /*---------------*/
969
+
970
+ .modula-gallery .modula-item.effect-layla {
971
+ background: #18a367;
972
+ }
973
+
974
+ .modula-gallery .modula-item.effect-layla .modula-item-content {
975
+ height:100%;
976
+ }
977
+
978
+ .modula-gallery .modula-item.effect-layla img {
979
+ height: 390px;
980
+ }
981
+
982
+ .modula-gallery .modula-item.effect-layla .figc {
983
+ padding: 3em;
984
+ }
985
+
986
+ .modula-gallery .modula-item.effect-layla .figc::before,
987
+ .modula-gallery .modula-item.effect-layla .figc::after {
988
+ position: absolute;
989
+ content: '';
990
+ opacity: 0;
991
+ }
992
+
993
+ .modula-gallery .modula-item.effect-layla .figc::before {
994
+ top: 10%;
995
+ right: 5%;
996
+ bottom: 10%;
997
+ left: 5%;
998
+ border-top: 1px solid #fff;
999
+ border-bottom: 1px solid #fff;
1000
+ -webkit-transform: scale(0,1);
1001
+ transform: scale(0,1);
1002
+ -webkit-transform-origin: 0 0;
1003
+ transform-origin: 0 0;
1004
+ }
1005
+
1006
+ .modula-gallery .modula-item.effect-layla .figc::after {
1007
+ top: 5%;
1008
+ right: 10%;
1009
+ bottom: 5%;
1010
+ left: 10%;
1011
+ border-right: 1px solid #fff;
1012
+ border-left: 1px solid #fff;
1013
+ -webkit-transform: scale(1,0);
1014
+ transform: scale(1,0);
1015
+ -webkit-transform-origin: 100% 0;
1016
+ transform-origin: 100% 0;
1017
+ }
1018
+
1019
+ .modula-gallery .modula-item.effect-layla .jtg-title {
1020
+ padding-top: 26%;
1021
+ -webkit-transition: -webkit-transform 0.35s;
1022
+ transition: transform 0.35s;
1023
+ }
1024
+
1025
+ .modula-gallery .modula-item.effect-layla .jtg-title:before {
1026
+ display:none;
1027
+ }
1028
+
1029
+ .modula-gallery .modula-item.effect-layla p {
1030
+ padding: 0.5em 2em;
1031
+ text-transform: none;
1032
+ opacity: 0;
1033
+ -webkit-transform: translate3d(0,-10px,0);
1034
+ transform: translate3d(0,-10px,0);
1035
+ }
1036
+
1037
+ .modula-gallery .modula-item.effect-layla img,
1038
+ .modula-gallery .modula-item.effect-layla .jtg-title {
1039
+ -webkit-transform: translate3d(0,-30px,0);
1040
+ transform: translate3d(0,-30px,0);
1041
+ min-height:calc(100% + 60px) !important;
1042
+ }
1043
+
1044
+ .modula-gallery .modula-item.effect-layla img,
1045
+ .modula-gallery .modula-item.effect-layla .figc::before,
1046
+ .modula-gallery .modula-item.effect-layla .figc::after,
1047
+ .modula-gallery .modula-item.effect-layla p {
1048
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1049
+ transition: opacity 0.35s, transform 0.35s;
1050
+ }
1051
+
1052
+ .modula-gallery .modula-item.effect-layla:hover img {
1053
+ opacity: 0.7;
1054
+ -webkit-transform: translate3d(0,0,0);
1055
+ transform: translate3d(0,0,0);
1056
+ }
1057
+
1058
+ .modula-gallery .modula-item.effect-layla:hover .figc::before,
1059
+ .modula-gallery .modula-item.effect-layla:hover .figc::after {
1060
+ opacity: 1;
1061
+ -webkit-transform: scale(1);
1062
+ transform: scale(1);
1063
+ }
1064
+
1065
+ .modula-gallery .modula-item.effect-layla:hover .jtg-title,
1066
+ .modula-gallery .modula-item.effect-layla:hover p {
1067
+ opacity: 1;
1068
+ -webkit-transform: translate3d(0,0,0);
1069
+ transform: translate3d(0,0,0);
1070
+ }
1071
+
1072
+ .modula-gallery .modula-item.effect-layla:hover figc::after,
1073
+ .modula-gallery .modula-item.effect-layla:hover .jtg-title,
1074
+ .modula-gallery .modula-item.effect-layla:hover p,
1075
+ .modula-gallery .modula-item.effect-layla:hover img {
1076
+ -webkit-transition-delay: 0.15s;
1077
+ transition-delay: 0.15s;
1078
+ }
1079
+
1080
+ /*---------------*/
1081
+ /***** Honey *****/
1082
+ /*---------------*/
1083
+
1084
+ .modula-gallery .modula-item.effect-honey {
1085
+ background: #4a3753;
1086
+ }
1087
+
1088
+ .modula-gallery .modula-item.effect-honey img {
1089
+ opacity: 0.9;
1090
+ -webkit-transition: opacity 0.35s;
1091
+ transition: opacity 0.35s;
1092
+ }
1093
+
1094
+ .modula-gallery .modula-item.effect-honey:hover img {
1095
+ opacity: 0.5;
1096
+ }
1097
+
1098
+ .modula-gallery .modula-item.effect-honey .figc::before {
1099
+ position: absolute;
1100
+ bottom: 0;
1101
+ left: 0;
1102
+ width: 100%;
1103
+ height: 10px;
1104
+ background: #fff;
1105
+ content: '';
1106
+ -webkit-transform: translate3d(0,10px,0);
1107
+ transform: translate3d(0,10px,0);
1108
+ }
1109
+
1110
+ html body .modula-gallery .modula-item.effect-honey .jtg-title {
1111
+ position: absolute;
1112
+ bottom: 0;
1113
+ left: 0;
1114
+ padding: 5% 6%;
1115
+ width: 100%;
1116
+ text-align: left;
1117
+ -webkit-transform: translate3d(0,-30px,0);
1118
+ transform: translate3d(0,-30px,0);
1119
+ }
1120
+
1121
+ .modula-gallery .modula-item.effect-honey .jtg-title:before {
1122
+ display:none;
1123
+ }
1124
+
1125
+ .modula-gallery .modula-item.effect-honey .jtg-title i {
1126
+ font-style: normal;
1127
+ opacity: 0;
1128
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1129
+ transition: opacity 0.35s, transform 0.35s;
1130
+ -webkit-transform: translate3d(0,-30px,0);
1131
+ transform: translate3d(0,-30px,0);
1132
+ }
1133
+
1134
+ .modula-gallery .modula-item.effect-honey .figc::before,
1135
+ .modula-gallery .modula-item.effect-honey .jtg-title {
1136
+ -webkit-transition: -webkit-transform 0.35s;
1137
+ transition: transform 0.35s;
1138
+ }
1139
+
1140
+ .modula-gallery .modula-item.effect-honey:hover .figc::before,
1141
+ .modula-gallery .modula-item.effect-honey:hover .jtg-title,
1142
+ .modula-gallery .modula-item.effect-honey:hover .jtg-title i {
1143
+ opacity: 1;
1144
+ -webkit-transform: translate3d(0,0,0);
1145
+ transform: translate3d(0,0,0);
1146
+ }
1147
+
1148
+ /*---------------*/
1149
+ /***** Oscar *****/
1150
+ /*---------------*/
1151
+
1152
+ .modula-gallery .modula-item.effect-oscar {
1153
+ background: -webkit-linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
1154
+ background: linear-gradient(45deg, #22682a 0%,#9b4a1b 40%,#3a342a 100%);
1155
+ }
1156
+
1157
+ .modula-gallery .modula-item.effect-oscar img {
1158
+ opacity: 0.9;
1159
+ -webkit-transition: opacity 0.35s;
1160
+ transition: opacity 0.35s;
1161
+ }
1162
+
1163
+ .modula-gallery .modula-item.effect-oscar .figc {
1164
+ padding: 3em;
1165
+ background-color: rgba(58,52,42,0.7);
1166
+ -webkit-transition: background-color 0.35s;
1167
+ transition: background-color 0.35s;
1168
+ }
1169
+
1170
+ .modula-gallery .modula-item.effect-oscar .figc::before {
1171
+ position: absolute;
1172
+ top: 7.5%;
1173
+ right: 7.5%;
1174
+ bottom: 7.5%;
1175
+ left: 7.5%;
1176
+ border: 1px solid #fff;
1177
+ content: '';
1178
+ }
1179
+
1180
+ /*.modula-gallery .modula-item.effect-oscar div.jtg-title {
1181
+ margin: 20% 0 10px 0;
1182
+ -webkit-transition: -webkit-transform 0.35s;
1183
+ transition: transform 0.35s;
1184
+ -webkit-transform: translate3d(0,100%,0);
1185
+ transform: translate3d(0,100%,0);
1186
+ }*/
1187
+
1188
+ .modula-gallery .modula-item.effect-oscar .jtg-title:before {
1189
+ display:none;
1190
+ }
1191
+
1192
+ .modula-gallery .modula-item.effect-oscar .figc::before,
1193
+ .modula-gallery .modula-item.effect-oscar p {
1194
+ opacity: 0;
1195
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1196
+ transition: opacity 0.35s, transform 0.35s;
1197
+ -webkit-transform: scale(0);
1198
+ transform: scale(0);
1199
+ }
1200
+
1201
+ /*.modula-gallery .modula-item.effect-oscar:hover .jtg-title {
1202
+ -webkit-transform: translate3d(0,0,0);
1203
+ transform: translate3d(0,0,0);
1204
+ }*/
1205
+
1206
+ .modula-gallery .modula-item.effect-oscar:hover .figc::before,
1207
+ .modula-gallery .modula-item.effect-oscar:hover p {
1208
+ opacity: 1;
1209
+ -webkit-transform: scale(1);
1210
+ transform: scale(1);
1211
+ }
1212
+
1213
+ .modula-gallery .modula-item.effect-oscar:hover .figc {
1214
+ background-color: rgba(58,52,42,0);
1215
+ }
1216
+
1217
+ .modula-gallery .modula-item.effect-oscar:hover img {
1218
+ opacity: 0.4;
1219
+ }
1220
+
1221
+ /*---------------*/
1222
+ /***** Marley *****/
1223
+ /*---------------*/
1224
+
1225
+ html body .modula-gallery .modula-item.effect-marley .figc {
1226
+ text-align: right;
1227
+ }
1228
+
1229
+ .modula-gallery .modula-item.effect-marley .jtg-title,
1230
+ .modula-gallery .modula-item.effect-marley p {
1231
+ position: absolute;
1232
+ right: 7.5%;
1233
+ left: 7.5%;
1234
+ padding: 2.5% 0;
1235
+ }
1236
+
1237
+
1238
+ .modula-gallery .modula-item.effect-marley p {
1239
+ bottom: 7.5%;
1240
+ line-height: 1.5;
1241
+ -webkit-transform: translate3d(0,100%,0);
1242
+ transform: translate3d(0,100%,0);
1243
+ }
1244
+
1245
+ .modula-gallery .modula-item.effect-marley .jtg-title {
1246
+ top: 7.5%;
1247
+ -webkit-transition: -webkit-transform 0.35s;
1248
+ transition: transform 0.35s;
1249
+ -webkit-transform: translate3d(0,20px,0);
1250
+ transform: translate3d(0,20px,0);
1251
+ }
1252
+
1253
+ .modula-gallery .modula-item.effect-marley .jtg-title:before {
1254
+ display:none;
1255
+ }
1256
+
1257
+ .modula-gallery .modula-item.effect-marley:hover .jtg-title {
1258
+ -webkit-transform: translate3d(0,0,0);
1259
+ transform: translate3d(0,0,0);
1260
+ }
1261
+
1262
+ .modula-gallery .modula-item.effect-marley .jtg-title::after {
1263
+ position: absolute;
1264
+ top: 100%;
1265
+ left: 0;
1266
+ width: 100%;
1267
+ height: 4px;
1268
+ background: #fff;
1269
+ content: '';
1270
+ -webkit-transform: translate3d(0,40px,0);
1271
+ transform: translate3d(0,40px,0);
1272
+ }
1273
+
1274
+ .modula-gallery .modula-item.effect-marley .jtg-title::after,
1275
+ .modula-gallery .modula-item.effect-marley p {
1276
+ opacity: 0;
1277
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1278
+ transition: opacity 0.35s, transform 0.35s;
1279
+ }
1280
+
1281
+ .modula-gallery .modula-item.effect-marley:hover .jtg-title::after,
1282
+ .modula-gallery .modula-item.effect-marley:hover p {
1283
+ opacity: 1;
1284
+ -webkit-transform: translate3d(0,0,0);
1285
+ transform: translate3d(0,0,0);
1286
+ }
1287
+
1288
+ /*---------------*/
1289
+ /***** Ruby *****/
1290
+ /*---------------*/
1291
+
1292
+ .modula-gallery .modula-item.effect-ruby {
1293
+ background-color: #17819c;
1294
+ }
1295
+
1296
+ .modula-gallery .modula-item.effect-ruby .figc {
1297
+ padding: 5%;
1298
+ }
1299
+
1300
+ .modula-gallery .modula-item.effect-ruby .figc .figc-inner {
1301
+ min-width:60%;
1302
+ max-width:90%;
1303
+ }
1304
+
1305
+ .modula-gallery .modula-item.effect-ruby img {
1306
+ opacity: 0.7;
1307
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1308
+ transition: opacity 0.35s, transform 0.35s;
1309
+ -webkit-transform: scale(1.15);
1310
+ transform: scale(1.15);
1311
+ }
1312
+
1313
+ .modula-gallery .modula-item.effect-ruby:hover img {
1314
+ opacity: 0.5;
1315
+ -webkit-transform: scale(1);
1316
+ transform: scale(1);
1317
+ }
1318
+
1319
+ .modula-gallery .modula-item.effect-ruby .jtg-title {
1320
+ margin-top: 20%;
1321
+ -webkit-transition: -webkit-transform 0.35s;
1322
+ transition: transform 0.35s;
1323
+ -webkit-transform: translate3d(0,20px,0);
1324
+ transform: translate3d(0,20px,0);
1325
+ }
1326
+
1327
+ .modula-gallery .modula-item.effect-ruby .jtg-title:before {
1328
+ display:none;
1329
+ }
1330
+
1331
+ .modula-gallery .modula-item.effect-ruby .jtg-body {
1332
+ margin: 2.5% 0 0;
1333
+ padding: 5%;
1334
+ border: 1px solid #fff;
1335
+ opacity: 0;
1336
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1337
+ transition: opacity 0.35s, transform 0.35s;
1338
+ -webkit-transform: translate3d(0,20px,0) scale(1.1);
1339
+ transform: translate3d(0,20px,0) scale(1.1);
1340
+ z-index:10;
1341
+ }
1342
+
1343
+ .modula-gallery .modula-item.effect-ruby:hover .jtg-title {
1344
+ -webkit-transform: translate3d(0,0,0);
1345
+ transform: translate3d(0,0,0);
1346
+ }
1347
+
1348
+ .modula-gallery .modula-item.effect-ruby:hover .jtg-body {
1349
+ opacity: 1;
1350
+ -webkit-transform: translate3d(0,0,0) scale(1);
1351
+ transform: translate3d(0,0,0) scale(1);
1352
+ }
1353
+
1354
+ html body .modula-gallery .modula-item.effect-ruby .jtg-body .jtg-social {
1355
+ position: relative;
1356
+ bottom: auto;
1357
+ right: auto;
1358
+ width: 100%;
1359
+ text-align: center;
1360
+ margin-top:15px;
1361
+ }
1362
+
1363
+ html body .modula-gallery .modula-item.effect-ruby .jtg-body .jtg-social a {
1364
+ padding:5px;
1365
+ margin-right:10px;
1366
+ }
1367
+
1368
+ /*---------------*/
1369
+ /***** Milo *****/
1370
+ /*---------------*/
1371
+
1372
+ .modula-gallery .modula-item.effect-milo {
1373
+ background: #2e5d5a;
1374
+ }
1375
+
1376
+ .modula-gallery .modula-item.effect-milo img {
1377
+ max-width: none;
1378
+ min-width: -webkit-calc(100% + 60px) !important;
1379
+ min-width: calc(100% + 60px) !important;
1380
+ opacity: 1;
1381
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1382
+ transition: opacity 0.35s, transform 0.35s;
1383
+ -webkit-transform: translate3d(-30px,0,0) scale(1.12);
1384
+ transform: translate3d(-30px,0,0) scale(1.12);
1385
+ -webkit-backface-visibility: hidden;
1386
+ backface-visibility: hidden;
1387
+ }
1388
+
1389
+ .modula-gallery.modula-columns .modula-items .modula-item.effect-milo img {
1390
+ max-width:none;
1391
+ }
1392
+
1393
+ .modula-gallery .modula-item.effect-milo:hover img {
1394
+ opacity: 0.5;
1395
+ -webkit-transform: translate3d(0,0,0) scale(1);
1396
+ transform: translate3d(0,0,0) scale(1);
1397
+ }
1398
+
1399
+ .modula-gallery .modula-item.effect-milo .jtg-title {
1400
+ position: absolute;
1401
+ right: 0;
1402
+ bottom: 0;
1403
+ padding: 1em 1.2em;
1404
+ }
1405
+
1406
+ html body .modula-gallery .modula-items .modula-item.effect-milo p {
1407
+ padding: 0 10px 0 0;
1408
+ width: 50%;
1409
+ border-right: 1px solid #fff;
1410
+ text-align: right;
1411
+ opacity: 0;
1412
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1413
+ transition: opacity 0.35s, transform 0.35s;
1414
+ -webkit-transform: translate3d(-40px,0,0);
1415
+ transform: translate3d(-40px,0,0);
1416
+ }
1417
+
1418
+ .modula-gallery .modula-item.effect-milo:hover p {
1419
+ opacity: 1;
1420
+ -webkit-transform: translate3d(0,0,0);
1421
+ transform: translate3d(0,0,0);
1422
+ }
1423
+
1424
+ /*---------------*/
1425
+ /***** Dexter *****/
1426
+ /*---------------*/
1427
+
1428
+ .modula-gallery .modula-item.effect-dexter {
1429
+ background: -webkit-linear-gradient(top, rgba(37,141,200,1) 0%, rgba(104,60,19,1) 100%);
1430
+ background: linear-gradient(to bottom, rgba(37,141,200,1) 0%,rgba(104,60,19,1) 100%);
1431
+ }
1432
+
1433
+ .modula-gallery .modula-item.effect-dexter .jtg-title:before {
1434
+ display:none;
1435
+ }
1436
+
1437
+ .modula-gallery .modula-item.effect-dexter img {
1438
+ -webkit-transition: opacity 0.35s;
1439
+ transition: opacity 0.35s;
1440
+ }
1441
+
1442
+ .modula-gallery .modula-item.effect-dexter:hover img {
1443
+ opacity: 0.4;
1444
+ }
1445
+
1446
+ .modula-gallery .modula-item.effect-dexter .figc::after {
1447
+ position: absolute;
1448
+ right: 5%;
1449
+ bottom: 5%;
1450
+ left: 5%;
1451
+ height: -webkit-calc(60% - 10px) !important;
1452
+ height: calc(60% - 10px) !important;
1453
+ border: 7px solid #fff;
1454
+ content: '';
1455
+ -webkit-transition: -webkit-transform 0.35s;
1456
+ transition: transform 0.35s;
1457
+ -webkit-transform: translate3d(0,-60%,0);
1458
+ transform: translate3d(0,-60%,0);
1459
+ }
1460
+
1461
+ .modula-gallery .modula-item.effect-dexter:hover .figc::after {
1462
+ -webkit-transform: translate3d(0,0,0);
1463
+ transform: translate3d(0,0,0);
1464
+ }
1465
+
1466
+ html body .modula-gallery .modula-item.effect-dexter .figc {
1467
+ padding: 7%;
1468
+ text-align: left;
1469
+ display:block;
1470
+ }
1471
+
1472
+ .modula-gallery .modula-item.effect-dexter .figc div.jtg-title {
1473
+ padding:10px;
1474
+ }
1475
+
1476
+ #poststuff .modula-effects-preview.modula-gallery .modula-item.effect-dexter .figc .jtg-title {
1477
+ padding: 15px;
1478
+ }
1479
+
1480
+ .modula-gallery .modula-item.effect-dexter .jtg-body {
1481
+ position: absolute;
1482
+ right: 8%;
1483
+ bottom: 10%;
1484
+ left: 8%;
1485
+ opacity: 0;
1486
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1487
+ transition: opacity 0.35s, transform 0.35s;
1488
+ -webkit-transform: translate3d(0,-100px,0);
1489
+ transform: translate3d(0,-100px,0);
1490
+ z-index: 999;
1491
+ }
1492
+
1493
+ .modula-gallery .modula-item.effect-dexter:hover .jtg-body {
1494
+ opacity: 1;
1495
+ -webkit-transform: translate3d(0,0,0);
1496
+ transform: translate3d(0,0,0);
1497
+ }
1498
+
1499
+ .modula-gallery .modula-item.effect-dexter .jtg-body .jtg-social {
1500
+ position: relative;
1501
+ right: auto;
1502
+ bottom: auto;
1503
+ text-align: left;
1504
+ padding: 0 10px;
1505
+ }
1506
+
1507
+ .modula-gallery .modula-item.effect-dexter .jtg-body .jtg-social a {
1508
+ padding:5px;
1509
+ }
1510
+
1511
+ .modula-gallery .modula-item.effect-dexter .jtg-body p.description {
1512
+ padding:15px;
1513
+ }
1514
+
1515
+ /*---------------*/
1516
+ /***** Zoe *****/
1517
+ /*---------------*/
1518
+
1519
+ .modula-gallery .modula-item.effect-zoe .modula-item-content {
1520
+ height:100%;
1521
+ }
1522
+
1523
+ .modula-gallery .modula-item.effect-zoe .figc {
1524
+ top: auto;
1525
+ bottom: 0;
1526
+ padding: 1em;
1527
+ height: auto !important;
1528
+ background: #fff;
1529
+ color: #3c4a50;
1530
+ -webkit-transition: -webkit-transform 0.35s;
1531
+ transition: transform 0.35s;
1532
+ -webkit-transform: translate3d(0,100%,0);
1533
+ transform: translate3d(0,100%,0);
1534
+ box-sizing: border-box;
1535
+ width: 100%;
1536
+ z-index:99;
1537
+ }
1538
+
1539
+ .modula-gallery.modula-columns .modula-items .modula-item.effect-zoe .figc {
1540
+ top:auto;
1541
+ }
1542
+
1543
+ .modula-gallery .modula-item.effect-zoe .figc .figc-inner {
1544
+ width: 100%;
1545
+ display: flex;
1546
+ align-items: center;
1547
+ justify-content: space-between;
1548
+ }
1549
+
1550
+ .modula-gallery .modula-item.effect-zoe .figc .figc-inner .jtg-social {
1551
+ flex-shrink: 0;
1552
+ }
1553
+
1554
+ html body .modula .modula-items .modula-item.effect-zoe .jtg-social a:last-of-type {
1555
+ margin-right:10px;
1556
+ }
1557
+
1558
+ html body .modula-gallery .modula-item.effect-zoe .jtg-title {
1559
+ float: left;
1560
+ text-align: left;
1561
+ }
1562
+
1563
+ .modula-gallery .modula-item.effect-zoe .jtg-title:before {
1564
+ display:none;
1565
+ }
1566
+
1567
+ .modula-gallery .modula-item.effect-zoe .jtg-social {
1568
+ position: relative;
1569
+ right: auto;
1570
+ bottom: auto;
1571
+ }
1572
+ .modula-gallery .modula-item.effect-zoe .jtg-social a {
1573
+ font-size: 1.4em;
1574
+ }
1575
+
1576
+ .modula-gallery .modula-item.effect-zoe p.description {
1577
+ position: absolute;
1578
+ bottom: 150%;
1579
+ padding: 5%;
1580
+ color: #fff;
1581
+ text-transform: none;
1582
+ font-size: 90%;
1583
+ opacity: 0;
1584
+ -webkit-transition: opacity 0.35s;
1585
+ transition: opacity 0.35s;
1586
+ -webkit-backface-visibility: hidden; /* Fix for Chrome 37.0.2062.120 (Mac) */
1587
+ box-sizing: border-box;
1588
+ width: 100%;
1589
+ left: 0;
1590
+ }
1591
+
1592
+ .modula-gallery .modula-item.effect-zoe .jtg-title,
1593
+ .modula-gallery .modula-item.effect-zoe .jtg-social a {
1594
+ -webkit-transition: -webkit-transform 0.35s;
1595
+ transition: transform 0.35s;
1596
+ -webkit-transform: translate3d(0,200%,0);
1597
+ transform: translate3d(0,200%,0);
1598
+ }
1599
+
1600
+ .modula-gallery .modula-item.effect-zoe:hover p.description {
1601
+ opacity: 1;
1602
+ }
1603
+
1604
+ .modula-gallery .modula-item.effect-zoe:hover .figc,
1605
+ .modula-gallery .modula-item.effect-zoe:hover .jtg-title,
1606
+ .modula-gallery .modula-item.effect-zoe:hover .jtg-social a {
1607
+ -webkit-transform: translate3d(0,0,0);
1608
+ transform: translate3d(0,0,0);
1609
+ }
1610
+
1611
+ .modula-gallery .modula-item.effect-zoe:hover .jtg-title {
1612
+ -webkit-transition-delay: 0.05s;
1613
+ transition-delay: 0.05s;
1614
+ }
1615
+
1616
+ .modula-gallery .modula-item.effect-zoe:hover .jtg-social a:nth-child(4) {
1617
+ -webkit-transition-delay: 0.1s;
1618
+ transition-delay: 0.1s;
1619
+ }
1620
+
1621
+ .modula-gallery .modula-item.effect-zoe:hover .jtg-social a:nth-child(3) {
1622
+ -webkit-transition-delay: 0.15s;
1623
+ transition-delay: 0.15s;
1624
+ }
1625
+
1626
+ .modula-gallery .modula-item.effect-zoe:hover .jtg-social a:nth-child(2) {
1627
+ -webkit-transition-delay: 0.2s;
1628
+ transition-delay: 0.2s;
1629
+ }
1630
+
1631
+ .modula-gallery .modula-item.effect-zoe:hover .jtg-social a:first-child {
1632
+ -webkit-transition-delay: 0.25s;
1633
+ transition-delay: 0.25s;
1634
+ }
1635
+
1636
+ /* Color for admin */
1637
+ .modula-gallery .panel-zoe .modula-item.effect-zoe .jtg-title,
1638
+ .modula-gallery .panel-zoe .modula-item.effect-zoe .jtg-social a {
1639
+ color: #000;
1640
+ }
1641
+
1642
+ /*---------------*/
1643
+ /***** Chico *****/
1644
+ /*---------------*/
1645
+
1646
+ .modula-gallery .modula-item.effect-chico img {
1647
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1648
+ transition: opacity 0.35s, transform 0.35s;
1649
+ -webkit-transform: scale(1.12);
1650
+ transform: scale(1.12);
1651
+ }
1652
+
1653
+ .modula-gallery .modula-item.effect-chico:hover img {
1654
+ opacity: 0.5;
1655
+ -webkit-transform: scale(1);
1656
+ transform: scale(1);
1657
+ }
1658
+
1659
+ .modula-gallery .modula-item.effect-chico .figc {
1660
+ padding: 3em;
1661
+ }
1662
+
1663
+ .modula-gallery .modula-item.effect-chico .figc::before {
1664
+ position: absolute;
1665
+ top: 7.5%;
1666
+ right: 7.5%;
1667
+ bottom: 7.5%;
1668
+ left: 7.5%;
1669
+ border: 1px solid #fff;
1670
+ content: '';
1671
+ -webkit-transform: scale(1.1);
1672
+ transform: scale(1.1);
1673
+ }
1674
+
1675
+ .modula-gallery .modula-item.effect-chico .figc::before,
1676
+ .modula-gallery .modula-item.effect-chico p {
1677
+ opacity: 0;
1678
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1679
+ transition: opacity 0.35s, transform 0.35s;
1680
+ }
1681
+
1682
+ html body .modula-gallery .modula-items .modula-item.effect-chico .figc-inner {
1683
+ padding:8%;
1684
+ }
1685
+
1686
+ html body .modula-gallery .modula-items .modula-item.effect-chico .figc-inner .jtg-social a {
1687
+ margin-right:10px;
1688
+ padding:5px;
1689
+ }
1690
+
1691
+ .modula-gallery .modula-item.effect-chico .jtg-title {
1692
+ padding: 20px 0 20px 0;
1693
+ }
1694
+
1695
+ .modula-gallery .modula-item.effect-chico .jtg-title:before {
1696
+ display:none;
1697
+ }
1698
+
1699
+ .modula-gallery .modula-item.effect-chico p {
1700
+ -webkit-transform: scale(1.5);
1701
+ transform: scale(1.5);
1702
+ }
1703
+
1704
+ .modula-gallery .modula-item.effect-chico:hover .figc::before,
1705
+ .modula-gallery .modula-item.effect-chico:hover p {
1706
+ opacity: 1;
1707
+ -webkit-transform: scale(1);
1708
+ transform: scale(1);
1709
+ }
1710
+
1711
+ .modula-gallery .modula-item.effect-chico p.description {
1712
+ padding-bottom:20px;
1713
+ }
1714
+
1715
+ /*---------------*/
1716
+ /***** Julia *****/
1717
+ /*---------------*/
1718
+
1719
+ .modula-gallery .modula-item.effect-julia {
1720
+ background: #2f3238;
1721
+ }
1722
+
1723
+ .modula-gallery .modula-item.effect-julia img {
1724
+ max-width: none;
1725
+ height: 400px;
1726
+ -webkit-transition: opacity 1s, -webkit-transform 1s;
1727
+ transition: opacity 1s, transform 1s;
1728
+ -webkit-backface-visibility: hidden;
1729
+ backface-visibility: hidden;
1730
+ }
1731
+
1732
+ html body .modula-gallery .modula-item.effect-julia .figc {
1733
+ text-align: left;
1734
+ }
1735
+
1736
+ html body .modula-gallery .modula-items .modula-item.effect-julia .figc .figc-inner {
1737
+ display:flex;
1738
+ flex-direction: column;
1739
+ width:100%;
1740
+ text-align:left;
1741
+
1742
+ }
1743
+
1744
+ html body .modula-gallery .modula-items .modula-item.effect-julia .figc .figc-inner .jtg-social a {
1745
+ padding:5px;
1746
+ color: #000;
1747
+ }
1748
+
1749
+ .modula-gallery .modula-item.effect-julia .jtg-title {
1750
+ position: relative;
1751
+ padding: 0.5em 0;
1752
+ }
1753
+
1754
+ .modula-gallery .modula-item.effect-julia .jtg-title:before {
1755
+ display:none;
1756
+ }
1757
+
1758
+ html body .modula-gallery .modula-item.effect-julia p.description,
1759
+ html body .modula-gallery .modula-item.effect-julia .jtg-social {
1760
+ display: table;
1761
+ margin: 0 0 0.25em;
1762
+ padding: 0.4em 1em;
1763
+ background: rgba(255,255,255,0.9);
1764
+ color: #2f3238;
1765
+ text-transform: none;
1766
+ font-weight: 500;
1767
+ font-size: 75%;
1768
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1769
+ transition: opacity 0.35s, transform 0.35s;
1770
+ -webkit-transform: translate3d(-120%,0,0);
1771
+ transform: translate3d(-999%,0,0);
1772
+ text-align:left;
1773
+ }
1774
+
1775
+ .modula-gallery .modula-item.effect-julia p:first-child {
1776
+ -webkit-transition-delay: 0.15s;
1777
+ transition-delay: 0.15s;
1778
+ }
1779
+
1780
+ .modula-gallery .modula-item.effect-julia .jtg-social {
1781
+ -webkit-transition-delay: 0.1s;
1782
+ transition-delay: 0.1s;
1783
+ }
1784
+
1785
+ .modula-gallery .modula-item.effect-julia p:nth-of-type(3) {
1786
+ -webkit-transition-delay: 0.05s;
1787
+ transition-delay: 0.05s;
1788
+ }
1789
+
1790
+ .modula-gallery .modula-item.effect-julia:hover p:first-child {
1791
+ -webkit-transition-delay: 0s;
1792
+ transition-delay: 0s;
1793
+ }
1794
+
1795
+ .modula-gallery .modula-item.effect-julia:hover p:nth-of-type(2) {
1796
+ -webkit-transition-delay: 0.05s;
1797
+ transition-delay: 0.05s;
1798
+ }
1799
+
1800
+ .modula-gallery .modula-item.effect-julia:hover p:nth-of-type(3) {
1801
+ -webkit-transition-delay: 0.1s;
1802
+ transition-delay: 0.1s;
1803
+ }
1804
+
1805
+ .modula-gallery .modula-item.effect-julia:hover img {
1806
+ opacity: 0.4;
1807
+ -webkit-transform: scale3d(1.1,1.1,1);
1808
+ transform: scale3d(1.1,1.1,1);
1809
+ }
1810
+
1811
+ .modula-gallery .modula-item.effect-julia:hover p,
1812
+ .modula-gallery .modula-item.effect-julia:hover .jtg-social {
1813
+ opacity: 1;
1814
+ -webkit-transform: translate3d(0,0,0);
1815
+ transform: translate3d(0,0,0);
1816
+ }
1817
+
1818
+ /*-----------------*/
1819
+ /***** Goliath *****/
1820
+ /*-----------------*/
1821
+
1822
+ .modula-gallery .modula-item.effect-goliath {
1823
+ background: #df4e4e;
1824
+ }
1825
+
1826
+ .modula-gallery .modula-item.effect-goliath img,
1827
+ .modula-gallery .modula-item.effect-goliath .jtg-title {
1828
+ -webkit-transition: -webkit-transform 0.35s;
1829
+ transition: transform 0.35s;
1830
+ }
1831
+
1832
+ .modula-gallery .modula-item.effect-goliath img {
1833
+ -webkit-backface-visibility: hidden;
1834
+ backface-visibility: hidden;
1835
+ }
1836
+
1837
+ .modula-gallery .modula-item.effect-goliath .jtg-title,
1838
+ .modula-gallery .modula-item.effect-goliath p {
1839
+ position: absolute;
1840
+ bottom: 0;
1841
+ left: 0;
1842
+ padding: 30px;
1843
+ }
1844
+
1845
+ .modula-gallery .modula-item.effect-goliath p {
1846
+ text-transform: none;
1847
+ font-size: 90%;
1848
+ opacity: 0;
1849
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1850
+ transition: opacity 0.35s, transform 0.35s;
1851
+ -webkit-transform: translate3d(0,50px,0);
1852
+ transform: translate3d(0,50px,0);
1853
+ }
1854
+
1855
+ .modula-gallery .modula-item.effect-goliath:hover img {
1856
+ -webkit-transform: translate3d(0,-80px,0);
1857
+ transform: translate3d(0,-80px,0);
1858
+ }
1859
+
1860
+ .modula-gallery .modula-item.effect-goliath:hover .jtg-title {
1861
+ -webkit-transform: translate3d(0,-100px,0);
1862
+ transform: translate3d(0,-100px,0);
1863
+ }
1864
+
1865
+ .modula-gallery .modula-item.effect-goliath .jtg-title:before {
1866
+ display: none;
1867
+ }
1868
+
1869
+ .modula-gallery .modula-item.effect-goliath:hover p {
1870
+ opacity: 1;
1871
+ -webkit-transform: translate3d(0,0,0);
1872
+ transform: translate3d(0,0,0);
1873
+ }
1874
+
1875
+ /*-----------------*/
1876
+ /***** Hera *****/
1877
+ /*-----------------*/
1878
+
1879
+ .modula-gallery .modula-item.effect-hera {
1880
+ background: #303fa9;
1881
+ }
1882
+
1883
+ .modula-gallery .modula-item.effect-hera .jtg-title {
1884
+ font-size: 158.75%;
1885
+ }
1886
+
1887
+ .modula-gallery .modula-item.effect-hera .jtg-title:before {
1888
+ display: none;
1889
+ }
1890
+
1891
+ .modula-gallery .modula-item.effect-hera .jtg-title,
1892
+ .modula-gallery .modula-item.effect-hera .jtg-social {
1893
+ position: absolute;
1894
+ top: 50%;
1895
+ left: 50%;
1896
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1897
+ transition: opacity 0.35s, transform 0.35s;
1898
+ -webkit-transform: translate3d(-50%,-50%,0);
1899
+ transform: translate3d(-50%,-50%,0);
1900
+ -webkit-transform-origin: 50%;
1901
+ transform-origin: 50%;
1902
+ }
1903
+
1904
+ .modula-gallery .modula-item.effect-hera .jtg-social {
1905
+ right: auto;
1906
+ bottom: auto;
1907
+ }
1908
+
1909
+ .modula-gallery .modula-item.effect-hera .figc::before {
1910
+ position: absolute;
1911
+ top: 50%;
1912
+ left: 50%;
1913
+ width: 150px;
1914
+ height: 150px;
1915
+ border: 2px solid #fff;
1916
+ content: '';
1917
+ opacity: 0;
1918
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1919
+ transition: opacity 0.35s, transform 0.35s;
1920
+ -webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(0,0,1);
1921
+ transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(0,0,1);
1922
+ -webkit-transform-origin: 50%;
1923
+ transform-origin: 50%;
1924
+ }
1925
+
1926
+ html body .modula-gallery .modula-item.effect-hera .jtg-social {
1927
+ width: 50%;
1928
+ text-transform: none;
1929
+ font-size: 121%;
1930
+ line-height: 2;
1931
+ text-align: center;
1932
+ }
1933
+
1934
+ html body .modula-gallery .modula-item.effect-hera .jtg-social a {
1935
+ text-align: center;
1936
+ box-sizing: border-box;
1937
+ /* Fix for gutter in socials settings */
1938
+ margin:0 auto !important;
1939
+ padding:5px;
1940
+
1941
+ }
1942
+
1943
+ .modula-gallery .modula-item.effect-hera .jtg-social a:hover,
1944
+ .modula-gallery .modula-item.effect-hera .jtg-social a:focus {
1945
+ opacity: 0.6;
1946
+ }
1947
+
1948
+ .modula-gallery .modula-item.effect-hera .jtg-social a svg {
1949
+ opacity: 0;
1950
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1951
+ transition: opacity 0.35s, transform 0.35s;
1952
+ vertical-align: middle;
1953
+ margin:0 auto;
1954
+ }
1955
+
1956
+ .modula-gallery .modula-item.effect-hera .jtg-social a:first-child svg {
1957
+ -webkit-transform: translate3d(-60px,-60px,0);
1958
+ transform: translate3d(-60px,-60px,0);
1959
+ }
1960
+
1961
+ .modula-gallery .modula-item.effect-hera .jtg-social a:nth-child(2) svg {
1962
+ -webkit-transform: translate3d(60px,-60px,0);
1963
+ transform: translate3d(60px,-60px,0);
1964
+ }
1965
+
1966
+ .modula-gallery .modula-item.effect-hera .jtg-social a:nth-child(3) svg {
1967
+ -webkit-transform: translate3d(-60px,60px,0);
1968
+ transform: translate3d(-60px,60px,0);
1969
+ }
1970
+
1971
+ .modula-gallery .modula-item.effect-hera .jtg-social a:nth-child(4) svg {
1972
+ -webkit-transform: translate3d(60px,60px,0);
1973
+ transform: translate3d(60px,60px,0);
1974
+ }
1975
+
1976
+ .modula-gallery .modula-item.effect-hera .jtg-social a:nth-child(5) svg {
1977
+ -webkit-transform: translate3d(-60px,60px,0);
1978
+ transform: translate3d(-60px,60px,0);
1979
+ }
1980
+
1981
+ .modula-gallery .modula-item.effect-hera .jtg-social a:nth-child(6) svg {
1982
+ -webkit-transform: translate3d(60px,60px,0);
1983
+ transform: translate3d(60px,60px,0);
1984
+ }
1985
+
1986
+ .modula-gallery .modula-item.effect-hera:hover .figc::before {
1987
+ opacity: 1;
1988
+ -webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(1,1,1);
1989
+ transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(1,1,1);
1990
+ }
1991
+
1992
+ .modula-gallery .modula-item.effect-hera:hover .jtg-title {
1993
+ opacity: 0;
1994
+ -webkit-transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
1995
+ transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
1996
+ }
1997
+
1998
+ .modula-gallery .modula-items .modula-item.effect-hera:hover .jtg-social svg {
1999
+ -webkit-transform: translate3d(0,0,0);
2000
+ transform: translate3d(0,0,0); /* just because it's stronger than nth-child */
2001
+ opacity: 1;
2002
+ }
2003
+
2004
+
2005
+ .modula-gallery .modula-item.effect-hera p.description {
2006
+ display:none;
2007
+ }
2008
+
2009
+ .modula-gallery .modula-item.effect-hera:hover p.description {
2010
+ display:block;
2011
+ }
2012
+
2013
+
2014
+ /*-----------------*/
2015
+ /***** Selena *****/
2016
+ /*-----------------*/
2017
+
2018
+ .modula-gallery .modula-item.effect-selena {
2019
+ background: #fff;
2020
+ }
2021
+
2022
+ .modula-gallery .modula-item.effect-selena img {
2023
+ opacity: 0.95;
2024
+ -webkit-transition: -webkit-transform 0.35s;
2025
+ transition: transform 0.35s;
2026
+ -webkit-transform-origin: 50% 50%;
2027
+ transform-origin: 50% 50%;
2028
+ }
2029
+
2030
+ .modula-gallery .modula-item.effect-selena:hover img {
2031
+ -webkit-transform: scale3d(0.95,0.95,1);
2032
+ transform: scale3d(0.95,0.95,1);
2033
+ }
2034
+
2035
+ .modula-gallery .modula-item.effect-selena .jtg-title {
2036
+ -webkit-transition: -webkit-transform 0.35s;
2037
+ transition: transform 0.35s;
2038
+ -webkit-transform: translate3d(0,20px,0);
2039
+ transform: translate3d(0,20px,0);
2040
+ }
2041
+
2042
+ .modula-gallery .modula-item.effect-selena p {
2043
+ opacity: 0;
2044
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2045
+ transition: opacity 0.35s, transform 0.35s;
2046
+ -webkit-transform: perspective(1000px) rotate3d(1,0,0,90deg);
2047
+ transform: perspective(1000px) rotate3d(1,0,0,90deg);
2048
+ -webkit-transform-origin: 50% 0%;
2049
+ transform-origin: 50% 0%;
2050
+ }
2051
+
2052
+ .modula-gallery .modula-item.effect-selena:hover .jtg-title {
2053
+ -webkit-transform: translate3d(0,0,0);
2054
+ transform: translate3d(0,0,0);
2055
+ }
2056
+
2057
+ .modula-gallery .modula-item.effect-selena:hover p {
2058
+ opacity: 1;
2059
+ -webkit-transform: perspective(1000px) rotate3d(1,0,0,0);
2060
+ transform: perspective(1000px) rotate3d(1,0,0,0);
2061
+ }
2062
+
2063
+ html body .modula-gallery .modula-items .modula-item.effect-selena .jtg-social a {
2064
+ margin-right:10px;
2065
+ padding:5px;
2066
+ }
2067
+
2068
+ /*-----------------*/
2069
+ /***** Terry *****/
2070
+ /*-----------------*/
2071
+
2072
+ .modula-gallery .modula-item.effect-terry {
2073
+ background: #34495e;
2074
+ }
2075
+
2076
+ .modula-gallery .modula-item.effect-terry .figc {
2077
+ padding: 10px;
2078
+ }
2079
+
2080
+ .modula-gallery:not(.modula-custom-grid) .modula-item.effect-terry .figc,
2081
+ .modula-gallery:not(.modula-custom-grid) .modula-item.effect-terry {
2082
+ min-height:200px;
2083
+ }
2084
+
2085
+ .modula-gallery .modula-item.effect-terry .figc::before,
2086
+ .modula-gallery .modula-item.effect-terry .figc::after {
2087
+ position: absolute;
2088
+ width: 200%;
2089
+ height: 200%;
2090
+ border-style: solid;
2091
+ border-color: #101010;
2092
+ content: '';
2093
+ -webkit-transition: -webkit-transform 0.35s;
2094
+ transition: transform 0.35s;
2095
+ }
2096
+
2097
+ .modula-gallery .modula-item.effect-terry .figc::before {
2098
+ right: 0;
2099
+ bottom: 0;
2100
+ border-width: 0 70px 60px 0;
2101
+ -webkit-transform: translate3d(70px,60px,0);
2102
+ transform: translate3d(70px,60px,0);
2103
+ }
2104
+
2105
+ .modula-gallery .modula-item.effect-terry .figc::after {
2106
+ top: 0;
2107
+ left: 0;
2108
+ border-width: 15px 0 0 15px;
2109
+ -webkit-transform: translate3d(-15px,-15px,0);
2110
+ transform: translate3d(-15px,-15px,0);
2111
+ }
2112
+
2113
+ .modula-gallery .modula-item.effect-terry .figc .figc-inner {
2114
+ width: 100%;
2115
+ height: 100%;
2116
+ }
2117
+
2118
+ .modula-gallery .modula-item.effect-terry img,
2119
+ .modula-gallery .modula-item.effect-terry .jtg-social a {
2120
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2121
+ transition: opacity 0.35s, transform 0.35s;
2122
+ }
2123
+
2124
+ .modula-gallery .modula-item.effect-terry img {
2125
+ opacity: 0.85;
2126
+ }
2127
+
2128
+ html body .modula-gallery .modula-item.effect-terry .jtg-title {
2129
+ position: absolute;
2130
+ bottom: 0;
2131
+ left: 0;
2132
+ padding: 0.4em 15px;
2133
+ width: 100%;
2134
+ text-align: left;
2135
+ }
2136
+
2137
+ .modula-gallery .modula-item.effect-terry .jtg-title:before {
2138
+ display: none;
2139
+ }
2140
+
2141
+ .modula-gallery .modula-item.effect-terry .jtg-social {
2142
+ float: right;
2143
+ clear: both;
2144
+ text-align: left;
2145
+ text-transform: none;
2146
+ font-size: 111%;
2147
+ position: relative;
2148
+ right: auto;
2149
+ bottom: auto;
2150
+ /*margin-right: 25px;
2151
+ margin-top: 15px;*/
2152
+ width: 60px;
2153
+ text-align: center;
2154
+ padding: 5px 0 15px;
2155
+
2156
+ }
2157
+
2158
+ .modula-gallery .modula-item.effect-terry .jtg-social a {
2159
+ display: block;
2160
+ margin-right: 0 !important;
2161
+ color: #fff;
2162
+ opacity: 0;
2163
+ -webkit-transform: translate3d(90px,0,0);
2164
+ transform: translate3d(90px,0,0);
2165
+ width: auto;
2166
+ padding: 5px;
2167
+ box-sizing: border-box;
2168
+ margin-bottom: 10px;
2169
+ }
2170
+
2171
+ .modula-gallery .modula-item.effect-terry:hover .figc::before,
2172
+ .modula-gallery .modula-item.effect-terry:hover .figc::after {
2173
+ -webkit-transform: translate3d(0,0,0);
2174
+ transform: translate3d(0,0,0);
2175
+ }
2176
+
2177
+ .modula-gallery .modula-item.effect-terry:hover img {
2178
+ opacity: 0.6;
2179
+
2180
+ }
2181
+
2182
+ .modula-gallery .modula-item.effect-terry:hover .jtg-social a {
2183
+ -webkit-transform: translate3d(0,0,0);
2184
+ transform: translate3d(0,0,0);
2185
+ }
2186
+
2187
+ .modula-gallery .modula-item.effect-terry:hover .jtg-social a {
2188
+ opacity: 1;
2189
+ }
2190
+
2191
+ .modula-gallery .modula-item.effect-terry:hover .jtg-social a:first-child {
2192
+ -webkit-transition-delay: 0.025s;
2193
+ transition-delay: 0.025s;
2194
+ }
2195
+
2196
+ .modula-gallery .modula-item.effect-terry:hover .jtg-social a:nth-child(2) {
2197
+ -webkit-transition-delay: 0.05s;
2198
+ transition-delay: 0.05s;
2199
+ }
2200
+
2201
+ .modula-gallery .modula-item.effect-terry:hover .jtg-social a:nth-child(3) {
2202
+ -webkit-transition-delay: 0.075s;
2203
+ transition-delay: 0.075s;
2204
+ }
2205
+
2206
+ .modula-gallery .modula-item.effect-terry:hover .jtg-social a:nth-child(4) {
2207
+ -webkit-transition-delay: 0.1s;
2208
+ transition-delay: 0.1s;
2209
+ }
2210
+
2211
+ .modula-gallery .modula-item.effect-terry:hover .jtg-social a:nth-child(5) {
2212
+ -webkit-transition-delay: 0.125s;
2213
+ transition-delay: 0.125s;
2214
+ }
2215
+
2216
+ .modula-gallery .modula-item.effect-terry:hover .jtg-social a:nth-child(6) {
2217
+ -webkit-transition-delay: 0.15s;
2218
+ transition-delay: 0.15s;
2219
+ }
2220
+
2221
+
2222
+ /*-----------------*/
2223
+ /***** Apollo *****/
2224
+ /*-----------------*/
2225
+
2226
+ .modula-gallery .modula-item.effect-apollo {
2227
+ background: #3498db;
2228
+ }
2229
+
2230
+ .modula-gallery .modula-item.effect-apollo img {
2231
+ opacity: 0.95;
2232
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2233
+ transition: opacity 0.35s, transform 0.35s;
2234
+ -webkit-transform: scale3d(1.05,1.05,1);
2235
+ transform: scale3d(1.05,1.05,1);
2236
+ }
2237
+
2238
+ html body .modula-gallery .modula-items .modula-item.effect-apollo .figc {
2239
+ padding:10%;
2240
+ }
2241
+
2242
+ .modula-gallery .modula-item.effect-apollo .figc::before {
2243
+ position: absolute;
2244
+ top: 0;
2245
+ left: 0;
2246
+ width: 100%;
2247
+ height: 100%;
2248
+ background: rgba(255,255,255,0.5);
2249
+ content: '';
2250
+ -webkit-transition: -webkit-transform 0.6s;
2251
+ transition: transform 0.6s;
2252
+ -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-120%,0);
2253
+ transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-120%,0);
2254
+ }
2255
+
2256
+ html body .modula-gallery .modula-items .modula-item.effect-apollo p {
2257
+ position: absolute;
2258
+ right: 3%;
2259
+ bottom: 3%;
2260
+ margin: 10%;
2261
+ padding: 0 5%;
2262
+ border-right: 4px solid #fff;
2263
+ text-align: right;
2264
+ opacity: 0;
2265
+ -webkit-transition: opacity 0.35s;
2266
+ transition: opacity 0.35s;
2267
+ width:70%;
2268
+ }
2269
+
2270
+ html body .modula-gallery .modula-items .modula-item.effect-apollo .jtg-title {
2271
+ text-align: left;
2272
+ }
2273
+
2274
+ .modula-gallery .modula-item.effect-apollo .jtg-title:before {
2275
+ display: none;
2276
+ }
2277
+
2278
+ .modula-gallery .modula-item.effect-apollo:hover img {
2279
+ opacity: 0.6;
2280
+ -webkit-transform: scale3d(1,1,1);
2281
+ transform: scale3d(1,1,1);
2282
+ }
2283
+
2284
+ .modula-gallery .modula-item.effect-apollo:hover .figc::before {
2285
+ -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,120%,0);
2286
+ transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,120%,0);
2287
+ }
2288
+
2289
+ html body .modula-gallery .modula-items .modula-item.effect-apollo:hover p {
2290
+ opacity: 1;
2291
+ -webkit-transition-delay: 0.1s;
2292
+ transition-delay: 0.1s;
2293
+ }
2294
+
2295
+ /*-----------------*/
2296
+ /***** Kira *****/
2297
+ /*-----------------*/
2298
+
2299
+ html body .modula-gallery .modula-item.effect-kira {
2300
+ background: #fff;
2301
+ text-align: left;
2302
+ }
2303
+
2304
+ .modula-gallery .modula-item.effect-kira img {
2305
+ -webkit-transition: opacity 0.35s;
2306
+ transition: opacity 0.35s;
2307
+ }
2308
+
2309
+ .modula-gallery .modula-item.effect-kira .figc {
2310
+ z-index: 1;
2311
+ }
2312
+
2313
+ .modula-gallery .modula-item.effect-kira p {
2314
+ padding: 2.25em 0.5em;
2315
+ font-weight: 600;
2316
+ font-size: 100%;
2317
+ line-height: 1.5;
2318
+ opacity: 0;
2319
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2320
+ transition: opacity 0.35s, transform 0.35s;
2321
+ -webkit-transform: translate3d(0,-10px,0);
2322
+ transform: translate3d(0,-10px,0);
2323
+ }
2324
+
2325
+
2326
+ .modula-gallery .modula-item.effect-kira .figc::before {
2327
+ position: absolute;
2328
+ top: 0;
2329
+ right: 2em;
2330
+ left: 2em;
2331
+ z-index: -1;
2332
+ height: 3.5em;
2333
+ background: #fff;
2334
+ content: '';
2335
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2336
+ transition: opacity 0.35s, transform 0.35s;
2337
+ -webkit-transform: translate3d(0,4em,0) scale3d(1,0.023,1) ;
2338
+ transform: translate3d(0,4em,0) scale3d(1,0.023,1);
2339
+ -webkit-transform-origin: 50% 0;
2340
+ transform-origin: 50% 0;
2341
+ }
2342
+
2343
+ .modula-gallery .modula-item.effect-kira:hover img {
2344
+ opacity: 0.5;
2345
+ }
2346
+
2347
+ .modula-gallery .modula-item.effect-kira:hover p {
2348
+ opacity: 1;
2349
+ -webkit-transform: translate3d(0,0,0);
2350
+ transform: translate3d(0,0,0);
2351
+ }
2352
+
2353
+ .modula-gallery .modula-item.effect-kira .jtg-title:before {
2354
+ display: none;
2355
+ }
2356
+
2357
+ .modula-gallery .modula-item.effect-kira:hover .figc::before {
2358
+ opacity: 0.7;
2359
+ -webkit-transform: translate3d(0,5em,0) scale3d(1,1,1) ;
2360
+ transform: translate3d(0,5em,0) scale3d(1,1,1);
2361
+ }
2362
+
2363
+ /*-----------------*/
2364
+ /***** Steve *****/
2365
+ /*-----------------*/
2366
+
2367
+ .modula-gallery .modula-item.effect-steve {
2368
+ z-index: auto;
2369
+ overflow: visible;
2370
+ background: #000;
2371
+ overflow:hidden;
2372
+ }
2373
+
2374
+ .modula-gallery .modula-item.effect-steve:before{
2375
+ position: absolute;
2376
+ top: 0;
2377
+ left: 0;
2378
+ z-index: -1;
2379
+ width: 100%;
2380
+ height: 100%;
2381
+ background: #000;
2382
+ content: '';
2383
+ -webkit-transition: opacity 0.35s;
2384
+ transition: opacity 0.35s;
2385
+ }
2386
+
2387
+ html body .modula-gallery .modula-items .modula-item.effect-steve .figc {
2388
+ padding:5%;
2389
+ }
2390
+
2391
+ .modula-gallery .modula-item.effect-steve .jtg-title:before {
2392
+ display: none;
2393
+ }
2394
+
2395
+ .modula-gallery .modula-item.effect-steve:before {
2396
+ box-shadow: 0 3px 30px rgba(0,0,0,0.8);
2397
+ opacity: 0;
2398
+ }
2399
+
2400
+ .modula-gallery .modula-item.effect-steve .figc {
2401
+ z-index: 1;
2402
+ }
2403
+
2404
+ .modula-gallery .modula-item.effect-steve img {
2405
+ opacity: 1;
2406
+ -webkit-transition: -webkit-transform 0.35s;
2407
+ transition: transform 0.35s;
2408
+ -webkit-transform: perspective(1000px) translate3d(0,0,0);
2409
+ transform: perspective(1000px) translate3d(0,0,0);
2410
+ }
2411
+
2412
+ .modula-gallery .modula-item.effect-steve .jtg-title,
2413
+ .modula-gallery .modula-item.effect-steve p {
2414
+ background: #fff;
2415
+ color: #2d434e;
2416
+ }
2417
+
2418
+ .modula-gallery .modula-item.effect-steve .jtg-title {
2419
+ position: relative;
2420
+ margin-top: 2em;
2421
+ padding: 0.25em;
2422
+ }
2423
+
2424
+ html body .modula-gallery .modula-items .modula-item.effect-steve p {
2425
+ margin-top: 1em;
2426
+ padding: 0.5em;
2427
+ font-weight: 800;
2428
+ opacity: 0;
2429
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2430
+ transition: opacity 0.35s, transform 0.35s;
2431
+ -webkit-transform: scale3d(0.9,0.9,1);
2432
+ transform: scale3d(0.9,0.9,1);
2433
+ }
2434
+
2435
+ .modula-gallery .modula-item.effect-steve:hover:before {
2436
+ opacity: 1;
2437
+ }
2438
+
2439
+ .modula-gallery .modula-item.effect-steve:hover img {
2440
+ -webkit-transform: perspective(1000px) translate3d(0,0,21px);
2441
+ transform: perspective(1000px) translate3d(0,0,21px);
2442
+ }
2443
+
2444
+ html body .modula-gallery .modula-items .modula-item.effect-steve:hover p {
2445
+ opacity: 1;
2446
+ -webkit-transform: scale3d(1,1,1);
2447
+ transform: scale3d(1,1,1);
2448
+ }
2449
+
2450
+ /*---------------*/
2451
+ /***** Jazz *****/
2452
+ /*---------------*/
2453
+
2454
+ .modula-gallery .modula-item.effect-jazz {
2455
+ background: -webkit-linear-gradient(-45deg, #f3cf3f 0%,#f33f58 100%);
2456
+ background: linear-gradient(-45deg, #f3cf3f 0%,#f33f58 100%);
2457
+ }
2458
+
2459
+ .modula-gallery .modula-item.effect-jazz img {
2460
+ opacity: 0.9;
2461
+ }
2462
+
2463
+ .modula-gallery .modula-item.effect-jazz .figc::after,
2464
+ .modula-gallery .modula-item.effect-jazz img,
2465
+ .modula-gallery .modula-item.effect-jazz p {
2466
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2467
+ transition: opacity 0.35s, transform 0.35s;
2468
+ }
2469
+
2470
+ .modula-gallery .modula-item.effect-jazz .figc::after {
2471
+ position: absolute;
2472
+ top: 0;
2473
+ left: 0;
2474
+ width: 100%;
2475
+ height: 100%;
2476
+ border-top: 1px solid #fff;
2477
+ border-bottom: 1px solid #fff;
2478
+ content: '';
2479
+ opacity: 0;
2480
+ -webkit-transform: rotate3d(0,0,1,45deg) scale3d(1,0,1);
2481
+ transform: rotate3d(0,0,1,45deg) scale3d(1,0,1);
2482
+ -webkit-transform-origin: 50% 50%;
2483
+ transform-origin: 50% 50%;
2484
+ }
2485
+
2486
+ .modula-gallery .modula-item.effect-jazz .figc-inner {
2487
+ display: flex;
2488
+ align-items: center;
2489
+ justify-content: center;
2490
+ flex-direction: column;
2491
+ }
2492
+
2493
+ .modula-gallery .modula-item.effect-jazz .jtg-title,
2494
+ .modula-gallery .modula-item.effect-jazz p {
2495
+ opacity: 1;
2496
+ -webkit-transform: scale3d(0.8,0.8,1);
2497
+ transform: scale3d(0.8,0.8,1);
2498
+ }
2499
+
2500
+ .modula-gallery .modula-item.effect-jazz .jtg-title:before {
2501
+ display: none;
2502
+ }
2503
+
2504
+ .modula-gallery .modula-item.effect-jazz .jtg-title {
2505
+ -webkit-transition: -webkit-transform 0.35s;
2506
+ transition: transform 0.35s;
2507
+ }
2508
+
2509
+ .modula-gallery .modula-item.effect-jazz p {
2510
+ padding: 0.5em 2em;
2511
+ text-transform: none;
2512
+ font-size: 0.85em;
2513
+ opacity: 0;
2514
+ }
2515
+
2516
+ .modula-gallery .modula-item.effect-jazz:hover img {
2517
+ opacity: 0.7;
2518
+ -webkit-transform: scale3d(1.05,1.05,1);
2519
+ transform: scale3d(1.05,1.05,1);
2520
+ }
2521
+
2522
+ .modula-gallery .modula-item.effect-jazz:hover .figc::after {
2523
+ opacity: 1;
2524
+ -webkit-transform: rotate3d(0,0,1,45deg) scale3d(1,1,1);
2525
+ transform: rotate3d(0,0,1,45deg) scale3d(1,1,1);
2526
+ }
2527
+
2528
+ .modula-gallery .modula-item.effect-jazz:hover .jtg-title,
2529
+ .modula-gallery .modula-item.effect-jazz:hover p {
2530
+ opacity: 1;
2531
+ -webkit-transform: scale3d(1,1,1);
2532
+ transform: scale3d(1,1,1);
2533
+ }
2534
+
2535
+ /*---------------*/
2536
+ /***** Ming *****/
2537
+ /*---------------*/
2538
+
2539
+ .modula-gallery .modula-item.effect-ming {
2540
+ background: #030c17;
2541
+ }
2542
+
2543
+ .modula-gallery .modula-item.effect-ming img {
2544
+ opacity: 0.9;
2545
+ -webkit-transition: opacity 0.35s;
2546
+ transition: opacity 0.35s;
2547
+ }
2548
+
2549
+ .modula-gallery .modula-item.effect-ming .figc::before {
2550
+ position: absolute;
2551
+ top: 7.5%;
2552
+ right: 7.5%;
2553
+ bottom: 7.5%;
2554
+ left: 7.5%;
2555
+ border: 2px solid #fff;
2556
+ box-shadow: 0 0 0 30px rgba(255,255,255,0.2);
2557
+ content: '';
2558
+ opacity: 0;
2559
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2560
+ transition: opacity 0.35s, transform 0.35s;
2561
+ -webkit-transform: scale3d(1.4,1.4,1);
2562
+ transform: scale3d(1.4,1.4,1);
2563
+ }
2564
+
2565
+ html body .modula-gallery .modula-items .modula-item.effect-ming .figc {
2566
+ padding:9%;
2567
+ }
2568
+
2569
+ html body .modula-gallery .modula-items .modula-item.effect-ming .figc .figc-inner {
2570
+ padding:5%;
2571
+ }
2572
+
2573
+ .modula-gallery .modula-item.effect-ming .jtg-title {
2574
+ margin: 20% 0 10px 0;
2575
+ -webkit-transition: -webkit-transform 0.35s;
2576
+ transition: transform 0.35s;
2577
+ }
2578
+
2579
+ .modula-gallery .modula-item.effect-ming .jtg-title:before {
2580
+ display: none;
2581
+ }
2582
+
2583
+ .modula-gallery .modula-item.effect-ming .jtg-body {
2584
+ opacity: 0;
2585
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2586
+ transition: opacity 0.35s, transform 0.35s;
2587
+ -webkit-transform: scale(1.5);
2588
+ transform: scale(1.5);
2589
+ z-index:999;
2590
+ }
2591
+
2592
+ .modula-gallery .modula-item.effect-ming:hover .jtg-title {
2593
+ -webkit-transform: scale(0.9);
2594
+ transform: scale(0.9);
2595
+ }
2596
+
2597
+ .modula-gallery .modula-item.effect-ming:hover .figc::before,
2598
+ .modula-gallery .modula-item.effect-ming:hover .jtg-body {
2599
+ opacity: 1;
2600
+ -webkit-transform: scale3d(1,1,1);
2601
+ transform: scale3d(1,1,1);
2602
+ }
2603
+
2604
+ .modula-gallery .modula-item.effect-ming:hover .figc {
2605
+ background-color: rgba(58,52,42,0);
2606
+ }
2607
+
2608
+ .modula-gallery .modula-item.effect-ming:hover img {
2609
+ opacity: 0.4;
2610
+ }
2611
+
2612
+ html body .modula-gallery .modula-items .modula-item.effect-ming .jtg-body .jtg-social {
2613
+ margin-top:10px;
2614
+ }
2615
+
2616
+ html body .modula-gallery .modula-items .modula-item.effect-ming .jtg-body .jtg-social a {
2617
+ margin-right:10px;
2618
+ padding:5px;
2619
+ }
2620
+
2621
+ /*---------------*/
2622
+ /***** Lexi *****/
2623
+ /*---------------*/
2624
+
2625
+ .modula-gallery .modula-item.effect-lexi {
2626
+ background: -webkit-linear-gradient(-45deg, #000 0%,#fff 100%);
2627
+ background: linear-gradient(-45deg, #000 0%,#fff 100%);
2628
+ }
2629
+
2630
+ html body .modula-gallery .modula-items .modula-item.effect-lexi .figc {
2631
+ padding:5%;
2632
+ }
2633
+
2634
+ .modula-gallery .modula-item.effect-lexi .modula-item-content {
2635
+ height:100%;
2636
+ }
2637
+
2638
+ .modula-gallery .modula-item.effect-lexi img {
2639
+ margin: -10px 0 0 -10px;
2640
+ max-width: none;
2641
+ width: -webkit-calc(100% + 10px) !important;
2642
+ width: calc(100% + 10px) !important;
2643
+ opacity: 0.9;
2644
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2645
+ transition: opacity 0.35s, transform 0.35s;
2646
+ -webkit-transform: translate3d(10px,10px,0);
2647
+ transform: translate3d(-10px,-10px,0);
2648
+ -webkit-backface-visibility: hidden;
2649
+ backface-visibility: hidden;
2650
+ min-height:calc(100% + 60px) !important;
2651
+ min-width:calc(100% + 60px) !important;
2652
+ }
2653
+
2654
+ .modula-gallery.modula-columns .modula-items:not(.justified-gallery) .modula-item.effect-lexi img.pic{
2655
+ -webkit-transform: translate3d(-10px,0px,0);
2656
+ transform: translate3d(-10px,0px,0);
2657
+ }
2658
+
2659
+ .modula-gallery .modula-item.effect-lexi .figc::before,
2660
+ .modula-gallery .modula-item.effect-lexi p {
2661
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2662
+ transition: opacity 0.35s, transform 0.35s;
2663
+ }
2664
+
2665
+ .modula-gallery .modula-item.effect-lexi .figc::before {
2666
+ position: absolute;
2667
+ right: -100px;
2668
+ bottom: -100px;
2669
+ width: 300px;
2670
+ height: 300px;
2671
+ border: 2px solid #fff;
2672
+ border-radius: 50%;
2673
+ box-shadow: 0 0 0 900px rgba(255,255,255,0.2);
2674
+ content: '';
2675
+ opacity: 0;
2676
+ -webkit-transform: scale3d(0.5,0.5,1);
2677
+ transform: scale3d(0.5,0.5,1);
2678
+ -webkit-transform-origin: 50% 50%;
2679
+ transform-origin: 50% 50%;
2680
+ }
2681
+
2682
+ .modula-gallery .modula-item.effect-lexi:hover img,
2683
+ .modula-gallery.modula-columns .modula-items:not(.justified-gallery) .modula-item.effect-lexi:hover img.pic {
2684
+ opacity: 0.6;
2685
+ -webkit-transform: translate3d(0,0,0);
2686
+ transform: translate3d(0,0,0);
2687
+ }
2688
+
2689
+ html body .modula-gallery .modula-item.effect-lexi .jtg-title {
2690
+ text-align: left;
2691
+ -webkit-transition: -webkit-transform 0.35s;
2692
+ transition: transform 0.35s;
2693
+ -webkit-transform: translate3d(5px,5px,0);
2694
+ transform: translate3d(5px,5px,0);
2695
+ }
2696
+
2697
+ .modula-gallery .modula-item.effect-lexi .jtg-title:before {
2698
+ display:none;
2699
+ }
2700
+
2701
+ html body .modula-gallery .modula-items .modula-item.effect-lexi p {
2702
+ position: absolute;
2703
+ right: 0;
2704
+ bottom: 0;
2705
+ padding: 0 1.5em 1.5em 0;
2706
+ width: 140px;
2707
+ text-align: right;
2708
+ opacity: 0;
2709
+ -webkit-transform: translate3d(20px,20px,0);
2710
+ transform: translate3d(20px,20px,0);
2711
+ }
2712
+
2713
+ .modula-gallery .modula-item.effect-lexi:hover .figc::before {
2714
+ opacity: 1;
2715
+ -webkit-transform: scale3d(1,1,1);
2716
+ transform: scale3d(1,1,1);
2717
+ }
2718
+
2719
+ html body .modula-gallery .modula-item.effect-lexi:hover .jtg-title,
2720
+ html body .modula-gallery .modula-item.effect-lexi:hover p {
2721
+ opacity: 1;
2722
+ -webkit-transform: translate3d(0,0,0);
2723
+ transform: translate3d(0,0,0);
2724
+ }
2725
+
2726
+ /*---------------*/
2727
+ /***** Duke *****/
2728
+ /*---------------*/
2729
+
2730
+ .modula-gallery .modula-item.effect-duke {
2731
+ background: -webkit-linear-gradient(-45deg, #34495e 0%,#cc6055 100%);
2732
+ background: linear-gradient(-45deg, #34495e 0%,#cc6055 100%);
2733
+ }
2734
+
2735
+ html body .modula-gallery .modula-items .modula-item.effect-duke .figc {
2736
+ padding:5%;
2737
+ }
2738
+
2739
+ .modula-gallery .modula-item.effect-duke img,
2740
+ .modula-gallery .modula-item.effect-duke p {
2741
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
2742
+ transition: opacity 0.35s, transform 0.35s;
2743
+ }
2744
+
2745
+ .modula-gallery .modula-item.effect-duke:hover img {
2746
+ opacity: 0.1;
2747
+ -webkit-transform: scale3d(2,2,1);
2748
+ transform: scale3d(2,2,1);
2749
+ }
2750
+
2751
+ .modula-gallery .modula-item.effect-duke .jtg-title {
2752
+ -webkit-transition: -webkit-transform 0.35s;
2753
+ transition: transform 0.35s;
2754
+ -webkit-transform: scale3d(0.8,0.8,1);
2755
+ transform: scale3d(0.8,0.8,1);
2756
+ -webkit-transform-origin: 50% 100%;
2757
+ transform-origin: 50% 100%;
2758
+ }
2759
+
2760
+ .modula-gallery .modula-item.effect-duke .jtg-title:before {
2761
+ display: none;
2762
+ }
2763
+
2764
+ .modula-gallery .modula-items .modula-item.effect-duke p {
2765
+ position: absolute;
2766
+ bottom: 0;
2767
+ left: 0;
2768
+ margin: 20px;
2769
+ padding: 30px;
2770
+ border: 2px solid #fff;
2771
+ text-transform: none;
2772
+ font-size: 90%;
2773
+ opacity: 0;
2774
+ -webkit-transform: scale3d(0.8,0.8,1);
2775
+ transform: scale3d(0.8,0.8,1);
2776
+ -webkit-transform-origin: 50% -100%;
2777
+ transform-origin: 50% -100%;
2778
+ width:calc(100% - 40px) !important;
2779
+ }
2780
+
2781
+ .modula-gallery .modula-item.effect-duke:hover .jtg-title,
2782
+ .modula-gallery .modula-item.effect-duke:hover p {
2783
+ opacity: 1;
2784
+ -webkit-transform: scale3d(1,1,1);
2785
+ transform: scale3d(1,1,1);
2786
+ }
2787
+
2788
+ /**
2789
+ Tilt Hover Effects
2790
+ **/
2791
+
2792
+ .modula-gallery .modula-item.effect-tilt_1 > *,
2793
+ .modula-gallery .modula-item.effect-tilt_2 > *,
2794
+ .modula-gallery .modula-item.effect-tilt_3 > *,
2795
+ .modula-gallery .modula-item.effect-tilt_4 > *,
2796
+ .modula-gallery .modula-item.effect-tilt_5 > *,
2797
+ .modula-gallery .modula-item.effect-tilt_6 > *,
2798
+ .modula-gallery .modula-item.effect-tilt_7 > *,
2799
+ .modula-gallery .modula-item.effect-tilt_8 > *{
2800
+ transform: translateZ(0px); /* Force correct stacking order */
2801
+ }
2802
+
2803
+ .modula-gallery .modula-item.effect-tilt_1 .jtg-title:before,
2804
+ .modula-gallery .modula-item.effect-tilt_2 .jtg-title:before,
2805
+ .modula-gallery .modula-item.effect-tilt_3 .jtg-title:before,
2806
+ .modula-gallery .modula-item.effect-tilt_4 .jtg-title:before,
2807
+ .modula-gallery .modula-item.effect-tilt_5 .jtg-title:before,
2808
+ .modula-gallery .modula-item.effect-tilt_6 .jtg-title:before,
2809
+ .modula-gallery .modula-item.effect-tilt_7 .jtg-title:before,
2810
+ .modula-gallery .modula-item.effect-tilt_8 .jtg-title:before {
2811
+ display:none;
2812
+ }
2813
+
2814
+ .modula-gallery .modula-item.effect-tilt_1 .modula-item-content,
2815
+ .modula-gallery .modula-item.effect-tilt_2 .modula-item-content,
2816
+ .modula-gallery .modula-item.effect-tilt_3 .modula-item-content,
2817
+ .modula-gallery .modula-item.effect-tilt_4 .modula-item-content,
2818
+ .modula-gallery .modula-item.effect-tilt_5 .modula-item-content,
2819
+ .modula-gallery .modula-item.effect-tilt_6 .modula-item-content,
2820
+ .modula-gallery .modula-item.effect-tilt_7 .modula-item-content,
2821
+ .modula-gallery .modula-item.effect-tilt_8 .modula-item-content {
2822
+ height:100%;
2823
+ }
2824
+
2825
+ .modula-gallery .modula-item.effect-tilt_1 ,
2826
+ .modula-gallery .modula-item.effect-tilt_2 ,
2827
+ .modula-gallery .modula-item.effect-tilt_3 ,
2828
+ .modula-gallery .modula-item.effect-tilt_4 ,
2829
+ .modula-gallery .modula-item.effect-tilt_5 ,
2830
+ .modula-gallery .modula-item.effect-tilt_6 ,
2831
+ .modula-gallery .modula-item.effect-tilt_7 ,
2832
+ .modula-gallery .modula-item.effect-tilt_8 ,
2833
+ .modula-gallery .modula-item.effect-tilt_1 .figc,
2834
+ .modula-gallery .modula-item.effect-tilt_2 .figc,
2835
+ .modula-gallery .modula-item.effect-tilt_3 .figc,
2836
+ .modula-gallery .modula-item.effect-tilt_4 .figc,
2837
+ .modula-gallery .modula-item.effect-tilt_5 .figc,
2838
+ .modula-gallery .modula-item.effect-tilt_6 .figc,
2839
+ .modula-gallery .modula-item.effect-tilt_7 .figc,
2840
+ .modula-gallery .modula-item.effect-tilt_8 .figc,
2841
+ .modula-gallery .tilter__deco--lines,
2842
+ .modula-gallery .tilter__deco--shine div {
2843
+ transition: transform 0.2s ease-out;
2844
+ }
2845
+
2846
+ .modula-gallery .modula-item.effect-tilt_1::before,
2847
+ .modula-gallery .modula-item.effect-tilt_2::before ,
2848
+ .modula-gallery .modula-item.effect-tilt_3::before ,
2849
+ .modula-gallery .modula-item.effect-tilt_4::before ,
2850
+ .modula-gallery .modula-item.effect-tilt_5::before ,
2851
+ .modula-gallery .modula-item.effect-tilt_6::before ,
2852
+ .modula-gallery .modula-item.effect-tilt_7::before ,
2853
+ .modula-gallery .modula-item.effect-tilt_8::before {
2854
+ content: '';
2855
+ position: absolute;
2856
+ width: 90%;
2857
+ height: 90%;
2858
+ top: 5%;
2859
+ left: 5%;
2860
+ }
2861
+
2862
+ .modula-gallery .tilter__deco {
2863
+ position: absolute;
2864
+ top: 0;
2865
+ left: 0;
2866
+ width: 100%;
2867
+ height: 100%;
2868
+ overflow: hidden;
2869
+ }
2870
+
2871
+ .modula-gallery .tilter__deco--overlay {
2872
+ /*background-image: linear-gradient(45deg, rgba(226, 60, 99, 0.4), rgba(145, 58, 252, 0.4), rgba(16, 11, 192, 0.4));*/
2873
+ }
2874
+
2875
+ .modula-gallery .tilter__deco--shine div {
2876
+ position: absolute;
2877
+ width: 200%;
2878
+ height: 200%;
2879
+ top: -50%;
2880
+ left: -50%;
2881
+ /*background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);*/
2882
+ }
2883
+
2884
+ .modula-gallery .tilter__deco--lines {
2885
+ width: 90%;
2886
+ height: 90%;
2887
+ position: absolute;
2888
+ top:5%;
2889
+ left: 5%;
2890
+ border: 1.5px solid #fff;
2891
+ box-sizing: border-box;
2892
+ }
2893
+
2894
+ html body .modula-gallery .modula-items .modula-item.effect-tilt_1 .figc,
2895
+ html body .modula-gallery .modula-items .modula-item.effect-tilt_2 .figc ,
2896
+ html body .modula-gallery .modula-items .modula-item.effect-tilt_3 .figc ,
2897
+ html body .modula-gallery .modula-items .modula-item.effect-tilt_4 .figc ,
2898
+ html body .modula-gallery .modula-items .modula-item.effect-tilt_5 .figc ,
2899
+ html body .modula-gallery .modula-items .modula-item.effect-tilt_6 .figc ,
2900
+ html body .modula-gallery .modula-items .modula-item.effect-tilt_7 .figc ,
2901
+ html body .modula-gallery .modula-items .modula-item.effect-tilt_8 .figc {
2902
+ position: absolute;
2903
+ bottom: 0;
2904
+ width: 100%;
2905
+ padding: 10%;
2906
+ }
2907
+
2908
+
2909
+ /* Individual styles */
2910
+
2911
+ /* Example 1 */
2912
+ html body .modula-gallery .modula-item.effect-tilt_1 .figc {
2913
+ text-align: left;
2914
+ align-items: flex-end;
2915
+ justify-content: flex-start;
2916
+ }
2917
+
2918
+ html body .modula-gallery .modula-item.effect-tilt_1 .figc .jtg-social {
2919
+ position: relative;
2920
+ bottom: auto;
2921
+ right: auto;
2922
+ text-align: left;
2923
+ margin-top:10px;
2924
+ }
2925
+
2926
+ .modula-gallery .modula-item.effect-tilt_1 .figc .jtg-social a {
2927
+ opacity: 1;
2928
+ }
2929
+
2930
+ /* Example 3 (no lines, overlay hard-light) */
2931
+ html body .modula-gallery .modula-items.effect-tilt_3 .figc {
2932
+ padding: 15%;
2933
+ text-align: right;
2934
+ text-shadow: 0.1em 0.8em 1em rgba(0,0,0,0.35);
2935
+ }
2936
+ html body .modula-gallery .modula-item.effect-tilt_3 .figc {
2937
+ text-align: right;
2938
+ align-items: flex-end;
2939
+ justify-content: flex-end;
2940
+ }
2941
+ .modula-gallery .modula-item.effect-tilt_3 .figc .jtg-social {
2942
+ position: relative;
2943
+ bottom: auto;
2944
+ right: auto;
2945
+ margin-top:10px;
2946
+ }
2947
+ .modula-gallery .modula-item.effect-tilt_3 .figc .jtg-social a {
2948
+ opacity: 1;
2949
+ }
2950
+
2951
+ /* Example 7 (different line) */
2952
+ .modula-gallery .modula-item.effect-tilt_7 .tilter__deco--lines {
2953
+ border-width: 10px;
2954
+ transform: scale3d(0.9,0.9,1);
2955
+ opacity: 0;
2956
+ transition: transform 0.3s, opacity 0.3s;
2957
+ }
2958
+ .modula-gallery .modula-item.effect-tilt_7:hover .tilter__deco--lines {
2959
+ opacity: 1;
2960
+ transform: scale3d(1,1,1);
2961
+ }
2962
+ .modula-gallery .modula-item.effect-tilt_7 .tilter__figure::before {
2963
+ box-shadow: none;
2964
+ }
2965
+ html body .modula-gallery .modula-item.effect-tilt_7 .figc {
2966
+ text-align: left;
2967
+ align-items: flex-end;
2968
+ justify-content: flex-start;
2969
+ }
2970
+ html body .modula-gallery .modula-item.effect-tilt_7 .figc .jtg-social {
2971
+ position: relative;
2972
+ bottom: auto;
2973
+ right: auto;
2974
+ text-align: left;
2975
+ margin-top:10px;
2976
+ }
2977
+ .modula-gallery .modula-item.effect-tilt_7 .figc .jtg-social a {
2978
+ opacity: 1;
2979
+ }
2980
+
2981
+
2982
+ /*---------------*/
2983
+ /***** fluid-up *****/
2984
+ /*---------------*/
2985
+ .modula-gallery .modula-item.effect-fluid-up .modula-item-content {
2986
+ height:100%;
2987
+ }
2988
+
2989
+ html body .modula-gallery .modula-items .modula-item.effect-fluid-up .figc {
2990
+ top: auto;
2991
+ display: block;
2992
+ bottom: 0;
2993
+ padding: 5%;
2994
+ background: #fff;
2995
+ -webkit-transition: -webkit-transform 0.35s;
2996
+ transition: transform 0.35s;
2997
+ -webkit-transform: translate3d(0,100%,0);
2998
+ transform: translate3d(0,100%,0);
2999
+ height:auto !important;
3000
+ }
3001
+
3002
+ .modula-gallery .modula-items .modula-item.effect-fluid-up .jtg-title {
3003
+ float: left;
3004
+ color:#121212;
3005
+ }
3006
+
3007
+ html body .modula-gallery .modula-item.effect-fluid-up p.description {
3008
+ position: absolute;
3009
+ bottom: 6em;
3010
+ text-align: left;
3011
+ text-transform: none;
3012
+ opacity: 0;
3013
+ left:0;
3014
+ margin:0 1em;
3015
+ -webkit-transition: opacity 0.35s;
3016
+ transition: opacity 0.35s;
3017
+ -webkit-backface-visibility: hidden; /* Fix for Chrome 37.0.2062.120 (Mac) */
3018
+ }
3019
+
3020
+ .modula-gallery .modula-item.effect-fluid-up .jtg-title {
3021
+ -webkit-transition: -webkit-transform 0.35s;
3022
+ transition: transform 0.35s;
3023
+ -webkit-transform: translate3d(0,200%,0);
3024
+ transform: translate3d(0,200%,0);
3025
+ }
3026
+
3027
+ .modula-gallery .modula-item.effect-fluid-up .jtg-title {
3028
+ display: inline-block;
3029
+ }
3030
+
3031
+ .modula-gallery .modula-item.effect-fluid-up:hover p.description {
3032
+ opacity: 1;
3033
+ }
3034
+
3035
+ .modula-gallery .modula-item:not(.notitle).effect-fluid-up:hover .figc,
3036
+ .modula-gallery .modula-item:not(.notitle).effect-fluid-up:hover .jtg-title,
3037
+ .modula-gallery .modula-item:not(.notitle).effect-fluid-up:hover p.icon-links a {
3038
+ -webkit-transform: translate3d(0,0,0);
3039
+ transform: translate3d(0,0,0);
3040
+ }
3041
+
3042
+ .modula-gallery .modula-item.effect-fluid-up:hover .jtg-title {
3043
+ -webkit-transition-delay: 0.05s;
3044
+ transition-delay: 0.05s;
3045
+ }
3046
+
3047
+
3048
+ /*---------------*/
3049
+ /***** comodo *****/
3050
+ /*---------------*/
3051
+
3052
+ html body .modula-gallery .modula-items .effect-comodo .jtg-social {
3053
+ position: absolute;
3054
+ bottom: 20px;
3055
+ text-align: center;
3056
+ left: 0;
3057
+ right: 0;
3058
+ }
3059
+
3060
+ .modula-gallery .modula-items .effect-comodo .jtg-social a {
3061
+ display: inline-block;
3062
+ }
3063
+ .modula-gallery .modula-items .effect-comodo .jtg-social a:last-of-type {
3064
+ margin-right: 0;
3065
+ }
3066
+
3067
+ .modula-gallery .modula-items .modula-item.effect-comodo img {
3068
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
3069
+ transition: opacity 0.35s, transform 0.35s;
3070
+ -webkit-transform: scale(1.12);
3071
+ transform: scale(1.12);
3072
+ }
3073
+
3074
+ .modula-gallery .modula-items .modula-item.effect-comodo:hover img {
3075
+ -webkit-transform: scale(1);
3076
+ transform: scale(1);
3077
+ }
3078
+
3079
+ .modula-gallery .modula-items .modula-item.effect-comodo .figc {
3080
+ display: block;
3081
+ }
3082
+
3083
+ .modula-gallery .modula-items .modula-item.effect-comodo .jtg-title {
3084
+ margin-top: 20px;
3085
+ }
3086
+
3087
+ @media all and (max-width:480px) {
3088
+ html body .modula-gallery .modula-items .modula-item.effect-comodo .jtg-social a {
3089
+ margin-right:10px;
3090
+ padding:5px;
3091
+ }
3092
+ }
3093
+
3094
+ /* Individual effects */
3095
+ /*-----------------*/
3096
+ /***** catinelle *****/
3097
+ /*-----------------*/
3098
+ .modula-gallery .modula-items .effect-catinelle .figc {
3099
+ display: flex;
3100
+ align-items: center;
3101
+ justify-content: center;
3102
+ }
3103
+
3104
+ .modula-gallery .modula-items .effect-catinelle .jtg-social {
3105
+ width:60px;
3106
+ transform:scale(2);
3107
+ transition:all .3s;
3108
+ }
3109
+
3110
+ html body .modula .modula-items .effect-catinelle .jtg-social a {
3111
+ padding: 0;
3112
+ margin:0 10px 10px 0;
3113
+ font-size: 24px;
3114
+ }
3115
+ /*.modula-gallery .modula-items .effect-catinelle .jtg-social a:nth-child(2n) {
3116
+ margin-right: 0;
3117
+ }*/
3118
+ .modula-gallery .modula-items .effect-catinelle:hover .jtg-social {
3119
+ width:60px;
3120
+ transform:scale(1);
3121
+ }
3122
+
3123
+
3124
+
3125
+ /*-----------------*/
3126
+ /***** Winston *****/
3127
+ /*-----------------*/
3128
+
3129
+ html body .modula-gallery .modula-item.effect-winston {
3130
+ background: #162633;
3131
+ text-align: left;
3132
+ }
3133
+
3134
+ .modula-gallery .modula-item.effect-winston img {
3135
+ -webkit-transition: opacity 0.45s;
3136
+ transition: opacity 0.45s;
3137
+ -webkit-backface-visibility: hidden;
3138
+ backface-visibility: hidden;
3139
+ }
3140
+
3141
+ .modula-gallery .modula-item.effect-winston .figc::before {
3142
+ position: absolute;
3143
+ bottom: 0;
3144
+ left: 0;
3145
+ width: 1200%;
3146
+ height: 300%;
3147
+ background: url(../images/triangle.svg) no-repeat bottom center;
3148
+ background-size: cover;
3149
+ content: '';
3150
+ -webkit-transition: opacity 0.45s, -webkit-transform 0.45s;
3151
+ transition: opacity 0.45s, transform 0.45s;
3152
+ -webkit-transform: rotate3d(0,0,1,45deg);
3153
+ transform: rotate3d(0,0,1,45deg);
3154
+ -webkit-transform-origin: 0 100%;
3155
+ transform-origin: 0 100%;
3156
+ }
3157
+
3158
+ .modula-gallery .modula-item.effect-winston .jtg-title {
3159
+ -webkit-transition: -webkit-transform 0.35s;
3160
+ transition: transform 0.35s;
3161
+ -webkit-transform: translate3d(0,20px,0);
3162
+ transform: translate3d(0,20px,0);
3163
+ }
3164
+
3165
+ .modula-gallery .modula-item.effect-winston .jtg-title:before {
3166
+ display:none;
3167
+ }
3168
+
3169
+ .modula-gallery .modula-item.effect-winston .jtg-social {
3170
+ position: absolute;
3171
+ right: 7.25%;
3172
+ bottom: 7.25%;
3173
+ padding: 0 1.5em 2em 0;
3174
+ }
3175
+
3176
+ .modula-gallery .modula-item.effect-winston a {
3177
+ margin: 0 10px;
3178
+ }
3179
+
3180
+ .modula-gallery .modula-item.effect-winston .jtg-social a {
3181
+ opacity: 0;
3182
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
3183
+ transition: opacity 0.35s, transform 0.35s;
3184
+ -webkit-transform: translate3d(0,50px,0);
3185
+ transform: translate3d(0,50px,0);
3186
+ }
3187
+
3188
+ .modula-gallery .modula-item.effect-winston:hover img {
3189
+ opacity: 0.6;
3190
+ }
3191
+
3192
+ .modula-gallery .modula-item.effect-winston:hover .jtg-title {
3193
+ -webkit-transform: translate3d(0,0,0);
3194
+ transform: translate3d(0,0,0);
3195
+ }
3196
+
3197
+ .modula-gallery .modula-item.effect-winston:hover .figc::before {
3198
+ opacity: 0.7;
3199
+ -webkit-transform: rotate3d(0, 0, 1, 20deg);
3200
+ transform: rotate3d(0, 0, 1, 20deg);
3201
+ height: 300%;
3202
+ width: 1200%;
3203
+ }
3204
+
3205
+ .modula-gallery .modula-item.effect-winston:hover .jtg-social a {
3206
+ opacity: 1;
3207
+ -webkit-transform: translate3d(0,0,0);
3208
+ transform: translate3d(0,0,0);
3209
+ }
3210
+
3211
+ .modula-gallery .modula-item.effect-winston:hover .jtg-social a:nth-child(4) {
3212
+ -webkit-transition-delay: 0.05s;
3213
+ transition-delay: 0.05s;
3214
+ }
3215
+
3216
+ .modula-gallery .modula-item.effect-winston:hover .jtg-social a:nth-child(3) {
3217
+ -webkit-transition-delay: 0.1s;
3218
+ transition-delay: 0.1s;
3219
+ }
3220
+
3221
+ .modula-gallery .modula-item.effect-winston:hover .jtg-social a:nth-child(2) {
3222
+ -webkit-transition-delay: 0.15s;
3223
+ transition-delay: 0.15s;
3224
+ }
3225
+
3226
+ .modula-gallery .modula-item.effect-winston:hover .jtg-social a:first-child {
3227
+ -webkit-transition-delay: 0.2s;
3228
+ transition-delay: 0.2s;
3229
+ }
3230
+
3231
+ /*-----------------*/
3232
+ /***** Selena *****/
3233
+ /*-----------------*/
3234
+
3235
+ .modula-gallery .modula-item.effect-selena {
3236
+ background: #fff;
3237
+ }
3238
+
3239
+ html body .modula-gallery .modula-items .modula-item.effect-selena .figc {
3240
+ padding:10%;
3241
+ }
3242
+
3243
+ .modula-gallery .modula-item.effect-selena img {
3244
+ opacity: 0.95;
3245
+ -webkit-transition: -webkit-transform 0.35s;
3246
+ transition: transform 0.35s;
3247
+ -webkit-transform-origin: 50% 50%;
3248
+ transform-origin: 50% 50%;
3249
+ }
3250
+
3251
+ .modula-gallery .modula-item.effect-selena:hover img {
3252
+ -webkit-transform: scale3d(0.95,0.95,1);
3253
+ transform: scale3d(0.95,0.95,1);
3254
+ }
3255
+
3256
+ .modula-gallery .modula-item.effect-selena .jtg-title {
3257
+ -webkit-transition: -webkit-transform 0.35s;
3258
+ transition: transform 0.35s;
3259
+ -webkit-transform: translate3d(0,20px,0);
3260
+ transform: translate3d(0,20px,0);
3261
+ }
3262
+
3263
+ .modula-gallery .modula-item.effect-selena .jtg-title:before {
3264
+ display: none;
3265
+ }
3266
+
3267
+ .modula-gallery .modula-item.effect-selena p {
3268
+ opacity: 0;
3269
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
3270
+ transition: opacity 0.35s, transform 0.35s;
3271
+ -webkit-transform: perspective(1000px) rotate3d(1,0,0,90deg);
3272
+ transform: perspective(1000px) rotate3d(1,0,0,90deg);
3273
+ -webkit-transform-origin: 50% 0%;
3274
+ transform-origin: 50% 0%;
3275
+ }
3276
+
3277
+ .modula-gallery .modula-item.effect-selena:hover .jtg-title {
3278
+ -webkit-transform: translate3d(0,0,0);
3279
+ transform: translate3d(0,0,0);
3280
+ }
3281
+
3282
+ .modula-gallery .modula-item.effect-selena:hover p {
3283
+ opacity: 1;
3284
+ -webkit-transform: perspective(1000px) rotate3d(1,0,0,0);
3285
+ transform: perspective(1000px) rotate3d(1,0,0,0);
3286
+ }
3287
+
3288
+ /*-----------------*/
3289
+ /***** Phoebe *****/
3290
+ /*-----------------*/
3291
+
3292
+ .modula-gallery .modula-item.effect-phoebe {
3293
+ background: #675983;
3294
+ }
3295
+
3296
+ .modula-gallery .modula-item.effect-phoebe img {
3297
+ opacity: 0.85;
3298
+ -webkit-transition: opacity 0.35s;
3299
+ transition: opacity 0.35s;
3300
+ }
3301
+
3302
+ .modula-gallery .modula-item.effect-phoebe:hover img {
3303
+ opacity: 0.6;
3304
+ }
3305
+
3306
+ .modula-gallery .modula-item.effect-phoebe .figc::before {
3307
+ position: absolute;
3308
+ top: 0;
3309
+ left: 0;
3310
+ width: 100%;
3311
+ height: 100%;
3312
+ background: url(../../images/triangle2.svg) no-repeat center center;
3313
+ background-size: cover;
3314
+ content: '';
3315
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
3316
+ transition: opacity 0.35s, transform 0.35s;
3317
+ -webkit-transform: scale3d(5,2.5,1);
3318
+ transform: scale3d(5,2.5,1);
3319
+ -webkit-transform-origin: 50% 50%;
3320
+ transform-origin: 50% 50%;
3321
+ }
3322
+
3323
+ html body .modula-gallery .modula-items .modula-item.effect-phoebe .figc {
3324
+ padding:10%;
3325
+ }
3326
+
3327
+ .modula-gallery .modula-item.effect-phoebe:hover .figc::before {
3328
+ opacity: 0.6;
3329
+ -webkit-transform: scale3d(1,1,1);
3330
+ transform: scale3d(1,1,1);
3331
+ }
3332
+
3333
+ .modula-gallery .modula-items .modula-item.effect-phoebe .jtg-title {
3334
+ margin-top: 1em;
3335
+ -webkit-transition: transform 0.35s;
3336
+ transition: transform 0.35s;
3337
+ -webkit-transform: translate3d(0,40px,0);
3338
+ transform: translate3d(0,40px,0);
3339
+ }
3340
+
3341
+ .modula-gallery .modula-item.effect-phoebe .jtg-title:before {
3342
+ display: none;
3343
+ }
3344
+
3345
+ .modula-gallery .modula-item.effect-phoebe:hover .jtg-title {
3346
+ -webkit-transform: translate3d(0,0,0);
3347
+ transform: translate3d(0,0,0);
3348
+ }
3349
+
3350
+ html body .modula-gallery .modula-item.effect-phoebe .jtg-social {
3351
+ text-align: center;
3352
+ }
3353
+
3354
+ html body .modula-gallery .modula-items .modula-item.effect-phoebe .jtg-social a {
3355
+ color: #fff;
3356
+ opacity: 0;
3357
+ position: relative;
3358
+ display: inline-block;
3359
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
3360
+ transition: opacity 0.35s, transform 0.35s;
3361
+ padding:5px;
3362
+ margin-right:10px;
3363
+ }
3364
+
3365
+ .modula-gallery .modula-item.effect-phoebe .jtg-social a:first-child {
3366
+ -webkit-transform: translate3d(-60px,-60px,0);
3367
+ transform: translate3d(-60px,-60px,0);
3368
+ }
3369
+
3370
+ .modula-gallery .modula-item.effect-phoebe .jtg-social a:nth-child(2) {
3371
+ -webkit-transform: translate3d(0,60px,0);
3372
+ transform: translate3d(0,60px,0);
3373
+ }
3374
+
3375
+ .modula-gallery .modula-item.effect-phoebe .jtg-social a:nth-child(3) {
3376
+ -webkit-transform: translate3d(60px,-60px,0);
3377
+ transform: translate3d(60px,-60px,0);
3378
+ }
3379
+
3380
+ .modula-gallery .modula-item.effect-phoebe .jtg-social a:nth-child(4) {
3381
+ -webkit-transform: translate3d(0,60px,0);
3382
+ transform: translate3d(0,60px,0);
3383
+ }
3384
+ .modula-gallery .modula-item.effect-phoebe .jtg-social a:nth-child(5) {
3385
+ -webkit-transform: translate3d(60px,60px,0);
3386
+ transform: translate3d(60px,60px,0);
3387
+ }
3388
+
3389
+ .modula-gallery .modula-item.effect-phoebe .jtg-social a:nth-child(6) {
3390
+ -webkit-transform: translate3d(60px,-60px,0);
3391
+ transform: translate3d(60px,-60px,0);
3392
+ }
3393
+
3394
+ html body .modula-gallery .modula-items .modula-item.effect-phoebe:hover .jtg-social a {
3395
+ opacity: 1;
3396
+ -webkit-transform: translate3d(0,0,0);
3397
+ transform: translate3d(0,0,0);
3398
+ }
3399
+
3400
+ /*-----------------*/
3401
+ /***** reflex *****/
3402
+ /*-----------------*/
3403
+ .modula-gallery .modula-item.effect-reflex img {
3404
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
3405
+ transition: opacity 0.35s, transform 0.35s;
3406
+ -webkit-transform: scale3d(1.05,1.05,1);
3407
+ transform: scale3d(1.05,1.05,1);
3408
+ }
3409
+
3410
+ .modula-gallery .modula-item.effect-reflex .figc {
3411
+ display: block;
3412
+ }
3413
+ .modula-gallery .modula-item.effect-reflex .figc-inner {
3414
+ margin:5%;
3415
+ }
3416
+
3417
+ .modula-gallery .modula-item.effect-reflex .figc-inner .jtg-title,
3418
+ .modula-gallery .modula-item.effect-reflex .figc-inner p {
3419
+ border-left: 3px solid #fff;
3420
+ padding-left: 2.5%;
3421
+ }
3422
+ html body .modula-gallery .modula-item.effect-reflex .figc-inner p {
3423
+ text-align: left;
3424
+ margin-top:0px;
3425
+ opacity: 0;
3426
+ transition: opacity .3s;
3427
+ }
3428
+ .modula-gallery .modula-item.effect-reflex:hover .figc-inner p {
3429
+ opacity: 1
3430
+ }
3431
+
3432
+ html body .modula-gallery .modula-item.effect-reflex .jtg-title {
3433
+ text-align: left;
3434
+ }
3435
+
3436
+ .modula-gallery .modula-item.effect-reflex .jtg-social {
3437
+ position: absolute;
3438
+ bottom: 5%;
3439
+ right: 5%;
3440
+ }
3441
+
3442
+ @media all and (max-width: 480px) {
3443
+ html body .modula-gallery .modula-item.effect-reflex .jtg-social {
3444
+ right: 0;
3445
+ left:0;
3446
+ text-align:center;
3447
+ }
3448
+
3449
+ html body .modula-gallery .modula-items .modula-item.effect-reflex .jtg-social a {
3450
+ padding: 5px;
3451
+ margin-right:10px;
3452
+ }
3453
+ }
3454
+
3455
+ .modula-gallery .modula-item.effect-reflex:hover img {
3456
+ -webkit-transform: scale3d(1,1,1);
3457
+ transform: scale3d(1,1,1);
3458
+ }
3459
+
3460
+
3461
+
3462
+ /*-----------------*/
3463
+ /***** curtain *****/
3464
+ /*-----------------*/
3465
+
3466
+ html body .modula-gallery .modula-items .effect-curtain .jtg-social {
3467
+ position: relative;
3468
+ text-align: left;
3469
+ bottom: auto;
3470
+ right: auto;
3471
+ background: rgba( 255,255,255,.6 );
3472
+ padding: 2.5% 2.5% 2%;
3473
+ overflow: hidden;
3474
+ transform:scaleY(0);
3475
+ transform-origin:top;
3476
+ }
3477
+
3478
+ @media all and (max-width: 480px) {
3479
+ html body .modula-gallery .modula-items .effect-curtain .jtg-social {
3480
+ text-align: center;
3481
+ }
3482
+
3483
+ html body .modula-gallery .modula-items .effect-curtain .jtg-social a {
3484
+ margin-right:10px;
3485
+ padding:5px;
3486
+ }
3487
+ }
3488
+
3489
+ .modula-gallery .modula-items .effect-curtain:hover .jtg-social {
3490
+ transform:scaleY(1);
3491
+ }
3492
+
3493
+ html body .modula-gallery .modula-items .effect-curtain .jtg-title {
3494
+ text-align: left;
3495
+ padding: 0 0 2.5%;
3496
+ border-bottom: 2px solid rgba( 255,255,255,.6 );
3497
+ }
3498
+
3499
+ html body .modula-gallery .modula-items .modula-item.effect-curtain .figc {
3500
+ text-align: left;
3501
+ display: block;
3502
+ }
3503
+
3504
+ .modula-gallery .modula-items .modula-item.effect-curtain .figc-inner {
3505
+ position: relative;
3506
+ width: 100%;
3507
+ height: 100%;
3508
+ padding: 10%;
3509
+ box-sizing: border-box;
3510
+ }
3511
+
3512
+ /*.modula-gallery .modula-item.effect-curtain .figc::before {
3513
+ position: absolute;
3514
+ top: 0;
3515
+ right: 35px;
3516
+ left: 35px;
3517
+ height: 60px;
3518
+ background: #fff;
3519
+ content: '';
3520
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
3521
+ transition: opacity 0.35s, transform 0.35s;
3522
+ -webkit-transform: translate3d(0,70px,0) scale3d(1,0.023,1) ;
3523
+ transform: translate3d(0,70px,0) scale3d(1,0.023,1);
3524
+ -webkit-transform-origin: 50% 0;
3525
+ transform-origin: 50% 0;
3526
+ }*/
3527
+
3528
+ .modula-gallery .modula-item.effect-curtain:hover p {
3529
+ opacity: 1;
3530
+ -webkit-transform: translate3d(0,0,0);
3531
+ transform: translate3d(0,0,0);
3532
+ }
3533
+
3534
+ /*.modula-gallery .modula-item.effect-curtain:hover .figc::before {
3535
+ opacity: 0.7;
3536
+ -webkit-transform: translate3d(0,5em,0) scale3d(1,1,1) ;
3537
+ transform: translate3d(0,5em,0) scale3d(1,1,1);
3538
+ }*/
3539
+
3540
+
3541
+ /*---------------*/
3542
+ /***** lens *****/
3543
+ /*---------------*/
3544
+ .modula-gallery .modula-item .figc {
3545
+ display: flex;
3546
+ align-items: center;
3547
+ justify-content: center;
3548
+ }
3549
+
3550
+ .modula-gallery .modula-item.effect-lens img,
3551
+ .modula-gallery .modula-item.effect-lens p {
3552
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
3553
+ transition: opacity 0.35s, transform 0.35s;
3554
+ }
3555
+
3556
+ .modula-gallery .modula-item.effect-lens:hover img {
3557
+ -webkit-transform: scale3d(2,2,1);
3558
+ transform: scale3d(2,2,1);
3559
+ }
3560
+
3561
+ .modula-gallery .modula-item.effect-lens .jtg-title {
3562
+ -webkit-transition: -webkit-transform 0.35s;
3563
+ transition: transform 0.35s;
3564
+ -webkit-transform: scale3d(0.8,0.8,1);
3565
+ transform: scale3d(0.8,0.8,1);
3566
+ -webkit-transform-origin: 50% 100%;
3567
+ transform-origin: 50% 100%;
3568
+ }
3569
+
3570
+ html body .modula-gallery .modula-item.effect-lens .jtg-social {
3571
+ position: absolute;
3572
+ bottom: 5%;
3573
+ left: 0;
3574
+ right: 0;
3575
+ text-align: center;
3576
+ }
3577
+
3578
+ @media all and (max-width:480px) {
3579
+ html body .modula-gallery .modula-item.effect-lens .jtg-social a {
3580
+ padding:5px;
3581
+ margin-right:10px;
3582
+ }
3583
+ }
3584
+
3585
+ html body .modula-gallery .modula-item.effect-lens p {
3586
+ text-align: center;
3587
+ opacity: 0;
3588
+ -webkit-transform: scale3d(0.8,0.8,1);
3589
+ transform: scale3d(0.8,0.8,1);
3590
+ -webkit-transform-origin: 50% -100%;
3591
+ transform-origin: 50% -100%;
3592
+ margin-top: 10px;
3593
+ }
3594
+
3595
+ .modula-gallery .modula-item.effect-lens:hover .jtg-title,
3596
+ .modula-gallery .modula-item.effect-lens:hover p {
3597
+ opacity: 1;
3598
+ -webkit-transform: scale3d(1,1,1);
3599
+ transform: scale3d(1,1,1);
3600
+ }
3601
+ }
3602
+
3603
+ /**
3604
+ Effect Black White
3605
+ */
3606
+
3607
+ html body .modula-gallery .modula-item.effect-greyscale img.pic {
3608
+ -webkit-filter : grayscale(1);
3609
+ filter : grayscale(1);
3610
+ transition:300ms ease-in;
3611
+ }
3612
+
3613
+ html body .modula-gallery .modula-item.effect-greyscale:hover img.pic {
3614
+ -webkit-filter : grayscale(0);
3615
+ filter : none;
3616
+ }
3617
+
3618
+ html body .modula-gallery .modula-item.effect-greyscale:hover .jtg-title,
3619
+ html body .modula-gallery .modula-item.effect-greyscale:hover p.description {
3620
+ display:none;
3621
+ }
3622
+
3623
+ html body .modula-gallery .modula-item.effect-greyscale .modula-item-overlay {
3624
+ display:none;
3625
+ }
3626
+
3627
+ #modula-hover-effect.modula-tab-content .modula-gallery .modula-item.effect-greyscale .jtg-social {
3628
+
3629
+ right: 30px;
3630
+ position: absolute;
3631
+ bottom: 20px;
3632
+ text-align: right;
3633
+ transition: all .3s;
3634
+ }
3635
+
3636
+
3637
+ /****
3638
+ Filter Styles
3639
+ */
3640
+ html body .modula >.filters {
3641
+ margin: 20px 0 20px 0;
3642
+ }
3643
+
3644
+ html body .modula > .filters.vertical-filters {
3645
+ margin-top: 0;
3646
+ width: 20%;
3647
+ float: left;
3648
+ }
3649
+
3650
+
3651
+ html body .modula > .filters ul.modula_menu__list a.modula_menu__link,
3652
+ html body .modula-pro-live-preview ul.modula_menu__list a.modula_menu__link{
3653
+ text-decoration: none;
3654
+ display: inline-block;
3655
+ margin:0;
3656
+ color: #333;
3657
+ outline: none;
3658
+ transition: 350ms ease-in;
3659
+ }
3660
+
3661
+ html body .modula > .filters.menu--default a {
3662
+ border-bottom: 2px solid transparent;
3663
+ }
3664
+
3665
+ html body .modula > .filters.colored a {
3666
+ border: 0;
3667
+ color: #fff;
3668
+ }
3669
+
3670
+ html body .modula > .filters:not(.styled-menu) a:hover,
3671
+ html body .modula > .filters:not(.styled-menu) a.selected {
3672
+ border-bottom-color: #333;
3673
+ border-bottom: 1px solid;
3674
+ }
3675
+
3676
+ /*html body .modula .modula-item {
3677
+ width: 100%;
3678
+ }*/
3679
+ html body .modula.vertical-filters .modula-items {
3680
+ width: 80%;
3681
+ float: left;
3682
+ }
3683
+
3684
+ html body .modula:after {
3685
+ content: "";
3686
+ display: block;
3687
+ clear: both;
3688
+ }
3689
+
3690
+ html body .modula.vertical-filters .filters {
3691
+ width: 20%;
3692
+ float: left;
3693
+ }
3694
+
3695
+ html body .modula > .filters ul.modula_menu__list {
3696
+ display:inline-block;
3697
+ }
3698
+
3699
+ html body .modula > .filters.vertical-filters.both-vertical + .modula-items {
3700
+ width: 60%;
3701
+ float: left;
3702
+ }
3703
+
3704
+ html body .modula > .filters.vertical-filters a {
3705
+ display: block;
3706
+ margin-bottom: 15px;
3707
+ }
3708
+
3709
+ html body .modula > .filters.vertical-filters.colored a {
3710
+ border-radius: 5px;
3711
+ text-align: center;
3712
+ background: #fff;
3713
+ border: 1px solid #3498db;
3714
+ color: #3498db;
3715
+ }
3716
+
3717
+ html body .modula > .filters.vertical-filters.colored a:hover,
3718
+ html body .modula > .filters.vertical-filters.colored a.selected {
3719
+ background: #fff;
3720
+ color: #8e44ad;
3721
+ border-color: #8e44ad;
3722
+ }
3723
+
3724
+ html body .modula > .filters.horizontal-filters.colored a {
3725
+ display: inline-block;
3726
+ padding: 0 30px;
3727
+ margin-right: 2px;
3728
+ background: #3498db;
3729
+ position: relative;
3730
+ border: 0px;
3731
+ }
3732
+
3733
+ html body .modula > .filters.horizontal-filters.colored a:hover,
3734
+ html body .modula > .filters.horizontal-filters.colored a.selected {
3735
+ background: #8e44ad;
3736
+ }
3737
+
3738
+ html body .modula > .filters.horizontal-filters.colored a:before {
3739
+ position: absolute;
3740
+ content: '';
3741
+ left: 0;
3742
+ top: 0;
3743
+ width: 0;
3744
+ height: 0;
3745
+ border: none;
3746
+ border-bottom-color: currentcolor;
3747
+ border-bottom-style: none;
3748
+ border-bottom-width: medium;
3749
+ border-left-color: currentcolor;
3750
+ border-left-style: none;
3751
+ border-left-width: medium;
3752
+ border-left: solid 17px white;
3753
+ border-bottom: solid 41px transparent;
3754
+ z-index: 1;
3755
+ transition: .4s;
3756
+ }
3757
+
3758
+ html body .modula > .filters.horizontal-filters.colored a:after {
3759
+ position: absolute;
3760
+ content: '';
3761
+ right: 0;
3762
+ top: 0;
3763
+ width: 0;
3764
+ height: 0;
3765
+ border: none;
3766
+ border-bottom-color: currentcolor;
3767
+ border-bottom-style: none;
3768
+ border-bottom-width: medium;
3769
+ border-left-color: currentcolor;
3770
+ border-left-style: none;
3771
+ border-left-width: medium;
3772
+ border-left: solid 17px transparent;
3773
+ border-bottom: solid 41px white;
3774
+ z-index: 1;
3775
+ transition: .4s;
3776
+ }
3777
+
3778
+ html body .filter-by-wrapper {
3779
+ text-align: center;
3780
+ margin-bottom: 25px;
3781
+ text-transform: uppercase;
3782
+ }
3783
+
3784
+ html body .filter-by-wrapper span {
3785
+ cursor: pointer;
3786
+ }
3787
+
3788
+ html body .filter-by-wrapper span:after {
3789
+ content: "";
3790
+ margin-left: 15px;
3791
+ width: 0;
3792
+ height: 0;
3793
+ border-style: solid;
3794
+ border-width: 15px 10px 0 10px;
3795
+ border-color: #0470e3 transparent transparent transparent;
3796
+ display: inline-block;
3797
+ }
3798
+
3799
+ html body .filter-by-wrapper.opened span:after {
3800
+ content: "";
3801
+ width: 0;
3802
+ height: 0;
3803
+ border-style: solid;
3804
+ border-width: 0 10px 15px 10px;
3805
+ border-color: transparent transparent #d500ff transparent;
3806
+ display: inline-block;
3807
+ }
3808
+
3809
+ html body .modula > .filters.vertical-filters a {
3810
+ margin-bottom: 0;
3811
+ }
3812
+
3813
+ html body .modula > .filters .modula_menu__list li.modula_menu__item {
3814
+ margin: 15px;
3815
+ }
3816
+
3817
+ @media all and (min-width: 1025px) {
3818
+ html body .filter-by-wrapper {
3819
+ display: none !important;
3820
+ }
3821
+
3822
+ html body .modula > .filters {
3823
+ display: block !important;
3824
+ }
3825
+ }
3826
+
3827
+ @media all and (max-width: 1024px) {
3828
+
3829
+ html body .modula.vertical-filters .filters,
3830
+ html body .modula.vertical-filters .modula-items,
3831
+ html body .modula > .filters.vertical-filters.both-vertical + .modula-items {
3832
+ width: 100% !important;
3833
+ float: none;
3834
+ }
3835
+
3836
+ html body .modula > .filters .modula_menu__list {
3837
+ padding: 0px;
3838
+ }
3839
+
3840
+ html body .modula > .filters .modula_menu__list li.modula_menu__item {
3841
+ margin: 0;
3842
+ }
3843
+
3844
+ }
3845
+
3846
+ html body .modula > .filters {
3847
+ margin: 0;
3848
+ box-sizing: border-box;
3849
+ }
3850
+ .modula-gallery.horizontal-filters .filters {
3851
+ margin-bottom: 20px;
3852
+ }
3853
+ .modula-gallery.horizontal-filters .modula-items + .filters {
3854
+ margin-top: 20px;
3855
+ margin-bottom: 0;
3856
+ }
3857
+ .modula-gallery.vertical-filters .filters {
3858
+ padding-right: 20px;
3859
+ }
3860
+ .modula-gallery.vertical-filters .modula-items + .filters {
3861
+ padding-left: 20px;
3862
+ padding-right: 0;
3863
+ }
3864
+
3865
+ /* Default */
3866
+ html body .modula > .filters.menu--default a {
3867
+ text-decoration: none;
3868
+ display: inline-block;
3869
+ margin:0 10px 0 0;
3870
+ color: #333;
3871
+ outline:none;
3872
+ transition:350ms ease-in;
3873
+ }
3874
+
3875
+ html body .modula > .filters.menu--default a:hover,
3876
+ html body .modula > .filters.menu--default .modula_menu__item--current a {
3877
+ border-bottom-color: #333;
3878
+ border-bottom:1px solid;
3879
+ }
3880
+
3881
+ html body .modula > .filters .modula_menu__item {
3882
+ display:inline-block;
3883
+ }
3884
+ html body .modula > .filters.vertical-filters .modula_menu__item {
3885
+ display: block;
3886
+ }
3887
+
3888
+ html body .modula > .filters .modula_menu__link {
3889
+ text-decoration:none;
3890
+ outline:none;
3891
+ color:#000000;
3892
+ padding: 10px;
3893
+ -webkit-user-select: none;
3894
+ -moz-user-select: none;
3895
+ -ms-user-select: none;
3896
+ user-select: none;
3897
+ -webkit-touch-callout: none;
3898
+ -khtml-user-select: none;
3899
+ display: inline-block;
3900
+ line-height: 1;
3901
+ }
3902
+ html body .modula > .filters.menu--default .modula_menu__list li.modula_menu__item .modula_menu__link {
3903
+ padding: 0;
3904
+ }
3905
+
3906
+ html body .modula > .filters .modula_menu__link:hover,
3907
+ html body .modula > .filters .modula_menu__link:focus {
3908
+ outline: none;
3909
+ color:#ff0000;
3910
+ }
3911
+
3912
+ html body .modula > .filters .modula_menu__list {
3913
+ margin: 0 0 5px 0;
3914
+ padding-left: 0;
3915
+ }
3916
+
3917
+ html body .modula > .filters .modula_menu__list li.modula_menu__item {
3918
+ margin: 0 10px 0 0;
3919
+ }
3920
+
3921
+ /* Individual styles */
3922
+
3923
+ /* Alonso */
3924
+ html body .modula > .filters.menu--alonso .modula_menu__item {
3925
+ margin: 0;
3926
+ }
3927
+
3928
+ html body .modula > .filters.menu--alonso .modula_menu__link {
3929
+ width: 120px;
3930
+ height: 3em;
3931
+ text-align: center;
3932
+ color: #b5b5b5;
3933
+ -webkit-transition: color 0.3s;
3934
+ transition: color 0.3s;
3935
+ }
3936
+
3937
+ html body .modula > .filters.menu--alonso .modula_menu__link:hover,
3938
+ html body .modula > .filters.menu--alonso .modula_menu__link:focus {
3939
+ color: #929292;
3940
+ }
3941
+
3942
+ html body .modula > .filters.menu--alonso .modula_menu__item--current .modula_menu__link {
3943
+ color: #d94f5c;
3944
+ -webkit-transition: color 0.5s;
3945
+ transition: color 0.5s;
3946
+ }
3947
+
3948
+ html body .modula > .filters.menu--alonso .modula_menu__line {
3949
+ position: absolute;
3950
+ top: 100%;
3951
+ left: 0;
3952
+ width: 120px;
3953
+ height: 2px;
3954
+ pointer-events: none;
3955
+ border: 1px solid #fff;
3956
+ border-width: 0 45px;
3957
+ background: #d94f5c;
3958
+ -webkit-transition: -webkit-transform 0.5s;
3959
+ transition: transform 0.5s;
3960
+ -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1);
3961
+ -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
3962
+ transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
3963
+ }
3964
+
3965
+ html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(1).modula_menu__item--current ~ .modula_menu__line {
3966
+ -webkit-transform: translate3d(0, 0, 0);
3967
+ transform: translate3d(0, 0, 0);
3968
+ }
3969
+
3970
+ html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(2).modula_menu__item--current ~ .modula_menu__line {
3971
+ -webkit-transform: translate3d(100%, 0, 0);
3972
+ transform: translate3d(100%, 0, 0);
3973
+ }
3974
+
3975
+ html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(3).modula_menu__item--current ~ .modula_menu__line {
3976
+ -webkit-transform: translate3d(200%, 0, 0);
3977
+ transform: translate3d(200%, 0, 0);
3978
+ }
3979
+
3980
+ html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(4).modula_menu__item--current ~ .modula_menu__line {
3981
+ -webkit-transform: translate3d(300%, 0, 0);
3982
+ transform: translate3d(300%, 0, 0);
3983
+ }
3984
+
3985
+ html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(5).modula_menu__item--current ~ .modula_menu__line {
3986
+ -webkit-transform: translate3d(400%, 0, 0);
3987
+ transform: translate3d(400%, 0, 0);
3988
+ }
3989
+
3990
+ @media screen and (max-width:55em) {
3991
+ html body .modula > .filters.menu--alonso .modula_menu__line {
3992
+ top: 3em;
3993
+ }
3994
+
3995
+ html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(1).modula_menu__item--current ~ .modula_menu__line {
3996
+ -webkit-transform: translate3d(0, 0, 0);
3997
+ transform: translate3d(0, 0, 0);
3998
+ }
3999
+
4000
+ html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(2).modula_menu__item--current ~ .modula_menu__line {
4001
+ -webkit-transform: translate3d(0, 3em, 0);
4002
+ transform: translate3d(0, 3em, 0);
4003
+ }
4004
+
4005
+ html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(3).modula_menu__item--current ~ .modula_menu__line {
4006
+ -webkit-transform: translate3d(0, 6em, 0);
4007
+ transform: translate3d(0, 6em, 0);
4008
+ }
4009
+
4010
+ html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(4).modula_menu__item--current ~ .modula_menu__line {
4011
+ -webkit-transform: translate3d(0, 9em, 0);
4012
+ transform: translate3d(0, 9em, 0);
4013
+ }
4014
+
4015
+ html body .modula > .filters.menu--alonso .modula_menu__item:nth-child(5).modula_menu__item--current ~ .modula_menu__line {
4016
+ -webkit-transform: translate3d(0, 12em, 0);
4017
+ transform: translate3d(0, 12em, 0);
4018
+ }
4019
+ }
4020
+
4021
+ /* Sebastian */
4022
+ html body .modula > .filters.menu--sebastian .modula_menu__link {
4023
+ position: relative;
4024
+ display: block;
4025
+ margin: 0 1em;
4026
+ text-align: center;
4027
+ color: #929292;
4028
+ -webkit-transition: color 0.4s;
4029
+ transition: color 0.4s;
4030
+ }
4031
+
4032
+ html body .modula > .filters.menu--sebastian .modula_menu__item--current .modula_menu__link {
4033
+ color: #d94f5c;
4034
+ }
4035
+
4036
+ html body .modula > .filters.menu--sebastian .modula_menu__link::before,
4037
+ html body .modula > .filters.menu--sebastian .modula_menu__link::after {
4038
+ content: '';
4039
+ position: absolute;
4040
+ left: 0;
4041
+ width: 100%;
4042
+ height: 2px;
4043
+ background: #d94f5c;
4044
+ -webkit-transform: scale3d(0, 1, 1);
4045
+ transform: scale3d(0, 1, 1);
4046
+ -webkit-transition: -webkit-transform 0.2s;
4047
+ transition: transform 0.2s;
4048
+ }
4049
+
4050
+ html body .modula > .filters.menu--sebastian .modula_menu__link::before {
4051
+ top: 0;
4052
+ -webkit-transform-origin: 0 50%;
4053
+ transform-origin: 0 50%;
4054
+ }
4055
+
4056
+ html body .modula > .filters.menu--sebastian .modula_menu__link::after {
4057
+ bottom: 0;
4058
+ -webkit-transform-origin: 100% 50%;
4059
+ transform-origin: 100% 50%;
4060
+ }
4061
+
4062
+ html body .modula > .filters.menu--sebastian .modula_menu__item--current .modula_menu__link::before,
4063
+ html body .modula > .filters.menu--sebastian .modula_menu__item--current .modula_menu__link::after {
4064
+ -webkit-transform: scale3d(1, 1, 1);
4065
+ transform: scale3d(1, 1, 1);
4066
+ -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
4067
+ transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
4068
+ -webkit-transition-duration: 0.4s;
4069
+ transition-duration: 0.4s;
4070
+ }
4071
+
4072
+ /* Prospero */
4073
+ html body .modula > .filters.menu--prospero .modula_menu__link {
4074
+ position: relative;
4075
+ display: block;
4076
+ margin: 0 1.5em;
4077
+ padding: 0.75em 0;
4078
+ text-align: center;
4079
+ color: #b5b5b5;
4080
+ -webkit-transition: color 0.3s;
4081
+ transition: color 0.3s;
4082
+ }
4083
+
4084
+ html body .modula > .filters.menu--prospero .modula_menu__link:hover,
4085
+ html body .modula > .filters.menu--prospero .modula_menu__link:focus {
4086
+ color: #929292;
4087
+ }
4088
+
4089
+ html body .modula > .filters.menu--prospero .modula_menu__item--current .modula_menu__link {
4090
+ color: #d94f5c;
4091
+ }
4092
+
4093
+ html body .modula > .filters.menu--prospero .modula_menu__link::before {
4094
+ content: '';
4095
+ position: absolute;
4096
+ bottom: 0;
4097
+ left: 0;
4098
+ width: 100%;
4099
+ height: 4px;
4100
+ background: #d94f5c;
4101
+ -webkit-transform: scale3d(0, 1, 1);
4102
+ transform: scale3d(0, 1, 1);
4103
+ -webkit-transition: -webkit-transform 0.1s;
4104
+ transition: transform 0.1s;
4105
+ }
4106
+
4107
+ html body .modula > .filters.menu--prospero .modula_menu__item--current .modula_menu__link::before {
4108
+ -webkit-transform: scale3d(1, 1, 1);
4109
+ transform: scale3d(1, 1, 1);
4110
+ -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
4111
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
4112
+ -webkit-transition-duration: 0.3s;
4113
+ transition-duration: 0.3s;
4114
+ }
4115
+
4116
+ /* Viola */
4117
+ html body .modula > .filters.menu--viola .modula_menu__item {
4118
+ position: relative;
4119
+ margin: 0 1em;
4120
+ }
4121
+
4122
+ html body .modula > .filters.menu--viola .modula_menu__link {
4123
+ position: relative;
4124
+ display: block;
4125
+ text-align: center;
4126
+ color: #929292;
4127
+ -webkit-transition: color 0.4s;
4128
+ transition: color 0.4s;
4129
+ width:auto;
4130
+ }
4131
+
4132
+
4133
+ html body .modula > .filters.menu--viola .modula_menu__item--current .modula_menu__link {
4134
+ color: #d94f5c;
4135
+ }
4136
+
4137
+ html body .modula > .filters.menu--viola .modula_menu__item::before,
4138
+ html body .modula > .filters.menu--viola .modula_menu__item::after,
4139
+ html body .modula > .filters.menu--viola .modula_menu__link::before,
4140
+ html body .modula > .filters.menu--viola .modula_menu__link::after {
4141
+ content: '';
4142
+ position: absolute;
4143
+ background: #d94f5c;
4144
+ -webkit-transition: -webkit-transform 0.2s;
4145
+ transition: transform 0.2s;
4146
+ }
4147
+
4148
+ html body .modula > .filters.menu--viola .modula_menu__item::before,
4149
+ html body .modula > .filters.menu--viola .modula_menu__item::after {
4150
+ top: 0;
4151
+ width: 2px;
4152
+ height: 100%;
4153
+ -webkit-transform: scale3d(1, 0, 1);
4154
+ transform: scale3d(1, 0, 1);
4155
+ }
4156
+
4157
+ html body .modula > .filters.menu--viola .modula_menu__item::before {
4158
+ left: 0;
4159
+ -webkit-transform-origin: 50% 100%;
4160
+ transform-origin: 50% 100%;
4161
+ }
4162
+
4163
+ html body .modula > .filters.menu--viola .modula_menu__item::after {
4164
+ right: 0;
4165
+ -webkit-transform-origin: 50% 0%;
4166
+ transform-origin: 50% 0%;
4167
+ }
4168
+
4169
+ html body .modula > .filters.menu--viola .modula_menu__link::before,
4170
+ html body .modula > .filters.menu--viola .modula_menu__link::after {
4171
+ left: 0;
4172
+ width: 100%;
4173
+ height: 2px;
4174
+ -webkit-transform: scale3d(0, 1, 1);
4175
+ transform: scale3d(0, 1, 1);
4176
+ }
4177
+
4178
+ html body .modula > .filters.menu--viola .modula_menu__link::before {
4179
+ top: 0;
4180
+ -webkit-transform-origin: 0 50%;
4181
+ transform-origin: 0 50%;
4182
+ }
4183
+
4184
+ html body .modula > .filters.menu--viola .modula_menu__link::after {
4185
+ bottom: 0;
4186
+ -webkit-transform-origin: 100% 50%;
4187
+ transform-origin: 100% 50%;
4188
+ }
4189
+
4190
+ html body .modula > .filters.menu--viola .modula_menu__item--current::before,
4191
+ html body .modula > .filters.menu--viola .modula_menu__item--current::after,
4192
+ html body .modula > .filters.menu--viola .modula_menu__item--current .modula_menu__link::before,
4193
+ html body .modula > .filters.menu--viola .modula_menu__item--current .modula_menu__link::after {
4194
+ -webkit-transform: scale3d(1, 1, 1);
4195
+ transform: scale3d(1, 1, 1);
4196
+ -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
4197
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
4198
+ -webkit-transition-duration: 0.4s;
4199
+ transition-duration: 0.4s;
4200
+ }
4201
+
4202
+ /* Antonio */
4203
+ html body .modula > .filters.menu--antonio .modula_menu__item {
4204
+ position: relative;
4205
+ }
4206
+
4207
+ html body .modula > .filters.menu--antonio .modula_menu__link {
4208
+ position: relative;
4209
+ display: block;
4210
+ min-width: 110px;
4211
+ text-align: center;
4212
+ color: #b5b5b5;
4213
+ -webkit-transition: color 0.2s;
4214
+ transition: color 0.2s;
4215
+ }
4216
+
4217
+ html body .modula > .filters.menu--antonio .modula_menu__link:hover,
4218
+ html body .modula > .filters.menu--antonio .modula_menu__link:focus {
4219
+ color: #929292;
4220
+ }
4221
+
4222
+ html body .modula > .filters.menu--antonio .modula_menu__item--current .modula_menu__link {
4223
+ color: #d94f5c;
4224
+ -webkit-transition-duration: 0.4s;
4225
+ transition-duration: 0.4s;
4226
+ }
4227
+
4228
+ html body .modula > .filters.menu--antonio .modula_menu__item::before,
4229
+ html body .modula > .filters.menu--antonio .modula_menu__item::after,
4230
+ html body .modula > .filters.menu--antonio .modula_menu__link::before,
4231
+ html body .modula > .filters.menu--antonio .modula_menu__link::after {
4232
+ content: '';
4233
+ position: absolute;
4234
+ background: #d94f5c;
4235
+ -webkit-transition: -webkit-transform 0.2s;
4236
+ transition: transform 0.2s;
4237
+ }
4238
+
4239
+ html body .modula > .filters.menu--antonio .modula_menu__item::before,
4240
+ html body .modula > .filters.menu--antonio .modula_menu__item::after {
4241
+ top: 0;
4242
+ width: 4px;
4243
+ height: 100%;
4244
+ -webkit-transform: scale3d(1, 0, 1);
4245
+ transform: scale3d(1, 0, 1);
4246
+ }
4247
+
4248
+ html body .modula > .filters.menu--antonio .modula_menu__item::before {
4249
+ left: 0;
4250
+ -webkit-transform-origin: 50% 100%;
4251
+ transform-origin: 50% 100%;
4252
+ }
4253
+
4254
+ html body .modula > .filters.menu--antonio .modula_menu__item::after {
4255
+ right: 0;
4256
+ -webkit-transform-origin: 50% 0%;
4257
+ transform-origin: 50% 0%;
4258
+ }
4259
+
4260
+ html body .modula > .filters.menu--antonio .modula_menu__link::before,
4261
+ html body .modula > .filters.menu--antonio .modula_menu__link::after {
4262
+ left: 0;
4263
+ width: 100%;
4264
+ height: 4px;
4265
+ -webkit-transform: scale3d(0, 1, 1);
4266
+ transform: scale3d(0, 1, 1);
4267
+ }
4268
+
4269
+ html body .modula > .filters.menu--antonio .modula_menu__link::before {
4270
+ top: 0;
4271
+ -webkit-transform-origin: 0 50%;
4272
+ transform-origin: 0 50%;
4273
+ }
4274
+
4275
+ html body .modula > .filters.menu--antonio .modula_menu__link::after {
4276
+ bottom: 0;
4277
+ -webkit-transform-origin: 100% 50%;
4278
+ transform-origin: 100% 50%;
4279
+ }
4280
+
4281
+ html body .modula > .filters.menu--antonio .modula_menu__item--current::before,
4282
+ html body .modula > .filters.menu--antonio .modula_menu__item--current::after,
4283
+ html body .modula > .filters.menu--antonio .modula_menu__item--current .modula_menu__link::before,
4284
+ html body .modula > .filters.menu--antonio .modula_menu__item--current .modula_menu__link::after {
4285
+ -webkit-transform: scale3d(1, 1, 1);
4286
+ transform: scale3d(1, 1, 1);
4287
+ -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
4288
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
4289
+ -webkit-transition-duration: 0.4s;
4290
+ transition-duration: 0.4s;
4291
+ }
4292
+
4293
+ html body .modula > .filters.menu--antonio .modula_menu__item--current::after {
4294
+ -webkit-transition-delay: 0s;
4295
+ transition-delay: 0s;
4296
+ }
4297
+
4298
+ html body .modula > .filters.menu--antonio .modula_menu__item--current .modula_menu__link::before {
4299
+ -webkit-transition-delay: 0.2s;
4300
+ transition-delay: 0.2s;
4301
+ }
4302
+
4303
+ html body .modula > .filters.menu--antonio .modula_menu__item--current .modula_menu__link::after {
4304
+ -webkit-transition-delay: 0.2s;
4305
+ transition-delay: 0.2s;
4306
+ }
4307
+
4308
+ /* Miranda */
4309
+ html body .modula > .filters.menu--miranda .modula_menu__item {
4310
+ position: relative;
4311
+ margin: 1em;
4312
+ }
4313
+
4314
+ html body .modula > .filters.menu--miranda .modula_menu__link {
4315
+ position: relative;
4316
+ display: block;
4317
+ min-width: 100px;
4318
+ text-align: center;
4319
+ color: #b5b5b5;
4320
+ -webkit-transition: color 0.3s;
4321
+ transition: color 0.3s;
4322
+ }
4323
+
4324
+ html body .modula > .filters.menu--miranda .modula_menu__link:hover,
4325
+ html body .modula > .filters.menu--miranda .modula_menu__link:focus {
4326
+ color: #929292;
4327
+ }
4328
+
4329
+ html body .modula > .filters.menu--miranda .modula_menu__item--current .modula_menu__link {
4330
+ color: #d94f5c;
4331
+ }
4332
+
4333
+ html body .modula > .filters.menu--miranda .modula_menu__item::before,
4334
+ html body .modula > .filters.menu--miranda .modula_menu__item::after,
4335
+ html body .modula > .filters.menu--miranda .modula_menu__link::before,
4336
+ html body .modula > .filters.menu--miranda .modula_menu__link::after {
4337
+ content: '';
4338
+ position: absolute;
4339
+ background: #d94f5c;
4340
+ -webkit-transition: -webkit-transform 0.1s;
4341
+ transition: transform 0.1s;
4342
+ -webkit-transition-timing-function: cubic-bezier(1, 0.68, 0.16, 0.9);
4343
+ transition-timing-function: cubic-bezier(1, 0.68, 0.16, 0.9);
4344
+ }
4345
+
4346
+ /* left and right line */
4347
+ html body .modula > .filters.menu--miranda .modula_menu__item::before,
4348
+ html body .modula > .filters.menu--miranda .modula_menu__item::after {
4349
+ top: 0;
4350
+ width: 2px;
4351
+ height: 100%;
4352
+ -webkit-transform: scale3d(1, 0, 1);
4353
+ transform: scale3d(1, 0, 1);
4354
+ }
4355
+
4356
+ /* left line */
4357
+ html body .modula > .filters.menu--miranda .modula_menu__item::before {
4358
+ left: 0;
4359
+ -webkit-transform-origin: 50% 100%;
4360
+ transform-origin: 50% 100%;
4361
+ }
4362
+
4363
+ /* right line */
4364
+ html body .modula > .filters.menu--miranda .modula_menu__item::after {
4365
+ right: 0;
4366
+ -webkit-transform-origin: 50% 0%;
4367
+ transform-origin: 50% 0%;
4368
+ }
4369
+
4370
+ /* top and bottom line */
4371
+ html body .modula > .filters.menu--miranda .modula_menu__link::before,
4372
+ html body .modula > .filters.menu--miranda .modula_menu__link::after {
4373
+ left: 0;
4374
+ width: 100%;
4375
+ height: 2px;
4376
+ -webkit-transform: scale3d(0, 1, 1);
4377
+ transform: scale3d(0, 1, 1);
4378
+ }
4379
+
4380
+ /* top line */
4381
+ html body .modula > .filters.menu--miranda .modula_menu__link::before {
4382
+ top: 0;
4383
+ -webkit-transform-origin: 0 50%;
4384
+ transform-origin: 0 50%;
4385
+ }
4386
+
4387
+ /* bottom line */
4388
+ html body .modula > .filters.menu--miranda .modula_menu__link::after {
4389
+ bottom: 0;
4390
+ -webkit-transform-origin: 100% 50%;
4391
+ transform-origin: 100% 50%;
4392
+ }
4393
+
4394
+ /* Delays (first reverse, then current) */
4395
+
4396
+ /* These rules can be simplified, but let's keep it for better readability */
4397
+
4398
+ /* bottom line */
4399
+ html body .modula > .filters.menu--miranda .modula_menu__item .modula_menu__link::after {
4400
+ -webkit-transition-delay: 0.3s;
4401
+ transition-delay: 0.3s;
4402
+ }
4403
+
4404
+ html body .modula > .filters.menu--miranda .modula_menu__item--current .modula_menu__link::after {
4405
+ -webkit-transition-delay: 0s;
4406
+ transition-delay: 0s;
4407
+ }
4408
+
4409
+ /* left line */
4410
+ html body .modula > .filters.menu--miranda .modula_menu__item::before {
4411
+ -webkit-transition-delay: 0.2s;
4412
+ transition-delay: 0.2s;
4413
+ }
4414
+
4415
+ html body .modula > .filters.menu--miranda .modula_menu__item--current::before {
4416
+ -webkit-transition-delay: 0.1s;
4417
+ transition-delay: 0.1s;
4418
+ }
4419
+
4420
+ /* top line */
4421
+ html body .modula > .filters.menu--miranda .modula_menu__item .modula_menu__link::before {
4422
+ -webkit-transition-delay: 0.1s;
4423
+ transition-delay: 0.1s;
4424
+ }
4425
+
4426
+ html body .modula > .filters.menu--miranda .modula_menu__item--current .modula_menu__link::before {
4427
+ -webkit-transition-delay: 0.2s;
4428
+ transition-delay: 0.2s;
4429
+ }
4430
+
4431
+ /* right line */
4432
+ html body .modula > .filters.menu--miranda .modula_menu__item--current::after {
4433
+ -webkit-transition-delay: 0.3s;
4434
+ transition-delay: 0.3s;
4435
+ }
4436
+
4437
+ html body .modula > .filters.menu--miranda .modula_menu__item--current::before,
4438
+ html body .modula > .filters.menu--miranda .modula_menu__item--current::after,
4439
+ html body .modula > .filters.menu--miranda .modula_menu__item--current .modula_menu__link::before,
4440
+ html body .modula > .filters.menu--miranda .modula_menu__item--current .modula_menu__link::after {
4441
+ -webkit-transform: scale3d(1, 1, 1);
4442
+ transform: scale3d(1, 1, 1);
4443
+ }
4444
+
4445
+ /* Ariel */
4446
+ html body .modula > .filters.menu--ariel .modula_menu__item {
4447
+ position: relative;
4448
+ margin: 0.5em 1em;
4449
+ }
4450
+
4451
+ html body .modula > .filters.menu--ariel .modula_menu__link {
4452
+ line-height: 1.15;
4453
+ position: relative;
4454
+ display: block;
4455
+ min-width: 110px;
4456
+ text-align: center;
4457
+ color: #b5b5b5;
4458
+ -webkit-transition: color 0.3s;
4459
+ transition: color 0.3s;
4460
+ }
4461
+
4462
+ html body .modula > .filters.menu--ariel .modula_menu__link:hover,
4463
+ html body .modula > .filters.menu--ariel .modula_menu__link:focus {
4464
+ color: #929292;
4465
+ }
4466
+
4467
+ html body .modula > .filters.menu--ariel .modula_menu__item--current .modula_menu__link {
4468
+ color: #d94f5c;
4469
+ }
4470
+
4471
+ html body .modula > .filters.menu--ariel .modula_menu__item::before,
4472
+ html body .modula > .filters.menu--ariel .modula_menu__item::after,
4473
+ html body .modula > .filters.menu--ariel .modula_menu__link::before,
4474
+ html body .modula > .filters.menu--ariel .modula_menu__link::after {
4475
+ content: '';
4476
+ position: absolute;
4477
+ background: #d94f5c;
4478
+ -webkit-transition: -webkit-transform 0.3s;
4479
+ transition: transform 0.3s;
4480
+ -webkit-transition-timing-function: cubic-bezier(0.44, 0.05, 0.55, 0.95);
4481
+ transition-timing-function: cubic-bezier(0.44, 0.05, 0.55, 0.95);
4482
+ }
4483
+
4484
+ html body .modula > .filters.menu--ariel .modula_menu__item::before,
4485
+ html body .modula > .filters.menu--ariel .modula_menu__item::after {
4486
+ top: 0;
4487
+ width: 4px;
4488
+ height: 100%;
4489
+ -webkit-transform: scale3d(0.1, 0, 1);
4490
+ transform: scale3d(0.1, 0, 1);
4491
+ }
4492
+
4493
+ /* left line */
4494
+ html body .modula > .filters.menu--ariel .modula_menu__item::before {
4495
+ left: 0;
4496
+ }
4497
+
4498
+ /* right line */
4499
+ html body .modula > .filters.menu--ariel .modula_menu__item::after {
4500
+ right: 0;
4501
+ }
4502
+
4503
+ html body .modula > .filters.menu--ariel .modula_menu__link::before,
4504
+ html body .modula > .filters.menu--ariel .modula_menu__link::after {
4505
+ left: 0;
4506
+ width: 100%;
4507
+ height: 4px;
4508
+ -webkit-transform: scale3d(0, 0.1, 1);
4509
+ transform: scale3d(0, 0.1, 1);
4510
+ }
4511
+
4512
+ /* top line */
4513
+ html body .modula > .filters.menu--ariel .modula_menu__link::before {
4514
+ top: 0;
4515
+ }
4516
+
4517
+ /* bottom line */
4518
+ html body .modula > .filters.menu--ariel .modula_menu__link::after {
4519
+ bottom: 0;
4520
+ }
4521
+
4522
+ html body .modula > .filters.menu--ariel .modula_menu__item--current::before,
4523
+ html body .modula > .filters.menu--ariel .modula_menu__item--current::after,
4524
+ html body .modula > .filters.menu--ariel .modula_menu__item--current .modula_menu__link::before,
4525
+ html body .modula > .filters.menu--ariel .modula_menu__item--current .modula_menu__link::after {
4526
+ -webkit-transform: scale3d(1, 1, 1);
4527
+ transform: scale3d(1, 1, 1);
4528
+ }
4529
+
4530
+ /* Caliban */
4531
+ html body .modula > .filters.menu--caliban .modula_menu__item {
4532
+ margin: 0.5em 0;
4533
+ }
4534
+
4535
+ html body .modula > .filters.menu--caliban .modula_menu__link {
4536
+ position: relative;
4537
+ display: block;
4538
+ margin: 0 1em;
4539
+ color: #b5b5b5;
4540
+ -webkit-transition: color 0.2s;
4541
+ transition: color 0.2s;
4542
+ text-align: center;
4543
+ }
4544
+
4545
+ html body .modula > .filters.menu--caliban .modula_menu__link:hover,
4546
+ html body .modula > .filters.menu--caliban .modula_menu__link:focus {
4547
+ color: #929292;
4548
+ }
4549
+
4550
+ html body .modula > .filters.menu--caliban .modula_menu__item--current .modula_menu__link {
4551
+ color: #d94f5c;
4552
+ }
4553
+
4554
+ html body .modula > .filters.menu--caliban .modula_menu__link::before,
4555
+ html body .modula > .filters.menu--caliban .modula_menu__link::after {
4556
+ content: '';
4557
+ position: absolute;
4558
+ top: 0;
4559
+ left: 0;
4560
+ width: 100%;
4561
+ height: 100%;
4562
+ border: 2px solid #d94f5c;
4563
+ -webkit-transition: -webkit-transform 0.2s;
4564
+ transition: transform 0.2s;
4565
+ background:transparent !important;
4566
+ }
4567
+
4568
+ html body .modula > .filters.menu--caliban .modula_menu__link::before {
4569
+ border-width: 0 2px;
4570
+ -webkit-transform: scale3d(1, 0, 1);
4571
+ transform: scale3d(1, 0, 1);
4572
+ -webkit-transform-origin: 0% 50%;
4573
+ transform-origin: 0% 50%;
4574
+ }
4575
+
4576
+ html body .modula > .filters.menu--caliban .modula_menu__link::after {
4577
+ border-width: 2px 0;
4578
+ -webkit-transform: scale3d(0, 1, 1);
4579
+ transform: scale3d(0, 1, 1);
4580
+ -webkit-transform-origin: 0% 0%;
4581
+ transform-origin: 0% 0%;
4582
+ -webkit-transition-delay: 0.2s;
4583
+ transition-delay: 0.2s;
4584
+ }
4585
+
4586
+ html body .modula > .filters.menu--caliban .modula_menu__item--current .modula_menu__link::before,
4587
+ html body .modula > .filters.menu--caliban .modula_menu__item--current .modula_menu__link::after {
4588
+ -webkit-transform: scale3d(1, 1, 1);
4589
+ transform: scale3d(1, 1, 1);
4590
+ }
4591
+
4592
+ /* Ferdinand */
4593
+ html body .modula > .filters.menu--ferdinand .modula_menu__link {
4594
+ position: relative;
4595
+ display: block;
4596
+ margin: 0 1.5em;
4597
+ padding: 0.65em 0;
4598
+ text-align: center;
4599
+ color: #b5b5b5;
4600
+ -webkit-transition: background 0.3s, color 0.3s;
4601
+ transition: background 0.3s, color 0.3s;
4602
+ }
4603
+
4604
+ html body .modula > .filters.menu--ferdinand .modula_menu__link:hover,
4605
+ html body .modula > .filters.menu--ferdinand .modula_menu__link:focus {
4606
+ color: #929292;
4607
+ }
4608
+
4609
+ html body .modula > .filters.menu--ferdinand .modula_menu__item--current .modula_menu__link {
4610
+ color: #d94f5c;
4611
+ }
4612
+
4613
+ html body .modula > .filters.menu--ferdinand .modula_menu__link::before {
4614
+ content: '';
4615
+ position: absolute;
4616
+ bottom: 0;
4617
+ left: 0;
4618
+ width: 100%;
4619
+ height: 2px;
4620
+ background: #d94f5c;
4621
+ -webkit-transform: scale3d(0, 5, 1);
4622
+ transform: scale3d(0, 5, 1);
4623
+ -webkit-transform-origin: 0% 50%;
4624
+ transform-origin: 0% 50%;
4625
+ -webkit-transition: -webkit-transform 0.3s;
4626
+ transition: transform 0.3s;
4627
+ -webkit-transition-timing-function: cubic-bezier(1, 0.68, 0.16, 0.9);
4628
+ transition-timing-function: cubic-bezier(1, 0.68, 0.16, 0.9);
4629
+ }
4630
+
4631
+ html body .modula > .filters.menu--ferdinand .modula_menu__item--current .modula_menu__link::before {
4632
+ -webkit-transform: scale3d(1, 1, 1);
4633
+ transform: scale3d(1, 1, 1);
4634
+ }
4635
+
4636
+ /* Adrian */
4637
+ html body .modula > .filters.menu--adrian .modula_menu__item {
4638
+ margin: 0 1em;
4639
+ }
4640
+
4641
+ html body .modula > .filters.menu--adrian .modula_menu__link {
4642
+ position: relative;
4643
+ overflow: hidden;
4644
+ width: 130px;
4645
+ padding: 1em 0;
4646
+ color: #b5b5b5;
4647
+ }
4648
+
4649
+ html body .modula > .filters.menu--adrian .modula_menu__link:hover,
4650
+ html body .modula > .filters.menu--adrian .modula_menu__link:focus {
4651
+ color: #929292;
4652
+ }
4653
+
4654
+ html body .modula > .filters.menu--adrian .modula_menu__item--current .modula_menu__link {
4655
+ color: #d94f5c;
4656
+ }
4657
+
4658
+ html body .modula > .filters.menu--adrian .modula_menu__link::before {
4659
+ content: '';
4660
+ position: absolute;
4661
+ bottom: 0;
4662
+ left: 0;
4663
+ width: 300%;
4664
+ height: 50px;
4665
+ opacity: 0;
4666
+ -webkit-transform: translate3d(130px, 0, 0);
4667
+ transform: translate3d(130px, 0, 0);
4668
+ -webkit-transition: -webkit-transform 0s 0.3s, opacity 0.3s;
4669
+ transition: transform 0s 0.3s, opacity 0.3s;
4670
+ }
4671
+
4672
+ html body .modula > .filters.menu--adrian .modula_menu__item--current .modula_menu__link::before {
4673
+ opacity: 1;
4674
+ -webkit-transform: translate3d(-260px, 0, 0);
4675
+ transform: translate3d(-260px, 0, 0);
4676
+ -webkit-transition: -webkit-transform 0.5s;
4677
+ transition: transform 0.5s;
4678
+ }
4679
+
4680
+ html body .modula > .filters.menu--adrian .modula_menu__helper {
4681
+ display: block;
4682
+ pointer-events: none;
4683
+ }
4684
+
4685
+ html body .modula > .filters.menu--adrian .modula_menu__item--current .modula_menu__helper {
4686
+ -webkit-animation: anim-adrian 0.3s forwards;
4687
+ animation: anim-adrian 0.3s forwards;
4688
+ }
4689
+
4690
+ @-webkit-keyframes anim-adrian {
4691
+ 50% {
4692
+ opacity: 0;
4693
+ -webkit-transform: translate3d(0, -100%, 0);
4694
+ transform: translate3d(0, -100%, 0);
4695
+ }
4696
+
4697
+ 51% {
4698
+ opacity: 0;
4699
+ -webkit-transform: translate3d(0, 100%, 0);
4700
+ transform: translate3d(0, 100%, 0);
4701
+ }
4702
+
4703
+ 100% {
4704
+ opacity: 1;
4705
+ -webkit-transform: translate3d(0, 0, 0);
4706
+ transform: translate3d(0, 0, 0);
4707
+ }
4708
+ }
4709
+
4710
+ @keyframes anim-adrian {
4711
+ 50% {
4712
+ opacity: 0;
4713
+ -webkit-transform: translate3d(0, -100%, 0);
4714
+ transform: translate3d(0, -100%, 0);
4715
+ }
4716
+
4717
+ 51% {
4718
+ opacity: 0;
4719
+ -webkit-transform: translate3d(0, 100%, 0);
4720
+ transform: translate3d(0, 100%, 0);
4721
+ }
4722
+
4723
+ 100% {
4724
+ opacity: 1;
4725
+ -webkit-transform: translate3d(0, 0, 0);
4726
+ transform: translate3d(0, 0, 0);
4727
+ }
4728
+ }
4729
+
4730
+ /* Francisco */
4731
+ html body .modula > .filters.menu--francisco .modula_menu__item {
4732
+ margin: 0 1.5em;
4733
+ }
4734
+
4735
+ html body .modula > .filters.menu--francisco .modula_menu__link {
4736
+ position: relative;
4737
+ overflow: hidden;
4738
+ /*height: 3em;*/
4739
+ padding: 1em 0;
4740
+ text-align: center;
4741
+ color: #b5b5b5;
4742
+ -webkit-transition: color 0.3s;
4743
+ transition: color 0.3s;
4744
+ }
4745
+
4746
+ html body .modula > .filters.menu--francisco .modula_menu__link:hover,
4747
+ html body .modula > .filters.menu--francisco .modula_menu__link:focus {
4748
+ color: #929292;
4749
+ }
4750
+
4751
+ html body .modula > .filters.menu--francisco .modula_menu__item--current .modula_menu__link {
4752
+ color: #d94f5c;
4753
+ }
4754
+
4755
+ html body .modula > .filters.menu--francisco .modula_menu__link::before {
4756
+ content: '';
4757
+ position: absolute;
4758
+ bottom: 0;
4759
+ left: 0;
4760
+ width: 100%;
4761
+ height: 2px;
4762
+ opacity: 0;
4763
+ background: #d94f5c;
4764
+ -webkit-transform: translate3d(0, -1em, 0);
4765
+ transform: translate3d(0, -1em, 0);
4766
+ -webkit-transition: -webkit-transform 0s 0.3s, opacity 0.2s;
4767
+ transition: transform 0s 0.3s, opacity 0.2s;
4768
+ }
4769
+
4770
+ html body .modula > .filters.menu--francisco .modula_menu__item--current .modula_menu__link::before {
4771
+ opacity: 1;
4772
+ -webkit-transform: translate3d(0, 0, 0);
4773
+ transform: translate3d(0, 0, 0);
4774
+ -webkit-transition: -webkit-transform 0.3s, opacity 0.1s;
4775
+ transition: transform 0.3s, opacity 0.1s;
4776
+ -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
4777
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
4778
+ }
4779
+
4780
+ html body .modula > .filters.menu--francisco .modula_menu__helper {
4781
+ display: block;
4782
+ pointer-events: none;
4783
+ }
4784
+
4785
+ html body .modula > .filters.menu--francisco .modula_menu__item--current .modula_menu__helper {
4786
+ -webkit-animation: anim-francisco 0.3s forwards;
4787
+ animation: anim-francisco 0.3s forwards;
4788
+ }
4789
+
4790
+ @-webkit-keyframes anim-francisco {
4791
+ 50% {
4792
+ opacity: 0;
4793
+ -webkit-transform: translate3d(0, 100%, 0);
4794
+ transform: translate3d(0, 100%, 0);
4795
+ }
4796
+
4797
+ 51% {
4798
+ opacity: 0;
4799
+ -webkit-transform: translate3d(0, -100%, 0);
4800
+ transform: translate3d(0, -100%, 0);
4801
+ }
4802
+
4803
+ 100% {
4804
+ opacity: 1;
4805
+ -webkit-transform: translate3d(0, 0, 0);
4806
+ transform: translate3d(0, 0, 0);
4807
+ }
4808
+ }
4809
+
4810
+ @keyframes anim-francisco {
4811
+ 50% {
4812
+ opacity: 0;
4813
+ -webkit-transform: translate3d(0, 100%, 0);
4814
+ transform: translate3d(0, 100%, 0);
4815
+ }
4816
+
4817
+ 51% {
4818
+ opacity: 0;
4819
+ -webkit-transform: translate3d(0, -100%, 0);
4820
+ transform: translate3d(0, -100%, 0);
4821
+ }
4822
+
4823
+ 100% {
4824
+ opacity: 1;
4825
+ -webkit-transform: translate3d(0, 0, 0);
4826
+ transform: translate3d(0, 0, 0);
4827
+ }
4828
+ }
4829
+
4830
+ /* Trinculo */
4831
+ html body .modula > .filters.menu--trinculo .modula_menu__item {
4832
+ margin: 0 1.75em;
4833
+ }
4834
+
4835
+ html body .modula > .filters.menu--trinculo .modula_menu__link {
4836
+ position: relative;
4837
+ padding: 1em 0.1em;
4838
+ text-align: center;
4839
+ color: #b5b5b5;
4840
+ -webkit-transition: color 0.3s;
4841
+ transition: color 0.3s;
4842
+ }
4843
+
4844
+ html body .modula > .filters.menu--trinculo .modula_menu__link:hover,
4845
+ html body .modula > .filters.menu--trinculo .modula_menu__link:focus {
4846
+ color: #929292;
4847
+ }
4848
+
4849
+ html body .modula > .filters.menu--trinculo .modula_menu__link::before {
4850
+ content: '';
4851
+ position: absolute;
4852
+ bottom: 0;
4853
+ left: 0;
4854
+ width: 100%;
4855
+ height: 4px;
4856
+ opacity: 0;
4857
+ background: #d94f5c;
4858
+ -webkit-transform: scale3d(0, 1, 1);
4859
+ transform: scale3d(0, 1, 1);
4860
+ -webkit-transform-origin: 100% 50%;
4861
+ transform-origin: 100% 50%;
4862
+ -webkit-transition: -webkit-transform 0s 0.2s, opacity 0.2s;
4863
+ transition: transform 0s 0.2s, opacity 0.2s;
4864
+ }
4865
+
4866
+ html body .modula > .filters.menu--trinculo .modula_menu__item--current .modula_menu__link::before {
4867
+ opacity: 1;
4868
+ -webkit-transform: scale3d(1, 1, 1);
4869
+ transform: scale3d(1, 1, 1);
4870
+ -webkit-transition: -webkit-transform 0.2s, opacity 0.1s;
4871
+ transition: transform 0.2s, opacity 0.1s;
4872
+ -webkit-transition-delay: 0.35s;
4873
+ transition-delay: 0.35s;
4874
+ -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
4875
+ transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
4876
+ }
4877
+
4878
+ html body .modula > .filters.menu--trinculo .modula_menu__helper {
4879
+ display: block;
4880
+ pointer-events: none;
4881
+ }
4882
+
4883
+ html body .modula > .filters.menu--trinculo .modula_menu__item--current .modula_menu__helper {
4884
+ -webkit-animation: anim-trinculo 0.6s forwards;
4885
+ animation: anim-trinculo 0.6s forwards;
4886
+ }
4887
+
4888
+ @-webkit-keyframes anim-trinculo {
4889
+ 50% {
4890
+ opacity: 0;
4891
+ color: #929292;
4892
+ -webkit-transform: translate3d(100%, 0, 0);
4893
+ transform: translate3d(100%, 0, 0);
4894
+ }
4895
+
4896
+ 51% {
4897
+ opacity: 0;
4898
+ color: #d94f5c;
4899
+ -webkit-transform: translate3d(-100%, 0, 0);
4900
+ transform: translate3d(-100%, 0, 0);
4901
+ }
4902
+
4903
+ 75% {
4904
+ opacity: 1;
4905
+ -webkit-transform: translate3d(5px, 0, 0);
4906
+ transform: translate3d(5px, 0, 0);
4907
+ }
4908
+
4909
+ 100% {
4910
+ opacity: 1;
4911
+ color: #d94f5c;
4912
+ -webkit-transform: translate3d(0, 0, 0);
4913
+ transform: translate3d(0, 0, 0);
4914
+ }
4915
+ }
4916
+
4917
+ @keyframes anim-trinculo {
4918
+ 50% {
4919
+ opacity: 0;
4920
+ color: #929292;
4921
+ -webkit-transform: translate3d(100%, 0, 0);
4922
+ transform: translate3d(100%, 0, 0);
4923
+ }
4924
+
4925
+ 51% {
4926
+ opacity: 0;
4927
+ color: #d94f5c;
4928
+ -webkit-transform: translate3d(-100%, 0, 0);
4929
+ transform: translate3d(-100%, 0, 0);
4930
+ }
4931
+
4932
+ 75% {
4933
+ opacity: 1;
4934
+ -webkit-transform: translate3d(5px, 0, 0);
4935
+ transform: translate3d(5px, 0, 0);
4936
+ }
4937
+
4938
+ 100% {
4939
+ opacity: 1;
4940
+ color: #d94f5c;
4941
+ -webkit-transform: translate3d(0, 0, 0);
4942
+ transform: translate3d(0, 0, 0);
4943
+ }
4944
+ }
4945
+
4946
+ /* Stephano */
4947
+ html body .modula > .filters.menu--stephano .modula_menu__item {
4948
+ position: relative;
4949
+ margin: 0 1em;
4950
+ }
4951
+
4952
+ html body .modula > .filters.menu--stephano .modula_menu__link {
4953
+ position: relative;
4954
+ min-width: 105px;
4955
+ text-align: center;
4956
+ color: #b5b5b5;
4957
+ -webkit-transition: color 0.3s;
4958
+ transition: color 0.3s;
4959
+ }
4960
+
4961
+ html body .modula > .filters.menu--stephano .modula_menu__link:hover,
4962
+ html body .modula > .filters.menu--stephano .modula_menu__link:focus {
4963
+ color: #929292;
4964
+ }
4965
+
4966
+ html body .modula > .filters.menu--stephano .modula_menu__item--current .modula_menu__link {
4967
+ color: #d94f5c;
4968
+ }
4969
+
4970
+ html body .modula > .filters.menu--stephano .modula_menu__item::before,
4971
+ html body .modula > .filters.menu--stephano .modula_menu__link::before,
4972
+ html body .modula > .filters.menu--stephano .modula_menu__link::after {
4973
+ content: '';
4974
+ position: absolute;
4975
+ bottom: 0;
4976
+ width: 10px;
4977
+ height: 2px;
4978
+ opacity: 0;
4979
+ background: #d94f5c;
4980
+ }
4981
+
4982
+ /* flipped sides */
4983
+ html body .modula > .filters.menu--stephano .modula_menu__link::before,
4984
+ html body .modula > .filters.menu--stephano .modula_menu__link::after {
4985
+ -webkit-transform: translate3d(0, 10px, 0);
4986
+ transform: translate3d(0, 10px, 0);
4987
+ -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
4988
+ transition: transform 0.3s, opacity 0.3s;
4989
+ }
4990
+
4991
+ html body .modula > .filters.menu--stephano .modula_menu__item--current .modula_menu__link::before,
4992
+ html body .modula > .filters.menu--stephano .modula_menu__item--current .modula_menu__link::after {
4993
+ opacity: 1;
4994
+ }
4995
+
4996
+ /* left flip */
4997
+ html body .modula > .filters.menu--stephano .modula_menu__link::before {
4998
+ left: 0;
4999
+ -webkit-transform-origin: 0% 0%;
5000
+ transform-origin: 0% 0%;
5001
+ }
5002
+
5003
+ html body .modula > .filters.menu--stephano .modula_menu__item--current .modula_menu__link::before {
5004
+ -webkit-transform: rotate3d(0, 0, 1, -90deg);
5005
+ transform: rotate3d(0, 0, 1, -90deg);
5006
+ }
5007
+
5008
+ /* right flip */
5009
+ html body .modula > .filters.menu--stephano .modula_menu__link::after {
5010
+ right: 0;
5011
+ -webkit-transform-origin: 100% 0%;
5012
+ transform-origin: 100% 0%;
5013
+ }
5014
+
5015
+ html body .modula > .filters.menu--stephano .modula_menu__item--current .modula_menu__link::after {
5016
+ -webkit-transform: rotate3d(0, 0, 1, 90deg);
5017
+ transform: rotate3d(0, 0, 1, 90deg);
5018
+ }
5019
+
5020
+ /* bottom line */
5021
+ html body .modula > .filters.menu--stephano .modula_menu__item::before {
5022
+ left: 0;
5023
+ width: 100%;
5024
+ -webkit-transform: translate3d(0, 10px, 0);
5025
+ transform: translate3d(0, 10px, 0);
5026
+ -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
5027
+ transition: transform 0.3s, opacity 0.3s;
5028
+ }
5029
+
5030
+ html body .modula > .filters.menu--stephano .modula_menu__item--current::before {
5031
+ opacity: 1;
5032
+ -webkit-transform: translate3d(0, 0, 0);
5033
+ transform: translate3d(0, 0, 0);
5034
+ -webkit-transition: -webkit-transform 0.3s, opacity 0.1s;
5035
+ transition: transform 0.3s, opacity 0.1s;
5036
+ }
5037
+
5038
+ /* Iris */
5039
+ html body .modula > .filters.menu--iris .modula_menu__item {
5040
+ margin: 0 1em;
5041
+ }
5042
+
5043
+ html body .modula > .filters.menu--iris .modula_menu__link {
5044
+ position: relative;
5045
+ text-align: center;
5046
+ color: #b5b5b5;
5047
+ -webkit-transition: color 0.3s;
5048
+ transition: color 0.3s;
5049
+ }
5050
+
5051
+ html body .modula > .filters.menu--iris .modula_menu__link:hover,
5052
+ html body .modula > .filters.menu--iris .modula_menu__link:focus {
5053
+ color: #929292;
5054
+ }
5055
+
5056
+ html body .modula > .filters.menu--iris .modula_menu__item--current .modula_menu__link {
5057
+ color: #d94f5c;
5058
+ }
5059
+
5060
+ html body .modula > .filters.menu--iris .modula_menu__link::before,
5061
+ html body .modula > .filters.menu--iris .modula_menu__link::after {
5062
+ content: '';
5063
+ position: absolute;
5064
+ width: 10px;
5065
+ height: 10px;
5066
+ opacity: 0;
5067
+ border: 2px solid #d94f5c;
5068
+ -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
5069
+ transition: transform 0.3s, opacity 0.3s;
5070
+ -webkit-transition-timing-function: cubic-bezier(0.17, 0.67, 0.05, 1.29);
5071
+ transition-timing-function: cubic-bezier(0.17, 0.67, 0.05, 1.29);
5072
+ background:transparent !important;
5073
+ }
5074
+
5075
+ html body .modula > .filters.menu--iris .modula_menu__link::before {
5076
+ top: 0;
5077
+ left: 0;
5078
+ border-width: 2px 0 0 2px;
5079
+ -webkit-transform: translate3d(10px, 10px, 0);
5080
+ transform: translate3d(10px, 10px, 0);
5081
+ }
5082
+
5083
+ html body .modula > .filters.menu--iris .modula_menu__link::after {
5084
+ right: 0;
5085
+ bottom: 0;
5086
+ border-width: 0 2px 2px 0;
5087
+ -webkit-transform: translate3d(-10px, -10px, 0);
5088
+ transform: translate3d(-10px, -10px, 0);
5089
+ }
5090
+
5091
+ html body .modula > .filters.menu--iris .modula_menu__item--current .modula_menu__link::before,
5092
+ html body .modula > .filters.menu--iris .modula_menu__item--current .modula_menu__link::after {
5093
+ opacity: 1;
5094
+ -webkit-transform: translate3d(0, 0, 0);
5095
+ transform: translate3d(0, 0, 0);
5096
+ }
5097
+
5098
+ /* Ceres */
5099
+ html body .modula > .filters.menu--ceres .modula_menu__item {
5100
+ position: relative;
5101
+ margin:0 !important;
5102
+ }
5103
+
5104
+ html body .modula > .filters.menu--ceres .modula_menu__link {
5105
+ position: relative;
5106
+ min-width: 115px;
5107
+ height: 50px;
5108
+ padding:0;
5109
+ text-align: center;
5110
+ color: #b5b5b5;
5111
+ -webkit-transition: color 0.3s;
5112
+ transition: color 0.3s;
5113
+ line-height: 50px;
5114
+ }
5115
+
5116
+ html body .modula > .filters.menu--ceres .modula_menu__link:hover,
5117
+ html body .modula > .filters.menu--ceres .modula_menu__link:focus {
5118
+ color: #929292;
5119
+ }
5120
+
5121
+ html body .modula > .filters.menu--ceres .modula_menu__item--current .modula_menu__link {
5122
+ color: #d94f5c;
5123
+ }
5124
+
5125
+ html body .modula > .filters.menu--ceres .modula_menu__item::before,
5126
+ html body .modula > .filters.menu--ceres .modula_menu__item::after,
5127
+ html body .modula > .filters.menu--ceres .modula_menu__link::after {
5128
+ content: '';
5129
+ position: absolute;
5130
+ bottom: 0;
5131
+ background: #d94f5c;
5132
+ }
5133
+
5134
+ html body .modula > .filters.menu--ceres .modula_menu__item::before,
5135
+ html body .modula > .filters.menu--ceres .modula_menu__item::after {
5136
+ width: 2px;
5137
+ height: 100%;
5138
+ opacity: 0;
5139
+ -webkit-transform: scale3d(1, 0, 1);
5140
+ transform: scale3d(1, 0, 1);
5141
+ -webkit-transform-origin: 50% 0%;
5142
+ transform-origin: 50% 0%;
5143
+ -webkit-transition: -webkit-transform 0s 0.1s, opacity 0.1s;
5144
+ transition: transform 0s 0.1s, opacity 0.1s;
5145
+ }
5146
+
5147
+ html body .modula > .filters.menu--ceres .modula_menu__item::before {
5148
+ left: 0;
5149
+ }
5150
+
5151
+ html body .modula > .filters.menu--ceres .modula_menu__item::after {
5152
+ right: 0;
5153
+ }
5154
+
5155
+ html body .modula > .filters.menu--ceres .modula_menu__item--current::before,
5156
+ html body .modula > .filters.menu--ceres .modula_menu__item--current::after {
5157
+ opacity: 1;
5158
+ -webkit-transform: scale3d(1, 1, 1);
5159
+ transform: scale3d(1, 1, 1);
5160
+ -webkit-transition: -webkit-transform 0.3s;
5161
+ transition: transform 0.3s;
5162
+ -webkit-transition-delay: 0.3s;
5163
+ transition-delay: 0.3s;
5164
+ -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
5165
+ transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
5166
+ }
5167
+
5168
+ /* bottom line */
5169
+ html body .modula > .filters.menu--ceres .modula_menu__link::after {
5170
+ left: 0;
5171
+ width: 100%;
5172
+ height: 2px;
5173
+ -webkit-transition: -webkit-transform 0.3s;
5174
+ transition: transform 0.3s;
5175
+ }
5176
+
5177
+ html body .modula > .filters.menu--ceres .modula_menu__item--current .modula_menu__link::after {
5178
+ -webkit-transform: translate3d(0, -48px, 0);
5179
+ transform: translate3d(0, -48px, 0);
5180
+ -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
5181
+ transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
5182
+ }
5183
+
5184
+ /* Juno */
5185
+ html body .modula > .filters.menu--juno .modula_menu__item {
5186
+ position: relative;
5187
+ overflow: hidden;
5188
+ margin: 0.5em;
5189
+ }
5190
+
5191
+ html body .modula > .filters.menu--juno .modula_menu__link {
5192
+ position: relative;
5193
+ z-index: 10;
5194
+ text-align: center;
5195
+ color: #b5b5b5;
5196
+ -webkit-transition: color 0.3s;
5197
+ transition: color 0.3s;
5198
+ width:auto;
5199
+ }
5200
+
5201
+ html body .modula > .filters.menu--juno .modula_menu__link:hover,
5202
+ html body .modula > .filters.menu--juno .modula_menu__link:focus {
5203
+ color: #929292;
5204
+ }
5205
+
5206
+ html body .modula > .filters.menu--juno .modula_menu__item--current .modula_menu__link {
5207
+ color: #d94f5c;
5208
+ }
5209
+
5210
+ html body .modula > .filters.menu--juno .modula_menu__item::before,
5211
+ html body .modula > .filters.menu--juno .modula_menu__item::after,
5212
+ html body .modula > .filters.menu--juno .modula_menu__link::before,
5213
+ html body .modula > .filters.menu--juno .modula_menu__link::after {
5214
+ content: '';
5215
+ position: absolute;
5216
+ pointer-events: none;
5217
+ opacity: 0;
5218
+ background: #d94f5c;
5219
+ -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
5220
+ transition: transform 0.3s, opacity 0.3s;
5221
+ -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
5222
+ transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
5223
+ }
5224
+
5225
+ /* top and bottom line */
5226
+ html body .modula > .filters.menu--juno .modula_menu__item::before,
5227
+ html body .modula > .filters.menu--juno .modula_menu__item::after {
5228
+ left: 0;
5229
+ width: 100%;
5230
+ height: 2px;
5231
+ }
5232
+
5233
+ html body .modula > .filters.menu--juno .modula_menu__item::before {
5234
+ top: 0;
5235
+ -webkit-transform: translate3d(0, 15px, 0);
5236
+ transform: translate3d(0, 15px, 0);
5237
+ }
5238
+
5239
+ html body .modula > .filters.menu--juno .modula_menu__item::after {
5240
+ bottom: 0;
5241
+ -webkit-transform: translate3d(0, -15px, 0);
5242
+ transform: translate3d(0, -15px, 0);
5243
+ }
5244
+
5245
+ /* left and right line */
5246
+ html body .modula > .filters.menu--juno .modula_menu__link::before,
5247
+ html body .modula > .filters.menu--juno .modula_menu__link::after {
5248
+ top: 0;
5249
+ width: 2px;
5250
+ height: 100%;
5251
+ }
5252
+
5253
+ html body .modula > .filters.menu--juno .modula_menu__link::before {
5254
+ left: 0;
5255
+ -webkit-transform: translate3d(15px, 0, 0);
5256
+ transform: translate3d(15px, 0, 0);
5257
+ }
5258
+
5259
+ html body .modula > .filters.menu--juno .modula_menu__link::after {
5260
+ right: 0;
5261
+ -webkit-transform: translate3d(-15px, 0, 0);
5262
+ transform: translate3d(-15px, 0, 0);
5263
+ }
5264
+
5265
+ html body .modula > .filters.menu--juno .modula_menu__item--current::before,
5266
+ html body .modula > .filters.menu--juno .modula_menu__item--current::after,
5267
+ html body .modula > .filters.menu--juno .modula_menu__item--current .modula_menu__link::before,
5268
+ html body .modula > .filters.menu--juno .modula_menu__item--current .modula_menu__link::after {
5269
+ opacity: 1;
5270
+ -webkit-transform: translate3d(0, 0, 0);
5271
+ transform: translate3d(0, 0, 0);
5272
+ }
5273
+
5274
+ /* Maria */
5275
+ html body .modula > .filters.menu--maria .modula_menu__item {
5276
+ position: relative;
5277
+ display: inline-block;
5278
+ -webkit-flex-direction: column;
5279
+ flex-direction: column;
5280
+ -webkit-justify-content: center;
5281
+ justify-content: center;
5282
+ -webkit-align-items: center;
5283
+ align-items: center;
5284
+ margin: 0 1.25em;
5285
+ text-align: center;
5286
+ }
5287
+
5288
+ html body .modula > .filters.menu--maria.vertical-filters .modula_menu__item {
5289
+ display:block;
5290
+ }
5291
+
5292
+ html body .modula > .filters.menu--maria .modula_menu__item::before {
5293
+ content: '';
5294
+ position: absolute;
5295
+ top: 40px;
5296
+ left: 50%;
5297
+ width: 60px;
5298
+ height: 4px;
5299
+ margin-left: -15px;
5300
+ background: #d94f5c;
5301
+ -webkit-transform: rotate3d(0, 0, 1, -45deg) scale3d(0, 1, 1) translateX( -50% );
5302
+ transform: rotate3d(0, 0, 1, -45deg) scale3d(0, 1, 1) translateX( -50% );
5303
+ -webkit-transform-origin: 0 50%;
5304
+ transform-origin: 0 50%;
5305
+ -webkit-transition: -webkit-transform 0.4s;
5306
+ transition: transform 0.4s;
5307
+ }
5308
+
5309
+ html body .modula > .filters.menu--maria .modula_menu__item.modula_menu__item--current::before {
5310
+ -webkit-transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
5311
+ transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
5312
+ }
5313
+
5314
+ html body .modula > .filters.menu--maria .modula_menu__link {
5315
+ position: relative;
5316
+ color: #929292;
5317
+ -webkit-transition: color 0.4s;
5318
+ transition: color 0.4s;
5319
+ }
5320
+
5321
+ html body .modula > .filters.menu--maria .modula_menu__link:hover,
5322
+ html body .modula > .filters.menu--maria .modula_menu__link:focus {
5323
+ color: #d94f5c;
5324
+ }
5325
+
5326
+ html body .modula > .filters.menu--maria .modula_menu__item.modula_menu__item--current .modula_menu__link {
5327
+ color: #333;
5328
+ }
5329
+
5330
+ /* Valentine */
5331
+ html body .modula > .filters.menu--valentine .modula_menu__item {
5332
+ position: relative;
5333
+ margin: 0 1em;
5334
+ }
5335
+
5336
+ html body .modula > .filters.menu--valentine .modula_menu__link {
5337
+ position: relative;
5338
+ display: block;
5339
+ min-width: 105px;
5340
+ text-align: center;
5341
+ color: #b5b5b5;
5342
+ -webkit-transition: color 0.3s;
5343
+ transition: color 0.3s;
5344
+ }
5345
+
5346
+ html body .modula > .filters.menu--valentine .modula_menu__link:hover,
5347
+ html body .modula > .filters.menu--valentine .modula_menu__link:focus {
5348
+ color: #929292;
5349
+ }
5350
+
5351
+ html body .modula > .filters.menu--valentine .modula_menu__item--current .modula_menu__link {
5352
+ color: #d94f5c;
5353
+ }
5354
+
5355
+ html body .modula > .filters.menu--valentine .modula_menu__item::before,
5356
+ html body .modula > .filters.menu--valentine .modula_menu__item::after,
5357
+ html body .modula > .filters.menu--valentine .modula_menu__link::before,
5358
+ html body .modula > .filters.menu--valentine .modula_menu__link::after {
5359
+ content: '';
5360
+ position: absolute;
5361
+ background: #d94f5c;
5362
+ -webkit-transform-origin: 350% 350%;
5363
+ transform-origin: 350% 350%;
5364
+ -webkit-transition: -webkit-transform 0.5s;
5365
+ transition: transform 0.5s;
5366
+ -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
5367
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
5368
+ }
5369
+
5370
+ html body .modula > .filters.menu--valentine .modula_menu__item::before,
5371
+ html body .modula > .filters.menu--valentine .modula_menu__item::after {
5372
+ top: 0;
5373
+ width: 2px;
5374
+ height: 100%;
5375
+ -webkit-transform: scale3d(1, 0, 1);
5376
+ transform: scale3d(1, 0, 1);
5377
+ }
5378
+
5379
+ /* left line */
5380
+ html body .modula > .filters.menu--valentine .modula_menu__item::before {
5381
+ left: 0;
5382
+ -webkit-transition-delay: 0.05s;
5383
+ transition-delay: 0.05s;
5384
+ }
5385
+
5386
+ /* right line */
5387
+ html body .modula > .filters.menu--valentine .modula_menu__item::after {
5388
+ right: 0;
5389
+ -webkit-transition-delay: 0.15s;
5390
+ transition-delay: 0.15s;
5391
+ }
5392
+
5393
+ html body .modula > .filters.menu--valentine .modula_menu__link::before,
5394
+ html body .modula > .filters.menu--valentine .modula_menu__link::after {
5395
+ left: 0;
5396
+ width: 100%;
5397
+ height: 2px;
5398
+ -webkit-transform: scale3d(0, 1, 1);
5399
+ transform: scale3d(0, 1, 1);
5400
+ }
5401
+
5402
+ /* top line */
5403
+ html body .modula > .filters.menu--valentine .modula_menu__link::before {
5404
+ top: 0;
5405
+ -webkit-transition-delay: 0.1s;
5406
+ transition-delay: 0.1s;
5407
+ }
5408
+
5409
+ /* bottom line */
5410
+ html body .modula > .filters.menu--valentine .modula_menu__link::after {
5411
+ bottom: 0;
5412
+ }
5413
+
5414
+ html body .modula > .filters.menu--valentine .modula_menu__item--current::before,
5415
+ html body .modula > .filters.menu--valentine .modula_menu__item--current::after,
5416
+ html body .modula > .filters.menu--valentine .modula_menu__item--current .modula_menu__link::before,
5417
+ html body .modula > .filters.menu--valentine .modula_menu__item--current .modula_menu__link::after {
5418
+ -webkit-transform: scale3d(1, 1, 1);
5419
+ transform: scale3d(1, 1, 1);
5420
+ }
5421
+
5422
+ /* Puck (by @eden_sg) */
5423
+ html body .modula > .filters.menu--puck .modula_menu__link {
5424
+ position: relative;
5425
+ display: block;
5426
+ margin: 0 1em;
5427
+ text-align: center;
5428
+ color: #929292;
5429
+ -webkit-transition: color 0.4s;
5430
+ transition: color 0.4s;
5431
+ }
5432
+
5433
+ html body .modula > .filters.menu--puck .modula_menu__link:hover,
5434
+ html body .modula > .filters.menu--puck .modula_menu__link:focus {
5435
+ color: #828282;
5436
+ }
5437
+
5438
+ html body .modula > .filters.menu--puck .modula_menu__item--current .modula_menu__link {
5439
+ color: #d94f5c;
5440
+ }
5441
+
5442
+ html body .modula > .filters.menu--puck .modula_menu__link::before,
5443
+ html body .modula > .filters.menu--puck .modula_menu__link::after {
5444
+ content: '';
5445
+ position: absolute;
5446
+ left: 0;
5447
+ width: 100%;
5448
+ height: 7px;
5449
+ background: #d94f5c;
5450
+ -webkit-transform: scale3d(0, 1, 1);
5451
+ transform: scale3d(0, 1, 1);
5452
+ -webkit-transition: -webkit-transform 0.2s;
5453
+ transition: transform 0.2s;
5454
+ }
5455
+
5456
+ html body .modula > .filters.menu--puck .modula_menu__link::before {
5457
+ bottom: -5px;
5458
+ height: 2px;
5459
+ -webkit-transition-delay: 0.1s;
5460
+ transition-delay: 0.1s;
5461
+ }
5462
+
5463
+ html body .modula > .filters.menu--puck .modula_menu__link::after {
5464
+ bottom: 0;
5465
+ }
5466
+
5467
+ html body .modula > .filters.menu--puck .modula_menu__item--current .modula_menu__link::before,
5468
+ html body .modula > .filters.menu--puck .modula_menu__item--current .modula_menu__link::after {
5469
+ -webkit-transform: scale3d(1, 1, 1);
5470
+ transform: scale3d(1, 1, 1);
5471
+ -webkit-transition-timing-function: cubic-bezier(0, 1.54, 0.34, 1);
5472
+ transition-timing-function: cubic-bezier(0, 1.54, 0.34, 1);
5473
+ -webkit-transition-duration: 0.8s;
5474
+ transition-duration: 0.8s;
5475
+ }
5476
+
5477
+ /* Titania (by @rileyjshaw) */
5478
+ html body .modula > .filters.menu--titania .modula_menu__item {
5479
+ margin: 0;
5480
+ }
5481
+
5482
+ html body .modula > .filters.menu--titania .modula_menu__link {
5483
+ width: 120px;
5484
+ height: 3em;
5485
+ text-align: center;
5486
+ color: #b5b5b5;
5487
+ -webkit-transition: color 0.3s 0.2s;
5488
+ transition: color 0.3s 0.2s;
5489
+ }
5490
+
5491
+ html body .modula > .filters.menu--titania .modula_menu__link:hover,
5492
+ html body .modula > .filters.menu--titania .modula_menu__link:focus {
5493
+ color: #929292;
5494
+ }
5495
+
5496
+ html body .modula > .filters.menu--titania .modula_menu__item--current .modula_menu__link {
5497
+ color: #d94f5c;
5498
+ -webkit-transition: color 0.7s 0.2s;
5499
+ transition: color 0.7s 0.2s;
5500
+ }
5501
+
5502
+ html body .modula > .filters.menu--titania .modula_menu__lines {
5503
+ position: absolute;
5504
+ top: 0;
5505
+ left: 0;
5506
+ width: 120px;
5507
+ height: 100%;
5508
+ pointer-events: none;
5509
+ border: 2px solid #d94f5c;
5510
+ border-width: 2px 0;
5511
+ -webkit-transition: -webkit-transform 0.5s 0.2s;
5512
+ transition: transform 0.5s 0.2s;
5513
+ -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1);
5514
+ -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
5515
+ transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
5516
+ }
5517
+
5518
+ /* vertical lines */
5519
+ html body .modula > .filters.menu--titania .modula_menu__lines::before,
5520
+ html body .modula > .filters.menu--titania .modula_menu__lines::after {
5521
+ content: '';
5522
+ position: absolute;
5523
+ top: 0;
5524
+ left: 0;
5525
+ width: 100%;
5526
+ height: 100%;
5527
+ border: 2px solid #d94f5c;
5528
+ border-width: 0 2px;
5529
+ -webkit-transform-origin: 0% 50%;
5530
+ transform-origin: 0% 50%;
5531
+ }
5532
+
5533
+ /* animates out at transition start */
5534
+ html body .modula > .filters.menu--titania .modula_menu__lines::before {
5535
+ -webkit-transform: scale3d(1, 0, 1);
5536
+ transform: scale3d(1, 0, 1);
5537
+ -webkit-transition: -webkit-transform 0.2s ease;
5538
+ transition: transform 0.2s ease;
5539
+ }
5540
+
5541
+ /* animates back in at transition end */
5542
+ html body .modula > .filters.menu--titania .modula_menu__lines::after {
5543
+ -webkit-transform: scale3d(1, 1, 1);
5544
+ transform: scale3d(1, 1, 1);
5545
+ -webkit-transition: -webkit-transform 0.2s ease 0.7s;
5546
+ transition: transform 0.2s ease 0.7s;
5547
+ }
5548
+
5549
+ html body .modula > .filters.menu--titania .modula_menu__item:active:not(.modula_menu__item--current) ~ .modula_menu__lines::before,
5550
+ html body .modula > .filters.menu--titania .modula_menu__item:active:not(.modula_menu__item--current) ~ .modula_menu__lines::after {
5551
+ -webkit-transition: -webkit-transform 0s;
5552
+ transition: transform 0s;
5553
+ }
5554
+
5555
+ html body .modula > .filters.menu--titania .modula_menu__item:active:not(.modula_menu__item--current) ~ .modula_menu__lines::before {
5556
+ -webkit-transform: scale3d(1, 1, 1);
5557
+ transform: scale3d(1, 1, 1);
5558
+ }
5559
+
5560
+ html body .modula > .filters.menu--titania .modula_menu__item:active:not(.modula_menu__item--current) ~ .modula_menu__lines::after {
5561
+ -webkit-transform: scale3d(1, 0, 1);
5562
+ transform: scale3d(1, 0, 1);
5563
+ }
5564
+
5565
+ html body .modula > .filters.menu--titania .modula_menu__item:nth-child(1).modula_menu__item--current ~ .modula_menu__lines {
5566
+ -webkit-transform: translate3d(0, 0, 0);
5567
+ transform: translate3d(0, 0, 0);
5568
+ }
5569
+
5570
+ html body .modula > .filters.menu--titania .modula_menu__item:nth-child(2).modula_menu__item--current ~ .modula_menu__lines {
5571
+ -webkit-transform: translate3d(100%, 0, 0);
5572
+ transform: translate3d(100%, 0, 0);
5573
+ }
5574
+
5575
+ html body .modula > .filters.menu--titania .modula_menu__item:nth-child(3).modula_menu__item--current ~ .modula_menu__lines {
5576
+ -webkit-transform: translate3d(200%, 0, 0);
5577
+ transform: translate3d(200%, 0, 0);
5578
+ }
5579
+
5580
+ html body .modula > .filters.menu--titania .modula_menu__item:nth-child(4).modula_menu__item--current ~ .modula_menu__lines {
5581
+ -webkit-transform: translate3d(300%, 0, 0);
5582
+ transform: translate3d(300%, 0, 0);
5583
+ }
5584
+
5585
+ html body .modula > .filters.menu--titania .modula_menu__item:nth-child(5).modula_menu__item--current ~ .modula_menu__lines {
5586
+ -webkit-transform: translate3d(400%, 0, 0);
5587
+ transform: translate3d(400%, 0, 0);
5588
+ }
5589
+
5590
+ @media screen and (max-width:55em) {
5591
+ html body .modula > .filters.menu--titania .modula_menu__lines {
5592
+ height: 20%;
5593
+ border-width: 0 2px;
5594
+ }
5595
+
5596
+ /* horizontal lines */
5597
+ html body .modula > .filters.menu--titania .modula_menu__lines::before,
5598
+ html body .modula > .filters.menu--titania .modula_menu__lines::after {
5599
+ border-width: 2px 0;
5600
+ -webkit-transform-origin: 50% 0%;
5601
+ transform-origin: 50% 0%;
5602
+ }
5603
+
5604
+ html body .modula > .filters.menu--titania .modula_menu__lines::before {
5605
+ -webkit-transform: scale3d(0, 1, 1);
5606
+ transform: scale3d(0, 1, 1);
5607
+ }
5608
+
5609
+ html body .modula > .filters.menu--titania .modula_menu__item:active:not(.modula_menu__item--current) ~ .modula_menu__lines::after {
5610
+ -webkit-transform: scale3d(0, 1, 1);
5611
+ transform: scale3d(0, 1, 1);
5612
+ }
5613
+
5614
+ html body .modula > .filters.menu--titania .modula_menu__item:nth-child(1).modula_menu__item--current ~ .modula_menu__lines {
5615
+ -webkit-transform: translate3d(0, 0, 0);
5616
+ transform: translate3d(0, 0, 0);
5617
+ }
5618
+
5619
+ html body .modula > .filters.menu--titania .modula_menu__item:nth-child(2).modula_menu__item--current ~ .modula_menu__lines {
5620
+ -webkit-transform: translate3d(0, 100%, 0);
5621
+ transform: translate3d(0, 100%, 0);
5622
+ }
5623
+
5624
+ html body .modula > .filters.menu--titania .modula_menu__item:nth-child(3).modula_menu__item--current ~ .modula_menu__lines {
5625
+ -webkit-transform: translate3d(0, 200%, 0);
5626
+ transform: translate3d(0, 200%, 0);
5627
+ }
5628
+
5629
+ html body .modula > .filters.menu--titania .modula_menu__item:nth-child(4).modula_menu__item--current ~ .modula_menu__lines {
5630
+ -webkit-transform: translate3d(0, 300%, 0);
5631
+ transform: translate3d(0, 300%, 0);
5632
+ }
5633
+
5634
+ html body .modula > .filters.menu--titania .modula_menu__item:nth-child(5).modula_menu__item--current ~ .modula_menu__lines {
5635
+ -webkit-transform: translate3d(0, 400%, 0);
5636
+ transform: translate3d(0, 400%, 0);
5637
+ }
5638
+ }
5639
+
5640
+ /* bagot (by @RplusTW) */
5641
+ html body .modula > .filters.menu--bagot .modula_menu__item {
5642
+ position: relative;
5643
+ }
5644
+
5645
+ html body .modula > .filters.menu--bagot .modula_menu__link {
5646
+ position: relative;
5647
+ min-width: 7rem;
5648
+ height: 50px;
5649
+ padding: 1em 1.5em;
5650
+ text-align: center;
5651
+ opacity: 0.7;
5652
+ color: #929292;
5653
+ -webkit-transition: opacity 0.3s;
5654
+ transition: opacity 0.3s;
5655
+ }
5656
+
5657
+ html body .modula > .filters.menu--bagot .modula_menu__item::before,
5658
+ html body .modula > .filters.menu--bagot .modula_menu__item::after {
5659
+ content: '';
5660
+ position: absolute;
5661
+ z-index: -1;
5662
+ top: 0;
5663
+ right: 0;
5664
+ bottom: 0;
5665
+ left: 0;
5666
+ color: #d94f5c;
5667
+ border-style: solid;
5668
+ -webkit-transition: -webkit-transform 0.2s cubic-bezier(1, 0.6, 0, 1);
5669
+ transition: transform 0.2s cubic-bezier(1, 0.6, 0, 1);
5670
+ }
5671
+
5672
+ html body .modula > .filters.menu--bagot .modula_menu__item::before {
5673
+ border-width: 2px 0 0;
5674
+ -webkit-transform: translateY(calc(100% - 2px));
5675
+ transform: translateY(calc(100% - 2px));
5676
+ }
5677
+
5678
+ html body .modula > .filters.menu--bagot .modula_menu__item::after {
5679
+ right: -1px;
5680
+ left: -1px; /* for border-collapse */
5681
+ border-width: 0 2px;
5682
+ -webkit-transform: scale(1, 0);
5683
+ transform: scale(1, 0);
5684
+ -webkit-transform-origin: 50% 100%;
5685
+ transform-origin: 50% 100%;
5686
+ }
5687
+
5688
+ html body .modula > .filters.menu--bagot .modula_menu__item.modula_menu__item--current::before {
5689
+ -webkit-transform: translate(0, 0);
5690
+ transform: translate(0, 0);
5691
+ -webkit-transition-timing-function: cubic-bezier(1, 0.6, 0, 1.22);
5692
+ transition-timing-function: cubic-bezier(1, 0.6, 0, 1.22);
5693
+ }
5694
+
5695
+ html body .modula > .filters.menu--bagot .modula_menu__item.modula_menu__item--current::after {
5696
+ -webkit-transform: scale(1);
5697
+ transform: scale(1);
5698
+ -webkit-transition-timing-function: cubic-bezier(1, 0.6, 0, 1.22);
5699
+ transition-timing-function: cubic-bezier(1, 0.6, 0, 1.22);
5700
+ }
5701
+
5702
+ html body .modula > .filters.menu--bagot .modula_menu__item--current .modula_menu__link,
5703
+ html body .modula > .filters.menu--bagot .modula_menu__link:hover,
5704
+ html body .modula > .filters.menu--bagot .modula_menu__link:focus {
5705
+ opacity: 1;
5706
+ }
5707
+
5708
+ html body .modula > .filters.menu--bagot .modula_menu__item--current .modula_menu__link {
5709
+ color: #d94f5c;
5710
+ }
5711
+
5712
+ @media screen and (max-width:55em) {
5713
+ html body .modula > .filters.menu--bagot .modula_menu__item {
5714
+ margin: 0;
5715
+ }
5716
+
5717
+ html body .modula > .filters.menu--bagot .modula_menu__item::before {
5718
+ border-width: 0 2px 0 0;
5719
+ -webkit-transform: translateX(calc(2px - 100%));
5720
+ transform: translateX(calc(2px - 100%));
5721
+ }
5722
+
5723
+ html body .modula > .filters.menu--bagot .modula_menu__item::after {
5724
+ top: -1px;
5725
+ right: 0;
5726
+ bottom: -1px;
5727
+ left: 0;
5728
+ border-width: 2px 0;
5729
+ -webkit-transform: scale(0, 1);
5730
+ transform: scale(0, 1);
5731
+ -webkit-transform-origin: 0% 50%;
5732
+ transform-origin: 0% 50%;
5733
+ }
5734
+ }
5735
+
5736
+ /* Shylock (by @benhanks040888) */
5737
+ html body .modula > .filters.menu--shylock .modula_menu__link {
5738
+ position: relative;
5739
+ margin: 0 1em;
5740
+ padding-right: 0;
5741
+ padding-left: 0;
5742
+ color: #b5b5b5;
5743
+ -webkit-transition: color 0.4s;
5744
+ transition: color 0.4s;
5745
+ }
5746
+
5747
+ html body .modula > .filters.menu--shylock .modula_menu__item--current .modula_menu__link,
5748
+ html body .modula > .filters.menu--shylock .modula_menu__item--current .modula_menu__link:hover,
5749
+ html body .modula > .filters.menu--shylock .modula_menu__item--current .modula_menu__link:focus {
5750
+ color: #d94f5c;
5751
+ }
5752
+
5753
+ html body .modula > .filters.menu--shylock .modula_menu__item--current .modula_menu__link::after,
5754
+ html body .modula > .filters.menu--shylock .modula_menu__item--current .modula_menu__link::before {
5755
+ -webkit-transform: scale3d(1, 1, 1);
5756
+ transform: scale3d(1, 1, 1);
5757
+ }
5758
+
5759
+ html body .modula > .filters.menu--shylock.modula_menu__item--current .modula_menu__link::before {
5760
+ -webkit-transition-delay: 0s;
5761
+ transition-delay: 0s;
5762
+ }
5763
+
5764
+ html body .modula > .filters.menu--shylock .modula_menu__link:hover,
5765
+ html body .modula > .filters.menu--shylock .modula_menu__link:focus {
5766
+ color: #b5b5b5;
5767
+ }
5768
+
5769
+ html body .modula > .filters.menu--shylock .modula_menu__link:hover::before,
5770
+ html body .modula > .filters.menu--shylock .modula_menu__link:focus::before {
5771
+ -webkit-transform: scale3d(1, 1, 1);
5772
+ transform: scale3d(1, 1, 1);
5773
+ -webkit-transition-delay: 0s;
5774
+ transition-delay: 0s;
5775
+ }
5776
+
5777
+ html body .modula > .filters.menu--shylock .modula_menu__link::before,
5778
+ html body .modula > .filters.menu--shylock .modula_menu__link::after {
5779
+ content: '';
5780
+ position: absolute;
5781
+ bottom: 0;
5782
+ left: 0;
5783
+ width: 100%;
5784
+ height: 3px;
5785
+ -webkit-transform: scale3d(0, 1, 1);
5786
+ transform: scale3d(0, 1, 1);
5787
+ -webkit-transform-origin: center left;
5788
+ transform-origin: center left;
5789
+ -webkit-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
5790
+ transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
5791
+ }
5792
+
5793
+ html body .modula > .filters.menu--shylock .modula_menu__link::before {
5794
+ background: #b5b5b5;
5795
+ -webkit-transition-delay: 0.4s;
5796
+ transition-delay: 0.4s;
5797
+ }
5798
+
5799
+ html body .modula > .filters.menu--shylock .modula_menu__link::after {
5800
+ background: #d94f5c;
5801
+ }
5802
+
5803
+ /* Cordelia (by @vivien_le_neez) */
5804
+ html body .modula > .filters.menu--cordelia .modula_menu__item {
5805
+ position: relative;
5806
+ }
5807
+
5808
+ html body .modula > .filters.menu--cordelia .modula_menu__link {
5809
+ -webkit-transition: color 0.3s;
5810
+ transition: color 0.3s;
5811
+ }
5812
+
5813
+ html body .modula > .filters.menu--cordelia .modula_menu__item--current .modula_menu__link {
5814
+ color: #d94f5c;
5815
+ -webkit-transition: color 0.6s;
5816
+ transition: color 0.6s;
5817
+ }
5818
+
5819
+ html body .modula > .filters.menu--cordelia .modula_menu__item::before,
5820
+ html body .modula > .filters.menu--cordelia .modula_menu__item::after {
5821
+ content: '';
5822
+ position: absolute;
5823
+ z-index: 10;
5824
+ width: 100%;
5825
+ height: 2px;
5826
+ background: #d94f5c;
5827
+ -webkit-transform: scale3d(0, 1, 1);
5828
+ transform: scale3d(0, 1, 1);
5829
+ -webkit-animation-fill-mode: initial;
5830
+ animation-fill-mode: initial;
5831
+ }
5832
+
5833
+ html body .modula > .filters.menu--cordelia .modula_menu__item::before {
5834
+ top: 0;
5835
+ right: 0;
5836
+ -webkit-transform-origin: 100% 50%;
5837
+ transform-origin: 100% 50%;
5838
+ }
5839
+
5840
+ html body .modula > .filters.menu--cordelia .modula_menu__item::after {
5841
+ bottom: 0;
5842
+ left: 0;
5843
+ -webkit-transform-origin: 0% 50%;
5844
+ transform-origin: 0% 50%;
5845
+ }
5846
+
5847
+ html body .modula > .filters.menu--cordelia .modula_menu__item--current::before {
5848
+ -webkit-animation: anim-cordelia-top 0.6s linear both;
5849
+ animation: anim-cordelia-top 0.6s linear both;
5850
+ }
5851
+
5852
+ html body .modula > .filters.menu--cordelia .modula_menu__item--current::after {
5853
+ -webkit-animation: anim-cordelia-bottom 0.6s linear both;
5854
+ animation: anim-cordelia-bottom 0.6s linear both;
5855
+ }
5856
+
5857
+ @-webkit-keyframes anim-cordelia-top {
5858
+ 0% {
5859
+ -webkit-transform: scale3d(0, 1, 1);
5860
+ transform: scale3d(0, 1, 1);
5861
+ }
5862
+
5863
+ 10% {
5864
+ -webkit-transform: scale3d(0.05, 1, 1);
5865
+ transform: scale3d(0.05, 1, 1);
5866
+ -webkit-animation-timing-function: ease-in;
5867
+ animation-timing-function: ease-in;
5868
+ }
5869
+
5870
+ 50% {
5871
+ -webkit-transform: translate3d(-95%, 0, 0) scale3d(0.05, 1, 1);
5872
+ transform: translate3d(-95%, 0, 0) scale3d(0.05, 1, 1);
5873
+ -webkit-animation-timing-function: ease-out;
5874
+ animation-timing-function: ease-out;
5875
+ }
5876
+
5877
+ 100% {
5878
+ -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
5879
+ transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
5880
+ }
5881
+ }
5882
+
5883
+ @keyframes anim-cordelia-top {
5884
+ 0% {
5885
+ -webkit-transform: scale3d(0, 1, 1);
5886
+ transform: scale3d(0, 1, 1);
5887
+ }
5888
+
5889
+ 10% {
5890
+ -webkit-transform: scale3d(0.05, 1, 1);
5891
+ transform: scale3d(0.05, 1, 1);
5892
+ -webkit-animation-timing-function: ease-in;
5893
+ animation-timing-function: ease-in;
5894
+ }
5895
+
5896
+ 50% {
5897
+ -webkit-transform: translate3d(-95%, 0, 0) scale3d(0.05, 1, 1);
5898
+ transform: translate3d(-95%, 0, 0) scale3d(0.05, 1, 1);
5899
+ -webkit-animation-timing-function: ease-out;
5900
+ animation-timing-function: ease-out;
5901
+ }
5902
+
5903
+ 100% {
5904
+ -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
5905
+ transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
5906
+ }
5907
+ }
5908
+
5909
+ @-webkit-keyframes anim-cordelia-bottom {
5910
+ 0% {
5911
+ -webkit-transform: scale3d(0, 1, 1);
5912
+ transform: scale3d(0, 1, 1);
5913
+ }
5914
+
5915
+ 10% {
5916
+ -webkit-transform: scale3d(0.05, 1, 1);
5917
+ transform: scale3d(0.05, 1, 1);
5918
+ -webkit-animation-timing-function: ease-in;
5919
+ animation-timing-function: ease-in;
5920
+ }
5921
+
5922
+ 50% {
5923
+ -webkit-transform: translate3d(95%, 0, 0) scale3d(0.05, 1, 1);
5924
+ transform: translate3d(95%, 0, 0) scale3d(0.05, 1, 1);
5925
+ -webkit-animation-timing-function: ease-out;
5926
+ animation-timing-function: ease-out;
5927
+ }
5928
+
5929
+ 100% {
5930
+ -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
5931
+ transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
5932
+ }
5933
+ }
5934
+
5935
+ @keyframes anim-cordelia-bottom {
5936
+ 0% {
5937
+ -webkit-transform: scale3d(0, 1, 1);
5938
+ transform: scale3d(0, 1, 1);
5939
+ }
5940
+
5941
+ 10% {
5942
+ -webkit-transform: scale3d(0.05, 1, 1);
5943
+ transform: scale3d(0.05, 1, 1);
5944
+ -webkit-animation-timing-function: ease-in;
5945
+ animation-timing-function: ease-in;
5946
+ }
5947
+
5948
+ 50% {
5949
+ -webkit-transform: translate3d(95%, 0, 0) scale3d(0.05, 1, 1);
5950
+ transform: translate3d(95%, 0, 0) scale3d(0.05, 1, 1);
5951
+ -webkit-animation-timing-function: ease-out;
5952
+ animation-timing-function: ease-out;
5953
+ }
5954
+
5955
+ 100% {
5956
+ -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
5957
+ transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
5958
+ }
5959
+ }
5960
+
5961
+ /* Horatio Styles */
5962
+
5963
+ html body .modula > .filters.menu--horatio .modula_menu__item {
5964
+ margin-left: 3px;
5965
+ margin-right: 3px;
5966
+ color: #4e3c3e;
5967
+ }
5968
+
5969
+ html body .modula > .filters.menu--horatio .modula_menu__item {
5970
+ position: relative;
5971
+ -webkit-transition: color .25s;
5972
+ transition: color .25s;
5973
+ }
5974
+
5975
+ html body .modula > .filters.menu--horatio .modula_menu__item a {
5976
+ position: relative;
5977
+ color: inherit;
5978
+ width:auto;
5979
+ text-align:center;
5980
+ }
5981
+
5982
+ html body .modula > .filters.menu--horatio .modula_menu__item--current {
5983
+ color: #b5b5b5;
5984
+ }
5985
+
5986
+ html body .modula > .filters.menu--horatio .modula_menu__item:hover {
5987
+ color: #d94f5c;
5988
+ }
5989
+
5990
+ html body .modula > .filters.menu--horatio .modula_menu__item::before,
5991
+ html body .modula > .filters.menu--horatio .modula_menu__item::after,
5992
+ html body .modula > .filters.menu--horatio .modula_menu__item a::before,
5993
+ html body .modula > .filters.menu--horatio .modula_menu__item a::after {
5994
+ position: absolute;
5995
+ display: block;
5996
+ top: 0;
5997
+ right: 0;
5998
+ bottom: 0;
5999
+ left: 0;
6000
+ border: 2px solid currentColor;
6001
+ }
6002
+
6003
+ html body .modula > .filters.menu--horatio .modula_menu__item::before {
6004
+ border-width: 0 0 0 2px;
6005
+ -webkit-transform-origin: left bottom;
6006
+ transform-origin: left bottom;
6007
+ }
6008
+
6009
+ html body .modula > .filters.menu--horatio .modula_menu__item::after {
6010
+ border-width: 0 2px 0 0;
6011
+ -webkit-transform-origin: right top;
6012
+ transform-origin: right top;
6013
+ }
6014
+
6015
+ html body .modula > .filters.menu--horatio .modula_menu__item a::before,
6016
+ html body .modula > .filters.menu--horatio .modula_menu__item a::after {
6017
+ z-index: 2;
6018
+ }
6019
+
6020
+ html body .modula > .filters.menu--horatio .modula_menu__item a::before {
6021
+ border-width: 2px 0 0;
6022
+ -webkit-transform-origin: left top;
6023
+ transform-origin: left top;
6024
+ }
6025
+
6026
+ html body .modula > .filters.menu--horatio .modula_menu__item a::after {
6027
+ border-width: 0 0 2px;
6028
+ -webkit-transform-origin: right bottom;
6029
+ transform-origin: right bottom;
6030
+ }
6031
+
6032
+ html body .modula > .filters.menu--horatio .modula_menu__item--current::before,
6033
+ html body .modula > .filters.menu--horatio .modula_menu__item--current::after,
6034
+ html body .modula > .filters.menu--horatio .modula_menu__item:hover::before,
6035
+ html body .modula > .filters.menu--horatio .modula_menu__item:hover::after,
6036
+ html body .modula > .filters.menu--horatio .modula_menu__item--current a::before,
6037
+ html body .modula > .filters.menu--horatio .modula_menu__item--current a::after,
6038
+ html body .modula > .filters.menu--horatio .modula_menu__item:hover a::before,
6039
+ html body .modula > .filters.menu--horatio .modula_menu__item:hover a::after {
6040
+ content: '';
6041
+ background-color: transparent !important;
6042
+ }
6043
+
6044
+ html body .modula > .filters.menu--horatio .modula_menu__item:not(.modula_menu__item--current):hover::before,
6045
+ html body .modula > .filters.menu--horatio .modula_menu__item:not(.modula_menu__item--current):hover::after,
6046
+ html body .modula > .filters.menu--horatio .modula_menu__item:not(.modula_menu__item--current):hover a::before,
6047
+ html body .modula > .filters.menu--horatio .modula_menu__item:not(.modula_menu__item--current):hover a::after {
6048
+ -webkit-animation: horatio-anim .6s ease-in-out;
6049
+ animation: horatio-anim .6s ease-in-out;
6050
+ }
6051
+
6052
+ html body .modula > .filters.menu--horatio .modula_menu__item:not(.modula_menu__item--current):hover::before {
6053
+ -webkit-animation-delay: -.45s;
6054
+ animation-delay: -.45s;
6055
+ }
6056
+
6057
+ html body .modula > .filters.menu--horatio .modula_menu__item:not(.modula_menu__item--current):hover a::before {
6058
+ -webkit-animation-delay: -.3s;
6059
+ animation-delay: -.3s;
6060
+ }
6061
+
6062
+ html body .modula > .filters.menu--horatio .modula_menu__item:not(.modula_menu__item--current):hover::after {
6063
+ -webkit-animation-delay: -.15s;
6064
+ animation-delay: -.15s;
6065
+ }
6066
+
6067
+ html body .modula > .filters.menu--horatio .modula_menu__item:not(.modula_menu__item--current):hover a::after {
6068
+ -webkit-animation-delay: 0;
6069
+ animation-delay: 0;
6070
+ }
6071
+
6072
+ @-webkit-keyframes horatio-anim {
6073
+ 0%, 33% {
6074
+ opacity: 0;
6075
+ -webkit-transform: rotate(45deg) scale(1.5);
6076
+ transform: rotate(45deg) scale(1.5);
6077
+ }
6078
+
6079
+ 100% {
6080
+ opacity: 1;
6081
+ -webkit-transform: none;
6082
+ transform: none;
6083
+ }
6084
+ }
6085
+
6086
+ @keyframes horatio-anim {
6087
+ 0%, 33% {
6088
+ opacity: 0;
6089
+ -webkit-transform: rotate(45deg) scale(1.5);
6090
+ transform: rotate(45deg) scale(1.5);
6091
+ }
6092
+
6093
+ 100% {
6094
+ opacity: 1;
6095
+ -webkit-transform: none;
6096
+ transform: none;
6097
+ }
6098
+ }
6099
+
6100
+ /* End: Horatio Styles */
6101
+
6102
+ /* Luce (by @ryjohnson) */
6103
+ html body .modula > .filters.menu--luce .modula_menu__item {
6104
+ position: relative;
6105
+ margin: 1em;
6106
+ }
6107
+
6108
+ html body .modula > .filters.menu--luce .modula_menu__link {
6109
+ position: relative;
6110
+ display: block;
6111
+ min-width: 100px;
6112
+ text-align: center;
6113
+ color: #b5b5b5;
6114
+ -webkit-transition: color 0.6s;
6115
+ transition: color 0.6s;
6116
+ }
6117
+
6118
+ html body .modula > .filters.menu--luce .modula_menu__link:hover,
6119
+ html body .modula > .filters.menu--luce .modula_menu__link:focus {
6120
+ color: #929292;
6121
+ }
6122
+
6123
+ html body .modula > .filters.menu--luce .modula_menu__item--current .modula_menu__link {
6124
+ color: #d94f5c;
6125
+ }
6126
+
6127
+ html body .modula > .filters.menu--luce .modula_menu__item::before,
6128
+ html body .modula > .filters.menu--luce .modula_menu__item::after,
6129
+ html body .modula > .filters.menu--luce .modula_menu__link::before,
6130
+ html body .modula > .filters.menu--luce .modula_menu__link::after {
6131
+ content: '';
6132
+ position: absolute;
6133
+ background: #b5b5b5;
6134
+ -webkit-transition: -webkit-transform 0.25s, background .75s;
6135
+ transition: transform 0.25s, background .75s;
6136
+ -webkit-transition-timing-function: cubic-bezier(1, 0.53, 0.79, 0.68);
6137
+ transition-timing-function: cubic-bezier(1, 0.53, 0.79, 0.68);
6138
+ }
6139
+
6140
+ /* left and right line */
6141
+ html body .modula > .filters.menu--luce .modula_menu__item::before,
6142
+ html body .modula > .filters.menu--luce .modula_menu__item::after {
6143
+ top: 0;
6144
+ width: 2px;
6145
+ height: 100%;
6146
+ -webkit-transform: scale3d(1, 0, 1);
6147
+ transform: scale3d(1, 0, 1);
6148
+ }
6149
+
6150
+ /* left line */
6151
+ html body .modula > .filters.menu--luce .modula_menu__item::before {
6152
+ left: 0;
6153
+ -webkit-transform-origin: 0% 0%;
6154
+ transform-origin: 0% 0%;
6155
+ }
6156
+
6157
+ /* right line */
6158
+ html body .modula > .filters.menu--luce .modula_menu__item::after {
6159
+ right: 0;
6160
+ -webkit-transform-origin: 50% 0%;
6161
+ transform-origin: 50% 0%;
6162
+ }
6163
+
6164
+ /* top and bottom line */
6165
+ html body .modula > .filters.menu--luce .modula_menu__link::before,
6166
+ html body .modula > .filters.menu--luce .modula_menu__link::after {
6167
+ left: 0;
6168
+ width: 100%;
6169
+ height: 2px;
6170
+ -webkit-transform: scale3d(0, 1, 1);
6171
+ transform: scale3d(0, 1, 1);
6172
+ }
6173
+
6174
+ /* top line */
6175
+ html body .modula > .filters.menu--luce .modula_menu__link::before {
6176
+ top: 0;
6177
+ -webkit-transform-origin: 0 50%;
6178
+ transform-origin: 0 50%;
6179
+ }
6180
+
6181
+ /* bottom line */
6182
+ html body .modula > .filters.menu--luce .modula_menu__link::after {
6183
+ bottom: 0;
6184
+ -webkit-transform-origin: 0% 50%;
6185
+ transform-origin: 0% 50%;
6186
+ }
6187
+
6188
+ /* Delays (first reverse, then current) */
6189
+ /* These rules can be simplified, but let's keep it for better readability */
6190
+
6191
+ /* bottom line */
6192
+ html body .modula > .filters.menu--luce .modula_menu__item .modula_menu__link::after {
6193
+ -webkit-transition-delay: 0s;
6194
+ transition-delay: 0s;
6195
+ }
6196
+
6197
+ html body .modula > .filters.menu--luce .modula_menu__item--current .modula_menu__link::after {
6198
+ -webkit-transition-delay: 0.25s;
6199
+ transition-delay: 0.25s;
6200
+ }
6201
+
6202
+ /* left line */
6203
+ html body .modula > .filters.menu--luce .modula_menu__item::before {
6204
+ -webkit-transition-delay: 0.25s;
6205
+ transition-delay: 0.25s;
6206
+ }
6207
+
6208
+ html body .modula > .filters.menu--luce .modula_menu__item--current::before {
6209
+ -webkit-transition-delay: 0s;
6210
+ transition-delay: 0s;
6211
+ }
6212
+
6213
+ /* top line */
6214
+ html body .modula > .filters.menu--luce .modula_menu__item .modula_menu__link::before {
6215
+ -webkit-transition-delay: 0.25s;
6216
+ transition-delay: 0.25s;
6217
+ }
6218
+
6219
+ html body .modula > .filters.menu--luce .modula_menu__item--current .modula_menu__link::before {
6220
+ -webkit-transition-delay: 0s;
6221
+ transition-delay: 0s;
6222
+ }
6223
+
6224
+ /* right line */
6225
+ html body .modula > .filters.menu--luce .modula_menu__item--current::after {
6226
+ -webkit-transition-delay: 0.25s;
6227
+ transition-delay: 0.25s;
6228
+ }
6229
+
6230
+ html body .modula > .filters.menu--luce .modula_menu__item--current::before,
6231
+ html body .modula > .filters.menu--luce .modula_menu__item--current::after,
6232
+ html body .modula > .filters.menu--luce .modula_menu__item--current .modula_menu__link::before,
6233
+ html body .modula > .filters.menu--luce .modula_menu__item--current .modula_menu__link::after {
6234
+ -webkit-transform: scale3d(1, 1, 1);
6235
+ transform: scale3d(1, 1, 1);
6236
+ background: #d94f5c;
6237
+ }
6238
+ /* End: Luce Styles */
6239
+
6240
+ /* Juliet Styles */
6241
+
6242
+ html body .modula > .filters.menu--juliet .modula_menu__item {
6243
+ position: relative;
6244
+ -webkit-transition: color .25s;
6245
+ transition: color .25s;
6246
+ }
6247
+
6248
+ html body .modula > .filters.menu--juliet .modula_menu__item::before,
6249
+ html body .modula > .filters.menu--juliet .modula_menu__item::after,
6250
+ html body .modula > .filters.menu--juliet .modula_menu__item--current::before,
6251
+ html body .modula > .filters.menu--juliet .modula_menu__item--current::after {
6252
+ position: absolute;
6253
+ left: 50%;
6254
+ width: 0;
6255
+ height: 0;
6256
+ border: solid transparent;
6257
+ content: '';
6258
+ pointer-events: none;
6259
+ top: 100% !important;
6260
+ }
6261
+ html body .modula > .filters.menu--juliet .modula_menu__item::before,
6262
+ html body .modula > .filters.menu--juliet .modula_menu__item::after {
6263
+ -webkit-transform: scale3d(0, 1, 1);
6264
+ transform: scale3d(0, 1, 1);
6265
+ -webkit-transform-origin: left left;
6266
+ transform-origin: left left;
6267
+ -webkit-transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
6268
+ transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
6269
+ background:transparent !important;
6270
+
6271
+ }
6272
+
6273
+ html body .modula > .filters.menu--juliet .modula_menu__item--current::before,
6274
+ html body .modula > .filters.menu--juliet .modula_menu__item--current::after {
6275
+ -webkit-transform: scale3d(1, 1, 1);
6276
+ transform: scale3d(1, 1, 1);
6277
+ -webkit-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
6278
+ transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
6279
+ }
6280
+
6281
+ html body .modula > .filters.menu--juliet .modula_menu__item:hover::before,
6282
+ html body .modula > .filters.menu--juliet .modula_menu__item:hover::after {
6283
+ -webkit-transform: scale3d(1, 1, 1);
6284
+ transform: scale3d(1, 1, 1);
6285
+ -webkit-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
6286
+ transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
6287
+ }
6288
+
6289
+
6290
+ html body .modula > .filters.menu--juliet .modula_menu__item::before {
6291
+ top: 100%;
6292
+ margin-left: -9px;
6293
+ border-width: 10px;
6294
+ border-top-color: #b5b5b5;
6295
+ }
6296
+
6297
+ html body .modula > .filters.menu--juliet .modula_menu__item--current::before {
6298
+ margin-left: -9px;
6299
+ border-width: 10px;
6300
+ border-top-color: #d94f5c;
6301
+ border-bottom-color:transparent !important;
6302
+ border-left-color: transparent !important;
6303
+ border-right-color: transparent !important;
6304
+ }
6305
+
6306
+ html body .modula > .filters.menu--juliet .modula_menu__item::after,
6307
+ html body .modula > .filters.menu--juliet .modula_menu__item--current::after {
6308
+ top: 94%;
6309
+ margin-left: -5px;
6310
+ border-width: 6px;
6311
+ border-top-color: #2a282b;
6312
+ border-bottom-color:transparent !important;
6313
+ border-left-color: transparent !important;
6314
+ border-right-color: transparent !important;
6315
+ }
6316
+
6317
+ html body .modula > .filters.menu--juliet .modula_menu__link {
6318
+ position: relative;
6319
+ margin: 0 1em;
6320
+ padding-right: 0;
6321
+ padding-left: 0;
6322
+ color: #b5b5b5;
6323
+ -webkit-transition: color 0.4s;
6324
+ transition: color 0.4s;
6325
+ }
6326
+
6327
+ html body .modula > .filters.menu--juliet .modula_menu__item--current .modula_menu__link,
6328
+ html body .modula > .filters.menu--juliet .modula_menu__item--current .modula_menu__link:hover,
6329
+ html body .modula > .filters.menu--juliet .modula_menu__item--current .modula_menu__link:focus {
6330
+ color: #d94f5c;
6331
+ }
6332
+
6333
+ html body .modula > .filters.menu--juliet .modula_menu__item--current .modula_menu__link::after,
6334
+ html body .modula > .filters.menu--juliet .modula_menu__item--current .modula_menu__link::before {
6335
+ -webkit-transform: scale3d(1, 1, 1);
6336
+ transform: scale3d(1, 1, 1);
6337
+ }
6338
+
6339
+ html body .modula > .filters.menu--juliet .modula_menu__item--current .modula_menu__link::before {
6340
+ -webkit-transition-delay: 0s;
6341
+ transition-delay: 0s;
6342
+ }
6343
+
6344
+ html body .modula > .filters.menu--juliet .modula_menu__link:hover,
6345
+ html body .modula > .filters.menu--juliet .modula_menu__link:focus {
6346
+ color: #b5b5b5;
6347
+ }
6348
+
6349
+ html body .modula > .filters.menu--juliet .modula_menu__item:hover .modula_menu__link::before,
6350
+ html body .modula > .filters.menu--juliet .modula_menu__item:focus .modula_menu__link::before {
6351
+ -webkit-transform: scale3d(1, 1, 1);
6352
+ transform: scale3d(1, 1, 1);
6353
+ -webkit-transition-delay: 0s;
6354
+ transition-delay: 0s;
6355
+ }
6356
+
6357
+ html body .modula > .filters.menu--juliet .modula_menu__link::before,
6358
+ html body .modula > .filters.menu--juliet .modula_menu__link::after {
6359
+ content: '';
6360
+ position: absolute;
6361
+ bottom: 0;
6362
+ left: 0;
6363
+ width: 100%;
6364
+ height: 3px;
6365
+ -webkit-transform: scale3d(0, 1, 1);
6366
+ transform: scale3d(0, 1, 1);
6367
+ -webkit-transform-origin: center left;
6368
+ transform-origin: center left;
6369
+ -webkit-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
6370
+ transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
6371
+ }
6372
+
6373
+ html body .modula > .filters.menu--juliet .modula_menu__link::before {
6374
+ background: #b5b5b5;
6375
+ -webkit-transition-delay: 0.4s;
6376
+ transition-delay: 0.4s;
6377
+ }
6378
+
6379
+ html body .modula > .filters.menu--juliet .modula_menu__link::after {
6380
+ background: #d94f5c;
6381
+ }
6382
+
6383
+ /* End: Juliet Styles */
6384
+
6385
+ /* Invulner Styles */
6386
+
6387
+ html body .modula > .filters.menu--invulner .modula_menu__link {
6388
+ position: relative;
6389
+ -webkit-transition: color .4s ease-in;
6390
+ transition: color .4s ease-in;
6391
+ }
6392
+
6393
+ html body .modula > .filters.menu--invulner .modula_menu__item--current .modula_menu__link {
6394
+ color: #d94f5c;
6395
+ }
6396
+
6397
+ html body .modula > .filters.menu--invulner .modula_menu__link::before {
6398
+ content: '';
6399
+ position: absolute;
6400
+ left: 50%;
6401
+ top: 50%;
6402
+ width: 0;
6403
+ height: 0;
6404
+ border-radius: 100%;
6405
+ border: 2px solid #d94f5c;
6406
+ -webkit-transition: all .5s cubic-bezier(.52,.27,.4,1.52);
6407
+ transition: all .5s cubic-bezier(.52,.27,.4,1.52);
6408
+ opacity: 0;
6409
+ background-color:transparent !important;
6410
+ }
6411
+
6412
+ html body .modula > .filters.menu--invulner .modula_menu__item--current .modula_menu__link::before {
6413
+ left: 0;
6414
+ top: 0;
6415
+ margin-top: 0;
6416
+ margin-left: 0;
6417
+ width: 100%;
6418
+ height: 100%;
6419
+ border-radius: 0;
6420
+ opacity: 1;
6421
+ }
6422
+
6423
+ /* End: Invulner Styles */
6424
+
6425
+ /* tantalid Styles */
6426
+
6427
+ html body .modula > .filters.menu--tantalid .modula_menu__link {
6428
+ color: #929292;
6429
+ position: relative;
6430
+ -webkit-transition: color .4s ease-in;
6431
+ transition: color .4s ease-in;
6432
+ }
6433
+
6434
+ html body .modula > .filters.menu--tantalid .modula_menu__link:hover {
6435
+ color: #d94f5c;
6436
+ }
6437
+
6438
+ html body .modula > .filters.menu--tantalid .modula_menu__item--current .modula_menu__link {
6439
+ color: #d94f5c;
6440
+ overflow: visible;
6441
+ }
6442
+
6443
+ html body .modula > .filters.menu--tantalid .modula_menu__link::before,
6444
+ html body .modula > .filters.menu--tantalid .modula_menu__link::after {
6445
+ content: '';
6446
+ position: absolute;
6447
+ width: 100px;
6448
+ height: 100px;
6449
+ opacity: 0;
6450
+ border: 2px solid #d94f5c;
6451
+ -webkit-transition: -webkit-transform 0.4s, opacity 0.3s, width 0.4s;
6452
+ transition: transform .4s, opacity 0.3s, width .4s;
6453
+ -webkit-transition-timing-function: linear;
6454
+ transition-timing-function: linear;
6455
+ background-color: transparent !important;
6456
+ }
6457
+
6458
+ html body .modula > .filters.menu--tantalid .modula_menu__link::before {
6459
+ top: 0;
6460
+ left: 0;
6461
+ border-width: 2px 0 0 2px;
6462
+ -webkit-transform: translate3d(-150%, 70%, 0) rotate(-30deg);
6463
+ transform: translate3d(-150%, 70%, 0) rotate(-30deg);
6464
+ }
6465
+
6466
+ html body .modula > .filters.menu--tantalid .modula_menu__link::after {
6467
+ right: 0;
6468
+ bottom: 0;
6469
+ border-width: 0 2px 2px 0;
6470
+ -webkit-transform: translate3d(150%, -70%, 0) rotate(-30deg);
6471
+ transform: translate3d(150%, -70%, 0) rotate(-30deg);
6472
+ }
6473
+
6474
+ html body .modula > .filters.menu--tantalid .modula_menu__item--current .modula_menu__link::before,
6475
+ html body .modula > .filters.menu--tantalid .modula_menu__item--current .modula_menu__link::after {
6476
+ width: 80%;
6477
+ height: 80%;
6478
+ opacity: 1;
6479
+ -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
6480
+ transform: translate3d(0, 0, 0) rotate(0deg);
6481
+ }
6482
+
6483
+ /* End: tantalid Styles */
6484
+
6485
+ /* Stack items for smaller screens */
6486
+ @media screen and (max-width:55em) {
6487
+ html body .modula > .filters .modula_menu__list {
6488
+ display: block;
6489
+ margin: 0 auto;
6490
+ }
6491
+ }
6492
+
6493
+ /**
6494
+ End Modula Filters
6495
+ */
6496
+
6497
+ /* Change Filter by color */
6498
+ .filter-by-wrapper span {
6499
+ color: #000;
6500
+ }
6501
+ .filter-by-wrapper.opened span:after{
6502
+ border-color: transparent transparent #000 transparent;
6503
+ }
6504
+ .filter-by-wrapper span:after {
6505
+ border-color: #000 transparent transparent transparent;
6506
+ }
6507
+
6508
+ /* Under Effect */
6509
+ html body .modula-gallery.modula-creative-gallery .modula-items .modula-item.effect-under .modula-item-content,
6510
+ html body .modula-gallery.modula-custom-grid .modula-items .modula-item.effect-under .modula-item-content {
6511
+ height:auto;
6512
+ opacity:1;
6513
+ }
6514
+ .modula-gallery .modula-items .modula-item.effect-under > a.modula-simple-link {
6515
+ position: absolute;
6516
+ width: 100%;
6517
+ height: 100%;
6518
+ top: 0;
6519
+ left: 0;
6520
+ }
6521
+ .modula-gallery.modula-creative-gallery .modula-items .modula-item.effect-under a.tile-inner.modula-item-link,
6522
+ .modula-gallery .modula-items .modula-item.effect-under > a {
6523
+ position: absolute;
6524
+ width: 100%;
6525
+ height: 100%;
6526
+ }
6527
+ .modula-gallery .modula-items .modula-item.effect-under {
6528
+ display: flex;
6529
+ flex-direction: column;
6530
+ }
6531
+ .modula-gallery .modula-items .modula-item.effect-under .modula-item-image-continer {
6532
+ flex-grow: 1;
6533
+ width: 100%;
6534
+ position: relative;
6535
+ overflow: hidden;
6536
+ }
6537
+ .modula-gallery .modula-items .modula-item.effect-under .figc {
6538
+ padding: 5%;
6539
+ height: auto !important;
6540
+ text-align: left;
6541
+ position: relative;
6542
+ }
6543
+
6544
+ .modula-gallery .modula-items .modula-item.effect-under .modula-item-image-continer img {
6545
+ margin:0 auto !important;
6546
+ }
6547
+ .modula-gallery .modula-items .modula-item.effect-under .figc-inner {
6548
+ width: 100%;
6549
+ }
6550
+ .modula-gallery .modula-items .modula-item.effect-under .figc .jtg-social {
6551
+ right: auto;
6552
+ position: relative;
6553
+ bottom: auto;
6554
+ text-align: left;
6555
+ }
6556
+ .modula-gallery .modula-items .modula-item.effect-under .jtg-social a {
6557
+ opacity: 1;
6558
+ }
6559
+ .modula-gallery .modula-items .modula-item.effect-under .jtg-title:before {
6560
+ display: none;
6561
+ }
6562
+
6563
+ .modula-gallery .modula-items .modula-item.effect-under .figc p.description {
6564
+ padding:10px 0;
6565
+ }
6566
+
6567
+ @media all and (max-width:480px) {
6568
+ .modula-gallery .modula-items .modula-item.effect-under .figc .jtg-social a {
6569
+ padding:5px;
6570
+ }
6571
+ }
6572
+
6573
+ /* Comun CSS */
6574
+ .modula-gallery .modula-items .modula-item.effect-julia .figc,
6575
+ .modula-gallery .modula-items .modula-item.effect-selena .figc,
6576
+ .modula-gallery .modula-items .modula-item.effect-phoebe .figc,
6577
+ .modula-gallery .modula-items .modula-item.effect-apollo .figc,
6578
+ .modula-gallery .modula-items .modula-item.effect-steve .figc,
6579
+ .modula-gallery .modula-items .modula-item.effect-jazz .figc,
6580
+ .modula-gallery .modula-items .modula-item.effect-ming .figc,
6581
+ .modula-gallery .modula-items .modula-item.effect-lexi .figc,
6582
+ .modula-gallery .modula-items .modula-item.effect-duke .figc,
6583
+ .modula-gallery .modula-items .modula-item.effect-sarah .figc {
6584
+ padding: 15%;
6585
+ }
6586
+
6587
+ .modula-gallery .modula-items .modula-item.effect-ming .figc-inner,
6588
+ .modula-gallery .modula-items .modula-item.effect-chico .figc-inner {
6589
+ width: 100%;
6590
+ padding: 7.5%;
6591
+ box-sizing: border-box;
6592
+ }
6593
+
6594
+ .modula-gallery .modula-item.effect-phoebe .figc-inner,
6595
+ .modula-gallery .modula-item.effect-jazz .figc-inner,
6596
+ .modula-gallery .modula-item.effect-lexi .figc-inner,
6597
+ .modula-gallery .modula-item.effect-duke .figc-inner,
6598
+ .modula-gallery .modula-item.effect-apollo .figc-inner {
6599
+ width: 100%;
6600
+ height: 100%;
6601
+ }
6602
+
6603
+ .modula-gallery .modula-items .modula-item.effect-chico .jtg-body .jtg-social,
6604
+ .modula-gallery .modula-items .modula-item.effect-julia .jtg-social,
6605
+ .modula-gallery .modula-items .modula-item.effect-phoebe .jtg-social,
6606
+ .modula-gallery .modula-items .modula-item.effect-ming .jtg-social,
6607
+ .modula-gallery .modula-items .modula-item.effect-lily .jtg-body .jtg-social {
6608
+ position: relative;
6609
+ bottom: auto;
6610
+ right: auto;
6611
+ }
6612
+
6613
+ .modula-gallery .modula-items .modula-item.effect-chico .jtg-body .jtg-social,
6614
+ .modula-gallery .modula-items .modula-item.effect-ming .jtg-body .jtg-social{
6615
+ text-align: center;
6616
+ }
6617
+
6618
+ .modula-gallery .modula-item.effect-milo .jtg-title:before {
6619
+ display:none;
6620
+ }
6621
+
6622
+ .modula-gallery .modula-item.effect-milo p.description {
6623
+ min-width: 60%;
6624
+ margin: 0 auto;
6625
+ }
6626
+
6627
+ .modula-effects-wrapper:after {
6628
+ content: "";
6629
+ width: 31%;
6630
+ }
6631
+
6632
+ /* Dropdown Filters */
6633
+ select.filters {
6634
+ /*background: transparent;*/
6635
+ font-size: 16px;
6636
+ font-family: sans-serif;
6637
+ /* font-weight: 700;*/
6638
+ color: #444;
6639
+ line-height: 1.3;
6640
+ padding: .6em 1.4em .5em .8em;
6641
+ width: max-content;
6642
+ box-sizing: border-box;
6643
+ margin: 0;
6644
+ border: 1px solid #aaa;
6645
+ box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
6646
+ border-radius: 3px;
6647
+ -webkit-appearance: none;
6648
+ -moz-appearance: none;
6649
+ background-color: #fff;
6650
+ background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E), linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
6651
+ background-repeat: no-repeat, repeat;
6652
+ background-position: right .7em top 50%, 0 0;
6653
+ background-size: .65em auto, 100%;
6654
+ position: relative;
6655
  }
assets/css/admin/jquery-ui.css CHANGED
@@ -1,600 +1,600 @@
1
- /*! jQuery UI - v1.12.1 - 2018-06-19
2
- * http://jqueryui.com
3
- * Includes: draggable.css, core.css, resizable.css, sortable.css, theme.css
4
- * To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
5
- * Copyright jQuery Foundation and other contributors; Licensed MIT */
6
-
7
- .ui-draggable-handle {
8
- -ms-touch-action: none;
9
- touch-action: none;
10
- }
11
- /* Layout helpers
12
- ----------------------------------*/
13
- .ui-helper-hidden {
14
- display: none;
15
- }
16
- .ui-helper-hidden-accessible {
17
- border: 0;
18
- clip: rect(0 0 0 0);
19
- height: 1px;
20
- margin: -1px;
21
- overflow: hidden;
22
- padding: 0;
23
- position: absolute;
24
- width: 1px;
25
- }
26
- .ui-helper-reset {
27
- margin: 0;
28
- padding: 0;
29
- border: 0;
30
- outline: 0;
31
- line-height: 1.3;
32
- text-decoration: none;
33
- font-size: 100%;
34
- list-style: none;
35
- }
36
- .ui-helper-clearfix:before,
37
- .ui-helper-clearfix:after {
38
- content: "";
39
- display: table;
40
- border-collapse: collapse;
41
- }
42
- .ui-helper-clearfix:after {
43
- clear: both;
44
- }
45
- .ui-helper-zfix {
46
- width: 100%;
47
- height: 100%;
48
- top: 0;
49
- left: 0;
50
- position: absolute;
51
- opacity: 0;
52
- filter:Alpha(Opacity=0); /* support: IE8 */
53
- }
54
-
55
- .ui-front {
56
- z-index: 100;
57
- }
58
-
59
-
60
- /* Interaction Cues
61
- ----------------------------------*/
62
- .ui-state-disabled {
63
- cursor: default !important;
64
- pointer-events: none;
65
- }
66
-
67
-
68
- /* Icons
69
- ----------------------------------*/
70
- .ui-icon {
71
- display: inline-block;
72
- vertical-align: middle;
73
- margin-top: -.25em;
74
- position: relative;
75
- text-indent: -99999px;
76
- overflow: hidden;
77
- background-repeat: no-repeat;
78
- }
79
-
80
- .ui-widget-icon-block {
81
- left: 50%;
82
- margin-left: -8px;
83
- display: block;
84
- }
85
-
86
- /* Misc visuals
87
- ----------------------------------*/
88
-
89
- /* Overlays */
90
- .ui-widget-overlay {
91
- position: fixed;
92
- top: 0;
93
- left: 0;
94
- width: 100%;
95
- height: 100%;
96
- }
97
- .ui-resizable {
98
- position: relative;
99
- }
100
- .ui-resizable-handle {
101
- position: absolute;
102
- font-size: 0.1px;
103
- display: block;
104
- -ms-touch-action: none;
105
- touch-action: none;
106
- }
107
- .ui-resizable-disabled .ui-resizable-handle,
108
- .ui-resizable-autohide .ui-resizable-handle {
109
- display: none;
110
- }
111
- .ui-resizable-n {
112
- cursor: n-resize;
113
- height: 7px;
114
- width: 100%;
115
- top: -5px;
116
- left: 0;
117
- }
118
- .ui-resizable-s {
119
- cursor: s-resize;
120
- height: 7px;
121
- width: 100%;
122
- bottom: -5px;
123
- left: 0;
124
- }
125
- .ui-resizable-e {
126
- cursor: e-resize;
127
- width: 7px;
128
- right: -5px;
129
- top: 0;
130
- height: 100%;
131
- }
132
- .ui-resizable-w {
133
- cursor: w-resize;
134
- width: 7px;
135
- left: -5px;
136
- top: 0;
137
- height: 100%;
138
- }
139
- .ui-resizable-se {
140
- cursor: se-resize;
141
- width: 12px;
142
- height: 12px;
143
- right: 1px;
144
- bottom: 1px;
145
- }
146
- .ui-resizable-sw {
147
- cursor: sw-resize;
148
- width: 9px;
149
- height: 9px;
150
- left: -5px;
151
- bottom: -5px;
152
- }
153
- .ui-resizable-nw {
154
- cursor: nw-resize;
155
- width: 9px;
156
- height: 9px;
157
- left: -5px;
158
- top: -5px;
159
- }
160
- .ui-resizable-ne {
161
- cursor: ne-resize;
162
- width: 9px;
163
- height: 9px;
164
- right: -5px;
165
- top: -5px;
166
- }
167
- .ui-sortable-handle {
168
- -ms-touch-action: none;
169
- touch-action: none;
170
- }
171
-
172
- /* Component containers
173
- ----------------------------------*/
174
- .ui-widget {
175
- font-family: Arial,Helvetica,sans-serif;
176
- font-size: 1em;
177
- }
178
- .ui-widget .ui-widget {
179
- font-size: 1em;
180
- }
181
- .ui-widget input,
182
- .ui-widget select,
183
- .ui-widget textarea,
184
- .ui-widget button {
185
- font-family: Arial,Helvetica,sans-serif;
186
- font-size: 1em;
187
- }
188
- .ui-widget.ui-widget-content {
189
- border: 1px solid #c5c5c5;
190
- }
191
- .ui-widget-content {
192
- border: 1px solid #dddddd;
193
- background: #ffffff;
194
- color: #333333;
195
- }
196
- .ui-widget-content a {
197
- color: #333333;
198
- }
199
- .ui-widget-header {
200
- border: 1px solid #dddddd;
201
- background: #e9e9e9;
202
- color: #333333;
203
- font-weight: bold;
204
- }
205
- .ui-widget-header a {
206
- color: #333333;
207
- }
208
-
209
- /* Interaction states
210
- ----------------------------------*/
211
- .ui-state-default,
212
- .ui-widget-content .ui-state-default,
213
- .ui-widget-header .ui-state-default,
214
- .ui-button,
215
-
216
- /* We use html here because we need a greater specificity to make sure disabled
217
- works properly when clicked or hovered */
218
- html .ui-button.ui-state-disabled:hover,
219
- html .ui-button.ui-state-disabled:active {
220
- border: 1px solid #c5c5c5;
221
- background: #f6f6f6;
222
- font-weight: normal;
223
- color: #454545;
224
- }
225
- .ui-state-default a,
226
- .ui-state-default a:link,
227
- .ui-state-default a:visited,
228
- a.ui-button,
229
- a:link.ui-button,
230
- a:visited.ui-button,
231
- .ui-button {
232
- color: #454545;
233
- text-decoration: none;
234
- }
235
- .ui-state-hover,
236
- .ui-widget-content .ui-state-hover,
237
- .ui-widget-header .ui-state-hover,
238
- .ui-state-focus,
239
- .ui-widget-content .ui-state-focus,
240
- .ui-widget-header .ui-state-focus,
241
- .ui-button:hover,
242
- .ui-button:focus {
243
- border: 1px solid #cccccc;
244
- background: #ededed;
245
- font-weight: normal;
246
- color: #2b2b2b;
247
- }
248
- .ui-state-hover a,
249
- .ui-state-hover a:hover,
250
- .ui-state-hover a:link,
251
- .ui-state-hover a:visited,
252
- .ui-state-focus a,
253
- .ui-state-focus a:hover,
254
- .ui-state-focus a:link,
255
- .ui-state-focus a:visited,
256
- a.ui-button:hover,
257
- a.ui-button:focus {
258
- color: #2b2b2b;
259
- text-decoration: none;
260
- }
261
-
262
- .ui-visual-focus {
263
- box-shadow: 0 0 3px 1px rgb(94, 158, 214);
264
- }
265
- .ui-state-active,
266
- .ui-widget-content .ui-state-active,
267
- .ui-widget-header .ui-state-active,
268
- a.ui-button:active,
269
- .ui-button:active,
270
- .ui-button.ui-state-active:hover {
271
- border: 1px solid #003eff;
272
- background: #007fff;
273
- font-weight: normal;
274
- color: #ffffff;
275
- }
276
- .ui-icon-background,
277
- .ui-state-active .ui-icon-background {
278
- border: #003eff;
279
- background-color: #ffffff;
280
- }
281
- .ui-state-active a,
282
- .ui-state-active a:link,
283
- .ui-state-active a:visited {
284
- color: #ffffff;
285
- text-decoration: none;
286
- }
287
-
288
- /* Interaction Cues
289
- ----------------------------------*/
290
- .ui-state-highlight,
291
- .ui-widget-content .ui-state-highlight,
292
- .ui-widget-header .ui-state-highlight {
293
- border: 1px solid #dad55e;
294
- background: #fffa90;
295
- color: #777620;
296
- }
297
- .ui-state-checked {
298
- border: 1px solid #dad55e;
299
- background: #fffa90;
300
- }
301
- .ui-state-highlight a,
302
- .ui-widget-content .ui-state-highlight a,
303
- .ui-widget-header .ui-state-highlight a {
304
- color: #777620;
305
- }
306
- .ui-state-error,
307
- .ui-widget-content .ui-state-error,
308
- .ui-widget-header .ui-state-error {
309
- border: 1px solid #f1a899;
310
- background: #fddfdf;
311
- color: #5f3f3f;
312
- }
313
- .ui-state-error a,
314
- .ui-widget-content .ui-state-error a,
315
- .ui-widget-header .ui-state-error a {
316
- color: #5f3f3f;
317
- }
318
- .ui-state-error-text,
319
- .ui-widget-content .ui-state-error-text,
320
- .ui-widget-header .ui-state-error-text {
321
- color: #5f3f3f;
322
- }
323
- .ui-priority-primary,
324
- .ui-widget-content .ui-priority-primary,
325
- .ui-widget-header .ui-priority-primary {
326
- font-weight: bold;
327
- }
328
- .ui-priority-secondary,
329
- .ui-widget-content .ui-priority-secondary,
330
- .ui-widget-header .ui-priority-secondary {
331
- opacity: .7;
332
- filter:Alpha(Opacity=70); /* support: IE8 */
333
- font-weight: normal;
334
- }
335
- .ui-state-disabled,
336
- .ui-widget-content .ui-state-disabled,
337
- .ui-widget-header .ui-state-disabled {
338
- opacity: .35;
339
- filter:Alpha(Opacity=35); /* support: IE8 */
340
- background-image: none;
341
- }
342
- .ui-state-disabled .ui-icon {
343
- filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
344
- }
345
-
346
- /* Icons
347
- ----------------------------------*/
348
-
349
- /* states and images */
350
- .ui-icon {
351
- width: 16px;
352
- height: 16px;
353
- }
354
- .ui-icon,
355
- .ui-widget-content .ui-icon {
356
- background-image: url("images/ui-icons_444444_256x240.png");
357
- }
358
- .ui-widget-header .ui-icon {
359
- background-image: url("images/ui-icons_444444_256x240.png");
360
- }
361
- .ui-state-hover .ui-icon,
362
- .ui-state-focus .ui-icon,
363
- .ui-button:hover .ui-icon,
364
- .ui-button:focus .ui-icon {
365
- background-image: url("images/ui-icons_555555_256x240.png");
366
- }
367
- .ui-state-active .ui-icon,
368
- .ui-button:active .ui-icon {
369
- background-image: url("images/ui-icons_ffffff_256x240.png");
370
- }
371
- .ui-state-highlight .ui-icon,
372
- .ui-button .ui-state-highlight.ui-icon {
373
- background-image: url("images/ui-icons_777620_256x240.png");
374
- }
375
- .ui-state-error .ui-icon,
376
- .ui-state-error-text .ui-icon {
377
- background-image: url("images/ui-icons_cc0000_256x240.png");
378
- }
379
- .ui-button .ui-icon {
380
- background-image: url("images/ui-icons_777777_256x240.png");
381
- }
382
-
383
- /* positioning */
384
- .ui-icon-blank { background-position: 16px 16px; }
385
- .ui-icon-caret-1-n { background-position: 0 0; }
386
- .ui-icon-caret-1-ne { background-position: -16px 0; }
387
- .ui-icon-caret-1-e { background-position: -32px 0; }
388
- .ui-icon-caret-1-se { background-position: -48px 0; }
389
- .ui-icon-caret-1-s { background-position: -65px 0; }
390
- .ui-icon-caret-1-sw { background-position: -80px 0; }
391
- .ui-icon-caret-1-w { background-position: -96px 0; }
392
- .ui-icon-caret-1-nw { background-position: -112px 0; }
393
- .ui-icon-caret-2-n-s { background-position: -128px 0; }
394
- .ui-icon-caret-2-e-w { background-position: -144px 0; }
395
- .ui-icon-triangle-1-n { background-position: 0 -16px; }
396
- .ui-icon-triangle-1-ne { background-position: -16px -16px; }
397
- .ui-icon-triangle-1-e { background-position: -32px -16px; }
398
- .ui-icon-triangle-1-se { background-position: -48px -16px; }
399
- .ui-icon-triangle-1-s { background-position: -65px -16px; }
400
- .ui-icon-triangle-1-sw { background-position: -80px -16px; }
401
- .ui-icon-triangle-1-w { background-position: -96px -16px; }
402
- .ui-icon-triangle-1-nw { background-position: -112px -16px; }
403
- .ui-icon-triangle-2-n-s { background-position: -128px -16px; }
404
- .ui-icon-triangle-2-e-w { background-position: -144px -16px; }
405
- .ui-icon-arrow-1-n { background-position: 0 -32px; }
406
- .ui-icon-arrow-1-ne { background-position: -16px -32px; }
407
- .ui-icon-arrow-1-e { background-position: -32px -32px; }
408
- .ui-icon-arrow-1-se { background-position: -48px -32px; }
409
- .ui-icon-arrow-1-s { background-position: -65px -32px; }
410
- .ui-icon-arrow-1-sw { background-position: -80px -32px; }
411
- .ui-icon-arrow-1-w { background-position: -96px -32px; }
412
- .ui-icon-arrow-1-nw { background-position: -112px -32px; }
413
- .ui-icon-arrow-2-n-s { background-position: -128px -32px; }
414
- .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
415
- .ui-icon-arrow-2-e-w { background-position: -160px -32px; }
416
- .ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
417
- .ui-icon-arrowstop-1-n { background-position: -192px -32px; }
418
- .ui-icon-arrowstop-1-e { background-position: -208px -32px; }
419
- .ui-icon-arrowstop-1-s { background-position: -224px -32px; }
420
- .ui-icon-arrowstop-1-w { background-position: -240px -32px; }
421
- .ui-icon-arrowthick-1-n { background-position: 1px -48px; }
422
- .ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
423
- .ui-icon-arrowthick-1-e { background-position: -32px -48px; }
424
- .ui-icon-arrowthick-1-se { background-position: -48px -48px; }
425
- .ui-icon-arrowthick-1-s { background-position: -64px -48px; }
426
- .ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
427
- .ui-icon-arrowthick-1-w { background-position: -96px -48px; }
428
- .ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
429
- .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
430
- .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
431
- .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
432
- .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
433
- .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
434
- .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
435
- .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
436
- .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
437
- .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
438
- .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
439
- .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
440
- .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
441
- .ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
442
- .ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
443
- .ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
444
- .ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
445
- .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
446
- .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
447
- .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
448
- .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
449
- .ui-icon-arrow-4 { background-position: 0 -80px; }
450
- .ui-icon-arrow-4-diag { background-position: -16px -80px; }
451
- .ui-icon-extlink { background-position: -32px -80px; }
452
- .ui-icon-newwin { background-position: -48px -80px; }
453
- .ui-icon-refresh { background-position: -64px -80px; }
454
- .ui-icon-shuffle { background-position: -80px -80px; }
455
- .ui-icon-transfer-e-w { background-position: -96px -80px; }
456
- .ui-icon-transferthick-e-w { background-position: -112px -80px; }
457
- .ui-icon-folder-collapsed { background-position: 0 -96px; }
458
- .ui-icon-folder-open { background-position: -16px -96px; }
459
- .ui-icon-document { background-position: -32px -96px; }
460
- .ui-icon-document-b { background-position: -48px -96px; }
461
- .ui-icon-note { background-position: -64px -96px; }
462
- .ui-icon-mail-closed { background-position: -80px -96px; }
463
- .ui-icon-mail-open { background-position: -96px -96px; }
464
- .ui-icon-suitcase { background-position: -112px -96px; }
465
- .ui-icon-comment { background-position: -128px -96px; }
466
- .ui-icon-person { background-position: -144px -96px; }
467
- .ui-icon-print { background-position: -160px -96px; }
468
- .ui-icon-trash { background-position: -176px -96px; }
469
- .ui-icon-locked { background-position: -192px -96px; }
470
- .ui-icon-unlocked { background-position: -208px -96px; }
471
- .ui-icon-bookmark { background-position: -224px -96px; }
472
- .ui-icon-tag { background-position: -240px -96px; }
473
- .ui-icon-home { background-position: 0 -112px; }
474
- .ui-icon-flag { background-position: -16px -112px; }
475
- .ui-icon-calendar { background-position: -32px -112px; }
476
- .ui-icon-cart { background-position: -48px -112px; }
477
- .ui-icon-pencil { background-position: -64px -112px; }
478
- .ui-icon-clock { background-position: -80px -112px; }
479
- .ui-icon-disk { background-position: -96px -112px; }
480
- .ui-icon-calculator { background-position: -112px -112px; }
481
- .ui-icon-zoomin { background-position: -128px -112px; }
482
- .ui-icon-zoomout { background-position: -144px -112px; }
483
- .ui-icon-search { background-position: -160px -112px; }
484
- .ui-icon-wrench { background-position: -176px -112px; }
485
- .ui-icon-gear { background-position: -192px -112px; }
486
- .ui-icon-heart { background-position: -208px -112px; }
487
- .ui-icon-star { background-position: -224px -112px; }
488
- .ui-icon-link { background-position: -240px -112px; }
489
- .ui-icon-cancel { background-position: 0 -128px; }
490
- .ui-icon-plus { background-position: -16px -128px; }
491
- .ui-icon-plusthick { background-position: -32px -128px; }
492
- .ui-icon-minus { background-position: -48px -128px; }
493
- .ui-icon-minusthick { background-position: -64px -128px; }
494
- .ui-icon-close { background-position: -80px -128px; }
495
- .ui-icon-closethick { background-position: -96px -128px; }
496
- .ui-icon-key { background-position: -112px -128px; }
497
- .ui-icon-lightbulb { background-position: -128px -128px; }
498
- .ui-icon-scissors { background-position: -144px -128px; }
499
- .ui-icon-clipboard { background-position: -160px -128px; }
500
- .ui-icon-copy { background-position: -176px -128px; }
501
- .ui-icon-contact { background-position: -192px -128px; }
502
- .ui-icon-image { background-position: -208px -128px; }
503
- .ui-icon-video { background-position: -224px -128px; }
504
- .ui-icon-script { background-position: -240px -128px; }
505
- .ui-icon-alert { background-position: 0 -144px; }
506
- .ui-icon-info { background-position: -16px -144px; }
507
- .ui-icon-notice { background-position: -32px -144px; }
508
- .ui-icon-help { background-position: -48px -144px; }
509
- .ui-icon-check { background-position: -64px -144px; }
510
- .ui-icon-bullet { background-position: -80px -144px; }
511
- .ui-icon-radio-on { background-position: -96px -144px; }
512
- .ui-icon-radio-off { background-position: -112px -144px; }
513
- .ui-icon-pin-w { background-position: -128px -144px; }
514
- .ui-icon-pin-s { background-position: -144px -144px; }
515
- .ui-icon-play { background-position: 0 -160px; }
516
- .ui-icon-pause { background-position: -16px -160px; }
517
- .ui-icon-seek-next { background-position: -32px -160px; }
518
- .ui-icon-seek-prev { background-position: -48px -160px; }
519
- .ui-icon-seek-end { background-position: -64px -160px; }
520
- .ui-icon-seek-start { background-position: -80px -160px; }
521
- /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
522
- .ui-icon-seek-first { background-position: -80px -160px; }
523
- .ui-icon-stop { background-position: -96px -160px; }
524
- .ui-icon-eject { background-position: -112px -160px; }
525
- .ui-icon-volume-off { background-position: -128px -160px; }
526
- .ui-icon-volume-on { background-position: -144px -160px; }
527
- .ui-icon-power { background-position: 0 -176px; }
528
- .ui-icon-signal-diag { background-position: -16px -176px; }
529
- .ui-icon-signal { background-position: -32px -176px; }
530
- .ui-icon-battery-0 { background-position: -48px -176px; }
531
- .ui-icon-battery-1 { background-position: -64px -176px; }
532
- .ui-icon-battery-2 { background-position: -80px -176px; }
533
- .ui-icon-battery-3 { background-position: -96px -176px; }
534
- .ui-icon-circle-plus { background-position: 0 -192px; }
535
- .ui-icon-circle-minus { background-position: -16px -192px; }
536
- .ui-icon-circle-close { background-position: -32px -192px; }
537
- .ui-icon-circle-triangle-e { background-position: -48px -192px; }
538
- .ui-icon-circle-triangle-s { background-position: -64px -192px; }
539
- .ui-icon-circle-triangle-w { background-position: -80px -192px; }
540
- .ui-icon-circle-triangle-n { background-position: -96px -192px; }
541
- .ui-icon-circle-arrow-e { background-position: -112px -192px; }
542
- .ui-icon-circle-arrow-s { background-position: -128px -192px; }
543
- .ui-icon-circle-arrow-w { background-position: -144px -192px; }
544
- .ui-icon-circle-arrow-n { background-position: -160px -192px; }
545
- .ui-icon-circle-zoomin { background-position: -176px -192px; }
546
- .ui-icon-circle-zoomout { background-position: -192px -192px; }
547
- .ui-icon-circle-check { background-position: -208px -192px; }
548
- .ui-icon-circlesmall-plus { background-position: 0 -208px; }
549
- .ui-icon-circlesmall-minus { background-position: -16px -208px; }
550
- .ui-icon-circlesmall-close { background-position: -32px -208px; }
551
- .ui-icon-squaresmall-plus { background-position: -48px -208px; }
552
- .ui-icon-squaresmall-minus { background-position: -64px -208px; }
553
- .ui-icon-squaresmall-close { background-position: -80px -208px; }
554
- .ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
555
- .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
556
- .ui-icon-grip-solid-vertical { background-position: -32px -224px; }
557
- .ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
558
- .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
559
- .ui-icon-grip-diagonal-se { background-position: -80px -224px; }
560
-
561
-
562
- /* Misc visuals
563
- ----------------------------------*/
564
-
565
- /* Corner radius */
566
- .ui-corner-all,
567
- .ui-corner-top,
568
- .ui-corner-left,
569
- .ui-corner-tl {
570
- border-top-left-radius: 3px;
571
- }
572
- .ui-corner-all,
573
- .ui-corner-top,
574
- .ui-corner-right,
575
- .ui-corner-tr {
576
- border-top-right-radius: 3px;
577
- }
578
- .ui-corner-all,
579
- .ui-corner-bottom,
580
- .ui-corner-left,
581
- .ui-corner-bl {
582
- border-bottom-left-radius: 3px;
583
- }
584
- .ui-corner-all,
585
- .ui-corner-bottom,
586
- .ui-corner-right,
587
- .ui-corner-br {
588
- border-bottom-right-radius: 3px;
589
- }
590
-
591
- /* Overlays */
592
- .ui-widget-overlay {
593
- background: #aaaaaa;
594
- opacity: .3;
595
- filter: Alpha(Opacity=30); /* support: IE8 */
596
- }
597
- .ui-widget-shadow {
598
- -webkit-box-shadow: 0px 0px 5px #666666;
599
- box-shadow: 0px 0px 5px #666666;
600
- }
1
+ /*! jQuery UI - v1.12.1 - 2018-06-19
2
+ * http://jqueryui.com
3
+ * Includes: draggable.css, core.css, resizable.css, sortable.css, theme.css
4
+ * To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
5
+ * Copyright jQuery Foundation and other contributors; Licensed MIT */
6
+
7
+ .ui-draggable-handle {
8
+ -ms-touch-action: none;
9
+ touch-action: none;
10
+ }
11
+ /* Layout helpers
12
+ ----------------------------------*/
13
+ .ui-helper-hidden {
14
+ display: none;
15
+ }
16
+ .ui-helper-hidden-accessible {
17
+ border: 0;
18
+ clip: rect(0 0 0 0);
19
+ height: 1px;
20
+ margin: -1px;
21
+ overflow: hidden;
22
+ padding: 0;
23
+ position: absolute;
24
+ width: 1px;
25
+ }
26
+ .ui-helper-reset {
27
+ margin: 0;
28
+ padding: 0;
29
+ border: 0;
30
+ outline: 0;
31
+ line-height: 1.3;
32
+ text-decoration: none;
33
+ font-size: 100%;
34
+ list-style: none;
35
+ }
36
+ .ui-helper-clearfix:before,
37
+ .ui-helper-clearfix:after {
38
+ content: "";
39
+ display: table;
40
+ border-collapse: collapse;
41
+ }
42
+ .ui-helper-clearfix:after {
43
+ clear: both;
44
+ }
45
+ .ui-helper-zfix {
46
+ width: 100%;
47
+ height: 100%;
48
+ top: 0;
49
+ left: 0;
50
+ position: absolute;
51
+ opacity: 0;
52
+ filter:Alpha(Opacity=0); /* support: IE8 */
53
+ }
54
+
55
+ .ui-front {
56
+ z-index: 100;
57
+ }
58
+
59
+
60
+ /* Interaction Cues
61
+ ----------------------------------*/
62
+ .ui-state-disabled {
63
+ cursor: default !important;
64
+ pointer-events: none;
65
+ }
66
+
67
+
68
+ /* Icons
69
+ ----------------------------------*/
70
+ .ui-icon {
71
+ display: inline-block;
72
+ vertical-align: middle;
73
+ margin-top: -.25em;
74
+ position: relative;
75
+ text-indent: -99999px;
76
+ overflow: hidden;
77
+ background-repeat: no-repeat;
78
+ }
79
+
80
+ .ui-widget-icon-block {
81
+ left: 50%;
82
+ margin-left: -8px;
83
+ display: block;
84
+ }
85
+
86
+ /* Misc visuals
87
+ ----------------------------------*/
88
+
89
+ /* Overlays */
90
+ .ui-widget-overlay {
91
+ position: fixed;
92
+ top: 0;
93
+ left: 0;
94
+ width: 100%;
95
+ height: 100%;
96
+ }
97
+ .ui-resizable {
98
+ position: relative;
99
+ }
100
+ .ui-resizable-handle {
101
+ position: absolute;
102
+ font-size: 0.1px;
103
+ display: block;
104
+ -ms-touch-action: none;
105
+ touch-action: none;
106
+ }
107
+ .ui-resizable-disabled .ui-resizable-handle,
108
+ .ui-resizable-autohide .ui-resizable-handle {
109
+ display: none;
110
+ }
111
+ .ui-resizable-n {
112
+ cursor: n-resize;
113
+ height: 7px;
114
+ width: 100%;
115
+ top: -5px;
116
+ left: 0;
117
+ }
118
+ .ui-resizable-s {
119
+ cursor: s-resize;
120
+ height: 7px;
121
+ width: 100%;
122
+ bottom: -5px;
123
+ left: 0;
124
+ }
125
+ .ui-resizable-e {
126
+ cursor: e-resize;
127
+ width: 7px;
128
+ right: -5px;
129
+ top: 0;
130
+ height: 100%;
131
+ }
132
+ .ui-resizable-w {
133
+ cursor: w-resize;
134
+ width: 7px;
135
+ left: -5px;
136
+ top: 0;
137
+ height: 100%;
138
+ }
139
+ .ui-resizable-se {
140
+ cursor: se-resize;
141
+ width: 12px;
142
+ height: 12px;
143
+ right: 1px;
144
+ bottom: 1px;
145
+ }
146
+ .ui-resizable-sw {
147
+ cursor: sw-resize;
148
+ width: 9px;
149
+ height: 9px;
150
+ left: -5px;
151
+ bottom: -5px;
152
+ }
153
+ .ui-resizable-nw {
154
+ cursor: nw-resize;
155
+ width: 9px;
156
+ height: 9px;
157
+ left: -5px;
158
+ top: -5px;
159
+ }
160
+ .ui-resizable-ne {
161
+ cursor: ne-resize;
162
+ width: 9px;
163
+ height: 9px;
164
+ right: -5px;
165
+ top: -5px;
166
+ }
167
+ .ui-sortable-handle {
168
+ -ms-touch-action: none;
169
+ touch-action: none;
170
+ }
171
+
172
+ /* Component containers
173
+ ----------------------------------*/
174
+ .ui-widget {
175
+ font-family: Arial,Helvetica,sans-serif;
176
+ font-size: 1em;
177
+ }
178
+ .ui-widget .ui-widget {
179
+ font-size: 1em;
180
+ }
181
+ .ui-widget input,
182
+ .ui-widget select,
183
+ .ui-widget textarea,
184
+ .ui-widget button {
185
+ font-family: Arial,Helvetica,sans-serif;
186
+ font-size: 1em;
187
+ }
188
+ .ui-widget.ui-widget-content {
189
+ border: 1px solid #c5c5c5;
190
+ }
191
+ .ui-widget-content {
192
+ border: 1px solid #dddddd;
193
+ background: #ffffff;
194
+ color: #333333;
195
+ }
196
+ .ui-widget-content a {
197
+ color: #333333;
198
+ }
199
+ .ui-widget-header {
200
+ border: 1px solid #dddddd;
201
+ background: #e9e9e9;
202
+ color: #333333;
203
+ font-weight: bold;
204
+ }
205
+ .ui-widget-header a {
206
+ color: #333333;
207
+ }
208
+
209
+ /* Interaction states
210
+ ----------------------------------*/
211
+ .ui-state-default,
212
+ .ui-widget-content .ui-state-default,
213
+ .ui-widget-header .ui-state-default,
214
+ .ui-button,
215
+
216
+ /* We use html here because we need a greater specificity to make sure disabled
217
+ works properly when clicked or hovered */
218
+ html .ui-button.ui-state-disabled:hover,
219
+ html .ui-button.ui-state-disabled:active {
220
+ border: 1px solid #c5c5c5;
221
+ background: #f6f6f6;
222
+ font-weight: normal;
223
+ color: #454545;
224
+ }
225
+ .ui-state-default a,
226
+ .ui-state-default a:link,
227
+ .ui-state-default a:visited,
228
+ a.ui-button,
229
+ a:link.ui-button,
230
+ a:visited.ui-button,
231
+ .ui-button {
232
+ color: #454545;
233
+ text-decoration: none;
234
+ }
235
+ .ui-state-hover,
236
+ .ui-widget-content .ui-state-hover,
237
+ .ui-widget-header .ui-state-hover,
238
+ .ui-state-focus,
239
+ .ui-widget-content .ui-state-focus,
240
+ .ui-widget-header .ui-state-focus,
241
+ .ui-button:hover,
242
+ .ui-button:focus {
243
+ border: 1px solid #cccccc;
244
+ background: #ededed;
245
+ font-weight: normal;
246
+ color: #2b2b2b;
247
+ }
248
+ .ui-state-hover a,
249
+ .ui-state-hover a:hover,
250
+ .ui-state-hover a:link,
251
+ .ui-state-hover a:visited,
252
+ .ui-state-focus a,
253
+ .ui-state-focus a:hover,
254
+ .ui-state-focus a:link,
255
+ .ui-state-focus a:visited,
256
+ a.ui-button:hover,
257
+ a.ui-button:focus {
258
+ color: #2b2b2b;
259
+ text-decoration: none;
260
+ }
261
+
262
+ .ui-visual-focus {
263
+ box-shadow: 0 0 3px 1px rgb(94, 158, 214);
264
+ }
265
+ .ui-state-active,
266
+ .ui-widget-content .ui-state-active,
267
+ .ui-widget-header .ui-state-active,
268
+ a.ui-button:active,
269
+ .ui-button:active,
270
+ .ui-button.ui-state-active:hover {
271
+ border: 1px solid #003eff;
272
+ background: #007fff;
273
+ font-weight: normal;
274
+ color: #ffffff;
275
+ }
276
+ .ui-icon-background,
277
+ .ui-state-active .ui-icon-background {
278
+ border: #003eff;
279
+ background-color: #ffffff;
280
+ }
281
+ .ui-state-active a,
282
+ .ui-state-active a:link,
283
+ .ui-state-active a:visited {
284
+ color: #ffffff;
285
+ text-decoration: none;
286
+ }
287
+
288
+ /* Interaction Cues
289
+ ----------------------------------*/
290
+ .ui-state-highlight,
291
+ .ui-widget-content .ui-state-highlight,
292
+ .ui-widget-header .ui-state-highlight {
293
+ border: 1px solid #dad55e;
294
+ background: #fffa90;
295
+ color: #777620;
296
+ }
297
+ .ui-state-checked {
298
+ border: 1px solid #dad55e;
299
+ background: #fffa90;
300
+ }
301
+ .ui-state-highlight a,
302
+ .ui-widget-content .ui-state-highlight a,
303
+ .ui-widget-header .ui-state-highlight a {
304
+ color: #777620;
305
+ }
306
+ .ui-state-error,
307
+ .ui-widget-content .ui-state-error,
308
+ .ui-widget-header .ui-state-error {
309
+ border: 1px solid #f1a899;
310
+ background: #fddfdf;
311
+ color: #5f3f3f;
312
+ }
313
+ .ui-state-error a,
314
+ .ui-widget-content .ui-state-error a,
315
+ .ui-widget-header .ui-state-error a {
316
+ color: #5f3f3f;
317
+ }
318
+ .ui-state-error-text,
319
+ .ui-widget-content .ui-state-error-text,
320
+ .ui-widget-header .ui-state-error-text {
321
+ color: #5f3f3f;
322
+ }
323
+ .ui-priority-primary,
324
+ .ui-widget-content .ui-priority-primary,
325
+ .ui-widget-header .ui-priority-primary {
326
+ font-weight: bold;
327
+ }
328
+ .ui-priority-secondary,
329
+ .ui-widget-content .ui-priority-secondary,
330
+ .ui-widget-header .ui-priority-secondary {
331
+ opacity: .7;
332
+ filter:Alpha(Opacity=70); /* support: IE8 */
333
+ font-weight: normal;
334
+ }
335
+ .ui-state-disabled,
336
+ .ui-widget-content .ui-state-disabled,
337
+ .ui-widget-header .ui-state-disabled {
338
+ opacity: .35;
339
+ filter:Alpha(Opacity=35); /* support: IE8 */
340
+ background-image: none;
341
+ }
342
+ .ui-state-disabled .ui-icon {
343
+ filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
344
+ }
345
+
346
+ /* Icons
347
+ ----------------------------------*/
348
+
349
+ /* states and images */
350
+ .ui-icon {
351
+ width: 16px;
352
+ height: 16px;
353
+ }
354
+ .ui-icon,
355
+ .ui-widget-content .ui-icon {
356
+ background-image: url("images/ui-icons_444444_256x240.png");
357
+ }
358
+ .ui-widget-header .ui-icon {
359
+ background-image: url("images/ui-icons_444444_256x240.png");
360
+ }
361
+ .ui-state-hover .ui-icon,
362
+ .ui-state-focus .ui-icon,
363
+ .ui-button:hover .ui-icon,
364
+ .ui-button:focus .ui-icon {
365
+ background-image: url("images/ui-icons_555555_256x240.png");
366
+ }
367
+ .ui-state-active .ui-icon,
368
+ .ui-button:active .ui-icon {
369
+ background-image: url("images/ui-icons_ffffff_256x240.png");
370
+ }
371
+ .ui-state-highlight .ui-icon,
372
+ .ui-button .ui-state-highlight.ui-icon {
373
+ background-image: url("images/ui-icons_777620_256x240.png");
374
+ }
375
+ .ui-state-error .ui-icon,
376
+ .ui-state-error-text .ui-icon {
377
+ background-image: url("images/ui-icons_cc0000_256x240.png");
378
+ }
379
+ .ui-button .ui-icon {
380
+ background-image: url("images/ui-icons_777777_256x240.png");
381
+ }
382
+
383
+ /* positioning */
384
+ .ui-icon-blank { background-position: 16px 16px; }
385
+ .ui-icon-caret-1-n { background-position: 0 0; }
386
+ .ui-icon-caret-1-ne { background-position: -16px 0; }
387
+ .ui-icon-caret-1-e { background-position: -32px 0; }
388
+ .ui-icon-caret-1-se { background-position: -48px 0; }
389
+ .ui-icon-caret-1-s { background-position: -65px 0; }
390
+ .ui-icon-caret-1-sw { background-position: -80px 0; }
391
+ .ui-icon-caret-1-w { background-position: -96px 0; }
392
+ .ui-icon-caret-1-nw { background-position: -112px 0; }
393
+ .ui-icon-caret-2-n-s { background-position: -128px 0; }
394
+ .ui-icon-caret-2-e-w { background-position: -144px 0; }
395
+ .ui-icon-triangle-1-n { background-position: 0 -16px; }
396
+ .ui-icon-triangle-1-ne { background-position: -16px -16px; }
397
+ .ui-icon-triangle-1-e { background-position: -32px -16px; }
398
+ .ui-icon-triangle-1-se { background-position: -48px -16px; }
399
+ .ui-icon-triangle-1-s { background-position: -65px -16px; }
400
+ .ui-icon-triangle-1-sw { background-position: -80px -16px; }
401
+ .ui-icon-triangle-1-w { background-position: -96px -16px; }
402
+ .ui-icon-triangle-1-nw { background-position: -112px -16px; }
403
+ .ui-icon-triangle-2-n-s { background-position: -128px -16px; }
404
+ .ui-icon-triangle-2-e-w { background-position: -144px -16px; }
405
+ .ui-icon-arrow-1-n { background-position: 0 -32px; }
406
+ .ui-icon-arrow-1-ne { background-position: -16px -32px; }
407
+ .ui-icon-arrow-1-e { background-position: -32px -32px; }
408
+ .ui-icon-arrow-1-se { background-position: -48px -32px; }
409
+ .ui-icon-arrow-1-s { background-position: -65px -32px; }
410
+ .ui-icon-arrow-1-sw { background-position: -80px -32px; }
411
+ .ui-icon-arrow-1-w { background-position: -96px -32px; }
412
+ .ui-icon-arrow-1-nw { background-position: -112px -32px; }
413
+ .ui-icon-arrow-2-n-s { background-position: -128px -32px; }
414
+ .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
415
+ .ui-icon-arrow-2-e-w { background-position: -160px -32px; }
416
+ .ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
417
+ .ui-icon-arrowstop-1-n { background-position: -192px -32px; }
418
+ .ui-icon-arrowstop-1-e { background-position: -208px -32px; }
419
+ .ui-icon-arrowstop-1-s { background-position: -224px -32px; }
420
+ .ui-icon-arrowstop-1-w { background-position: -240px -32px; }
421
+ .ui-icon-arrowthick-1-n { background-position: 1px -48px; }
422
+ .ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
423
+ .ui-icon-arrowthick-1-e { background-position: -32px -48px; }
424
+ .ui-icon-arrowthick-1-se { background-position: -48px -48px; }
425
+ .ui-icon-arrowthick-1-s { background-position: -64px -48px; }
426
+ .ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
427
+ .ui-icon-arrowthick-1-w { background-position: -96px -48px; }
428
+ .ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
429
+ .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
430
+ .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
431
+ .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
432
+ .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
433
+ .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
434
+ .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
435
+ .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
436
+ .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
437
+ .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
438
+ .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
439
+ .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
440
+ .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
441
+ .ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
442
+ .ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
443
+ .ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
444
+ .ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
445
+ .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
446
+ .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
447
+ .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
448
+ .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
449
+ .ui-icon-arrow-4 { background-position: 0 -80px; }
450
+ .ui-icon-arrow-4-diag { background-position: -16px -80px; }
451
+ .ui-icon-extlink { background-position: -32px -80px; }
452
+ .ui-icon-newwin { background-position: -48px -80px; }
453
+ .ui-icon-refresh { background-position: -64px -80px; }
454
+ .ui-icon-shuffle { background-position: -80px -80px; }
455
+ .ui-icon-transfer-e-w { background-position: -96px -80px; }
456
+ .ui-icon-transferthick-e-w { background-position: -112px -80px; }
457
+ .ui-icon-folder-collapsed { background-position: 0 -96px; }
458
+ .ui-icon-folder-open { background-position: -16px -96px; }
459
+ .ui-icon-document { background-position: -32px -96px; }
460
+ .ui-icon-document-b { background-position: -48px -96px; }
461
+ .ui-icon-note { background-position: -64px -96px; }
462
+ .ui-icon-mail-closed { background-position: -80px -96px; }
463
+ .ui-icon-mail-open { background-position: -96px -96px; }
464
+ .ui-icon-suitcase { background-position: -112px -96px; }
465
+ .ui-icon-comment { background-position: -128px -96px; }
466
+ .ui-icon-person { background-position: -144px -96px; }
467
+ .ui-icon-print { background-position: -160px -96px; }
468
+ .ui-icon-trash { background-position: -176px -96px; }
469
+ .ui-icon-locked { background-position: -192px -96px; }
470
+ .ui-icon-unlocked { background-position: -208px -96px; }
471
+ .ui-icon-bookmark { background-position: -224px -96px; }
472
+ .ui-icon-tag { background-position: -240px -96px; }
473
+ .ui-icon-home { background-position: 0 -112px; }
474
+ .ui-icon-flag { background-position: -16px -112px; }
475
+ .ui-icon-calendar { background-position: -32px -112px; }
476
+ .ui-icon-cart { background-position: -48px -112px; }
477
+ .ui-icon-pencil { background-position: -64px -112px; }
478
+ .ui-icon-clock { background-position: -80px -112px; }
479
+ .ui-icon-disk { background-position: -96px -112px; }
480
+ .ui-icon-calculator { background-position: -112px -112px; }
481
+ .ui-icon-zoomin { background-position: -128px -112px; }
482
+ .ui-icon-zoomout { background-position: -144px -112px; }
483
+ .ui-icon-search { background-position: -160px -112px; }
484
+ .ui-icon-wrench { background-position: -176px -112px; }
485
+ .ui-icon-gear { background-position: -192px -112px; }
486
+ .ui-icon-heart { background-position: -208px -112px; }
487
+ .ui-icon-star { background-position: -224px -112px; }
488
+ .ui-icon-link { background-position: -240px -112px; }
489
+ .ui-icon-cancel { background-position: 0 -128px; }
490
+ .ui-icon-plus { background-position: -16px -128px; }
491
+ .ui-icon-plusthick { background-position: -32px -128px; }
492
+ .ui-icon-minus { background-position: -48px -128px; }
493
+ .ui-icon-minusthick { background-position: -64px -128px; }
494
+ .ui-icon-close { background-position: -80px -128px; }
495
+ .ui-icon-closethick { background-position: -96px -128px; }
496
+ .ui-icon-key { background-position: -112px -128px; }
497
+ .ui-icon-lightbulb { background-position: -128px -128px; }
498
+ .ui-icon-scissors { background-position: -144px -128px; }
499
+ .ui-icon-clipboard { background-position: -160px -128px; }
500
+ .ui-icon-copy { background-position: -176px -128px; }
501
+ .ui-icon-contact { background-position: -192px -128px; }
502
+ .ui-icon-image { background-position: -208px -128px; }
503
+ .ui-icon-video { background-position: -224px -128px; }
504
+ .ui-icon-script { background-position: -240px -128px; }
505
+ .ui-icon-alert { background-position: 0 -144px; }
506
+ .ui-icon-info { background-position: -16px -144px; }
507
+ .ui-icon-notice { background-position: -32px -144px; }
508
+ .ui-icon-help { background-position: -48px -144px; }
509
+ .ui-icon-check { background-position: -64px -144px; }
510
+ .ui-icon-bullet { background-position: -80px -144px; }
511
+ .ui-icon-radio-on { background-position: -96px -144px; }
512
+ .ui-icon-radio-off { background-position: -112px -144px; }
513
+ .ui-icon-pin-w { background-position: -128px -144px; }
514
+ .ui-icon-pin-s { background-position: -144px -144px; }
515
+ .ui-icon-play { background-position: 0 -160px; }
516
+ .ui-icon-pause { background-position: -16px -160px; }
517
+ .ui-icon-seek-next { background-position: -32px -160px; }
518
+ .ui-icon-seek-prev { background-position: -48px -160px; }
519
+ .ui-icon-seek-end { background-position: -64px -160px; }
520
+ .ui-icon-seek-start { background-position: -80px -160px; }
521
+ /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
522
+ .ui-icon-seek-first { background-position: -80px -160px; }
523
+ .ui-icon-stop { background-position: -96px -160px; }
524
+ .ui-icon-eject { background-position: -112px -160px; }
525
+ .ui-icon-volume-off { background-position: -128px -160px; }
526
+ .ui-icon-volume-on { background-position: -144px -160px; }
527
+ .ui-icon-power { background-position: 0 -176px; }
528
+ .ui-icon-signal-diag { background-position: -16px -176px; }
529
+ .ui-icon-signal { background-position: -32px -176px; }
530
+ .ui-icon-battery-0 { background-position: -48px -176px; }
531
+ .ui-icon-battery-1 { background-position: -64px -176px; }
532
+ .ui-icon-battery-2 { background-position: -80px -176px; }
533
+ .ui-icon-battery-3 { background-position: -96px -176px; }
534
+ .ui-icon-circle-plus { background-position: 0 -192px; }
535
+ .ui-icon-circle-minus { background-position: -16px -192px; }
536
+ .ui-icon-circle-close { background-position: -32px -192px; }
537
+ .ui-icon-circle-triangle-e { background-position: -48px -192px; }
538
+ .ui-icon-circle-triangle-s { background-position: -64px -192px; }
539
+ .ui-icon-circle-triangle-w { background-position: -80px -192px; }
540
+ .ui-icon-circle-triangle-n { background-position: -96px -192px; }
541
+ .ui-icon-circle-arrow-e { background-position: -112px -192px; }
542
+ .ui-icon-circle-arrow-s { background-position: -128px -192px; }
543
+ .ui-icon-circle-arrow-w { background-position: -144px -192px; }
544
+ .ui-icon-circle-arrow-n { background-position: -160px -192px; }
545
+ .ui-icon-circle-zoomin { background-position: -176px -192px; }
546
+ .ui-icon-circle-zoomout { background-position: -192px -192px; }
547
+ .ui-icon-circle-check { background-position: -208px -192px; }
548
+ .ui-icon-circlesmall-plus { background-position: 0 -208px; }
549
+ .ui-icon-circlesmall-minus { background-position: -16px -208px; }
550
+ .ui-icon-circlesmall-close { background-position: -32px -208px; }
551
+ .ui-icon-squaresmall-plus { background-position: -48px -208px; }
552
+ .ui-icon-squaresmall-minus { background-position: -64px -208px; }
553
+ .ui-icon-squaresmall-close { background-position: -80px -208px; }
554
+ .ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
555
+ .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
556
+ .ui-icon-grip-solid-vertical { background-position: -32px -224px; }
557
+ .ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
558
+ .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
559
+ .ui-icon-grip-diagonal-se { background-position: -80px -224px; }
560
+
561
+
562
+ /* Misc visuals
563
+ ----------------------------------*/
564
+
565
+ /* Corner radius */
566
+ .ui-corner-all,
567
+ .ui-corner-top,
568
+ .ui-corner-left,
569
+ .ui-corner-tl {
570
+ border-top-left-radius: 3px;
571
+ }
572
+ .ui-corner-all,
573
+ .ui-corner-top,
574
+ .ui-corner-right,
575
+ .ui-corner-tr {
576
+ border-top-right-radius: 3px;
577
+ }
578
+ .ui-corner-all,
579
+ .ui-corner-bottom,
580
+ .ui-corner-left,
581
+ .ui-corner-bl {
582
+ border-bottom-left-radius: 3px;
583
+ }
584
+ .ui-corner-all,
585
+ .ui-corner-bottom,
586
+ .ui-corner-right,
587
+ .ui-corner-br {
588
+ border-bottom-right-radius: 3px;
589
+ }
590
+
591
+ /* Overlays */
592
+ .ui-widget-overlay {
593
+ background: #aaaaaa;
594
+ opacity: .3;
595
+ filter: Alpha(Opacity=30); /* support: IE8 */
596
+ }
597
+ .ui-widget-shadow {
598
+ -webkit-box-shadow: 0px 0px 5px #666666;
599
+ box-shadow: 0px 0px 5px #666666;
600
+ }
assets/css/admin/jquery-ui.min.css CHANGED
@@ -1,9 +1,9 @@
1
- /*! jQuery UI - v1.12.1 - 2018-06-19
2
- * http://jqueryui.com
3
- * Includes: draggable.css, core.css, resizable.css, sortable.css, theme.css
4
- * To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
5
- * Copyright jQuery Foundation and other contributors; Licensed MIT */.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget button,.ui-widget input,.ui-widget select,.ui-widget textarea{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:700}.ui-widget-header a{color:#333}.ui-button,.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,html .ui-button.ui-state-disabled:active,html .ui-button.ui-state-disabled:hover{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:400;color:#454545}.ui-button,.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button{color:#454545;text-decoration:none}.ui-button:focus,.ui-button:hover,.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #ccc;background:#ededed;font-weight:400;color:#2b2b2b}.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,a.ui-button:focus,a.ui-button:hover{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px #5e9ed6}.ui-button.ui-state-active:hover,.ui-button:active,.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active{border:1px solid #003eff;background:#007fff;font-weight:400;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:700}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_444444_256x240.png)}.ui-widget-header .ui-icon{background-image:url(images/ui-icons_444444_256x240.png)}.ui-button:focus .ui-icon,.ui-button:hover .ui-icon,.ui-state-focus .ui-icon,.ui-state-hover .ui-icon{background-image:url(images/ui-icons_555555_256x240.png)}.ui-button:active .ui-icon,.ui-state-active .ui-icon{background-image:url(images/ui-icons_ffffff_256x240.png)}.ui-button .ui-state-highlight.ui-icon,.ui-state-highlight .ui-icon{background-image:url(images/ui-icons_777620_256x240.png)}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url(images/ui-icons_cc0000_256x240.png)}.ui-button .ui-icon{background-image:url(images/ui-icons_777777_256x240.png)}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-left,.ui-corner-tl,.ui-corner-top{border-top-left-radius:3px}.ui-corner-all,.ui-corner-right,.ui-corner-top,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bl,.ui-corner-bottom,.ui-corner-left{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-br,.ui-corner-right{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}/*! jQuery UI - v1.11.0 - 2014-06-26
6
- * http://jqueryui.com
7
- * Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
8
- * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
9
  * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;min-height:0;font-size:100%}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:active,.ui-button:hover,.ui-button:link,.ui-button:visited{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-icons-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-icons-only .ui-button-icon-primary,.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary{left:.5em}.ui-button-icons-only .ui-button-icon-secondary,.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}button.ui-button::-moz-focus-inner,input.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-next-hover,.ui-datepicker .ui-datepicker-prev-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-next span,.ui-datepicker .ui-datepicker-prev span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:49%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:700;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td a,.ui-datepicker td span{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-dialog{overflow:hidden;position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0 0;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{position:relative;margin:0;padding:3px 1em 3px .4em;cursor:pointer;min-height:0;list-style-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-active,.ui-menu .ui-state-focus{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url(images/animated-overlay.gif);height:100%;opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted #000}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:700;line-height:1.5;padding:2px .4em;margin:.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-button{display:inline-block;overflow:hidden;position:relative;text-decoration:none;cursor:pointer}.ui-selectmenu-button span.ui-icon{right:.5em;left:auto;margin-top:-8px;position:absolute;top:50%}.ui-selectmenu-button span.ui-selectmenu-text{text-align:left;padding:.4em 2.1em .4em 1em;display:block;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:0 0;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:0 0}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget button,.ui-widget input,.ui-widget select,.ui-widget textarea{font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #ddd;background:#eee url(images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #e78f08;background:#f6a828 url(images/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50% repeat-x;color:#fff;font-weight:700}.ui-widget-header a{color:#fff}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #ccc;background:#f6f6f6;font-weight:700;color:#1c94c4}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#1c94c4;text-decoration:none}.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #fbcb09;background:#fdf5ce url(images/ui-bg_glass_100_fdf5ce_1x400.png) 50% 50% repeat-x;font-weight:700;color:#c77405}.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited{color:#c77405;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #fbd850;background:#fff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;font-weight:700;color:#eb8f00}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#eb8f00;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fed22f;background:#ffe45c url(images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#b81900 url(images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% repeat;color:#fff}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#fff}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#fff}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:700}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)}.ui-widget-header .ui-icon{background-image:url(images/ui-icons_ffffff_256x240.png)}.ui-state-default .ui-icon{background-image:url(images/ui-icons_ef8c08_256x240.png)}.ui-state-focus .ui-icon,.ui-state-hover .ui-icon{background-image:url(images/ui-icons_ef8c08_256x240.png)}.ui-state-active .ui-icon{background-image:url(images/ui-icons_ef8c08_256x240.png)}.ui-state-highlight .ui-icon{background-image:url(images/ui-icons_228ef1_256x240.png)}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url(images/ui-icons_ffd27a_256x240.png)}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-left,.ui-corner-tl,.ui-corner-top{border-top-left-radius:4px}.ui-corner-all,.ui-corner-right,.ui-corner-top,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bl,.ui-corner-bottom,.ui-corner-left{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-br,.ui-corner-right{border-bottom-right-radius:4px}.ui-widget-overlay{background:#666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat;opacity:.5;filter:Alpha(Opacity=50)}.ui-widget-shadow{margin:-5px 0 0 -5px;padding:5px;background:#000 url(images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x;opacity:.2;filter:Alpha(Opacity=20);border-radius:5px}
1
+ /*! jQuery UI - v1.12.1 - 2018-06-19
2
+ * http://jqueryui.com
3
+ * Includes: draggable.css, core.css, resizable.css, sortable.css, theme.css
4
+ * To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
5
+ * Copyright jQuery Foundation and other contributors; Licensed MIT */.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget button,.ui-widget input,.ui-widget select,.ui-widget textarea{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:700}.ui-widget-header a{color:#333}.ui-button,.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,html .ui-button.ui-state-disabled:active,html .ui-button.ui-state-disabled:hover{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:400;color:#454545}.ui-button,.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button{color:#454545;text-decoration:none}.ui-button:focus,.ui-button:hover,.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #ccc;background:#ededed;font-weight:400;color:#2b2b2b}.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,a.ui-button:focus,a.ui-button:hover{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px #5e9ed6}.ui-button.ui-state-active:hover,.ui-button:active,.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active{border:1px solid #003eff;background:#007fff;font-weight:400;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:700}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_444444_256x240.png)}.ui-widget-header .ui-icon{background-image:url(images/ui-icons_444444_256x240.png)}.ui-button:focus .ui-icon,.ui-button:hover .ui-icon,.ui-state-focus .ui-icon,.ui-state-hover .ui-icon{background-image:url(images/ui-icons_555555_256x240.png)}.ui-button:active .ui-icon,.ui-state-active .ui-icon{background-image:url(images/ui-icons_ffffff_256x240.png)}.ui-button .ui-state-highlight.ui-icon,.ui-state-highlight .ui-icon{background-image:url(images/ui-icons_777620_256x240.png)}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url(images/ui-icons_cc0000_256x240.png)}.ui-button .ui-icon{background-image:url(images/ui-icons_777777_256x240.png)}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-left,.ui-corner-tl,.ui-corner-top{border-top-left-radius:3px}.ui-corner-all,.ui-corner-right,.ui-corner-top,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bl,.ui-corner-bottom,.ui-corner-left{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-br,.ui-corner-right{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}/*! jQuery UI - v1.11.0 - 2014-06-26
6
+ * http://jqueryui.com
7
+ * Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
8
+ * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
9
  * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;min-height:0;font-size:100%}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:active,.ui-button:hover,.ui-button:link,.ui-button:visited{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-icons-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-icons-only .ui-button-icon-primary,.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary{left:.5em}.ui-button-icons-only .ui-button-icon-secondary,.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}button.ui-button::-moz-focus-inner,input.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-next-hover,.ui-datepicker .ui-datepicker-prev-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-next span,.ui-datepicker .ui-datepicker-prev span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:49%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:700;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td a,.ui-datepicker td span{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-dialog{overflow:hidden;position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0 0;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{position:relative;margin:0;padding:3px 1em 3px .4em;cursor:pointer;min-height:0;list-style-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-active,.ui-menu .ui-state-focus{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url(images/animated-overlay.gif);height:100%;opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted #000}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:700;line-height:1.5;padding:2px .4em;margin:.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-button{display:inline-block;overflow:hidden;position:relative;text-decoration:none;cursor:pointer}.ui-selectmenu-button span.ui-icon{right:.5em;left:auto;margin-top:-8px;position:absolute;top:50%}.ui-selectmenu-button span.ui-selectmenu-text{text-align:left;padding:.4em 2.1em .4em 1em;display:block;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:0 0;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:0 0}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget button,.ui-widget input,.ui-widget select,.ui-widget textarea{font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #ddd;background:#eee url(images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #e78f08;background:#f6a828 url(images/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50% repeat-x;color:#fff;font-weight:700}.ui-widget-header a{color:#fff}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #ccc;background:#f6f6f6;font-weight:700;color:#1c94c4}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#1c94c4;text-decoration:none}.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #fbcb09;background:#fdf5ce url(images/ui-bg_glass_100_fdf5ce_1x400.png) 50% 50% repeat-x;font-weight:700;color:#c77405}.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited{color:#c77405;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #fbd850;background:#fff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;font-weight:700;color:#eb8f00}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#eb8f00;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fed22f;background:#ffe45c url(images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#b81900 url(images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% repeat;color:#fff}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#fff}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#fff}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:700}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)}.ui-widget-header .ui-icon{background-image:url(images/ui-icons_ffffff_256x240.png)}.ui-state-default .ui-icon{background-image:url(images/ui-icons_ef8c08_256x240.png)}.ui-state-focus .ui-icon,.ui-state-hover .ui-icon{background-image:url(images/ui-icons_ef8c08_256x240.png)}.ui-state-active .ui-icon{background-image:url(images/ui-icons_ef8c08_256x240.png)}.ui-state-highlight .ui-icon{background-image:url(images/ui-icons_228ef1_256x240.png)}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url(images/ui-icons_ffd27a_256x240.png)}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-left,.ui-corner-tl,.ui-corner-top{border-top-left-radius:4px}.ui-corner-all,.ui-corner-right,.ui-corner-top,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bl,.ui-corner-bottom,.ui-corner-left{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-br,.ui-corner-right{border-bottom-right-radius:4px}.ui-widget-overlay{background:#666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat;opacity:.5;filter:Alpha(Opacity=50)}.ui-widget-shadow{margin:-5px 0 0 -5px;padding:5px;background:#000 url(images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x;opacity:.2;filter:Alpha(Opacity=20);border-radius:5px}
assets/css/admin/modula-cpt.css CHANGED
@@ -1,1994 +1,1994 @@
1
- /* Settings Metabox */
2
- #modula-settings .inside {
3
- padding: 0;
4
- margin: 0;
5
- }
6
- .modula-settings-container {
7
- display: flex;
8
- }
9
-
10
- /* Settings Tabs */
11
- .modula-settings-container .modula-tabs {
12
- background-color: #f8f8f8;
13
- }
14
- .modula-settings-container .modula-tabs .modula-tab {
15
- margin: 0 10px 0 0;
16
- padding: 15px 0;
17
- color: #9c9c9c;
18
- cursor: pointer;
19
- position: relative;
20
- min-width: 190px;
21
- position: relative;
22
- }
23
- .modula-settings-container .modula-tabs .modula-tab sup {
24
- margin-left: 5px;
25
- padding: 2px 5px;
26
- border-radius: 5px;
27
- color: #fff;
28
- font-size: 10px;
29
- background: #9c9c9c;
30
- display: inline-block;
31
- line-height: 1;
32
- position: relative;
33
- /* top: -2px; */
34
- float: right;
35
- top: 4px;
36
- }
37
- .modula-settings-container .modula-tabs .modula-tab:hover sup,
38
- .modula-settings-container .modula-tabs .modula-tab.active-tab sup {
39
- background-color: #57a7c9;
40
- }
41
- .modula-settings-container .modula-tabs .modula-tab.modula-responsive:hover sup,
42
- .modula-settings-container .modula-tabs .modula-tab.modula-responsive.active-tab sup {
43
- background:#dc3232;
44
- }
45
- .modula-settings-container .modula-tabs .modula-tab > i {
46
- margin-right: 10px;
47
- margin-left: 15px;
48
- }
49
- .modula-settings-container .modula-tabs .modula-tab:after {
50
- position: absolute;
51
- content: "";
52
- width: 1px;
53
- height: 100%;
54
- background-color: transparent;
55
- top: 0;
56
- right: -1px;
57
- }
58
- .modula-settings-container .modula-tabs .modula-tab.active-tab:first-child {
59
- border-top: none;
60
- }
61
- .modula-settings-container .modula-tabs .modula-tab:hover {
62
- color: #333333;
63
- }
64
- .modula-settings-container .modula-tabs .modula-tab.active-tab {
65
- margin: 0;
66
- padding: 15px 10px 15px 0;
67
- background-color: #fff;
68
- border-top: 1px solid #ddd;
69
- color: #333333;
70
- /*box-shadow: 1px 0px 1px 0px rgba(0, 0, 0, 0.43) inset;*/
71
- }
72
- .modula-settings-container .modula-tabs .modula-tab.active-tab:not(:last-child){
73
- border-bottom: 1px solid #ddd;
74
- }
75
- .modula-settings-container .modula-tabs .modula-tab.active-tab:before {
76
- content: "";
77
- position: absolute;
78
- left: -2px;
79
- top: -1px;
80
- width: 3px;
81
- height: calc( 100% + 2px);
82
- background-color: #57a7c9;
83
- }
84
- .modula-settings-container .modula-tabs .modula-tab.active-tab:after {
85
- background-color: #fff;
86
- }
87
-
88
- tr label.th-label {
89
- color: #23282d;
90
- font-weight: 600;
91
- margin-bottom: 10px;
92
- /*display: block;*/
93
- }
94
-
95
-
96
- /* Tab Content */
97
- .postbox .modula-settings-container table.form-table {
98
- margin: 0;
99
- }
100
- /*.postbox .modula-settings-container .form-table-wrapper {
101
- padding: 0 0 0 20px;
102
- box-sizing: border-box;
103
- }*/
104
- .modula-settings-container .modula-tabs-content {
105
- padding: 0;
106
- border-left: 1px solid #ccd0d4;
107
- flex-grow: 1;
108
- }
109
- .modula-tabs-content > div:not( .active-tab ) {
110
- display: none;
111
- }
112
- .modula-settings-container .modula-tabs-content .tab-content-header {
113
- width: 100%;
114
- padding: 15px 20px 15px 20px;
115
- border-bottom: 1px solid #ccd0d4;
116
- box-sizing: border-box;
117
- display: flex;
118
- align-items: center;
119
- justify-content: space-between;
120
- }
121
- .modula-settings-container .modula-tabs-content .tab-content-header .tab-content-header-actions {
122
- display: flex;
123
- align-items: center;
124
- }
125
- .modula-settings-container .modula-tabs-content .tab-content-header .tab-content-header-actions > span {
126
- margin: 0 10px;
127
- font-style: italic;
128
- }
129
- .modula-settings-container .modula-tabs-content .tab-content-header .tab-content-header-actions a.button > span {
130
- height: auto;
131
- line-height: 26px;
132
- margin-right: 10px;
133
- }
134
- #poststuff .modula-settings-container .modula-tabs-content .tab-content-header .tab-content-header-title > h2 {
135
- font-weight: 700;
136
- padding: 0;
137
- display: inline-block;
138
- line-height:20px;
139
- }
140
-
141
- #poststuff .modula-settings-container .modula-tabs-content .tab-content-header .tab-header-description p {
142
- margin: 0;
143
- }
144
-
145
- .modula-settings-container .form-table td p.description {
146
- font-size: 13px;
147
- }
148
-
149
- .modula-settings-container .modula-tabs-content .form-table tr {
150
- border-top: 1px solid #EEE;
151
- border-bottom: 1px solid #EEE;
152
- }
153
- /*.modula-settings-container .modula-tabs-content .form-table tr:nth-of-type(even) {
154
- background-color: #FAFAFA;
155
- }*/
156
- .modula-settings-container .modula-tabs-content .form-table tr:first-of-type {border-top: none;}
157
- .modula-settings-container .modula-tabs-content .form-table tr:last-of-type {border-bottom: none;}
158
- .modula-settings-container .modula-tabs-content .form-table th {padding: 20px;width:200px;min-width:200px;}
159
- .modula-settings-container .modula-tabs-content .form-table th.child_setting {
160
- padding-left:40px;
161
- width:220px;
162
- min-width:220px;
163
- }
164
-
165
- .modula-settings-container .modula-tabs-content .form-table textarea:not(#modula-style-customcode) {
166
- max-width:230px;
167
- }
168
-
169
- textarea#modula-style-customcode {
170
- resize : none;
171
- height : calc(100vh - 100px);
172
- }
173
-
174
- .modula-settings-container .modula-tabs-content .form-table th.two_child_setting {
175
- padding-left:60px;
176
- display:inline-block;
177
- width:200px;
178
- }
179
-
180
- .modula-settings-container .modula-tabs-content .form-table th.three_child_setting {
181
- padding-left:80px;
182
- display:inline-block;
183
- width:180px;
184
- min-width:180px;
185
- }
186
- /* Fields */
187
-
188
- .modula-placeholders {
189
- display: flex;
190
- flex-wrap: wrap;
191
- }
192
- .modula-placeholder-value {
193
- font-family: 'Courier New', Courier, monospace;
194
- font-weight: 500;
195
- letter-spacing: -0.5px;
196
- font-size: 12px;
197
- border: 1px solid grey;
198
- padding: 3px 4px;
199
- background: #ddd;
200
- cursor: pointer;
201
- user-select: none;
202
- -webkit-user-select: none;
203
- margin-right: 3px;
204
- width: 115px;
205
-
206
- }
207
-
208
- /* UI Slider */
209
- .modula-settings-container .slider-container {
210
- position: relative;
211
- height: 2px;
212
- padding: 10px 0;
213
- width: 230px;
214
- box-sizing: border-box;
215
- /*margin-bottom: 10px;*/
216
- display: flex;
217
- display: flex;
218
- justify-content: space-between;
219
- align-items: center;
220
- }
221
- .modula-settings-container .slider-container input[type="text"] {
222
- border: none;
223
- text-align: center;
224
- padding: 2px;
225
- margin: 0 30px 0 0;
226
- font-size: 12px;
227
- color: #333;
228
- border-radius: 10px;
229
- background-color: #fff;
230
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.16);
231
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.16);
232
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.16);
233
- width: 40px;
234
- height: 22px;
235
- min-width:auto;
236
- }
237
- .modula-settings-container .slider-container .ui-slider {
238
- position: relative;
239
- text-align: left;
240
- height: 2px;
241
- border-radius: 3px;
242
- border: none;
243
- display: block;
244
- width: 100%;
245
- background: #d6d6d6;
246
- -webkit-box-sizing: border-box;
247
- -moz-box-sizing: border-box;
248
- box-sizing: border-box;
249
- }
250
- .modula-settings-container .slider-container .ui-slider .ui-slider-handle {
251
- position: absolute;
252
- z-index: 2;
253
- top: -10px;
254
- cursor: default;
255
- -ms-touch-action: none;
256
- touch-action: none;
257
- width: 18px;
258
- height: 18px;
259
- -webkit-border-radius: 9px;
260
- -moz-border-radius: 9px;
261
- border-radius: 9px;
262
- background-color: #fff;
263
- -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
264
- -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
265
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
266
- border: solid 1px #d7d7d7;
267
- transform: translateX(-50%);
268
- }
269
- .modula-settings-container .slider-container .ui-slider .ui-slider-range {
270
- position: absolute;
271
- z-index: 1;
272
- font-size: 0.7em;
273
- display: block;
274
- border: 0;
275
- background-position: 0 0;
276
- background: #57a7c9;
277
- top: 0;
278
- bottom: 0;
279
- }
280
-
281
- .modula-settings-container select,
282
- .modula-settings-container input:not([type="select-one"]):not([type="button"]):not([contenteditable="true"]),
283
- .modula-settings-container select{
284
- max-width:230px;
285
- }
286
-
287
- .selectize-control.single .selectize-input, .selectize-dropdown.single {
288
- max-width:230px;
289
- }
290
-
291
- /* Hover Effects */
292
- .modula-effects-preview {
293
- margin-top: 20px;
294
- }
295
- .modula-effects-preview .modula-item {
296
- height: 300px;
297
- overflow: hidden;
298
- position: relative;
299
- }
300
- .modula-effects-preview .modula-item img {
301
- position: absolute;
302
- min-height: 100%;
303
- min-width: 100%;
304
- }
305
- .modula-effects-preview .modula-item .figc {
306
- display: flex;
307
- align-items: center;
308
- justify-content: center;
309
- color: #fff;
310
- font-size: 11px;
311
- text-align: center;
312
- position: absolute;
313
- left: 0;
314
- width: 100%;
315
- height: 100%;
316
- padding: 0;
317
- }
318
- .modula-effects-preview .modula-item .figc .jtg-title {
319
- font-size: 21px !important;
320
- color: #fff;
321
- }
322
- .modula-effects-preview .modula-item .figc p {
323
- color: #fff;
324
- font-size: 15px;
325
- font-style: normal;
326
- }
327
-
328
- .modula .modula-items .modula-item .jtg-title {
329
- margin:0;
330
- }
331
- .modula .modula-items .modula-item p {
332
- margin:0;
333
- padding: 0;
334
- }
335
- .modula .figc {
336
- color: black;
337
- text-align: center;
338
- position: absolute;
339
- left: 0;
340
- width: 100%;
341
- padding:2em;
342
- }
343
-
344
- .modula .modula-item .jtg-social a {
345
- text-decoration: none;
346
- color: #fff;
347
- display: inline-block;
348
- margin:0 10px 0 0;
349
- width: 20px;
350
- padding: 6px 4px;
351
- border: 0;
352
- opacity: 0;
353
- transition: opacity .3s;
354
- }
355
- .modula .modula-item .jtg-social svg {
356
- width: 20px;
357
- height: 16px;
358
- }
359
- .modula .modula-item:hover .jtg-social a {
360
- opacity: 1;
361
- }
362
-
363
- /*---------------*/
364
- /***** pufrobo *****/
365
- /*---------------*/
366
-
367
- .modula .modula-items .jtg-social {
368
- opacity: 0;
369
- transition: opacity 0.1s;
370
- right:30px;
371
- position: absolute;
372
- bottom:20px;
373
- text-align: right;
374
- transition:all .3s;
375
- }
376
-
377
- html body .modula.modula-gallery .modula-items .jtg-social {
378
- opacity: 1;
379
- }
380
-
381
- .modula .modula-items .jtg-social a:last-of-type {
382
- margin-right: 0;
383
- }
384
-
385
- .modula .modula-item.effect-pufrobo p.description {
386
- margin-bottom: 2em;
387
- }
388
-
389
- .modula .modula-item.effect-pufrobo .figc {
390
- text-align: right;
391
- }
392
-
393
- .modula .modula-item.effect-pufrobo .jtg-title,
394
- .modula .modula-item.effect-pufrobo p {
395
- position: absolute;
396
- right: 30px;
397
- left: 30px;
398
- padding: 10px 0;
399
- }
400
-
401
- .modula .modula-item:hover img { opacity: .8 }
402
-
403
- .modula .modula-item { background-color:#000; }
404
-
405
- .modula .modula-item.effect-pufrobo p {
406
- bottom: 20%;
407
- line-height: 1.5;
408
- -webkit-transform: translate3d(0,100%,0);
409
- transform: translate3d(0,100%,0);
410
- letter-spacing: 1px;
411
- }
412
-
413
- .modula .modula-item.effect-pufrobo .jtg-title {
414
- /*top: 30px;*/
415
- top: 10%;
416
- -webkit-transition: -webkit-transform 0.35s;
417
- transition: transform 0.35s;
418
- -webkit-transform: translate3d(0,20px,0);
419
- transform: translate3d(0,20px,0);
420
- }
421
-
422
- .modula .modula-item.effect-pufrobo:hover .jtg-title {
423
- -webkit-transform: translate3d(0,0,0);
424
- transform: translate3d(0,0,0);
425
- }
426
-
427
- .modula .modula-item.effect-pufrobo .jtg-title::after {
428
- position: absolute;
429
- top: 80%;
430
- left: 0;
431
- width: 100%;
432
- height: 4px;
433
- background: #fff;
434
- content: '';
435
- -webkit-transform: translate3d(0,40px,0);
436
- transform: translate3d(0,40px,0);
437
- }
438
-
439
- .modula .modula-item.effect-pufrobo .jtg-title::after,
440
- .modula .modula-item.effect-pufrobo p {
441
- opacity: 0;
442
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
443
- transition: opacity 0.35s, transform 0.35s;
444
- }
445
-
446
- .modula .modula-item.effect-pufrobo:hover .jtg-title::after,
447
- .modula .modula-item.effect-pufrobo:hover p {
448
- margin-top: 10px;
449
- margin-bottom: 5px;
450
- opacity: 1;
451
- -webkit-transform: translate3d(0,0,0);
452
- transform: translate3d(0,0,0);
453
- }
454
-
455
- html body #wpbody #poststuff #post-body .postbox-container #modula-hover-effect .modula.modula-gallery .modula-items .modula-item.effect-sadie .jtg-title {
456
- color:#fff;
457
- }
458
-
459
- html body #wpbody #poststuff #post-body .postbox-container #modula-hover-effect .modula.modula-gallery .modula-items .modula-item.effect-zoe .jtg-title,
460
- html body #wpbody #poststuff #post-body .postbox-container #modula-hover-effect .modula.modula-gallery .modula-items .modula-item.effect-zoe .jtg-social a {
461
- color:#000;
462
- }
463
-
464
- html body #wpbody #poststuff #post-body .postbox-container #modula-hover-effect .modula.modula-gallery .modula-items .modula-preview-badge + .modula-item.effect-dexter .figc::after {
465
- -webkit-transform: translate3d(0,-50%,0);
466
- transform: translate3d(0,-50%,0);
467
- }
468
-
469
- html body #wpbody #poststuff #post-body .postbox-container #modula-hover-effect .modula.modula-gallery .modula-items .modula-item.effect-milo:hover .description {
470
- opacity:1;
471
- }
472
-
473
- html body #wpbody #poststuff #post-body .postbox-container #modula-hover-effect .modula.modula-gallery .modula-items .modula-preview-badge + .modula-item.effect-dexter .figc:hover::after {
474
- -webkit-transform: translate3d(0,0,0);
475
- transform: translate3d(0,0,0);
476
- }
477
-
478
- tr[data-container="effect"] > td {
479
- padding:15px 20px;
480
- }
481
-
482
- .modula-effects-preview .modula-item.effect-dexter .figc,
483
- .modula-effects-preview,
484
- .modula-effects-preview p {
485
- box-sizing : border-box;
486
- }
487
-
488
- .modula-effects-preview .modula-item.effect-chico .figc,
489
- .modula-effects-preview .modula-item.effect-roxy .figc,
490
- .modula-effects-preview .modula-item.effect-layla .figc,
491
- .modula-effects-preview .modula-item.effect-oscar .figc,
492
- #poststuff .modula-effects-preview .modula-item .figc .jtg-title {
493
- padding : 0;
494
- }
495
-
496
- #poststuff .modula .modula-item.effect-reflex .figc-inner .jtg-title {
497
- padding-left : 10px;
498
- }
499
-
500
- #poststuff .modula .modula-items .modula-item.effect-comodo .jtg-title {
501
- margin-top : 20px;
502
- }
503
-
504
- #poststuff .modula .modula-item.effect-appear .jtg-title,
505
- #poststuff .modula .modula-item.effect-honey .jtg-title {
506
- padding : 1em 1.5em;
507
- }
508
-
509
- #poststuff .modula .modula-item.effect-milo .jtg-title {
510
- padding : 1em 1.2em;
511
- }
512
-
513
- .modula .modula-items .modula-item.effect-julia p {
514
- margin : 0 0 0.25em;
515
- padding : 0.4em 1em;
516
- }
517
-
518
- #poststuff .modula .modula-item.effect-terry .jtg-title {
519
- padding : 0.4em 15px;
520
- }
521
-
522
- .modula .modula-items .modula-item.effect-apollo p {
523
- margin : 3em;
524
- padding : 0 1em;
525
- }
526
-
527
- #poststuff .modula .modula-items .modula-item.effect-steve .jtg-title {
528
- margin-top : 2em;
529
- padding : 0.25em;
530
- color : #000;
531
- }
532
-
533
- .modula .modula-items .modula-item.effect-steve p {
534
- margin-top : 1em;
535
- padding : 0.5em;
536
- color : #000;
537
- }
538
-
539
- .modula-effects-preview .modula-item.effect-under img {
540
- top : 50%;
541
- left : 50%;
542
- transform : translate(-50%, -50%);
543
- }
544
-
545
- /* Upsells */
546
- .modula-upsell {
547
- background: #f1f1f1;
548
- /* border: 1px solid #a8d69c;*/
549
- border: 0;
550
- padding: 15px;
551
- margin-top: 30px;
552
- }
553
-
554
- .modula-settings-container .modula-upsell {
555
- margin:30px;
556
- }
557
-
558
- .modula-upsell .modula-upsell-features {
559
- text-align: left;
560
- display: flex;
561
- flex-wrap: wrap;
562
- padding: 20px 0;
563
- }
564
- .modula-upsell .modula-upsell-features li {
565
- width: 33%;
566
- }
567
- #modula-exif .modula-upsell .modula-upsell-features li,
568
- #modula-zoom .modula-upsell .modula-upsell-features li {
569
- width: 50%;
570
- }
571
-
572
- /* We're handling the upsells inside metaboxes slightly different */
573
- .form-table-wrapper .modula-upsell {
574
- border: 1px solid #DDD;
575
- text-align: center;
576
- }
577
-
578
- #poststuff .modula-upsell h2 {
579
- font-weight: 700;
580
- background: #fff;
581
- left: -15px;
582
- top: -15px;
583
- padding: 8px 12px;
584
- position: relative;
585
- width: calc(100% + 6px);
586
- border-bottom: 1px solid #DDD
587
- }
588
- .modula-upsell p {
589
- margin: 0;
590
- }
591
- .modula-upsell p.modula-upsell-description {
592
- font-size: 13px;
593
- line-height: 1.5;
594
- color: #333333;
595
- opacity: .8;
596
- margin-top: 0;
597
- margin-bottom: 10px;
598
- padding:0px 10px;
599
- }
600
- .modula-upsell .button {
601
- height: 31px;
602
- line-height: 31px;
603
- font-weight: bold;
604
- }
605
- .modula-upsell .button:first-child {
606
- margin-right: 10px;
607
- }
608
-
609
- .modula-upsell .action-link,
610
- .modula-upsell .action-link:hover {
611
- background: #51AD31;
612
- border-color: #51AD31;
613
- color: #fff;
614
- font-weight: bold;
615
- }
616
-
617
- /* Modula Gallery upload */
618
- #modula-uploader-container {
619
- /*min-height: 300px;*/
620
- position: relative;
621
- padding-left: 10px;
622
- padding-right: 10px;
623
- }
624
- #modula-uploader-container.modula-resizer-enabled {
625
- /*padding-left: 20px;*/
626
- margin-bottom: 20px;
627
- }
628
- .modula-upload-actions {
629
- padding: 15px 20px;
630
- background-color: #f8fcfd;
631
- border-bottom: 1px solid #ecf6f9;
632
- margin-bottom: 20px;
633
- display: flex;
634
- align-items: center;
635
- justify-content: space-between;
636
- width: 100%;
637
- box-sizing: border-box;
638
- }
639
- .modula-upload-actions .buttons {
640
- flex-shrink: 0;
641
- width: auto;
642
- display: flex;
643
- }
644
- .modula-sources-dropdown {
645
- position: relative;
646
- border-top: 1px solid rgba( 255,255,255,0 );
647
- border-right: 1px solid rgba( 255,255,255,0 );
648
- border-left: 1px solid rgba( 255,255,255,0 );
649
- }
650
- .modula-sources-dropdown:hover {
651
- border-color: #ddd;
652
- background: #f5f5f5;
653
- }
654
- .modula-sources-dropdown > span {
655
- width: 28px;
656
- height: 32px;
657
- text-align: center;
658
- line-height: 28px;
659
- cursor: pointer;
660
- display: inline-block;
661
- font-size: 25px;
662
- font-weight: bold;
663
- }
664
- .modula-sources-dropdown .modula-sources-dropdown-content {
665
- position: absolute;
666
- right: -1px;
667
- bottom: 0;
668
- transform: translateY( 100% );
669
- display: none;
670
- padding: 15px;
671
- background-color: #f5f5f5;
672
- box-shadow: 0 1px 1px rgba(0,0,0,.04);
673
- box-sizing: border-box;
674
- border: 1px solid #ddd;
675
- }
676
- .modula-sources-dropdown:hover .modula-sources-dropdown-content {
677
- display: block;
678
- }
679
- .modula-sources-dropdown:hover .modula-sources-dropdown-content:before {
680
- content: "";
681
- height: 1px;
682
- width: 28px;
683
- background-color: #f5f5f5;
684
- position: absolute;
685
- top: -1px;
686
- right: 0;
687
- }
688
- .segrip.ui-resizable-se {
689
- width: 30px;
690
- height: 30px;
691
- background: url('../../images/resize-se.svg') no-repeat;
692
- background-size: contain;
693
- display: none;
694
- z-index: 100;
695
- opacity: 1;
696
- }
697
- .modula-resizer-enabled .segrip.ui-resizable-se {
698
- display: block;
699
- }
700
- .modula-upload-actions #modula-uploader-browser {
701
- border-bottom-right-radius: 0;
702
- border-top-right-radius: 0;
703
- }
704
- .modula-upload-actions #modula-wp-gallery {
705
- border-bottom-left-radius: 0;
706
- border-top-left-radius: 0;
707
- }
708
- .wp-core-ui .modula-upload-actions > a {
709
- margin: 0 5px;
710
- }
711
- #modula-dropzone-container {
712
- position: absolute;
713
- top: 0;
714
- left: 0;
715
- right: 0;
716
- bottom: 0;
717
- background: rgba(0,86,132,.9);
718
- z-index: 250000;
719
- display: none;
720
- text-align: center;
721
- opacity: 0;
722
- transition: opacity 250ms;
723
- }
724
- #modula-dropzone-container .modula-uploader-window-content {
725
- position: absolute;
726
- top: 10px;
727
- left: 10px;
728
- right: 10px;
729
- bottom: 10px;
730
- border: 1px dashed #fff;
731
- }
732
- #poststuff #modula-dropzone-container .modula-uploader-window-content h1 {
733
- margin: -.5em 0 0;
734
- position: absolute;
735
- top: 50%;
736
- left: 0;
737
- right: 0;
738
- -webkit-transform: translateY(-50%);
739
- transform: translateY(-50%);
740
- font-size: 20px;
741
- line-height: 28px;
742
- font-weight: 400;
743
- color: #fff;
744
- padding: 0;
745
- }
746
- .modula-uploader-inline-content {
747
- position: relative;
748
- min-height: 300px;
749
- width: 100%;
750
- }
751
- .modula-resizer-enabled .modula-uploader-inline-content {
752
- min-height: initial;
753
- }
754
- .modula-uploader-inline-content h2 {
755
- text-align: center;
756
- position: absolute;
757
- top: 50%;
758
- left: 50%;
759
- transform: translate( -50%, -50% );
760
- }
761
- #poststuff .modula-upload-message {
762
- font-size: 43px;
763
- line-height: 1;
764
- font-weight: 400;
765
- margin: 0;
766
- display: none;
767
- color: #ebebeb;
768
- }
769
- #poststuff .modula-upload-message .dashicons,
770
- #poststuff .modula-upload-message .dashicons-before:before{
771
- font-size: 43px;
772
- width: 43px;
773
- height: 43px;
774
- }
775
- .modula-uploader-inline p {
776
- font-size: 12px;
777
- margin: .5em 0;
778
- }
779
- #poststuff .modula-uploader-inline .modula-upload-instructions {
780
- font-size: 14px;
781
- color: #444;
782
- font-weight: 400;
783
- padding: 0;
784
- }
785
- .modula-uploader-footer .max-upload-size {
786
- float: left;
787
- }
788
- .modula-uploader-footer .modula-upload-numbers {
789
- float: right;
790
- opacity: 0;
791
- }
792
- .modula-uploader-footer:after {
793
- display: block;
794
- content: "";
795
- clear: both;
796
- }
797
- .upload-progress .modula-upload-numbers {
798
- margin: 0;
799
- line-height: 1.4em;
800
- }
801
- .modula-progress-bar {
802
- width: 100%;
803
- max-width: 400px;
804
- position: relative;
805
- height: 2px;
806
- margin: 8px 0 0;
807
- border-radius: 10px;
808
- background: #e5e5e5;
809
- }
810
- .upload-info-container {
811
- position: relative;
812
- overflow: hidden;
813
- flex-grow: 1;
814
- }
815
- .upload-info-container .upload-info {
816
- padding: 5px 0;
817
- }
818
- .upload-info-container .upload-progress {
819
- position: absolute;
820
- background-color: #f8fcfd;
821
- height: 100%;
822
- display: flex;
823
- top: 0;
824
- left: 0;
825
- width: 100%;
826
- flex-direction: column;
827
- transition: transform 0.5s;
828
- transform: translateY( 100% );
829
- }
830
-
831
- .modula-upload-actions.show-progress .upload-info-container .upload-progress {
832
- transform: translateY( 0 );
833
- }
834
-
835
- .modula-progress-bar .modula-progress-bar-inner {
836
- height: 2px;
837
- min-width: 20px;
838
- width: 0px;
839
- background: #0085ba;
840
- -webkit-transition: width 300ms;
841
- -moz-transition: width 300ms;
842
- -ms-transition: width 300ms;
843
- -o-transition: width 300ms;
844
- transition: width 300ms;
845
- border-radius: 5px;
846
- }
847
- .modula-uploader-footer.show-progress .modula-upload-numbers,
848
- .modula-uploader-footer.show-progress .modula-progress-bar {
849
- opacity: 1;
850
- }
851
-
852
- .modula-uploader-inline-content .modula-single-image,
853
- .modula-uploader-inline-content .modula-single-image-placeholder {
854
- cursor: move;
855
- display: inline-block;
856
- padding: 0 10px 10px 0;
857
- box-sizing: border-box;
858
- width: 16.66%;
859
- }
860
- .modula-uploader-inline-content .modula-single-image-placeholder:after {
861
- width: 100%;
862
- height: 100%;
863
- display: inline-block;
864
- content: "";
865
- position: relative;
866
- border: 3px dashed #444;
867
- padding-top: calc( 100% - 6px );
868
- box-sizing: border-box;
869
- }
870
- .modula-uploader-inline-content .modula-single-image .modula-single-image-content {
871
- position: relative;
872
- border: 1px solid #d6d6d6;
873
- box-sizing: border-box;
874
- background-position: center;
875
- background-size: cover;
876
- }
877
- .modula-uploader-inline-content .modula-single-image .modula-single-image-content img {
878
- display: block;
879
- width: 100%;
880
- }
881
- #poststuff .modula-uploader-inline-content > .modula-upload-message:only-child {
882
- display: block;
883
- }
884
- .modula-uploader-inline-content .modula-single-image .actions {
885
- position: absolute;
886
- z-index: 99;
887
- font-size: 0;
888
- width: 100%;
889
- height: 100%;
890
- top: 0;
891
- left: 0;
892
- background: rgba( 0,0,0,.4 );
893
- padding: 5px;
894
- box-sizing: border-box;
895
- display: none;
896
- }
897
- .modula-uploader-inline-content .modula-single-image:hover .actions {
898
- display: block;
899
- }
900
- .modula-uploader-inline-content .modula-single-image .actions a {
901
- /*text-decoration: none;
902
- color: #fff;
903
- display: inline-block;
904
- padding: 5px;
905
- display: inline-block;
906
-
907
- text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799;
908
- background: #0085ba;
909
- border: 1px solid #006799;
910
- border-bottom-width: 2px;*/
911
-
912
- width: 20px;
913
- height: 20px;
914
- border-radius: 100%;
915
- border: 1px solid #000;
916
- background-color: rgba( 255,255,255,.8 );
917
- color: #000;
918
- display: block;
919
- text-decoration: none;
920
- text-align: center;
921
- line-height: 20px;
922
- margin-bottom: 5px;
923
-
924
- /*float: right;
925
- clear: both;*/
926
-
927
-
928
- }
929
- .modula-uploader-inline-content .modula-single-image .actions a:hover {
930
- background-color: #000;
931
- color: #fff;
932
- }
933
- /*.modula-uploader-inline-content .modula-single-image .actions a:first-child {
934
- border-top-left-radius: 5px;
935
- }
936
- .modula-uploader-inline-content .modula-single-image .actions a:last-child {
937
- border-left-width: 0;
938
- border-top-right-radius: 5px;
939
- }*/
940
- .modula-uploader-inline-content .modula-single-image .actions a span {
941
- font-size: 16px;
942
- width: 20px;
943
- height: 20px;
944
- line-height: 20px;
945
- }
946
- .modula-uploader-inline-content .modula-single-image .actions a.modula-delete-image {
947
- color: #a00a00;
948
- }
949
- .modula-uploader-inline-content .modula-single-image .actions a.modula-delete-image:hover {
950
- background-color: #a00a00;
951
- color: #fff;
952
- }
953
- .modula-uploader-inline-content:after {
954
- content: "";
955
- display: block;
956
- clear: both;
957
- }
958
-
959
- /* Modula Popup */
960
- .media-modal .modula-edit-popup.edit-attachment-frame .edit-media-header button.right {
961
- border-right: 1px solid #ddd;
962
- }
963
- .media-modal .modula-edit-popup .attachment-details .attachment-info .settings .setting {
964
- margin: 0 0 20px 0;
965
- padding: 0 0 20px 0;
966
- border-bottom: 1px solid #ddd;
967
- }
968
- .media-modal .modula-edit-popup .attachment-details .attachment-info .settings .setting span.name {
969
- display: block;
970
- width: 100%;
971
- min-width: 100%;
972
- margin: 0;
973
- padding: 0;
974
- text-align: left;
975
- font-weight: 700;
976
- font-size: 14px;
977
- }
978
- .media-modal .modula-edit-popup .attachment-details .attachment-info .settings .setting input[type="text"],
979
- .media-modal .modula-edit-popup .attachment-details .attachment-info .settings .setting textarea {
980
- display: block;
981
- width: 100%;
982
- min-width: 100%;
983
- margin: 0;
984
- }
985
- .media-modal .modula-edit-popup .attachment-details .attachment-info .settings .setting div.description {
986
- clear: both;
987
- float: left;
988
- margin: 5px 0 0 0;
989
- text-align: left;
990
- font-size: 13px;
991
- font-style: italic;
992
- color: #666;
993
- }
994
-
995
- .media-modal .modula-edit-popup .attachment-details .attachment-info .settings .setting.modula-link input[name="link"] {
996
- padding:10px 40px 10px 5px;
997
- }
998
-
999
- .media-modal .modula-edit-popup .attachment-details .attachment-info .settings .setting.modula-link input[name="link"].ui-autocomplete-loading {
1000
- background-position: calc(100% - 40px) center;
1001
- }
1002
-
1003
- .media-modal .modula-edit-popup .attachment-details .attachment-info .settings .setting.modula-link label {
1004
- position: relative;
1005
- }
1006
-
1007
- .media-modal .modula-edit-popup .attachment-details .attachment-info .settings .setting.modula-link span.dashicons {
1008
- position: absolute;
1009
- right: 15px;
1010
- margin-top: 35px;
1011
- font-size: 16px;
1012
- line-height: 0px;
1013
- }
1014
-
1015
- .media-modal .modula-edit-popup .attachment-details .attachment-info .settings {
1016
- margin: 0;
1017
- padding: 0;
1018
- border: none;
1019
- }
1020
- .media-modal .attachment-info .actions a {
1021
- display: inline-block;
1022
- }
1023
- .inline-input {
1024
- display: inline;
1025
- }
1026
-
1027
- /* Resizeble & Draggble */
1028
- .ui-draggable.ui-resizable > .segrip {
1029
- width: 10px;
1030
- height: 10px;
1031
- background: red;
1032
- position: absolute;
1033
- bottom: 0;
1034
- right: 0;
1035
- }
1036
- .ui-draggable.ui-resizable .modula-single-image-content img {
1037
- display: none;
1038
- }
1039
- .ui-draggable.ui-resizable .modula-single-image-content {
1040
- width: 100%;
1041
- height: 100%;
1042
- }
1043
-
1044
- .ui-draggable.ui-resizable.modula-single-image {
1045
- padding: 0;
1046
- }
1047
-
1048
- .packery-drop-placeholder {
1049
- outline: 3px dashed #444;
1050
- outline-offset: -6px;
1051
- /* transition position changing */
1052
- -webkit-transition: -webkit-transform 0.2s;
1053
- transition: transform 0.2s;
1054
- }
1055
-
1056
- .ui-resizable-helper {
1057
- border: 3px dashed #444;
1058
- box-sizing: border-box;
1059
- }
1060
-
1061
- /* New Design by Gabi */
1062
- #poststuff #modula-preview-gallery h2.hndle,
1063
- #poststuff #modula-settings h2.hndle {
1064
- padding-left: 20px;
1065
- }
1066
-
1067
- #poststuff #modula-preview-gallery .inside {
1068
- margin-top: 0;
1069
- padding: 0;
1070
- }
1071
-
1072
- /* Modula Popup */
1073
- .modula-edit-popup .attachment-details .setting span.description > span {
1074
- display: inline-block;
1075
- float: none;
1076
- width: auto;
1077
- min-width: unset;
1078
- line-height: 16px;
1079
- min-height: 16px;
1080
- margin-top: 8px;
1081
- padding: 0;
1082
- vertical-align: middle;
1083
- margin-right: 0;
1084
- }
1085
- .modula-edit-popup .attachment-details .setting span.description {
1086
- text-align: left;
1087
- vertical-align: middle;
1088
- }
1089
-
1090
- .modula-media-modal .attachments-browser .media-toolbar .media-toolbar-secondary {
1091
- width: 100%;
1092
- }
1093
-
1094
- .modula-media-modal .attachments-browser .media-toolbar .media-toolbar-secondary .modula-error-container {
1095
- margin-top:25px;
1096
- }
1097
-
1098
- /* Modula Error */
1099
- .modula-error-container {
1100
- display: block;
1101
- }
1102
- .modula-error-container.hide {
1103
- display: none;
1104
- }
1105
- .modula-error-container .modula-error {
1106
- padding: 12px;
1107
- margin-bottom: 12px;
1108
- background: #fff;
1109
- border-left: 4px solid #dc3232;
1110
- box-shadow: 0px 0px 4px 0 rgba(0,0,0,.1);
1111
- font-weight: 600;
1112
- margin-top: 5px;
1113
- position: relative;
1114
- background-color: #dc3232;
1115
- color: #fff;
1116
- }
1117
- .modula-error-container .modula-error a {
1118
- color: #fff;
1119
- }
1120
- .modula-error-container .modula-error .upload-dismiss-errors {
1121
- position: absolute;
1122
- top: 50%;
1123
- right: -5px;
1124
- padding: 10px;
1125
- transition: none;
1126
- display: block;
1127
- text-decoration: none;
1128
- margin-top: -18px;
1129
- }
1130
- .modula-error-container .modula-error .upload-dismiss-errors:before {
1131
- content: "\f153";
1132
- display: block;
1133
- font: 400 16px/1 dashicons;
1134
- color: #fff;
1135
- }
1136
-
1137
- a.modula-tab-link {
1138
- text-decoration: none;
1139
- }
1140
- .modula-tab-link span.dashicons {
1141
- width: 16px;
1142
- height: 16px;
1143
- line-height: 16px;
1144
- margin-right: 3px;
1145
- vertical-align: text-bottom;
1146
- font-size: 16px;
1147
- text-decoration: none;
1148
- }
1149
-
1150
- /*#normal-sortables {
1151
- display: none;
1152
- }*/
1153
-
1154
- /* Modula Grid */
1155
- #modula-grid {
1156
- height: 100%;
1157
- position: absolute;
1158
- overflow: hidden;
1159
- top: 0;
1160
- left: 0;
1161
- width: 100%;
1162
- }
1163
- #modula-grid .modula-grid-item {
1164
- background-color: #FAFAFA;
1165
- float: left;
1166
- }
1167
- #modula-grid .modula-grid-item:nth-child( 12n ){
1168
- margin-right: 0 !important;
1169
- }
1170
- #modula-grid:after {
1171
- content: "";
1172
- display: block;
1173
- clear: both;
1174
- }
1175
-
1176
- .modula-shortcuts {
1177
- padding:10px;
1178
- color: #696969;
1179
- background:#f5efe0;
1180
- font-size:11px;
1181
- }
1182
-
1183
- .modula-shortcuts strong {
1184
- color:#000;
1185
- }
1186
-
1187
- /* Tabs tooltips */
1188
- .modula-tooltip {
1189
- position: relative;
1190
- display: inline-block;
1191
- float: left;
1192
- margin-right: 10px;
1193
- }
1194
-
1195
- .modula-tooltip > span {
1196
- cursor: pointer;
1197
- color: #0073aa;
1198
- text-decoration: underline;
1199
- margin-left: 5px;
1200
- }
1201
-
1202
- .modula-tooltip .modula-tooltip-content {
1203
- display: none;
1204
- position: absolute;
1205
- top: 50%;
1206
- right: -10px;
1207
- transform: translate( 100% ,-50% );
1208
- width: 300px;
1209
- background: #000;
1210
- color: #fff;
1211
- padding: 10px;
1212
- box-sizing: border-box;
1213
- z-index: 99;
1214
- }
1215
-
1216
- .modula-tooltip .modula-tooltip-content:before {
1217
- content: '';
1218
- width: 0px;
1219
- height: 0px;
1220
- border-style: solid;
1221
- border-width: 8px 8px 8px 0;
1222
- border-color: transparent #000 transparent transparent;
1223
- display: block;
1224
- position: absolute;
1225
- top: 50%;
1226
- left: -8px;
1227
- transform: translateY( -50% );
1228
- }
1229
-
1230
- .modula-tooltip:hover .modula-tooltip-content {
1231
- display: block;
1232
- }
1233
-
1234
-
1235
- /* Modula Helper Grid */
1236
- .modula-helper-guidelines-container {
1237
- padding: 15px 20px;
1238
- background-color: #f8fcfd;
1239
- display: flex;
1240
- align-items: center;
1241
- border-top: 1px solid #ecf6f9;
1242
- z-index: 999;
1243
- position: relative;
1244
- }
1245
- .modula-helper-guidelines-container .onoffswitch {
1246
- margin-top: 0;
1247
- }
1248
- .modula-helper-guidelines-wrapper .modula-helper-guidelines-label {
1249
- margin-left: 5px;
1250
- }
1251
-
1252
- .modula-helper-guidelines-container.modula-guidelines-display {
1253
- display: none;
1254
- }
1255
-
1256
- /* Creative Grid */
1257
- .modula-creative-gallery.modula-uploader-inline-content .modula-single-image .modula-single-image-content {
1258
- background: #eee !important;
1259
- position: relative;
1260
- overflow: hidden;
1261
- }
1262
- .modula-creative-gallery.modula-uploader-inline-content .modula-single-image-content:before {
1263
- content: "";
1264
- display: block;
1265
- padding-top: 100%;
1266
- }
1267
- .modula-creative-gallery.modula-uploader-inline-content .modula-single-image-content img {
1268
- position: absolute;
1269
- top: 50%;
1270
- left: 50%;
1271
- -webkit-transform: translate(-50%,-50%);
1272
- transform: translate(-50%,-50%);
1273
- }
1274
- .modula-creative-gallery.modula-uploader-inline-content .modula-single-image-content.landscape img {
1275
- max-height: 100%;
1276
- }
1277
- .modula-creative-gallery.modula-uploader-inline-content .modula-single-image-content.portrait img {
1278
- max-width: 100%;
1279
- }
1280
-
1281
- /* Toggles */
1282
- .modula-toggle {
1283
- position: relative;
1284
- position: relative;
1285
- user-select: none;
1286
- display: inline-block;
1287
- }
1288
-
1289
- .modula-toggle__items {
1290
- box-sizing: border-box;
1291
- display: inline-block;
1292
- position: relative;
1293
- }
1294
- .modula-toggle__items > * {
1295
- box-sizing: inherit;
1296
- }
1297
-
1298
- .modula-toggle__input[type=checkbox],
1299
- body .media-modal-content .attachment-details .modula-toggle__input[type=checkbox] {
1300
- border-radius: 2px;
1301
- border: 2px solid #6c7781;
1302
- margin-right: 12px;
1303
- transition: none;
1304
- height: 100%;
1305
- left: 0;
1306
- top: 0;
1307
- margin: 0;
1308
- padding: 0;
1309
- opacity: 0;
1310
- position: absolute;
1311
- width: 100%;
1312
- z-index: 1; }
1313
-
1314
- .modula-toggle__track,
1315
- body .media-modal-content .attachment-details .modula-toggle__track {
1316
- background-color: #fff;
1317
- border: 2px solid #6c7781;
1318
- border-radius: 9px;
1319
- display: inline-block;
1320
- height: 18px;
1321
- width: 36px;
1322
- vertical-align: top;
1323
- transition: background .2s ease; }
1324
-
1325
- .modula-toggle__thumb,
1326
- body .media-modal-content .attachment-details .modula-toggle__thumb {
1327
- background-color: #6c7781;
1328
- border: 5px solid #6c7781;
1329
- border-radius: 50%;
1330
- display: block;
1331
- height: 10px;
1332
- width: 10px;
1333
- position: absolute;
1334
- left: 4px;
1335
- top: 4px;
1336
- transition: transform .2s ease; }
1337
-
1338
- body .media-modal-content .attachment-details .modula-toggle__thumb,
1339
- body .media-modal-content .attachment-details .modula-toggle__track {
1340
- min-width:auto;
1341
- min-height:auto;
1342
- float:none;
1343
- padding:0;
1344
- }
1345
-
1346
- .modula-toggle__off {
1347
- position: absolute;
1348
- right: 6px;
1349
- top: 6px;
1350
- color: #6c7781;
1351
- fill: currentColor; }
1352
-
1353
- .modula-toggle__on {
1354
- position: absolute;
1355
- top: 6px;
1356
- left: 8px;
1357
- border: 1px solid #fff;
1358
- outline: 1px solid transparent;
1359
- outline-offset: -1px;
1360
- display: none; }
1361
-
1362
- .modula-toggle__input[type=checkbox]:checked + .modula-toggle__items .modula-toggle__track {
1363
- background-color: #11a0d2;
1364
- border: 9px solid transparent; }
1365
-
1366
- .modula-toggle__input[type=checkbox]:checked + .modula-toggle__items .modula-toggle__thumb {
1367
- background-color: #fff;
1368
- border-width: 0;
1369
- transform: translateX(18px); }
1370
-
1371
- .modula-toggle__input[type=checkbox]:checked + .modula-toggle__items .modula-toggle__off {
1372
- display: none; }
1373
-
1374
- .modula-toggle__input[type=checkbox]:checked + .modula-toggle__items .modula-toggle__on {
1375
- display: inline-block; }
1376
-
1377
- p.description.alert {
1378
- color:#ff0000;
1379
- }
1380
-
1381
- tr.troubleshoot-subfield.hide {
1382
- display:none;
1383
- }
1384
-
1385
- /* Copy Shortcode */
1386
- .modula-copy-shortcode {
1387
- display: flex;
1388
- align-items: center;
1389
- flex-wrap: wrap;
1390
- }
1391
-
1392
- .modula-copy-shortcode input {
1393
- margin:0;
1394
- border-top-right-radius: 0;
1395
- border-bottom-right-radius: 0;
1396
- flex-grow:1;
1397
- }
1398
-
1399
- .modula-copy-shortcode span {
1400
- width: 100%;
1401
- }
1402
-
1403
- .wp-core-ui .modula-copy-shortcode a.button-primary {
1404
- height: 30px;
1405
- border-top-left-radius: 0;
1406
- border-bottom-left-radius: 0;
1407
-
1408
- }
1409
-
1410
- /*
1411
- Ups-sells carousel
1412
- @since 2.2.4
1413
- */
1414
-
1415
- @keyframes carousel {
1416
- 0% {
1417
- transform: translateX(0px);
1418
- opacity: 1 !important;
1419
- }
1420
- 50% {
1421
- transform: translateX(0px);
1422
- opacity: 1 !important;
1423
- }
1424
- 51% {
1425
- transform: translateX(-100%);
1426
- opacity: 1 !important;
1427
- }
1428
- 99% {
1429
- transform: translateX(-100%);
1430
- opacity: 1 !important;
1431
- }
1432
- 100% {
1433
- transform: translateX(-200%);
1434
- opacity: 1 !important;
1435
- }
1436
- }
1437
-
1438
- .modula-upsells-carousel-wrapper{
1439
- position: relative;
1440
- display:flex;
1441
- overflow:hidden;
1442
- }
1443
-
1444
- .modula-upsells-carousel {
1445
- /*animation: carousel 20s infinite;*/
1446
- flex-shrink: 0;
1447
- position: relative;
1448
- /* display:flex;*/
1449
- display:block;
1450
- width:100%;
1451
- }
1452
-
1453
- .modula-upsells-carousel .modula-upsell-item {
1454
- position: relative;
1455
- width:100%;
1456
- flex-shrink: 0;
1457
- margin-top:0;
1458
- left:-15px;
1459
- }
1460
-
1461
- .modula-upsells-carousel .modula-upsell-item {
1462
- text-align: center;
1463
- }
1464
-
1465
- .modula-upsells-carousel .modula-upsell-item ul.modula-upsells-list {
1466
- padding-left:40px;
1467
- }
1468
-
1469
- .modula-upsells-carousel .modula-upsell-item ul li {
1470
- position: relative;
1471
- list-style-type: none !important;
1472
- text-align:left;
1473
- }
1474
-
1475
- #modula-albums-upsell .modula-upsells-carousel .modula-upsell-item ul li {
1476
- display: inline-block;
1477
- margin: 0px 15px 15px 35px;
1478
- }
1479
-
1480
- .modula-upsells-carousel .modula-upsell-item ul li:before {
1481
- font-family: Dashicons;
1482
- content: "\f147";
1483
- position: absolute;
1484
- left: -30px;
1485
- font-size: 14px;
1486
- color: green;
1487
- background-color: #FFF;
1488
- padding: 0 3px;
1489
- border-radius: 50%;
1490
- border: 1px solid #DDD;
1491
- top: -1px;
1492
- }
1493
- .modula-upsell ul.modula-upsell-features li span.modula-check {
1494
- display: inline-block;
1495
- color: green;
1496
- background-color: #FFF;
1497
- border-radius: 50%;
1498
- border: 1px solid #DDD;
1499
- display: inline-block;
1500
- margin-right: 5px;
1501
- }
1502
- #modula-sorting-upsell > h2.hndle.ui-sortable-handle,
1503
- #modula-sorting-upsell > button.handlediv,
1504
- #modula-albums-upsell > h2.hndle.ui-sortable-handle,
1505
- #modula-albums-upsell > button.handlediv {
1506
- display:none;
1507
- }
1508
-
1509
- #modula-defaults-upsell p:not(:last-child) {
1510
- text-align:left;
1511
- }
1512
-
1513
- #modula-sorting-upsell > .inside,
1514
- #modula-albums-upsell > .inside,
1515
- #modula-defaults-upsell > .inside,
1516
- #modula-debug > .inside{
1517
- padding: 0;
1518
- margin: 0 auto;
1519
- }
1520
-
1521
- /* Editor theme*/
1522
- /*
1523
- Name: dracula
1524
- Author: Michael Kaminsky (http://github.com/mkaminsky11)
1525
- Original dracula color scheme by Zeno Rocha (https://github.com/zenorocha/dracula-theme)
1526
- */
1527
- .cm-s-dracula.CodeMirror, .cm-s-dracula .CodeMirror-gutters {
1528
- background-color: #282a36 !important;
1529
- color: #f8f8f2 !important;
1530
- border: none;
1531
- }
1532
- .cm-s-dracula .CodeMirror-gutters { color: #282a36; }
1533
- .cm-s-dracula .CodeMirror-cursor { border-left: solid thin #f8f8f0; }
1534
- .cm-s-dracula .CodeMirror-linenumber { color: #6D8A88; }
1535
- .cm-s-dracula .CodeMirror-selected { background: rgba(255, 255, 255, 0.10); }
1536
- .cm-s-dracula .CodeMirror-line::selection, .cm-s-dracula .CodeMirror-line > span::selection, .cm-s-dracula .CodeMirror-line > span > span::selection { background: rgba(255, 255, 255, 0.10); }
1537
- .cm-s-dracula .CodeMirror-line::-moz-selection, .cm-s-dracula .CodeMirror-line > span::-moz-selection, .cm-s-dracula .CodeMirror-line > span > span::-moz-selection { background: rgba(255, 255, 255, 0.10); }
1538
- .cm-s-dracula span.cm-comment { color: #6272a4; }
1539
- .cm-s-dracula span.cm-string, .cm-s-dracula span.cm-string-2 { color: #f1fa8c; }
1540
- .cm-s-dracula span.cm-number { color: #bd93f9; }
1541
- .cm-s-dracula span.cm-variable { color: #50fa7b; }
1542
- .cm-s-dracula span.cm-variable-2 { color: white; }
1543
- .cm-s-dracula span.cm-def { color: #50fa7b; }
1544
- .cm-s-dracula span.cm-operator { color: #ff79c6; }
1545
- .cm-s-dracula span.cm-keyword { color: #ff79c6; }
1546
- .cm-s-dracula span.cm-atom { color: #bd93f9; }
1547
- .cm-s-dracula span.cm-meta { color: #f8f8f2; }
1548
- .cm-s-dracula span.cm-tag { color: #ff79c6; }
1549
- .cm-s-dracula span.cm-attribute { color: #50fa7b; }
1550
- .cm-s-dracula span.cm-qualifier { color: #50fa7b; }
1551
- .cm-s-dracula span.cm-property { color: #66d9ef; }
1552
- .cm-s-dracula span.cm-builtin { color: #50fa7b; }
1553
- .cm-s-dracula span.cm-variable-3, .cm-s-dracula span.cm-type { color: #ffb86c; }
1554
-
1555
- .cm-s-dracula .CodeMirror-activeline-background { background: rgba(255,255,255,0.1); }
1556
- .cm-s-dracula .CodeMirror-matchingbracket { text-decoration: underline; color: white !important; }
1557
-
1558
- #modula_troubleshooting_option .modula-select label {
1559
- margin-right: 10px;
1560
- }
1561
- #modula_troubleshooting_option .modula-select label:last-child {
1562
- margin-right: 0;
1563
- }
1564
-
1565
- #modula_troubleshooting_option td > .wrap.modula {
1566
- margin:0 auto;
1567
- }
1568
-
1569
- #modula_troubleshooting_option td > .wrap.modula .modula-toggle {
1570
- margin-top:0;
1571
- }
1572
-
1573
- #modula_troubleshooting_option h2 {
1574
- margin : 0;
1575
- }
1576
-
1577
- #modula-albums-upsell h2 {
1578
- margin: 0 !important;
1579
- }
1580
-
1581
- .modula-settings-container input[type="number"] {
1582
- max-width: 80px;
1583
- }
1584
-
1585
- .modula-after-input {
1586
- margin-left: 5px;
1587
- }
1588
-
1589
-
1590
- /**
1591
- Scaling Effect Preview
1592
- */
1593
- .modula-scaling-effect-preview {
1594
- position: relative;
1595
- max-width:900px;
1596
- width:100%;
1597
- margin:0 auto;
1598
- margin-top:20px;
1599
- }
1600
-
1601
- .modula-scaling-effect-preview .modula-item {
1602
- transition:600ms all;
1603
- z-index:9999;
1604
- float:left;
1605
- margin:10px;
1606
- }
1607
-
1608
- .modula-scaling-effect-preview a#test-scaling-preview {
1609
- margin-top:25px;
1610
- margin-left:10px;
1611
- }
1612
-
1613
- /* Modula Shortcode Box */
1614
-
1615
- #modula-shortcode .modula-copy-shortcode {
1616
- margin: 10px auto;
1617
- }
1618
-
1619
- #modula-shortcode .inside {
1620
- padding: 0 12px 2.5px!important;
1621
- }
1622
-
1623
- .shortcode-description {
1624
- margin: 10px 0 0 0;
1625
- border-bottom: 1px solid #DDD;
1626
- color: #696969;
1627
- padding-bottom: 10px;
1628
- }
1629
-
1630
- .modula-imagesize-info span {
1631
- font-weight:bold;
1632
- }
1633
-
1634
- .modula-settings-container .selectize-dropdown {
1635
- cursor:pointer;
1636
- }
1637
-
1638
- .modula-settings-container .lightbox-announcement {
1639
- position: relative;
1640
- padding:30px;
1641
- }
1642
-
1643
- .modula-settings-container .lightbox-announcement a.notice-dismiss {
1644
- text-decoration: none;
1645
- }
1646
-
1647
- /* Autocomplete z-index fix */
1648
-
1649
- .ui-autocomplete {
1650
- z-index: 160000;
1651
- background: white;
1652
- font-family: inherit;
1653
- }
1654
-
1655
- .modula-autocomplete-results {
1656
- padding: 5px;
1657
- }
1658
- .modula-autocomplete-results p {
1659
- margin-left: 8px;
1660
- margin-bottom: 0px;
1661
- font-size: 14px;
1662
- }
1663
-
1664
- .modula-autocomplete-results span {
1665
- position: absolute;
1666
- top: 50%;
1667
- right: 5%;
1668
- transform: translate(-5%, -50%);
1669
- }
1670
-
1671
- .modula-autocomplete-results code {
1672
- padding:10px 20px;
1673
- }
1674
-
1675
- .ui-autocomplete .ui-menu-item {
1676
- border-bottom: 1px solid #555;
1677
- }
1678
-
1679
- .modula-colorpickers .iris-border .iris-picker-inner {
1680
- right:0;
1681
- }
1682
-
1683
- html body .modula-tabs-content .modula-colorpickers .iris-palette-container a {
1684
- display:none;
1685
- }
1686
-
1687
- html body .modula-tabs-content .modula-colorpickers .iris-palette-container a:first-child,
1688
- html body .modula-tabs-content .modula-colorpickers .iris-palette-container a:nth-child(2),
1689
- html body .modula-tabs-content .modula-colorpickers .iris-palette-container a:nth-child(3),
1690
- html body .modula-tabs-content .modula-colorpickers .iris-palette-container a:nth-child(4),
1691
- html body .modula-tabs-content .modula-colorpickers .iris-palette-container a:nth-child(5),
1692
- html body .modula-tabs-content .modula-colorpickers .iris-palette-container a:nth-child(6),
1693
- html body .modula-tabs-content .modula-colorpickers .iris-palette-container a:nth-child(7),
1694
- html body .modula-tabs-content .modula-colorpickers .iris-palette-container a:nth-child(8){
1695
- display:block;
1696
- }
1697
-
1698
- .post-type-modula-gallery #preview-action {
1699
- display: none;
1700
- }
1701
-
1702
- .modula .nav-tab .modula-badge {
1703
- font-size: 10px;
1704
- background: #f4daa4;
1705
- padding: 2px 5px;
1706
- display: inline-block;
1707
- margin-left: 10px;
1708
- border-radius: 10px;
1709
- }
1710
-
1711
- .modula-settings-upsell {
1712
- max-width: 600px;
1713
- padding: 15px;
1714
- background: #fff;
1715
- margin-bottom: 20px;
1716
- }
1717
-
1718
- .modula-settings-tab-upsell {
1719
- padding: 20px;
1720
- background: #fff;
1721
- color: #3c434a;
1722
- }
1723
-
1724
- .modula-settings-upsell a:first-child, .modula-settings-tab-upsell a:first-child {
1725
- margin-right: 10px;
1726
- }
1727
-
1728
- .modula-columns {
1729
- display: flex;
1730
- }
1731
-
1732
- .modula-columns .m-col-8 {
1733
- flex: 0 0 70%;
1734
- max-width: 70%;
1735
- }
1736
-
1737
- .modula-columns .m-col-4 {
1738
- flex: 0 0 30%;
1739
- max-width: 30%;
1740
- }
1741
-
1742
- .modula-columns .modula-column {
1743
- box-sizing: border-box;
1744
- }
1745
-
1746
- .modula-columns .modula-column + .modula-column {
1747
- padding-left: 20px;
1748
- }
1749
-
1750
- .modula-side-tab .modula-upsell {
1751
- padding: 15px;
1752
- background: #fff;
1753
- margin-top: 20px;
1754
- }
1755
-
1756
- .modula-side-tab .modula-upsell .modula-upsell-content {
1757
- margin-bottom: 15px;
1758
- }
1759
- .modula-side-tab .modula-upsell h3 {
1760
- margin-top: 0;
1761
- }
1762
-
1763
- /*
1764
- ** Compatibility Block CSS
1765
- */
1766
-
1767
- .modula-tab-content {
1768
- position : relative;
1769
- }
1770
-
1771
- .form-table-wrapper .modula-compatibility {
1772
- text-align : left;
1773
- margin : 30px;
1774
- }
1775
-
1776
- .form-table-wrapper .modula-compatibility-block {
1777
- width : 100%;
1778
- height : 60px;
1779
- position : absolute;
1780
- background : gray;
1781
- z-index : 9;
1782
- opacity : 0.5;
1783
- }
1784
-
1785
-
1786
- .modula-tab-content td > span.dashicons,
1787
- .modula-tabs-content td > span.modula_input_suffix {
1788
- padding : 5px;
1789
- background : #eaecef;
1790
- color : #000;
1791
- position : relative;
1792
- border-top : 1px solid #7e8993;
1793
- border-bottom : 1px solid #7e8993;
1794
- display : inline-block;
1795
- vertical-align : middle;
1796
- }
1797
-
1798
- .modula-tab-content td > span.dashicons {
1799
- border-top-left-radius : 4px;
1800
- border-bottom-left-radius : 4px;
1801
- border-left : 1px solid #7e8993;
1802
- }
1803
-
1804
- .modula-tabs-content td > span.modula_input_suffix {
1805
- border-top-right-radius : 4px;
1806
- border-bottom-right-radius : 4px;
1807
- border-right : 1px solid #7e8993;
1808
- left : -2px;
1809
- display : inline-block;
1810
- vertical-align : middle;
1811
- line-height: 20px;
1812
- }
1813
-
1814
- html body .modula-settings-container .modula-tab-content tr[data-container="gutter"] > td,
1815
- html body .modula-settings-container .modula-tab-content tr[data-container="height"] > td {
1816
- display:inline-block;
1817
- }
1818
-
1819
- html body .modula-settings-container .modula-tab-content tr[data-container] input.modula-gutter-input {
1820
- border-radius : 0;
1821
- border-right : 0;
1822
- border-left : 0;
1823
- min-width : 62px;
1824
- max-width : 62px;
1825
- height : 32px;
1826
- position : relative;
1827
- left : -1px;
1828
- }
1829
-
1830
- /* Modula hover effects style */
1831
- .modula-preview-item-container {
1832
- position: relative;
1833
- }
1834
- .modula-preview-item-container .modula-preview-badge {
1835
- background: #dc3232;
1836
- color: #fff;
1837
- padding: 5px 10px;
1838
- position: absolute;
1839
- top: 5px;
1840
- right: 5px;
1841
- z-index: 1;
1842
- }
1843
- .modula-preview-item-container .modula-preview-item-content {
1844
- background: #f1f1f1;
1845
- padding: 0 10px;
1846
- flex:1;
1847
- }
1848
- .modula-preview-item-container .modula-preview-item-content h4 {
1849
- margin: 0;
1850
- padding: 10px 0 10px;
1851
- }
1852
- .modula-preview-item-container {
1853
- border: 2px solid transparent;
1854
- height: 100%;
1855
- display: flex;
1856
- flex-direction: column;
1857
- }
1858
- #modula-hover-effect .modula-effects-preview .panel-pro-preview input[type="radio"]:checked + .modula-preview-item-container {
1859
- border-color: #0071a1;
1860
- }
1861
-
1862
- html body #wpbody #poststuff #post-body .postbox-container #modula-hover-effect .modula-effects-preview {
1863
- position : relative;
1864
- min-height : 650px;
1865
- }
1866
-
1867
- #modula-hover-effect .modula-effects-preview .panel-pro-preview {
1868
- width: 31%;
1869
- margin-bottom: 20px;
1870
- }
1871
-
1872
- #modula-hover-effect .modula-effects-preview .panel-pro-preview h4 {
1873
- text-align:center;
1874
- }
1875
-
1876
- #modula-hover-effect .modula-effects-preview .modula-effects-wrapper {
1877
- max-height : 600px;
1878
- overflow-Y : scroll;
1879
- display: flex;
1880
- flex-wrap: wrap;
1881
- justify-content: space-between;
1882
- }
1883
-
1884
- #modula-hover-effect .modula-effects-preview .panel-pro-preview input[type="radio"] {
1885
- display:none;
1886
- }
1887
-
1888
-
1889
-
1890
- /**
1891
- Some responsive fixes
1892
- */
1893
- /*
1894
-
1895
- @media all and (max-width:1300px){
1896
- .modula-settings-container {
1897
- display:block;
1898
- }
1899
-
1900
- .modula-settings-container .modula-tabs .modula-tab {
1901
- display:inline-block;
1902
- width:auto;
1903
- font-size:0;
1904
- padding:10px !important;
1905
- }
1906
-
1907
- .modula-settings-container .modula-tabs .modula-tab:before {
1908
- content:"";
1909
- width:3px;
1910
- display:block;
1911
- }
1912
-
1913
- .modula-settings-container .modula-tabs .modula-tab > i {
1914
- margin:0;
1915
- }
1916
- }
1917
-
1918
- @media all and (min-width:850px) and (max-width:1300px){
1919
- .modula-settings-container .modula-tabs-content th,
1920
- .modula-settings-container .modula-tabs-content td {
1921
- display:block;
1922
- width:100%;
1923
- }
1924
-
1925
- .modula-settings-container .modula-tabs-content td {
1926
- padding-left:25px;
1927
- }
1928
-
1929
- .modula-settings-container .modula-tabs-content th.child_setting + td {
1930
- padding-left:45px;
1931
- }
1932
-
1933
- .modula-settings-container select, .modula-settings-container input:not([type="select-one"]):not([type="button"]):not([readonly="readonly"]), .modula-settings-container select {
1934
- min-width:175px;
1935
- }
1936
-
1937
- .modula-filters-container .modula-filters,
1938
- .modula-pro-live-preview {
1939
- max-width:calc(100% - 65px);
1940
- }
1941
- }
1942
-
1943
- @media all and (min-width:600px) and (max-width:849px){
1944
- .modula-settings-container .modula-tabs-content th,
1945
- .modula-settings-container .modula-tabs-content .form-table th.child_setting {
1946
- display:table-cell;
1947
- }
1948
-
1949
- .modula-filters-container .modula-filters,
1950
- .modula-pro-live-preview {
1951
- max-width:calc(100% - 65px);
1952
- }
1953
-
1954
- .modula-settings-container .modula-tabs-content .form-table td {
1955
- padding-top:20px;
1956
- padding-bottom:20px;
1957
- }
1958
- }
1959
-
1960
- @media all and (max-width: 599px){
1961
- .modula-settings-container .modula-tabs-content th,
1962
- .modula-settings-container .modula-tabs-content td {
1963
- display:block;
1964
- width:100%;
1965
- }
1966
-
1967
- .modula-filters-container .modula-filters,
1968
- .modula-pro-live-preview {
1969
- max-width:calc(100% - 65px);
1970
- }
1971
-
1972
- .modula-settings-container .modula-tabs-content td {
1973
- padding-left:25px;
1974
- }
1975
-
1976
- .modula-settings-container .modula-tabs-content th.child_setting + td {
1977
- padding-left:45px;
1978
- }
1979
-
1980
- .modula-settings-container th:not(.child_setting) + td select, .modula-settings-container th:not(.child_setting) + td input:not([type="select-one"]):not([type="button"]):not([readonly="readonly"]), .modula-settings-container th:not(.child_setting) + td select {
1981
- max-width:calc(100% - 65px) !important;
1982
- }
1983
-
1984
- .modula-settings-container th.child_setting + td select, .modula-settings-container th.child_setting + td input:not([type="select-one"]):not([type="button"]):not([readonly="readonly"]), .modula-settings-container th.child_setting + td select {
1985
- max-width:calc(100% - 85px) !important;
1986
- }
1987
-
1988
- .modula-settings-container .modula-tabs-content .form-table td {
1989
- padding-top:20px;
1990
- padding-bottom:20px;
1991
- }
1992
-
1993
- }
1994
- */
1
+ /* Settings Metabox */
2
+ #modula-settings .inside {
3
+ padding: 0;
4
+ margin: 0;
5
+ }
6
+ .modula-settings-container {
7
+ display: flex;
8
+ }
9
+
10
+ /* Settings Tabs */
11
+ .modula-settings-container .modula-tabs {
12
+ background-color: #f8f8f8;
13
+ }
14
+ .modula-settings-container .modula-tabs .modula-tab {
15
+ margin: 0 10px 0 0;
16
+ padding: 15px 0;
17
+ color: #9c9c9c;
18
+ cursor: pointer;
19
+ position: relative;
20
+ min-width: 190px;
21
+ position: relative;
22
+ }
23
+ .modula-settings-container .modula-tabs .modula-tab sup {
24
+ margin-left: 5px;
25
+ padding: 2px 5px;
26
+ border-radius: 5px;
27
+ color: #fff;
28
+ font-size: 10px;
29
+ background: #9c9c9c;
30
+ display: inline-block;
31
+ line-height: 1;
32
+ position: relative;
33
+ /* top: -2px; */
34
+ float: right;
35
+ top: 4px;
36
+ }
37
+ .modula-settings-container .modula-tabs .modula-tab:hover sup,
38
+ .modula-settings-container .modula-tabs .modula-tab.active-tab sup {
39
+ background-color: #57a7c9;
40
+ }
41
+ .modula-settings-container .modula-tabs .modula-tab.modula-responsive:hover sup,
42
+ .modula-settings-container .modula-tabs .modula-tab.modula-responsive.active-tab sup {
43
+ background:#dc3232;
44
+ }
45
+ .modula-settings-container .modula-tabs .modula-tab > i {
46
+ margin-right: 10px;
47
+ margin-left: 15px;
48
+ }
49
+ .modula-settings-container .modula-tabs .modula-tab:after {
50
+ position: absolute;
51
+ content: "";
52
+ width: 1px;
53
+ height: 100%;
54
+ background-color: transparent;
55
+ top: 0;
56
+ right: -1px;
57
+ }
58
+ .modula-settings-container .modula-tabs .modula-tab.active-tab:first-child {
59
+ border-top: none;
60
+ }
61
+ .modula-settings-container .modula-tabs .modula-tab:hover {
62
+ color: #333333;
63
+ }
64
+ .modula-settings-container .modula-tabs .modula-tab.active-tab {
65
+ margin: 0;
66
+ padding: 15px 10px 15px 0;
67
+ background-color: #fff;
68
+ border-top: 1px solid #ddd;
69
+ color: #333333;
70
+ /*box-shadow: 1px 0px 1px 0px rgba(0, 0, 0, 0.43) inset;*/
71
+ }
72
+ .modula-settings-container .modula-tabs .modula-tab.active-tab:not(:last-child){
73
+ border-bottom: 1px solid #ddd;
74
+ }
75
+ .modula-settings-container .modula-tabs .modula-tab.active-tab:before {
76
+ content: "";
77
+ position: absolute;
78
+ left: -2px;
79
+ top: -1px;
80
+ width: 3px;
81
+ height: calc( 100% + 2px);
82
+ background-color: #57a7c9;
83
+ }
84
+ .modula-settings-container .modula-tabs .modula-tab.active-tab:after {
85
+ background-color: #fff;
86
+ }
87
+
88
+ tr label.th-label {
89
+ color: #23282d;
90
+ font-weight: 600;
91
+ margin-bottom: 10px;
92
+ /*display: block;*/
93
+ }
94
+
95
+
96
+ /* Tab Content */
97
+ .postbox .modula-settings-container table.form-table {
98
+ margin: 0;
99
+ }
100
+ /*.postbox .modula-settings-container .form-table-wrapper {
101
+ padding: 0 0 0 20px;
102
+ box-sizing: border-box;
103
+ }*/
104
+ .modula-settings-container .modula-tabs-content {
105
+ padding: 0;
106
+ border-left: 1px solid #ccd0d4;
107
+ flex-grow: 1;
108
+ }
109
+ .modula-tabs-content > div:not( .active-tab ) {
110
+ display: none;
111
+ }
112
+ .modula-settings-container .modula-tabs-content .tab-content-header {
113
+ width: 100%;
114
+ padding: 15px 20px 15px 20px;
115
+ border-bottom: 1px solid #ccd0d4;
116
+ box-sizing: border-box;
117
+ display: flex;
118
+ align-items: center;
119
+ justify-content: space-between;
120
+ }
121
+ .modula-settings-container .modula-tabs-content .tab-content-header .tab-content-header-actions {
122
+ display: flex;
123
+ align-items: center;
124
+ }
125
+ .modula-settings-container .modula-tabs-content .tab-content-header .tab-content-header-actions > span {
126
+ margin: 0 10px;
127
+ font-style: italic;
128
+ }
129
+ .modula-settings-container .modula-tabs-content .tab-content-header .tab-content-header-actions a.button > span {
130
+ height: auto;
131
+ line-height: 26px;
132
+ margin-right: 10px;
133
+ }
134
+ #poststuff .modula-settings-container .modula-tabs-content .tab-content-header .tab-content-header-title > h2 {
135
+ font-weight: 700;
136
+ padding: 0;
137
+ display: inline-block;
138
+ line-height:20px;
139
+ }
140
+
141
+ #poststuff .modula-settings-container .modula-tabs-content .tab-content-header .tab-header-description p {
142
+ margin: 0;
143
+ }
144
+
145
+ .modula-settings-container .form-table td p.description {
146
+ font-size: 13px;
147
+ }
148
+
149
+ .modula-settings-container .modula-tabs-content .form-table tr {
150
+ border-top: 1px solid #EEE;
151
+ border-bottom: 1px solid #EEE;
152
+ }
153
+ /*.modula-settings-container .modula-tabs-content .form-table tr:nth-of-type(even) {
154
+ background-color: #FAFAFA;
155
+ }*/
156
+ .modula-settings-container .modula-tabs-content .form-table tr:first-of-type {border-top: none;}
157
+ .modula-settings-container .modula-tabs-content .form-table tr:last-of-type {border-bottom: none;}
158
+ .modula-settings-container .modula-tabs-content .form-table th {padding: 20px;width:200px;min-width:200px;}
159
+ .modula-settings-container .modula-tabs-content .form-table th.child_setting {
160
+ padding-left:40px;
161
+ width:220px;
162
+ min-width:220px;
163
+ }
164
+
165
+ .modula-settings-container .modula-tabs-content .form-table textarea:not(#modula-style-customcode) {
166
+ max-width:230px;
167
+ }
168
+
169
+ textarea#modula-style-customcode {
170
+ resize : none;
171
+ height : calc(100vh - 100px);
172
+ }
173
+
174
+ .modula-settings-container .modula-tabs-content .form-table th.two_child_setting {
175
+ padding-left:60px;
176
+ display:inline-block;
177
+ width:200px;
178
+ }
179
+
180
+ .modula-settings-container .modula-tabs-content .form-table th.three_child_setting {
181
+ padding-left:80px;
182
+ display:inline-block;
183
+ width:180px;
184
+ min-width:180px;
185
+ }
186
+ /* Fields */
187
+
188
+ .modula-placeholders {
189
+ display: flex;
190
+ flex-wrap: wrap;
191
+ }
192
+ .modula-placeholder-value {
193
+ font-family: 'Courier New', Courier, monospace;
194
+ font-weight: 500;
195
+ letter-spacing: -0.5px;
196
+ font-size: 12px;
197
+ border: 1px solid grey;
198
+ padding: 3px 4px;
199
+ background: #ddd;
200
+ cursor: pointer;
201
+ user-select: none;
202
+ -webkit-user-select: none;
203
+ margin-right: 3px;
204
+ width: 115px;
205
+
206
+ }
207
+
208
+ /* UI Slider */
209
+ .modula-settings-container .slider-container {
210
+ position: relative;
211
+ height: 2px;
212
+ padding: 10px 0;
213
+ width: 230px;
214
+ box-sizing: border-box;
215
+ /*margin-bottom: 10px;*/
216
+ display: flex;
217
+ display: flex;
218
+ justify-content: space-between;
219
+ align-items: center;
220
+ }
221
+ .modula-settings-container .slider-container input[type="text"] {
222
+ border: none;
223
+ text-align: center;
224
+ padding: 2px;
225
+ margin: 0 30px 0 0;
226
+ font-size: 12px;
227
+ color: #333;
228
+ border-radius: 10px;
229
+ background-color: #fff;
230
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.16);
231
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.16);
232
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.16);
233
+ width: 40px;
234
+ height: 22px;
235
+ min-width:auto;
236
+ }
237
+ .modula-settings-container .slider-container .ui-slider {
238
+ position: relative;
239
+ text-align: left;
240
+ height: 2px;
241
+ border-radius: 3px;
242
+ border: none;
243
+ display: block;
244
+ width: 100%;
245
+ background: #d6d6d6;
246
+ -webkit-box-sizing: border-box;
247
+ -moz-box-sizing: border-box;
248
+ box-sizing: border-box;
249
+ }
250
+ .modula-settings-container .slider-container .ui-slider .ui-slider-handle {
251
+ position: absolute;
252
+ z-index: 2;
253
+ top: -10px;
254
+ cursor: default;
255
+ -ms-touch-action: none;
256
+ touch-action: none;
257
+ width: 18px;
258
+ height: 18px;
259
+ -webkit-border-radius: 9px;
260
+ -moz-border-radius: 9px;
261
+ border-radius: 9px;
262
+ background-color: #fff;
263
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
264
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
265
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
266
+ border: solid 1px #d7d7d7;
267
+ transform: translateX(-50%);
268
+ }
269
+ .modula-settings-container .slider-container .ui-slider .ui-slider-range {
270
+ position: absolute;
271
+ z-index: 1;
272
+ font-size: 0.7em;
273
+ display: block;
274
+ border: 0;
275
+ background-position: 0 0;
276
+ background: #57a7c9;
277
+ top: 0;
278
+ bottom: 0;
279
+ }
280
+
281
+ .modula-settings-container select,
282
+ .modula-settings-container input:not([type="select-one"]):not([type="button"]):not([contenteditable="true"]),
283
+ .modula-settings-container select{
284
+ max-width:230px;
285
+ }
286
+
287
+ .selectize-control.single .selectize-input, .selectize-dropdown.single {
288
+ max-width:230px;
289
+ }
290
+
291
+ /* Hover Effects */
292
+ .modula-effects-preview {
293
+ margin-top: 20px;
294
+ }
295
+ .modula-effects-preview .modula-item {
296
+ height: 300px;
297
+ overflow: hidden;
298
+ position: relative;
299
+ }
300
+ .modula-effects-preview .modula-item img {
301
+ position: absolute;
302
+ min-height: 100%;
303
+ min-width: 100%;
304
+ }
305
+ .modula-effects-preview .modula-item .figc {
306
+ display: flex;
307
+ align-items: center;
308
+ justify-content: center;
309
+ color: #fff;
310
+ font-size: 11px;
311
+ text-align: center;
312
+ position: absolute;
313
+ left: 0;
314
+ width: 100%;
315
+ height: 100%;
316
+ padding: 0;
317
+ }
318
+ .modula-effects-preview .modula-item .figc .jtg-title {
319
+ font-size: 21px !important;
320
+ color: #fff;
321
+ }
322
+ .modula-effects-preview .modula-item .figc p {
323
+ color: #fff;
324
+ font-size: 15px;
325
+ font-style: normal;
326
+ }
327
+
328
+ .modula .modula-items .modula-item .jtg-title {
329
+ margin:0;
330
+ }
331
+ .modula .modula-items .modula-item p {
332
+ margin:0;
333
+ padding: 0;
334
+ }
335
+ .modula .figc {
336
+ color: black;
337
+ text-align: center;
338
+ position: absolute;
339
+ left: 0;
340
+ width: 100%;
341
+ padding:2em;
342
+ }
343
+
344
+ .modula .modula-item .jtg-social a {
345
+ text-decoration: none;
346
+ color: #fff;
347
+ display: inline-block;
348
+ margin:0 10px 0 0;
349
+ width: 20px;
350
+ padding: 6px 4px;
351
+ border: 0;
352
+ opacity: 0;
353
+ transition: opacity .3s;
354
+ }
355
+ .modula .modula-item .jtg-social svg {
356
+ width: 20px;
357
+ height: 16px;
358
+ }
359
+ .modula .modula-item:hover .jtg-social a {
360
+ opacity: 1;
361
+ }
362
+
363
+ /*---------------*/
364
+ /***** pufrobo *****/
365
+ /*---------------*/
366
+
367
+ .modula .modula-items .jtg-social {
368
+ opacity: 0;
369
+ transition: opacity 0.1s;
370
+ right:30px;
371
+ position: absolute;
372
+ bottom:20px;
373
+ text-align: right;
374
+ transition:all .3s;
375
+ }
376
+
377
+ html body .modula.modula-gallery .modula-items .jtg-social {
378
+ opacity: 1;
379
+ }
380
+
381
+ .modula .modula-items .jtg-social a:last-of-type {
382
+ margin-right: 0;
383
+ }
384
+
385
+ .modula .modula-item.effect-pufrobo p.description {
386
+ margin-bottom: 2em;
387
+ }
388
+
389
+ .modula .modula-item.effect-pufrobo .figc {
390
+ text-align: right;
391
+ }
392
+
393
+ .modula .modula-item.effect-pufrobo .jtg-title,
394
+ .modula .modula-item.effect-pufrobo p {
395
+ position: absolute;
396
+ right: 30px;
397
+ left: 30px;
398
+ padding: 10px 0;
399
+ }
400
+
401
+ .modula .modula-item:hover img { opacity: .8 }
402
+
403
+ .modula .modula-item { background-color:#000; }
404
+
405
+ .modula .modula-item.effect-pufrobo p {
406
+ bottom: 20%;
407
+ line-height: 1.5;
408
+ -webkit-transform: translate3d(0,100%,0);
409
+ transform: translate3d(0,100%,0);
410
+ letter-spacing: 1px;
411
+ }
412
+
413
+ .modula .modula-item.effect-pufrobo .jtg-title {
414
+ /*top: 30px;*/
415
+ top: 10%;
416
+ -webkit-transition: -webkit-transform 0.35s;
417
+ transition: transform 0.35s;
418
+ -webkit-transform: translate3d(0,20px,0);
419
+ transform: translate3d(0,20px,0);
420
+ }
421
+
422
+ .modula .modula-item.effect-pufrobo:hover .jtg-title {
423
+ -webkit-transform: translate3d(0,0,0);
424
+ transform: translate3d(0,0,0);
425
+ }
426
+
427
+ .modula .modula-item.effect-pufrobo .jtg-title::after {
428
+ position: absolute;
429
+ top: 80%;
430
+ left: 0;
431
+ width: 100%;
432
+ height: 4px;
433
+ background: #fff;
434
+ content: '';
435
+ -webkit-transform: translate3d(0,40px,0);
436
+ transform: translate3d(0,40px,0);
437
+ }
438
+
439
+ .modula .modula-item.effect-pufrobo .jtg-title::after,
440
+ .modula .modula-item.effect-pufrobo p {
441
+ opacity: 0;
442
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
443
+ transition: opacity 0.35s, transform 0.35s;
444
+ }
445
+
446
+ .modula .modula-item.effect-pufrobo:hover .jtg-title::after,
447
+ .modula .modula-item.effect-pufrobo:hover p {
448
+ margin-top: 10px;
449
+ margin-bottom: 5px;
450
+ opacity: 1;
451
+ -webkit-transform: translate3d(0,0,0);
452
+ transform: translate3d(0,0,0);
453
+ }
454
+
455
+ html body #wpbody #poststuff #post-body .postbox-container #modula-hover-effect .modula.modula-gallery .modula-items .modula-item.effect-sadie .jtg-title {
456
+ color:#fff;
457
+ }
458
+
459
+ html body #wpbody #poststuff #post-body .postbox-container #modula-hover-effect .modula.modula-gallery .modula-items .modula-item.effect-zoe .jtg-title,
460
+ html body #wpbody #poststuff #post-body .postbox-container #modula-hover-effect .modula.modula-gallery .modula-items .modula-item.effect-zoe .jtg-social a {
461
+ color:#000;
462
+ }
463
+
464
+ html body #wpbody #poststuff #post-body .postbox-container #modula-hover-effect .modula.modula-gallery .modula-items .modula-preview-badge + .modula-item.effect-dexter .figc::after {
465
+ -webkit-transform: translate3d(0,-50%,0);
466
+ transform: translate3d(0,-50%,0);
467
+ }
468
+
469
+ html body #wpbody #poststuff #post-body .postbox-container #modula-hover-effect .modula.modula-gallery .modula-items .modula-item.effect-milo:hover .description {
470
+ opacity:1;
471
+ }
472
+
473
+ html body #wpbody #poststuff #post-body .postbox-container #modula-hover-effect .modula.modula-gallery .modula-items .modula-preview-badge + .modula-item.effect-dexter .figc:hover::after {
474
+ -webkit-transform: translate3d(0,0,0);
475
+ transform: translate3d(0,0,0);
476
+ }
477
+
478
+ tr[data-container="effect"] > td {
479
+ padding:15px 20px;
480
+ }
481
+
482
+ .modula-effects-preview .modula-item.effect-dexter .figc,
483
+ .modula-effects-preview,
484
+ .modula-effects-preview p {
485
+ box-sizing : border-box;
486
+ }
487
+
488
+ .modula-effects-preview .modula-item.effect-chico .figc,
489
+ .modula-effects-preview .modula-item.effect-roxy .figc,
490
+ .modula-effects-preview .modula-item.effect-layla .figc,
491
+ .modula-effects-preview .modula-item.effect-oscar .figc,
492
+ #poststuff .modula-effects-preview .modula-item .figc .jtg-title {
493
+ padding : 0;
494
+ }
495
+
496
+ #poststuff .modula .modula-item.effect-reflex .figc-inner .jtg-title {
497
+ padding-left : 10px;
498
+ }
499
+
500
+ #poststuff .modula .modula-items .modula-item.effect-comodo .jtg-title {
501
+ margin-top : 20px;
502
+ }
503
+
504
+ #poststuff .modula .modula-item.effect-appear .jtg-title,
505
+ #poststuff .modula .modula-item.effect-honey .jtg-title {
506
+ padding : 1em 1.5em;
507
+ }
508
+
509
+ #poststuff .modula .modula-item.effect-milo .jtg-title {
510
+ padding : 1em 1.2em;
511
+ }
512
+
513
+ .modula .modula-items .modula-item.effect-julia p {
514
+ margin : 0 0 0.25em;
515
+ padding : 0.4em 1em;
516
+ }
517
+
518
+ #poststuff .modula .modula-item.effect-terry .jtg-title {
519
+ padding : 0.4em 15px;
520
+ }
521
+
522
+ .modula .modula-items .modula-item.effect-apollo p {
523
+ margin : 3em;
524
+ padding : 0 1em;
525
+ }
526
+
527
+ #poststuff .modula .modula-items .modula-item.effect-steve .jtg-title {
528
+ margin-top : 2em;
529
+ padding : 0.25em;
530
+ color : #000;
531
+ }
532
+
533
+ .modula .modula-items .modula-item.effect-steve p {
534
+ margin-top : 1em;
535
+ padding : 0.5em;
536
+ color : #000;
537
+ }
538
+
539
+ .modula-effects-preview .modula-item.effect-under img {
540
+ top : 50%;
541
+ left : 50%;
542
+ transform : translate(-50%, -50%);
543
+ }
544
+
545
+ /* Upsells */
546
+ .modula-upsell {
547
+ background: #f1f1f1;
548
+ /* border: 1px solid #a8d69c;*/
549
+ border: 0;
550
+ padding: 15px;
551
+ margin-top: 30px;
552
+ }
553
+
554
+ .modula-settings-container .modula-upsell {
555
+ margin:30px;
556
+ }
557
+
558
+ .modula-upsell .modula-upsell-features {
559
+ text-align: left;
560
+ display: flex;
561
+ flex-wrap: wrap;
562
+ padding: 20px 0;
563
+ }
564
+ .modula-upsell .modula-upsell-features li {
565
+ width: 33%;
566
+ }
567
+ #modula-exif .modula-upsell .modula-upsell-features li,
568
+ #modula-zoom .modula-upsell .modula-upsell-features li {
569
+ width: 50%;
570
+ }
571
+
572
+ /* We're handling the upsells inside metaboxes slightly different */
573
+ .form-table-wrapper .modula-upsell {
574
+ border: 1px solid #DDD;
575
+ text-align: center;
576
+ }
577
+
578
+ #poststuff .modula-upsell h2 {
579
+ font-weight: 700;
580
+ background: #fff;
581
+ left: -15px;
582
+ top: -15px;
583
+ padding: 8px 12px;
584
+ position: relative;
585
+ width: calc(100% + 6px);
586
+ border-bottom: 1px solid #DDD
587
+ }
588
+ .modula-upsell p {
589
+ margin: 0;
590
+ }
591
+ .modula-upsell p.modula-upsell-description {
592
+ font-size: 13px;
593
+ line-height: 1.5;
594
+ color: #333333;
595
+ opacity: .8;
596
+ margin-top: 0;
597
+ margin-bottom: 10px;
598
+ padding:0px 10px;
599
+ }
600
+ .modula-upsell .button {
601
+ height: 31px;
602
+ line-height: 31px;
603
+ font-weight: bold;
604
+ }
605
+ .modula-upsell .button:first-child {
606
+ margin-right: 10px;
607
+ }
608
+
609
+ .modula-upsell .action-link,
610
+ .modula-upsell .action-link:hover {
611
+ background: #51AD31;
612
+ border-color: #51AD31;
613
+ color: #fff;
614
+ font-weight: bold;
615
+ }
616
+
617
+ /* Modula Gallery upload */
618
+ #modula-uploader-container {
619
+ /*min-height: 300px;*/
620
+ position: relative;
621
+ padding-left: 10px;
622
+ padding-right: 10px;
623
+ }
624
+ #modula-uploader-container.modula-resizer-enabled {
625
+ /*padding-left: 20px;*/
626
+ margin-bottom: 20px;
627
+ }
628
+ .modula-upload-actions {
629
+ padding: 15px 20px;
630
+ background-color: #f8fcfd;
631
+ border-bottom: 1px solid #ecf6f9;
632
+ margin-bottom: 20px;
633
+ display: flex;
634
+ align-items: center;
635
+ justify-content: space-between;
636
+ width: 100%;
637
+ box-sizing: border-box;
638
+ }
639
+ .modula-upload-actions .buttons {
640
+ flex-shrink: 0;
641
+ width: auto;
642
+ display: flex;
643
+ }
644
+ .modula-sources-dropdown {
645
+ position: relative;
646
+ border-top: 1px solid rgba( 255,255,255,0 );
647
+ border-right: 1px solid rgba( 255,255,255,0 );
648
+ border-left: 1px solid rgba( 255,255,255,0 );
649
+ }
650
+ .modula-sources-dropdown:hover {
651
+ border-color: #ddd;
652
+ background: #f5f5f5;
653
+ }
654
+ .modula-sources-dropdown > span {
655
+ width: 28px;
656
+ height: 32px;
657
+ text-align: center;
658
+ line-height: 28px;
659
+ cursor: pointer;
660
+ display: inline-block;
661
+ font-size: 25px;
662
+ font-weight: bold;
663
+ }
664
+ .modula-sources-dropdown .modula-sources-dropdown-content {
665
+ position: absolute;
666
+ right: -1px;
667
+ bottom: 0;
668
+ transform: translateY( 100% );
669
+ display: none;
670
+ padding: 15px;
671
+ background-color: #f5f5f5;
672
+ box-shadow: 0 1px 1px rgba(0,0,0,.04);
673
+ box-sizing: border-box;
674
+ border: 1px solid #ddd;
675
+ }
676
+ .modula-sources-dropdown:hover .modula-sources-dropdown-content {
677
+ display: block;
678
+ }
679
+ .modula-sources-dropdown:hover .modula-sources-dropdown-content:before {
680
+ content: "";
681
+ height: 1px;
682
+ width: 28px;
683
+ background-color: #f5f5f5;
684
+ position: absolute;
685
+ top: -1px;
686
+ right: 0;
687
+ }
688
+ .segrip.ui-resizable-se {
689
+ width: 30px;
690
+ height: 30px;
691
+ background: url('../../images/resize-se.svg') no-repeat;
692
+ background-size: contain;
693
+ display: none;
694
+ z-index: 100;
695
+ opacity: 1;
696
+ }
697
+ .modula-resizer-enabled .segrip.ui-resizable-se {
698
+ display: block;
699
+ }
700
+ .modula-upload-actions #modula-uploader-browser {
701
+ border-bottom-right-radius: 0;
702
+ border-top-right-radius: 0;
703
+ }
704
+ .modula-upload-actions #modula-wp-gallery {
705
+ border-bottom-left-radius: 0;
706
+ border-top-left-radius: 0;
707
+ }
708
+ .wp-core-ui .modula-upload-actions > a {
709
+ margin: 0 5px;
710
+ }
711
+ #modula-dropzone-container {
712
+ position: absolute;
713
+ top: 0;
714
+ left: 0;
715
+ right: 0;
716
+ bottom: 0;
717
+ background: rgba(0,86,132,.9);
718
+ z-index: 250000;
719
+ display: none;
720
+ text-align: center;
721
+ opacity: 0;
722
+ transition: opacity 250ms;
723
+ }
724
+ #modula-dropzone-container .modula-uploader-window-content {
725
+ position: absolute;
726
+ top: 10px;
727
+ left: 10px;
728
+ right: 10px;
729
+ bottom: 10px;
730
+ border: 1px dashed #fff;
731
+ }
732
+ #poststuff #modula-dropzone-container .modula-uploader-window-content h1 {
733
+ margin: -.5em 0 0;
734
+ position: absolute;
735
+ top: 50%;
736
+ left: 0;
737
+ right: 0;
738
+ -webkit-transform: translateY(-50%);
739
+ transform: translateY(-50%);
740
+ font-size: 20px;
741
+ line-height: 28px;
742
+ font-weight: 400;
743
+ color: #fff;
744
+ padding: 0;
745
+ }
746
+ .modula-uploader-inline-content {
747
+ position: relative;
748
+ min-height: 300px;
749
+ width: 100%;
750
+ }
751
+ .modula-resizer-enabled .modula-uploader-inline-content {
752
+ min-height: initial;
753
+ }
754
+ .modula-uploader-inline-content h2 {
755
+ text-align: center;
756
+ position: absolute;
757
+ top: 50%;
758
+ left: 50%;
759
+ transform: translate( -50%, -50% );
760
+ }
761
+ #poststuff .modula-upload-message {
762
+ font-size: 43px;
763
+ line-height: 1;
764
+ font-weight: 400;
765
+ margin: 0;
766
+ display: none;
767
+ color: #ebebeb;
768
+ }
769
+ #poststuff .modula-upload-message .dashicons,
770
+ #poststuff .modula-upload-message .dashicons-before:before{
771
+ font-size: 43px;
772
+ width: 43px;
773
+ height: 43px;
774
+ }
775
+ .modula-uploader-inline p {
776
+ font-size: 12px;
777
+ margin: .5em 0;
778
+ }
779
+ #poststuff .modula-uploader-inline .modula-upload-instructions {
780
+ font-size: 14px;
781
+ color: #444;
782
+ font-weight: 400;
783
+ padding: 0;
784
+ }
785
+ .modula-uploader-footer .max-upload-size {
786
+ float: left;
787
+ }
788
+ .modula-uploader-footer .modula-upload-numbers {
789
+ float: right;
790
+ opacity: 0;
791
+ }
792
+ .modula-uploader-footer:after {
793
+ display: block;
794
+ content: "";
795
+ clear: both;
796
+ }
797
+ .upload-progress .modula-upload-numbers {
798
+ margin: 0;
799
+ line-height: 1.4em;
800
+ }
801
+ .modula-progress-bar {
802
+ width: 100%;
803
+ max-width: 400px;
804
+ position: relative;
805
+ height: 2px;
806
+ margin: 8px 0 0;
807
+ border-radius: 10px;
808
+ background: #e5e5e5;
809
+ }
810
+ .upload-info-container {
811
+ position: relative;
812
+ overflow: hidden;
813
+ flex-grow: 1;
814
+ }
815
+ .upload-info-container .upload-info {
816
+ padding: 5px 0;
817
+ }
818
+ .upload-info-container .upload-progress {
819
+ position: absolute;
820
+ background-color: #f8fcfd;
821
+ height: 100%;
822
+ display: flex;
823
+ top: 0;
824
+ left: 0;
825
+ width: 100%;
826
+ flex-direction: column;
827
+ transition: transform 0.5s;
828
+ transform: translateY( 100% );
829
+ }
830
+
831
+ .modula-upload-actions.show-progress .upload-info-container .upload-progress {
832
+ transform: translateY( 0 );
833
+ }
834
+
835
+ .modula-progress-bar .modula-progress-bar-inner {
836
+ height: 2px;
837
+ min-width: 20px;
838
+ width: 0px;
839
+ background: #0085ba;
840
+ -webkit-transition: width 300ms;
841
+ -moz-transition: width 300ms;
842
+ -ms-transition: width 300ms;
843
+ -o-transition: width 300ms;
844
+ transition: width 300ms;
845
+ border-radius: 5px;
846
+ }
847
+ .modula-uploader-footer.show-progress .modula-upload-numbers,
848
+ .modula-uploader-footer.show-progress .modula-progress-bar {
849
+ opacity: 1;
850
+ }
851
+
852
+ .modula-uploader-inline-content .modula-single-image,
853
+ .modula-uploader-inline-content .modula-single-image-placeholder {
854
+ cursor: move;
855
+ display: inline-block;
856
+ padding: 0 10px 10px 0;
857
+ box-sizing: border-box;
858
+ width: 16.66%;
859
+ }
860
+ .modula-uploader-inline-content .modula-single-image-placeholder:after {
861
+ width: 100%;
862
+ height: 100%;
863
+ display: inline-block;
864
+ content: "";
865
+ position: relative;
866
+ border: 3px dashed #444;
867
+ padding-top: calc( 100% - 6px );
868
+ box-sizing: border-box;
869
+ }
870
+ .modula-uploader-inline-content .modula-single-image .modula-single-image-content {
871
+ position: relative;
872
+ border: 1px solid #d6d6d6;
873
+ box-sizing: border-box;
874
+ background-position: center;
875
+ background-size: cover;
876
+ }
877
+ .modula-uploader-inline-content .modula-single-image .modula-single-image-content img {
878
+ display: block;
879
+ width: 100%;
880
+ }
881
+ #poststuff .modula-uploader-inline-content > .modula-upload-message:only-child {
882
+ display: block;
883
+ }
884
+ .modula-uploader-inline-content .modula-single-image .actions {
885
+ position: absolute;
886
+ z-index: 99;
887
+ font-size: 0;
888
+ width: 100%;
889
+ height: 100%;
890
+ top: 0;
891
+ left: 0;
892
+ background: rgba( 0,0,0,.4 );
893
+ padding: 5px;
894
+ box-sizing: border-box;
895
+ display: none;
896
+ }
897
+ .modula-uploader-inline-content .modula-single-image:hover .actions {
898
+ display: block;
899
+ }
900
+ .modula-uploader-inline-content .modula-single-image .actions a {
901
+ /*text-decoration: none;
902
+ color: #fff;
903
+ display: inline-block;
904
+ padding: 5px;
905
+ display: inline-block;
906
+
907
+ text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799;
908
+ background: #0085ba;
909
+ border: 1px solid #006799;
910
+ border-bottom-width: 2px;*/
911
+
912
+ width: 20px;
913
+ height: 20px;
914
+ border-radius: 100%;
915
+ border: 1px solid #000;
916
+ background-color: rgba( 255,255,255,.8 );
917
+ color: #000;
918
+ display: block;
919
+ text-decoration: none;
920
+ text-align: center;
921
+ line-height: 20px;
922
+ margin-bottom: 5px;
923
+
924
+ /*float: right;
925
+ clear: both;*/
926
+
927
+
928
+ }
929
+ .modula-uploader-inline-content .modula-single-image .actions a:hover {
930
+ background-color: #000;
931
+ color: #fff;
932
+ }
933
+ /*.modula-uploader-inline-content .modula-single-image .actions a:first-child {
934
+ border-top-left-radius: 5px;
935
+ }
936
+ .modula-uploader-inline-content .modula-single-image .actions a:last-child {
937
+ border-left-width: 0;
938
+ border-top-right-radius: 5px;
939
+ }*/
940
+ .modula-uploader-inline-content .modula-single-image .actions a span {
941
+ font-size: 16px;
942
+ width: 20px;
943
+ height: 20px;
944
+ line-height: 20px;
945
+ }
946
+ .modula-uploader-inline-content .modula-single-image .actions a.modula-delete-image {
947
+ color: #a00a00;
948
+ }
949
+ .modula-uploader-inline-content .modula-single-image .actions a.modula-delete-image:hover {
950
+ background-color: #a00a00;
951
+ color: #fff;
952
+ }
953
+ .modula-uploader-inline-content:after {
954
+ content: "";
955
+ display: block;
956
+ clear: both;
957
+ }
958
+
959
+ /* Modula Popup */
960
+ .media-modal .modula-edit-popup.edit-attachment-frame .edit-media-header button.right {
961
+ border-right: 1px solid #ddd;
962
+ }
963
+ .media-modal .modula-edit-popup .attachment-details .attachment-info .settings .setting {
964
+ margin: 0 0 20px 0;
965
+ padding: 0 0 20px 0;
966
+ border-bottom: 1px solid #ddd;
967
+ }
968
+ .media-modal .modula-edit-popup .attachment-details .attachment-info .settings .setting span.name {
969
+ display: block;
970
+ width: 100%;
971
+ min-width: 100%;
972
+ margin: 0;
973
+ padding: 0;
974
+ text-align: left;
975
+ font-weight: 700;
976
+ font-size: 14px;
977
+ }
978
+ .media-modal .modula-edit-popup .attachment-details .attachment-info .settings .setting input[type="text"],
979
+ .media-modal .modula-edit-popup .attachment-details .attachment-info .settings .setting textarea {
980
+ display: block;
981
+ width: 100%;
982
+ min-width: 100%;
983
+ margin: 0;
984
+ }
985
+ .media-modal .modula-edit-popup .attachment-details .attachment-info .settings .setting div.description {
986
+ clear: both;
987
+ float: left;
988
+ margin: 5px 0 0 0;
989
+ text-align: left;
990
+ font-size: 13px;
991
+ font-style: italic;
992
+ color: #666;
993
+ }
994
+
995
+ .media-modal .modula-edit-popup .attachment-details .attachment-info .settings .setting.modula-link input[name="link"] {
996
+ padding:10px 40px 10px 5px;
997
+ }
998
+
999
+ .media-modal .modula-edit-popup .attachment-details .attachment-info .settings .setting.modula-link input[name="link"].ui-autocomplete-loading {
1000
+ background-position: calc(100% - 40px) center;
1001
+ }
1002
+
1003
+ .media-modal .modula-edit-popup .attachment-details .attachment-info .settings .setting.modula-link label {
1004
+ position: relative;
1005
+ }
1006
+
1007
+ .media-modal .modula-edit-popup .attachment-details .attachment-info .settings .setting.modula-link span.dashicons {
1008
+ position: absolute;
1009
+ right: 15px;
1010
+ margin-top: 35px;
1011
+ font-size: 16px;
1012
+ line-height: 0px;
1013
+ }
1014
+
1015
+ .media-modal .modula-edit-popup .attachment-details .attachment-info .settings {
1016
+ margin: 0;
1017
+ padding: 0;
1018
+ border: none;
1019
+ }
1020
+ .media-modal .attachment-info .actions a {
1021
+ display: inline-block;
1022
+ }
1023
+ .inline-input {
1024
+ display: inline;
1025
+ }
1026
+
1027
+ /* Resizeble & Draggble */
1028
+ .ui-draggable.ui-resizable > .segrip {
1029
+ width: 10px;
1030
+ height: 10px;
1031
+ background: red;
1032
+ position: absolute;
1033
+ bottom: 0;
1034
+ right: 0;
1035
+ }
1036
+ .ui-draggable.ui-resizable .modula-single-image-content img {
1037
+ display: none;
1038
+ }
1039
+ .ui-draggable.ui-resizable .modula-single-image-content {
1040
+ width: 100%;
1041
+ height: 100%;
1042
+ }
1043
+
1044
+ .ui-draggable.ui-resizable.modula-single-image {
1045
+ padding: 0;
1046
+ }
1047
+
1048
+ .packery-drop-placeholder {
1049
+ outline: 3px dashed #444;
1050
+ outline-offset: -6px;
1051
+ /* transition position changing */
1052
+ -webkit-transition: -webkit-transform 0.2s;
1053
+ transition: transform 0.2s;
1054
+ }
1055
+
1056
+ .ui-resizable-helper {
1057
+ border: 3px dashed #444;
1058
+ box-sizing: border-box;
1059
+ }
1060
+
1061
+ /* New Design by Gabi */
1062
+ #poststuff #modula-preview-gallery h2.hndle,
1063
+ #poststuff #modula-settings h2.hndle {
1064
+ padding-left: 20px;
1065
+ }
1066
+
1067
+ #poststuff #modula-preview-gallery .inside {
1068
+ margin-top: 0;
1069
+ padding: 0;
1070
+ }
1071
+
1072
+ /* Modula Popup */
1073
+ .modula-edit-popup .attachment-details .setting span.description > span {
1074
+ display: inline-block;
1075
+ float: none;
1076
+ width: auto;
1077
+ min-width: unset;
1078
+ line-height: 16px;
1079
+ min-height: 16px;
1080
+ margin-top: 8px;
1081
+ padding: 0;
1082
+ vertical-align: middle;
1083
+ margin-right: 0;
1084
+ }
1085
+ .modula-edit-popup .attachment-details .setting span.description {
1086
+ text-align: left;
1087
+ vertical-align: middle;
1088
+ }
1089
+
1090
+ .modula-media-modal .attachments-browser .media-toolbar .media-toolbar-secondary {
1091
+ width: 100%;
1092
+ }
1093
+
1094
+ .modula-media-modal .attachments-browser .media-toolbar .media-toolbar-secondary .modula-error-container {
1095
+ margin-top:25px;
1096
+ }
1097
+
1098
+ /* Modula Error */
1099
+ .modula-error-container {
1100
+ display: block;
1101
+ }
1102
+ .modula-error-container.hide {
1103
+ display: none;
1104
+ }
1105
+ .modula-error-container .modula-error {
1106
+ padding: 12px;
1107
+ margin-bottom: 12px;
1108
+ background: #fff;
1109
+ border-left: 4px solid #dc3232;
1110
+ box-shadow: 0px 0px 4px 0 rgba(0,0,0,.1);
1111
+ font-weight: 600;
1112
+ margin-top: 5px;
1113
+ position: relative;
1114
+ background-color: #dc3232;
1115
+ color: #fff;
1116
+ }
1117
+ .modula-error-container .modula-error a {
1118
+ color: #fff;
1119
+ }
1120
+ .modula-error-container .modula-error .upload-dismiss-errors {
1121
+ position: absolute;
1122
+ top: 50%;
1123
+ right: -5px;
1124
+ padding: 10px;
1125
+ transition: none;
1126
+ display: block;
1127
+ text-decoration: none;
1128
+ margin-top: -18px;
1129
+ }
1130
+ .modula-error-container .modula-error .upload-dismiss-errors:before {
1131
+ content: "\f153";
1132
+ display: block;
1133
+ font: 400 16px/1 dashicons;
1134
+ color: #fff;
1135
+ }
1136
+
1137
+ a.modula-tab-link {
1138
+ text-decoration: none;
1139
+ }
1140
+ .modula-tab-link span.dashicons {
1141
+ width: 16px;
1142
+ height: 16px;
1143
+ line-height: 16px;
1144
+ margin-right: 3px;
1145
+ vertical-align: text-bottom;
1146
+ font-size: 16px;
1147
+ text-decoration: none;
1148
+ }
1149
+
1150
+ /*#normal-sortables {
1151
+ display: none;
1152
+ }*/
1153
+
1154
+ /* Modula Grid */
1155
+ #modula-grid {
1156
+ height: 100%;
1157
+ position: absolute;
1158
+ overflow: hidden;
1159
+ top: 0;
1160
+ left: 0;
1161
+ width: 100%;
1162
+ }
1163
+ #modula-grid .modula-grid-item {
1164
+ background-color: #FAFAFA;
1165
+ float: left;
1166
+ }
1167
+ #modula-grid .modula-grid-item:nth-child( 12n ){
1168
+ margin-right: 0 !important;
1169
+ }
1170
+ #modula-grid:after {
1171
+ content: "";
1172
+ display: block;
1173
+ clear: both;
1174
+ }
1175
+
1176
+ .modula-shortcuts {
1177
+ padding:10px;
1178
+ color: #696969;
1179
+ background:#f5efe0;
1180
+ font-size:11px;
1181
+ }
1182
+
1183
+ .modula-shortcuts strong {
1184
+ color:#000;
1185
+ }
1186
+
1187
+ /* Tabs tooltips */
1188
+ .modula-tooltip {
1189
+ position: relative;
1190
+ display: inline-block;
1191
+ float: left;
1192
+ margin-right: 10px;
1193
+ }
1194
+
1195
+ .modula-tooltip > span {
1196
+ cursor: pointer;
1197
+ color: #0073aa;
1198
+ text-decoration: underline;
1199
+ margin-left: 5px;
1200
+ }
1201
+
1202
+ .modula-tooltip .modula-tooltip-content {
1203
+ display: none;
1204
+ position: absolute;
1205
+ top: 50%;
1206
+ right: -10px;
1207
+ transform: translate( 100% ,-50% );
1208
+ width: 300px;
1209
+ background: #000;
1210
+ color: #fff;
1211
+ padding: 10px;
1212
+ box-sizing: border-box;
1213
+ z-index: 99;
1214
+ }
1215
+
1216
+ .modula-tooltip .modula-tooltip-content:before {
1217
+ content: '';
1218
+ width: 0px;
1219
+ height: 0px;
1220
+ border-style: solid;
1221
+ border-width: 8px 8px 8px 0;
1222
+ border-color: transparent #000 transparent transparent;
1223
+ display: block;
1224
+ position: absolute;
1225
+ top: 50%;
1226
+ left: -8px;
1227
+ transform: translateY( -50% );
1228
+ }
1229
+
1230
+ .modula-tooltip:hover .modula-tooltip-content {
1231
+ display: block;
1232
+ }
1233
+
1234
+
1235
+ /* Modula Helper Grid */
1236
+ .modula-helper-guidelines-container {
1237
+ padding: 15px 20px;
1238
+ background-color: #f8fcfd;
1239
+ display: flex;
1240
+ align-items: center;
1241
+ border-top: 1px solid #ecf6f9;
1242
+ z-index: 999;
1243
+ position: relative;
1244
+ }
1245
+ .modula-helper-guidelines-container .onoffswitch {
1246
+ margin-top: 0;
1247
+ }
1248
+ .modula-helper-guidelines-wrapper .modula-helper-guidelines-label {
1249
+ margin-left: 5px;
1250
+ }
1251
+
1252
+ .modula-helper-guidelines-container.modula-guidelines-display {
1253
+ display: none;
1254
+ }
1255
+
1256
+ /* Creative Grid */
1257
+ .modula-creative-gallery.modula-uploader-inline-content .modula-single-image .modula-single-image-content {
1258
+ background: #eee !important;
1259
+ position: relative;
1260
+ overflow: hidden;
1261
+ }
1262
+ .modula-creative-gallery.modula-uploader-inline-content .modula-single-image-content:before {
1263
+ content: "";
1264
+ display: block;
1265
+ padding-top: 100%;
1266
+ }
1267
+ .modula-creative-gallery.modula-uploader-inline-content .modula-single-image-content img {
1268
+ position: absolute;
1269
+ top: 50%;
1270
+ left: 50%;
1271
+ -webkit-transform: translate(-50%,-50%);
1272
+ transform: translate(-50%,-50%);
1273
+ }
1274
+ .modula-creative-gallery.modula-uploader-inline-content .modula-single-image-content.landscape img {
1275
+ max-height: 100%;
1276
+ }
1277
+ .modula-creative-gallery.modula-uploader-inline-content .modula-single-image-content.portrait img {
1278
+ max-width: 100%;
1279
+ }
1280
+
1281
+ /* Toggles */
1282
+ .modula-toggle {
1283
+ position: relative;
1284
+ position: relative;
1285
+ user-select: none;
1286
+ display: inline-block;
1287
+ }
1288
+
1289
+ .modula-toggle__items {
1290
+ box-sizing: border-box;
1291
+ display: inline-block;
1292
+ position: relative;
1293
+ }
1294
+ .modula-toggle__items > * {
1295
+ box-sizing: inherit;
1296
+ }
1297
+
1298
+ .modula-toggle__input[type=checkbox],
1299
+ body .media-modal-content .attachment-details .modula-toggle__input[type=checkbox] {
1300
+ border-radius: 2px;
1301
+ border: 2px solid #6c7781;
1302
+ margin-right: 12px;
1303
+ transition: none;
1304
+ height: 100%;
1305
+ left: 0;
1306
+ top: 0;
1307
+ margin: 0;
1308
+ padding: 0;
1309
+ opacity: 0;
1310
+ position: absolute;
1311
+ width: 100%;
1312
+ z-index: 1; }
1313
+
1314
+ .modula-toggle__track,
1315
+ body .media-modal-content .attachment-details .modula-toggle__track {
1316
+ background-color: #fff;
1317
+ border: 2px solid #6c7781;
1318
+ border-radius: 9px;
1319
+ display: inline-block;
1320
+ height: 18px;
1321
+ width: 36px;
1322
+ vertical-align: top;
1323
+ transition: background .2s ease; }
1324
+
1325
+ .modula-toggle__thumb,
1326
+ body .media-modal-content .attachment-details .modula-toggle__thumb {
1327
+ background-color: #6c7781;
1328
+ border: 5px solid #6c7781;
1329
+ border-radius: 50%;
1330
+ display: block;
1331
+ height: 10px;
1332
+ width: 10px;
1333
+ position: absolute;
1334
+ left: 4px;
1335
+ top: 4px;
1336
+ transition: transform .2s ease; }
1337
+
1338
+ body .media-modal-content .attachment-details .modula-toggle__thumb,
1339
+ body .media-modal-content .attachment-details .modula-toggle__track {
1340
+ min-width:auto;
1341
+ min-height:auto;
1342
+ float:none;
1343
+ padding:0;
1344
+ }
1345
+
1346
+ .modula-toggle__off {
1347
+ position: absolute;
1348
+ right: 6px;
1349
+ top: 6px;
1350
+ color: #6c7781;
1351
+ fill: currentColor; }
1352
+
1353
+ .modula-toggle__on {
1354
+ position: absolute;
1355
+ top: 6px;
1356
+ left: 8px;
1357
+ border: 1px solid #fff;
1358
+ outline: 1px solid transparent;
1359
+ outline-offset: -1px;
1360
+ display: none; }
1361
+
1362
+ .modula-toggle__input[type=checkbox]:checked + .modula-toggle__items .modula-toggle__track {
1363
+ background-color: #11a0d2;
1364
+ border: 9px solid transparent; }
1365
+
1366
+ .modula-toggle__input[type=checkbox]:checked + .modula-toggle__items .modula-toggle__thumb {
1367
+ background-color: #fff;
1368
+ border-width: 0;
1369
+ transform: translateX(18px); }
1370
+
1371
+ .modula-toggle__input[type=checkbox]:checked + .modula-toggle__items .modula-toggle__off {
1372
+ display: none; }
1373
+
1374
+ .modula-toggle__input[type=checkbox]:checked + .modula-toggle__items .modula-toggle__on {
1375
+ display: inline-block; }
1376
+
1377
+ p.description.alert {
1378
+ color:#ff0000;
1379
+ }
1380
+
1381
+ tr.troubleshoot-subfield.hide {
1382
+ display:none;
1383
+ }
1384
+
1385
+ /* Copy Shortcode */
1386
+ .modula-copy-shortcode {
1387
+ display: flex;
1388
+ align-items: center;
1389
+ flex-wrap: wrap;
1390
+ }
1391
+
1392
+ .modula-copy-shortcode input {
1393
+ margin:0;
1394
+ border-top-right-radius: 0;
1395
+ border-bottom-right-radius: 0;
1396
+ flex-grow:1;
1397
+ }
1398
+
1399
+ .modula-copy-shortcode span {
1400
+ width: 100%;
1401
+ }
1402
+
1403
+ .wp-core-ui .modula-copy-shortcode a.button-primary {
1404
+ height: 30px;
1405
+ border-top-left-radius: 0;
1406
+ border-bottom-left-radius: 0;
1407
+
1408
+ }
1409
+
1410
+ /*
1411
+ Ups-sells carousel
1412
+ @since 2.2.4
1413
+ */
1414
+
1415
+ @keyframes carousel {
1416
+ 0% {
1417
+ transform: translateX(0px);
1418
+ opacity: 1 !important;
1419
+ }
1420
+ 50% {
1421
+ transform: translateX(0px);
1422
+ opacity: 1 !important;
1423
+ }
1424
+ 51% {
1425
+ transform: translateX(-100%);
1426
+ opacity: 1 !important;
1427
+ }
1428
+ 99% {
1429
+ transform: translateX(-100%);
1430
+ opacity: 1 !important;
1431
+ }
1432
+ 100% {
1433
+ transform: translateX(-200%);
1434
+ opacity: 1 !important;
1435
+ }
1436
+ }
1437
+
1438
+ .modula-upsells-carousel-wrapper{
1439
+ position: relative;
1440
+ display:flex;
1441
+ overflow:hidden;
1442
+ }
1443
+
1444
+ .modula-upsells-carousel {
1445
+ /*animation: carousel 20s infinite;*/
1446
+ flex-shrink: 0;
1447
+ position: relative;
1448
+ /* display:flex;*/
1449
+ display:block;
1450
+ width:100%;
1451
+ }
1452
+
1453
+ .modula-upsells-carousel .modula-upsell-item {
1454
+ position: relative;
1455
+ width:100%;
1456
+ flex-shrink: 0;
1457
+ margin-top:0;
1458
+ left:-15px;
1459
+ }
1460
+
1461
+ .modula-upsells-carousel .modula-upsell-item {
1462
+ text-align: center;
1463
+ }
1464
+
1465
+ .modula-upsells-carousel .modula-upsell-item ul.modula-upsells-list {
1466
+ padding-left:40px;
1467
+ }
1468
+
1469
+ .modula-upsells-carousel .modula-upsell-item ul li {
1470
+ position: relative;
1471
+ list-style-type: none !important;
1472
+ text-align:left;
1473
+ }
1474
+
1475
+ #modula-albums-upsell .modula-upsells-carousel .modula-upsell-item ul li {
1476
+ display: inline-block;
1477
+ margin: 0px 15px 15px 35px;
1478
+ }
1479
+
1480
+ .modula-upsells-carousel .modula-upsell-item ul li:before {
1481
+ font-family: Dashicons;
1482
+ content: "\f147";
1483
+ position: absolute;
1484
+ left: -30px;
1485
+ font-size: 14px;
1486
+ color: green;
1487
+ background-color: #FFF;
1488
+ padding: 0 3px;
1489
+ border-radius: 50%;
1490
+ border: 1px solid #DDD;
1491
+ top: -1px;
1492
+ }
1493
+ .modula-upsell ul.modula-upsell-features li span.modula-check {
1494
+ display: inline-block;
1495
+ color: green;
1496
+ background-color: #FFF;
1497
+ border-radius: 50%;
1498
+ border: 1px solid #DDD;
1499
+ display: inline-block;
1500
+ margin-right: 5px;
1501
+ }
1502
+ #modula-sorting-upsell > h2.hndle.ui-sortable-handle,
1503
+ #modula-sorting-upsell > button.handlediv,
1504
+ #modula-albums-upsell > h2.hndle.ui-sortable-handle,
1505
+ #modula-albums-upsell > button.handlediv {
1506
+ display:none;
1507
+ }
1508
+
1509
+ #modula-defaults-upsell p:not(:last-child) {
1510
+ text-align:left;
1511
+ }
1512
+
1513
+ #modula-sorting-upsell > .inside,
1514
+ #modula-albums-upsell > .inside,
1515
+ #modula-defaults-upsell > .inside,
1516
+ #modula-debug > .inside{
1517
+ padding: 0;
1518
+ margin: 0 auto;
1519
+ }
1520
+
1521
+ /* Editor theme*/
1522
+ /*
1523
+ Name: dracula
1524
+ Author: Michael Kaminsky (http://github.com/mkaminsky11)
1525
+ Original dracula color scheme by Zeno Rocha (https://github.com/zenorocha/dracula-theme)
1526
+ */
1527
+ .cm-s-dracula.CodeMirror, .cm-s-dracula .CodeMirror-gutters {
1528
+ background-color: #282a36 !important;
1529
+ color: #f8f8f2 !important;
1530
+ border: none;
1531
+ }
1532
+ .cm-s-dracula .CodeMirror-gutters { color: #282a36; }
1533
+ .cm-s-dracula .CodeMirror-cursor { border-left: solid thin #f8f8f0; }
1534
+ .cm-s-dracula .CodeMirror-linenumber { color: #6D8A88; }
1535
+ .cm-s-dracula .CodeMirror-selected { background: rgba(255, 255, 255, 0.10); }
1536
+ .cm-s-dracula .CodeMirror-line::selection, .cm-s-dracula .CodeMirror-line > span::selection, .cm-s-dracula .CodeMirror-line > span > span::selection { background: rgba(255, 255, 255, 0.10); }
1537
+ .cm-s-dracula .CodeMirror-line::-moz-selection, .cm-s-dracula .CodeMirror-line > span::-moz-selection, .cm-s-dracula .CodeMirror-line > span > span::-moz-selection { background: rgba(255, 255, 255, 0.10); }
1538
+ .cm-s-dracula span.cm-comment { color: #6272a4; }
1539
+ .cm-s-dracula span.cm-string, .cm-s-dracula span.cm-string-2 { color: #f1fa8c; }
1540
+ .cm-s-dracula span.cm-number { color: #bd93f9; }
1541
+ .cm-s-dracula span.cm-variable { color: #50fa7b; }
1542
+ .cm-s-dracula span.cm-variable-2 { color: white; }
1543
+ .cm-s-dracula span.cm-def { color: #50fa7b; }
1544
+ .cm-s-dracula span.cm-operator { color: #ff79c6; }
1545
+ .cm-s-dracula span.cm-keyword { color: #ff79c6; }
1546
+ .cm-s-dracula span.cm-atom { color: #bd93f9; }
1547
+ .cm-s-dracula span.cm-meta { color: #f8f8f2; }
1548
+ .cm-s-dracula span.cm-tag { color: #ff79c6; }
1549
+ .cm-s-dracula span.cm-attribute { color: #50fa7b; }
1550
+ .cm-s-dracula span.cm-qualifier { color: #50fa7b; }
1551
+ .cm-s-dracula span.cm-property { color: #66d9ef; }
1552
+ .cm-s-dracula span.cm-builtin { color: #50fa7b; }
1553
+ .cm-s-dracula span.cm-variable-3, .cm-s-dracula span.cm-type { color: #ffb86c; }
1554
+
1555
+ .cm-s-dracula .CodeMirror-activeline-background { background: rgba(255,255,255,0.1); }
1556
+ .cm-s-dracula .CodeMirror-matchingbracket { text-decoration: underline; color: white !important; }
1557
+
1558
+ #modula_troubleshooting_option .modula-select label {
1559
+ margin-right: 10px;
1560
+ }
1561
+ #modula_troubleshooting_option .modula-select label:last-child {
1562
+ margin-right: 0;
1563
+ }
1564
+
1565
+ #modula_troubleshooting_option td > .wrap.modula {
1566
+ margin:0 auto;
1567
+ }
1568
+
1569
+ #modula_troubleshooting_option td > .wrap.modula .modula-toggle {
1570
+ margin-top:0;
1571
+ }
1572
+
1573
+ #modula_troubleshooting_option h2 {
1574
+ margin : 0;
1575
+ }
1576
+
1577
+ #modula-albums-upsell h2 {
1578
+ margin: 0 !important;
1579
+ }
1580
+
1581
+ .modula-settings-container input[type="number"] {
1582
+ max-width: 80px;
1583
+ }
1584
+
1585
+ .modula-after-input {
1586
+ margin-left: 5px;
1587
+ }
1588
+
1589
+
1590
+ /**
1591
+ Scaling Effect Preview
1592
+ */
1593
+ .modula-scaling-effect-preview {
1594
+ position: relative;
1595
+ max-width:900px;
1596
+ width:100%;
1597
+ margin:0 auto;
1598
+ margin-top:20px;
1599
+ }
1600
+
1601
+ .modula-scaling-effect-preview .modula-item {
1602
+ transition:600ms all;
1603
+ z-index:9999;
1604
+ float:left;
1605
+ margin:10px;
1606
+ }
1607
+
1608
+ .modula-scaling-effect-preview a#test-scaling-preview {
1609
+ margin-top:25px;
1610
+ margin-left:10px;
1611
+ }
1612
+
1613
+ /* Modula Shortcode Box */
1614
+
1615
+ #modula-shortcode .modula-copy-shortcode {
1616
+ margin: 10px auto;
1617
+ }
1618
+
1619
+ #modula-shortcode .inside {
1620
+ padding: 0 12px 2.5px!important;
1621
+ }
1622
+
1623
+ .shortcode-description {
1624
+ margin: 10px 0 0 0;
1625
+ border-bottom: 1px solid #DDD;
1626
+ color: #696969;
1627
+ padding-bottom: 10px;
1628
+ }
1629
+
1630
+ .modula-imagesize-info span {
1631
+ font-weight:bold;
1632
+ }
1633
+
1634
+ .modula-settings-container .selectize-dropdown {
1635
+ cursor:pointer;
1636
+ }
1637
+
1638
+ .modula-settings-container .lightbox-announcement {
1639
+ position: relative;
1640
+ padding:30px;
1641
+ }
1642
+
1643
+ .modula-settings-container .lightbox-announcement a.notice-dismiss {
1644
+ text-decoration: none;
1645
+ }
1646
+
1647
+ /* Autocomplete z-index fix */
1648
+
1649
+ .ui-autocomplete {
1650
+ z-index: 160000;
1651
+ background: white;
1652
+ font-family: inherit;
1653
+ }
1654
+
1655
+ .modula-autocomplete-results {
1656
+ padding: 5px;
1657
+ }
1658
+ .modula-autocomplete-results p {
1659
+ margin-left: 8px;
1660
+ margin-bottom: 0px;
1661
+ font-size: 14px;
1662
+ }
1663
+
1664
+ .modula-autocomplete-results span {
1665
+ position: absolute;
1666
+ top: 50%;
1667
+ right: 5%;
1668
+ transform: translate(-5%, -50%);
1669
+ }
1670
+
1671
+ .modula-autocomplete-results code {
1672
+ padding:10px 20px;
1673
+ }
1674
+
1675
+ .ui-autocomplete .ui-menu-item {
1676
+ border-bottom: 1px solid #555;
1677
+ }
1678
+
1679
+ .modula-colorpickers .iris-border .iris-picker-inner {
1680
+ right:0;
1681
+ }
1682
+
1683
+ html body .modula-tabs-content .modula-colorpickers .iris-palette-container a {
1684
+ display:none;
1685
+ }
1686
+
1687
+ html body .modula-tabs-content .modula-colorpickers .iris-palette-container a:first-child,
1688
+ html body .modula-tabs-content .modula-colorpickers .iris-palette-container a:nth-child(2),
1689
+ html body .modula-tabs-content .modula-colorpickers .iris-palette-container a:nth-child(3),
1690
+ html body .modula-tabs-content .modula-colorpickers .iris-palette-container a:nth-child(4),
1691
+ html body .modula-tabs-content .modula-colorpickers .iris-palette-container a:nth-child(5),
1692
+ html body .modula-tabs-content .modula-colorpickers .iris-palette-container a:nth-child(6),
1693
+ html body .modula-tabs-content .modula-colorpickers .iris-palette-container a:nth-child(7),
1694
+ html body .modula-tabs-content .modula-colorpickers .iris-palette-container a:nth-child(8){
1695
+ display:block;
1696
+ }
1697
+
1698
+ .post-type-modula-gallery #preview-action {
1699
+ display: none;
1700
+ }
1701
+
1702
+ .modula .nav-tab .modula-badge {
1703
+ font-size: 10px;
1704
+ background: #f4daa4;
1705
+ padding: 2px 5px;
1706
+ display: inline-block;
1707
+ margin-left: 10px;
1708
+ border-radius: 10px;
1709
+ }
1710
+
1711
+ .modula-settings-upsell {
1712
+ max-width: 600px;
1713
+ padding: 15px;
1714
+ background: #fff;
1715
+ margin-bottom: 20px;
1716
+ }
1717
+
1718
+ .modula-settings-tab-upsell {
1719
+ padding: 20px;
1720
+ background: #fff;
1721
+ color: #3c434a;
1722
+ }
1723
+
1724
+ .modula-settings-upsell a:first-child, .modula-settings-tab-upsell a:first-child {
1725
+ margin-right: 10px;
1726
+ }
1727
+
1728
+ .modula-columns {
1729
+ display: flex;
1730
+ }
1731
+
1732
+ .modula-columns .m-col-8 {
1733
+ flex: 0 0 70%;
1734
+ max-width: 70%;
1735
+ }
1736
+
1737
+ .modula-columns .m-col-4 {
1738
+ flex: 0 0 30%;
1739
+ max-width: 30%;
1740
+ }
1741
+
1742
+ .modula-columns .modula-column {
1743
+ box-sizing: border-box;
1744
+ }
1745
+
1746
+ .modula-columns .modula-column + .modula-column {
1747
+ padding-left: 20px;
1748
+ }
1749
+
1750
+ .modula-side-tab .modula-upsell {
1751
+ padding: 15px;
1752
+ background: #fff;
1753
+ margin-top: 20px;
1754
+ }
1755
+
1756
+ .modula-side-tab .modula-upsell .modula-upsell-content {
1757
+ margin-bottom: 15px;
1758
+ }
1759
+ .modula-side-tab .modula-upsell h3 {
1760
+ margin-top: 0;
1761
+ }
1762
+
1763
+ /*
1764
+ ** Compatibility Block CSS
1765
+ */
1766
+
1767
+ .modula-tab-content {
1768
+ position : relative;
1769
+ }
1770
+
1771
+ .form-table-wrapper .modula-compatibility {
1772
+ text-align : left;
1773
+ margin : 30px;
1774
+ }
1775
+
1776
+ .form-table-wrapper .modula-compatibility-block {
1777
+ width : 100%;
1778
+ height : 60px;
1779
+ position : absolute;
1780
+ background : gray;
1781
+ z-index : 9;
1782
+ opacity : 0.5;
1783
+ }
1784
+
1785
+
1786
+ .modula-tab-content td > span.dashicons,
1787
+ .modula-tabs-content td > span.modula_input_suffix {
1788
+ padding : 5px;
1789
+ background : #eaecef;
1790
+ color : #000;
1791
+ position : relative;
1792
+ border-top : 1px solid #7e8993;
1793
+ border-bottom : 1px solid #7e8993;
1794
+ display : inline-block;
1795
+ vertical-align : middle;
1796
+ }
1797
+
1798
+ .modula-tab-content td > span.dashicons {
1799
+ border-top-left-radius : 4px;
1800
+ border-bottom-left-radius : 4px;
1801
+ border-left : 1px solid #7e8993;
1802
+ }
1803
+
1804
+ .modula-tabs-content td > span.modula_input_suffix {
1805
+ border-top-right-radius : 4px;
1806
+ border-bottom-right-radius : 4px;
1807
+ border-right : 1px solid #7e8993;
1808
+ left : -2px;
1809
+ display : inline-block;
1810
+ vertical-align : middle;
1811
+ line-height: 20px;
1812
+ }
1813
+
1814
+ html body .modula-settings-container .modula-tab-content tr[data-container="gutter"] > td,
1815
+ html body .modula-settings-container .modula-tab-content tr[data-container="height"] > td {
1816
+ display:inline-block;
1817
+ }
1818
+
1819
+ html body .modula-settings-container .modula-tab-content tr[data-container] input.modula-gutter-input {
1820
+ border-radius : 0;
1821
+ border-right : 0;
1822
+ border-left : 0;
1823
+ min-width : 62px;
1824
+ max-width : 62px;
1825
+ height : 32px;
1826
+ position : relative;
1827
+ left : -1px;
1828
+ }
1829
+
1830
+ /* Modula hover effects style */
1831
+ .modula-preview-item-container {
1832
+ position: relative;
1833
+ }
1834
+ .modula-preview-item-container .modula-preview-badge {
1835
+ background: #dc3232;
1836
+ color: #fff;
1837
+ padding: 5px 10px;
1838
+ position: absolute;
1839
+ top: 5px;
1840
+ right: 5px;
1841
+ z-index: 1;
1842
+ }
1843
+ .modula-preview-item-container .modula-preview-item-content {
1844
+ background: #f1f1f1;
1845
+ padding: 0 10px;
1846
+ flex:1;
1847
+ }
1848
+ .modula-preview-item-container .modula-preview-item-content h4 {
1849
+ margin: 0;
1850
+ padding: 10px 0 10px;
1851
+ }
1852
+ .modula-preview-item-container {
1853
+ border: 2px solid transparent;
1854
+ height: 100%;
1855
+ display: flex;
1856
+ flex-direction: column;
1857
+ }
1858
+ #modula-hover-effect .modula-effects-preview .panel-pro-preview input[type="radio"]:checked + .modula-preview-item-container {
1859
+ border-color: #0071a1;
1860
+ }
1861
+
1862
+ html body #wpbody #poststuff #post-body .postbox-container #modula-hover-effect .modula-effects-preview {
1863
+ position : relative;
1864
+ min-height : 650px;
1865
+ }
1866
+
1867
+ #modula-hover-effect .modula-effects-preview .panel-pro-preview {
1868
+ width: 31%;
1869
+ margin-bottom: 20px;
1870
+ }
1871
+
1872
+ #modula-hover-effect .modula-effects-preview .panel-pro-preview h4 {
1873
+ text-align:center;
1874
+ }
1875
+
1876
+ #modula-hover-effect .modula-effects-preview .modula-effects-wrapper {
1877
+ max-height : 600px;
1878
+ overflow-Y : scroll;
1879
+ display: flex;
1880
+ flex-wrap: wrap;
1881
+ justify-content: space-between;
1882
+ }
1883
+
1884
+ #modula-hover-effect .modula-effects-preview .panel-pro-preview input[type="radio"] {
1885
+ display:none;
1886
+ }
1887
+
1888
+
1889
+
1890
+ /**
1891
+ Some responsive fixes
1892
+ */
1893
+ /*
1894
+
1895
+ @media all and (max-width:1300px){
1896
+ .modula-settings-container {
1897
+ display:block;
1898
+ }
1899
+
1900
+ .modula-settings-container .modula-tabs .modula-tab {
1901
+ display:inline-block;
1902
+ width:auto;
1903
+ font-size:0;
1904
+ padding:10px !important;
1905
+ }
1906
+
1907
+ .modula-settings-container .modula-tabs .modula-tab:before {
1908
+ content:"";
1909
+ width:3px;
1910
+ display:block;
1911
+ }
1912
+
1913
+ .modula-settings-container .modula-tabs .modula-tab > i {
1914
+ margin:0;
1915
+ }
1916
+ }
1917
+
1918
+ @media all and (min-width:850px) and (max-width:1300px){
1919
+ .modula-settings-container .modula-tabs-content th,
1920
+ .modula-settings-container .modula-tabs-content td {
1921
+ display:block;
1922
+ width:100%;
1923
+ }
1924
+
1925
+ .modula-settings-container .modula-tabs-content td {
1926
+ padding-left:25px;
1927
+ }
1928
+
1929
+ .modula-settings-container .modula-tabs-content th.child_setting + td {
1930
+ padding-left:45px;
1931
+ }
1932
+
1933
+ .modula-settings-container select, .modula-settings-container input:not([type="select-one"]):not([type="button"]):not([readonly="readonly"]), .modula-settings-container select {
1934
+ min-width:175px;
1935
+ }
1936
+
1937
+ .modula-filters-container .modula-filters,
1938
+ .modula-pro-live-preview {
1939
+ max-width:calc(100% - 65px);
1940
+ }
1941
+ }
1942
+
1943
+ @media all and (min-width:600px) and (max-width:849px){
1944
+ .modula-settings-container .modula-tabs-content th,
1945
+ .modula-settings-container .modula-tabs-content .form-table th.child_setting {
1946
+ display:table-cell;
1947
+ }
1948
+
1949
+ .modula-filters-container .modula-filters,
1950
+ .modula-pro-live-preview {
1951
+ max-width:calc(100% - 65px);
1952
+ }
1953
+
1954
+ .modula-settings-container .modula-tabs-content .form-table td {
1955
+ padding-top:20px;
1956
+ padding-bottom:20px;
1957
+ }
1958
+ }
1959
+
1960
+ @media all and (max-width: 599px){
1961
+ .modula-settings-container .modula-tabs-content th,
1962
+ .modula-settings-container .modula-tabs-content td {
1963
+ display:block;
1964
+ width:100%;
1965
+ }
1966
+
1967
+ .modula-filters-container .modula-filters,
1968
+ .modula-pro-live-preview {
1969
+ max-width:calc(100% - 65px);
1970
+ }
1971
+
1972
+ .modula-settings-container .modula-tabs-content td {
1973
+ padding-left:25px;
1974
+ }
1975
+
1976
+ .modula-settings-container .modula-tabs-content th.child_setting + td {
1977
+ padding-left:45px;
1978
+ }
1979
+
1980
+ .modula-settings-container th:not(.child_setting) + td select, .modula-settings-container th:not(.child_setting) + td input:not([type="select-one"]):not([type="button"]):not([readonly="readonly"]), .modula-settings-container th:not(.child_setting) + td select {
1981
+ max-width:calc(100% - 65px) !important;
1982
+ }
1983
+
1984
+ .modula-settings-container th.child_setting + td select, .modula-settings-container th.child_setting + td input:not([type="select-one"]):not([type="button"]):not([readonly="readonly"]), .modula-settings-container th.child_setting + td select {
1985
+ max-width:calc(100% - 85px) !important;
1986
+ }
1987
+
1988
+ .modula-settings-container .modula-tabs-content .form-table td {
1989
+ padding-top:20px;
1990
+ padding-bottom:20px;
1991
+ }
1992
+
1993
+ }
1994
+ */
assets/css/admin/modula-gutenberg.css CHANGED
@@ -1,2 +1,2 @@
1
- html body .modula-block-preview{background:#f3f3f5;border-radius:6px;position:relative;overflow:hidden;height:250px}html body .modula-block-preview .components-spinner{display:block;float:none;margin:0 auto}html body .modula-block-preview .modula-block-preview__content{width:100%;max-width:400px;margin:40px auto;text-align:center}html body .modula-block-preview .modula-block-preview__content select.components-select-control__input{min-height:40px;line-height:20px}html body .modula-block-preview .modula-gallery-input{text-align:left}html body .modula-block-preview .modula-gallery-input .selectize-dropdown-content{max-height:100px}html body .modula-block-preview .modula-gallery-input .selectize-input::after{content:'';border:0}.modula-block-preview__logo{width:100%;height:60px;background:url(../../images/block-preview-bg.svg) no-repeat 50% 0%;background-size:75%}.modula-block-preview--images{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1%;margin-right:-1%}.modula-preview-image-wrap{width:23%;height:0px;padding-bottom:23%;position:relative;margin:1%}.modula-preview-image-wrap img{position:absolute;left:0;top:0;width:100%;height:100%;object-fit:cover}.modula-appender-media{height:60px}.modula-preview-image-wrap{width:31%;padding-bottom:23%;position:relative;margin:1%;height:200px}.modula-preview-image-wrap .modula-button{width:40px}.modula-items{width:100%}.modula-item-content img.pic{height:auto}.modula-button-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;margin:0 auto}.modula-button{margin:0px;background:white;color:black !important;height:50px;font-size:14px;box-shadow:none;border:1px solid #e3e5e5;position:relative;width:calc(100% + 20px)}.modula-button svg{position:absolute;right:5px}.modula-button:hover{color:#478DB6 !important;text-decoration:underline !important}html body .modula-button-group .modula-button-upsell:hover{text-decoration:underline;color:black !important}html body .modula-button-group .modula-button-upsell{margin:0px;background:#3FBF90;color:black;height:50px;font-size:14px;width:calc(100% + 20px)}
2
-
1
+ html body .modula-block-preview{background:#f3f3f5;border-radius:6px;position:relative;overflow:hidden;height:250px}html body .modula-block-preview .components-spinner{display:block;float:none;margin:0 auto}html body .modula-block-preview .modula-block-preview__content{width:100%;max-width:400px;margin:40px auto;text-align:center}html body .modula-block-preview .modula-block-preview__content select.components-select-control__input{min-height:40px;line-height:20px}html body .modula-block-preview .modula-gallery-input{text-align:left}html body .modula-block-preview .modula-gallery-input .selectize-dropdown-content{max-height:100px}html body .modula-block-preview .modula-gallery-input .selectize-input::after{content:'';border:0}.modula-block-preview__logo{width:100%;height:60px;background:url(../../images/block-preview-bg.svg) no-repeat 50% 0%;background-size:75%}.modula-block-preview--images{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1%;margin-right:-1%}.modula-preview-image-wrap{width:23%;height:0px;padding-bottom:23%;position:relative;margin:1%}.modula-preview-image-wrap img{position:absolute;left:0;top:0;width:100%;height:100%;object-fit:cover}.modula-appender-media{height:60px}.modula-preview-image-wrap{width:31%;padding-bottom:23%;position:relative;margin:1%;height:200px}.modula-preview-image-wrap .modula-button{width:40px}.modula-items{width:100%}.modula-item-content img.pic{height:auto}.modula-button-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;margin:0 auto}.modula-button{margin:0px;background:white;color:black !important;height:50px;font-size:14px;box-shadow:none;border:1px solid #e3e5e5;position:relative;width:calc(100% + 20px)}.modula-button svg{position:absolute;right:5px}.modula-button:hover{color:#478DB6 !important;text-decoration:underline !important}html body .modula-button-group .modula-button-upsell:hover{text-decoration:underline;color:black !important}html body .modula-button-group .modula-button-upsell{margin:0px;background:#3FBF90;color:black;height:50px;font-size:14px;width:calc(100% + 20px)}
2
+
assets/css/admin/modula-header.css CHANGED
@@ -1,171 +1,171 @@
1
- body.modula-gallery_page_modula-addons #wpcontent,
2
- body.modula-gallery_page_modula #wpcontent,
3
- body.post-type-modula-gallery:not(.post-new-php):not(.post-php) #wpcontent,
4
- body.modula-gallery_page_modula-lite-vs-pro #wpcontent {
5
- padding-left : 0;
6
- }
7
-
8
- body.modula-gallery_page_modula-addons #wpcontent .wrap,
9
- body.modula-gallery_page_modula #wpcontent .wrap,
10
- body.post-type-modula-gallery:not(.post-new-php):not(.post-php) #wpcontent .wrap,
11
- body.modula-gallery_page_modula-lite-vs-pro #wpcontent .wrap {
12
- margin : 0;
13
- }
14
-
15
- body.modula-gallery_page_modula-lite-vs-pro #wpcontent .wrap,
16
- body.modula-gallery_page_modula-import-export #wpcontent .wrap {
17
- padding : 25px 40px 0 20px;
18
- }
19
-
20
-
21
- body.modula-gallery_page_modula-addons .modula-addons-container,
22
- body.modula-gallery_page_modula-addons .modula-free-addons-container,
23
- body.modula-gallery_page_modula-addons .nav-tab-wrapper,
24
- body.modula-gallery_page_modula-lite-vs-pro .modula-addons-container,
25
- body.modula-gallery_page_modula-lite-vs-pro .modula-free-addons-container,
26
- body.modula-gallery_page_modula-lite-vs-pro .nav-tab-wrapper,
27
- body.modula-gallery_page_modula .modula-addons-container,
28
- body.modula-gallery_page_modula .modula-free-addons-container,
29
- body.modula-gallery_page_modula .nav-tab-wrapper,
30
- body.post-type-modula-gallery .modula-addons-container,
31
- body.post-type-modula-gallery .modula-free-addons-container,
32
- body.post-type-modula-gallery .nav-tab-wrapper {
33
- padding : 20px;
34
- }
35
-
36
- /* Added by Cristi */
37
- body.modula-gallery_page_modula-addons .nav-tab-wrapper .dashicons {
38
- font-size: 16px;
39
- vertical-align: middle;
40
- line-height: 17px;
41
- }
42
-
43
- body.post-type-modula-gallery.post-new-php .modula-page-header,
44
- body.post-type-modula-gallery.post-php .modula-page-header {
45
- margin-left : -20px;
46
- padding-right : 20px;
47
- margin-right : -20px;
48
- }
49
-
50
- body.modula-gallery_page_modula-addons .modula-page-header,
51
- body.modula-gallery_page_modula-lite-vs-pro .modula-page-header,
52
- body.modula-gallery_page_modula .modula-page-header,
53
- body.post-type-modula-gallery .modula-page-header {
54
- padding : 0;
55
- }
56
-
57
- body.modula-gallery_page_modula-addons .modula-page-header .modula-header-logo,
58
- body.modula-gallery_page_modula-addons .modula-page-header .modula-header-links,
59
- body.modula-gallery_page_modula-lite-vs-pro .modula-page-header .modula-header-logo,
60
- body.modula-gallery_page_modula-lite-vs-pro .modula-page-header .modula-header-links,
61
- body.modula-gallery_page_modula .modula-page-header .modula-header-logo,
62
- body.modula-gallery_page_modula .modula-page-header .modula-header-links,
63
- body.post-type-modula-gallery .modula-page-header .modula-header-logo,
64
- body.post-type-modula-gallery .modula-page-header .modula-header-links {
65
- padding : 20px;
66
- }
67
-
68
- body.modula-gallery_page_modula-addons .modula-page-header .modula-header-logo,
69
- body.modula-gallery_page_modula-lite-vs-pro .modula-page-header .modula-header-logo,
70
- body.modula-gallery_page_modula .modula-page-header .modula-header-logo,
71
- body.post-type-modula-gallery .modula-page-header .modula-header-logo {
72
- padding-right : 20px;
73
- }
74
-
75
- body.modula-gallery_page_modula-addons .nav-tab-wrapper,
76
- body.modula-gallery_page_modula-lite-vs-pro .nav-tab-wrapper,
77
- body.modula-gallery_page_modulaaddons .nav-tab-wrapper,
78
- body.post-type-modula-gallery .nav-tab-wrapper {
79
- padding-bottom : 0;
80
- }
81
-
82
- body.modula-gallery_page_modula-addons .modula-page-header,
83
- body.modula-gallery_page_modula-lite-vs-pro .modula-page-header,
84
- body.modula-gallery_page_modula .modula-page-header,
85
- body.post-type-modula-gallery .modula-page-header {
86
- border-bottom : 1px solid #ccc;
87
- }
88
-
89
- body.modula-gallery_page_modula-addons .modula-page-header .modula-header-links a,
90
- body.modula-gallery_page_modula-addons .modula-page-header .modula-header-links a span,
91
- body.modula-gallery_page_modula-lite-vs-pro .modula-page-header .modula-header-links a,
92
- body.modula-gallery_page_modula-lite-vs-pro .modula-page-header .modula-header-links a span,
93
- body.modula-gallery_page_modula .modula-page-header .modula-header-links a,
94
- body.modula-gallery_page_modula .modula-page-header .modula-header-links a span,
95
- body.post-type-modula-gallery .modula-page-header .modula-header-links a,
96
- body.post-type-modula-gallery .modula-page-header .modula-header-links a span {
97
- vertical-align : middle;
98
- }
99
-
100
- body.modula-gallery_page_modula-addons .modula-page-header .modula-header-links a span,
101
- body.modula-gallery_page_modula-lite-vs-pro .modula-page-header .modula-header-links a span,
102
- body.modula-gallery_page_modula .modula-page-header .modula-header-links a span,
103
- body.post-type-modula-gallery .modula-page-header .modula-header-links a span {
104
- font-size:16px;
105
- line-height:18px;
106
- }
107
-
108
- body.modula-gallery_page_modula-addons .nav-tab-wrapper .nav-tab,
109
- body.modula-gallery_page_modula-lite-vs-pro .nav-tab-wrapper .nav-tab,
110
- body.modula-gallery_page_modula .nav-tab-wrapper .nav-tab,
111
- body.post-type-modula-gallery .nav-tab-wrapper .nav-tab {
112
- margin-left : 0;
113
- border-right : 0;
114
- }
115
-
116
- body.modula-gallery_page_modula-addons .nav-tab-wrapper > .nav-tab:first-child,
117
- body.modula-gallery_page_modula-lite-vs-pro .nav-tab-wrapper > .nav-tab:first-child,
118
- body.modula-gallery_page_modula .nav-tab-wrapper > .nav-tab:first-child,
119
- body.post-type-modula-gallery .nav-tab-wrapper > .nav-tab:first-child {
120
- border-top-left-radius : 4px;
121
- }
122
-
123
- body.modula-gallery_page_modula-addons .nav-tab-wrapper > .nav-tab.last_tab,
124
- body.modula-gallery_page_modula-lite-vs-pro .nav-tab-wrapper > .nav-tab.last_tab,
125
- body.modula-gallery_page_modula .nav-tab-wrapper > .nav-tab.last_tab,
126
- body.post-type-modula-gallery .nav-tab-wrapper > .nav-tab.last_tab {
127
- border-top-right-radius : 4px;
128
- border-right : 1px solid #ccc;
129
- }
130
-
131
- body.post-type-modula-gallery #posts-filter,
132
- body.post-type-modula-gallery #wpbody-content .wrap > ul.subsubsub {
133
- padding : 0 20px;
134
- }
135
-
136
-
137
- body.modula-gallery_page_modula-addons .modula-page-header,
138
- body.modula-gallery_page_modula-lite-vs-pro .modula-page-header,
139
- body.modula-gallery_page_modula .modula-page-header,
140
- body.post-type-modula-gallery .modula-page-header {
141
- display : flex;
142
- justify-content : space-between;
143
- background : #fff;
144
- width : 100%;
145
- }
146
-
147
- body.post-type-modula-gallery .modula-page-header {
148
- border-top : 1px solid #ccc;
149
- }
150
-
151
- body.modula-gallery_page_modula .modula-columns {
152
- padding : 15px;
153
- }
154
-
155
- .modula-page-header .modula-logo {
156
- max-height : 35px;
157
- }
158
-
159
- /* Added by Cristi */
160
- body.modula-gallery_page_modula-addons .modula-header-links {
161
- margin-right:10px;
162
- }
163
-
164
- .modula-header-links .dashicons { font-size: 16px; }
165
-
166
- .modula-status-bar {
167
- display:flex;
168
- align-items: center;
169
- align-content: center;
170
- font-weight: bold;
171
  }
1
+ body.modula-gallery_page_modula-addons #wpcontent,
2
+ body.modula-gallery_page_modula #wpcontent,
3
+ body.post-type-modula-gallery:not(.post-new-php):not(.post-php) #wpcontent,
4
+ body.modula-gallery_page_modula-lite-vs-pro #wpcontent {
5
+ padding-left : 0;
6
+ }
7
+
8
+ body.modula-gallery_page_modula-addons #wpcontent .wrap,
9
+ body.modula-gallery_page_modula #wpcontent .wrap,
10
+ body.post-type-modula-gallery:not(.post-new-php):not(.post-php) #wpcontent .wrap,
11
+ body.modula-gallery_page_modula-lite-vs-pro #wpcontent .wrap {
12
+ margin : 0;
13
+ }
14
+
15
+ body.modula-gallery_page_modula-lite-vs-pro #wpcontent .wrap,
16
+ body.modula-gallery_page_modula-import-export #wpcontent .wrap {
17
+ padding : 25px 40px 0 20px;
18
+ }
19
+
20
+
21
+ body.modula-gallery_page_modula-addons .modula-addons-container,
22
+ body.modula-gallery_page_modula-addons .modula-free-addons-container,
23
+ body.modula-gallery_page_modula-addons .nav-tab-wrapper,
24
+ body.modula-gallery_page_modula-lite-vs-pro .modula-addons-container,
25
+ body.modula-gallery_page_modula-lite-vs-pro .modula-free-addons-container,
26
+ body.modula-gallery_page_modula-lite-vs-pro .nav-tab-wrapper,
27
+ body.modula-gallery_page_modula .modula-addons-container,
28
+ body.modula-gallery_page_modula .modula-free-addons-container,
29
+ body.modula-gallery_page_modula .nav-tab-wrapper,
30
+ body.post-type-modula-gallery .modula-addons-container,
31
+ body.post-type-modula-gallery .modula-free-addons-container,
32
+ body.post-type-modula-gallery .nav-tab-wrapper {
33
+ padding : 20px;
34
+ }
35
+
36
+ /* Added by Cristi */
37
+ body.modula-gallery_page_modula-addons .nav-tab-wrapper .dashicons {
38
+ font-size: 16px;
39
+ vertical-align: middle;
40
+ line-height: 17px;
41
+ }
42
+
43
+ body.post-type-modula-gallery.post-new-php .modula-page-header,
44
+ body.post-type-modula-gallery.post-php .modula-page-header {
45
+ margin-left : -20px;
46
+ padding-right : 20px;
47
+ margin-right : -20px;
48
+ }
49
+
50
+ body.modula-gallery_page_modula-addons .modula-page-header,
51
+ body.modula-gallery_page_modula-lite-vs-pro .modula-page-header,
52
+ body.modula-gallery_page_modula .modula-page-header,
53
+ body.post-type-modula-gallery .modula-page-header {
54
+ padding : 0;
55
+ }
56
+
57
+ body.modula-gallery_page_modula-addons .modula-page-header .modula-header-logo,
58
+ body.modula-gallery_page_modula-addons .modula-page-header .modula-header-links,
59
+ body.modula-gallery_page_modula-lite-vs-pro .modula-page-header .modula-header-logo,
60
+ body.modula-gallery_page_modula-lite-vs-pro .modula-page-header .modula-header-links,
61
+ body.modula-gallery_page_modula .modula-page-header .modula-header-logo,
62
+ body.modula-gallery_page_modula .modula-page-header .modula-header-links,
63
+ body.post-type-modula-gallery .modula-page-header .modula-header-logo,
64
+ body.post-type-modula-gallery .modula-page-header .modula-header-links {
65
+ padding : 20px;
66
+ }
67
+
68
+ body.modula-gallery_page_modula-addons .modula-page-header .modula-header-logo,
69
+ body.modula-gallery_page_modula-lite-vs-pro .modula-page-header .modula-header-logo,
70
+ body.modula-gallery_page_modula .modula-page-header .modula-header-logo,
71
+ body.post-type-modula-gallery .modula-page-header .modula-header-logo {
72
+ padding-right : 20px;
73
+ }
74
+
75
+ body.modula-gallery_page_modula-addons .nav-tab-wrapper,
76
+ body.modula-gallery_page_modula-lite-vs-pro .nav-tab-wrapper,
77
+ body.modula-gallery_page_modulaaddons .nav-tab-wrapper,
78
+ body.post-type-modula-gallery .nav-tab-wrapper {
79
+ padding-bottom : 0;
80
+ }
81
+
82
+ body.modula-gallery_page_modula-addons .modula-page-header,
83
+ body.modula-gallery_page_modula-lite-vs-pro .modula-page-header,
84
+ body.modula-gallery_page_modula .modula-page-header,
85
+ body.post-type-modula-gallery .modula-page-header {
86
+ border-bottom : 1px solid #ccc;
87
+ }
88
+
89
+ body.modula-gallery_page_modula-addons .modula-page-header .modula-header-links a,
90
+ body.modula-gallery_page_modula-addons .modula-page-header .modula-header-links a span,
91
+ body.modula-gallery_page_modula-lite-vs-pro .modula-page-header .modula-header-links a,
92
+ body.modula-gallery_page_modula-lite-vs-pro .modula-page-header .modula-header-links a span,
93
+ body.modula-gallery_page_modula .modula-page-header .modula-header-links a,
94
+ body.modula-gallery_page_modula .modula-page-header .modula-header-links a span,
95
+ body.post-type-modula-gallery .modula-page-header .modula-header-links a,
96
+ body.post-type-modula-gallery .modula-page-header .modula-header-links a span {
97
+ vertical-align : middle;
98
+ }
99
+
100
+ body.modula-gallery_page_modula-addons .modula-page-header .modula-header-links a span,
101
+ body.modula-gallery_page_modula-lite-vs-pro .modula-page-header .modula-header-links a span,
102
+ body.modula-gallery_page_modula .modula-page-header .modula-header-links a span,
103
+ body.post-type-modula-gallery .modula-page-header .modula-header-links a span {
104
+ font-size:16px;
105
+ line-height:18px;
106
+ }
107
+
108
+ body.modula-gallery_page_modula-addons .nav-tab-wrapper .nav-tab,
109
+ body.modula-gallery_page_modula-lite-vs-pro .nav-tab-wrapper .nav-tab,
110
+ body.modula-gallery_page_modula .nav-tab-wrapper .nav-tab,
111
+ body.post-type-modula-gallery .nav-tab-wrapper .nav-tab {
112
+ margin-left : 0;
113
+ border-right : 0;
114
+ }
115
+
116
+ body.modula-gallery_page_modula-addons .nav-tab-wrapper > .nav-tab:first-child,
117
+ body.modula-gallery_page_modula-lite-vs-pro .nav-tab-wrapper > .nav-tab:first-child,
118
+ body.modula-gallery_page_modula .nav-tab-wrapper > .nav-tab:first-child,
119
+ body.post-type-modula-gallery .nav-tab-wrapper > .nav-tab:first-child {
120
+ border-top-left-radius : 4px;
121
+ }
122
+
123
+ body.modula-gallery_page_modula-addons .nav-tab-wrapper > .nav-tab.last_tab,
124
+ body.modula-gallery_page_modula-lite-vs-pro .nav-tab-wrapper > .nav-tab.last_tab,
125
+ body.modula-gallery_page_modula .nav-tab-wrapper > .nav-tab.last_tab,
126
+ body.post-type-modula-gallery .nav-tab-wrapper > .nav-tab.last_tab {
127
+ border-top-right-radius : 4px;
128
+ border-right : 1px solid #ccc;
129
+ }
130
+
131
+ body.post-type-modula-gallery #posts-filter,
132
+ body.post-type-modula-gallery #wpbody-content .wrap > ul.subsubsub {
133
+ padding : 0 20px;
134
+ }
135
+
136
+
137
+ body.modula-gallery_page_modula-addons .modula-page-header,
138
+ body.modula-gallery_page_modula-lite-vs-pro .modula-page-header,
139
+ body.modula-gallery_page_modula .modula-page-header,
140
+ body.post-type-modula-gallery .modula-page-header {
141
+ display : flex;
142
+ justify-content : space-between;
143
+ background : #fff;
144
+ width : 100%;
145
+ }
146
+
147
+ body.post-type-modula-gallery .modula-page-header {
148
+ border-top : 1px solid #ccc;
149
+ }
150
+
151
+ body.modula-gallery_page_modula .modula-columns {
152
+ padding : 15px;
153
+ }
154
+
155
+ .modula-page-header .modula-logo {
156
+ max-height : 35px;
157
+ }
158
+
159
+ /* Added by Cristi */
160
+ body.modula-gallery_page_modula-addons .modula-header-links {
161
+ margin-right:10px;
162
+ }
163
+
164
+ .modula-header-links .dashicons { font-size: 16px; }
165
+
166
+ .modula-status-bar {
167
+ display:flex;
168
+ align-items: center;
169
+ align-content: center;
170
+ font-weight: bold;
171
  }
assets/css/admin/modula-importer.css CHANGED
@@ -1,46 +1,46 @@
1
- .modula .modula-importer-row.hide,
2
- .modula .select-all-wrapper.hide,
3
- .modula label[data-id="delete-old-entries"].hide,
4
- .modula input[type="submit"].hide,
5
- .modula .select-all-checkbox.hide,
6
- .modula .select-all-checkbox-wrapper.hide,
7
- .modula-importer-upsell-wrapper.hide{
8
- display: none;
9
- }
10
-
11
- .imported-check {
12
- display:inline-block;
13
- margin-left:10px;
14
- }
15
-
16
-
17
- .imported-check:before {
18
- font-size: 20px;
19
- color: #00b894;
20
- }
21
-
22
- .modula-importer-checkbox-wrapper {
23
- margin-bottom:10px;
24
- }
25
-
26
- .modula-importer-gallery-status {
27
- color:blue;
28
- }
29
-
30
- .modula-importer-upsell-wrapper {
31
- background:#fff;
32
- border:1px solid #dddddd;
33
- padding:15px;
34
- margin-bottom:25px;
35
- }
36
-
37
- .modula-importer-upsell-wrapper .modula-importer-upsell-buttons {
38
- margin-top:25px;
39
- }
40
- .modula-importer-upsell-wrapper .modula-importer-upsell-buttons a {
41
- margin-right:15px;
42
- }
43
-
44
- .modula-importer-checkbox-wrapper .modula-tooltip span {
45
- color:red !important;
46
  }
1
+ .modula .modula-importer-row.hide,
2
+ .modula .select-all-wrapper.hide,
3
+ .modula label[data-id="delete-old-entries"].hide,
4
+ .modula input[type="submit"].hide,
5
+ .modula .select-all-checkbox.hide,
6
+ .modula .select-all-checkbox-wrapper.hide,
7
+ .modula-importer-upsell-wrapper.hide{
8
+ display: none;
9
+ }
10
+
11
+ .imported-check {
12
+ display:inline-block;
13
+ margin-left:10px;
14
+ }
15
+
16
+
17
+ .imported-check:before {
18
+ font-size: 20px;
19
+ color: #00b894;
20
+ }
21
+
22
+ .modula-importer-checkbox-wrapper {
23
+ margin-bottom:10px;
24
+ }
25
+
26
+ .modula-importer-gallery-status {
27
+ color:blue;
28
+ }
29
+
30
+ .modula-importer-upsell-wrapper {
31
+ background:#fff;
32
+ border:1px solid #dddddd;
33
+ padding:15px;
34
+ margin-bottom:25px;
35
+ }
36
+
37
+ .modula-importer-upsell-wrapper .modula-importer-upsell-buttons {
38
+ margin-top:25px;
39
+ }
40
+ .modula-importer-upsell-wrapper .modula-importer-upsell-buttons a {
41
+ margin-right:15px;
42
+ }
43
+
44
+ .modula-importer-checkbox-wrapper .modula-tooltip span {
45
+ color:red !important;
46
  }
assets/css/admin/modula-notices.css CHANGED
@@ -1,65 +1,65 @@
1
- .modula-feedback-notice{
2
- padding: 22px;
3
- border: 2px solid #2ebf91;
4
- margin-top: 20px;
5
- position: relative;
6
- }
7
- .modula-feedback-notice .notice-dismiss{
8
- text-decoration: none;
9
- }
10
- .notice p.modula-feedback-title {
11
- font-size: 26px;
12
- font-weight: bold;
13
- display: flex;
14
- align-items: center;
15
- margin-top: 0;
16
- }
17
- .modula-feedback-title svg {
18
- width: 35px;
19
- margin-right: 10px;
20
- }
21
- .modula-feedback-title svg path {
22
- fill: #2ebf91;
23
- }
24
-
25
-
26
- .modula-cutsom-notice {
27
- overflow: hidden;
28
- }
29
-
30
- .modula-cutsom-notice > svg {
31
- display: block;
32
- position: absolute;
33
- left: 0;
34
- top: 0;
35
- width: 200px;
36
- height: auto;
37
- color: #2ebf91;
38
- transform: translate(-30%, -30%);
39
- }
40
-
41
- .modula-cutsom-notice > svg path {
42
- fill: #2ebf91;
43
- }
44
- .modula-cutsom-notice p,
45
- .modula-cutsom-notice a:not( .notice-dismiss ) {
46
- position: relative;
47
- z-index: 2;
48
- }
49
-
50
- .modula-cutsom-notice p {
51
- text-align: center;
52
- }
53
- .modula-cutsom-notice .modula-feedback-title {
54
- justify-content: center;
55
- }
56
- .modula-cutsom-notice p:not( .modula-feedback-title ){
57
- max-width: 1100px;
58
- margin: 20px auto;
59
- }
60
- .modula-cutsom-notice a:not( .notice-dismiss ) {
61
- display: block;
62
- width: fit-content;
63
- margin-left: auto;
64
- margin-right: auto;
65
- }
1
+ .modula-feedback-notice{
2
+ padding: 22px;
3
+ border: 2px solid #2ebf91;
4
+ margin-top: 20px;
5
+ position: relative;
6
+ }
7
+ .modula-feedback-notice .notice-dismiss{
8
+ text-decoration: none;
9
+ }
10
+ .notice p.modula-feedback-title {
11
+ font-size: 26px;
12
+ font-weight: bold;
13
+ display: flex;
14
+ align-items: center;
15
+ margin-top: 0;
16
+ }
17
+ .modula-feedback-title svg {
18
+ width: 35px;
19
+ margin-right: 10px;
20
+ }
21
+ .modula-feedback-title svg path {
22
+ fill: #2ebf91;
23
+ }
24
+
25
+
26
+ .modula-cutsom-notice {
27
+ overflow: hidden;
28
+ }
29
+
30
+ .modula-cutsom-notice > svg {
31
+ display: block;
32
+ position: absolute;
33
+ left: 0;
34
+ top: 0;
35
+ width: 200px;
36
+ height: auto;
37
+ color: #2ebf91;
38
+ transform: translate(-30%, -30%);
39
+ }
40
+
41
+ .modula-cutsom-notice > svg path {
42
+ fill: #2ebf91;
43
+ }
44
+ .modula-cutsom-notice p,
45
+ .modula-cutsom-notice a:not( .notice-dismiss ) {
46
+ position: relative;
47
+ z-index: 2;
48
+ }
49
+
50
+ .modula-cutsom-notice p {
51
+ text-align: center;
52
+ }
53
+ .modula-cutsom-notice .modula-feedback-title {
54
+ justify-content: center;
55
+ }
56
+ .modula-cutsom-notice p:not( .modula-feedback-title ){
57
+ max-width: 1100px;
58
+ margin: 20px auto;
59
+ }
60
+ .modula-cutsom-notice a:not( .notice-dismiss ) {
61
+ display: block;
62
+ width: fit-content;
63
+ margin-left: auto;
64
+ margin-right: auto;
65
+ }
assets/css/admin/selectize.default.css CHANGED
@@ -1,408 +1,408 @@
1
- /**
2
- * selectize.default.css (v0.12.6) - Default Theme
3
- * Copyright (c) 2013–2015 Brian Reavis & contributors
4
- *
5
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
6
- * file except in compliance with the License. You may obtain a copy of the License at:
7
- * http://www.apache.org/licenses/LICENSE-2.0
8
- *
9
- * Unless required by applicable law or agreed to in writing, software distributed under
10
- * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11
- * ANY KIND, either express or implied. See the License for the specific language
12
- * governing permissions and limitations under the License.
13
- *
14
- * @author Brian Reavis <brian@thirdroute.com>
15
- */
16
- .selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
17
- visibility: visible !important;
18
- background: #f2f2f2 !important;
19
- background: rgba(0, 0, 0, 0.06) !important;
20
- border: 0 none !important;
21
- -webkit-box-shadow: inset 0 0 12px 4px #fff;
22
- box-shadow: inset 0 0 12px 4px #fff;
23
- }
24
- .selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
25
- content: '!';
26
- visibility: hidden;
27
- }
28
- .selectize-control.plugin-drag_drop .ui-sortable-helper {
29
- -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
30
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
31
- }
32
- .selectize-dropdown-header {
33
- position: relative;
34
- padding: 5px 8px;
35
- border-bottom: 1px solid #d0d0d0;
36
- background: #f8f8f8;
37
- -webkit-border-radius: 3px 3px 0 0;
38
- -moz-border-radius: 3px 3px 0 0;
39
- border-radius: 3px 3px 0 0;
40
- }
41
- .selectize-dropdown-header-close {
42
- position: absolute;
43
- right: 8px;
44
- top: 50%;
45
- color: #303030;
46
- opacity: 0.4;
47
- margin-top: -12px;
48
- line-height: 20px;
49
- font-size: 20px !important;
50
- }
51
- .selectize-dropdown-header-close:hover {
52
- color: #000000;
53
- }
54
- .selectize-dropdown.plugin-optgroup_columns .optgroup {
55
- border-right: 1px solid #f2f2f2;
56
- border-top: 0 none;
57
- float: left;
58
- -webkit-box-sizing: border-box;
59
- -moz-box-sizing: border-box;
60
- box-sizing: border-box;
61
- }
62
- .selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
63
- border-right: 0 none;
64
- }
65
- .selectize-dropdown.plugin-optgroup_columns .optgroup:before {
66
- display: none;
67
- }
68
- .selectize-dropdown.plugin-optgroup_columns .optgroup-header {
69
- border-top: 0 none;
70
- }
71
- .selectize-control.plugin-remove_button [data-value] {
72
- position: relative;
73
- padding-right: 24px !important;
74
- }
75
- .selectize-control.plugin-remove_button [data-value] .remove {
76
- z-index: 1;
77
- /* fixes ie bug (see #392) */
78
- position: absolute;
79
- top: 0;
80
- right: 0;
81
- bottom: 0;
82
- width: 17px;
83
- text-align: center;
84
- font-weight: bold;
85
- font-size: 12px;
86
- color: inherit;
87
- text-decoration: none;
88
- vertical-align: middle;
89
- display: inline-block;
90
- padding: 2px 0 0 0;
91
- border-left: 1px solid #0073bb;
92
- -webkit-border-radius: 0 2px 2px 0;
93
- -moz-border-radius: 0 2px 2px 0;
94
- border-radius: 0 2px 2px 0;
95
- -webkit-box-sizing: border-box;
96
- -moz-box-sizing: border-box;
97
- box-sizing: border-box;
98
- }
99
- .selectize-control.plugin-remove_button [data-value] .remove:hover {
100
- background: rgba(0, 0, 0, 0.05);
101
- }
102
- .selectize-control.plugin-remove_button [data-value].active .remove {
103
- border-left-color: #00578d;
104
- }
105
- .selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
106
- background: none;
107
- }
108
- .selectize-control.plugin-remove_button .disabled [data-value] .remove {
109
- border-left-color: #aaaaaa;
110
- }
111
- .selectize-control.plugin-remove_button .remove-single {
112
- position: absolute;
113
- right: 0;
114
- top: 0;
115
- font-size: 23px;
116
- }
117
- .selectize-control {
118
- position: relative;
119
- }
120
- .selectize-dropdown,
121
- .selectize-input,
122
- .selectize-input input {
123
- color: #303030;
124
- font-family: inherit;
125
- font-size: 13px;
126
- line-height: 18px;
127
- -webkit-font-smoothing: inherit;
128
- }
129
- .selectize-input,
130
- .selectize-control.single .selectize-input.input-active {
131
- background: #fff;
132
- cursor: text;
133
- display: inline-block;
134
- }
135
- .selectize-input {
136
- border: 1px solid #d0d0d0;
137
- padding: 8px 8px;
138
- display: inline-block;
139
- width: 100%;
140
- overflow: hidden;
141
- position: relative;
142
- z-index: 1;
143
- -webkit-box-sizing: border-box;
144
- -moz-box-sizing: border-box;
145
- box-sizing: border-box;
146
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
147
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
148
- -webkit-border-radius: 3px;
149
- -moz-border-radius: 3px;
150
- border-radius: 3px;
151
- }
152
- .selectize-control.multi .selectize-input.has-items {
153
- padding: 5px 8px 2px;
154
- }
155
- .selectize-input.full {
156
- background-color: #fff;
157
- }
158
- .selectize-input.disabled,
159
- .selectize-input.disabled * {
160
- cursor: default !important;
161
- }
162
- .selectize-input.focus {
163
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
164
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
165
- }
166
- .selectize-input.dropdown-active {
167
- -webkit-border-radius: 3px 3px 0 0;
168
- -moz-border-radius: 3px 3px 0 0;
169
- border-radius: 3px 3px 0 0;
170
- }
171
- .selectize-input > * {
172
- vertical-align: baseline;
173
- display: -moz-inline-stack;
174
- display: inline-block;
175
- zoom: 1;
176
- *display: inline;
177
- }
178
- .selectize-control.multi .selectize-input > div {
179
- cursor: pointer;
180
- margin: 0 3px 3px 0;
181
- padding: 2px 6px;
182
- background: #1da7ee;
183
- color: #fff;
184
- border: 1px solid #0073bb;
185
- }
186
- .selectize-control.multi .selectize-input > div.active {
187
- background: #92c836;
188
- color: #fff;
189
- border: 1px solid #00578d;
190
- }
191
- .selectize-control.multi .selectize-input.disabled > div,
192
- .selectize-control.multi .selectize-input.disabled > div.active {
193
- color: #ffffff;
194
- background: #d2d2d2;
195
- border: 1px solid #aaaaaa;
196
- }
197
- .selectize-input > input {
198
- display: inline-block !important;
199
- padding: 0 !important;
200
- min-height: 0 !important;
201
- max-height: none !important;
202
- max-width: 100% !important;
203
- margin: 0 1px !important;
204
- text-indent: 0 !important;
205
- border: 0 none !important;
206
- background: none !important;
207
- line-height: inherit !important;
208
- -webkit-user-select: auto !important;
209
- -webkit-box-shadow: none !important;
210
- box-shadow: none !important;
211
- }
212
- .selectize-input > input::-ms-clear {
213
- display: none;
214
- }
215
- .selectize-input > input:focus {
216
- outline: none !important;
217
- }
218
- .selectize-input::after {
219
- content: ' ';
220
- display: block;
221
- clear: left;
222
- }
223
- .selectize-input.dropdown-active::before {
224
- content: ' ';
225
- display: block;
226
- position: absolute;
227
- background: #f0f0f0;
228
- height: 1px;
229
- bottom: 0;
230
- left: 0;
231
- right: 0;
232
- }
233
- .selectize-dropdown {
234
- position: absolute;
235
- z-index: 10;
236
- border: 1px solid #d0d0d0;
237
- background: #fff;
238
- margin: -1px 0 0 0;
239
- border-top: 0 none;
240
- -webkit-box-sizing: border-box;
241
- -moz-box-sizing: border-box;
242
- box-sizing: border-box;
243
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
244
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
245
- -webkit-border-radius: 0 0 3px 3px;
246
- -moz-border-radius: 0 0 3px 3px;
247
- border-radius: 0 0 3px 3px;
248
- }
249
- .selectize-dropdown [data-selectable] {
250
- cursor: pointer;
251
- overflow: hidden;
252
- }
253
- .selectize-dropdown [data-selectable] .highlight {
254
- background: rgba(125, 168, 208, 0.2);
255
- -webkit-border-radius: 1px;
256
- -moz-border-radius: 1px;
257
- border-radius: 1px;
258
- }
259
- .selectize-dropdown .option,
260
- .selectize-dropdown .optgroup-header {
261
- padding: 5px 8px;
262
- }
263
- .selectize-dropdown .option,
264
- .selectize-dropdown [data-disabled],
265
- .selectize-dropdown [data-disabled] [data-selectable].option {
266
- cursor: inherit;
267
- opacity: 0.5;
268
- }
269
- .selectize-dropdown [data-selectable].option {
270
- opacity: 1;
271
- }
272
- .selectize-dropdown .optgroup:first-child .optgroup-header {
273
- border-top: 0 none;
274
- }
275
- .selectize-dropdown .optgroup-header {
276
- color: #303030;
277
- background: #fff;
278
- cursor: default;
279
- }
280
- .selectize-dropdown .active {
281
- background-color: #f5fafd;
282
- color: #495c68;
283
- }
284
- .selectize-dropdown .active.create {
285
- color: #495c68;
286
- }
287
- .selectize-dropdown .create {
288
- color: rgba(48, 48, 48, 0.5);
289
- }
290
- .selectize-dropdown-content {
291
- overflow-y: auto;
292
- overflow-x: hidden;
293
- max-height: 200px;
294
- -webkit-overflow-scrolling: touch;
295
- }
296
- .selectize-control.single .selectize-input,
297
- .selectize-control.single .selectize-input input {
298
- cursor: pointer;
299
- }
300
- .selectize-control.single .selectize-input.input-active,
301
- .selectize-control.single .selectize-input.input-active input {
302
- cursor: text;
303
- }
304
- .selectize-control.single .selectize-input:after {
305
- content: ' ';
306
- display: block;
307
- position: absolute;
308
- top: 50%;
309
- right: 15px;
310
- margin-top: -3px;
311
- width: 0;
312
- height: 0;
313
- border-style: solid;
314
- border-width: 5px 5px 0 5px;
315
- border-color: #808080 transparent transparent transparent;
316
- }
317
- /* Cutomization for select */
318
- .elementor-control-modula_gallery_select .selectize-control.single .selectize-input:after {
319
- display:none;
320
- }
321
-
322
- .selectize-control.single .selectize-input.dropdown-active:after {
323
- margin-top: -4px;
324
- border-width: 0 5px 5px 5px;
325
- border-color: transparent transparent #808080 transparent;
326
- }
327
- .selectize-control.rtl.single .selectize-input:after {
328
- left: 15px;
329
- right: auto;
330
- }
331
- .selectize-control.rtl .selectize-input > input {
332
- margin: 0 4px 0 -2px !important;
333
- }
334
- .selectize-control .selectize-input.disabled {
335
- opacity: 0.5;
336
- background-color: #fafafa;
337
- }
338
- .selectize-control.multi .selectize-input.has-items {
339
- padding-left: 5px;
340
- padding-right: 5px;
341
- }
342
- .selectize-control.multi .selectize-input.disabled [data-value] {
343
- color: #999;
344
- text-shadow: none;
345
- background: none;
346
- -webkit-box-shadow: none;
347
- box-shadow: none;
348
- }
349
- .selectize-control.multi .selectize-input.disabled [data-value],
350
- .selectize-control.multi .selectize-input.disabled [data-value] .remove {
351
- border-color: #e6e6e6;
352
- }
353
- .selectize-control.multi .selectize-input.disabled [data-value] .remove {
354
- background: none;
355
- }
356
- .selectize-control.multi .selectize-input [data-value] {
357
- text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);
358
- -webkit-border-radius: 3px;
359
- -moz-border-radius: 3px;
360
- border-radius: 3px;
361
- background-color: #1b9dec;
362
- background-image: -moz-linear-gradient(top, #1da7ee, #178ee9);
363
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#1da7ee), to(#178ee9));
364
- background-image: -webkit-linear-gradient(top, #1da7ee, #178ee9);
365
- background-image: -o-linear-gradient(top, #1da7ee, #178ee9);
366
- background-image: linear-gradient(to bottom, #1da7ee, #178ee9);
367
- background-repeat: repeat-x;
368
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1da7ee', endColorstr='#ff178ee9', GradientType=0);
369
- -webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.2),inset 0 1px rgba(255,255,255,0.03);
370
- box-shadow: 0 1px 0 rgba(0,0,0,0.2),inset 0 1px rgba(255,255,255,0.03);
371
- }
372
- .selectize-control.multi .selectize-input [data-value].active {
373
- background-color: #0085d4;
374
- background-image: -moz-linear-gradient(top, #008fd8, #0075cf);
375
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#008fd8), to(#0075cf));
376
- background-image: -webkit-linear-gradient(top, #008fd8, #0075cf);
377
- background-image: -o-linear-gradient(top, #008fd8, #0075cf);
378
- background-image: linear-gradient(to bottom, #008fd8, #0075cf);
379
- background-repeat: repeat-x;
380
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff008fd8', endColorstr='#ff0075cf', GradientType=0);
381
- }
382
- .selectize-control.single .selectize-input {
383
- -webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.8);
384
- box-shadow: 0 1px 0 rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.8);
385
- background-color: #f9f9f9;
386
- background-image: -moz-linear-gradient(top, #fefefe, #f2f2f2);
387
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fefefe), to(#f2f2f2));
388
- background-image: -webkit-linear-gradient(top, #fefefe, #f2f2f2);
389
- background-image: -o-linear-gradient(top, #fefefe, #f2f2f2);
390
- background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
391
- background-repeat: repeat-x;
392
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffefefe', endColorstr='#fff2f2f2', GradientType=0);
393
- }
394
- .selectize-control.single .selectize-input,
395
- .selectize-dropdown.single {
396
- border-color: #b8b8b8;
397
- }
398
- .selectize-dropdown .optgroup-header {
399
- padding-top: 7px;
400
- font-weight: bold;
401
- font-size: 0.85em;
402
- }
403
- .selectize-dropdown .optgroup {
404
- border-top: 1px solid #f0f0f0;
405
- }
406
- .selectize-dropdown .optgroup:first-child {
407
- border-top: 0 none;
408
- }
1
+ /**
2
+ * selectize.default.css (v0.12.6) - Default Theme
3
+ * Copyright (c) 2013–2015 Brian Reavis & contributors
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
6
+ * file except in compliance with the License. You may obtain a copy of the License at:
7
+ * http://www.apache.org/licenses/LICENSE-2.0
8
+ *
9
+ * Unless required by applicable law or agreed to in writing, software distributed under
10
+ * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11
+ * ANY KIND, either express or implied. See the License for the specific language
12
+ * governing permissions and limitations under the License.
13
+ *
14
+ * @author Brian Reavis <brian@thirdroute.com>
15
+ */
16
+ .selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
17
+ visibility: visible !important;
18
+ background: #f2f2f2 !important;
19
+ background: rgba(0, 0, 0, 0.06) !important;
20
+ border: 0 none !important;
21
+ -webkit-box-shadow: inset 0 0 12px 4px #fff;
22
+ box-shadow: inset 0 0 12px 4px #fff;
23
+ }
24
+ .selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
25
+ content: '!';
26
+ visibility: hidden;
27
+ }
28
+ .selectize-control.plugin-drag_drop .ui-sortable-helper {
29
+ -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
30
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
31
+ }
32
+ .selectize-dropdown-header {
33
+ position: relative;
34
+ padding: 5px 8px;
35
+ border-bottom: 1px solid #d0d0d0;
36
+ background: #f8f8f8;
37
+ -webkit-border-radius: 3px 3px 0 0;
38
+ -moz-border-radius: 3px 3px 0 0;
39
+ border-radius: 3px 3px 0 0;
40
+ }
41
+ .selectize-dropdown-header-close {
42
+ position: absolute;
43
+ right: 8px;
44
+ top: 50%;
45
+ color: #303030;
46
+ opacity: 0.4;
47
+ margin-top: -12px;
48
+ line-height: 20px;
49
+ font-size: 20px !important;
50
+ }
51
+ .selectize-dropdown-header-close:hover {
52
+ color: #000000;
53
+ }
54
+ .selectize-dropdown.plugin-optgroup_columns .optgroup {
55
+ border-right: 1px solid #f2f2f2;
56
+ border-top: 0 none;
57
+ float: left;
58
+ -webkit-box-sizing: border-box;
59
+ -moz-box-sizing: border-box;
60
+ box-sizing: border-box;
61
+ }
62
+ .selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
63
+ border-right: 0 none;
64
+ }
65
+ .selectize-dropdown.plugin-optgroup_columns .optgroup:before {
66
+ display: none;
67
+ }
68
+ .selectize-dropdown.plugin-optgroup_columns .optgroup-header {
69
+ border-top: 0 none;
70
+ }
71
+ .selectize-control.plugin-remove_button [data-value] {
72
+ position: relative;
73
+ padding-right: 24px !important;
74
+ }
75
+ .selectize-control.plugin-remove_button [data-value] .remove {
76
+ z-index: 1;
77
+ /* fixes ie bug (see #392) */
78
+ position: absolute;
79
+ top: 0;
80
+ right: 0;
81
+ bottom: 0;
82
+ width: 17px;
83
+ text-align: center;
84
+ font-weight: bold;
85
+ font-size: 12px;
86
+ color: inherit;
87
+ text-decoration: none;
88
+ vertical-align: middle;
89
+ display: inline-block;
90
+ padding: 2px 0 0 0;
91
+ border-left: 1px solid #0073bb;
92
+ -webkit-border-radius: 0 2px 2px 0;
93
+ -moz-border-radius: 0 2px 2px 0;
94
+ border-radius: 0 2px 2px 0;
95
+ -webkit-box-sizing: border-box;
96
+ -moz-box-sizing: border-box;
97
+ box-sizing: border-box;
98
+ }
99
+ .selectize-control.plugin-remove_button [data-value] .remove:hover {
100
+ background: rgba(0, 0, 0, 0.05);
101
+ }
102
+ .selectize-control.plugin-remove_button [data-value].active .remove {
103
+ border-left-color: #00578d;
104
+ }
105
+ .selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
106
+ background: none;
107
+ }
108
+ .selectize-control.plugin-remove_button .disabled [data-value] .remove {
109
+ border-left-color: #aaaaaa;
110
+ }
111
+ .selectize-control.plugin-remove_button .remove-single {
112
+ position: absolute;
113
+ right: 0;
114
+ top: 0;
115
+ font-size: 23px;
116
+ }
117
+ .selectize-control {
118
+ position: relative;
119
+ }
120
+ .selectize-dropdown,
121
+ .selectize-input,
122
+ .selectize-input input {
123
+ color: #303030;
124
+ font-family: inherit;
125
+ font-size: 13px;
126
+ line-height: 18px;
127
+ -webkit-font-smoothing: inherit;
128
+ }
129
+ .selectize-input,
130
+ .selectize-control.single .selectize-input.input-active {
131
+ background: #fff;
132
+ cursor: text;
133
+ display: inline-block;
134
+ }
135
+ .selectize-input {
136
+ border: 1px solid #d0d0d0;
137
+ padding: 8px 8px;
138
+ display: inline-block;
139
+ width: 100%;
140
+ overflow: hidden;
141
+ position: relative;
142
+ z-index: 1;
143
+ -webkit-box-sizing: border-box;
144
+ -moz-box-sizing: border-box;
145
+ box-sizing: border-box;
146
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
147
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
148
+ -webkit-border-radius: 3px;
149
+ -moz-border-radius: 3px;
150
+ border-radius: 3px;
151
+ }
152
+ .selectize-control.multi .selectize-input.has-items {
153
+ padding: 5px 8px 2px;
154
+ }
155
+ .selectize-input.full {
156
+ background-color: #fff;
157
+ }
158
+ .selectize-input.disabled,
159
+ .selectize-input.disabled * {
160
+ cursor: default !important;
161
+ }
162
+ .selectize-input.focus {
163
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
164
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
165
+ }
166
+ .selectize-input.dropdown-active {
167
+ -webkit-border-radius: 3px 3px 0 0;
168
+ -moz-border-radius: 3px 3px 0 0;
169
+ border-radius: 3px 3px 0 0;
170
+ }
171
+ .selectize-input > * {
172
+ vertical-align: baseline;
173
+ display: -moz-inline-stack;
174
+ display: inline-block;
175
+ zoom: 1;
176
+ *display: inline;
177
+ }
178
+ .selectize-control.multi .selectize-input > div {
179
+ cursor: pointer;
180
+ margin: 0 3px 3px 0;
181
+ padding: 2px 6px;
182
+ background: #1da7ee;
183
+ color: #fff;
184
+ border: 1px solid #0073bb;
185
+ }
186
+ .selectize-control.multi .selectize-input > div.active {
187
+ background: #92c836;
188
+ color: #fff;
189
+ border: 1px solid #00578d;
190
+ }
191
+ .selectize-control.multi .selectize-input.disabled > div,
192
+ .selectize-control.multi .selectize-input.disabled > div.active {
193
+ color: #ffffff;
194
+ background: #d2d2d2;
195
+ border: 1px solid #aaaaaa;
196
+ }
197
+ .selectize-input > input {
198
+ display: inline-block !important;
199
+ padding: 0 !important;
200
+ min-height: 0 !important;
201
+ max-height: none !important;
202
+ max-width: 100% !important;
203
+ margin: 0 1px !important;
204
+ text-indent: 0 !important;
205
+ border: 0 none !important;
206
+ background: none !important;
207
+ line-height: inherit !important;
208
+ -webkit-user-select: auto !important;
209
+ -webkit-box-shadow: none !important;
210
+ box-shadow: none !important;
211
+ }
212
+ .selectize-input > input::-ms-clear {
213
+ display: none;
214
+ }
215
+ .selectize-input > input:focus {
216
+ outline: none !important;
217
+ }
218
+ .selectize-input::after {
219
+ content: ' ';
220
+ display: block;
221
+ clear: left;
222
+ }
223
+ .selectize-input.dropdown-active::before {
224
+ content: ' ';
225
+ display: block;
226
+ position: absolute;
227
+ background: #f0f0f0;
228
+ height: 1px;
229
+ bottom: 0;
230
+ left: 0;
231
+ right: 0;
232
+ }
233
+ .selectize-dropdown {
234
+ position: absolute;
235
+ z-index: 10;
236
+ border: 1px solid #d0d0d0;
237
+ background: #fff;
238
+ margin: -1px 0 0 0;
239
+ border-top: 0 none;
240
+ -webkit-box-sizing: border-box;
241
+ -moz-box-sizing: border-box;
242
+ box-sizing: border-box;
243
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
244
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
245
+ -webkit-border-radius: 0 0 3px 3px;
246
+ -moz-border-radius: 0 0 3px 3px;
247
+ border-radius: 0 0 3px 3px;
248
+ }
249
+ .selectize-dropdown [data-selectable] {
250
+ cursor: pointer;
251
+ overflow: hidden;
252
+ }
253
+ .selectize-dropdown [data-selectable] .highlight {
254
+ background: rgba(125, 168, 208, 0.2);
255
+ -webkit-border-radius: 1px;
256
+ -moz-border-radius: 1px;
257
+ border-radius: 1px;
258
+ }
259
+ .selectize-dropdown .option,
260
+ .selectize-dropdown .optgroup-header {
261
+ padding: 5px 8px;
262
+ }
263
+ .selectize-dropdown .option,
264
+ .selectize-dropdown [data-disabled],
265
+ .selectize-dropdown [data-disabled] [data-selectable].option {
266
+ cursor: inherit;
267
+ opacity: 0.5;
268
+ }
269
+ .selectize-dropdown [data-selectable].option {
270
+ opacity: 1;
271
+ }
272
+ .selectize-dropdown .optgroup:first-child .optgroup-header {
273
+ border-top: 0 none;
274
+ }
275
+ .selectize-dropdown .optgroup-header {
276
+ color: #303030;
277
+ background: #fff;
278
+ cursor: default;
279
+ }
280
+ .selectize-dropdown .active {
281
+ background-color: #f5fafd;
282
+ color: #495c68;
283
+ }
284
+ .selectize-dropdown .active.create {
285
+ color: #495c68;
286
+ }
287
+ .selectize-dropdown .create {
288
+ color: rgba(48, 48, 48, 0.5);
289
+ }
290
+ .selectize-dropdown-content {
291
+ overflow-y: auto;
292
+ overflow-x: hidden;
293
+ max-height: 200px;
294
+ -webkit-overflow-scrolling: touch;
295
+ }
296
+ .selectize-control.single .selectize-input,
297
+ .selectize-control.single .selectize-input input {
298
+ cursor: pointer;
299
+ }
300
+ .selectize-control.single .selectize-input.input-active,
301
+ .selectize-control.single .selectize-input.input-active input {
302
+ cursor: text;
303
+ }
304
+ .selectize-control.single .selectize-input:after {
305
+ content: ' ';
306
+ display: block;
307
+ position: absolute;
308
+ top: 50%;
309
+ right: 15px;
310
+ margin-top: -3px;
311
+ width: 0;
312
+ height: 0;
313
+ border-style: solid;
314
+ border-width: 5px 5px 0 5px;
315
+ border-color: #808080 transparent transparent transparent;
316
+ }
317
+ /* Cutomization for select */
318
+ .elementor-control-modula_gallery_select .selectize-control.single .selectize-input:after {
319
+ display:none;
320
+ }
321
+
322
+ .selectize-control.single .selectize-input.dropdown-active:after {
323
+ margin-top: -4px;
324
+ border-width: 0 5px 5px 5px;
325
+ border-color: transparent transparent #808080 transparent;
326
+ }
327
+ .selectize-control.rtl.single .selectize-input:after {
328
+ left: 15px;
329
+ right: auto;
330
+ }
331
+ .selectize-control.rtl .selectize-input > input {
332
+ margin: 0 4px 0 -2px !important;
333
+ }
334
+ .selectize-control .selectize-input.disabled {
335
+ opacity: 0.5;
336
+ background-color: #fafafa;
337
+ }
338
+ .selectize-control.multi .selectize-input.has-items {
339
+ padding-left: 5px;
340
+ padding-right: 5px;
341
+ }
342
+ .selectize-control.multi .selectize-input.disabled [data-value] {
343
+ color: #999;
344
+ text-shadow: none;
345
+ background: none;
346
+ -webkit-box-shadow: none;
347
+ box-shadow: none;
348
+ }
349
+ .selectize-control.multi .selectize-input.disabled [data-value],
350
+ .selectize-control.multi .selectize-input.disabled [data-value] .remove {
351
+ border-color: #e6e6e6;
352
+ }
353
+ .selectize-control.multi .selectize-input.disabled [data-value] .remove {
354
+ background: none;
355
+ }
356
+ .selectize-control.multi .selectize-input [data-value] {
357
+ text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);
358
+ -webkit-border-radius: 3px;
359
+ -moz-border-radius: 3px;
360
+ border-radius: 3px;
361
+ background-color: #1b9dec;
362
+ background-image: -moz-linear-gradient(top, #1da7ee, #178ee9);
363
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#1da7ee), to(#178ee9));
364
+ background-image: -webkit-linear-gradient(top, #1da7ee, #178ee9);
365
+ background-image: -o-linear-gradient(top, #1da7ee, #178ee9);
366
+ background-image: linear-gradient(to bottom, #1da7ee, #178ee9);
367
+ background-repeat: repeat-x;
368
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1da7ee', endColorstr='#ff178ee9', GradientType=0);
369
+ -webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.2),inset 0 1px rgba(255,255,255,0.03);
370
+ box-shadow: 0 1px 0 rgba(0,0,0,0.2),inset 0 1px rgba(255,255,255,0.03);
371
+ }
372
+ .selectize-control.multi .selectize-input [data-value].active {
373
+ background-color: #0085d4;
374
+ background-image: -moz-linear-gradient(top, #008fd8, #0075cf);
375
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#008fd8), to(#0075cf));
376
+ background-image: -webkit-linear-gradient(top, #008fd8, #0075cf);
377
+ background-image: -o-linear-gradient(top, #008fd8, #0075cf);
378
+ background-image: linear-gradient(to bottom, #008fd8, #0075cf);
379
+ background-repeat: repeat-x;
380
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff008fd8', endColorstr='#ff0075cf', GradientType=0);
381
+ }
382
+ .selectize-control.single .selectize-input {
383
+ -webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.8);
384
+ box-shadow: 0 1px 0 rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.8);
385
+ background-color: #f9f9f9;
386
+ background-image: -moz-linear-gradient(top, #fefefe, #f2f2f2);
387
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fefefe), to(#f2f2f2));
388
+ background-image: -webkit-linear-gradient(top, #fefefe, #f2f2f2);
389
+ background-image: -o-linear-gradient(top, #fefefe, #f2f2f2);
390
+ background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
391
+ background-repeat: repeat-x;
392
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffefefe', endColorstr='#fff2f2f2', GradientType=0);
393
+ }
394
+ .selectize-control.single .selectize-input,
395
+ .selectize-dropdown.single {
396
+ border-color: #b8b8b8;
397
+ }
398
+ .selectize-dropdown .optgroup-header {
399
+ padding-top: 7px;
400
+ font-weight: bold;
401
+ font-size: 0.85em;
402
+ }
403
+ .selectize-dropdown .optgroup {
404
+ border-top: 1px solid #f0f0f0;
405
+ }
406
+ .selectize-dropdown .optgroup:first-child {
407
+ border-top: 0 none;
408
+ }
assets/css/admin/uninstall.css CHANGED
@@ -1,118 +1,118 @@
1
- .modula-uninstall-form-active .modula-uninstall-form-bg {
2
- background: rgba(0, 0, 0, .5);
3
- position: fixed;
4
- top: 0;
5
- left: 0;
6
- width: 100%;
7
- height: 100%;
8
- }
9
-
10
- .modula-uninstall-form-wrapper {
11
- position: fixed;
12
- z-index: 999;
13
- display: none;
14
- width: 100%;
15
- height: 100%;
16
- top: 0;
17
- left: 0;
18
- right: 0;
19
- bottom: 0;
20
- margin: 0 auto;
21
- }
22
-
23
- .modula-uninstall-form-wrapper .uninstall {
24
- text-align: center;
25
- }
26
-
27
- .modula-uninstall-form-active .modula-uninstall-form-wrapper {
28
- display: block;
29
- z-index: 999;
30
- }
31
-
32
- .modula-uninstall-form {
33
- display: none;
34
- }
35
-
36
- .modula-uninstall-form-active .modula-uninstall-form {
37
- position: absolute;
38
- left: 0;
39
- right: 0;
40
- margin: 0 auto;
41
- top: 50%;
42
- transform: translateY(-50%);
43
- max-width: 600px;
44
- background: #fff;
45
- white-space: normal;
46
- }
47
-
48
- .modula-uninstall-form-head {
49
- background: #774cce;
50
- padding: 8px 18px;
51
- position: relative;
52
- }
53
-
54
- .modula-uninstall-form-head h3 {
55
- color: #fff;
56
- }
57
-
58
- .modula-uninstall-form-body {
59
- padding: 8px 18px;
60
- color: #444;
61
- }
62
-
63
- .deactivating-spinner {
64
- display: none;
65
- }
66
-
67
- .deactivating-spinner .spinner {
68
- float: none;
69
- margin: 4px 4px 0 18px;
70
- vertical-align: bottom;
71
- visibility: visible;
72
- }
73
-
74
- .toggle-spinner .deactivating-spinner {
75
- display: block !important;
76
- }
77
-
78
- .modula-uninstall-form-footer p {
79
- display: flex;
80
- align-items: center;
81
- justify-content: space-between;
82
- }
83
-
84
- .modula-uninstall-form.process-response .modula-uninstall-form-body {
85
- position: relative;
86
- }
87
-
88
- .modula-uninstall-form.process-response .modula-uninstall-form-body:after {
89
- content: "";
90
- display: block;
91
- position: absolute;
92
- top: 0;
93
- left: 0;
94
- width: 100%;
95
- height: 100%;
96
- background-color: rgba(255, 255, 255, .5);
97
- }
98
-
99
- .modula-uninstall-form-head .close-uninstall-form {
100
- position: absolute;
101
- right: 15px;
102
- color: #fff;
103
- font-family: Arial;
104
- font-size: 14px;
105
- display: inline-block;
106
- top: 50%;
107
- transform: translateY(-50%);
108
- cursor: pointer;
109
- }
110
-
111
- .modula-red-text {
112
- color:red;
113
- }
114
-
115
- a.modula-lite-vs-pro {
116
- color:orange;
117
- font-weight:bold;
118
  }
1
+ .modula-uninstall-form-active .modula-uninstall-form-bg {
2
+ background: rgba(0, 0, 0, .5);
3
+ position: fixed;
4
+ top: 0;
5
+ left: 0;
6
+ width: 100%;
7
+ height: 100%;
8
+ }
9
+
10
+ .modula-uninstall-form-wrapper {
11
+ position: fixed;
12
+ z-index: 999;
13
+ display: none;
14
+ width: 100%;
15
+ height: 100%;
16
+ top: 0;
17
+ left: 0;
18
+ right: 0;
19
+ bottom: 0;
20
+ margin: 0 auto;
21
+ }
22
+
23
+ .modula-uninstall-form-wrapper .uninstall {
24
+ text-align: center;
25
+ }
26
+
27
+ .modula-uninstall-form-active .modula-uninstall-form-wrapper {
28
+ display: block;
29
+ z-index: 999;
30
+ }
31
+
32
+ .modula-uninstall-form {
33
+ display: none;
34
+ }
35
+
36
+ .modula-uninstall-form-active .modula-uninstall-form {
37
+ position: absolute;
38
+ left: 0;
39
+ right: 0;
40
+ margin: 0 auto;
41
+ top: 50%;
42
+ transform: translateY(-50%);
43
+ max-width: 600px;
44
+ background: #fff;
45
+ white-space: normal;
46
+ }
47
+
48
+ .modula-uninstall-form-head {
49
+ background: #774cce;
50
+ padding: 8px 18px;
51
+ position: relative;
52
+ }
53
+
54
+ .modula-uninstall-form-head h3 {
55
+ color: #fff;
56
+ }
57
+
58
+ .modula-uninstall-form-body {
59
+ padding: 8px 18px;
60
+ color: #444;
61
+ }
62
+
63
+ .deactivating-spinner {
64
+ display: none;
65
+ }
66
+
67
+ .deactivating-spinner .spinner {
68
+ float: none;
69
+ margin: 4px 4px 0 18px;
70
+ vertical-align: bottom;
71
+ visibility: visible;
72
+ }
73
+
74
+ .toggle-spinner .deactivating-spinner {
75
+ display: block !important;
76
+ }
77
+
78
+ .modula-uninstall-form-footer p {
79
+ display: flex;
80
+ align-items: center;
81
+ justify-content: space-between;
82
+ }
83
+
84
+ .modula-uninstall-form.process-response .modula-uninstall-form-body {
85
+ position: relative;
86
+ }
87
+
88
+ .modula-uninstall-form.process-response .modula-uninstall-form-body:after {
89
+ content: "";
90
+ display: block;
91
+ position: absolute;
92
+ top: 0;
93
+ left: 0;
94
+ width: 100%;
95
+ height: 100%;
96
+ background-color: rgba(255, 255, 255, .5);
97
+ }
98
+
99
+ .modula-uninstall-form-head .close-uninstall-form {
100
+ position: absolute;
101
+ right: 15px;
102
+ color: #fff;
103
+ font-family: Arial;
104
+ font-size: 14px;
105
+ display: inline-block;
106
+ top: 50%;
107
+ transform: translateY(-50%);
108
+ cursor: pointer;
109
+ }
110
+
111
+ .modula-red-text {
112
+ color:red;
113
+ }
114
+
115
+ a.modula-lite-vs-pro {
116
+ color:orange;
117
+ font-weight:bold;
118
  }
assets/css/admin/welcome.css CHANGED
@@ -1,364 +1,364 @@
1
- /* ----------------------------------------------------------------------------
2
- * Welcome Page CSS
3
- * ------------------------------------------------------------------------- */
4
- .modula .wp-badge {
5
- background-color: transparent;
6
- background-image: url( ../../images/logo-dark.webp );
7
- }
8
-
9
- .modula img.modula-logo {
10
- width:auto;
11
- max-width:150px;
12
- display:inline-block;
13
- vertical-align:middle;
14
- }
15
-
16
- /* Lite vs PRO Section */
17
-
18
- body.modula-gallery_page_modula-lite-vs-pro #wpcontent .wrap {
19
- margin : 0 auto;
20
- max-width : 85%;
21
- }
22
-
23
- .modula.lite-vs-pro-section > .wpchill-plans-table.wpchill-highlight > .wpchill-pricing-package {
24
- background : #fefff0;
25
- box-shadow: 0 0 15px rgb(208 219 219);
26
- }
27
-
28
- .lite-vs-pro-section .wp-badge{
29
- display:inline-block;
30
- vertical-align:middle;
31
- position:relative;
32
- margin-right:2.5%;
33
- }
34
-
35
- .lite-vs-pro-section h3 {
36
- display:block;
37
- position:relative;
38
- font-size: 16px;
39
- margin: 0;
40
- }
41
- .lite-vs-pro-section p {
42
- font-size: 14px;
43
- margin: 0;
44
- }
45
-
46
- .wpchill-plans-table {
47
- display : flex;
48
- }
49
-
50
- .wpchill-plans-table.table-header {
51
- margin-top : 50px;
52
- }
53
-
54
- .wpchill-plans-table.table-footer .wpchill-pricing-package:last-child {
55
- border:0;
56
- }
57
-
58
- .wpchill-plans-table .wpchill-pricing-package {
59
- text-align : center;
60
- line-height : 1.5;
61
- padding : 10px 15px;
62
- display : flex;
63
- align-content : center;
64
- align-items : center;
65
- justify-content : center;
66
- background : #fff;
67
- border-top : 1px solid #ccc;
68
- }
69
-
70
- .wpchill-plans-table .wpchill-pricing-package:not(:first-child) {
71
- max-width : 300px;
72
- }
73
-
74
- .wpchill-plans-table.table-header .wpchill-pricing-package {
75
- border:0;
76
- }
77
-
78
- .wpchill-plans-table.table-header .wpchill-pricing-package:not(.wpchill-modula-lite):last-child:before,
79
- .wpchill-plans-table .wpchill-pricing-package.wpchill-title.wpchill-highlight::before{
80
- content : '';
81
- width : auto;
82
- display : inline-block;
83
- opacity : 1;
84
- position : absolute;
85
- top : -1px;
86
- background : #41495b;
87
- text-align : center;
88
- left : 0;
89
- right : 0;
90
- color : #fff;
91
- font-size : 15px;
92
- text-transform : uppercase;
93
- padding : 10px 5px;
94
- transform : translateY(-100%);
95
- }
96
-
97
- .lite-vs-pro-section .wpchill-plans-table.table-header {
98
- border-top: 0;
99
- }
100
-
101
- .wpchill-plans-table .wpchill-pricing-package.wpchill-title {
102
- font-weight : 400;
103
- color : #666;
104
- font-size : 1.25rem;
105
- height : auto;
106
- -ms-flex-direction : column;
107
- flex-direction : column;
108
- padding-top : 30px;
109
- padding-bottom : 30px;
110
- justify-content : space-between;
111
- position : relative;
112
- }
113
-
114
- .wpchill-plans-table .wpchill-pricing-package.wpchill-title.wpchill-modula-lite {
115
- justify-content: center;
116
- }
117
-
118
- .wpchill-plans-table .wpchill-pricing-package.wpchill-title p.description {
119
- font-style : italic;
120
- font-size : 13px;
121
- margin-bottom: 40px;
122
- }
123
-
124
- .wpchill-plans-table .wpchill-pricing-package.wpchill-title .wpchill-price p:last-child {
125
- font-size : 30px;
126
- margin: 0 0 40px 0;
127
- }
128
- .wpchill-plans-table .wpchill-pricing-package.wpchill-title .wpchill-price p.old-price {
129
- margin: 0;
130
- position: relative;
131
- }
132
-
133
- .wpchill-plans-table .wpchill-pricing-package.wpchill-title .wpchill-price p.old-price:after {
134
- content: "";
135
- height: 2px;
136
- width: 60px;
137
- background: red;
138
- display: block;
139
- position: absolute;
140
- left: 50%;
141
- top: 52%;
142
- transform: translate(-50%,-50%);
143
- }
144
-
145
- .wpchill-plans-table .wpchill-pricing-package.wpchill-title p.wpchill-name {
146
- margin : 0;
147
- font-size : 36px;
148
- }
149
-
150
- .wpchill-plans-table .wpchill-pricing-package.wpchill-title p.wpchill-price sup {
151
- top: 2px;
152
- position: relative;
153
- font-size: 15px;
154
- }
155
-
156
- .wpchill-plans-table .wpchill-pricing-package.wpchill-empty {
157
- background : transparent;
158
- border-color : transparent;
159
- }
160
-
161
- .wpchill-plans-table .wpchill-pricing-package.feature-name {
162
- justify-content : space-between;
163
- font-weight : 400;
164
- text-align : left;
165
- font-size : 13px;
166
- display : block;
167
- background : transparent;
168
- }
169
-
170
- .wpchill-plans-table .wpchill-pricing-package .dashicons-saved {
171
- color : green;
172
- }
173
-
174
- .wpchill-plans-table .wpchill-pricing-package .dashicons {
175
- width : 30px;
176
- height : 30px;
177
- font-size : 30px;
178
- }
179
-
180
- .wpchill-plans-table .wpchill-pricing-package .dashicons-no-alt {
181
- color : #ff3439;
182
- }
183
-
184
- .wpchill-plans-table .wpchill-pricing-package:last-child {
185
- background : #fefff0;
186
- }
187
-
188
- .wpchill-pricing-package .button .dashicons {
189
- font-size: 16px;
190
- vertical-align: middle;
191
- line-height: 26px;
192
- }
193
-
194
- /**
195
- Featured section
196
- */
197
-
198
- .featured-section.features .row {
199
- display: inline-block;
200
- width: 97%;
201
- padding: 15px;
202
- border-bottom: 1px solid rgba(0, 0, 0, .06);
203
- }
204
-
205
- .featured-section.features .row .dashicons-yes {
206
- color: #2cbe4e;
207
- }
208
-
209
- .featured-section.features .row .dashicons-no-alt {
210
- color: #FF3D2E;
211
- }
212
-
213
- .featured-section.features .row > div {
214
- display: inline-block;
215
- float: left;
216
- width: 15%;
217
- text-align: center;
218
- }
219
-
220
- .featured-section.features .row > .feature {
221
- width: 70%;
222
- text-align: left;
223
- }
224
-
225
- .featured-section .free-pro-table {
226
- border-spacing: 0;
227
- width: 100%;
228
- margin-top:40px;
229
- }
230
-
231
- .featured-section .free-pro-table th {
232
- padding-bottom: 20px;
233
- }
234
-
235
- .featured-section .free-pro-table td {
236
- border-top: 1px solid #ccc;
237
- padding: 10px 0;
238
- }
239
-
240
- .featured-section .free-pro-table thead tr th:nth-child(2) {
241
- color:green;
242
- }
243
-
244
- .featured-section .free-pro-table thead tr th:nth-child(3) {
245
- color:blue;
246
- }
247
-
248
- .featured-section .free-pro-table tbody tr:not(:last-child) td:nth-child(2) {
249
- background-color:#fefff0;
250
- }
251
-
252
- .featured-section .free-pro-table tbody tr:not(:last-child) td:nth-child(3){
253
- background-color:#fff;
254
- }
255
-
256
- .featured-section .free-pro-table h3 {
257
- margin: 0;
258
- }
259
-
260
- .featured-section .free-pro-table td p {
261
- margin: 0;
262
- }
263
-
264
- .featured-section .free-pro-table .lite-feature,
265
- .featured-section .free-pro-table .pro-feature{
266
- text-align: center;
267
- width: 20%;
268
- }
269
-
270
- .featured-section .free-pro-table .dashicons-yes {
271
- color: #00A878;
272
- }
273
-
274
- .featured-section .free-pro-table .dashicons {
275
- width:30px;
276
- height:30px;
277
- font-size:30px;
278
- }
279
-
280
- .featured-section .free-pro-table .dashicons-no-alt {
281
- color: #ff3439;
282
- }
283
-
284
- .featured-section .free-pro-table .dashicons-before:before,
285
- .featured-section .free-pro-table .dashicons-before:before {
286
- font-size: 35px;
287
- height: 35px;
288
- width: 35px;
289
- }
290
- .featured-section .button-hero .dashicons{
291
- font-size:16px;
292
- vertical-align:middle;
293
- line-height:26px;
294
- }
295
-
296
- .featured-section .ti-about-page-text-center {
297
- text-align: center;
298
- }
299
- .free-pro-table .text-right {
300
- text-align: right;
301
- }
302
-
303
- .modula-license-label {
304
- display: block;
305
- }
306
-
307
- .modula-license-label p.green strong {
308
- color:green;
309
- }
310
-
311
- .modula-license-label p.orange strong {
312
- color:orange;
313
- }
314
-
315
- .modula-license-label p.red strong {
316
- color:red;
317
- }
318
-
319
- /* Tabs tooltips */
320
- .modula-tooltip {
321
- position: relative;
322
- display: inline-block;
323
- float: left;
324
- margin-right: 10px;
325
- }
326
-
327
- .modula-tooltip > span {
328
- cursor: pointer;
329
- color: #0073aa;
330
- text-decoration: underline;
331
- margin-left: 5px;
332
- }
333
-
334
- .modula-tooltip .modula-tooltip-content {
335
- display: none;
336
- position: absolute;
337
- top: 50%;
338
- right: -10px;
339
- transform: translate( 100% ,-50% );
340
- width: 300px;
341
- background: #000;
342
- color: #fff;
343
- padding: 10px;
344
- box-sizing: border-box;
345
- z-index: 99;
346
- }
347
-
348
- .modula-tooltip .modula-tooltip-content:before {
349
- content: '';
350
- width: 0px;
351
- height: 0px;
352
- border-style: solid;
353
- border-width: 8px 8px 8px 0;
354
- border-color: transparent #000 transparent transparent;
355
- display: block;
356
- position: absolute;
357
- top: 50%;
358
- left: -8px;
359
- transform: translateY( -50% );
360
- }
361
-
362
- .modula-tooltip:hover .modula-tooltip-content {
363
- display: block;
364
- }
1
+ /* ----------------------------------------------------------------------------
2
+ * Welcome Page CSS
3
+ * ------------------------------------------------------------------------- */
4
+ .modula .wp-badge {
5
+ background-color: transparent;
6
+ background-image: url( ../../images/logo-dark.webp );
7
+ }
8
+
9
+ .modula img.modula-logo {
10
+ width:auto;
11
+ max-width:150px;
12
+ display:inline-block;
13
+ vertical-align:middle;
14
+ }
15
+
16
+ /* Lite vs PRO Section */
17
+
18
+ body.modula-gallery_page_modula-lite-vs-pro #wpcontent .wrap {
19
+ margin : 0 auto;
20
+ max-width : 85%;
21
+ }
22
+
23
+ .modula.lite-vs-pro-section > .wpchill-plans-table.wpchill-highlight > .wpchill-pricing-package {
24
+ background : #fefff0;
25
+ box-shadow: 0 0 15px rgb(208 219 219);
26
+ }
27
+
28
+ .lite-vs-pro-section .wp-badge{
29
+ display:inline-block;
30
+ vertical-align:middle;
31
+ position:relative;
32
+ margin-right:2.5%;
33
+ }
34
+
35
+ .lite-vs-pro-section h3 {
36
+ display:block;
37
+ position:relative;
38
+ font-size: 16px;
39
+ margin: 0;
40
+ }
41
+ .lite-vs-pro-section p {
42
+ font-size: 14px;
43
+ margin: 0;
44
+ }
45
+
46
+ .wpchill-plans-table {
47
+ display : flex;
48
+ }
49
+
50
+ .wpchill-plans-table.table-header {
51
+ margin-top : 50px;
52
+ }
53
+
54
+ .wpchill-plans-table.table-footer .wpchill-pricing-package:last-child {
55
+ border:0;
56
+ }
57
+
58
+ .wpchill-plans-table .wpchill-pricing-package {
59
+ text-align : center;
60
+ line-height : 1.5;
61
+ padding : 10px 15px;
62
+ display : flex;
63
+ align-content : center;
64
+ align-items : center;
65
+ justify-content : center;
66
+ background : #fff;
67
+ border-top : 1px solid #ccc;
68
+ }
69
+
70
+ .wpchill-plans-table .wpchill-pricing-package:not(:first-child) {
71
+ max-width : 300px;
72
+ }
73
+
74
+ .wpchill-plans-table.table-header .wpchill-pricing-package {
75
+ border:0;
76
+ }
77
+
78
+ .wpchill-plans-table.table-header .wpchill-pricing-package:not(.wpchill-modula-lite):last-child:before,
79
+ .wpchill-plans-table .wpchill-pricing-package.wpchill-title.wpchill-highlight::before{
80
+ content : '';
81
+ width : auto;
82
+ display : inline-block;
83
+ opacity : 1;
84
+ position : absolute;
85
+ top : -1px;
86
+ background : #41495b;
87
+ text-align : center;
88
+ left : 0;
89
+ right : 0;
90
+ color : #fff;
91
+ font-size : 15px;
92
+ text-transform : uppercase;
93
+ padding : 10px 5px;
94
+ transform : translateY(-100%);
95
+ }
96
+
97
+ .lite-vs-pro-section .wpchill-plans-table.table-header {
98
+ border-top: 0;
99
+ }
100
+
101
+ .wpchill-plans-table .wpchill-pricing-package.wpchill-title {
102
+ font-weight : 400;
103
+ color : #666;
104
+ font-size : 1.25rem;
105
+ height : auto;
106
+ -ms-flex-direction : column;
107
+ flex-direction : column;
108
+ padding-top : 30px;
109
+ padding-bottom : 30px;
110
+ justify-content : space-between;
111
+ position : relative;
112
+ }
113
+
114
+ .wpchill-plans-table .wpchill-pricing-package.wpchill-title.wpchill-modula-lite {
115
+ justify-content: center;
116
+ }
117
+
118
+ .wpchill-plans-table .wpchill-pricing-package.wpchill-title p.description {
119
+ font-style : italic;
120
+ font-size : 13px;
121
+ margin-bottom: 40px;
122
+ }
123
+
124
+ .wpchill-plans-table .wpchill-pricing-package.wpchill-title .wpchill-price p:last-child {
125
+ font-size : 30px;
126
+ margin: 0 0 40px 0;
127
+ }
128
+ .wpchill-plans-table .wpchill-pricing-package.wpchill-title .wpchill-price p.old-price {
129
+ margin: 0;
130
+ position: relative;
131
+ }
132
+
133
+ .wpchill-plans-table .wpchill-pricing-package.wpchill-title .wpchill-price p.old-price:after {
134
+ content: "";
135
+ height: 2px;
136
+ width: 60px;
137
+ background: red;
138
+ display: block;
139
+ position: absolute;
140
+ left: 50%;
141
+ top: 52%;
142
+ transform: translate(-50%,-50%);
143
+ }
144
+
145
+ .wpchill-plans-table .wpchill-pricing-package.wpchill-title p.wpchill-name {
146
+ margin : 0;
147
+ font-size : 36px;
148
+ }
149
+
150
+ .wpchill-plans-table .wpchill-pricing-package.wpchill-title p.wpchill-price sup {
151
+ top: 2px;
152
+ position: relative;
153
+ font-size: 15px;
154
+ }
155
+
156
+ .wpchill-plans-table .wpchill-pricing-package.wpchill-empty {
157
+ background : transparent;
158
+ border-color : transparent;
159
+ }
160
+
161
+ .wpchill-plans-table .wpchill-pricing-package.feature-name {
162
+ justify-content : space-between;
163
+ font-weight : 400;
164
+ text-align : left;
165
+ font-size : 13px;
166
+ display : block;
167
+ background : transparent;
168
+ }
169
+
170
+ .wpchill-plans-table .wpchill-pricing-package .dashicons-saved {
171
+ color : green;
172
+ }
173
+
174
+ .wpchill-plans-table .wpchill-pricing-package .dashicons {
175
+ width : 30px;
176
+ height : 30px;
177
+ font-size : 30px;
178
+ }
179
+
180
+ .wpchill-plans-table .wpchill-pricing-package .dashicons-no-alt {
181
+ color : #ff3439;
182
+ }
183
+
184
+ .wpchill-plans-table .wpchill-pricing-package:last-child {
185
+ background : #fefff0;
186
+ }
187
+
188
+ .wpchill-pricing-package .button .dashicons {
189
+ font-size: 16px;
190
+ vertical-align: middle;
191
+ line-height: 26px;
192
+ }
193
+
194
+ /**
195
+ Featured section
196
+ */
197
+
198
+ .featured-section.features .row {
199
+ display: inline-block;
200
+ width: 97%;
201
+ padding: 15px;
202
+ border-bottom: 1px solid rgba(0, 0, 0, .06);
203
+ }
204
+
205
+ .featured-section.features .row .dashicons-yes {
206
+ color: #2cbe4e;
207
+ }
208
+
209
+ .featured-section.features .row .dashicons-no-alt {
210
+ color: #FF3D2E;
211
+ }
212
+
213
+ .featured-section.features .row > div {
214
+ display: inline-block;
215
+ float: left;
216
+ width: 15%;
217
+ text-align: center;
218
+ }
219
+
220
+ .featured-section.features .row > .feature {
221
+ width: 70%;
222
+ text-align: left;
223
+ }
224
+
225
+ .featured-section .free-pro-table {
226
+ border-spacing: 0;
227
+ width: 100%;
228
+ margin-top:40px;
229
+ }
230
+
231
+ .featured-section .free-pro-table th {
232
+ padding-bottom: 20px;
233
+ }
234
+
235
+ .featured-section .free-pro-table td {
236
+ border-top: 1px solid #ccc;
237
+ padding: 10px 0;
238
+ }
239
+
240
+ .featured-section .free-pro-table thead tr th:nth-child(2) {
241
+ color:green;
242
+ }
243
+
244
+ .featured-section .free-pro-table thead tr th:nth-child(3) {
245
+ color:blue;
246
+ }
247
+
248
+ .featured-section .free-pro-table tbody tr:not(:last-child) td:nth-child(2) {
249
+ background-color:#fefff0;
250
+ }
251
+
252
+ .featured-section .free-pro-table tbody tr:not(:last-child) td:nth-child(3){
253
+ background-color:#fff;
254
+ }
255
+
256
+ .featured-section .free-pro-table h3 {
257
+ margin: 0;
258
+ }
259
+
260
+ .featured-section .free-pro-table td p {
261
+ margin: 0;
262
+ }
263
+
264
+ .featured-section .free-pro-table .lite-feature,
265
+ .featured-section .free-pro-table .pro-feature{
266
+ text-align: center;
267
+ width: 20%;
268
+ }
269
+
270
+ .featured-section .free-pro-table .dashicons-yes {
271
+ color: #00A878;
272
+ }
273
+
274
+ .featured-section .free-pro-table .dashicons {
275
+ width:30px;
276
+ height:30px;
277
+ font-size:30px;
278
+ }
279
+
280
+ .featured-section .free-pro-table .dashicons-no-alt {
281
+ color: #ff3439;
282
+ }
283
+
284
+ .featured-section .free-pro-table .dashicons-before:before,
285
+ .featured-section .free-pro-table .dashicons-before:before {
286
+ font-size: 35px;
287
+ height: 35px;
288
+ width: 35px;
289
+ }
290
+ .featured-section .button-hero .dashicons{
291
+ font-size:16px;
292
+ vertical-align:middle;
293
+ line-height:26px;
294
+ }
295
+
296
+ .featured-section .ti-about-page-text-center {
297
+ text-align: center;
298
+ }
299
+ .free-pro-table .text-right {
300
+ text-align: right;
301
+ }
302
+
303
+ .modula-license-label {
304
+ display: block;
305
+ }
306
+
307
+ .modula-license-label p.green strong {
308
+ color:green;
309
+ }
310
+
311
+ .modula-license-label p.orange strong {
312
+ color:orange;
313
+ }
314
+
315
+ .modula-license-label p.red strong {
316
+ color:red;
317
+ }
318
+
319
+ /* Tabs tooltips */
320
+ .modula-tooltip {
321
+ position: relative;
322
+ display: inline-block;
323
+ float: left;
324
+ margin-right: 10px;
325
+ }
326
+
327
+ .modula-tooltip > span {
328
+ cursor: pointer;
329
+ color: #0073aa;
330
+ text-decoration: underline;
331
+ margin-left: 5px;
332
+ }
333
+
334
+ .modula-tooltip .modula-tooltip-content {
335
+ display: none;
336
+ position: absolute;
337
+ top: 50%;
338
+ right: -10px;
339
+ transform: translate( 100% ,-50% );
340
+ width: 300px;
341
+ background: #000;
342
+ color: #fff;
343
+ padding: 10px;
344
+ box-sizing: border-box;
345
+ z-index: 99;
346
+ }
347
+
348
+ .modula-tooltip .modula-tooltip-content:before {
349
+ content: '';
350
+ width: 0px;
351
+ height: 0px;
352
+ border-style: solid;
353
+ border-width: 8px 8px 8px 0;
354
+ border-color: transparent #000 transparent transparent;
355
+ display: block;
356
+ position: absolute;
357
+ top: 50%;
358
+ left: -8px;
359
+ transform: translateY( -50% );
360
+ }
361
+
362
+ .modula-tooltip:hover .modula-tooltip-content {
363
+ display: block;
364
+ }
assets/css/front.css CHANGED
@@ -1,2 +1,2 @@
1
- html body .compensate-for-scrollbar{overflow:hidden}html body .modula-fancybox-active{height:auto}html body .modula-fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}html body .modula-fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:0;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}html body .modula-fancybox-container *{box-sizing:border-box}html body .modula-fancybox-bg,html body .modula-fancybox-inner,html body .modula-fancybox-outer,html body .modula-fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}html body .modula-fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}html body .modula-fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}html body .modula-fancybox-is-open .modula-fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}html body .modula-fancybox-container .modula-fancybox-caption,html body .modula-fancybox-container .modula-fancybox-infobar,html body .modula-fancybox-container .modula-fancybox-navigation .modula-fancybox-button,html body .modula-fancybox-container .modula-fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}html body .modula-fancybox-show-caption .modula-fancybox-caption,html body .modula-fancybox-show-infobar .modula-fancybox-infobar,html body .modula-fancybox-show-nav .modula-fancybox-navigation .modula-fancybox-button,html body .modula-fancybox-show-toolbar .modula-fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}html body .modula-fancybox-container .modula-fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html body .modula-fancybox-container .modula-fancybox-toolbar{right:0;top:0}html body .modula-fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}html body .modula-fancybox-is-open .modula-fancybox-stage{overflow:hidden}html body .modula-fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:0;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}html body .modula-fancybox-slide::before{content:'';display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}html body .modula-fancybox-is-sliding .modula-fancybox-slide,html body .modula-fancybox-slide--current,html body .modula-fancybox-slide--next,html body .modula-fancybox-slide--previous{display:block}html body .modula-fancybox-slide--image{overflow:hidden;padding:44px 0}html body .modula-fancybox-slide--image::before{display:none}html body .modula-fancybox-slide--html{padding:6px}html body .modula-fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}html body .modula-fancybox-slide--image .modula-fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:0 0;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;-ms-transform-origin:top left;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}html body .modula-fancybox-can-zoomOut .modula-fancybox-content{cursor:zoom-out}html body .modula-fancybox-can-zoomIn .modula-fancybox-content{cursor:zoom-in}html body .modula-fancybox-can-pan .modula-fancybox-content,html body .modula-fancybox-can-swipe .modula-fancybox-content{cursor:-webkit-grab;cursor:grab}html body .modula-fancybox-is-grabbing .modula-fancybox-content{cursor:-webkit-grabbing;cursor:grabbing}html body .modula-fancybox-container [data-selectable=true]{cursor:text}html body .modula-fancybox-image,html body .modula-fancybox-spaceball{background:0 0;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}html body .modula-fancybox-spaceball{z-index:1}html body .modula-fancybox-slide--iframe .modula-fancybox-content,html body .modula-fancybox-slide--map .modula-fancybox-content,html body .modula-fancybox-slide--pdf .modula-fancybox-content,html body .modula-fancybox-slide--video .modula-fancybox-content{height:100%;overflow:visible;padding:0;width:100%}html body .modula-fancybox-slide--video .modula-fancybox-content{background:#000}html body .modula-fancybox-slide--map .modula-fancybox-content{background:#e5e3df}html body .modula-fancybox-slide--iframe .modula-fancybox-content{background:#fff}html body .modula-fancybox-iframe,html body .modula-fancybox-video{background:0 0;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}html body .modula-fancybox-iframe{left:0;position:absolute;top:0}html body .modula-fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}html body .modula-fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}html body .modula-fancybox-container .modula-fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}html body .modula-fancybox-container .modula-fancybox-button,html body .modula-fancybox-container .modula-fancybox-button:link,html body .modula-fancybox-container .modula-fancybox-button:visited{color:#ccc}html body .modula-fancybox-container .modula-fancybox-button:hover{color:#fff;box-shadow:none}html body .modula-fancybox-container .modula-fancybox-button:focus{outline:0}html body .modula-fancybox-container .modula-fancybox-button.modula-fancybox-focus{outline:1px dotted}html body .modula-fancybox-container .modula-fancybox-button[disabled],html body .modula-fancybox-container .modula-fancybox-button[disabled]:hover{color:#888;cursor:default;outline:0}html body .modula-fancybox-container .modula-fancybox-button div{height:100%}html body .modula-fancybox-container .modula-fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}html body .modula-fancybox-container .modula-fancybox-button svg path{fill:currentColor;stroke-width:0}html body .modula-fancybox-container .modula-fancybox-button--fsenter svg:nth-child(2),html body .modula-fancybox-container .modula-fancybox-button--play svg:nth-child(2){display:none}html body .modula-fancybox-container .modula-fancybox-button--fsexit svg:nth-child(1),html body .modula-fancybox-container .modula-fancybox-button--pause svg:nth-child(1){display:none}html body .modula-fancybox-container .modula-fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;-ms-transform:scaleX(0);transform:scaleX(0);-ms-transform-origin:0;transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}html body .modula-fancybox-container .modula-fancybox-close-small{background:0 0;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}html body .modula-fancybox-container .modula-fancybox-close-small:hover{color:#fff;opacity:1}html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-slide--html .modula-fancybox-close-small{color:#000;padding:10px;right:0;top:0;background-color:transparent}html body .modula-fancybox-slide--image.modula-fancybox-is-scaling .modula-fancybox-content{overflow:hidden}html body .modula-fancybox-is-scaling .modula-fancybox-close-small,html body .modula-fancybox-is-zoomable.modula-fancybox-can-pan .modula-fancybox-close-small{display:none}html body .modula-fancybox-navigation .modula-fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}html body .modula-fancybox-navigation .modula-fancybox-button div{padding:7px}html body .modula-fancybox-navigation .modula-fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}html body .modula-fancybox-navigation .modula-fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}html body .modula-fancybox-caption{background:linear-gradient(to top,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,rgba(0,0,0,0) 100%);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px 44px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){html body .modula-fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}html body .modula-fancybox-caption--separate{margin-top:-50px}html body .modula-fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}html body .modula-fancybox-caption a,html body .modula-fancybox-caption a:link,html body .modula-fancybox-caption a:visited{color:#ccc;text-decoration:none}html body .modula-fancybox-caption a:hover{color:#fff;text-decoration:underline}html body .modula-fancybox-loading{animation:fancybox-rotate 1s linear infinite;background:0 0;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes fancybox-rotate{100%{transform:rotate(360deg)}}html body .modula-fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}html body .modula-fancybox-fx-slide.modula-fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}html body .modula-fancybox-fx-slide.modula-fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}html body .modula-fancybox-fx-slide.modula-fancybox-slide--current{opacity:1;transform:translate3d(0,0,0)}html body .modula-fancybox-fx-fade.modula-fancybox-slide--next,html body .modula-fancybox-fx-fade.modula-fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}html body .modula-fancybox-fx-fade.modula-fancybox-slide--current{opacity:1}html body .modula-fancybox-fx-zoom-in-out.modula-fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}html body .modula-fancybox-fx-zoom-in-out.modula-fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}html body .modula-fancybox-fx-zoom-in-out.modula-fancybox-slide--current{opacity:1;transform:scale3d(1,1,1)}html body .modula-fancybox-fx-rotate.modula-fancybox-slide--previous{opacity:0;-ms-transform:rotate(-360deg);transform:rotate(-360deg)}html body .modula-fancybox-fx-rotate.modula-fancybox-slide--next{opacity:0;-ms-transform:rotate(360deg);transform:rotate(360deg)}html body .modula-fancybox-fx-rotate.modula-fancybox-slide--current{opacity:1;-ms-transform:rotate(0);transform:rotate(0)}html body .modula-fancybox-fx-circular.modula-fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}html body .modula-fancybox-fx-circular.modula-fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}html body .modula-fancybox-fx-circular.modula-fancybox-slide--current{opacity:1;transform:scale3d(1,1,1) translate3d(0,0,0)}html body .modula-fancybox-fx-tube.modula-fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}html body .modula-fancybox-fx-tube.modula-fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}html body .modula-fancybox-fx-tube.modula-fancybox-slide--current{transform:translate3d(0,0,0) scale(1)}@media all and (max-height:576px){html body .modula-fancybox-slide{padding-left:6px;padding-right:6px}html body .modula-fancybox-slide--image{padding:6px 0}html body .modula-fancybox-close-small{right:-6px}html body .modula-fancybox-slide--image .modula-fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}html body .modula-fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){html body .modula-fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px 0}.modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share h1:after,.modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share h1:before{display:none}html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share p{margin:0;padding:0}html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px 5px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button:link,html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button:visited{color:#fff}html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button:hover{text-decoration:none}html body .modula-fancybox-share__button--fb{background:#3b5998}html body .modula-fancybox-share__button--fb:hover{background:#344e86}html body .modula-fancybox-share__button--pt{background:#bd081d}html body .modula-fancybox-share__button--pt:hover{background:#aa0719}html body .modula-fancybox-share__button--tw{background:#1da1f2}html body .modula-fancybox-share__button--tw:hover{background:#0d95e8}html body .modula-fancybox-share__button--email{background:#9c3}html body .modula-fancybox-share__button--email:hover{background:#7aa329}html body .modula-fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px;display:inline-block}html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button svg path{fill:#fff}html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share .modula-fancybox-share__input{background:0 0;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0 0;outline:0;padding:10px 15px;width:100%}html body .modula-fancybox-container .modula-fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px 2px;position:absolute;right:0;-webkit-tap-highlight-color:transparent;top:0;z-index:99995}html body .modula-fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}html body .modula-fancybox-show-thumbs .modula-fancybox-thumbs{display:block}html body .modula-fancybox-show-thumbs .modula-fancybox-inner{right:212px}html body .modula-fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:relative;white-space:nowrap;width:100%}html body .modula-fancybox-thumbs-x .modula-fancybox-thumbs__list{overflow:hidden}html body .modula-fancybox-thumbs-y .modula-fancybox-thumbs__list::-webkit-scrollbar{width:7px}html body .modula-fancybox-thumbs-y .modula-fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}html body .modula-fancybox-thumbs-y .modula-fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}html body .modula-fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:center center;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:0;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}html body .modula-fancybox-thumbs__list a::before{border:6px solid #ff5268;bottom:0;content:'';left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}html body .modula-fancybox-thumbs__list a:focus::before{opacity:.5}html body .modula-fancybox-thumbs__list a.modula-fancybox-thumbs-active::before{opacity:1}@media all and (max-width:576px){html body .modula-fancybox-thumbs{width:110px}html body .modula-fancybox-show-thumbs .modula-fancybox-inner{right:110px}html body .modula-fancybox-thumbs__list a{max-width:calc(100% - 10px)}}@media all and (min-width:577px){html body .modula-fancybox-container .modula-fancybox-thumbs{width:212px}}
2
  html body .modula .modula-items .modula-item{position:absolute;overflow:hidden;box-sizing:border-box}html body .modula .modula-items .modula-item .modula-item-content{transition:transform .3s ease-out,opacity .2s linear,top .3s,left .6s;opacity:0}html body .modula .modula-items{position:relative;z-index:1;min-height:10px}html body .modula .modula-items .modula-item .modula-item-content>a{display:block;position:absolute;top:0;left:0;width:100%;height:100%;z-index:10;background:0 0}html body .modula.modula-creative-gallery .modula-items .modula-item .modula-item-content,html body .modula.modula-custom-grid .modula-items .modula-item .modula-item-content{height:100%}html body .modula .modula-items .modula-item .jtg-social{z-index:10;font-size:0}html body .modula.modula-columns:not(.modula-loaded-scale).modula-gallery-initialized .modula-items .modula-item .modula-item-content,html body .modula:not(.modula-loaded-scale).modula-gallery-initialized .modula-items .modula-item.tg-loaded .modula-item-content,html body .modula:not(.modula-loaded-scale).modula-gallery-initialized .modula-items.justified-gallery .modula-item .modula-item-content{transform:scale(1) translate(0,0) rotate(0)!important;opacity:1}html body .modula .modula-items .modula-item img.pic{font-size:12px;position:absolute;max-width:999em;transition:width .3s,height .3s,transform .3s linear,opacity .2s linear}html body .modula.modula-columns .modula-items .modula-item img.pic{position:relative;max-width:100%;margin:0 auto}html body .modula .modula-items .modula-item.tg-loaded img.pic,html body .modula.modula-columns .modula-items .modula-item img.pic{display:block;opacity:1}html body .modula .modula-items .modula-item img.pic.lazyload,html body .modula .modula-items .modula-item img.pic.lazyloaded{display:block}html body .modula .modula-items .modula-item .caption .icon{font-size:14px;position:absolute;left:50%;top:50%;margin:-12px 0 0 -8px}html body .modula .modula-items .modula-item .figc{color:#fff;text-align:center;position:absolute;left:0;width:100%;padding:0;max-width:100%}html body .modula .modula-items .hidden .figc{display:none}html body .modula .modula-items .hidden:hover .figc{display:block}html body .modula .modula-items .visible .figc{display:block}html body .modula .modula-items .always-visible .figc{display:block}html body .modula .modula-items .visible:hover .figc{display:none}html body .modula .modula-items .caption span.text{display:block;padding:10px}html body .modula .modula-items .caption span.title{font-size:14px;font-weight:700}html body .modula .jtg-social a{box-shadow:none}html body .modula .jtg-social svg{width:20px;height:16px}html body .modula .modula-items .modula-item .jtg-title{margin:0}html body .modula .modula-items .modula-item p{margin:0;padding:0}html body .modula .figc{color:#000;text-align:center;position:absolute;left:0;width:100%;padding:2em}html body .modula .modula-item .jtg-social a{text-decoration:none;color:#fff;display:inline-block;margin:0 10px 0 0;padding:0;border:0;opacity:0;transition:opacity .3s}html body .modula .modula-item:hover .jtg-social a{opacity:1}html body .modula .modula-items .jtg-social{opacity:0;right:30px;position:absolute;bottom:20px;text-align:right;transition:all .3s}html body .et_pb_module_inner .modula .modula-items .jtg-social{transition:all .3s!important}html body .modula .modula-items .modula-item.effect-pufrobo .jtg-social a{margin-right:10px}@media all and (max-width:480px){html body .modula .modula-items .modula-item.effect-pufrobo .jtg-social{right:0;width:100%;text-align:center}html body .modula .modula-items .modula-item.effect-pufrobo .jtg-social a{padding:5px}}html body .modula .modula-items .jtg-social{opacity:1}html body .modula .modula-items .jtg-social a:last-of-type{margin-right:0}html body .modula .modula-item.effect-pufrobo p.description{margin-bottom:2em}html body .et_pb_module_inner .modula .modula-item.effect-pufrobo p.description{-webkit-transition:-webkit-transform .35s!important;transition:transform .35s!important}html body .modula .modula-item.effect-pufrobo .figc{text-align:right}html body .modula .modula-item.effect-pufrobo .jtg-title,html body .modula .modula-item.effect-pufrobo p{position:absolute;right:5%;left:5%;padding:10px 0}html body .modula.modula-gallery-initialized .modula-item:hover img,html body .modula.modula-gallery-initialized .modula-items .modula-item.tg-loaded:hover img.pic{opacity:.8}html body .modula .modula-item.effect-pufrobo p{bottom:20%;line-height:1.5;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);letter-spacing:1px}html body .modula .modula-items .modula-item.effect-pufrobo .jtg-title{top:10%;-webkit-transition:-webkit-transform .35s;transition:transform .35s;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}html body .et_pb_module_inner .modula .modula-items .modula-item.effect-pufrobo .jtg-title{-webkit-transition:-webkit-transform .35s!important;transition:transform .35s!important}html body .modula .modula-item.effect-pufrobo:hover .jtg-title{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}html body .modula .modula-item.effect-pufrobo .jtg-title::after{position:absolute;top:80%;left:0;width:100%;height:4px;background:#fff;content:'';-webkit-transform:translate3d(0,40px,0);transform:translate3d(0,40px,0)}html body .modula .modula-item.effect-pufrobo .jtg-title::after,html body .modula .modula-item.effect-pufrobo p{opacity:0;-webkit-transition:opacity .35s,-webkit-transform .35s;transition:opacity .35s,transform .35s}html body .modula .modula-item.effect-pufrobo:hover .jtg-title::after,html body .modula .modula-item.effect-pufrobo:hover p{margin-top:10px;margin-bottom:5px;opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}html body .modula .modula-items .modula-item.effect-pufrobo .figc.no-title.no-description .jtg-title:after{display:none}html body .modula .modula-items .modula-item.effect-appear .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-comodo .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-crafty .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-curtain .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-fluid-up .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-hide .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-lens .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-pufrobo .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-quiet .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-reflex .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-seemo .figc .jtg-title:before{display:none}html body .modula .modula-items .modula-item>a{cursor:zoom-in}html body .modula-fancybox-container.modula-fancybox-is-open{z-index:99999999}html body .modula-fancybox-share__button--li{background:#0e76a8}html body .modula-fancybox-share__button--wa{background:#25d366}html body .modula.modula-columns .modula-item{display:flex;justify-content:center}html body .modula.modula-columns .modula-item .modula-item-content{position:relative}html body .modula.modula-columns .modula-items.grid-gallery .modula-item .modula-item-content{height:100%}html body .modula.modula-columns .modula-items.grid-gallery.justified-gallery .modula-item .modula-item-content{width:100%}html body .modula.modula-columns .modula-items.grid-gallery.justified-gallery .modula-item .modula-item-content .pic{position:absolute;top:50%;left:50%;margin:0;padding:0;border:none}html body .modula.modula-columns .modula-item.jg-filtered{display:none}html body .modula-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}html body .modula-row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body .modula-row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body .modula-row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body .modula-row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body .modula-row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}html body .modula-row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}@media (min-width:576px){html body .modula-row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body .modula-row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body .modula-row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body .modula-row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body .modula-row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}html body .modula-row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}}@media (min-width:768px){html body .modula-row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body .modula-row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body .modula-row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body .modula-row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body .modula-row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}html body .modula-row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}}@media (min-width:992px){html body .modula-row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body .modula-row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body .modula-row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body .modula-row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body .modula-row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}html body .modula-row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}}@media (min-width:1200px){html body .modula-row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body .modula-row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body .modula-row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body .modula-row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body .modula-row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}html body .modula-row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}}html body .modula .modula-items.grid-gallery .modula-item .figc{height:100%;top:0}html body div.modula-powered{text-align:right;font-size:14px;margin-right:5px;clear:both}html body div.modula-powered svg.modula-logo{width:14px;position:relative;top:3px}html body div.modula-powered svg.modula-logo path{color:#58ab7e!important}html body div.modula-powered svg.modula-logo{display:inline-block}.modula-gallery:not(.modula-gallery-initialized)>.modula-items{visibility:hidden}.modula-gallery.modula-gallery-initialized .modula-items .modula-item{visibility:visible}
1
+ html body .compensate-for-scrollbar{overflow:hidden}html body .modula-fancybox-active{height:auto}html body .modula-fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}html body .modula-fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:0;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}html body .modula-fancybox-container *{box-sizing:border-box}html body .modula-fancybox-bg,html body .modula-fancybox-inner,html body .modula-fancybox-outer,html body .modula-fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}html body .modula-fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}html body .modula-fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}html body .modula-fancybox-is-open .modula-fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}html body .modula-fancybox-container .modula-fancybox-caption,html body .modula-fancybox-container .modula-fancybox-infobar,html body .modula-fancybox-container .modula-fancybox-navigation .modula-fancybox-button,html body .modula-fancybox-container .modula-fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}html body .modula-fancybox-show-caption .modula-fancybox-caption,html body .modula-fancybox-show-infobar .modula-fancybox-infobar,html body .modula-fancybox-show-nav .modula-fancybox-navigation .modula-fancybox-button,html body .modula-fancybox-show-toolbar .modula-fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}html body .modula-fancybox-container .modula-fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html body .modula-fancybox-container .modula-fancybox-toolbar{right:0;top:0}html body .modula-fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}html body .modula-fancybox-is-open .modula-fancybox-stage{overflow:hidden}html body .modula-fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:0;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}html body .modula-fancybox-slide::before{content:'';display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}html body .modula-fancybox-is-sliding .modula-fancybox-slide,html body .modula-fancybox-slide--current,html body .modula-fancybox-slide--next,html body .modula-fancybox-slide--previous{display:block}html body .modula-fancybox-slide--image{overflow:hidden;padding:44px 0}html body .modula-fancybox-slide--image::before{display:none}html body .modula-fancybox-slide--html{padding:6px}html body .modula-fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}html body .modula-fancybox-slide--image .modula-fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:0 0;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;-ms-transform-origin:top left;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}html body .modula-fancybox-can-zoomOut .modula-fancybox-content{cursor:zoom-out}html body .modula-fancybox-can-zoomIn .modula-fancybox-content{cursor:zoom-in}html body .modula-fancybox-can-pan .modula-fancybox-content,html body .modula-fancybox-can-swipe .modula-fancybox-content{cursor:-webkit-grab;cursor:grab}html body .modula-fancybox-is-grabbing .modula-fancybox-content{cursor:-webkit-grabbing;cursor:grabbing}html body .modula-fancybox-container [data-selectable=true]{cursor:text}html body .modula-fancybox-image,html body .modula-fancybox-spaceball{background:0 0;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}html body .modula-fancybox-spaceball{z-index:1}html body .modula-fancybox-slide--iframe .modula-fancybox-content,html body .modula-fancybox-slide--map .modula-fancybox-content,html body .modula-fancybox-slide--pdf .modula-fancybox-content,html body .modula-fancybox-slide--video .modula-fancybox-content{height:100%;overflow:visible;padding:0;width:100%}html body .modula-fancybox-slide--video .modula-fancybox-content{background:#000}html body .modula-fancybox-slide--map .modula-fancybox-content{background:#e5e3df}html body .modula-fancybox-slide--iframe .modula-fancybox-content{background:#fff}html body .modula-fancybox-iframe,html body .modula-fancybox-video{background:0 0;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}html body .modula-fancybox-iframe{left:0;position:absolute;top:0}html body .modula-fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}html body .modula-fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}html body .modula-fancybox-container .modula-fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}html body .modula-fancybox-container .modula-fancybox-button,html body .modula-fancybox-container .modula-fancybox-button:link,html body .modula-fancybox-container .modula-fancybox-button:visited{color:#ccc}html body .modula-fancybox-container .modula-fancybox-button:hover{color:#fff;box-shadow:none}html body .modula-fancybox-container .modula-fancybox-button:focus{outline:0}html body .modula-fancybox-container .modula-fancybox-button.modula-fancybox-focus{outline:1px dotted}html body .modula-fancybox-container .modula-fancybox-button[disabled],html body .modula-fancybox-container .modula-fancybox-button[disabled]:hover{color:#888;cursor:default;outline:0}html body .modula-fancybox-container .modula-fancybox-button div{height:100%}html body .modula-fancybox-container .modula-fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}html body .modula-fancybox-container .modula-fancybox-button svg path{fill:currentColor;stroke-width:0}html body .modula-fancybox-container .modula-fancybox-button--fsenter svg:nth-child(2),html body .modula-fancybox-container .modula-fancybox-button--play svg:nth-child(2){display:none}html body .modula-fancybox-container .modula-fancybox-button--fsexit svg:nth-child(1),html body .modula-fancybox-container .modula-fancybox-button--pause svg:nth-child(1){display:none}html body .modula-fancybox-container .modula-fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;-ms-transform:scaleX(0);transform:scaleX(0);-ms-transform-origin:0;transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}html body .modula-fancybox-container .modula-fancybox-close-small{background:0 0;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}html body .modula-fancybox-container .modula-fancybox-close-small:hover{color:#fff;opacity:1}html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-slide--html .modula-fancybox-close-small{color:#000;padding:10px;right:0;top:0;background-color:transparent}html body .modula-fancybox-slide--image.modula-fancybox-is-scaling .modula-fancybox-content{overflow:hidden}html body .modula-fancybox-is-scaling .modula-fancybox-close-small,html body .modula-fancybox-is-zoomable.modula-fancybox-can-pan .modula-fancybox-close-small{display:none}html body .modula-fancybox-navigation .modula-fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}html body .modula-fancybox-navigation .modula-fancybox-button div{padding:7px}html body .modula-fancybox-navigation .modula-fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}html body .modula-fancybox-navigation .modula-fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}html body .modula-fancybox-caption{background:linear-gradient(to top,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,rgba(0,0,0,0) 100%);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px 44px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){html body .modula-fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}html body .modula-fancybox-caption--separate{margin-top:-50px}html body .modula-fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}html body .modula-fancybox-caption a,html body .modula-fancybox-caption a:link,html body .modula-fancybox-caption a:visited{color:#ccc;text-decoration:none}html body .modula-fancybox-caption a:hover{color:#fff;text-decoration:underline}html body .modula-fancybox-loading{animation:fancybox-rotate 1s linear infinite;background:0 0;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes fancybox-rotate{100%{transform:rotate(360deg)}}html body .modula-fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}html body .modula-fancybox-fx-slide.modula-fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}html body .modula-fancybox-fx-slide.modula-fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}html body .modula-fancybox-fx-slide.modula-fancybox-slide--current{opacity:1;transform:translate3d(0,0,0)}html body .modula-fancybox-fx-fade.modula-fancybox-slide--next,html body .modula-fancybox-fx-fade.modula-fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}html body .modula-fancybox-fx-fade.modula-fancybox-slide--current{opacity:1}html body .modula-fancybox-fx-zoom-in-out.modula-fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}html body .modula-fancybox-fx-zoom-in-out.modula-fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}html body .modula-fancybox-fx-zoom-in-out.modula-fancybox-slide--current{opacity:1;transform:scale3d(1,1,1)}html body .modula-fancybox-fx-rotate.modula-fancybox-slide--previous{opacity:0;-ms-transform:rotate(-360deg);transform:rotate(-360deg)}html body .modula-fancybox-fx-rotate.modula-fancybox-slide--next{opacity:0;-ms-transform:rotate(360deg);transform:rotate(360deg)}html body .modula-fancybox-fx-rotate.modula-fancybox-slide--current{opacity:1;-ms-transform:rotate(0);transform:rotate(0)}html body .modula-fancybox-fx-circular.modula-fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}html body .modula-fancybox-fx-circular.modula-fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}html body .modula-fancybox-fx-circular.modula-fancybox-slide--current{opacity:1;transform:scale3d(1,1,1) translate3d(0,0,0)}html body .modula-fancybox-fx-tube.modula-fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}html body .modula-fancybox-fx-tube.modula-fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}html body .modula-fancybox-fx-tube.modula-fancybox-slide--current{transform:translate3d(0,0,0) scale(1)}@media all and (max-height:576px){html body .modula-fancybox-slide{padding-left:6px;padding-right:6px}html body .modula-fancybox-slide--image{padding:6px 0}html body .modula-fancybox-close-small{right:-6px}html body .modula-fancybox-slide--image .modula-fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}html body .modula-fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){html body .modula-fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px 0}.modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share h1:after,.modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share h1:before{display:none}html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share p{margin:0;padding:0}html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px 5px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button:link,html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button:visited{color:#fff}html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button:hover{text-decoration:none}html body .modula-fancybox-share__button--fb{background:#3b5998}html body .modula-fancybox-share__button--fb:hover{background:#344e86}html body .modula-fancybox-share__button--pt{background:#bd081d}html body .modula-fancybox-share__button--pt:hover{background:#aa0719}html body .modula-fancybox-share__button--tw{background:#1da1f2}html body .modula-fancybox-share__button--tw:hover{background:#0d95e8}html body .modula-fancybox-share__button--email{background:#9c3}html body .modula-fancybox-share__button--email:hover{background:#7aa329}html body .modula-fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px;display:inline-block}html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button svg path{fill:#fff}html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share .modula-fancybox-share__input{background:0 0;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0 0;outline:0;padding:10px 15px;width:100%}html body .modula-fancybox-container .modula-fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px 2px;position:absolute;right:0;-webkit-tap-highlight-color:transparent;top:0;z-index:99995}html body .modula-fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}html body .modula-fancybox-show-thumbs .modula-fancybox-thumbs{display:block}html body .modula-fancybox-show-thumbs .modula-fancybox-inner{right:212px}html body .modula-fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:relative;white-space:nowrap;width:100%}html body .modula-fancybox-thumbs-x .modula-fancybox-thumbs__list{overflow:hidden}html body .modula-fancybox-thumbs-y .modula-fancybox-thumbs__list::-webkit-scrollbar{width:7px}html body .modula-fancybox-thumbs-y .modula-fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}html body .modula-fancybox-thumbs-y .modula-fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}html body .modula-fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:center center;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:0;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}html body .modula-fancybox-thumbs__list a::before{border:6px solid #ff5268;bottom:0;content:'';left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}html body .modula-fancybox-thumbs__list a:focus::before{opacity:.5}html body .modula-fancybox-thumbs__list a.modula-fancybox-thumbs-active::before{opacity:1}@media all and (max-width:576px){html body .modula-fancybox-thumbs{width:110px}html body .modula-fancybox-show-thumbs .modula-fancybox-inner{right:110px}html body .modula-fancybox-thumbs__list a{max-width:calc(100% - 10px)}}@media all and (min-width:577px){html body .modula-fancybox-container .modula-fancybox-thumbs{width:212px}}
2
  html body .modula .modula-items .modula-item{position:absolute;overflow:hidden;box-sizing:border-box}html body .modula .modula-items .modula-item .modula-item-content{transition:transform .3s ease-out,opacity .2s linear,top .3s,left .6s;opacity:0}html body .modula .modula-items{position:relative;z-index:1;min-height:10px}html body .modula .modula-items .modula-item .modula-item-content>a{display:block;position:absolute;top:0;left:0;width:100%;height:100%;z-index:10;background:0 0}html body .modula.modula-creative-gallery .modula-items .modula-item .modula-item-content,html body .modula.modula-custom-grid .modula-items .modula-item .modula-item-content{height:100%}html body .modula .modula-items .modula-item .jtg-social{z-index:10;font-size:0}html body .modula.modula-columns:not(.modula-loaded-scale).modula-gallery-initialized .modula-items .modula-item .modula-item-content,html body .modula:not(.modula-loaded-scale).modula-gallery-initialized .modula-items .modula-item.tg-loaded .modula-item-content,html body .modula:not(.modula-loaded-scale).modula-gallery-initialized .modula-items.justified-gallery .modula-item .modula-item-content{transform:scale(1) translate(0,0) rotate(0)!important;opacity:1}html body .modula .modula-items .modula-item img.pic{font-size:12px;position:absolute;max-width:999em;transition:width .3s,height .3s,transform .3s linear,opacity .2s linear}html body .modula.modula-columns .modula-items .modula-item img.pic{position:relative;max-width:100%;margin:0 auto}html body .modula .modula-items .modula-item.tg-loaded img.pic,html body .modula.modula-columns .modula-items .modula-item img.pic{display:block;opacity:1}html body .modula .modula-items .modula-item img.pic.lazyload,html body .modula .modula-items .modula-item img.pic.lazyloaded{display:block}html body .modula .modula-items .modula-item .caption .icon{font-size:14px;position:absolute;left:50%;top:50%;margin:-12px 0 0 -8px}html body .modula .modula-items .modula-item .figc{color:#fff;text-align:center;position:absolute;left:0;width:100%;padding:0;max-width:100%}html body .modula .modula-items .hidden .figc{display:none}html body .modula .modula-items .hidden:hover .figc{display:block}html body .modula .modula-items .visible .figc{display:block}html body .modula .modula-items .always-visible .figc{display:block}html body .modula .modula-items .visible:hover .figc{display:none}html body .modula .modula-items .caption span.text{display:block;padding:10px}html body .modula .modula-items .caption span.title{font-size:14px;font-weight:700}html body .modula .jtg-social a{box-shadow:none}html body .modula .jtg-social svg{width:20px;height:16px}html body .modula .modula-items .modula-item .jtg-title{margin:0}html body .modula .modula-items .modula-item p{margin:0;padding:0}html body .modula .figc{color:#000;text-align:center;position:absolute;left:0;width:100%;padding:2em}html body .modula .modula-item .jtg-social a{text-decoration:none;color:#fff;display:inline-block;margin:0 10px 0 0;padding:0;border:0;opacity:0;transition:opacity .3s}html body .modula .modula-item:hover .jtg-social a{opacity:1}html body .modula .modula-items .jtg-social{opacity:0;right:30px;position:absolute;bottom:20px;text-align:right;transition:all .3s}html body .et_pb_module_inner .modula .modula-items .jtg-social{transition:all .3s!important}html body .modula .modula-items .modula-item.effect-pufrobo .jtg-social a{margin-right:10px}@media all and (max-width:480px){html body .modula .modula-items .modula-item.effect-pufrobo .jtg-social{right:0;width:100%;text-align:center}html body .modula .modula-items .modula-item.effect-pufrobo .jtg-social a{padding:5px}}html body .modula .modula-items .jtg-social{opacity:1}html body .modula .modula-items .jtg-social a:last-of-type{margin-right:0}html body .modula .modula-item.effect-pufrobo p.description{margin-bottom:2em}html body .et_pb_module_inner .modula .modula-item.effect-pufrobo p.description{-webkit-transition:-webkit-transform .35s!important;transition:transform .35s!important}html body .modula .modula-item.effect-pufrobo .figc{text-align:right}html body .modula .modula-item.effect-pufrobo .jtg-title,html body .modula .modula-item.effect-pufrobo p{position:absolute;right:5%;left:5%;padding:10px 0}html body .modula.modula-gallery-initialized .modula-item:hover img,html body .modula.modula-gallery-initialized .modula-items .modula-item.tg-loaded:hover img.pic{opacity:.8}html body .modula .modula-item.effect-pufrobo p{bottom:20%;line-height:1.5;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);letter-spacing:1px}html body .modula .modula-items .modula-item.effect-pufrobo .jtg-title{top:10%;-webkit-transition:-webkit-transform .35s;transition:transform .35s;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}html body .et_pb_module_inner .modula .modula-items .modula-item.effect-pufrobo .jtg-title{-webkit-transition:-webkit-transform .35s!important;transition:transform .35s!important}html body .modula .modula-item.effect-pufrobo:hover .jtg-title{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}html body .modula .modula-item.effect-pufrobo .jtg-title::after{position:absolute;top:80%;left:0;width:100%;height:4px;background:#fff;content:'';-webkit-transform:translate3d(0,40px,0);transform:translate3d(0,40px,0)}html body .modula .modula-item.effect-pufrobo .jtg-title::after,html body .modula .modula-item.effect-pufrobo p{opacity:0;-webkit-transition:opacity .35s,-webkit-transform .35s;transition:opacity .35s,transform .35s}html body .modula .modula-item.effect-pufrobo:hover .jtg-title::after,html body .modula .modula-item.effect-pufrobo:hover p{margin-top:10px;margin-bottom:5px;opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}html body .modula .modula-items .modula-item.effect-pufrobo .figc.no-title.no-description .jtg-title:after{display:none}html body .modula .modula-items .modula-item.effect-appear .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-comodo .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-crafty .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-curtain .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-fluid-up .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-hide .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-lens .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-pufrobo .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-quiet .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-reflex .figc .jtg-title:before,html body .modula .modula-items .modula-item.effect-seemo .figc .jtg-title:before{display:none}html body .modula .modula-items .modula-item>a{cursor:zoom-in}html body .modula-fancybox-container.modula-fancybox-is-open{z-index:99999999}html body .modula-fancybox-share__button--li{background:#0e76a8}html body .modula-fancybox-share__button--wa{background:#25d366}html body .modula.modula-columns .modula-item{display:flex;justify-content:center}html body .modula.modula-columns .modula-item .modula-item-content{position:relative}html body .modula.modula-columns .modula-items.grid-gallery .modula-item .modula-item-content{height:100%}html body .modula.modula-columns .modula-items.grid-gallery.justified-gallery .modula-item .modula-item-content{width:100%}html body .modula.modula-columns .modula-items.grid-gallery.justified-gallery .modula-item .modula-item-content .pic{position:absolute;top:50%;left:50%;margin:0;padding:0;border:none}html body .modula.modula-columns .modula-item.jg-filtered{display:none}html body .modula-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}html body .modula-row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body .modula-row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body .modula-row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body .modula-row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body .modula-row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}html body .modula-row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}@media (min-width:576px){html body .modula-row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body .modula-row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body .modula-row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body .modula-row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body .modula-row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}html body .modula-row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}}@media (min-width:768px){html body .modula-row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body .modula-row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body .modula-row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body .modula-row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body .modula-row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}html body .modula-row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}}@media (min-width:992px){html body .modula-row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body .modula-row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body .modula-row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body .modula-row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body .modula-row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}html body .modula-row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}}@media (min-width:1200px){html body .modula-row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body .modula-row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body .modula-row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body .modula-row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body .modula-row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}html body .modula-row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}}html body .modula .modula-items.grid-gallery .modula-item .figc{height:100%;top:0}html body div.modula-powered{text-align:right;font-size:14px;margin-right:5px;clear:both}html body div.modula-powered svg.modula-logo{width:14px;position:relative;top:3px}html body div.modula-powered svg.modula-logo path{color:#58ab7e!important}html body div.modula-powered svg.modula-logo{display:inline-block}.modula-gallery:not(.modula-gallery-initialized)>.modula-items{visibility:hidden}.modula-gallery.modula-gallery-initialized .modula-items .modula-item{visibility:visible}
assets/css/front/fancybox.css CHANGED
@@ -1,916 +1,916 @@
1
- html body .compensate-for-scrollbar {
2
- overflow: hidden;
3
- }
4
-
5
- html body .modula-fancybox-active {
6
- height: auto;
7
- }
8
-
9
- html body .modula-fancybox-is-hidden {
10
- left: -9999px;
11
- margin: 0;
12
- position: absolute !important;
13
- top: -9999px;
14
- visibility: hidden;
15
- }
16
-
17
- html body .modula-fancybox-container {
18
- -webkit-backface-visibility: hidden;
19
- height: 100%;
20
- left: 0;
21
- outline: none;
22
- position: fixed;
23
- -webkit-tap-highlight-color: transparent;
24
- top: 0;
25
- -ms-touch-action: manipulation;
26
- touch-action: manipulation;
27
- transform: translateZ(0);
28
- width: 100%;
29
- z-index: 99992;
30
- }
31
-
32
- html body .modula-fancybox-container * {
33
- box-sizing: border-box;
34
- }
35
-
36
- html body .modula-fancybox-outer,
37
- html body .modula-fancybox-inner,
38
- html body .modula-fancybox-bg,
39
- html body .modula-fancybox-stage {
40
- bottom: 0;
41
- left: 0;
42
- position: absolute;
43
- right: 0;
44
- top: 0;
45
- }
46
-
47
- html body .modula-fancybox-outer {
48
- -webkit-overflow-scrolling: touch;
49
- overflow-y: auto;
50
- }
51
-
52
- html body .modula-fancybox-bg {
53
- background: rgb(30, 30, 30);
54
- opacity: 0;
55
- transition-duration: inherit;
56
- transition-property: opacity;
57
- transition-timing-function: cubic-bezier(.47, 0, .74, .71);
58
- }
59
-
60
- html body .modula-fancybox-is-open .modula-fancybox-bg {
61
- opacity: .9;
62
- transition-timing-function: cubic-bezier(.22, .61, .36, 1);
63
- }
64
-
65
- html body .modula-fancybox-container .modula-fancybox-infobar,
66
- html body .modula-fancybox-container .modula-fancybox-toolbar,
67
- html body .modula-fancybox-container .modula-fancybox-caption,
68
- html body .modula-fancybox-container .modula-fancybox-navigation .modula-fancybox-button {
69
- direction: ltr;
70
- opacity: 0;
71
- position: absolute;
72
- transition: opacity .25s ease, visibility 0s ease .25s;
73
- visibility: hidden;
74
- z-index: 99997;
75
- }
76
-
77
- html body .modula-fancybox-show-infobar .modula-fancybox-infobar,
78
- html body .modula-fancybox-show-toolbar .modula-fancybox-toolbar,
79
- html body .modula-fancybox-show-caption .modula-fancybox-caption,
80
- html body .modula-fancybox-show-nav .modula-fancybox-navigation .modula-fancybox-button {
81
- opacity: 1;
82
- transition: opacity .25s ease 0s, visibility 0s ease 0s;
83
- visibility: visible;
84
- }
85
-
86
- html body .modula-fancybox-container .modula-fancybox-infobar {
87
- color: #ccc;
88
- font-size: 13px;
89
- -webkit-font-smoothing: subpixel-antialiased;
90
- height: 44px;
91
- left: 0;
92
- line-height: 44px;
93
- min-width: 44px;
94
- mix-blend-mode: difference;
95
- padding: 0 10px;
96
- pointer-events: none;
97
- top: 0;
98
- -webkit-touch-callout: none;
99
- -webkit-user-select: none;
100
- -moz-user-select: none;
101
- -ms-user-select: none;
102
- user-select: none;
103
- }
104
-
105
- html body .modula-fancybox-container .modula-fancybox-toolbar {
106
- right: 0;
107
- top: 0;
108
- }
109
-
110
- html body .modula-fancybox-stage {
111
- direction: ltr;
112
- overflow: visible;
113
- transform: translateZ(0);
114
- z-index: 99994;
115
- }
116
-
117
- html body .modula-fancybox-is-open .modula-fancybox-stage {
118
- overflow: hidden;
119
- }
120
-
121
- html body .modula-fancybox-slide {
122
- -webkit-backface-visibility: hidden;
123
- /* Using without prefix would break IE11 */
124
- display: none;
125
- height: 100%;
126
- left: 0;
127
- outline: none;
128
- overflow: auto;
129
- -webkit-overflow-scrolling: touch;
130
- padding: 44px;
131
- position: absolute;
132
- text-align: center;
133
- top: 0;
134
- transition-property: transform, opacity;
135
- white-space: normal;
136
- width: 100%;
137
- z-index: 99994;
138
- }
139
-
140
- html body .modula-fancybox-slide::before {
141
- content: '';
142
- display: inline-block;
143
- font-size: 0;
144
- height: 100%;
145
- vertical-align: middle;
146
- width: 0;
147
- }
148
-
149
- html body .modula-fancybox-is-sliding .modula-fancybox-slide,
150
- html body .modula-fancybox-slide--previous,
151
- html body .modula-fancybox-slide--current,
152
- html body .modula-fancybox-slide--next {
153
- display: block;
154
- }
155
-
156
- html body .modula-fancybox-slide--image {
157
- overflow: hidden;
158
- padding: 44px 0;
159
- }
160
-
161
- html body .modula-fancybox-slide--image::before {
162
- display: none;
163
- }
164
-
165
- html body .modula-fancybox-slide--html {
166
- padding: 6px;
167
- }
168
-
169
- html body .modula-fancybox-content {
170
- background: #fff;
171
- display: inline-block;
172
- margin: 0;
173
- max-width: 100%;
174
- overflow: auto;
175
- -webkit-overflow-scrolling: touch;
176
- padding: 44px;
177
- position: relative;
178
- text-align: left;
179
- vertical-align: middle;
180
- }
181
-
182
- html body .modula-fancybox-slide--image .modula-fancybox-content {
183
- animation-timing-function: cubic-bezier(.5, 0, .14, 1);
184
- -webkit-backface-visibility: hidden;
185
- background: transparent;
186
- background-repeat: no-repeat;
187
- background-size: 100% 100%;
188
- left: 0;
189
- max-width: none;
190
- overflow: visible;
191
- padding: 0;
192
- position: absolute;
193
- top: 0;
194
- -ms-transform-origin: top left;
195
- transform-origin: top left;
196
- transition-property: transform, opacity;
197
- -webkit-user-select: none;
198
- -moz-user-select: none;
199
- -ms-user-select: none;
200
- user-select: none;
201
- z-index: 99995;
202
- }
203
-
204
- html body .modula-fancybox-can-zoomOut .modula-fancybox-content {
205
- cursor: zoom-out;
206
- }
207
-
208
- html body .modula-fancybox-can-zoomIn .modula-fancybox-content {
209
- cursor: zoom-in;
210
- }
211
-
212
- html body .modula-fancybox-can-swipe .modula-fancybox-content,
213
- html body .modula-fancybox-can-pan .modula-fancybox-content {
214
- cursor: -webkit-grab;
215
- cursor: grab;
216
- }
217
-
218
- html body .modula-fancybox-is-grabbing .modula-fancybox-content {
219
- cursor: -webkit-grabbing;
220
- cursor: grabbing;
221
- }
222
-
223
- html body .modula-fancybox-container [data-selectable='true'] {
224
- cursor: text;
225
- }
226
-
227
- html body .modula-fancybox-image,
228
- html body .modula-fancybox-spaceball {
229
- background: transparent;
230
- border: 0;
231
- height: 100%;
232
- left: 0;
233
- margin: 0;
234
- max-height: none;
235
- max-width: none;
236
- padding: 0;
237
- position: absolute;
238
- top: 0;
239
- -webkit-user-select: none;
240
- -moz-user-select: none;
241
- -ms-user-select: none;
242
- user-select: none;
243
- width: 100%;
244
- }
245
-
246
- html body .modula-fancybox-spaceball {
247
- z-index: 1;
248
- }
249
-
250
- html body .modula-fancybox-slide--video .modula-fancybox-content,
251
- html body .modula-fancybox-slide--map .modula-fancybox-content,
252
- html body .modula-fancybox-slide--pdf .modula-fancybox-content,
253
- html body .modula-fancybox-slide--iframe .modula-fancybox-content {
254
- height: 100%;
255
- overflow: visible;
256
- padding: 0;
257
- width: 100%;
258
- }
259
-
260
- html body .modula-fancybox-slide--video .modula-fancybox-content {
261
- background: #000;
262
- }
263
-
264
- html body .modula-fancybox-slide--map .modula-fancybox-content {
265
- background: #e5e3df;
266
- }
267
-
268
- html body .modula-fancybox-slide--iframe .modula-fancybox-content {
269
- background: #fff;
270
- }
271
-
272
- html body .modula-fancybox-video,
273
- html body .modula-fancybox-iframe {
274
- background: transparent;
275
- border: 0;
276
- display: block;
277
- height: 100%;
278
- margin: 0;
279
- overflow: hidden;
280
- padding: 0;
281
- width: 100%;
282
- }
283
-
284
- /* Fix iOS */
285
- html body .modula-fancybox-iframe {
286
- left: 0;
287
- position: absolute;
288
- top: 0;
289
- }
290
-
291
- html body .modula-fancybox-error {
292
- background: #fff;
293
- cursor: default;
294
- max-width: 400px;
295
- padding: 40px;
296
- width: 100%;
297
- }
298
-
299
- html body .modula-fancybox-error p {
300
- color: #444;
301
- font-size: 16px;
302
- line-height: 20px;
303
- margin: 0;
304
- padding: 0;
305
- }
306
-
307
- /* Buttons */
308
-
309
- html body .modula-fancybox-container .modula-fancybox-button {
310
- background: rgba(30, 30, 30, .6);
311
- border: 0;
312
- border-radius: 0;
313
- box-shadow: none;
314
- cursor: pointer;
315
- display: inline-block;
316
- height: 44px;
317
- margin: 0;
318
- padding: 10px;
319
- position: relative;
320
- transition: color .2s;
321
- vertical-align: top;
322
- visibility: inherit;
323
- width: 44px;
324
- }
325
-
326
- html body .modula-fancybox-container .modula-fancybox-button,
327
- html body .modula-fancybox-container .modula-fancybox-button:visited,
328
- html body .modula-fancybox-container .modula-fancybox-button:link {
329
- color: #ccc;
330
- }
331
-
332
- html body .modula-fancybox-container .modula-fancybox-button:hover {
333
- color: #fff;
334
- box-shadow:none;
335
- }
336
-
337
- html body .modula-fancybox-container .modula-fancybox-button:focus {
338
- outline: none;
339
- }
340
-
341
- html body .modula-fancybox-container .modula-fancybox-button.modula-fancybox-focus {
342
- outline: 1px dotted;
343
- }
344
-
345
- html body .modula-fancybox-container .modula-fancybox-button[disabled],
346
- html body .modula-fancybox-container .modula-fancybox-button[disabled]:hover {
347
- color: #888;
348
- cursor: default;
349
- outline: none;
350
- }
351
-
352
- /* Fix IE11 */
353
- html body .modula-fancybox-container .modula-fancybox-button div {
354
- height: 100%;
355
- }
356
-
357
- html body .modula-fancybox-container .modula-fancybox-button svg {
358
- display: block;
359
- height: 100%;
360
- overflow: visible;
361
- position: relative;
362
- width: 100%;
363
- }
364
-
365
- html body .modula-fancybox-container .modula-fancybox-button svg path {
366
- fill: currentColor;
367
- stroke-width: 0;
368
- }
369
-
370
- html body .modula-fancybox-container .modula-fancybox-button--play svg:nth-child(2),
371
- html body .modula-fancybox-container .modula-fancybox-button--fsenter svg:nth-child(2) {
372
- display: none;
373
- }
374
-
375
- html body .modula-fancybox-container .modula-fancybox-button--pause svg:nth-child(1),
376
- html body .modula-fancybox-container .modula-fancybox-button--fsexit svg:nth-child(1) {
377
- display: none;
378
- }
379
-
380
- html body .modula-fancybox-container .modula-fancybox-progress {
381
- background: #ff5268;
382
- height: 2px;
383
- left: 0;
384
- position: absolute;
385
- right: 0;
386
- top: 0;
387
- -ms-transform: scaleX(0);
388
- transform: scaleX(0);
389
- -ms-transform-origin: 0;
390
- transform-origin: 0;
391
- transition-property: transform;
392
- transition-timing-function: linear;
393
- z-index: 99998;
394
- }
395
-
396
- /* Close button on the top right corner of html content */
397
-
398
- html body .modula-fancybox-container .modula-fancybox-close-small {
399
- background: transparent;
400
- border: 0;
401
- border-radius: 0;
402
- color: #ccc;
403
- cursor: pointer;
404
- opacity: .8;
405
- padding: 8px;
406
- position: absolute;
407
- right: -12px;
408
- top: -44px;
409
- z-index: 401;
410
- }
411
-
412
- html body .modula-fancybox-container .modula-fancybox-close-small:hover {
413
- color: #fff;
414
- opacity: 1;
415
- }
416
-
417
- html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-slide--html .modula-fancybox-close-small {
418
- color: #000;
419
- padding: 10px;
420
- right: 0;
421
- top: 0;
422
- background-color:transparent;
423
- }
424
-
425
- html body .modula-fancybox-slide--image.modula-fancybox-is-scaling .modula-fancybox-content {
426
- overflow: hidden;
427
- }
428
-
429
- html body .modula-fancybox-is-scaling .modula-fancybox-close-small,
430
- html body .modula-fancybox-is-zoomable.modula-fancybox-can-pan .modula-fancybox-close-small {
431
- display: none;
432
- }
433
-
434
- /* Navigation arrows */
435
-
436
- html body .modula-fancybox-navigation .modula-fancybox-button {
437
- background-clip: content-box;
438
- height: 100px;
439
- opacity: 0;
440
- position: absolute;
441
- top: calc(50% - 50px);
442
- width: 70px;
443
- }
444
-
445
- html body .modula-fancybox-navigation .modula-fancybox-button div {
446
- padding: 7px;
447
- }
448
-
449
- html body .modula-fancybox-navigation .modula-fancybox-button--arrow_left {
450
- left: 0;
451
- left: env(safe-area-inset-left);
452
- padding: 31px 26px 31px 6px;
453
- }
454
-
455
- html body .modula-fancybox-navigation .modula-fancybox-button--arrow_right {
456
- padding: 31px 6px 31px 26px;
457
- right: 0;
458
- right: env(safe-area-inset-right);
459
- }
460
-
461
- /* Caption */
462
-
463
- html body .modula-fancybox-caption {
464
- background: linear-gradient(to top,
465
- rgba(0, 0, 0, .85) 0%,
466
- rgba(0, 0, 0, .3) 50%,
467
- rgba(0, 0, 0, .15) 65%,
468
- rgba(0, 0, 0, .075) 75.5%,
469
- rgba(0, 0, 0, .037) 82.85%,
470
- rgba(0, 0, 0, .019) 88%,
471
- rgba(0, 0, 0, 0) 100%);
472
- bottom: 0;
473
- color: #eee;
474
- font-size: 14px;
475
- font-weight: 400;
476
- left: 0;
477
- line-height: 1.5;
478
- padding: 75px 44px 25px 44px;
479
- pointer-events: none;
480
- right: 0;
481
- text-align: center;
482
- z-index: 99996;
483
- }
484
-
485
- @supports (padding: max(0px)) {
486
- html body .modula-fancybox-caption {
487
- padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
488
- }
489
- }
490
-
491
- html body .modula-fancybox-caption--separate {
492
- margin-top: -50px;
493
- }
494
-
495
- html body .modula-fancybox-caption__body {
496
- max-height: 50vh;
497
- overflow: auto;
498
- pointer-events: all;
499
- }
500
-
501
- html body .modula-fancybox-caption a,
502
- html body .modula-fancybox-caption a:link,
503
- html body .modula-fancybox-caption a:visited {
504
- color: #ccc;
505
- text-decoration: none;
506
- }
507
-
508
- html body .modula-fancybox-caption a:hover {
509
- color: #fff;
510
- text-decoration: underline;
511
- }
512
-
513
- /* Loading indicator */
514
-
515
- html body .modula-fancybox-loading {
516
- animation: fancybox-rotate 1s linear infinite;
517
- background: transparent;
518
- border: 4px solid #888;
519
- border-bottom-color: #fff;
520
- border-radius: 50%;
521
- height: 50px;
522
- left: 50%;
523
- margin: -25px 0 0 -25px;
524
- opacity: .7;
525
- padding: 0;
526
- position: absolute;
527
- top: 50%;
528
- width: 50px;
529
- z-index: 99999;
530
- }
531
-
532
- @keyframes fancybox-rotate {
533
- 100% {
534
- transform: rotate(360deg);
535
- }
536
- }
537
-
538
- /* Transition effects */
539
-
540
- html body .modula-fancybox-animated {
541
- transition-timing-function: cubic-bezier(0, 0, .25, 1);
542
- }
543
-
544
- /* transitionEffect: slide */
545
-
546
- html body .modula-fancybox-fx-slide.modula-fancybox-slide--previous {
547
- opacity: 0;
548
- transform: translate3d(-100%, 0, 0);
549
- }
550
-
551
- html body .modula-fancybox-fx-slide.modula-fancybox-slide--next {
552
- opacity: 0;
553
- transform: translate3d(100%, 0, 0);
554
- }
555
-
556
- html body .modula-fancybox-fx-slide.modula-fancybox-slide--current {
557
- opacity: 1;
558
- transform: translate3d(0, 0, 0);
559
- }
560
-
561
- /* transitionEffect: fade */
562
-
563
- html body .modula-fancybox-fx-fade.modula-fancybox-slide--previous,
564
- html body .modula-fancybox-fx-fade.modula-fancybox-slide--next {
565
- opacity: 0;
566
- transition-timing-function: cubic-bezier(.19, 1, .22, 1);
567
- }
568
-
569
- html body .modula-fancybox-fx-fade.modula-fancybox-slide--current {
570
- opacity: 1;
571
- }
572
-
573
- /* transitionEffect: zoom-in-out */
574
-
575
- html body .modula-fancybox-fx-zoom-in-out.modula-fancybox-slide--previous {
576
- opacity: 0;
577
- transform: scale3d(1.5, 1.5, 1.5);
578
- }
579
-
580
- html body .modula-fancybox-fx-zoom-in-out.modula-fancybox-slide--next {
581
- opacity: 0;
582
- transform: scale3d(.5, .5, .5);
583
- }
584
-
585
- html body .modula-fancybox-fx-zoom-in-out.modula-fancybox-slide--current {
586
- opacity: 1;
587
- transform: scale3d(1, 1, 1);
588
- }
589
-
590
- /* transitionEffect: rotate */
591
-
592
- html body .modula-fancybox-fx-rotate.modula-fancybox-slide--previous {
593
- opacity: 0;
594
- -ms-transform: rotate(-360deg);
595
- transform: rotate(-360deg);
596
- }
597
-
598
- html body .modula-fancybox-fx-rotate.modula-fancybox-slide--next {
599
- opacity: 0;
600
- -ms-transform: rotate(360deg);
601
- transform: rotate(360deg);
602
- }
603
-
604
- html body .modula-fancybox-fx-rotate.modula-fancybox-slide--current {
605
- opacity: 1;
606
- -ms-transform: rotate(0deg);
607
- transform: rotate(0deg);
608
- }
609
-
610
- /* transitionEffect: circular */
611
-
612
- html body .modula-fancybox-fx-circular.modula-fancybox-slide--previous {
613
- opacity: 0;
614
- transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
615
- }
616
-
617
- html body .modula-fancybox-fx-circular.modula-fancybox-slide--next {
618
- opacity: 0;
619
- transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
620
- }
621
-
622
- html body .modula-fancybox-fx-circular.modula-fancybox-slide--current {
623
- opacity: 1;
624
- transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
625
- }
626
-
627
- /* transitionEffect: tube */
628
-
629
- html body .modula-fancybox-fx-tube.modula-fancybox-slide--previous {
630
- transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
631
- }
632
-
633
- html body .modula-fancybox-fx-tube.modula-fancybox-slide--next {
634
- transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
635
- }
636
-
637
- html body .modula-fancybox-fx-tube.modula-fancybox-slide--current {
638
- transform: translate3d(0, 0, 0) scale(1);
639
- }
640
-
641
- /* Styling for Small-Screen Devices */
642
- @media all and (max-height: 576px) {
643
- html body .modula-fancybox-slide {
644
- padding-left: 6px;
645
- padding-right: 6px;
646
- }
647
-
648
- html body .modula-fancybox-slide--image {
649
- padding: 6px 0;
650
- }
651
-
652
- html body .modula-fancybox-close-small {
653
- right: -6px;
654
- }
655
-
656
- html body .modula-fancybox-slide--image .modula-fancybox-close-small {
657
- background: #4e4e4e;
658
- color: #f2f4f6;
659
- height: 36px;
660
- opacity: 1;
661
- padding: 6px;
662
- right: 0;
663
- top: 0;
664
- width: 36px;
665
- }
666
-
667
- html body .modula-fancybox-caption {
668
- padding-left: 12px;
669
- padding-right: 12px;
670
- }
671
-
672
- @supports (padding: max(0px)) {
673
- html body .modula-fancybox-caption {
674
- padding-left: max(12px, env(safe-area-inset-left));
675
- padding-right: max(12px, env(safe-area-inset-right));
676
- }
677
- }
678
- }
679
- /* Share */
680
-
681
- html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share {
682
- background: #f4f4f4;
683
- border-radius: 3px;
684
- max-width: 90%;
685
- padding: 30px;
686
- text-align: center;
687
- }
688
-
689
- html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share h1 {
690
- color: #222;
691
- font-size: 35px;
692
- font-weight: 700;
693
- margin: 0 0 20px 0;
694
- }
695
- .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share h1:before,
696
- .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share h1:after {
697
- display:none;
698
- }
699
-
700
-
701
- html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share p {
702
- margin: 0;
703
- padding: 0;
704
- }
705
-
706
- html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button {
707
- border: 0;
708
- border-radius: 3px;
709
- display: inline-block;
710
- font-size: 14px;
711
- font-weight: 700;
712
- line-height: 40px;
713
- margin: 0 5px 10px 5px;
714
- min-width: 130px;
715
- padding: 0 15px;
716
- text-decoration: none;
717
- transition: all .2s;
718
- -webkit-user-select: none;
719
- -moz-user-select: none;
720
- -ms-user-select: none;
721
- user-select: none;
722
- white-space: nowrap;
723
- }
724
-
725
- html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button:visited,
726
- html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button:link {
727
- color: #fff;
728
- }
729
-
730
- html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button:hover {
731
- text-decoration: none;
732
- }
733
-
734
- html body .modula-fancybox-share__button--fb {
735
- background: #3b5998;
736
- }
737
-
738
- html body .modula-fancybox-share__button--fb:hover {
739
- background: #344e86;
740
- }
741
-
742
- html body .modula-fancybox-share__button--pt {
743
- background: #bd081d;
744
- }
745
-
746
- html body .modula-fancybox-share__button--pt:hover {
747
- background: #aa0719;
748
- }
749
-
750
- html body .modula-fancybox-share__button--tw {
751
- background: #1da1f2;
752
- }
753
-
754
- html body .modula-fancybox-share__button--tw:hover {
755
- background: #0d95e8;
756
- }
757
-
758
- html body .modula-fancybox-share__button--email {
759
- background: #99cc33;
760
- }
761
-
762
- html body .modula-fancybox-share__button--email:hover {
763
- background: #7aa329;
764
- }
765
-
766
- html body .modula-fancybox-share__button svg {
767
- height: 25px;
768
- margin-right: 7px;
769
- position: relative;
770
- top: -1px;
771
- vertical-align: middle;
772
- width: 25px;
773
- display:inline-block;
774
- }
775
-
776
- html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button svg path {
777
- fill: #fff;
778
- }
779
-
780
- html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share .modula-fancybox-share__input {
781
- background: transparent;
782
- border: 0;
783
- border-bottom: 1px solid #d7d7d7;
784
- border-radius: 0;
785
- color: #5d5b5b;
786
- font-size: 14px;
787
- margin: 10px 0 0 0;
788
- outline: none;
789
- padding: 10px 15px;
790
- width: 100%;
791
- }
792
- /* Thumbs */
793
-
794
- html body .modula-fancybox-container .modula-fancybox-thumbs {
795
- background: #ddd;
796
- bottom: 0;
797
- display: none;
798
- margin: 0;
799
- -webkit-overflow-scrolling: touch;
800
- -ms-overflow-style: -ms-autohiding-scrollbar;
801
- padding: 2px 2px 4px 2px;
802
- position: absolute;
803
- right: 0;
804
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
805
- top: 0;
806
- /*width: 212px;*/
807
- z-index: 99995;
808
- }
809
-
810
- html body .modula-fancybox-thumbs-x {
811
- overflow-x: auto;
812
- overflow-y: hidden;
813
- }
814
-
815
- html body .modula-fancybox-show-thumbs .modula-fancybox-thumbs {
816
- display: block;
817
- }
818
-
819
- html body .modula-fancybox-show-thumbs .modula-fancybox-inner {
820
- right: 212px;
821
- }
822
-
823
- html body .modula-fancybox-thumbs__list {
824
- font-size: 0;
825
- height: 100%;
826
- list-style: none;
827
- margin: 0;
828
- overflow-x: hidden;
829
- overflow-y: auto;
830
- padding: 0;
831
- position: relative;
832
- white-space: nowrap;
833
- width: 100%;
834
- }
835
-
836
- html body .modula-fancybox-thumbs-x .modula-fancybox-thumbs__list {
837
- overflow: hidden;
838
- }
839
-
840
- html body .modula-fancybox-thumbs-y .modula-fancybox-thumbs__list::-webkit-scrollbar {
841
- width: 7px;
842
- }
843
-
844
- html body .modula-fancybox-thumbs-y .modula-fancybox-thumbs__list::-webkit-scrollbar-track {
845
- background: #fff;
846
- border-radius: 10px;
847
- box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
848
- }
849
-
850
- html body .modula-fancybox-thumbs-y .modula-fancybox-thumbs__list::-webkit-scrollbar-thumb {
851
- background: #2a2a2a;
852
- border-radius: 10px;
853
- }
854
-
855
- html body .modula-fancybox-thumbs__list a {
856
- -webkit-backface-visibility: hidden;
857
- backface-visibility: hidden;
858
- background-color: rgba(0, 0, 0, .1);
859
- background-position: center center;
860
- background-repeat: no-repeat;
861
- background-size: cover;
862
- cursor: pointer;
863
- float: left;
864
- height: 75px;
865
- margin: 2px;
866
- max-height: calc(100% - 8px);
867
- max-width: calc(50% - 4px);
868
- outline: none;
869
- overflow: hidden;
870
- padding: 0;
871
- position: relative;
872
- -webkit-tap-highlight-color: transparent;
873
- width: 100px;
874
- }
875
-
876
- html body .modula-fancybox-thumbs__list a::before {
877
- border: 6px solid #ff5268;
878
- bottom: 0;
879
- content: '';
880
- left: 0;
881
- opacity: 0;
882
- position: absolute;
883
- right: 0;
884
- top: 0;
885
- transition: all .2s cubic-bezier(.25, .46, .45, .94);
886
- z-index: 99991;
887
- }
888
-
889
- html body .modula-fancybox-thumbs__list a:focus::before {
890
- opacity: .5;
891
- }
892
-
893
- html body .modula-fancybox-thumbs__list a.modula-fancybox-thumbs-active::before {
894
- opacity: 1;
895
- }
896
-
897
- /* Styling for Small-Screen Devices */
898
- @media all and (max-width: 576px) {
899
- html body .modula-fancybox-thumbs {
900
- width: 110px;
901
- }
902
-
903
- html body .modula-fancybox-show-thumbs .modula-fancybox-inner {
904
- right: 110px;
905
- }
906
-
907
- html body .modula-fancybox-thumbs__list a {
908
- max-width: calc(100% - 10px);
909
- }
910
- }
911
-
912
- @media all and (min-width:577px){
913
- html body .modula-fancybox-container .modula-fancybox-thumbs {
914
- width : 212px;
915
- }
916
  }
1
+ html body .compensate-for-scrollbar {
2
+ overflow: hidden;
3
+ }
4
+
5
+ html body .modula-fancybox-active {
6
+ height: auto;
7
+ }
8
+
9
+ html body .modula-fancybox-is-hidden {
10
+ left: -9999px;
11
+ margin: 0;
12
+ position: absolute !important;
13
+ top: -9999px;
14
+ visibility: hidden;
15
+ }
16
+
17
+ html body .modula-fancybox-container {
18
+ -webkit-backface-visibility: hidden;
19
+ height: 100%;
20
+ left: 0;
21
+ outline: none;
22
+ position: fixed;
23
+ -webkit-tap-highlight-color: transparent;
24
+ top: 0;
25
+ -ms-touch-action: manipulation;
26
+ touch-action: manipulation;
27
+ transform: translateZ(0);
28
+ width: 100%;
29
+ z-index: 99992;
30
+ }
31
+
32
+ html body .modula-fancybox-container * {
33
+ box-sizing: border-box;
34
+ }
35
+
36
+ html body .modula-fancybox-outer,
37
+ html body .modula-fancybox-inner,
38
+ html body .modula-fancybox-bg,
39
+ html body .modula-fancybox-stage {
40
+ bottom: 0;
41
+ left: 0;
42
+ position: absolute;
43
+ right: 0;
44
+ top: 0;
45
+ }
46
+
47
+ html body .modula-fancybox-outer {
48
+ -webkit-overflow-scrolling: touch;
49
+ overflow-y: auto;
50
+ }
51
+
52
+ html body .modula-fancybox-bg {
53
+ background: rgb(30, 30, 30);
54
+ opacity: 0;
55
+ transition-duration: inherit;
56
+ transition-property: opacity;
57
+ transition-timing-function: cubic-bezier(.47, 0, .74, .71);
58
+ }
59
+
60
+ html body .modula-fancybox-is-open .modula-fancybox-bg {
61
+ opacity: .9;
62
+ transition-timing-function: cubic-bezier(.22, .61, .36, 1);
63
+ }
64
+
65
+ html body .modula-fancybox-container .modula-fancybox-infobar,
66
+ html body .modula-fancybox-container .modula-fancybox-toolbar,
67
+ html body .modula-fancybox-container .modula-fancybox-caption,
68
+ html body .modula-fancybox-container .modula-fancybox-navigation .modula-fancybox-button {
69
+ direction: ltr;
70
+ opacity: 0;
71
+ position: absolute;
72
+ transition: opacity .25s ease, visibility 0s ease .25s;
73
+ visibility: hidden;
74
+ z-index: 99997;
75
+ }
76
+
77
+ html body .modula-fancybox-show-infobar .modula-fancybox-infobar,
78
+ html body .modula-fancybox-show-toolbar .modula-fancybox-toolbar,
79
+ html body .modula-fancybox-show-caption .modula-fancybox-caption,
80
+ html body .modula-fancybox-show-nav .modula-fancybox-navigation .modula-fancybox-button {
81
+ opacity: 1;
82
+ transition: opacity .25s ease 0s, visibility 0s ease 0s;
83
+ visibility: visible;
84
+ }
85
+
86
+ html body .modula-fancybox-container .modula-fancybox-infobar {
87
+ color: #ccc;
88
+ font-size: 13px;
89
+ -webkit-font-smoothing: subpixel-antialiased;
90
+ height: 44px;
91
+ left: 0;
92
+ line-height: 44px;
93
+ min-width: 44px;
94
+ mix-blend-mode: difference;
95
+ padding: 0 10px;
96
+ pointer-events: none;
97
+ top: 0;
98
+ -webkit-touch-callout: none;
99
+ -webkit-user-select: none;
100
+ -moz-user-select: none;
101
+ -ms-user-select: none;
102
+ user-select: none;
103
+ }
104
+
105
+ html body .modula-fancybox-container .modula-fancybox-toolbar {
106
+ right: 0;
107
+ top: 0;
108
+ }
109
+
110
+ html body .modula-fancybox-stage {
111
+ direction: ltr;
112
+ overflow: visible;
113
+ transform: translateZ(0);
114
+ z-index: 99994;
115
+ }
116
+
117
+ html body .modula-fancybox-is-open .modula-fancybox-stage {
118
+ overflow: hidden;
119
+ }
120
+
121
+ html body .modula-fancybox-slide {
122
+ -webkit-backface-visibility: hidden;
123
+ /* Using without prefix would break IE11 */
124
+ display: none;
125
+ height: 100%;
126
+ left: 0;
127
+ outline: none;
128
+ overflow: auto;
129
+ -webkit-overflow-scrolling: touch;
130
+ padding: 44px;
131
+ position: absolute;
132
+ text-align: center;
133
+ top: 0;
134
+ transition-property: transform, opacity;
135
+ white-space: normal;
136
+ width: 100%;
137
+ z-index: 99994;
138
+ }
139
+
140
+ html body .modula-fancybox-slide::before {
141
+ content: '';
142
+ display: inline-block;
143
+ font-size: 0;
144
+ height: 100%;
145
+ vertical-align: middle;
146
+ width: 0;
147
+ }
148
+
149
+ html body .modula-fancybox-is-sliding .modula-fancybox-slide,
150
+ html body .modula-fancybox-slide--previous,
151
+ html body .modula-fancybox-slide--current,
152
+ html body .modula-fancybox-slide--next {
153
+ display: block;
154
+ }
155
+
156
+ html body .modula-fancybox-slide--image {
157
+ overflow: hidden;
158
+ padding: 44px 0;
159
+ }
160
+
161
+ html body .modula-fancybox-slide--image::before {
162
+ display: none;
163
+ }
164
+
165
+ html body .modula-fancybox-slide--html {
166
+ padding: 6px;
167
+ }
168
+
169
+ html body .modula-fancybox-content {
170
+ background: #fff;
171
+ display: inline-block;
172
+ margin: 0;
173
+ max-width: 100%;
174
+ overflow: auto;
175
+ -webkit-overflow-scrolling: touch;
176
+ padding: 44px;
177
+ position: relative;
178
+ text-align: left;
179
+ vertical-align: middle;
180
+ }
181
+
182
+ html body .modula-fancybox-slide--image .modula-fancybox-content {
183
+ animation-timing-function: cubic-bezier(.5, 0, .14, 1);
184
+ -webkit-backface-visibility: hidden;
185
+ background: transparent;
186
+ background-repeat: no-repeat;
187
+ background-size: 100% 100%;
188
+ left: 0;
189
+ max-width: none;
190
+ overflow: visible;
191
+ padding: 0;
192
+ position: absolute;
193
+ top: 0;
194
+ -ms-transform-origin: top left;
195
+ transform-origin: top left;
196
+ transition-property: transform, opacity;
197
+ -webkit-user-select: none;
198
+ -moz-user-select: none;
199
+ -ms-user-select: none;
200
+ user-select: none;
201
+ z-index: 99995;
202
+ }
203
+
204
+ html body .modula-fancybox-can-zoomOut .modula-fancybox-content {
205
+ cursor: zoom-out;
206
+ }
207
+
208
+ html body .modula-fancybox-can-zoomIn .modula-fancybox-content {
209
+ cursor: zoom-in;
210
+ }
211
+
212
+ html body .modula-fancybox-can-swipe .modula-fancybox-content,
213
+ html body .modula-fancybox-can-pan .modula-fancybox-content {
214
+ cursor: -webkit-grab;
215
+ cursor: grab;
216
+ }
217
+
218
+ html body .modula-fancybox-is-grabbing .modula-fancybox-content {
219
+ cursor: -webkit-grabbing;
220
+ cursor: grabbing;
221
+ }
222
+
223
+ html body .modula-fancybox-container [data-selectable='true'] {
224
+ cursor: text;
225
+ }
226
+
227
+ html body .modula-fancybox-image,
228
+ html body .modula-fancybox-spaceball {
229
+ background: transparent;
230
+ border: 0;
231
+ height: 100%;
232
+ left: 0;
233
+ margin: 0;
234
+ max-height: none;
235
+ max-width: none;
236
+ padding: 0;
237
+ position: absolute;
238
+ top: 0;
239
+ -webkit-user-select: none;
240
+ -moz-user-select: none;
241
+ -ms-user-select: none;
242
+ user-select: none;
243
+ width: 100%;
244
+ }
245
+
246
+ html body .modula-fancybox-spaceball {
247
+ z-index: 1;
248
+ }
249
+
250
+ html body .modula-fancybox-slide--video .modula-fancybox-content,
251
+ html body .modula-fancybox-slide--map .modula-fancybox-content,
252
+ html body .modula-fancybox-slide--pdf .modula-fancybox-content,
253
+ html body .modula-fancybox-slide--iframe .modula-fancybox-content {
254
+ height: 100%;
255
+ overflow: visible;
256
+ padding: 0;
257
+ width: 100%;
258
+ }
259
+
260
+ html body .modula-fancybox-slide--video .modula-fancybox-content {
261
+ background: #000;
262
+ }
263
+
264
+ html body .modula-fancybox-slide--map .modula-fancybox-content {
265
+ background: #e5e3df;
266
+ }
267
+
268
+ html body .modula-fancybox-slide--iframe .modula-fancybox-content {
269
+ background: #fff;
270
+ }
271
+
272
+ html body .modula-fancybox-video,
273
+ html body .modula-fancybox-iframe {
274
+ background: transparent;
275
+ border: 0;
276
+ display: block;
277
+ height: 100%;
278
+ margin: 0;
279
+ overflow: hidden;
280
+ padding: 0;
281
+ width: 100%;
282
+ }
283
+
284
+ /* Fix iOS */
285
+ html body .modula-fancybox-iframe {
286
+ left: 0;
287
+ position: absolute;
288
+ top: 0;
289
+ }
290
+
291
+ html body .modula-fancybox-error {
292
+ background: #fff;
293
+ cursor: default;
294
+ max-width: 400px;
295
+ padding: 40px;
296
+ width: 100%;
297
+ }
298
+
299
+ html body .modula-fancybox-error p {
300
+ color: #444;
301
+ font-size: 16px;
302
+ line-height: 20px;
303
+ margin: 0;
304
+ padding: 0;
305
+ }
306
+
307
+ /* Buttons */
308
+
309
+ html body .modula-fancybox-container .modula-fancybox-button {
310
+ background: rgba(30, 30, 30, .6);
311
+ border: 0;
312
+ border-radius: 0;
313
+ box-shadow: none;
314
+ cursor: pointer;
315
+ display: inline-block;
316
+ height: 44px;
317
+ margin: 0;
318
+ padding: 10px;
319
+ position: relative;
320
+ transition: color .2s;
321
+ vertical-align: top;
322
+ visibility: inherit;
323
+ width: 44px;
324
+ }
325
+
326
+ html body .modula-fancybox-container .modula-fancybox-button,
327
+ html body .modula-fancybox-container .modula-fancybox-button:visited,
328
+ html body .modula-fancybox-container .modula-fancybox-button:link {
329
+ color: #ccc;
330
+ }
331
+
332
+ html body .modula-fancybox-container .modula-fancybox-button:hover {
333
+ color: #fff;
334
+ box-shadow:none;
335
+ }
336
+
337
+ html body .modula-fancybox-container .modula-fancybox-button:focus {
338
+ outline: none;
339
+ }
340
+
341
+ html body .modula-fancybox-container .modula-fancybox-button.modula-fancybox-focus {
342
+ outline: 1px dotted;
343
+ }
344
+
345
+ html body .modula-fancybox-container .modula-fancybox-button[disabled],
346
+ html body .modula-fancybox-container .modula-fancybox-button[disabled]:hover {
347
+ color: #888;
348
+ cursor: default;
349
+ outline: none;
350
+ }
351
+
352
+ /* Fix IE11 */
353
+ html body .modula-fancybox-container .modula-fancybox-button div {
354
+ height: 100%;
355
+ }
356
+
357
+ html body .modula-fancybox-container .modula-fancybox-button svg {
358
+ display: block;
359
+ height: 100%;
360
+ overflow: visible;
361
+ position: relative;
362
+ width: 100%;
363
+ }
364
+
365
+ html body .modula-fancybox-container .modula-fancybox-button svg path {
366
+ fill: currentColor;
367
+ stroke-width: 0;
368
+ }
369
+
370
+ html body .modula-fancybox-container .modula-fancybox-button--play svg:nth-child(2),
371
+ html body .modula-fancybox-container .modula-fancybox-button--fsenter svg:nth-child(2) {
372
+ display: none;
373
+ }
374
+
375
+ html body .modula-fancybox-container .modula-fancybox-button--pause svg:nth-child(1),
376
+ html body .modula-fancybox-container .modula-fancybox-button--fsexit svg:nth-child(1) {
377
+ display: none;
378
+ }
379
+
380
+ html body .modula-fancybox-container .modula-fancybox-progress {
381
+ background: #ff5268;
382
+ height: 2px;
383
+ left: 0;
384
+ position: absolute;
385
+ right: 0;
386
+ top: 0;
387
+ -ms-transform: scaleX(0);
388
+ transform: scaleX(0);
389
+ -ms-transform-origin: 0;
390
+ transform-origin: 0;
391
+ transition-property: transform;
392
+ transition-timing-function: linear;
393
+ z-index: 99998;
394
+ }
395
+
396
+ /* Close button on the top right corner of html content */
397
+
398
+ html body .modula-fancybox-container .modula-fancybox-close-small {
399
+ background: transparent;
400
+ border: 0;
401
+ border-radius: 0;
402
+ color: #ccc;
403
+ cursor: pointer;
404
+ opacity: .8;
405
+ padding: 8px;
406
+ position: absolute;
407
+ right: -12px;
408
+ top: -44px;
409
+ z-index: 401;
410
+ }
411
+
412
+ html body .modula-fancybox-container .modula-fancybox-close-small:hover {
413
+ color: #fff;
414
+ opacity: 1;
415
+ }
416
+
417
+ html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-slide--html .modula-fancybox-close-small {
418
+ color: #000;
419
+ padding: 10px;
420
+ right: 0;
421
+ top: 0;
422
+ background-color:transparent;
423
+ }
424
+
425
+ html body .modula-fancybox-slide--image.modula-fancybox-is-scaling .modula-fancybox-content {
426
+ overflow: hidden;
427
+ }
428
+
429
+ html body .modula-fancybox-is-scaling .modula-fancybox-close-small,
430
+ html body .modula-fancybox-is-zoomable.modula-fancybox-can-pan .modula-fancybox-close-small {
431
+ display: none;
432
+ }
433
+
434
+ /* Navigation arrows */
435
+
436
+ html body .modula-fancybox-navigation .modula-fancybox-button {
437
+ background-clip: content-box;
438
+ height: 100px;
439
+ opacity: 0;
440
+ position: absolute;
441
+ top: calc(50% - 50px);
442
+ width: 70px;
443
+ }
444
+
445
+ html body .modula-fancybox-navigation .modula-fancybox-button div {
446
+ padding: 7px;
447
+ }
448
+
449
+ html body .modula-fancybox-navigation .modula-fancybox-button--arrow_left {
450
+ left: 0;
451
+ left: env(safe-area-inset-left);
452
+ padding: 31px 26px 31px 6px;
453
+ }
454
+
455
+ html body .modula-fancybox-navigation .modula-fancybox-button--arrow_right {
456
+ padding: 31px 6px 31px 26px;
457
+ right: 0;
458
+ right: env(safe-area-inset-right);
459
+ }
460
+
461
+ /* Caption */
462
+
463
+ html body .modula-fancybox-caption {
464
+ background: linear-gradient(to top,
465
+ rgba(0, 0, 0, .85) 0%,
466
+ rgba(0, 0, 0, .3) 50%,
467
+ rgba(0, 0, 0, .15) 65%,
468
+ rgba(0, 0, 0, .075) 75.5%,
469
+ rgba(0, 0, 0, .037) 82.85%,
470
+ rgba(0, 0, 0, .019) 88%,
471
+ rgba(0, 0, 0, 0) 100%);
472
+ bottom: 0;
473
+ color: #eee;
474
+ font-size: 14px;
475
+ font-weight: 400;
476
+ left: 0;
477
+ line-height: 1.5;
478
+ padding: 75px 44px 25px 44px;
479
+ pointer-events: none;
480
+ right: 0;
481
+ text-align: center;
482
+ z-index: 99996;
483
+ }
484
+
485
+ @supports (padding: max(0px)) {
486
+ html body .modula-fancybox-caption {
487
+ padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
488
+ }
489
+ }
490
+
491
+ html body .modula-fancybox-caption--separate {
492
+ margin-top: -50px;
493
+ }
494
+
495
+ html body .modula-fancybox-caption__body {
496
+ max-height: 50vh;
497
+ overflow: auto;
498
+ pointer-events: all;
499
+ }
500
+
501
+ html body .modula-fancybox-caption a,
502
+ html body .modula-fancybox-caption a:link,
503
+ html body .modula-fancybox-caption a:visited {
504
+ color: #ccc;
505
+ text-decoration: none;
506
+ }
507
+
508
+ html body .modula-fancybox-caption a:hover {
509
+ color: #fff;
510
+ text-decoration: underline;
511
+ }
512
+
513
+ /* Loading indicator */
514
+
515
+ html body .modula-fancybox-loading {
516
+ animation: fancybox-rotate 1s linear infinite;
517
+ background: transparent;
518
+ border: 4px solid #888;
519
+ border-bottom-color: #fff;
520
+ border-radius: 50%;
521
+ height: 50px;
522
+ left: 50%;
523
+ margin: -25px 0 0 -25px;
524
+ opacity: .7;
525
+ padding: 0;
526
+ position: absolute;
527
+ top: 50%;
528
+ width: 50px;
529
+ z-index: 99999;
530
+ }
531
+
532
+ @keyframes fancybox-rotate {
533
+ 100% {
534
+ transform: rotate(360deg);
535
+ }
536
+ }
537
+
538
+ /* Transition effects */
539
+
540
+ html body .modula-fancybox-animated {
541
+ transition-timing-function: cubic-bezier(0, 0, .25, 1);
542
+ }
543
+
544
+ /* transitionEffect: slide */
545
+
546
+ html body .modula-fancybox-fx-slide.modula-fancybox-slide--previous {
547
+ opacity: 0;
548
+ transform: translate3d(-100%, 0, 0);
549
+ }
550
+
551
+ html body .modula-fancybox-fx-slide.modula-fancybox-slide--next {
552
+ opacity: 0;
553
+ transform: translate3d(100%, 0, 0);
554
+ }
555
+
556
+ html body .modula-fancybox-fx-slide.modula-fancybox-slide--current {
557
+ opacity: 1;
558
+ transform: translate3d(0, 0, 0);
559
+ }
560
+
561
+ /* transitionEffect: fade */
562
+
563
+ html body .modula-fancybox-fx-fade.modula-fancybox-slide--previous,
564
+ html body .modula-fancybox-fx-fade.modula-fancybox-slide--next {
565
+ opacity: 0;
566
+ transition-timing-function: cubic-bezier(.19, 1, .22, 1);
567
+ }
568
+
569
+ html body .modula-fancybox-fx-fade.modula-fancybox-slide--current {
570
+ opacity: 1;
571
+ }
572
+
573
+ /* transitionEffect: zoom-in-out */
574
+
575
+ html body .modula-fancybox-fx-zoom-in-out.modula-fancybox-slide--previous {
576
+ opacity: 0;
577
+ transform: scale3d(1.5, 1.5, 1.5);
578
+ }
579
+
580
+ html body .modula-fancybox-fx-zoom-in-out.modula-fancybox-slide--next {
581
+ opacity: 0;
582
+ transform: scale3d(.5, .5, .5);
583
+ }
584
+
585
+ html body .modula-fancybox-fx-zoom-in-out.modula-fancybox-slide--current {
586
+ opacity: 1;
587
+ transform: scale3d(1, 1, 1);
588
+ }
589
+
590
+ /* transitionEffect: rotate */
591
+
592
+ html body .modula-fancybox-fx-rotate.modula-fancybox-slide--previous {
593
+ opacity: 0;
594
+ -ms-transform: rotate(-360deg);
595
+ transform: rotate(-360deg);
596
+ }
597
+
598
+ html body .modula-fancybox-fx-rotate.modula-fancybox-slide--next {
599
+ opacity: 0;
600
+ -ms-transform: rotate(360deg);
601
+ transform: rotate(360deg);
602
+ }
603
+
604
+ html body .modula-fancybox-fx-rotate.modula-fancybox-slide--current {
605
+ opacity: 1;
606
+ -ms-transform: rotate(0deg);
607
+ transform: rotate(0deg);
608
+ }
609
+
610
+ /* transitionEffect: circular */
611
+
612
+ html body .modula-fancybox-fx-circular.modula-fancybox-slide--previous {
613
+ opacity: 0;
614
+ transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
615
+ }
616
+
617
+ html body .modula-fancybox-fx-circular.modula-fancybox-slide--next {
618
+ opacity: 0;
619
+ transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
620
+ }
621
+
622
+ html body .modula-fancybox-fx-circular.modula-fancybox-slide--current {
623
+ opacity: 1;
624
+ transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
625
+ }
626
+
627
+ /* transitionEffect: tube */
628
+
629
+ html body .modula-fancybox-fx-tube.modula-fancybox-slide--previous {
630
+ transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
631
+ }
632
+
633
+ html body .modula-fancybox-fx-tube.modula-fancybox-slide--next {
634
+ transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
635
+ }
636
+
637
+ html body .modula-fancybox-fx-tube.modula-fancybox-slide--current {
638
+ transform: translate3d(0, 0, 0) scale(1);
639
+ }
640
+
641
+ /* Styling for Small-Screen Devices */
642
+ @media all and (max-height: 576px) {
643
+ html body .modula-fancybox-slide {
644
+ padding-left: 6px;
645
+ padding-right: 6px;
646
+ }
647
+
648
+ html body .modula-fancybox-slide--image {
649
+ padding: 6px 0;
650
+ }
651
+
652
+ html body .modula-fancybox-close-small {
653
+ right: -6px;
654
+ }
655
+
656
+ html body .modula-fancybox-slide--image .modula-fancybox-close-small {
657
+ background: #4e4e4e;
658
+ color: #f2f4f6;
659
+ height: 36px;
660
+ opacity: 1;
661
+ padding: 6px;
662
+ right: 0;
663
+ top: 0;
664
+ width: 36px;
665
+ }
666
+
667
+ html body .modula-fancybox-caption {
668
+ padding-left: 12px;
669
+ padding-right: 12px;
670
+ }
671
+
672
+ @supports (padding: max(0px)) {
673
+ html body .modula-fancybox-caption {
674
+ padding-left: max(12px, env(safe-area-inset-left));
675
+ padding-right: max(12px, env(safe-area-inset-right));
676
+ }
677
+ }
678
+ }
679
+ /* Share */
680
+
681
+ html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share {
682
+ background: #f4f4f4;
683
+ border-radius: 3px;
684
+ max-width: 90%;
685
+ padding: 30px;
686
+ text-align: center;
687
+ }
688
+
689
+ html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share h1 {
690
+ color: #222;
691
+ font-size: 35px;
692
+ font-weight: 700;
693
+ margin: 0 0 20px 0;
694
+ }
695
+ .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share h1:before,
696
+ .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share h1:after {
697
+ display:none;
698
+ }
699
+
700
+
701
+ html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share p {
702
+ margin: 0;
703
+ padding: 0;
704
+ }
705
+
706
+ html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button {
707
+ border: 0;
708
+ border-radius: 3px;
709
+ display: inline-block;
710
+ font-size: 14px;
711
+ font-weight: 700;
712
+ line-height: 40px;
713
+ margin: 0 5px 10px 5px;
714
+ min-width: 130px;
715
+ padding: 0 15px;
716
+ text-decoration: none;
717
+ transition: all .2s;
718
+ -webkit-user-select: none;
719
+ -moz-user-select: none;
720
+ -ms-user-select: none;
721
+ user-select: none;
722
+ white-space: nowrap;
723
+ }
724
+
725
+ html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button:visited,
726
+ html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button:link {
727
+ color: #fff;
728
+ }
729
+
730
+ html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button:hover {
731
+ text-decoration: none;
732
+ }
733
+
734
+ html body .modula-fancybox-share__button--fb {
735
+ background: #3b5998;
736
+ }
737
+
738
+ html body .modula-fancybox-share__button--fb:hover {
739
+ background: #344e86;
740
+ }
741
+
742
+ html body .modula-fancybox-share__button--pt {
743
+ background: #bd081d;
744
+ }
745
+
746
+ html body .modula-fancybox-share__button--pt:hover {
747
+ background: #aa0719;
748
+ }
749
+
750
+ html body .modula-fancybox-share__button--tw {
751
+ background: #1da1f2;
752
+ }
753
+
754
+ html body .modula-fancybox-share__button--tw:hover {
755
+ background: #0d95e8;
756
+ }
757
+
758
+ html body .modula-fancybox-share__button--email {
759
+ background: #99cc33;
760
+ }
761
+
762
+ html body .modula-fancybox-share__button--email:hover {
763
+ background: #7aa329;
764
+ }
765
+
766
+ html body .modula-fancybox-share__button svg {
767
+ height: 25px;
768
+ margin-right: 7px;
769
+ position: relative;
770
+ top: -1px;
771
+ vertical-align: middle;
772
+ width: 25px;
773
+ display:inline-block;
774
+ }
775
+
776
+ html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share__button svg path {
777
+ fill: #fff;
778
+ }
779
+
780
+ html body .modula-fancybox-container .modula-fancybox-stage .modula-fancybox-share .modula-fancybox-share__input {
781
+ background: transparent;
782
+ border: 0;
783
+ border-bottom: 1px solid #d7d7d7;
784
+ border-radius: 0;
785
+ color: #5d5b5b;
786
+ font-size: 14px;
787
+ margin: 10px 0 0 0;
788
+ outline: none;
789
+ padding: 10px 15px;
790
+ width: 100%;
791
+ }
792
+ /* Thumbs */
793
+
794
+ html body .modula-fancybox-container .modula-fancybox-thumbs {
795
+ background: #ddd;
796
+ bottom: 0;
797
+ display: none;
798
+ margin: 0;
799
+ -webkit-overflow-scrolling: touch;
800
+ -ms-overflow-style: -ms-autohiding-scrollbar;
801
+ padding: 2px 2px 4px 2px;
802
+ position: absolute;
803
+ right: 0;
804
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
805
+ top: 0;
806
+ /*width: 212px;*/
807
+ z-index: 99995;
808
+ }
809
+
810
+ html body .modula-fancybox-thumbs-x {
811
+ overflow-x: auto;
812
+ overflow-y: hidden;
813
+ }
814
+
815
+ html body .modula-fancybox-show-thumbs .modula-fancybox-thumbs {
816
+ display: block;
817
+ }
818
+
819
+ html body .modula-fancybox-show-thumbs .modula-fancybox-inner {
820
+ right: 212px;
821
+ }
822
+
823
+ html body .modula-fancybox-thumbs__list {
824
+ font-size: 0;
825
+ height: 100%;
826
+ list-style: none;
827
+ margin: 0;
828
+ overflow-x: hidden;
829
+ overflow-y: auto;
830
+ padding: 0;
831
+ position: relative;
832
+ white-space: nowrap;
833
+ width: 100%;
834
+ }
835
+
836
+ html body .modula-fancybox-thumbs-x .modula-fancybox-thumbs__list {
837
+ overflow: hidden;
838
+ }
839
+
840
+ html body .modula-fancybox-thumbs-y .modula-fancybox-thumbs__list::-webkit-scrollbar {
841
+ width: 7px;
842
+ }
843
+
844
+ html body .modula-fancybox-thumbs-y .modula-fancybox-thumbs__list::-webkit-scrollbar-track {
845
+ background: #fff;
846
+ border-radius: 10px;
847
+ box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
848
+ }
849
+
850
+ html body .modula-fancybox-thumbs-y .modula-fancybox-thumbs__list::-webkit-scrollbar-thumb {
851
+ background: #2a2a2a;
852
+ border-radius: 10px;
853
+ }
854
+
855
+ html body .modula-fancybox-thumbs__list a {
856
+ -webkit-backface-visibility: hidden;
857
+ backface-visibility: hidden;
858
+ background-color: rgba(0, 0, 0, .1);
859
+ background-position: center center;
860
+ background-repeat: no-repeat;
861
+ background-size: cover;
862
+ cursor: pointer;
863
+ float: left;
864
+ height: 75px;
865
+ margin: 2px;
866
+ max-height: calc(100% - 8px);
867
+ max-width: calc(50% - 4px);
868
+ outline: none;
869
+ overflow: hidden;
870
+ padding: 0;
871
+ position: relative;
872
+ -webkit-tap-highlight-color: transparent;
873
+ width: 100px;
874
+ }
875
+
876
+ html body .modula-fancybox-thumbs__list a::before {
877
+ border: 6px solid #ff5268;
878
+ bottom: 0;
879
+ content: '';
880
+ left: 0;
881
+ opacity: 0;
882
+ position: absolute;
883
+ right: 0;
884
+ top: 0;
885
+ transition: all .2s cubic-bezier(.25, .46, .45, .94);
886
+ z-index: 99991;
887
+ }
888
+
889
+ html body .modula-fancybox-thumbs__list a:focus::before {
890
+ opacity: .5;
891
+ }
892
+
893
+ html body .modula-fancybox-thumbs__list a.modula-fancybox-thumbs-active::before {
894
+ opacity: 1;
895
+ }
896
+
897
+ /* Styling for Small-Screen Devices */
898
+ @media all and (max-width: 576px) {
899
+ html body .modula-fancybox-thumbs {
900
+ width: 110px;
901
+ }
902
+
903
+ html body .modula-fancybox-show-thumbs .modula-fancybox-inner {
904
+ right: 110px;
905
+ }
906
+
907
+ html body .modula-fancybox-thumbs__list a {
908
+ max-width: calc(100% - 10px);
909
+ }
910
+ }
911
+
912
+ @media all and (min-width:577px){
913
+ html body .modula-fancybox-container .modula-fancybox-thumbs {
914
+ width : 212px;
915
+ }
916
  }
assets/css/front/modula.css CHANGED
@@ -1,589 +1,589 @@
1
- html body .modula .modula-items .modula-item {
2
- position: absolute;
3
- overflow: hidden;
4
- box-sizing: border-box;
5
- }
6
-
7
- html body .modula .modula-items .modula-item .modula-item-content {
8
- transition: transform .3s ease-out, opacity .2s linear, top .3s, left .6s;
9
- opacity: 0;
10
- }
11
-
12
- html body .modula .modula-items {
13
- position: relative;
14
- z-index: 1;
15
- min-height: 10px;
16
- }
17
-
18
- html body .modula .modula-items .modula-item .modula-item-content > a {
19
- display: block;
20
- position: absolute;
21
- top: 0;
22
- left: 0;
23
- width: 100%;
24
- height: 100%;
25
- z-index: 10;
26
- background: transparent;
27
- }
28
-
29
- html body .modula.modula-creative-gallery .modula-items .modula-item .modula-item-content,
30
- html body .modula.modula-custom-grid .modula-items .modula-item .modula-item-content {
31
- height: 100%;
32
- }
33
-
34
- html body .modula .modula-items .modula-item .jtg-social {
35
- z-index: 10;
36
- font-size: 0;
37
- }
38
-
39
- html body .modula:not(.modula-loaded-scale).modula-gallery-initialized .modula-items .modula-item.tg-loaded .modula-item-content,
40
- html body .modula:not(.modula-loaded-scale).modula-gallery-initialized .modula-items.justified-gallery .modula-item .modula-item-content,
41
- html body .modula.modula-columns:not(.modula-loaded-scale).modula-gallery-initialized .modula-items .modula-item .modula-item-content {
42
- transform: scale(1) translate(0, 0) rotate(0deg) !important;
43
- opacity: 1;
44
- }
45
-
46
- html body .modula .modula-items .modula-item img.pic {
47
- font-size: 12px;
48
- position: absolute;
49
- /*display: none;*/
50
- /*opacity: 0;*/
51
- max-width: 999em;
52
- transition: width .3s, height .3s, transform .3s linear, opacity .2s linear;
53
- }
54
-
55
- html body .modula.modula-columns .modula-items .modula-item img.pic {
56
- position: relative;
57
- max-width: 100%;
58
- margin: 0 auto;
59
- }
60
-
61
- html body .modula .modula-items .modula-item.tg-loaded img.pic,
62
- html body .modula.modula-columns .modula-items .modula-item img.pic {
63
- display: block;
64
- opacity: 1;
65
- }
66
-
67
- html body .modula .modula-items .modula-item img.pic.lazyloaded,
68
- html body .modula .modula-items .modula-item img.pic.lazyload {
69
- display: block;
70
- }
71
-
72
- html body .modula .modula-items .modula-item .caption .icon {
73
- font-size: 14px;
74
- position: absolute;
75
- left: 50%;
76
- top: 50%;
77
- margin: -12px 0 0 -8px;
78
- }
79
-
80
- html body .modula .modula-items .modula-item .figc {
81
- color: #fff;
82
- text-align: center;
83
- position: absolute;
84
- left: 0;
85
- width: 100%;
86
- padding: 0;
87
- max-width: 100%;
88
- }
89
-
90
-
91
- html body .modula .modula-items .hidden .figc {
92
- display: none;
93
- }
94
-
95
- html body .modula .modula-items .hidden:hover .figc {
96
- display: block;
97
- }
98
-
99
- html body .modula .modula-items .visible .figc {
100
- display: block;
101
- }
102
-
103
- html body .modula .modula-items .always-visible .figc {
104
- display: block;
105
- }
106
-
107
- html body .modula .modula-items .visible:hover .figc {
108
- display: none;
109
- }
110
-
111
- html body .modula .modula-items .caption span.text {
112
- display: block;
113
- padding: 10px;
114
- }
115
-
116
- html body .modula .modula-items .caption span.title {
117
- font-size: 14px;
118
- font-weight: bold;
119
- }
120
-
121
- html body .modula .jtg-social a {
122
- box-shadow: none;
123
- }
124
-
125
- html body .modula .jtg-social svg {
126
- width: 20px;
127
- height: 16px;
128
- }
129
-
130
- html body .modula .modula-items .modula-item .jtg-title {
131
- margin: 0;
132
- }
133
-
134
- html body .modula .modula-items .modula-item p {
135
- margin: 0;
136
- padding: 0;
137
- }
138
-
139
- html body .modula .figc {
140
- color: black;
141
- text-align: center;
142
- position: absolute;
143
- left: 0;
144
- width: 100%;
145
- padding: 2em;
146
- }
147
-
148
- html body .modula .modula-item .jtg-social a {
149
- text-decoration: none;
150
- color: #fff;
151
- display: inline-block;
152
- margin: 0 10px 0 0;
153
- padding: 0;
154
- border: 0;
155
- opacity: 0;
156
- transition: opacity .3s;
157
- }
158
-
159
- html body .modula .modula-item:hover .jtg-social a {
160
- opacity: 1;
161
- }
162
-
163
- /*---------------*/
164
- /***** pufrobo *****/
165
- /*---------------*/
166
- html body .modula .modula-items .jtg-social {
167
- opacity: 0;
168
- right: 30px;
169
- position: absolute;
170
- bottom: 20px;
171
- text-align: right;
172
- transition: all .3s;
173
- }
174
-
175
- html body .et_pb_module_inner .modula .modula-items .jtg-social {
176
- transition: all .3s !important;
177
- }
178
-
179
- html body .modula .modula-items .modula-item.effect-pufrobo .jtg-social a {
180
- margin-right:10px;
181
- }
182
-
183
- @media all and (max-width:480px){
184
- html body .modula .modula-items .modula-item.effect-pufrobo .jtg-social {
185
- right:0;
186
- width:100%;
187
- text-align:center;
188
- }
189
-
190
- html body .modula .modula-items .modula-item.effect-pufrobo .jtg-social a {
191
- padding:5px;
192
- }
193
- }
194
-
195
- html body .modula .modula-items .jtg-social {
196
- opacity: 1;
197
- }
198
-
199
- html body .modula .modula-items .jtg-social a:last-of-type {
200
- margin-right: 0;
201
- }
202
-
203
- html body .modula .modula-item.effect-pufrobo p.description {
204
- margin-bottom: 2em;
205
- }
206
-
207
- html body .et_pb_module_inner .modula .modula-item.effect-pufrobo p.description {
208
- -webkit-transition: -webkit-transform 0.35s !important;
209
- transition: transform 0.35s !important;
210
- }
211
-
212
- html body .modula .modula-item.effect-pufrobo .figc {
213
- text-align: right;
214
- }
215
-
216
- html body .modula .modula-item.effect-pufrobo .jtg-title,
217
- html body .modula .modula-item.effect-pufrobo p {
218
- position: absolute;
219
- right: 5%;
220
- left: 5%;
221
- padding: 10px 0;
222
- }
223
-
224
- html body .modula.modula-gallery-initialized .modula-item:hover img,
225
- html body .modula.modula-gallery-initialized .modula-items .modula-item.tg-loaded:hover img.pic {
226
- opacity: .8
227
- }
228
-
229
- /*.modula .modula-item { background-color:#000; }*/
230
-
231
- html body .modula .modula-item.effect-pufrobo p {
232
- bottom: 20%;
233
- line-height: 1.5;
234
- -webkit-transform: translate3d(0, 100%, 0);
235
- transform: translate3d(0, 100%, 0);
236
- letter-spacing: 1px;
237
- }
238
-
239
- html body .modula .modula-items .modula-item.effect-pufrobo .jtg-title{
240
- /*top: 30px;*/
241
- top: 10%;
242
- -webkit-transition: -webkit-transform 0.35s;
243
- transition: transform 0.35s;
244
- -webkit-transform: translate3d(0, 20px, 0);
245
- transform: translate3d(0, 20px, 0);
246
- }
247
-
248
- html body .et_pb_module_inner .modula .modula-items .modula-item.effect-pufrobo .jtg-title {
249
- -webkit-transition: -webkit-transform 0.35s !important;
250
- transition: transform 0.35s !important;
251
- }
252
-
253
- html body .modula .modula-item.effect-pufrobo:hover .jtg-title{
254
- -webkit-transform: translate3d(0, 0, 0);
255
- transform: translate3d(0, 0, 0);
256
- }
257
-
258
- html body .modula .modula-item.effect-pufrobo .jtg-title::after {
259
- position: absolute;
260
- top: 80%;
261
- left: 0;
262
- width: 100%;
263
- height: 4px;
264
- background: #fff;
265
- content: '';
266
- -webkit-transform: translate3d(0, 40px, 0);
267
- transform: translate3d(0, 40px, 0);
268
- }
269
-
270
- html body .modula .modula-item.effect-pufrobo .jtg-title::after,
271
- html body .modula .modula-item.effect-pufrobo p {
272
- opacity: 0;
273
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
274
- transition: opacity 0.35s, transform 0.35s;
275
- }
276
-
277
- html body .modula .modula-item.effect-pufrobo:hover .jtg-title::after,
278
- html body .modula .modula-item.effect-pufrobo:hover p {
279
- margin-top: 10px;
280
- margin-bottom: 5px;
281
- opacity: 1;
282
- -webkit-transform: translate3d(0, 0, 0);
283
- transform: translate3d(0, 0, 0);
284
- }
285
-
286
- html body .modula .modula-items .modula-item.effect-pufrobo .figc.no-title.no-description .jtg-title:after {
287
- display: none;
288
- }
289
-
290
- /* TwnetyNintheen fix */
291
- html body .modula .modula-items .modula-item.effect-fluid-up .figc .jtg-title:before,
292
- html body .modula .modula-items .modula-item.effect-hide .figc .jtg-title:before,
293
- html body .modula .modula-items .modula-item.effect-quiet .figc .jtg-title:before,
294
- html body .modula .modula-items .modula-item.effect-reflex .figc .jtg-title:before,
295
- html body .modula .modula-items .modula-item.effect-curtain .figc .jtg-title:before,
296
- html body .modula .modula-items .modula-item.effect-lens .figc .jtg-title:before,
297
- html body .modula .modula-items .modula-item.effect-appear .figc .jtg-title:before,
298
- html body .modula .modula-items .modula-item.effect-crafty .figc .jtg-title:before,
299
- html body .modula .modula-items .modula-item.effect-seemo .figc .jtg-title:before,
300
- html body .modula .modula-items .modula-item.effect-comodo .figc .jtg-title:before,
301
- html body .modula .modula-items .modula-item.effect-pufrobo .figc .jtg-title:before {
302
- display: none;
303
- }
304
-
305
- html body .modula .modula-items .modula-item > a {
306
- cursor: zoom-in;
307
- }
308
-
309
-
310
- /**
311
- Fix for admin bar overfloating
312
- */
313
- html body .modula-fancybox-container.modula-fancybox-is-open {
314
- z-index: 99999999;
315
- }
316
-
317
- html body .modula-fancybox-share__button--li {
318
- background: #0e76a8;
319
- }
320
-
321
- html body .modula-fancybox-share__button--wa {
322
- background: #25D366;
323
- }
324
-
325
- /* New CSS */
326
- html body .modula.modula-columns .modula-item {
327
- display: flex;
328
- justify-content: center;
329
- }
330
-
331
- html body .modula.modula-columns .modula-item .modula-item-content {
332
- position: relative;
333
- }
334
-
335
- html body .modula.modula-columns .modula-items.grid-gallery .modula-item .modula-item-content {
336
- height: 100%;
337
- }
338
-
339
- html body .modula.modula-columns .modula-items.grid-gallery.justified-gallery .modula-item .modula-item-content {
340
- width: 100%;
341
- }
342
-
343
- html body .modula.modula-columns .modula-items.grid-gallery.justified-gallery .modula-item .modula-item-content .pic {
344
- position: absolute;
345
- top: 50%;
346
- left: 50%;
347
- margin: 0;
348
- padding: 0;
349
- border: none;
350
- }
351
-
352
- html body .modula.modula-columns .modula-item.jg-filtered {
353
- display: none;
354
- }
355
-
356
- /* Modula Grid */
357
- /* Rows CSS */
358
- html body .modula-row {
359
- display: -ms-flexbox;
360
- display: flex;
361
- -ms-flex-wrap: wrap;
362
- flex-wrap: wrap;
363
- margin-right: -15px;
364
- margin-left: -15px;
365
- }
366
-
367
- html body .modula-row-cols-1 > * {
368
- -ms-flex: 0 0 100%;
369
- flex: 0 0 100%;
370
- max-width: 100%
371
- }
372
-
373
- html body .modula-row-cols-2 > * {
374
- -ms-flex: 0 0 50%;
375
- flex: 0 0 50%;
376
- max-width: 50%
377
- }
378
-
379
- html body .modula-row-cols-3 > * {
380
- -ms-flex: 0 0 33.333333%;
381
- flex: 0 0 33.333333%;
382
- max-width: 33.333333%
383
- }
384
-
385
- html body .modula-row-cols-4 > * {
386
- -ms-flex: 0 0 25%;
387
- flex: 0 0 25%;
388
- max-width: 25%
389
- }
390
-
391
- html body .modula-row-cols-5 > * {
392
- -ms-flex: 0 0 20%;
393
- flex: 0 0 20%;
394
- max-width: 20%
395
- }
396
-
397
- html body .modula-row-cols-6 > * {
398
- -ms-flex: 0 0 16.666667%;
399
- flex: 0 0 16.666667%;
400
- max-width: 16.666667%
401
- }
402
-
403
- @media (min-width: 576px) {
404
- html body .modula-row-cols-sm-1 > * {
405
- -ms-flex: 0 0 100%;
406
- flex: 0 0 100%;
407
- max-width: 100%
408
- }
409
-
410
- html body .modula-row-cols-sm-2 > * {
411
- -ms-flex: 0 0 50%;
412
- flex: 0 0 50%;
413
- max-width: 50%
414
- }
415
-
416
- html body .modula-row-cols-sm-3 > * {
417
- -ms-flex: 0 0 33.333333%;
418
- flex: 0 0 33.333333%;
419
- max-width: 33.333333%
420
- }
421
-
422
- html body .modula-row-cols-sm-4 > * {
423
- -ms-flex: 0 0 25%;
424
- flex: 0 0 25%;
425
- max-width: 25%
426
- }
427
-
428
- html body .modula-row-cols-sm-5 > * {
429
- -ms-flex: 0 0 20%;
430
- flex: 0 0 20%;
431
- max-width: 20%
432
- }
433
-
434
- html body .modula-row-cols-sm-6 > * {
435
- -ms-flex: 0 0 16.666667%;
436
- flex: 0 0 16.666667%;
437
- max-width: 16.666667%
438
- }
439
- }
440
-
441
- @media (min-width: 768px) {
442
- html body .modula-row-cols-md-1 > * {
443
- -ms-flex: 0 0 100%;
444
- flex: 0 0 100%;
445
- max-width: 100%
446
- }
447
-
448
- html body .modula-row-cols-md-2 > * {
449
- -ms-flex: 0 0 50%;
450
- flex: 0 0 50%;
451
- max-width: 50%
452
- }
453
-
454
- html body .modula-row-cols-md-3 > * {
455
- -ms-flex: 0 0 33.333333%;
456
- flex: 0 0 33.333333%;
457
- max-width: 33.333333%
458
- }
459
-
460
- html body .modula-row-cols-md-4 > * {
461
- -ms-flex: 0 0 25%;
462
- flex: 0 0 25%;
463
- max-width: 25%
464
- }
465
-
466
- html body .modula-row-cols-md-5 > * {
467
- -ms-flex: 0 0 20%;
468
- flex: 0 0 20%;
469
- max-width: 20%
470
- }
471
-
472
- html body .modula-row-cols-md-6 > * {
473
- -ms-flex: 0 0 16.666667%;
474
- flex: 0 0 16.666667%;
475
- max-width: 16.666667%
476
- }
477
-
478
- }
479
-
480
- @media (min-width: 992px) {
481
- html body .modula-row-cols-lg-1 > * {
482
- -ms-flex: 0 0 100%;
483
- flex: 0 0 100%;
484
- max-width: 100%
485
- }
486
-
487
- html body .modula-row-cols-lg-2 > * {
488
- -ms-flex: 0 0 50%;
489
- flex: 0 0 50%;
490
- max-width: 50%
491
- }
492
-
493
- html body .modula-row-cols-lg-3 > * {
494
- -ms-flex: 0 0 33.333333%;
495
- flex: 0 0 33.333333%;
496
- max-width: 33.333333%
497
- }
498
-
499
- html body .modula-row-cols-lg-4 > * {
500
- -ms-flex: 0 0 25%;
501
- flex: 0 0 25%;
502
- max-width: 25%
503
- }
504
-
505
- html body .modula-row-cols-lg-5 > * {
506
- -ms-flex: 0 0 20%;
507
- flex: 0 0 20%;
508
- max-width: 20%
509
- }
510
-
511
- html body .modula-row-cols-lg-6 > * {
512
- -ms-flex: 0 0 16.666667%;
513
- flex: 0 0 16.666667%;
514
- max-width: 16.666667%
515
- }
516
- }
517
-
518
- @media (min-width: 1200px) {
519
- html body .modula-row-cols-xl-1 > * {
520
- -ms-flex: 0 0 100%;
521
- flex: 0 0 100%;
522
- max-width: 100%
523
- }
524
-
525
- html body .modula-row-cols-xl-2 > * {
526
- -ms-flex: 0 0 50%;
527
- flex: 0 0 50%;
528
- max-width: 50%
529
- }
530
-
531
- html body .modula-row-cols-xl-3 > * {
532
- -ms-flex: 0 0 33.333333%;
533
- flex: 0 0 33.333333%;
534
- max-width: 33.333333%
535
- }
536
-
537
- html body .modula-row-cols-xl-4 > * {
538
- -ms-flex: 0 0 25%;
539
- flex: 0 0 25%;
540
- max-width: 25%
541
- }
542
-
543
- html body .modula-row-cols-xl-5 > * {
544
- -ms-flex: 0 0 20%;
545
- flex: 0 0 20%;
546
- max-width: 20%
547
- }
548
-
549
- html body .modula-row-cols-xl-6 > * {
550
- -ms-flex: 0 0 16.666667%;
551
- flex: 0 0 16.666667%;
552
- max-width: 16.666667%
553
- }
554
- }
555
-
556
- html body .modula .modula-items.grid-gallery .modula-item .figc {
557
- height: 100%;
558
- top: 0;
559
- }
560
-
561
- html body div.modula-powered {
562
- text-align: right;
563
- font-size: 14px;
564
- margin-right: 5px;
565
- clear:both;
566
- }
567
-
568
- html body div.modula-powered svg.modula-logo {
569
- width: 14px;
570
- position: relative;
571
- top: 3px;
572
- }
573
-
574
- html body div.modula-powered svg.modula-logo path {
575
- color: #58ab7e !important;
576
-
577
- }
578
-
579
- html body div.modula-powered svg.modula-logo {
580
- display: inline-block;
581
- }
582
-
583
- .modula-gallery:not( .modula-gallery-initialized ) > .modula-items {
584
- visibility: hidden;
585
- }
586
-
587
- .modula-gallery.modula-gallery-initialized .modula-items .modula-item {
588
- visibility: visible;
589
  }
1
+ html body .modula .modula-items .modula-item {
2
+ position: absolute;
3
+ overflow: hidden;
4
+ box-sizing: border-box;
5
+ }
6
+
7
+ html body .modula .modula-items .modula-item .modula-item-content {
8
+ transition: transform .3s ease-out, opacity .2s linear, top .3s, left .6s;
9
+ opacity: 0;
10
+ }
11
+
12
+ html body .modula .modula-items {
13
+ position: relative;
14
+ z-index: 1;
15
+ min-height: 10px;
16
+ }
17
+
18
+ html body .modula .modula-items .modula-item .modula-item-content > a {
19
+ display: block;
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ width: 100%;
24
+ height: 100%;
25
+ z-index: 10;
26
+ background: transparent;
27
+ }
28
+
29
+ html body .modula.modula-creative-gallery .modula-items .modula-item .modula-item-content,
30
+ html body .modula.modula-custom-grid .modula-items .modula-item .modula-item-content {
31
+ height: 100%;
32
+ }
33
+
34
+ html body .modula .modula-items .modula-item .jtg-social {
35
+ z-index: 10;
36
+ font-size: 0;
37
+ }
38
+
39
+ html body .modula:not(.modula-loaded-scale).modula-gallery-initialized .modula-items .modula-item.tg-loaded .modula-item-content,
40
+ html body .modula:not(.modula-loaded-scale).modula-gallery-initialized .modula-items.justified-gallery .modula-item .modula-item-content,
41
+ html body .modula.modula-columns:not(.modula-loaded-scale).modula-gallery-initialized .modula-items .modula-item .modula-item-content {
42
+ transform: scale(1) translate(0, 0) rotate(0deg) !important;
43
+ opacity: 1;
44
+ }
45
+
46
+ html body .modula .modula-items .modula-item img.pic {
47
+ font-size: 12px;
48
+ position: absolute;
49
+ /*display: none;*/
50
+ /*opacity: 0;*/
51
+ max-width: 999em;
52
+ transition: width .3s, height .3s, transform .3s linear, opacity .2s linear;
53
+ }
54
+
55
+ html body .modula.modula-columns .modula-items .modula-item img.pic {
56
+ position: relative;
57
+ max-width: 100%;
58
+ margin: 0 auto;
59
+ }
60
+
61
+ html body .modula .modula-items .modula-item.tg-loaded img.pic,
62
+ html body .modula.modula-columns .modula-items .modula-item img.pic {
63
+ display: block;
64
+ opacity: 1;
65
+ }
66
+
67
+ html body .modula .modula-items .modula-item img.pic.lazyloaded,
68
+ html body .modula .modula-items .modula-item img.pic.lazyload {
69
+ display: block;
70
+ }
71
+
72
+ html body .modula .modula-items .modula-item .caption .icon {
73
+ font-size: 14px;
74
+ position: absolute;
75
+ left: 50%;
76
+ top: 50%;
77
+ margin: -12px 0 0 -8px;
78
+ }
79
+
80
+ html body .modula .modula-items .modula-item .figc {
81
+ color: #fff;
82
+ text-align: center;
83
+ position: absolute;
84
+ left: 0;
85
+ width: 100%;
86
+ padding: 0;
87
+ max-width: 100%;
88
+ }
89
+
90
+
91
+ html body .modula .modula-items .hidden .figc {
92
+ display: none;
93
+ }
94
+
95
+ html body .modula .modula-items .hidden:hover .figc {
96
+ display: block;
97
+ }
98
+
99
+ html body .modula .modula-items .visible .figc {
100
+ display: block;
101
+ }
102
+
103
+ html body .modula .modula-items .always-visible .figc {
104
+ display: block;
105
+ }
106
+
107
+ html body .modula .modula-items .visible:hover .figc {
108
+ display: none;
109
+ }
110
+
111
+ html body .modula .modula-items .caption span.text {
112
+ display: block;
113
+ padding: 10px;
114
+ }
115
+
116
+ html body .modula .modula-items .caption span.title {
117
+ font-size: 14px;
118
+ font-weight: bold;
119
+ }
120
+
121
+ html body .modula .jtg-social a {
122
+ box-shadow: none;
123
+ }
124
+
125
+ html body .modula .jtg-social svg {
126
+ width: 20px;
127
+ height: 16px;
128
+ }
129
+
130
+ html body .modula .modula-items .modula-item .jtg-title {
131
+ margin: 0;
132
+ }
133
+
134
+ html body .modula .modula-items .modula-item p {
135
+ margin: 0;
136
+ padding: 0;
137
+ }
138
+
139
+ html body .modula .figc {
140
+ color: black;
141
+ text-align: center;
142
+ position: absolute;
143
+ left: 0;
144
+ width: 100%;
145
+ padding: 2em;
146
+ }
147
+
148
+ html body .modula .modula-item .jtg-social a {
149
+ text-decoration: none;
150
+ color: #fff;
151
+ display: inline-block;
152
+ margin: 0 10px 0 0;
153
+ padding: 0;
154
+ border: 0;
155
+ opacity: 0;
156
+ transition: opacity .3s;
157
+ }
158
+
159
+ html body .modula .modula-item:hover .jtg-social a {
160
+ opacity: 1;
161
+ }
162
+
163
+ /*---------------*/
164
+ /***** pufrobo *****/
165
+ /*---------------*/
166
+ html body .modula .modula-items .jtg-social {
167
+ opacity: 0;
168
+ right: 30px;
169
+ position: absolute;
170
+ bottom: 20px;
171
+ text-align: right;
172
+ transition: all .3s;
173
+ }
174
+
175
+ html body .et_pb_module_inner .modula .modula-items .jtg-social {
176
+ transition: all .3s !important;
177
+ }
178
+
179
+ html body .modula .modula-items .modula-item.effect-pufrobo .jtg-social a {
180
+ margin-right:10px;
181
+ }
182
+
183
+ @media all and (max-width:480px){
184
+ html body .modula .modula-items .modula-item.effect-pufrobo .jtg-social {
185
+ right:0;
186
+ width:100%;
187
+ text-align:center;
188
+ }
189
+
190
+ html body .modula .modula-items .modula-item.effect-pufrobo .jtg-social a {
191
+ padding:5px;
192
+ }
193
+ }
194
+
195
+ html body .modula .modula-items .jtg-social {
196
+ opacity: 1;
197
+ }
198
+
199
+ html body .modula .modula-items .jtg-social a:last-of-type {
200
+ margin-right: 0;
201
+ }
202
+
203
+ html body .modula .modula-item.effect-pufrobo p.description {
204
+ margin-bottom: 2em;
205
+ }
206
+
207
+ html body .et_pb_module_inner .modula .modula-item.effect-pufrobo p.description {
208
+ -webkit-transition: -webkit-transform 0.35s !important;
209
+ transition: transform 0.35s !important;
210
+ }
211
+
212
+ html body .modula .modula-item.effect-pufrobo .figc {
213
+ text-align: right;
214
+ }
215
+
216
+ html body .modula .modula-item.effect-pufrobo .jtg-title,
217
+ html body .modula .modula-item.effect-pufrobo p {
218
+ position: absolute;
219
+ right: 5%;
220
+ left: 5%;
221
+ padding: 10px 0;
222
+ }
223
+
224
+ html body .modula.modula-gallery-initialized .modula-item:hover img,
225
+ html body .modula.modula-gallery-initialized .modula-items .modula-item.tg-loaded:hover img.pic {
226
+ opacity: .8
227
+ }
228
+
229
+ /*.modula .modula-item { background-color:#000; }*/
230
+
231
+ html body .modula .modula-item.effect-pufrobo p {
232
+ bottom: 20%;
233
+ line-height: 1.5;
234
+ -webkit-transform: translate3d(0, 100%, 0);
235
+ transform: translate3d(0, 100%, 0);
236
+ letter-spacing: 1px;
237
+ }
238
+
239
+ html body .modula .modula-items .modula-item.effect-pufrobo .jtg-title{
240
+ /*top: 30px;*/
241
+ top: 10%;
242
+ -webkit-transition: -webkit-transform 0.35s;
243
+ transition: transform 0.35s;
244
+ -webkit-transform: translate3d(0, 20px, 0);
245
+ transform: translate3d(0, 20px, 0);
246
+ }
247
+
248
+ html body .et_pb_module_inner .modula .modula-items .modula-item.effect-pufrobo .jtg-title {
249
+ -webkit-transition: -webkit-transform 0.35s !important;
250
+ transition: transform 0.35s !important;
251
+ }
252
+
253
+ html body .modula .modula-item.effect-pufrobo:hover .jtg-title{
254
+ -webkit-transform: translate3d(0, 0, 0);
255
+ transform: translate3d(0, 0, 0);
256
+ }
257
+
258
+ html body .modula .modula-item.effect-pufrobo .jtg-title::after {
259
+ position: absolute;
260
+ top: 80%;
261
+ left: 0;
262
+ width: 100%;
263
+ height: 4px;
264
+ background: #fff;
265
+ content: '';
266
+ -webkit-transform: translate3d(0, 40px, 0);
267
+ transform: translate3d(0, 40px, 0);
268
+ }
269
+
270
+ html body .modula .modula-item.effect-pufrobo .jtg-title::after,
271
+ html body .modula .modula-item.effect-pufrobo p {
272
+ opacity: 0;
273
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
274
+ transition: opacity 0.35s, transform 0.35s;
275
+ }
276
+
277
+ html body .modula .modula-item.effect-pufrobo:hover .jtg-title::after,
278
+ html body .modula .modula-item.effect-pufrobo:hover p {
279
+ margin-top: 10px;
280
+ margin-bottom: 5px;
281
+ opacity: 1;
282
+ -webkit-transform: translate3d(0, 0, 0);
283
+ transform: translate3d(0, 0, 0);
284
+ }
285
+
286
+ html body .modula .modula-items .modula-item.effect-pufrobo .figc.no-title.no-description .jtg-title:after {
287
+ display: none;
288
+ }
289
+
290
+ /* TwnetyNintheen fix */
291
+ html body .modula .modula-items .modula-item.effect-fluid-up .figc .jtg-title:before,
292
+ html body .modula .modula-items .modula-item.effect-hide .figc .jtg-title:before,
293
+ html body .modula .modula-items .modula-item.effect-quiet .figc .jtg-title:before,
294
+ html body .modula .modula-items .modula-item.effect-reflex .figc .jtg-title:before,
295
+ html body .modula .modula-items .modula-item.effect-curtain .figc .jtg-title:before,
296
+ html body .modula .modula-items .modula-item.effect-lens .figc .jtg-title:before,
297
+ html body .modula .modula-items .modula-item.effect-appear .figc .jtg-title:before,
298
+ html body .modula .modula-items .modula-item.effect-crafty .figc .jtg-title:before,
299
+ html body .modula .modula-items .modula-item.effect-seemo .figc .jtg-title:before,
300
+ html body .modula .modula-items .modula-item.effect-comodo .figc .jtg-title:before,
301
+ html body .modula .modula-items .modula-item.effect-pufrobo .figc .jtg-title:before {
302
+ display: none;
303
+ }
304
+
305
+ html body .modula .modula-items .modula-item > a {
306
+ cursor: zoom-in;
307
+ }
308
+
309
+
310
+ /**
311
+ Fix for admin bar overfloating
312
+ */
313
+ html body .modula-fancybox-container.modula-fancybox-is-open {
314
+ z-index: 99999999;
315
+ }
316
+
317
+ html body .modula-fancybox-share__button--li {
318
+ background: #0e76a8;
319
+ }
320
+
321
+ html body .modula-fancybox-share__button--wa {
322
+ background: #25D366;
323
+ }
324
+
325
+ /* New CSS */
326
+ html body .modula.modula-columns .modula-item {
327
+ display: flex;
328
+ justify-content: center;
329
+ }
330
+
331
+ html body .modula.modula-columns .modula-item .modula-item-content {
332
+ position: relative;
333
+ }
334
+
335
+ html body .modula.modula-columns .modula-items.grid-gallery .modula-item .modula-item-content {
336
+ height: 100%;
337
+ }
338
+
339
+ html body .modula.modula-columns .modula-items.grid-gallery.justified-gallery .modula-item .modula-item-content {
340
+ width: 100%;
341
+ }
342
+
343
+ html body .modula.modula-columns .modula-items.grid-gallery.justified-gallery .modula-item .modula-item-content .pic {
344
+ position: absolute;
345
+ top: 50%;
346
+ left: 50%;
347
+ margin: 0;
348
+ padding: 0;
349
+ border: none;
350
+ }
351
+
352
+ html body .modula.modula-columns .modula-item.jg-filtered {
353
+ display: none;
354
+ }
355
+
356
+ /* Modula Grid */
357
+ /* Rows CSS */
358
+ html body .modula-row {
359
+ display: -ms-flexbox;
360
+ display: flex;
361
+ -ms-flex-wrap: wrap;
362
+ flex-wrap: wrap;
363
+ margin-right: -15px;
364
+ margin-left: -15px;
365
+ }
366
+
367
+ html body .modula-row-cols-1 > * {
368
+ -ms-flex: 0 0 100%;
369
+ flex: 0 0 100%;
370
+ max-width: 100%
371
+ }
372
+
373
+ html body .modula-row-cols-2 > * {
374
+ -ms-flex: 0 0 50%;
375
+ flex: 0 0 50%;
376
+ max-width: 50%
377
+ }
378
+
379
+ html body .modula-row-cols-3 > * {
380
+ -ms-flex: 0 0 33.333333%;
381
+ flex: 0 0 33.333333%;
382
+ max-width: 33.333333%
383
+ }
384
+
385
+ html body .modula-row-cols-4 > * {
386
+ -ms-flex: 0 0 25%;
387
+ flex: 0 0 25%;
388
+ max-width: 25%
389
+ }
390
+
391
+ html body .modula-row-cols-5 > * {
392
+ -ms-flex: 0 0 20%;
393
+ flex: 0 0 20%;
394
+ max-width: 20%
395
+ }
396
+
397
+ html body .modula-row-cols-6 > * {
398
+ -ms-flex: 0 0 16.666667%;
399
+ flex: 0 0 16.666667%;
400
+ max-width: 16.666667%
401
+ }
402
+
403
+ @media (min-width: 576px) {
404
+ html body .modula-row-cols-sm-1 > * {
405
+ -ms-flex: 0 0 100%;
406
+ flex: 0 0 100%;
407
+ max-width: 100%
408
+ }
409
+
410
+ html body .modula-row-cols-sm-2 > * {
411
+ -ms-flex: 0 0 50%;
412
+ flex: 0 0 50%;
413
+ max-width: 50%
414
+ }
415
+
416
+ html body .modula-row-cols-sm-3 > * {
417
+ -ms-flex: 0 0 33.333333%;
418
+ flex: 0 0 33.333333%;
419
+ max-width: 33.333333%
420
+ }
421
+
422
+ html body .modula-row-cols-sm-4 > * {
423
+ -ms-flex: 0 0 25%;
424
+ flex: 0 0 25%;
425
+ max-width: 25%
426
+ }
427
+
428
+ html body .modula-row-cols-sm-5 > * {
429
+ -ms-flex: 0 0 20%;
430
+ flex: 0 0 20%;
431
+ max-width: 20%
432
+ }
433
+
434
+ html body .modula-row-cols-sm-6 > * {
435
+ -ms-flex: 0 0 16.666667%;
436
+ flex: 0 0 16.666667%;
437
+ max-width: 16.666667%
438
+ }
439
+ }
440
+
441
+ @media (min-width: 768px) {
442
+ html body .modula-row-cols-md-1 > * {
443
+ -ms-flex: 0 0 100%;
444
+ flex: 0 0 100%;
445
+ max-width: 100%
446
+ }
447
+
448
+ html body .modula-row-cols-md-2 > * {
449
+ -ms-flex: 0 0 50%;
450
+ flex: 0 0 50%;
451
+ max-width: 50%
452
+ }
453
+
454
+ html body .modula-row-cols-md-3 > * {
455
+ -ms-flex: 0 0 33.333333%;
456
+ flex: 0 0 33.333333%;
457
+ max-width: 33.333333%
458
+ }
459
+
460
+ html body .modula-row-cols-md-4 > * {
461
+ -ms-flex: 0 0 25%;
462
+ flex: 0 0 25%;
463
+ max-width: 25%
464
+ }
465
+
466
+ html body .modula-row-cols-md-5 > * {
467
+ -ms-flex: 0 0 20%;
468
+ flex: 0 0 20%;
469
+ max-width: 20%
470
+ }
471
+
472
+ html body .modula-row-cols-md-6 > * {
473
+ -ms-flex: 0 0 16.666667%;
474
+ flex: 0 0 16.666667%;
475
+ max-width: 16.666667%
476
+ }
477
+
478
+ }
479
+
480
+ @media (min-width: 992px) {
481
+ html body .modula-row-cols-lg-1 > * {
482
+ -ms-flex: 0 0 100%;
483
+ flex: 0 0 100%;
484
+ max-width: 100%
485
+ }
486
+
487
+ html body .modula-row-cols-lg-2 > * {
488
+ -ms-flex: 0 0 50%;
489
+ flex: 0 0 50%;
490
+ max-width: 50%
491
+ }
492
+
493
+ html body .modula-row-cols-lg-3 > * {
494
+ -ms-flex: 0 0 33.333333%;
495
+ flex: 0 0 33.333333%;
496
+ max-width: 33.333333%
497
+ }
498
+
499
+ html body .modula-row-cols-lg-4 > * {
500
+ -ms-flex: 0 0 25%;
501
+ flex: 0 0 25%;
502
+ max-width: 25%
503
+ }
504
+
505
+ html body .modula-row-cols-lg-5 > * {
506
+ -ms-flex: 0 0 20%;
507
+ flex: 0 0 20%;
508
+ max-width: 20%
509
+ }
510
+
511
+ html body .modula-row-cols-lg-6 > * {
512
+ -ms-flex: 0 0 16.666667%;
513
+ flex: 0 0 16.666667%;
514
+ max-width: 16.666667%
515
+ }
516
+ }
517
+
518
+ @media (min-width: 1200px) {
519
+ html body .modula-row-cols-xl-1 > * {
520
+ -ms-flex: 0 0 100%;
521
+ flex: 0 0 100%;
522
+ max-width: 100%
523
+ }
524
+
525
+ html body .modula-row-cols-xl-2 > * {
526
+ -ms-flex: 0 0 50%;
527
+ flex: 0 0 50%;
528
+ max-width: 50%
529
+ }
530
+
531
+ html body .modula-row-cols-xl-3 > * {
532
+ -ms-flex: 0 0 33.333333%;
533
+ flex: 0 0 33.333333%;
534
+ max-width: 33.333333%
535
+ }
536
+
537
+ html body .modula-row-cols-xl-4 > * {
538
+ -ms-flex: 0 0 25%;
539
+ flex: 0 0 25%;
540
+ max-width: 25%
541
+ }
542
+
543
+ html body .modula-row-cols-xl-5 > * {
544
+ -ms-flex: 0 0 20%;
545
+ flex: 0 0 20%;
546
+ max-width: 20%
547
+ }
548
+
549
+ html body .modula-row-cols-xl-6 > * {
550
+ -ms-flex: 0 0 16.666667%;
551
+ flex: 0 0 16.666667%;
552
+ max-width: 16.666667%
553
+ }
554
+ }
555
+
556
+ html body .modula .modula-items.grid-gallery .modula-item .figc {
557
+ height: 100%;
558
+ top: 0;
559
+ }
560
+
561
+ html body div.modula-powered {
562
+ text-align: right;
563
+ font-size: 14px;
564
+ margin-right: 5px;
565
+ clear:both;
566
+ }
567
+
568
+ html body div.modula-powered svg.modula-logo {
569
+ width: 14px;
570
+ position: relative;
571
+ top: 3px;
572
+ }
573
+
574
+ html body div.modula-powered svg.modula-logo path {
575
+ color: #58ab7e !important;
576
+
577
+ }
578
+
579
+ html body div.modula-powered svg.modula-logo {
580
+ display: inline-block;
581
+ }
582
+
583
+ .modula-gallery:not( .modula-gallery-initialized ) > .modula-items {
584
+ visibility: hidden;
585
+ }
586
+
587
+ .modula-gallery.modula-gallery-initialized .modula-items .modula-item {
588
+ visibility: visible;
589
  }
assets/font/material-design-icons/license.txt CHANGED
@@ -1,96 +1,96 @@
1
- Copyright (c) 2014, Austin Andrews (http://materialdesignicons.com/),
2
- with Reserved Font Name Material Design Icons.
3
- Copyright (c) 2014, Google (http://www.google.com/design/)
4
- uses the license at https://github.com/google/material-design-icons/blob/master/LICENSE
5
-
6
- This Font Software is licensed under the SIL Open Font License, Version 1.1.
7
- This license is copied below, and is also available with a FAQ at:
8
- http://scripts.sil.org/OFL
9
-
10
-
11
- -----------------------------------------------------------
12
- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
13
- -----------------------------------------------------------
14
-
15
- PREAMBLE
16
- The goals of the Open Font License (OFL) are to stimulate worldwide
17
- development of collaborative font projects, to support the font creation
18
- efforts of academic and linguistic communities, and to provide a free and
19
- open framework in which fonts may be shared and improved in partnership
20
- with others.
21
-
22
- The OFL allows the licensed fonts to be used, studied, modified and
23
- redistributed freely as long as they are not sold by themselves. The
24
- fonts, including any derivative works, can be bundled, embedded,
25
- redistributed and/or sold with any software provided that any reserved
26
- names are not used by derivative works. The fonts and derivatives,
27
- however, cannot be released under any other type of license. The
28
- requirement for fonts to remain under this license does not apply
29
- to any document created using the fonts or their derivatives.
30
-
31
- DEFINITIONS
32
- "Font Software" refers to the set of files released by the Copyright
33
- Holder(s) under this license and clearly marked as such. This may
34
- include source files, build scripts and documentation.
35
-
36
- "Reserved Font Name" refers to any names specified as such after the
37
- copyright statement(s).
38
-
39
- "Original Version" refers to the collection of Font Software components as
40
- distributed by the Copyright Holder(s).
41
-
42
- "Modified Version" refers to any derivative made by adding to, deleting,
43
- or substituting -- in part or in whole -- any of the components of the
44
- Original Version, by changing formats or by porting the Font Software to a
45
- new environment.
46
-
47
- "Author" refers to any designer, engineer, programmer, technical
48
- writer or other person who contributed to the Font Software.
49
-
50
- PERMISSION & CONDITIONS
51
- Permission is hereby granted, free of charge, to any person obtaining
52
- a copy of the Font Software, to use, study, copy, merge, embed, modify,
53
- redistribute, and sell modified and unmodified copies of the Font
54
- Software, subject to the following conditions:
55
-
56
- 1) Neither the Font Software nor any of its individual components,
57
- in Original or Modified Versions, may be sold by itself.
58
-
59
- 2) Original or Modified Versions of the Font Software may be bundled,
60
- redistributed and/or sold with any software, provided that each copy
61
- contains the above copyright notice and this license. These can be
62
- included either as stand-alone text files, human-readable headers or
63
- in the appropriate machine-readable metadata fields within text or
64
- binary files as long as those fields can be easily viewed by the user.
65
-
66
- 3) No Modified Version of the Font Software may use the Reserved Font
67
- Name(s) unless explicit written permission is granted by the corresponding
68
- Copyright Holder. This restriction only applies to the primary font name as
69
- presented to the users.
70
-
71
- 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
72
- Software shall not be used to promote, endorse or advertise any
73
- Modified Version, except to acknowledge the contribution(s) of the
74
- Copyright Holder(s) and the Author(s) or with their explicit written
75
- permission.
76
-
77
- 5) The Font Software, modified or unmodified, in part or in whole,
78
- must be distributed entirely under this license, and must not be
79
- distributed under any other license. The requirement for fonts to
80
- remain under this license does not apply to any document created
81
- using the Font Software.
82
-
83
- TERMINATION
84
- This license becomes null and void if any of the above conditions are
85
- not met.
86
-
87
- DISCLAIMER
88
- THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
89
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
90
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
91
- OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
92
- COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
93
- INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
94
- DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
95
- FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
96
  OTHER DEALINGS IN THE FONT SOFTWARE.
1
+ Copyright (c) 2014, Austin Andrews (http://materialdesignicons.com/),
2
+ with Reserved Font Name Material Design Icons.
3
+ Copyright (c) 2014, Google (http://www.google.com/design/)
4
+ uses the license at https://github.com/google/material-design-icons/blob/master/LICENSE
5
+
6
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
7
+ This license is copied below, and is also available with a FAQ at:
8
+ http://scripts.sil.org/OFL
9
+
10
+
11
+ -----------------------------------------------------------
12
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
13
+ -----------------------------------------------------------
14
+
15
+ PREAMBLE
16
+ The goals of the Open Font License (OFL) are to stimulate worldwide
17
+ development of collaborative font projects, to support the font creation
18
+ efforts of academic and linguistic communities, and to provide a free and
19
+ open framework in which fonts may be shared and improved in partnership
20
+ with others.
21
+
22
+ The OFL allows the licensed fonts to be used, studied, modified and
23
+ redistributed freely as long as they are not sold by themselves. The
24
+ fonts, including any derivative works, can be bundled, embedded,
25
+ redistributed and/or sold with any software provided that any reserved
26
+ names are not used by derivative works. The fonts and derivatives,
27
+ however, cannot be released under any other type of license. The
28
+ requirement for fonts to remain under this license does not apply
29
+ to any document created using the fonts or their derivatives.
30
+
31
+ DEFINITIONS
32
+ "Font Software" refers to the set of files released by the Copyright
33
+ Holder(s) under this license and clearly marked as such. This may
34
+ include source files, build scripts and documentation.
35
+
36
+ "Reserved Font Name" refers to any names specified as such after the
37
+ copyright statement(s).
38
+
39
+ "Original Version" refers to the collection of Font Software components as
40
+ distributed by the Copyright Holder(s).
41
+
42
+ "Modified Version" refers to any derivative made by adding to, deleting,
43
+ or substituting -- in part or in whole -- any of the components of the
44
+ Original Version, by changing formats or by porting the Font Software to a
45
+ new environment.
46
+
47
+ "Author" refers to any designer, engineer, programmer, technical
48
+ writer or other person who contributed to the Font Software.
49
+
50
+ PERMISSION & CONDITIONS
51
+ Permission is hereby granted, free of charge, to any person obtaining
52
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
53
+ redistribute, and sell modified and unmodified copies of the Font
54
+ Software, subject to the following conditions:
55
+
56
+ 1) Neither the Font Software nor any of its individual components,
57
+ in Original or Modified Versions, may be sold by itself.
58
+
59
+ 2) Original or Modified Versions of the Font Software may be bundled,
60
+ redistributed and/or sold with any software, provided that each copy
61
+ contains the above copyright notice and this license. These can be
62
+ included either as stand-alone text files, human-readable headers or
63
+ in the appropriate machine-readable metadata fields within text or
64
+ binary files as long as those fields can be easily viewed by the user.
65
+
66
+ 3) No Modified Version of the Font Software may use the Reserved Font
67
+ Name(s) unless explicit written permission is granted by the corresponding
68
+ Copyright Holder. This restriction only applies to the primary font name as
69
+ presented to the users.
70
+
71
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
72
+ Software shall not be used to promote, endorse or advertise any
73
+ Modified Version, except to acknowledge the contribution(s) of the
74
+ Copyright Holder(s) and the Author(s) or with their explicit written
75
+ permission.
76
+
77
+ 5) The Font Software, modified or unmodified, in part or in whole,
78
+ must be distributed entirely under this license, and must not be
79
+ distributed under any other license. The requirement for fonts to
80
+ remain under this license does not apply to any document created
81
+ using the Font Software.
82
+
83
+ TERMINATION
84
+ This license becomes null and void if any of the above conditions are
85
+ not met.
86
+
87
+ DISCLAIMER
88
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
89
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
90
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
91
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
92
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
93
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
94
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
95
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
96
  OTHER DEALINGS IN THE FONT SOFTWARE.
assets/font/material-design-icons/materialdesignicons-webfont.svg CHANGED
@@ -1,3804 +1,3804 @@
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">
4
- <defs>
5
- <font id="MaterialDesignIcons" horiz-adv-x="24">
6
- <font-face font-family="MaterialDesignIcons"
7
- units-per-em="512" ascent="448"
8
- descent="64" />
9
- <missing-glyph horiz-adv-x="0" />
10
- <glyph glyph-name="account"
11
- unicode="&#xF101;"
12
- horiz-adv-x="512" d=" M256 362.6666666666667C303.1466666666667 362.6666666666667 341.3333333333333 324.48 341.3333333333333 277.3333333333334S303.1466666666667 192 256 192S170.6666666666667 230.1866666666667 170.6666666666667 277.3333333333334S208.8533333333333 362.6666666666667 256 362.6666666666667M256 149.3333333333334C350.2933333333334 149.3333333333334 426.6666666666667 111.1466666666667 426.6666666666667 64V21.3333333333334H85.3333333333333V64C85.3333333333333 111.1466666666667 161.7066666666667 149.3333333333334 256 149.3333333333334z" />
13
- <glyph glyph-name="account-alert"
14
- unicode="&#xF102;"
15
- horiz-adv-x="512" d=" M213.3333333333333 362.6666666666667C260.48 362.6666666666667 298.6666666666667 324.48 298.6666666666667 277.3333333333334S260.48 192 213.3333333333333 192S128 230.1866666666667 128 277.3333333333334S166.1866666666667 362.6666666666667 213.3333333333333 362.6666666666667M213.3333333333333 149.3333333333334C307.6266666666667 149.3333333333334 384 111.1466666666667 384 64V21.3333333333334H42.6666666666667V64C42.6666666666667 111.1466666666667 119.04 149.3333333333334 213.3333333333333 149.3333333333334M426.6666666666667 192V298.6666666666667H469.3333333333333V192H426.6666666666667M426.6666666666667 106.6666666666667V149.3333333333334H469.3333333333333V106.6666666666667H426.6666666666667z" />
16
- <glyph glyph-name="account-box"
17
- unicode="&#xF103;"
18
- horiz-adv-x="512" d=" M128 85.3333333333334C128 128 213.3333333333333 151.4666666666667 256 151.4666666666667S384 128 384 85.3333333333334V64H128M320 256C320 220.5866666666667 291.4133333333333 192 256 192S192 220.5866666666667 192 256S220.5866666666667 320 256 320S320 291.4133333333334 320 256M64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334z" />
19
- <glyph glyph-name="account-box-outline"
20
- unicode="&#xF104;"
21
- horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384M352 101.3333333333334C352 133.3333333333334 288 149.3333333333334 256 149.3333333333334S160 133.3333333333334 160 101.3333333333334V85.3333333333334H352M256 186.6666666666667C282.4533333333333 186.6666666666667 304 208.2133333333334 304 234.6666666666667S282.4533333333333 282.6666666666667 256 282.6666666666667S208 261.12 208 234.6666666666667S229.5466666666667 186.6666666666667 256 186.6666666666667z" />
22
- <glyph glyph-name="account-check"
23
- unicode="&#xF105;"
24
- horiz-adv-x="512" d=" M192 341.3333333333334C233.1733333333333 341.3333333333334 266.6666666666667 307.8400000000001 266.6666666666667 266.6666666666667S233.1733333333333 192 192 192S117.3333333333333 225.4933333333334 117.3333333333333 266.6666666666667S150.8266666666667 341.3333333333334 192 341.3333333333334M192 154.6666666666667C274.56 154.6666666666667 341.3333333333333 121.1733333333334 341.3333333333333 80V42.6666666666667H42.6666666666667V80C42.6666666666667 121.1733333333334 109.44 154.6666666666667 192 154.6666666666667M362.6666666666667 177.92L304 241.92L328.7466666666667 266.6666666666667L362.6666666666667 232.7466666666667L439.2533333333334 309.3333333333334L464 279.2533333333334L362.6666666666667 177.92z" />
25
- <glyph glyph-name="account-circle"
26
- unicode="&#xF106;"
27
- horiz-adv-x="512" d=" M256 38.4C202.6666666666667 38.4 155.52 65.7066666666667 128 106.6666666666667C128.64 149.3333333333334 213.3333333333333 172.8 256 172.8S383.36 149.3333333333334 384 106.6666666666667C356.48 65.7066666666667 309.3333333333333 38.4 256 38.4M256 341.3333333333334C291.4133333333333 341.3333333333334 320 312.7466666666667 320 277.3333333333334S291.4133333333333 213.3333333333334 256 213.3333333333334S192 241.92 192 277.3333333333334S220.5866666666667 341.3333333333334 256 341.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192C469.3333333333333 309.9733333333334 373.3333333333333 405.3333333333333 256 405.3333333333333z" />
28
- <glyph glyph-name="account-key"
29
- unicode="&#xF107;"
30
- horiz-adv-x="512" d=" M234.6666666666667 234.6666666666667V192H213.3333333333333V149.3333333333334H170.6666666666667V192H124.3733333333333C115.6266666666667 167.04 91.9466666666667 149.3333333333334 64 149.3333333333334C28.5866666666667 149.3333333333334 0 177.92 0 213.3333333333334S28.5866666666667 277.3333333333334 64 277.3333333333334C91.9466666666667 277.3333333333334 115.6266666666667 259.6266666666667 124.3733333333333 234.6666666666667H234.6666666666667M64 234.6666666666667C52.2666666666667 234.6666666666667 42.6666666666667 225.0666666666667 42.6666666666667 213.3333333333334S52.2666666666667 192 64 192S85.3333333333333 201.6 85.3333333333333 213.3333333333334S75.7333333333333 234.6666666666667 64 234.6666666666667M341.3333333333333 149.3333333333334C398.2933333333334 149.3333333333334 512 120.7466666666667 512 64V21.3333333333334H170.6666666666667V64C170.6666666666667 120.7466666666667 284.3733333333334 149.3333333333334 341.3333333333333 149.3333333333334M341.3333333333333 192C294.1866666666666 192 256 230.1866666666667 256 277.3333333333334S294.1866666666666 362.6666666666667 341.3333333333333 362.6666666666667S426.6666666666667 324.48 426.6666666666667 277.3333333333334S388.48 192 341.3333333333333 192z" />
31
- <glyph glyph-name="account-location"
32
- unicode="&#xF108;"
33
- horiz-adv-x="512" d=" M384 106.6666666666667H128V125.8666666666667C128 168.5333333333334 213.3333333333333 192 256 192S384 168.5333333333334 384 125.8666666666667M256 334.9333333333334C288 334.9333333333334 313.6 309.3333333333334 313.6 277.3333333333334C313.6 245.3333333333334 288 219.7333333333334 256 219.7333333333334C224 219.7333333333334 198.4 245.3333333333334 198.4 277.3333333333334C198.4 309.3333333333334 224 334.9333333333334 256 334.9333333333334M405.3333333333333 405.3333333333333H106.6666666666667C82.9866666666667 405.3333333333333 64 386.3466666666667 64 362.6666666666667V64C64 40.5333333333333 83.2 21.3333333333334 106.6666666666667 21.3333333333334H192L256 -42.6666666666666L320 21.3333333333334H405.3333333333333C428.8 21.3333333333334 448 40.5333333333333 448 64V362.6666666666667C448 386.3466666666667 428.8 405.3333333333333 405.3333333333333 405.3333333333333z" />
34
- <glyph glyph-name="account-minus"
35
- unicode="&#xF109;"
36
- horiz-adv-x="512" d=" M320 149.3333333333334C263.04 149.3333333333334 149.3333333333333 120.96 149.3333333333333 64V21.3333333333334H490.6666666666666V64C490.6666666666666 120.96 376.9600000000001 149.3333333333334 320 149.3333333333334M21.3333333333333 234.6666666666667V192H192V234.6666666666667M320 192C367.1466666666667 192 405.3333333333333 230.1866666666667 405.3333333333333 277.3333333333334S367.1466666666667 362.6666666666667 320 362.6666666666667S234.6666666666667 324.48 234.6666666666667 277.3333333333334S272.8533333333333 192 320 192z" />
37
- <glyph glyph-name="account-multiple"
38
- unicode="&#xF10A;"
39
- horiz-adv-x="512" d=" M341.3333333333333 170.6666666666667C335.1466666666667 170.6666666666667 328.1066666666667 170.6666666666667 320.64 169.6C345.3866666666667 151.68 362.6666666666667 128 362.6666666666667 96V42.6666666666667H490.6666666666666V96C490.6666666666666 145.7066666666667 391.04 170.6666666666667 341.3333333333333 170.6666666666667M170.6666666666667 170.6666666666667C120.96 170.6666666666667 21.3333333333333 145.7066666666667 21.3333333333333 96V42.6666666666667H320V96C320 145.7066666666667 220.3733333333333 170.6666666666667 170.6666666666667 170.6666666666667M170.6666666666667 213.3333333333334C206.08 213.3333333333334 234.6666666666667 241.92 234.6666666666667 277.3333333333334S206.08 341.3333333333334 170.6666666666667 341.3333333333334S106.6666666666667 312.7466666666667 106.6666666666667 277.3333333333334S135.2533333333333 213.3333333333334 170.6666666666667 213.3333333333334M341.3333333333333 213.3333333333334C376.7466666666667 213.3333333333334 405.3333333333333 241.92 405.3333333333333 277.3333333333334S376.7466666666667 341.3333333333334 341.3333333333333 341.3333333333334S277.3333333333333 312.7466666666667 277.3333333333333 277.3333333333334S305.92 213.3333333333334 341.3333333333333 213.3333333333334z" />
40
- <glyph glyph-name="account-multiple-outline"
41
- unicode="&#xF10B;"
42
- horiz-adv-x="512" d=" M352 309.3333333333334C375.4666666666667 309.3333333333334 394.6666666666667 290.1333333333334 394.6666666666667 266.6666666666667S375.4666666666667 224 352 224S309.3333333333333 243.2 309.3333333333333 266.6666666666667S328.5333333333333 309.3333333333334 352 309.3333333333334M352 192C393.1733333333333 192 426.6666666666667 225.4933333333334 426.6666666666667 266.6666666666667S393.1733333333333 341.3333333333334 352 341.3333333333334S277.3333333333333 307.8400000000001 277.3333333333333 266.6666666666667S310.8266666666667 192 352 192M160 309.3333333333334C183.4666666666667 309.3333333333334 202.6666666666667 290.1333333333334 202.6666666666667 266.6666666666667S183.4666666666667 224 160 224S117.3333333333333 243.2 117.3333333333333 266.6666666666667S136.5333333333333 309.3333333333334 160 309.3333333333334M160 192C201.1733333333333 192 234.6666666666667 225.4933333333334 234.6666666666667 266.6666666666667S201.1733333333333 341.3333333333334 160 341.3333333333334S85.3333333333333 307.8400000000001 85.3333333333333 266.6666666666667S118.8266666666667 192 160 192M458.6666666666666 74.6666666666667H298.6666666666667V101.3333333333334C298.6666666666667 111.1466666666667 294.4 119.68 288 127.36C306.3466666666667 133.7600000000001 329.3866666666667 138.6666666666667 352 138.6666666666667C404.0533333333334 138.6666666666667 458.6666666666666 112.8533333333334 458.6666666666666 101.3333333333334M266.6666666666667 74.6666666666667H53.3333333333333V101.3333333333334C53.3333333333333 112.8533333333334 107.9466666666667 138.6666666666667 160 138.6666666666667S266.6666666666667 112.8533333333334 266.6666666666667 101.3333333333334M352 170.6666666666667C326.4 170.6666666666667 286.5066666666667 163.4133333333334 256 149.3333333333334C225.4933333333334 163.6266666666667 185.6 170.6666666666667 160 170.6666666666667C113.7066666666667 170.6666666666667 21.3333333333333 147.6266666666667 21.3333333333333 101.3333333333334V42.6666666666667H490.6666666666666V101.3333333333334C490.6666666666666 147.6266666666667 398.2933333333334 170.6666666666667 352 170.6666666666667z" />
43
- <glyph glyph-name="account-multiple-plus"
44
- unicode="&#xF10C;"
45
- horiz-adv-x="512" d=" M277.3333333333333 170.6666666666667C234.6666666666667 170.6666666666667 149.3333333333333 149.3333333333334 149.3333333333333 106.6666666666667V64H405.3333333333333V106.6666666666667C405.3333333333333 149.3333333333334 320 170.6666666666667 277.3333333333333 170.6666666666667M418.56 167.2533333333333C436.2666666666667 151.8933333333333 448 131.84 448 106.6666666666667V64H512V106.6666666666667C512 139.52 461.4399999999999 160 418.56 167.2533333333333M277.3333333333333 213.3333333333334C312.7466666666667 213.3333333333334 341.3333333333333 241.92 341.3333333333333 277.3333333333334S312.7466666666667 341.3333333333334 277.3333333333333 341.3333333333334S213.3333333333333 312.7466666666667 213.3333333333333 277.3333333333334S241.92 213.3333333333334 277.3333333333333 213.3333333333334M384 213.3333333333334C419.4133333333333 213.3333333333334 448 241.92 448 277.3333333333334S419.4133333333333 341.3333333333334 384 341.3333333333334C377.1733333333333 341.3333333333334 370.56 340.2666666666667 364.3733333333333 338.3466666666667C376.5333333333333 321.0666666666667 384 299.9466666666667 384 277.3333333333334C384 254.72 376.5333333333333 233.8133333333334 364.3733333333333 216.5333333333334C370.56 214.4 377.1733333333333 213.3333333333334 384 213.3333333333334M170.6666666666667 234.6666666666667H106.6666666666667V298.6666666666667H64V234.6666666666667H0V192H64V128H106.6666666666667V192H170.6666666666667V234.6666666666667z" />
46
- <glyph glyph-name="account-network"
47
- unicode="&#xF10D;"
48
- horiz-adv-x="512" d=" M277.3333333333333 106.6666666666667V64H298.6666666666667C310.4 64 320 54.4 320 42.6666666666667H469.3333333333333V0H320C320 -11.7333333333333 310.4 -21.3333333333333 298.6666666666667 -21.3333333333333H213.3333333333333C201.6 -21.3333333333333 192 -11.7333333333333 192 0H42.6666666666667V42.6666666666667H192C192 54.4 201.6 64 213.3333333333333 64H234.6666666666667V106.6666666666667H106.6666666666667V138.6666666666667C106.6666666666667 179.84 173.44 213.3333333333334 256 213.3333333333334S405.3333333333333 179.84 405.3333333333333 138.6666666666667V106.6666666666667H277.3333333333333M256 405.3333333333333C297.1733333333333 405.3333333333333 330.6666666666667 371.8400000000001 330.6666666666667 330.6666666666667S297.1733333333333 256 256 256S181.3333333333333 289.4933333333334 181.3333333333333 330.6666666666667S214.8266666666667 405.3333333333333 256 405.3333333333333z" />
49
- <glyph glyph-name="account-outline"
50
- unicode="&#xF10E;"
51
- horiz-adv-x="512" d=" M256 170.6666666666667C199.04 170.6666666666667 85.3333333333333 142.2933333333334 85.3333333333333 85.3333333333334V21.3333333333334H426.6666666666667V85.3333333333334C426.6666666666667 142.2933333333334 312.96 170.6666666666667 256 170.6666666666667M256 362.6666666666667C208.8533333333333 362.6666666666667 170.6666666666667 324.48 170.6666666666667 277.3333333333334S208.8533333333333 192 256 192S341.3333333333333 230.1866666666667 341.3333333333333 277.3333333333334S303.1466666666667 362.6666666666667 256 362.6666666666667M256 130.1333333333333C319.36 130.1333333333333 386.1333333333334 98.9866666666667 386.1333333333334 85.3333333333334V61.8666666666667H125.8666666666667V85.3333333333334C125.8666666666667 98.9866666666667 192 130.1333333333333 256 130.1333333333333M256 322.1333333333334C280.7466666666667 322.1333333333334 300.8 302.0800000000001 300.8 277.3333333333334C300.8 252.5866666666667 280.7466666666667 232.5333333333334 256 232.5333333333334C231.2533333333334 232.5333333333334 211.2 252.5866666666667 211.2 277.3333333333334C211.2 302.0800000000001 231.2533333333334 322.1333333333334 256 322.1333333333334z" />
52
- <glyph glyph-name="account-plus"
53
- unicode="&#xF10F;"
54
- horiz-adv-x="512" d=" M320 149.3333333333334C263.04 149.3333333333334 149.3333333333333 120.96 149.3333333333333 64V21.3333333333334H490.6666666666666V64C490.6666666666666 120.96 376.9600000000001 149.3333333333334 320 149.3333333333334M128 234.6666666666667V298.6666666666667H85.3333333333333V234.6666666666667H21.3333333333333V192H85.3333333333333V128H128V192H192V234.6666666666667M320 192C367.1466666666667 192 405.3333333333333 230.1866666666667 405.3333333333333 277.3333333333334S367.1466666666667 362.6666666666667 320 362.6666666666667S234.6666666666667 324.48 234.6666666666667 277.3333333333334S272.8533333333333 192 320 192z" />
55
- <glyph glyph-name="account-remove"
56
- unicode="&#xF110;"
57
- horiz-adv-x="512" d=" M320 149.3333333333334C376.9600000000001 149.3333333333334 490.6666666666666 120.96 490.6666666666666 64V21.3333333333334H149.3333333333333V64C149.3333333333333 120.96 263.04 149.3333333333334 320 149.3333333333334M320 192C272.8533333333333 192 234.6666666666667 230.1866666666667 234.6666666666667 277.3333333333334S272.8533333333333 362.6666666666667 320 362.6666666666667S405.3333333333333 324.48 405.3333333333333 277.3333333333334S367.1466666666667 192 320 192M106.6666666666667 243.4133333333334L151.8933333333333 288.8533333333334L182.1866666666667 258.5600000000001L136.7466666666667 213.3333333333334L182.1866666666667 168.1066666666667L151.8933333333333 137.8133333333333L106.6666666666667 183.2533333333333L61.44 137.8133333333334L31.1466666666667 168.1066666666667L76.5866666666667 213.3333333333334L31.1466666666667 258.56L61.44 288.8533333333334L106.6666666666667 243.4133333333334z" />
58
- <glyph glyph-name="account-search"
59
- unicode="&#xF111;"
60
- horiz-adv-x="512" d=" M320 149.3333333333334C376.9600000000001 149.3333333333334 490.6666666666666 120.7466666666667 490.6666666666666 64V21.3333333333334H149.3333333333333V64C149.3333333333333 120.7466666666667 263.04 149.3333333333334 320 149.3333333333334M320 192C272.8533333333333 192 234.6666666666667 230.1866666666667 234.6666666666667 277.3333333333334S272.8533333333333 362.6666666666667 320 362.6666666666667S405.3333333333333 324.48 405.3333333333333 277.3333333333334S367.1466666666667 192 320 192M58.88 135.2533333333333C50.56 126.9333333333333 36.9066666666667 126.9333333333333 28.5866666666667 135.2533333333333C20.2666666666667 143.5733333333334 20.2666666666667 157.2266666666667 28.5866666666667 165.5466666666667L70.1866666666667 207.1466666666667C66.1333333333333 215.4666666666667 64 224.8533333333333 64 234.6666666666667C64 270.0800000000001 92.5866666666667 298.6666666666667 128 298.6666666666667S192 270.0800000000001 192 234.6666666666667S163.4133333333333 170.6666666666667 128 170.6666666666667C118.1866666666667 170.6666666666667 108.8 172.8 100.48 176.8533333333334L58.88 135.2533333333333M128 256C116.2666666666667 256 106.6666666666667 246.4000000000001 106.6666666666667 234.6666666666667S116.2666666666667 213.3333333333334 128 213.3333333333334S149.3333333333333 222.9333333333333 149.3333333333333 234.6666666666667S139.7333333333333 256 128 256z" />
61
- <glyph glyph-name="account-star"
62
- unicode="&#xF112;"
63
- horiz-adv-x="512" d=" M320 149.3333333333334C263.04 149.3333333333334 149.3333333333333 120.96 149.3333333333333 64V21.3333333333334H490.6666666666666V64C490.6666666666666 120.96 376.9600000000001 149.3333333333334 320 149.3333333333334M320 192C367.1466666666667 192 405.3333333333333 230.1866666666667 405.3333333333333 277.3333333333334S367.1466666666667 362.6666666666667 320 362.6666666666667S234.6666666666667 324.48 234.6666666666667 277.3333333333334S272.8533333333333 192 320 192M106.6666666666667 164.6933333333334L158.9333333333333 132.9066666666667L145.0666666666667 192.8533333333334L192 232.96L130.3466666666666 238.2933333333334L106.6666666666667 294.6133333333334L82.56 238.2933333333334L21.3333333333333 232.96L67.84 192.8533333333333L53.3333333333333 132.9066666666667L106.6666666666667 164.6933333333334z" />
64
- <glyph glyph-name="account-star-variant"
65
- unicode="&#xF113;"
66
- horiz-adv-x="512" d=" M192 149.3333333333334C248.96 149.3333333333334 362.6666666666667 120.96 362.6666666666667 64V21.3333333333334H21.3333333333333V64C21.3333333333333 120.96 135.04 149.3333333333334 192 149.3333333333334M192 192C144.8533333333333 192 106.6666666666667 230.1866666666667 106.6666666666667 277.3333333333334S144.8533333333333 362.6666666666667 192 362.6666666666667S277.3333333333333 324.48 277.3333333333333 277.3333333333334S239.1466666666667 192 192 192M405.3333333333333 164.6933333333334L352.8533333333333 132.9066666666667L366.9333333333333 192.8533333333334L320 232.9600000000001L381.6533333333333 238.2933333333334L405.3333333333333 294.6133333333334L429.44 238.2933333333334L490.6666666666666 232.96L444.16 192.8533333333333L458.6666666666666 132.9066666666667L405.3333333333333 164.6933333333333z" />
67
- <glyph glyph-name="account-switch"
68
- unicode="&#xF114;"
69
- horiz-adv-x="512" d=" M341.3333333333333 256C391.04 256 490.6666666666666 231.04 490.6666666666666 181.3333333333334V128H362.6666666666667V181.3333333333334C362.6666666666667 213.3333333333334 345.3866666666667 237.0133333333333 320.8533333333333 254.9333333333334L341.3333333333333 256M170.6666666666667 256C220.3733333333333 256 320 231.04 320 181.3333333333334V128H21.3333333333333V181.3333333333334C21.3333333333333 231.04 120.96 256 170.6666666666667 256M170.6666666666667 298.6666666666667C135.2533333333333 298.6666666666667 106.6666666666667 327.2533333333334 106.6666666666667 362.6666666666667S135.2533333333333 426.6666666666667 170.6666666666667 426.6666666666667S234.6666666666667 398.08 234.6666666666667 362.6666666666667S206.08 298.6666666666667 170.6666666666667 298.6666666666667M341.3333333333333 298.6666666666667C305.92 298.6666666666667 277.3333333333333 327.2533333333334 277.3333333333333 362.6666666666667S305.92 426.6666666666667 341.3333333333333 426.6666666666667S405.3333333333333 398.08 405.3333333333333 362.6666666666667S376.7466666666667 298.6666666666667 341.3333333333333 298.6666666666667M192 90.6666666666667V42.6666666666667H320V90.6666666666667L389.3333333333333 21.3333333333334L320 -48V0H192V-48L122.6666666666667 21.3333333333334L192 90.6666666666667z" />
70
- <glyph glyph-name="airballoon"
71
- unicode="&#xF115;"
72
- horiz-adv-x="512" d=" M234.6666666666667 -42.6666666666666C211.2 -42.6666666666666 192 -23.4666666666667 192 0V42.6666666666667H320V0C320 -23.4666666666667 300.8 -42.6666666666666 277.3333333333333 -42.6666666666666H234.6666666666667M256 426.6666666666667C271.1466666666667 426.6666666666667 285.6533333333333 424.7466666666667 299.7333333333334 421.12C324.6933333333334 387.6266666666667 341.3333333333333 326.1866666666667 341.3333333333333 256C341.3333333333333 207.36 333.2266666666667 162.7733333333333 320 106.6666666666667C320 83.2 300.8 64 277.3333333333333 64H234.6666666666667C211.2 64 192 83.2 192 106.6666666666667C178.7733333333334 162.7733333333333 170.6666666666667 207.36 170.6666666666667 256C170.6666666666667 326.1866666666667 187.3066666666667 387.6266666666667 212.2666666666667 421.12C226.3466666666667 424.7466666666667 240.8533333333333 426.6666666666667 256 426.6666666666667M426.6666666666667 277.3333333333334C426.6666666666667 209.4933333333334 387.2 108.3733333333333 329.8133333333334 80.8533333333334C350.08 119.68 362.6666666666667 195.6266666666667 362.6666666666667 256C362.6666666666667 316.3733333333334 350.08 370.9866666666667 329.8133333333334 409.8133333333334C387.2 382.2933333333334 426.6666666666667 345.1733333333334 426.6666666666667 277.3333333333334M85.3333333333333 277.3333333333334C85.3333333333333 345.1733333333334 124.8 382.2933333333334 182.1866666666667 409.8133333333334C161.92 370.9866666666667 149.3333333333333 316.3733333333334 149.3333333333333 256S161.92 119.68 182.1866666666667 80.8533333333334C124.8 108.3733333333333 85.3333333333333 209.4933333333334 85.3333333333333 277.3333333333334z" />
73
- <glyph glyph-name="airplane"
74
- unicode="&#xF116;"
75
- horiz-adv-x="512" d=" M448 106.6666666666667V149.3333333333334L277.3333333333333 256V373.3333333333334C277.3333333333333 391.04 263.04 405.3333333333333 245.3333333333333 405.3333333333333S213.3333333333333 391.04 213.3333333333333 373.3333333333334V256L42.6666666666667 149.3333333333334V106.6666666666667L213.3333333333333 160V42.6666666666667L170.6666666666667 10.6666666666667V-21.3333333333333L245.3333333333333 0L320 -21.3333333333333V10.6666666666667L277.3333333333333 42.6666666666667V160L448 106.6666666666667z" />
76
- <glyph glyph-name="airplane-off"
77
- unicode="&#xF117;"
78
- horiz-adv-x="512" d=" M67.2 335.5733333333334L173.44 229.12L45.8666666666667 149.3333333333334V106.6666666666667L216.5333333333333 160V42.6666666666667L173.8666666666667 10.6666666666667V-21.3333333333333L248.5333333333334 0L323.2 -21.3333333333333V10.6666666666667L280.5333333333333 42.6666666666667V122.24L402.56 0L429.8666666666667 27.0933333333334L94.2933333333333 362.6666666666667M280.5333333333333 256V373.3333333333334C280.5333333333333 391.04 266.24 405.3333333333333 248.5333333333334 405.3333333333333S216.5333333333333 391.04 216.5333333333333 373.3333333333334V294.8266666666667L383.36 128L451.1999999999999 106.6666666666667V149.3333333333334L280.5333333333333 256z" />
79
- <glyph glyph-name="alarm"
80
- unicode="&#xF118;"
81
- horiz-adv-x="512" d=" M256 21.3333333333334C173.44 21.3333333333334 106.6666666666667 88.1066666666667 106.6666666666667 170.6666666666667S173.44 320 256 320S405.3333333333333 253.2266666666667 405.3333333333333 170.6666666666667S338.56 21.3333333333334 256 21.3333333333334M256 362.6666666666667C149.9733333333333 362.6666666666667 64 276.6933333333334 64 170.6666666666667S149.9733333333333 -21.3333333333333 256 -21.3333333333333S448 64.64 448 170.6666666666667S362.0266666666667 362.6666666666667 256 362.6666666666667M266.6666666666667 277.3333333333334H234.6666666666667V149.3333333333334L336 88.5333333333333L352 114.7733333333333L266.6666666666667 165.3333333333334V277.3333333333334M168.1066666666667 375.68L140.8 408.32L42.6666666666667 326.1866666666667L70.1866666666667 293.5466666666667L168.1066666666667 375.68M469.3333333333333 325.9733333333334L371.2 408.32L343.68 375.68L441.8133333333334 293.3333333333334L469.3333333333333 325.9733333333334z" />
82
- <glyph glyph-name="alarm-check"
83
- unicode="&#xF119;"
84
- horiz-adv-x="512" d=" M224.8533333333333 138.0266666666667L179.4133333333333 183.4666666666667L156.8 160.8533333333334L224.64 93.0133333333333L352.64 221.0133333333333L330.0266666666667 243.6266666666667L224.8533333333334 138.0266666666667M256 21.3333333333334C173.44 21.3333333333334 106.6666666666667 88.1066666666667 106.6666666666667 170.6666666666667S173.44 320 256 320S405.3333333333333 253.2266666666667 405.3333333333333 170.6666666666667S338.56 21.3333333333334 256 21.3333333333334M256 362.6666666666667C149.9733333333333 362.6666666666667 64 276.6933333333334 64 170.6666666666667S149.9733333333333 -21.3333333333333 256 -21.3333333333333S448 64.64 448 170.6666666666667S362.0266666666667 362.6666666666667 256 362.6666666666667M168.1066666666667 375.68L140.8 408.32L42.6666666666667 326.1866666666667L70.1866666666667 293.5466666666667L168.1066666666667 375.68M469.3333333333333 325.9733333333334L371.2 408.32L343.68 375.68L441.8133333333334 293.3333333333334L469.3333333333333 325.9733333333334z" />
85
- <glyph glyph-name="alarm-multiple"
86
- unicode="&#xF11A;"
87
- horiz-adv-x="512" d=" M198.1866666666667 378.6666666666667L110.08 304.64L85.3333333333333 334.0800000000001L173.6533333333333 408.1066666666667L198.1866666666667 378.6666666666667M469.3333333333333 333.8666666666667L444.5866666666667 304.4266666666667L356.2666666666667 378.6666666666667L381.0133333333333 408.1066666666667L469.3333333333333 333.8666666666667M277.3333333333333 362.6666666666667C371.6266666666667 362.6666666666667 448 286.2933333333334 448 192S371.6266666666667 21.3333333333334 277.3333333333333 21.3333333333334S106.6666666666667 97.7066666666667 106.6666666666667 192S183.04 362.6666666666667 277.3333333333333 362.6666666666667M277.3333333333333 320C206.72 320 149.3333333333333 262.6133333333334 149.3333333333333 192S206.72 64 277.3333333333333 64S405.3333333333333 121.3866666666667 405.3333333333333 192S347.9466666666666 320 277.3333333333333 320M256 288H288V191.36L356.6933333333333 160L343.4666666666666 130.9866666666667L256 170.6666666666667V288M21.3333333333333 149.3333333333334C21.3333333333333 202.6666666666667 45.44 249.6 83.4133333333333 280.9600000000001C71.04 253.8666666666667 64 224 64 192L65.28 167.8933333333334L64 149.3333333333334C64 100.6933333333333 91.0933333333333 58.4533333333334 130.9866666666667 36.6933333333333C158.72 10.6666666666667 193.4933333333334 -8.32 232.32 -16.64C219.3066666666667 -19.6266666666667 205.8666666666667 -21.3333333333333 192 -21.3333333333333C97.7066666666667 -21.3333333333333 21.3333333333333 55.04 21.3333333333333 149.3333333333334z" />
88
- <glyph glyph-name="alarm-off"
89
- unicode="&#xF11B;"
90
- horiz-adv-x="512" d=" M170.6666666666667 378.0266666666667L140.8 408.32L122.4533333333333 393.1733333333334L152.7466666666667 362.6666666666667M351.36 55.68C325.5466666666666 34.3466666666667 292.2666666666667 21.3333333333334 256 21.3333333333334C173.44 21.3333333333334 106.6666666666667 88.1066666666667 106.6666666666667 170.6666666666667C106.6666666666667 206.9333333333333 119.68 240.2133333333334 141.0133333333333 266.0266666666667M62.2933333333333 399.1466666666667L35.2 371.8400000000001L64 343.4666666666667L39.8933333333333 323.6266666666667L70.1866666666667 293.3333333333334L93.8666666666667 313.3866666666667L110.9333333333333 296.32C81.7066666666667 262.6133333333334 64 218.6666666666667 64 170.6666666666667C64 64.64 149.9733333333333 -21.3333333333333 256 -21.3333333333333C304 -21.3333333333333 347.9466666666666 -3.6266666666667 381.6533333333333 25.6L428.5866666666667 -21.3333333333333L455.6799999999999 5.76L82.9866666666667 378.24L62.2933333333333 399.1466666666667M469.3333333333333 325.9733333333334L371.2 408.32L343.68 375.68L441.8133333333334 293.3333333333334L469.3333333333333 325.9733333333334M256 320C338.56 320 405.3333333333333 253.2266666666667 405.3333333333333 170.6666666666667C405.3333333333333 152.7466666666667 401.92 135.4666666666667 396.16 119.4666666666667L428.5866666666667 87.04C440.9599999999999 112.4266666666666 448 140.5866666666667 448 170.6666666666666C448 276.6933333333334 362.0266666666667 362.6666666666667 256 362.6666666666667C225.92 362.6666666666667 197.76 355.6266666666667 172.3733333333333 343.2533333333334L204.8 310.8266666666667C220.8 316.5866666666667 238.08 320 256 320z" />
91
- <glyph glyph-name="alarm-plus"
92
- unicode="&#xF11C;"
93
- horiz-adv-x="512" d=" M277.3333333333333 256H234.6666666666667V192H170.6666666666667V149.3333333333334H234.6666666666667V85.3333333333334H277.3333333333333V149.3333333333334H341.3333333333333V192H277.3333333333333M256 21.3333333333334C173.44 21.3333333333334 106.6666666666667 88.1066666666667 106.6666666666667 170.6666666666667S173.44 320 256 320S405.3333333333333 253.2266666666667 405.3333333333333 170.6666666666667S338.56 21.3333333333334 256 21.3333333333334M256 362.6666666666667C149.9733333333333 362.6666666666667 64 276.6933333333334 64 170.6666666666667S149.9733333333333 -21.3333333333333 256 -21.3333333333333S448 64.64 448 170.6666666666667S362.0266666666667 362.6666666666667 256 362.6666666666667M469.3333333333333 325.9733333333334L371.2 408.32L343.68 375.68L441.8133333333334 293.3333333333334M168.1066666666667 375.68L140.8 408.32L42.6666666666667 326.1866666666667L70.1866666666667 293.5466666666667L168.1066666666667 375.68z" />
94
- <glyph glyph-name="album"
95
- unicode="&#xF11D;"
96
- horiz-adv-x="512" d=" M256 213.3333333333334C244.2666666666667 213.3333333333334 234.6666666666667 203.7333333333334 234.6666666666667 192S244.2666666666667 170.6666666666667 256 170.6666666666667S277.3333333333333 180.2666666666667 277.3333333333333 192S267.7333333333334 213.3333333333334 256 213.3333333333334M256 96C202.6666666666667 96 160 138.6666666666667 160 192S202.6666666666667 288 256 288S352 245.3333333333334 352 192S309.3333333333333 96 256 96M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
97
- <glyph glyph-name="alert"
98
- unicode="&#xF11E;"
99
- horiz-adv-x="512" d=" M277.3333333333333 149.3333333333334H234.6666666666667V234.6666666666667H277.3333333333333M277.3333333333333 64H234.6666666666667V106.6666666666667H277.3333333333333M21.3333333333333 0H490.6666666666666L256 405.3333333333333L21.3333333333333 0z" />
100
- <glyph glyph-name="alert-box"
101
- unicode="&#xF11F;"
102
- horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M277.3333333333333 170.6666666666667V298.6666666666667H234.6666666666667V170.6666666666667H277.3333333333333M277.3333333333333 85.3333333333334V128H234.6666666666667V85.3333333333334H277.3333333333333z" />
103
- <glyph glyph-name="alert-circle"
104
- unicode="&#xF120;"
105
- horiz-adv-x="512" d=" M277.3333333333333 170.6666666666667H234.6666666666667V298.6666666666667H277.3333333333333M277.3333333333333 85.3333333333334H234.6666666666667V128H277.3333333333333M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
106
- <glyph glyph-name="alert-octagon"
107
- unicode="&#xF121;"
108
- horiz-adv-x="512" d=" M277.3333333333333 170.6666666666667H234.6666666666667V298.6666666666667H277.3333333333333M256 78.9333333333333C240.64 78.9333333333333 228.2666666666667 91.3066666666666 228.2666666666667 106.6666666666667C228.2666666666667 122.0266666666667 240.64 134.4 256 134.4C271.36 134.4 283.7333333333334 122.0266666666667 283.7333333333334 106.6666666666667C283.7333333333334 91.3066666666667 271.36 78.9333333333333 256 78.9333333333333M335.5733333333333 384H176.4266666666667L64 271.5733333333334V112.4266666666667L176.4266666666667 0H335.5733333333333L448 112.4266666666667V271.5733333333334L335.5733333333333 384z" />
109
- <glyph glyph-name="alpha"
110
- unicode="&#xF122;"
111
- horiz-adv-x="512" d=" M385.7066666666666 68.2666666666667C375.8933333333333 65.4933333333333 367.1466666666666 64 359.4666666666666 64C333.8666666666666 64 316.5866666666666 82.7733333333333 307.8399999999999 120.5333333333334H306.7733333333333C285.6533333333333 79.7866666666668 255.9999999999999 59.52 218.6666666666666 59.52C190.7199999999999 59.52 168.3199999999999 69.9733333333333 151.4666666666666 91.0933333333334S126.2933333333333 138.6666666666667 126.2933333333333 170.6666666666667C126.2933333333333 208 135.8933333333333 237.8666666666667 154.88 261.12C173.8666666666667 284.3733333333334 199.68 296.1066666666667 232.32 296.1066666666667C249.8133333333334 296.1066666666667 265.6 291.2 279.2533333333334 281.6C292.9066666666667 271.7866666666667 303.36 258.1333333333334 310.6133333333334 240.4266666666667H311.4666666666667L326.6133333333333 291.6266666666667H381.2266666666666L335.5733333333333 178.1333333333333C340.6933333333333 151.68 346.0266666666666 133.5466666666667 351.9999999999999 123.9466666666667C357.1199999999999 114.3466666666667 364.3733333333332 109.44 373.3333333333333 109.44C378.4533333333332 109.44 382.5066666666666 110.2933333333333 386.1333333333333 111.7866666666666L385.7066666666666 68.2666666666667M294.8266666666666 180.0533333333334C290.3466666666666 204.16 283.0933333333333 222.9333333333333 273.28 235.7333333333333C263.68 248.7466666666667 251.9466666666667 255.1466666666667 238.5066666666667 255.1466666666667C221.0133333333333 255.1466666666667 206.9333333333333 247.2533333333334 196.48 231.68C186.0266666666667 215.8933333333333 181.3333333333333 196.48 181.3333333333333 173.6533333333333C181.3333333333333 152.7466666666667 185.3866666666667 135.4666666666667 194.56 121.3866666666667C203.52 107.3066666666666 215.68 100.48 230.8266666666667 100.48C243.6266666666666 100.48 255.36 106.6666666666666 265.8133333333333 118.4C276.48 130.56 285.2266666666667 148.2666666666667 292.2666666666667 171.52L294.8266666666666 180.0533333333333z" />
112
- <glyph glyph-name="alphabetical"
113
- unicode="&#xF123;"
114
- horiz-adv-x="512" d=" M128 213.3333333333334C151.4666666666667 213.3333333333334 170.6666666666667 194.1333333333333 170.6666666666667 170.6666666666667V85.3333333333334H85.3333333333333C61.8666666666667 85.3333333333334 42.6666666666667 104.5333333333333 42.6666666666667 128V170.6666666666667C42.6666666666667 194.1333333333333 61.8666666666667 213.3333333333334 85.3333333333333 213.3333333333334H128M85.3333333333333 170.6666666666667V128H128V170.6666666666667H85.3333333333333M426.6666666666667 170.6666666666667V128H469.3333333333333V85.3333333333334H426.6666666666667C403.2 85.3333333333334 384 104.5333333333333 384 128V170.6666666666667C384 194.1333333333333 403.2 213.3333333333334 426.6666666666667 213.3333333333334H469.3333333333333V170.6666666666667H426.6666666666667M256 298.6666666666667V213.3333333333334H298.6666666666667C322.1333333333334 213.3333333333334 341.3333333333333 194.1333333333333 341.3333333333333 170.6666666666667V128C341.3333333333333 104.5333333333333 322.1333333333334 85.3333333333334 298.6666666666667 85.3333333333334H256C232.5333333333334 85.3333333333334 213.3333333333333 104.5333333333333 213.3333333333333 128V298.6666666666667H256M256 128H298.6666666666667V170.6666666666667H256V128z" />
115
- <glyph glyph-name="amazon"
116
- unicode="&#xF124;"
117
- horiz-adv-x="512" d=" M339.84 83.4133333333334C336 80 330.6666666666667 79.7866666666666 326.4 82.1333333333334C307.4133333333333 97.92 304 105.1733333333334 293.5466666666666 120.3200000000001C262.1866666666666 88.3200000000001 240 78.72 199.2533333333333 78.72C151.2533333333333 78.72 113.7066666666666 108.3733333333334 113.7066666666666 167.6800000000001C113.7066666666666 214.1866666666667 138.6666666666666 245.3333333333334 174.72 261.1200000000001C205.8666666666666 274.7733333333335 249.1733333333333 277.3333333333334 282.2399999999999 280.9600000000001V288C282.2399999999999 302.0800000000001 283.3066666666666 318.0800000000001 275.2 329.8133333333334C268.3733333333332 340.2666666666667 254.9333333333333 344.7466666666667 243.2 344.7466666666667C221.44 344.7466666666667 202.0266666666666 333.44 197.3333333333333 310.4C196.2666666666666 305.28 191.9999999999999 300.1600000000001 187.3066666666666 299.9466666666667L131.8399999999999 305.92C127.1466666666666 306.9866666666667 122.0266666666666 310.6133333333334 123.3066666666666 317.8666666666667C136.1066666666666 385.0666666666667 196.9066666666666 405.3333333333333 251.3066666666666 405.3333333333333C279.0399999999999 405.3333333333333 315.3066666666666 397.8666666666667 337.2799999999999 376.9600000000001C365.0133333333333 350.9333333333334 362.6666666666667 316.1600000000001 362.6666666666667 278.4V189.44C362.6666666666667 162.7733333333333 373.3333333333333 150.8266666666667 384 136.5333333333333C387.6266666666667 131.2 388.48 125.0133333333333 384 121.3866666666667L340.0533333333333 83.4133333333333H339.84M282.24 222.72V234.6666666666667C240.8533333333334 234.6666666666667 197.12 226.3466666666667 197.12 177.7066666666667C197.12 152.96 210.1333333333333 136.1066666666667 231.8933333333334 136.1066666666667C248.1066666666667 136.1066666666667 262.4 146.1333333333334 271.5733333333333 162.1333333333334C282.6666666666667 181.9733333333334 282.24 200.5333333333334 282.24 222.72M430.08 31.1466666666667C384 -2.9866666666667 316.16 -21.3333333333333 258.1333333333334 -21.3333333333333C176.8533333333333 -21.3333333333333 103.4666666666667 8.7466666666667 48 58.88C43.7333333333333 62.72 47.5733333333333 68.0533333333333 53.3333333333333 65.0666666666666C112.64 30.2933333333333 186.6666666666667 9.3866666666667 263.04 9.3866666666667C314.4533333333333 9.3866666666667 371.2 20.0533333333333 423.2533333333334 42.0266666666666C431.1466666666667 45.44 437.3333333333333 36.9066666666667 430.08 31.1466666666667M449.4933333333334 53.3333333333333C443.52 61.0133333333333 410.0266666666667 56.96 394.6666666666667 55.0399999999999C390.6133333333333 54.6133333333332 389.9733333333334 58.4533333333333 394.0266666666667 61.4399999999999C420.4799999999999 80.2133333333333 464.2133333333333 74.6666666666666 469.3333333333333 68.4799999999999C474.4533333333333 62.0799999999999 467.84 18.3466666666665 442.88 -2.3466666666668C439.04 -5.7600000000001 435.4133333333333 -3.8400000000001 437.3333333333333 -1e-13C442.88 14.2933333333332 455.4666666666667 45.6533333333332 449.4933333333334 53.3333333333332z" />
118
- <glyph glyph-name="amazon-clouddrive"
119
- unicode="&#xF125;"
120
- horiz-adv-x="512" d=" M105.3866666666667 210.7733333333334C111.5733333333333 210.7733333333334 117.3333333333333 209.9200000000001 122.88 208.4266666666667C123.0933333333333 254.0800000000001 160 291.2000000000001 205.8666666666667 291.2000000000001C240.4266666666667 291.2000000000001 270.2933333333333 269.8666666666668 282.4533333333333 239.5733333333334C295.04 256 314.4533333333333 266.0266666666667 336.2133333333333 266.0266666666667C373.3333333333333 266.0266666666667 404.0533333333334 235.7333333333334 404.0533333333334 198.1866666666667C404.0533333333334 193.0666666666667 403.4133333333333 187.7333333333334 402.3466666666667 182.8266666666667C407.4666666666667 184.7466666666667 413.2266666666668 185.8133333333334 419.2000000000001 185.8133333333334C446.9333333333334 185.8133333333334 469.3333333333334 163.2000000000001 469.3333333333334 135.4666666666667C469.3333333333334 107.7333333333334 446.9333333333334 85.3333333333334 419.2000000000001 85.3333333333334H105.3866666666667C70.8266666666667 85.3333333333334 42.6666666666667 113.4933333333334 42.6666666666667 148.0533333333334C42.6666666666667 182.8266666666667 70.8266666666667 210.7733333333333 105.3866666666667 210.7733333333333z" />
121
- <glyph glyph-name="ambulance"
122
- unicode="&#xF126;"
123
- horiz-adv-x="512" d=" M384 53.3333333333334C401.7066666666666 53.3333333333334 416 67.6266666666667 416 85.3333333333334S401.7066666666666 117.3333333333334 384 117.3333333333334S352 103.04 352 85.3333333333334S366.2933333333334 53.3333333333334 384 53.3333333333334M416 245.3333333333334H362.6666666666667V192H457.8133333333333L416 245.3333333333334M128 53.3333333333334C145.7066666666667 53.3333333333334 160 67.6266666666667 160 85.3333333333334S145.7066666666667 117.3333333333334 128 117.3333333333334S96 103.04 96 85.3333333333334S110.2933333333333 53.3333333333334 128 53.3333333333334M426.6666666666667 277.3333333333334L490.6666666666666 192V85.3333333333334H448C448 49.92 419.4133333333333 21.3333333333334 384 21.3333333333334S320 49.92 320 85.3333333333334H192C192 49.92 163.4133333333333 21.3333333333334 128 21.3333333333334S64 49.92 64 85.3333333333334H21.3333333333333V320C21.3333333333333 343.68 40.32 362.6666666666667 64 362.6666666666667H362.6666666666667V277.3333333333334H426.6666666666667M170.6666666666667 320V256H106.6666666666667V213.3333333333334H170.6666666666667V149.3333333333334H213.3333333333333V213.3333333333334H277.3333333333333V256H213.3333333333333V320H170.6666666666667z" />
124
- <glyph glyph-name="android"
125
- unicode="&#xF127;"
126
- horiz-adv-x="512" d=" M320 341.3333333333334H298.6666666666667V362.6666666666667H320M213.3333333333333 341.3333333333334H192V362.6666666666667H213.3333333333333M331.3066666666667 401.92L359.2533333333334 429.8666666666667C363.3066666666667 433.92 363.3066666666667 440.7466666666667 359.2533333333334 445.0133333333333C354.9866666666667 449.0666666666667 348.16 449.0666666666667 344.1066666666667 445.0133333333333L312.5333333333333 413.44C295.4666666666667 421.76 276.2666666666667 426.6666666666667 256 426.6666666666667C235.52 426.6666666666667 216.32 421.76 199.2533333333333 413.2266666666667L167.4666666666667 445.0133333333333C163.4133333333333 449.0666666666667 156.5866666666667 449.0666666666667 152.5333333333333 445.0133333333333C148.2666666666667 440.7466666666667 148.2666666666667 433.92 152.5333333333333 429.8666666666667L180.48 401.92C148.6933333333333 378.4533333333334 128 341.3333333333334 128 298.6666666666667H384C384 341.3333333333334 362.6666666666667 378.6666666666667 331.3066666666666 401.92M437.3333333333333 277.3333333333334C419.6266666666667 277.3333333333334 405.3333333333333 263.04 405.3333333333333 245.3333333333334V96C405.3333333333333 78.2933333333334 419.6266666666667 64 437.3333333333333 64S469.3333333333333 78.2933333333334 469.3333333333333 96V245.3333333333334C469.3333333333333 263.04 455.04 277.3333333333334 437.3333333333333 277.3333333333334M74.6666666666667 277.3333333333334C56.96 277.3333333333334 42.6666666666667 263.04 42.6666666666667 245.3333333333334V96C42.6666666666667 78.2933333333334 56.96 64 74.6666666666667 64S106.6666666666667 78.2933333333334 106.6666666666667 96V245.3333333333334C106.6666666666667 263.04 92.3733333333333 277.3333333333334 74.6666666666667 277.3333333333334M128 64C128 52.2666666666667 137.6 42.6666666666667 149.3333333333333 42.6666666666667H170.6666666666667V-32C170.6666666666667 -49.7066666666666 184.96 -64 202.6666666666667 -64S234.6666666666667 -49.7066666666666 234.6666666666667 -32V42.6666666666667H277.3333333333333V-32C277.3333333333333 -49.7066666666666 291.6266666666667 -64 309.3333333333333 -64S341.3333333333333 -49.7066666666666 341.3333333333333 -32V42.6666666666667H362.6666666666667C374.4 42.6666666666667 384 52.2666666666667 384 64V277.3333333333334H128V64z" />
127
- <glyph glyph-name="android-debug-bridge"
128
- unicode="&#xF128;"
129
- horiz-adv-x="512" d=" M320 256C308.2666666666667 256 298.6666666666667 265.6 298.6666666666667 277.3333333333334S308.2666666666667 298.6666666666667 320 298.6666666666667S341.3333333333333 289.0666666666667 341.3333333333333 277.3333333333334S331.7333333333334 256 320 256M192 256C180.2666666666667 256 170.6666666666667 265.6 170.6666666666667 277.3333333333334S180.2666666666667 298.6666666666667 192 298.6666666666667S213.3333333333333 289.0666666666667 213.3333333333333 277.3333333333334S203.7333333333334 256 192 256M343.8933333333333 354.7733333333333L388.6933333333334 399.5733333333333L371.2000000000001 417.28L321.92 368C302.08 378.0266666666667 279.68 384 256 384C232.1066666666667 384 209.92 378.0266666666667 190.08 368L140.8 417.28L123.3066666666667 399.5733333333333L168.1066666666666 354.7733333333333C130.9866666666667 327.68 106.6666666666667 284.1600000000001 106.6666666666667 234.6666666666667V213.3333333333334H405.3333333333333V234.6666666666667C405.3333333333333 284.1600000000001 381.0133333333333 327.68 343.8933333333333 354.7733333333333M106.6666666666667 106.6666666666667C106.6666666666667 24.3200000000001 173.44 -42.6666666666666 256 -42.6666666666666S405.3333333333333 24.1066666666667 405.3333333333333 106.6666666666667V192H106.6666666666667V106.6666666666667z" />
130
- <glyph glyph-name="android-studio"
131
- unicode="&#xF129;"
132
- horiz-adv-x="512" d=" M234.6666666666667 405.3333333333333H277.3333333333333V362.6666666666667H288C305.7066666666667 362.6666666666667 320 348.3733333333334 320 330.6666666666667V256L310.6133333333334 246.6133333333334L345.6 186.0266666666667C369.28 209.28 384 241.4933333333334 384 277.3333333333334H426.6666666666667C426.6666666666667 225.7066666666667 403.84 179.4133333333334 367.5733333333333 148.0533333333334L434.56 32L437.3333333333333 -15.36L397.44 10.6666666666667L331.9466666666666 124.3733333333333C309.3333333333333 113.0666666666667 283.3066666666666 106.6666666666667 256 106.6666666666667C228.6933333333333 106.6666666666667 202.6666666666666 113.0666666666667 180.0533333333333 124.3733333333333L114.56 10.6666666666667L74.6666666666667 -15.36L77.44 32L201.3866666666667 246.6133333333334L192 256V330.6666666666667C192 348.3733333333334 206.2933333333333 362.6666666666667 224 362.6666666666667H234.6666666666667V405.3333333333333M201.3866666666667 161.4933333333334C218.0266666666667 153.6 236.5866666666667 149.3333333333334 256 149.3333333333334C275.4133333333333 149.3333333333334 293.9733333333333 153.6 310.6133333333334 161.4933333333334L279.4666666666667 215.4666666666667H279.2533333333334C266.0266666666667 202.6666666666667 245.9733333333333 202.6666666666667 232.7466666666667 215.4666666666667H232.5333333333334L201.3866666666667 161.4933333333334M256 320C244.2666666666667 320 234.6666666666667 310.4 234.6666666666667 298.6666666666667S244.2666666666667 277.3333333333334 256 277.3333333333334S277.3333333333333 286.9333333333334 277.3333333333333 298.6666666666667S267.7333333333334 320 256 320z" />
133
- <glyph glyph-name="apple"
134
- unicode="&#xF12A;"
135
- horiz-adv-x="512" d=" M399.1466666666667 32C381.4400000000001 5.5466666666667 362.6666666666667 -20.2666666666666 334.08 -20.6933333333333C305.4933333333334 -21.3333333333333 296.32 -3.84 263.8933333333333 -3.84C231.2533333333334 -3.84 221.2266666666667 -20.2666666666666 194.1333333333334 -21.3333333333333C166.1866666666667 -22.4 145.0666666666667 6.8266666666667 127.1466666666667 32.64C90.6666666666667 85.3333333333334 62.72 182.4 100.2666666666667 247.68C118.8266666666667 280.1066666666667 152.1066666666667 300.5866666666667 188.16 301.2266666666667C215.4666666666667 301.6533333333333 241.4933333333334 282.6666666666667 258.3466666666667 282.6666666666667C274.9866666666666 282.6666666666667 306.56 305.4933333333334 339.6266666666667 302.08C353.4933333333334 301.44 392.32 296.5333333333333 417.28 259.8400000000001C415.36 258.56 370.9866666666667 232.5333333333334 371.4133333333333 178.56C372.0533333333334 114.1333333333333 427.9466666666666 92.5866666666667 428.5866666666667 92.3733333333333C427.9466666666666 90.88 419.6266666666666 61.6533333333333 399.1466666666667 32M277.3333333333333 373.3333333333334C292.9066666666667 391.04 318.72 404.48 340.0533333333333 405.3333333333333C342.8266666666667 380.3733333333334 332.8 355.2000000000001 317.8666666666666 337.2800000000001C303.1466666666667 319.1466666666667 278.8266666666666 305.0666666666667 254.9333333333333 306.9866666666667C251.7333333333333 331.5200000000001 263.68 357.12 277.3333333333333 373.3333333333334z" />
136
- <glyph glyph-name="apple-finder"
137
- unicode="&#xF12B;"
138
- horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H253.6533333333334C265.8133333333334 385.92 280.1066666666667 407.8933333333333 297.1733333333333 426.6666666666667L320.8533333333333 402.9866666666667C311.68 390.4 303.5733333333333 376.7466666666667 296.32 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H318.5066666666667L325.5466666666666 -26.24L286.5066666666667 -41.6L275.84 0H85.3333333333333C61.8666666666667 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667M85.3333333333333 320V42.6666666666667H267.52C266.6666666666667 49.7066666666667 265.3866666666667 56.7466666666667 264.5333333333333 64H256C197.3333333333333 64 144.64 74.6666666666667 109.44 90.4533333333333L128.8533333333333 125.44C149.3333333333333 114.3466666666667 195.6266666666667 106.6666666666667 256 106.6666666666667H261.12C260.48 120.96 260.6933333333334 135.2533333333333 261.76 149.3333333333334H192S200.5333333333333 235.3066666666667 234.6666666666667 320H85.3333333333333M426.6666666666667 42.6666666666667V320H277.3333333333333C258.1333333333334 272.64 247.04 224.8533333333333 241.0666666666667 192H302.2933333333334C298.6666666666667 164.6933333333334 298.0266666666667 136.1066666666667 299.9466666666667 108.16C338.5600000000001 110.9333333333334 368.0000000000001 117.3333333333334 383.1466666666667 125.4400000000001L402.56 90.4533333333334C377.3866666666667 78.9333333333334 343.4666666666667 70.4 304.8533333333334 66.3466666666668C306.1333333333334 58.2400000000001 307.4133333333333 50.3466666666668 309.3333333333334 42.6666666666667H426.6666666666667M128 277.3333333333334H170.6666666666667V213.3333333333334H128V277.3333333333334M341.3333333333333 277.3333333333334H384V213.3333333333334H341.3333333333333V277.3333333333334z" />
139
- <glyph glyph-name="apple-ios"
140
- unicode="&#xF12C;"
141
- horiz-adv-x="512" d=" M426.6666666666667 256V298.6666666666667H341.3333333333333C317.8666666666667 298.6666666666667 298.6666666666667 279.4666666666667 298.6666666666667 256V213.3333333333334C298.6666666666667 189.8666666666667 317.8666666666667 170.6666666666667 341.3333333333333 170.6666666666667H384V128H298.6666666666667V85.3333333333334H384C407.4666666666667 85.3333333333334 426.6666666666667 104.5333333333333 426.6666666666667 128V170.6666666666667C426.6666666666667 194.1333333333333 407.4666666666667 213.3333333333334 384 213.3333333333334H341.3333333333333V256M234.6666666666667 128H192V256H234.6666666666667M234.6666666666667 298.6666666666667H192C168.5333333333333 298.6666666666667 149.3333333333333 279.4666666666667 149.3333333333333 256V128C149.3333333333333 104.5333333333333 168.5333333333333 85.3333333333334 192 85.3333333333334H234.6666666666667C258.1333333333334 85.3333333333334 277.3333333333333 104.5333333333333 277.3333333333333 128V256C277.3333333333333 279.4666666666667 258.1333333333334 298.6666666666667 234.6666666666667 298.6666666666667M85.3333333333333 85.3333333333334H128V213.3333333333334H85.3333333333333M85.3333333333333 256H128V298.6666666666667H85.3333333333333V256z" />
142
- <glyph glyph-name="apple-mobileme"
143
- unicode="&#xF12D;"
144
- horiz-adv-x="512" d=" M469.3333333333333 127.1466666666667C469.3333333333333 80.4266666666667 431.7866666666667 42.6666666666667 385.4933333333334 42.6666666666667H126.5066666666667C80.2133333333333 42.6666666666667 42.6666666666667 80.4266666666667 42.6666666666667 127.1466666666667C42.6666666666667 169.1733333333334 73.1733333333333 203.9466666666667 113.28 210.3466666666667C112.64 213.3333333333334 112.4266666666667 216.32 112.4266666666667 219.5200000000001C112.4266666666667 248.9600000000001 136.1066666666667 273.0666666666667 165.5466666666667 273.0666666666667C178.56 273.0666666666667 190.72 268.1600000000001 199.8933333333334 260.2666666666667C216.32 297.6 237.44 331.9466666666667 296.7466666666667 331.9466666666667C368.64 331.9466666666667 402.56 276.0533333333334 402.56 216.96C402.56 214.6133333333334 402.56 212.0533333333334 402.3466666666667 209.7066666666667C440.5333333333333 201.8133333333334 469.3333333333333 167.8933333333334 469.3333333333333 127.1466666666667z" />
145
- <glyph glyph-name="apple-safari"
146
- unicode="&#xF12E;"
147
- horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192C85.3333333333333 147.4133333333334 102.4 106.6666666666667 130.3466666666666 76.5866666666667L210.7733333333333 237.2266666666667L371.4133333333333 317.6533333333334C341.3333333333333 345.6 300.5866666666667 362.6666666666667 256 362.6666666666667M256 21.3333333333334C350.2933333333334 21.3333333333334 426.6666666666667 97.7066666666667 426.6666666666667 192C426.6666666666667 236.5866666666667 409.6 277.3333333333334 381.6533333333333 307.4133333333334L301.2266666666667 146.7733333333333L140.5866666666667 66.3466666666667C170.6666666666667 38.4 211.4133333333333 21.3333333333334 256 21.3333333333334M256 192L239.5733333333333 208.4266666666667L206.9333333333333 142.9333333333333L272.4266666666666 175.5733333333333L256 192M256 74.6666666666667H277.3333333333333V42.6666666666667H256V74.6666666666667M338.7733333333333 109.0133333333333L353.92 124.16L376.5333333333333 101.5466666666667L361.3866666666666 86.4L338.7733333333333 109.0133333333334M373.3333333333333 192V213.3333333333334H405.3333333333333V192H373.3333333333333M256 309.3333333333334H234.6666666666667V341.3333333333334H256V309.3333333333334M173.2266666666666 274.9866666666667L158.08 259.8400000000001L135.4666666666667 282.4533333333334L150.6133333333333 297.6L173.2266666666666 274.9866666666667M138.6666666666667 192V170.6666666666667H106.6666666666667V192H138.6666666666667z" />
148
- <glyph glyph-name="appnet"
149
- unicode="&#xF12F;"
150
- horiz-adv-x="512" d=" M308.6933333333334 253.0133333333333C321.4933333333334 283.9466666666667 345.1733333333333 356.6933333333334 348.8 369.4933333333334C352 382.08 361.6 384 366.9333333333334 384H410.6666666666668C417.9200000000001 384 421.9733333333334 378.4533333333333 420.2666666666667 369.4933333333334C374.4000000000001 207.5733333333334 343.2533333333334 160 343.2533333333334 149.3333333333334C343.2533333333334 122.0266666666667 372.4800000000001 71.04 399.7866666666667 71.04C416.0000000000001 71.04 412.5866666666667 94.72 430.7200000000001 94.72H465.28C470.8266666666667 94.72 476.1600000000001 89.1733333333333 476.1600000000001 79.9999999999999C476.1600000000001 71.0399999999999 466.1333333333334 -1e-13 397.0133333333334 -1e-13C327.6800000000001 -1e-13 301.8666666666667 83.6266666666666 301.8666666666667 83.6266666666666C292.9066666666667 65.4933333333332 239.5733333333334 -1e-13 174.0800000000001 -1e-13C57.6 -1e-13 35.84 123.7333333333332 35.84 196.4799999999999C35.84 269.4400000000001 70.4 384 168.7466666666667 384C266.6666666666667 384 308.6933333333333 253.0133333333333 308.6933333333333 253.0133333333333M96 202.0266666666667C96 160 94.08 72.7466666666667 170.6666666666667 71.0400000000001C214.1866666666667 69.1200000000001 254.08 123.7333333333334 273.28 167.4666666666667C246.8266666666667 258.3466666666667 228.6933333333334 312.9600000000001 170.6666666666667 312.9600000000001C92.16 311.2533333333334 96 202.0266666666667 96 202.0266666666667z" />
151
- <glyph glyph-name="apps"
152
- unicode="&#xF130;"
153
- horiz-adv-x="512" d=" M341.3333333333333 21.3333333333334H426.6666666666667V106.6666666666667H341.3333333333333M341.3333333333333 149.3333333333334H426.6666666666667V234.6666666666667H341.3333333333333M213.3333333333333 277.3333333333334H298.6666666666667V362.6666666666667H213.3333333333333M341.3333333333333 277.3333333333334H426.6666666666667V362.6666666666667H341.3333333333333M213.3333333333333 149.3333333333334H298.6666666666667V234.6666666666667H213.3333333333333M85.3333333333333 149.3333333333334H170.6666666666667V234.6666666666667H85.3333333333333M85.3333333333333 21.3333333333334H170.6666666666667V106.6666666666667H85.3333333333333M213.3333333333333 21.3333333333334H298.6666666666667V106.6666666666667H213.3333333333333M85.3333333333333 277.3333333333334H170.6666666666667V362.6666666666667H85.3333333333333V277.3333333333334z" />
154
- <glyph glyph-name="archive"
155
- unicode="&#xF131;"
156
- horiz-adv-x="512" d=" M64 384H448V298.6666666666667H64V384M85.3333333333333 277.3333333333334H426.6666666666667V0H85.3333333333333V277.3333333333334M202.6666666666667 213.3333333333334C196.6933333333333 213.3333333333334 192 208.64 192 202.6666666666667V170.6666666666667H320V202.6666666666667C320 208.64 315.3066666666666 213.3333333333334 309.3333333333333 213.3333333333334H202.6666666666667z" />
157
- <glyph glyph-name="arrange-bring-forward"
158
- unicode="&#xF132;"
159
- horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H341.3333333333333V106.6666666666667H42.6666666666667V405.3333333333333M469.3333333333333 277.3333333333334V-21.3333333333333H170.6666666666667V64H213.3333333333333V21.3333333333334H426.6666666666667V234.6666666666667H384V277.3333333333334H469.3333333333333z" />
160
- <glyph glyph-name="arrange-bring-to-front"
161
- unicode="&#xF133;"
162
- horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H234.6666666666667V320H192V362.6666666666667H85.3333333333333V256H128V213.3333333333334H42.6666666666667V405.3333333333333M469.3333333333333 170.6666666666667V-21.3333333333333H277.3333333333333V64H320V21.3333333333334H426.6666666666667V128H384V170.6666666666667H469.3333333333333M170.6666666666667 277.3333333333334H341.3333333333333V106.6666666666667H170.6666666666667V277.3333333333334z" />
163
- <glyph glyph-name="arrange-send-backward"
164
- unicode="&#xF134;"
165
- horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H341.3333333333333V106.6666666666667H42.6666666666667V405.3333333333333M469.3333333333333 277.3333333333334V-21.3333333333333H170.6666666666667V64H384V277.3333333333334H469.3333333333333M85.3333333333333 362.6666666666667V149.3333333333334H298.6666666666667V362.6666666666667H85.3333333333333z" />
166
- <glyph glyph-name="arrange-send-to-back"
167
- unicode="&#xF135;"
168
- horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H234.6666666666667V213.3333333333334H42.6666666666667V405.3333333333333M192 362.6666666666667H85.3333333333333V256H192V362.6666666666667M469.3333333333333 170.6666666666667V-21.3333333333333H277.3333333333333V170.6666666666667H469.3333333333333M320 21.3333333333334H426.6666666666667V128H320V21.3333333333334M341.3333333333333 277.3333333333334V213.3333333333334H277.3333333333333V277.3333333333334H341.3333333333333M234.6666666666667 106.6666666666667H170.6666666666667V170.6666666666667H234.6666666666667V106.6666666666667z" />
169
- <glyph glyph-name="arrow-all"
170
- unicode="&#xF136;"
171
- horiz-adv-x="512" d=" M277.3333333333333 213.3333333333334H384L352 245.3333333333334L382.2933333333334 275.6266666666667L465.92 192L382.2933333333334 108.3733333333333L352 138.6666666666667L384 170.6666666666667H277.3333333333333V64L309.3333333333333 96L339.6266666666667 65.7066666666667L256 -17.92L172.3733333333333 65.7066666666667L202.6666666666667 96L234.6666666666667 64V170.6666666666667H128L160 138.6666666666667L129.7066666666667 108.3733333333333L46.08 192L129.7066666666667 275.6266666666667L160 245.3333333333334L128 213.3333333333334H234.6666666666667V320L202.6666666666667 288L172.3733333333333 318.2933333333334L256 401.92L339.6266666666667 318.2933333333334L309.3333333333333 288L277.3333333333333 320V213.3333333333334z" />
172
- <glyph glyph-name="arrow-bottom-left"
173
- unicode="&#xF137;"
174
- horiz-adv-x="512" d=" M405.3333333333333 311.2533333333334L375.2533333333334 341.3333333333334L149.3333333333333 115.4133333333334V256H106.6666666666667V42.6666666666667H320V85.3333333333334H179.4133333333333L405.3333333333333 311.2533333333334z" />
175
- <glyph glyph-name="arrow-bottom-right"
176
- unicode="&#xF138;"
177
- horiz-adv-x="512" d=" M106.6666666666667 311.2533333333334L136.7466666666667 341.3333333333334L362.6666666666667 115.4133333333334V256H405.3333333333333V42.6666666666667H192V85.3333333333334H332.5866666666667L106.6666666666667 311.2533333333334z" />
178
- <glyph glyph-name="arrow-collapse"
179
- unicode="&#xF139;"
180
- horiz-adv-x="512" d=" M416 382.0800000000001L446.08 352L350.08 256H426.6666666666667V213.3333333333334H277.3333333333333V362.6666666666667H320V286.0800000000001L416 382.0800000000001M446.08 32L416 1.92L320 97.92V21.3333333333334H277.3333333333333V170.6666666666667H426.6666666666667V128H350.08L446.08 32M96 382.0800000000001L192 286.0800000000001V362.6666666666667H234.6666666666667V213.3333333333334H85.3333333333333V256H161.92L65.92 352L96 382.0800000000001M65.92 32L161.92 128H85.3333333333333V170.6666666666667H234.6666666666667V21.3333333333334H192V97.92L96 1.92L65.92 32z" />
181
- <glyph glyph-name="arrow-down"
182
- unicode="&#xF13A;"
183
- horiz-adv-x="512" d=" M234.6666666666667 362.6666666666667H277.3333333333333V106.6666666666667L394.6666666666667 224L424.9600000000001 193.7066666666667L256 24.7466666666667L87.04 193.7066666666667L117.3333333333333 224L234.6666666666667 106.6666666666667V362.6666666666667z" />
184
- <glyph glyph-name="arrow-down-bold"
185
- unicode="&#xF13B;"
186
- horiz-adv-x="512" d=" M213.3333333333333 362.6666666666667H298.6666666666667V170.6666666666667L373.3333333333333 245.3333333333334L424.9600000000001 193.7066666666667L256 24.7466666666667L87.04 193.7066666666667L138.6666666666667 245.3333333333334L213.3333333333333 170.6666666666667V362.6666666666667z" />
187
- <glyph glyph-name="arrow-down-bold-circle"
188
- unicode="&#xF13C;"
189
- horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 85.3333333333334L362.6666666666667 192H298.6666666666667V277.3333333333334H213.3333333333333V192H149.3333333333333L256 85.3333333333334z" />
190
- <glyph glyph-name="arrow-down-bold-circle-outline"
191
- unicode="&#xF13D;"
192
- horiz-adv-x="512" d=" M256 85.3333333333334L149.3333333333333 192H213.3333333333333V277.3333333333334H298.6666666666667V192H362.6666666666667L256 85.3333333333334M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667z" />
193
- <glyph glyph-name="arrow-down-bold-hexagon-outline"
194
- unicode="&#xF13E;"
195
- horiz-adv-x="512" d=" M256 85.3333333333334L149.3333333333333 192H213.3333333333333V277.3333333333334H298.6666666666667V192H362.6666666666667L256 85.3333333333334M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667z" />
196
- <glyph glyph-name="arrow-expand"
197
- unicode="&#xF13F;"
198
- horiz-adv-x="512" d=" M202.6666666666667 168.7466666666667L232.7466666666667 138.6666666666667L136.7466666666667 42.6666666666667H213.3333333333333V0H64V149.3333333333334H106.6666666666667V72.7466666666667L202.6666666666667 168.7466666666667M232.7466666666667 245.3333333333334L202.6666666666667 215.2533333333333L106.6666666666667 311.2533333333334V234.6666666666667H64V384H213.3333333333333V341.3333333333334H136.7466666666667L232.7466666666667 245.3333333333334M309.3333333333333 168.7466666666667L405.3333333333333 72.7466666666667V149.3333333333334H448V0H298.6666666666667V42.6666666666667H375.2533333333334L279.2533333333334 138.6666666666667L309.3333333333333 168.7466666666667M279.2533333333334 245.3333333333334L375.2533333333334 341.3333333333334H298.6666666666667V384H448V234.6666666666667H405.3333333333333V311.2533333333334L309.3333333333333 215.2533333333333L279.2533333333334 245.3333333333334z" />
199
- <glyph glyph-name="arrow-left"
200
- unicode="&#xF140;"
201
- horiz-adv-x="512" d=" M426.6666666666667 213.3333333333334V170.6666666666667H170.6666666666667L288 53.3333333333334L257.7066666666667 23.04L88.7466666666667 192L257.7066666666667 360.9600000000001L288 330.6666666666667L170.6666666666667 213.3333333333334H426.6666666666667z" />
202
- <glyph glyph-name="arrow-left-bold"
203
- unicode="&#xF141;"
204
- horiz-adv-x="512" d=" M426.6666666666667 234.6666666666667V149.3333333333334H234.6666666666667L309.3333333333333 74.6666666666667L257.7066666666667 23.04L88.7466666666667 192L257.7066666666667 360.9600000000001L309.3333333333333 309.3333333333334L234.6666666666667 234.6666666666667H426.6666666666667z" />
205
- <glyph glyph-name="arrow-left-bold-circle"
206
- unicode="&#xF142;"
207
- horiz-adv-x="512" d=" M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M149.3333333333333 192L256 85.3333333333334V149.3333333333334H341.3333333333333V234.6666666666667H256V298.6666666666667L149.3333333333333 192z" />
208
- <glyph glyph-name="arrow-left-bold-circle-outline"
209
- unicode="&#xF143;"
210
- horiz-adv-x="512" d=" M149.3333333333333 192L256 298.6666666666667V234.6666666666667H341.3333333333333V149.3333333333334H256V85.3333333333334L149.3333333333333 192M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M426.6666666666667 192C426.6666666666667 286.2933333333334 350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192z" />
211
- <glyph glyph-name="arrow-left-bold-hexagon-outline"
212
- unicode="&#xF144;"
213
- horiz-adv-x="512" d=" M149.3333333333333 192L256 298.6666666666667V234.6666666666667H341.3333333333333V149.3333333333334H256V85.3333333333334L149.3333333333333 192M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667z" />
214
- <glyph glyph-name="arrow-right"
215
- unicode="&#xF145;"
216
- horiz-adv-x="512" d=" M85.3333333333333 213.3333333333334V170.6666666666667H341.3333333333333L224 53.3333333333334L254.2933333333333 23.04L423.2533333333334 192L254.2933333333333 360.9600000000001L224 330.6666666666667L341.3333333333333 213.3333333333334H85.3333333333333z" />
217
- <glyph glyph-name="arrow-right-bold"
218
- unicode="&#xF146;"
219
- horiz-adv-x="512" d=" M85.3333333333333 234.6666666666667V149.3333333333334H277.3333333333333L202.6666666666667 74.6666666666667L254.2933333333333 23.04L423.2533333333334 192L254.2933333333333 360.9600000000001L202.6666666666667 309.3333333333334L277.3333333333333 234.6666666666667H85.3333333333333z" />
220
- <glyph glyph-name="arrow-right-bold-circle"
221
- unicode="&#xF147;"
222
- horiz-adv-x="512" d=" M42.6666666666667 192C42.6666666666667 309.76 138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192M362.6666666666667 192L256 298.6666666666667V234.6666666666667H170.6666666666667V149.3333333333334H256V85.3333333333334L362.6666666666667 192z" />
223
- <glyph glyph-name="arrow-right-bold-circle-outline"
224
- unicode="&#xF148;"
225
- horiz-adv-x="512" d=" M362.6666666666667 192L256 85.3333333333334V149.3333333333334H170.6666666666667V234.6666666666667H256V298.6666666666667L362.6666666666667 192M42.6666666666667 192C42.6666666666667 309.76 138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192M85.3333333333333 192C85.3333333333333 97.7066666666667 161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192z" />
226
- <glyph glyph-name="arrow-right-bold-hexagon-outline"
227
- unicode="&#xF149;"
228
- horiz-adv-x="512" d=" M362.6666666666667 192L256 85.3333333333334V149.3333333333334H170.6666666666667V234.6666666666667H256V298.6666666666667L362.6666666666667 192M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667z" />
229
- <glyph glyph-name="arrow-top-left"
230
- unicode="&#xF14A;"
231
- horiz-adv-x="512" d=" M405.3333333333333 72.7466666666667L375.2533333333334 42.6666666666667L149.3333333333333 268.5866666666667V128H106.6666666666667V341.3333333333334H320V298.6666666666667H179.4133333333333L405.3333333333333 72.7466666666667z" />
232
- <glyph glyph-name="arrow-top-right"
233
- unicode="&#xF14B;"
234
- horiz-adv-x="512" d=" M106.6666666666667 72.7466666666667L332.5866666666667 298.6666666666667H192V341.3333333333334H405.3333333333333V128H362.6666666666667V268.5866666666667L136.7466666666667 42.6666666666667L106.6666666666667 72.7466666666667z" />
235
- <glyph glyph-name="arrow-up"
236
- unicode="&#xF14C;"
237
- horiz-adv-x="512" d=" M277.3333333333333 21.3333333333334H234.6666666666667V277.3333333333334L117.3333333333333 160L87.04 190.2933333333334L256 359.2533333333334L424.9600000000001 190.2933333333334L394.6666666666667 160L277.3333333333333 277.3333333333334V21.3333333333334z" />
238
- <glyph glyph-name="arrow-up-bold"
239
- unicode="&#xF14D;"
240
- horiz-adv-x="512" d=" M298.6666666666667 21.3333333333334H213.3333333333333V213.3333333333334L138.6666666666667 138.6666666666667L87.04 190.2933333333334L256 359.2533333333334L424.9600000000001 190.2933333333334L373.3333333333333 138.6666666666667L298.6666666666667 213.3333333333334V21.3333333333334z" />
241
- <glyph glyph-name="arrow-up-bold-circle"
242
- unicode="&#xF14E;"
243
- horiz-adv-x="512" d=" M256 -21.3333333333333C138.24 -21.3333333333333 42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333M256 298.6666666666667L149.3333333333333 192H213.3333333333333V106.6666666666667H298.6666666666667V192H362.6666666666667L256 298.6666666666667z" />
244
- <glyph glyph-name="arrow-up-bold-circle-outline"
245
- unicode="&#xF14F;"
246
- horiz-adv-x="512" d=" M256 298.6666666666667L362.6666666666667 192H298.6666666666667V106.6666666666667H213.3333333333333V192H149.3333333333333L256 298.6666666666667M256 -21.3333333333333C138.24 -21.3333333333333 42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333M256 21.3333333333334C350.2933333333334 21.3333333333334 426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334z" />
247
- <glyph glyph-name="arrow-up-bold-hexagon-outline"
248
- unicode="&#xF150;"
249
- horiz-adv-x="512" d=" M256 298.6666666666667L362.6666666666667 192H298.6666666666667V106.6666666666667H213.3333333333333V192H149.3333333333333L256 298.6666666666667M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667z" />
250
- <glyph glyph-name="at"
251
- unicode="&#xF151;"
252
- horiz-adv-x="512" d=" M371.6266666666667 128C379.5200000000001 147.4133333333334 384 169.1733333333334 384 192C384 274.5600000000001 326.6133333333334 341.3333333333334 256 341.3333333333334S128 274.5600000000001 128 192S185.3866666666667 42.6666666666667 256 42.6666666666667C288.8533333333333 42.6666666666667 320 42.6666666666667 341.3333333333333 59.3066666666667V9.6000000000001C320 1e-13 287.1466666666667 1e-13 256 1e-13C161.7066666666667 1e-13 85.3333333333333 85.9733333333335 85.3333333333333 192.0000000000001S161.7066666666667 384.0000000000001 256 384.0000000000001S426.6666666666667 298.0266666666668 426.6666666666667 192.0000000000001C426.6666666666667 152.5333333333334 416 115.8400000000001 397.8666666666666 85.3333333333334H298.6666666666667V117.3333333333334C285.0133333333333 97.4933333333335 266.6666666666667 85.3333333333334 245.3333333333333 85.3333333333334C204.16 85.3333333333334 170.6666666666667 133.12 170.6666666666667 192S204.16 298.6666666666667 245.3333333333333 298.6666666666667C266.6666666666667 298.6666666666667 285.0133333333333 286.5066666666667 298.6666666666667 266.6666666666667V277.3333333333334H341.3333333333333V128H371.6266666666667M256 256C232.5333333333334 256 213.3333333333333 227.4133333333334 213.3333333333333 192S232.5333333333334 128 256 128S298.6666666666667 156.5866666666667 298.6666666666667 192S279.4666666666667 256 256 256z" />
253
- <glyph glyph-name="attachment"
254
- unicode="&#xF152;"
255
- horiz-adv-x="512" d=" M160 64C95.1466666666667 64 42.6666666666667 116.48 42.6666666666667 181.3333333333334S95.1466666666667 298.6666666666667 160 298.6666666666667H384C431.1466666666667 298.6666666666667 469.3333333333333 260.48 469.3333333333333 213.3333333333334S431.1466666666667 128 384 128H202.6666666666667C173.2266666666666 128 149.3333333333333 151.8933333333333 149.3333333333333 181.3333333333334S173.2266666666666 234.6666666666667 202.6666666666667 234.6666666666667H362.6666666666667V202.6666666666667H202.6666666666667C190.9333333333333 202.6666666666667 181.3333333333333 193.0666666666667 181.3333333333333 181.3333333333334S190.9333333333333 160 202.6666666666667 160H384C413.44 160 437.3333333333333 183.8933333333334 437.3333333333333 213.3333333333334S413.44 266.6666666666667 384 266.6666666666667H160C112.8533333333333 266.6666666666667 74.6666666666667 228.48 74.6666666666667 181.3333333333334S112.8533333333333 96 160 96H362.6666666666667V64H160z" />
256
- <glyph glyph-name="audiobook"
257
- unicode="&#xF153;"
258
- horiz-adv-x="512" d=" M384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.5333333333333 405.3333333333333 128 405.3333333333333H149.3333333333333V256L202.6666666666667 288L256 256V405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333M277.3333333333333 128C253.8666666666667 128 234.6666666666667 108.8 234.6666666666667 85.3333333333334S253.8666666666667 42.6666666666667 277.3333333333333 42.6666666666667S320 61.8666666666667 320 85.3333333333334V192H384V234.6666666666667H298.6666666666667V122.24C292.48 125.8666666666667 285.0133333333333 128 277.3333333333333 128z" />
259
- <glyph glyph-name="auto-fix"
260
- unicode="&#xF154;"
261
- horiz-adv-x="512" d=" M160 328.5333333333334L106.6666666666667 298.6666666666667L136.5333333333333 352L106.6666666666667 405.3333333333333L160 375.4666666666667L213.3333333333333 405.3333333333333L183.4666666666667 352L213.3333333333333 298.6666666666667L160 328.5333333333334M416 119.4666666666667L469.3333333333333 149.3333333333334L439.4666666666667 96L469.3333333333333 42.6666666666667L416 72.5333333333333L362.6666666666667 42.6666666666667L392.5333333333333 96L362.6666666666667 149.3333333333334L416 119.4666666666667M469.3333333333333 405.3333333333333L439.4666666666667 352L469.3333333333333 298.6666666666667L416 328.5333333333334L362.6666666666667 298.6666666666667L392.5333333333333 352L362.6666666666667 405.3333333333333L416 375.4666666666667L469.3333333333333 405.3333333333333M284.5866666666667 175.36L336.64 227.4133333333334L291.4133333333333 272.6400000000001L239.36 220.5866666666667L284.5866666666667 175.3600000000001M306.56 292.4800000000001L356.48 242.5600000000001C364.8 234.6666666666668 364.8 220.8000000000001 356.48 212.4800000000001L107.52 -36.48C99.2 -44.8 85.3333333333333 -44.8 77.44 -36.48L27.52 13.44C19.2 21.3333333333334 19.2 35.2 27.52 43.52L276.48 292.48C284.8 300.8 298.6666666666667 300.8 306.56 292.48z" />
262
- <glyph glyph-name="auto-upload"
263
- unicode="&#xF155;"
264
- horiz-adv-x="512" d=" M114.1333333333333 178.1333333333333L138.6666666666667 256L163.2 178.1333333333333M117.3333333333333 298.6666666666667L49.0666666666667 106.6666666666667H89.6L104.5333333333333 149.3333333333334H172.8L187.7333333333333 106.6666666666667H228.2666666666667L160 298.6666666666667M234.6666666666667 21.3333333333334H469.3333333333333V64H234.6666666666667M298.6666666666667 106.6666666666667H405.3333333333333V213.3333333333334H469.3333333333333L352 330.6666666666667L234.6666666666667 213.3333333333334H298.6666666666667V106.6666666666667z" />
265
- <glyph glyph-name="baby"
266
- unicode="&#xF156;"
267
- horiz-adv-x="512" d=" M394.6666666666667 362.6666666666667C424.1066666666667 362.6666666666667 448 338.7733333333333 448 309.3333333333334S424.1066666666667 256 394.6666666666667 256S341.3333333333333 279.8933333333333 341.3333333333333 309.3333333333334S365.2266666666667 362.6666666666667 394.6666666666667 362.6666666666667M96 21.3333333333334C78.2933333333333 21.3333333333334 64 35.6266666666667 64 53.3333333333334S78.2933333333333 85.3333333333334 96 85.3333333333334H245.3333333333333C263.04 85.3333333333334 277.3333333333333 71.04 277.3333333333333 53.3333333333334S263.04 21.3333333333334 245.3333333333333 21.3333333333334H96M343.2533333333334 42.6666666666667L313.3866666666667 128H234.6666666666667L144 218.6666666666667S192 272 266.6666666666667 272C330.6666666666667 272 338.1333333333334 250.6666666666667 342.6133333333333 237.44L403.6266666666667 64C409.6 47.36 400.64 29.0133333333333 384 23.04C367.36 17.28 349.0133333333333 26.0266666666666 343.2533333333334 42.6666666666667z" />
268
- <glyph glyph-name="backburger"
269
- unicode="&#xF157;"
270
- horiz-adv-x="512" d=" M106.6666666666667 170.6666666666667L192 85.3333333333334L162.1333333333333 55.04L25.1733333333333 192L162.1333333333333 328.9600000000001L192 298.6666666666667L106.6666666666667 213.3333333333334H448V170.6666666666667H106.6666666666667M448 320V277.3333333333334H234.6666666666667V320H448M448 106.6666666666667V64H234.6666666666667V106.6666666666667H448z" />
271
- <glyph glyph-name="backup-restore"
272
- unicode="&#xF158;"
273
- horiz-adv-x="512" d=" M256 384C149.9733333333333 384 64 298.0266666666667 64 192H0L85.3333333333333 106.6666666666667L170.6666666666667 192H106.6666666666667C106.6666666666667 274.5600000000001 173.44 341.3333333333334 256 341.3333333333334S405.3333333333333 274.5600000000001 405.3333333333333 192S338.56 42.6666666666667 256 42.6666666666667C224 42.6666666666667 193.92 53.3333333333334 169.3866666666667 70.4L138.6666666666667 39.68C171.52 14.9333333333333 212.0533333333333 0 256 0C362.0266666666667 0 448 85.9733333333334 448 192S362.0266666666667 384 256 384M298.6666666666667 192C298.6666666666667 215.4666666666667 279.4666666666667 234.6666666666667 256 234.6666666666667S213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192z" />
274
- <glyph glyph-name="bank"
275
- unicode="&#xF159;"
276
- horiz-adv-x="512" d=" M245.3333333333333 426.6666666666667L42.6666666666667 320V277.3333333333334H448V320M341.3333333333333 234.6666666666667V85.3333333333334H405.3333333333333V234.6666666666667M42.6666666666667 -21.3333333333333H448V42.6666666666667H42.6666666666667M213.3333333333333 234.6666666666667V85.3333333333334H277.3333333333333V234.6666666666667M85.3333333333333 234.6666666666667V85.3333333333334H149.3333333333333V234.6666666666667H85.3333333333333z" />
277
- <glyph glyph-name="barcode"
278
- unicode="&#xF15A;"
279
- horiz-adv-x="512" d=" M42.6666666666667 320H85.3333333333333V64H42.6666666666667V320M106.6666666666667 320H128V64H106.6666666666667V320M149.3333333333333 320H213.3333333333333V64H149.3333333333333V320M234.6666666666667 320H256V64H234.6666666666667V320M298.6666666666667 320H341.3333333333333V64H298.6666666666667V320M362.6666666666667 320H426.6666666666667V64H362.6666666666667V320M448 320H469.3333333333333V64H448V320z" />
280
- <glyph glyph-name="barley"
281
- unicode="&#xF15B;"
282
- horiz-adv-x="512" d=" M156.3733333333333 56.96C138.6666666666667 81.7066666666667 138.6666666666667 110.2933333333334 138.6666666666667 138.6666666666668C174.2933333333333 117.3333333333334 209.7066666666667 96 227.6266666666667 71.0400000000001L234.6666666666667 59.0933333333334V107.7333333333334C202.6666666666667 126.9333333333334 172.3733333333333 146.5600000000001 156.3733333333333 168.96C138.6666666666667 193.7066666666667 138.6666666666667 222.2933333333334 138.6666666666667 250.6666666666667C174.2933333333333 229.3333333333334 209.7066666666667 208.0000000000001 227.6266666666667 183.0400000000001L234.6666666666667 170.6666666666667V219.7333333333334C202.6666666666667 238.9333333333334 172.3733333333333 258.5600000000001 156.3733333333333 280.9600000000001C138.6666666666667 305.7066666666667 138.6666666666667 334.2933333333334 138.6666666666667 362.6666666666667C174.2933333333333 341.3333333333334 209.7066666666667 320 227.6266666666667 295.04C229.76 292.0533333333334 231.68 288.8533333333334 233.3866666666667 285.44C229.76 298.6666666666667 227.4133333333334 311.04 227.2 323.8400000000001C226.9866666666667 356.0533333333334 241.0666666666667 389.12 255.1466666666667 422.1866666666667C269.8666666666667 390.6133333333334 284.5866666666667 358.8266666666667 284.8 326.6133333333334C285.0133333333333 313.1733333333334 282.6666666666667 299.52 278.8266666666667 286.0800000000001C280.5333333333334 289.0666666666667 282.24 292.0533333333334 284.3733333333334 295.04C302.2933333333333 320 337.7066666666667 341.3333333333334 373.3333333333333 362.6666666666667C373.3333333333333 334.2933333333334 373.3333333333333 305.7066666666667 355.6266666666667 280.9600000000001C339.6266666666667 258.56 309.3333333333333 238.9333333333334 277.3333333333333 219.7333333333334V170.6666666666667L284.3733333333334 183.04C302.2933333333333 208 337.7066666666667 229.3333333333334 373.3333333333333 250.6666666666667C373.3333333333333 222.2933333333334 373.3333333333333 193.7066666666667 355.6266666666667 168.96C339.6266666666667 146.56 309.3333333333334 126.9333333333333 277.3333333333334 107.7333333333334V59.0933333333334L284.3733333333334 71.04C302.2933333333334 96 337.7066666666667 117.3333333333333 373.3333333333333 138.6666666666666C373.3333333333333 110.2933333333333 373.3333333333333 81.7066666666667 355.6266666666667 56.96C339.6266666666667 34.5599999999999 309.3333333333334 14.9333333333333 277.3333333333334 -4.2666666666667V-42.6666666666666H234.6666666666667V-4.2666666666667C202.6666666666667 14.9333333333333 172.3733333333334 34.5600000000001 156.3733333333334 56.96z" />
283
- <glyph glyph-name="barrel"
284
- unicode="&#xF15C;"
285
- horiz-adv-x="512" d=" M384 42.6666666666667H405.3333333333333V0H106.6666666666667V42.6666666666667H128V170.6666666666667H106.6666666666667V213.3333333333334H128V341.3333333333334H106.6666666666667V384H405.3333333333333V341.3333333333334H384V213.3333333333334H405.3333333333333V170.6666666666667H384V42.6666666666667M192 170.6666666666667C192 135.2533333333333 220.5866666666667 106.6666666666667 256 106.6666666666667S320 135.2533333333333 320 170.6666666666667C320 213.3333333333334 256 285.2266666666667 256 285.2266666666667S192 213.3333333333334 192 170.6666666666667z" />
286
- <glyph glyph-name="basecamp"
287
- unicode="&#xF15D;"
288
- horiz-adv-x="512" d=" M72.32 114.3466666666667C72.5333333333333 116.2666666666667 72.96 118.4 73.6 120.32C74.6666666666667 124.16 75.52 128 76.8 131.4133333333333C81.4933333333333 145.28 88.7466666666667 158.2933333333333 96 170.6666666666666C100.2666666666667 177.0666666666667 104.32 183.2533333333333 108.16 189.44C112.2133333333333 195.6266666666666 116.2666666666667 201.8133333333333 120.96 207.7866666666666C128 217.3866666666666 137.6 227.6266666666667 149.3333333333333 231.4666666666667C166.1866666666667 236.8 178.56 219.52 188.16 208.64C193.7066666666667 202.6666666666666 199.68 196.2666666666666 207.1466666666667 192.64C210.7733333333334 191.1466666666667 214.6133333333334 190.2933333333333 218.4533333333333 190.5066666666667C224 190.9333333333333 228.9066666666667 194.7733333333333 233.1733333333333 198.1866666666666C244.48 207.5733333333333 253.8666666666667 219.7333333333333 262.6133333333333 231.4666666666667C272.4266666666666 244.2666666666666 281.8133333333333 257.4933333333334 292.9066666666667 269.2266666666667C297.6 274.1333333333334 302.5066666666666 280.5333333333333 309.3333333333333 282.6666666666667C311.8933333333333 283.52 315.0933333333333 283.3066666666666 318.08 282.0266666666667C320 281.1733333333333 321.0666666666666 280.1066666666667 322.1333333333333 279.04C323.6266666666666 277.3333333333333 325.3333333333333 276.48 326.8266666666666 275.4133333333333C338.7733333333333 266.6666666666667 349.8666666666666 256 360.32 245.3333333333333C369.28 236.16 378.0266666666666 226.3466666666666 386.1333333333333 216.3199999999999C394.6666666666666 206.5066666666666 401.9199999999999 196.48 408.5333333333333 185.6C416.64 172.16 423.4666666666666 158.2933333333333 431.1466666666666 144.8533333333333C437.9733333333333 132.48 445.0133333333332 118.1866666666666 437.9733333333333 104.1066666666667C437.3333333333333 103.4666666666666 437.3333333333333 102.6133333333334 437.3333333333333 101.9733333333333C424.7466666666666 81.28 402.7733333333332 68.48 381.0133333333332 60.16C354.7733333333332 50.1333333333333 326.8266666666666 45.2266666666666 298.6666666666666 43.3066666666666C270.08 41.1733333333333 241.0666666666666 41.3866666666667 212.2666666666666 43.9466666666667C186.2399999999999 46.5066666666667 159.9999999999999 51.2 135.6799999999999 60.5866666666667C115.1999999999999 68.48 95.9999999999999 80 81.9199999999999 97.4933333333333C78.7199999999999 101.76 75.9466666666666 106.0266666666666 73.5999999999999 110.72C73.1733333333332 111.1466666666667 72.9599999999999 111.7866666666667 72.7466666666666 112.2133333333334C72.3199999999999 113.0666666666667 72.1066666666666 113.4933333333334 72.3199999999999 114.3466666666667M44.3733333333332 96C47.3599999999999 91.0933333333334 50.7733333333332 86.8266666666667 54.1866666666666 82.7733333333333C61.0133333333332 74.6666666666667 68.9066666666666 67.2 77.2266666666666 60.5866666666667C95.1466666666666 46.72 115.8399999999999 36.6933333333333 137.3866666666666 29.6533333333334C162.1333333333333 21.3333333333334 188.1599999999999 17.2800000000001 214.1866666666666 15.1466666666667C244.2666666666666 12.5866666666667 274.9866666666666 12.5866666666667 305.0666666666666 15.7866666666667C332.7999999999999 18.7733333333334 360.7466666666666 24.5333333333334 386.7733333333332 34.7733333333334C409.8133333333332 43.9466666666667 431.1466666666666 57.1733333333334 449.7066666666666 73.8133333333334C454.6133333333332 78.08 459.3066666666665 82.5600000000001 462.9333333333332 87.8933333333334C466.3466666666666 92.3733333333334 469.3333333333333 97.2800000000001 469.3333333333333 102.8266666666667C469.3333333333333 109.2266666666667 469.3333333333333 115.84 467.6266666666666 122.24C466.1333333333333 129.28 464.2133333333333 136.1066666666667 462.5066666666667 142.9333333333334L460.5866666666666 150.6133333333334C453.76 180.6933333333334 443.3066666666667 209.92 429.2266666666667 237.4400000000001C417.2800000000001 260.48 402.56 282.4533333333334 385.2800000000001 302.0800000000001C369.2800000000001 320 350.5066666666667 336.64 329.1733333333334 348.1600000000001C317.8666666666668 354.56 305.7066666666667 359.4666666666667 293.3333333333334 362.6666666666667C286.7200000000001 365.2266666666667 279.8933333333334 366.7200000000001 273.0666666666667 368.2133333333334C271.1466666666668 368.4266666666667 269.4400000000001 368.8533333333334 267.7333333333334 368.8533333333334H247.6800000000001C245.3333333333335 368.8533333333334 243.8400000000001 369.0666666666667 241.7066666666668 368.8533333333334C240.0000000000001 368.64 238.0800000000001 368.2133333333334 236.3733333333335 368C232.7466666666668 367.36 229.3333333333335 366.7200000000001 225.9200000000001 365.8666666666667C219.0933333333334 364.3733333333334 212.4800000000001 362.6666666666667 205.8666666666668 359.68C192.8533333333335 354.56 180.6933333333335 347.7333333333334 169.1733333333335 339.6266666666667C146.5600000000001 324.2666666666667 126.9333333333335 304.4266666666667 110.5066666666668 282.6666666666667C93.2266666666668 259.6266666666667 79.1466666666668 233.8133333333334 68.4800000000001 206.9333333333333C56.9600000000001 178.3466666666667 49.0666666666668 148.48 44.1600000000001 117.9733333333334C43.5200000000001 114.1333333333333 42.6666666666668 110.08 42.6666666666668 106.6666666666667V99.84C42.6666666666668 98.7733333333333 42.6666666666668 98.1333333333334 43.3066666666668 97.28C43.5200000000001 96.8533333333334 43.9466666666668 96 44.3733333333335 96z" />
289
- <glyph glyph-name="basket"
290
- unicode="&#xF15E;"
291
- horiz-adv-x="512" d=" M117.3333333333333 0C100.6933333333333 0 86.1866666666667 9.6 79.1466666666667 23.4666666666667L23.4666666666667 225.2800000000001L21.3333333333333 234.6666666666667C21.3333333333333 246.4000000000001 30.9333333333333 256 42.6666666666667 256H140.3733333333333L238.5066666666667 396.1600000000001C242.3466666666667 401.7066666666667 248.7466666666667 405.3333333333334 256 405.3333333333334C263.2533333333334 405.3333333333334 269.8666666666667 401.7066666666667 273.7066666666667 395.9466666666667L371.6266666666667 256H469.3333333333333C481.0666666666667 256 490.6666666666666 246.4000000000001 490.6666666666666 234.6666666666667L489.8133333333333 228.48L432.8533333333333 23.4666666666667C425.8133333333334 9.6000000000001 411.3066666666666 0 394.6666666666667 0H117.3333333333333M256 346.88L192 256H320L256 346.88M256 170.6666666666667C232.5333333333334 170.6666666666667 213.3333333333333 151.4666666666667 213.3333333333333 128S232.5333333333334 85.3333333333334 256 85.3333333333334S298.6666666666667 104.5333333333333 298.6666666666667 128S279.4666666666667 170.6666666666667 256 170.6666666666667z" />
292
- <glyph glyph-name="basket-fill"
293
- unicode="&#xF15F;"
294
- horiz-adv-x="512" d=" M64 405.3333333333333H128V341.3333333333334H64V405.3333333333333M128 298.6666666666667H192V234.6666666666667H128V298.6666666666667M170.6666666666667 405.3333333333333H234.6666666666667V341.3333333333334H170.6666666666667V405.3333333333333M362.6666666666667 213.3333333333334L256 320H320V405.3333333333333H405.3333333333333V320H469.3333333333333L362.6666666666667 213.3333333333334M160 -21.3333333333333C143.36 -21.3333333333333 128.8533333333333 -11.7333333333333 121.8133333333333 2.1333333333334L66.1333333333333 161.28L64 170.6666666666667C64 182.4 73.6 192 85.3333333333333 192H426.6666666666667C438.4 192 448 182.4 448 170.6666666666667L447.1466666666667 164.48L390.1866666666666 2.1333333333334C383.1466666666667 -11.7333333333332 368.64 -21.3333333333333 352 -21.3333333333333H160M162.3466666666667 21.3333333333334H349.6533333333333L396.16 149.3333333333334H115.6266666666667L162.3466666666666 21.3333333333334z" />
295
- <glyph glyph-name="basket-unfill"
296
- unicode="&#xF160;"
297
- horiz-adv-x="512" d=" M64 234.6666666666667H128V298.6666666666667H64V234.6666666666667M106.6666666666667 341.3333333333334H170.6666666666667V405.3333333333333H106.6666666666667V341.3333333333334M170.6666666666667 234.6666666666667H234.6666666666667V298.6666666666667H170.6666666666667V234.6666666666667M362.6666666666667 426.6666666666667L256 320H320V234.6666666666667H405.3333333333333V320H469.3333333333333L362.6666666666667 426.6666666666667M160 -21.3333333333333C143.36 -21.3333333333333 128.8533333333333 -11.7333333333333 121.8133333333333 2.1333333333334L66.1333333333333 161.28L64 170.6666666666667C64 182.4 73.6 192 85.3333333333333 192H426.6666666666667C438.4 192 448 182.4 448 170.6666666666667L447.1466666666667 164.48L390.1866666666666 2.1333333333334C383.1466666666667 -11.7333333333332 368.64 -21.3333333333333 352 -21.3333333333333H160M162.3466666666667 21.3333333333334H349.6533333333333L396.16 149.3333333333334H115.6266666666667L162.3466666666666 21.3333333333334z" />
298
- <glyph glyph-name="battery"
299
- unicode="&#xF161;"
300
- horiz-adv-x="512" d=" M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
301
- <glyph glyph-name="battery-10"
302
- unicode="&#xF162;"
303
- horiz-adv-x="512" d=" M341.3333333333333 64H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
304
- <glyph glyph-name="battery-20"
305
- unicode="&#xF163;"
306
- horiz-adv-x="512" d=" M341.3333333333333 85.3333333333334H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
307
- <glyph glyph-name="battery-30"
308
- unicode="&#xF164;"
309
- horiz-adv-x="512" d=" M341.3333333333333 128H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
310
- <glyph glyph-name="battery-40"
311
- unicode="&#xF165;"
312
- horiz-adv-x="512" d=" M341.3333333333333 149.3333333333334H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
313
- <glyph glyph-name="battery-50"
314
- unicode="&#xF166;"
315
- horiz-adv-x="512" d=" M341.3333333333333 170.6666666666667H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
316
- <glyph glyph-name="battery-60"
317
- unicode="&#xF167;"
318
- horiz-adv-x="512" d=" M341.3333333333333 192H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
319
- <glyph glyph-name="battery-70"
320
- unicode="&#xF168;"
321
- horiz-adv-x="512" d=" M341.3333333333333 234.6666666666667H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
322
- <glyph glyph-name="battery-80"
323
- unicode="&#xF169;"
324
- horiz-adv-x="512" d=" M341.3333333333333 256H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
325
- <glyph glyph-name="battery-90"
326
- unicode="&#xF16A;"
327
- horiz-adv-x="512" d=" M341.3333333333333 277.3333333333334H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
328
- <glyph glyph-name="battery-alert"
329
- unicode="&#xF16B;"
330
- horiz-adv-x="512" d=" M277.3333333333333 149.3333333333334H234.6666666666667V256H277.3333333333333M277.3333333333333 64H234.6666666666667V106.6666666666667H277.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
331
- <glyph glyph-name="battery-charging-100"
332
- unicode="&#xF16C;"
333
- horiz-adv-x="512" d=" M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667z" />
334
- <glyph glyph-name="battery-charging-20"
335
- unicode="&#xF16D;"
336
- horiz-adv-x="512" d=" M491.7333333333333 213.3333333333334H427.7333333333334V362.6666666666667L321.0666666666667 149.3333333333334H385.0666666666667V-21.3333333333333M257.0666666666667 85.3333333333334H86.4V320H257.0666666666667M271.36 362.6666666666667H235.7333333333334V405.3333333333333H107.7333333333334V362.6666666666667H72.1066666666667C56.5333333333333 362.6666666666667 43.7333333333333 349.8666666666667 43.7333333333333 334.2933333333334V7.04C43.7333333333333 -8.5333333333334 56.5333333333333 -21.3333333333333 72.1066666666667 -21.3333333333333H271.36C286.9333333333333 -21.3333333333333 299.7333333333333 -8.5333333333333 299.7333333333333 7.04V334.2933333333334C299.7333333333333 349.8666666666667 286.9333333333333 362.6666666666667 271.36 362.6666666666667z" />
337
- <glyph glyph-name="battery-charging-30"
338
- unicode="&#xF16E;"
339
- horiz-adv-x="512" d=" M256 128H85.3333333333333V320H256M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333L490.6666666666666 213.3333333333334z" />
340
- <glyph glyph-name="battery-charging-40"
341
- unicode="&#xF16F;"
342
- horiz-adv-x="512" d=" M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333M256 170.6666666666667H85.3333333333333V320H256M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667z" />
343
- <glyph glyph-name="battery-charging-60"
344
- unicode="&#xF170;"
345
- horiz-adv-x="512" d=" M256 213.3333333333334H85.3333333333333V320H256M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333L490.6666666666666 213.3333333333334z" />
346
- <glyph glyph-name="battery-charging-80"
347
- unicode="&#xF171;"
348
- horiz-adv-x="512" d=" M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333M256 256H85.3333333333333V320H256M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667z" />
349
- <glyph glyph-name="battery-charging-90"
350
- unicode="&#xF172;"
351
- horiz-adv-x="512" d=" M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333M256 277.3333333333334H85.3333333333333V320H256M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667z" />
352
- <glyph glyph-name="battery-minus"
353
- unicode="&#xF173;"
354
- horiz-adv-x="512" d=" M355.6266666666667 362.6666666666667C371.2 362.6666666666667 384 349.8666666666667 384 334.2933333333334V7.04C384 -8.5333333333334 371.2 -21.3333333333333 355.6266666666667 -21.3333333333333H156.3733333333333C140.8 -21.3333333333333 128 -8.5333333333333 128 7.04V334.2933333333334C128 349.8666666666667 140.8 362.6666666666667 156.3733333333333 362.6666666666667H192V405.3333333333333H320V362.6666666666667H355.6266666666667M170.6666666666667 192V149.3333333333334H341.3333333333333V192" />
355
- <glyph glyph-name="battery-negative"
356
- unicode="&#xF174;"
357
- horiz-adv-x="512" d=" M248.96 362.6666666666667C264.5333333333333 362.6666666666667 277.3333333333333 349.8666666666667 277.3333333333333 334.2933333333334V7.04C277.3333333333333 -8.5333333333334 264.5333333333333 -21.3333333333333 248.96 -21.3333333333333H49.7066666666667C34.1333333333333 -21.3333333333333 21.3333333333333 -8.5333333333333 21.3333333333333 7.04V334.2933333333334C21.3333333333333 349.8666666666667 34.1333333333333 362.6666666666667 49.7066666666667 362.6666666666667H85.3333333333333V405.3333333333333H213.3333333333333V362.6666666666667H248.96M320 192H490.6666666666666V149.3333333333334H320V192M64 170.6666666666667H234.6666666666667V320H64V170.6666666666667z" />
358
- <glyph glyph-name="battery-outline"
359
- unicode="&#xF175;"
360
- horiz-adv-x="512" d=" M341.3333333333333 21.3333333333334H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
361
- <glyph glyph-name="battery-plus"
362
- unicode="&#xF176;"
363
- horiz-adv-x="512" d=" M355.6266666666667 362.6666666666667C371.2 362.6666666666667 384 349.8666666666667 384 334.2933333333334V7.04C384 -8.5333333333334 371.2 -21.3333333333333 355.6266666666667 -21.3333333333333H156.3733333333333C140.8 -21.3333333333333 128 -8.5333333333333 128 7.04V334.2933333333334C128 349.8666666666667 140.8 362.6666666666667 156.3733333333333 362.6666666666667H192V405.3333333333333H320V362.6666666666667H355.6266666666667M341.3333333333333 149.3333333333334V192H277.3333333333333V256H234.6666666666667V192H170.6666666666667V149.3333333333334H234.6666666666667V85.3333333333334H277.3333333333333V149.3333333333334H341.3333333333333z" />
364
- <glyph glyph-name="battery-positive"
365
- unicode="&#xF177;"
366
- horiz-adv-x="512" d=" M248.96 362.6666666666667C264.5333333333333 362.6666666666667 277.3333333333333 349.8666666666667 277.3333333333333 334.2933333333334V7.04C277.3333333333333 -8.5333333333334 264.5333333333333 -21.3333333333333 248.96 -21.3333333333333H49.7066666666667C34.1333333333333 -21.3333333333333 21.3333333333333 -8.5333333333333 21.3333333333333 7.04V334.2933333333334C21.3333333333333 349.8666666666667 34.1333333333333 362.6666666666667 49.7066666666667 362.6666666666667H85.3333333333333V405.3333333333333H213.3333333333333V362.6666666666667H248.96M490.6666666666666 149.3333333333334H426.6666666666667V85.3333333333334H384V149.3333333333334H320V192H384V256H426.6666666666667V192H490.6666666666666V149.3333333333334M64 170.6666666666667H234.6666666666667V320H64V170.6666666666667z" />
367
- <glyph glyph-name="battery-unknown"
368
- unicode="&#xF178;"
369
- horiz-adv-x="512" d=" M321.4933333333334 186.6666666666667L302.2933333333333 167.04C290.7733333333333 155.52 282.6666666666667 145.4933333333334 279.2533333333334 128H235.7333333333334C238.08 147.2000000000001 246.6133333333334 164.6933333333334 259.6266666666667 177.7066666666667L286.0800000000001 204.5866666666667C293.9733333333334 212.2666666666667 298.6666666666667 222.9333333333333 298.6666666666667 234.6666666666667C298.6666666666667 258.3466666666667 279.4666666666667 277.3333333333334 256 277.3333333333334S213.3333333333334 258.1333333333334 213.3333333333334 234.6666666666667H170.6666666666667C170.6666666666667 281.8133333333334 208.8533333333333 320 256 320S341.3333333333333 281.8133333333334 341.3333333333333 234.6666666666667C341.3333333333333 215.8933333333333 333.6533333333333 198.8266666666667 321.4933333333334 186.6666666666667M277.3333333333333 42.6666666666667H234.6666666666667V85.3333333333334H277.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.2533333333333C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.2533333333333V334.2933333333334C384 350.0800000000001 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
370
- <glyph glyph-name="beach"
371
- unicode="&#xF179;"
372
- horiz-adv-x="512" d=" M320 52.48C365.44 59.52 416 64 469.3333333333333 64V-21.3333333333333H106.6666666666667C106.6666666666667 -7.4666666666667 174.9333333333333 24.3200000000001 277.3333333333333 44.8000000000001V183.4666666666667C259.4133333333333 178.1333333333334 244.2666666666667 166.1866666666667 234.6666666666667 150.4C221.6533333333333 172.16 197.76 186.6666666666667 170.6666666666667 186.6666666666667S119.68 172.16 106.6666666666667 150.4C107.3066666666667 226.7733333333334 181.3333333333333 289.4933333333334 277.3333333333333 297.8133333333334V298.6666666666667C277.3333333333333 310.4 286.9333333333333 320 298.6666666666667 320S320 310.4 320 298.6666666666667V297.8133333333334C416 289.4933333333334 489.8133333333333 226.7733333333333 490.6666666666666 150.4C477.6533333333333 172.16 453.76 186.6666666666667 426.6666666666667 186.6666666666667S375.68 172.16 362.6666666666667 150.4C353.0666666666667 166.1866666666667 337.92 178.1333333333334 320 183.6800000000001V52.48M149.3333333333333 405.3333333333333C149.3333333333333 346.4533333333334 101.5466666666667 298.6666666666667 42.6666666666667 298.6666666666667V405.3333333333333H149.3333333333333z" />
373
- <glyph glyph-name="beaker"
374
- unicode="&#xF17A;"
375
- horiz-adv-x="512" d=" M128 -21.3333333333333C92.5866666666667 -21.3333333333333 64 7.2533333333333 64 42.6666666666667C64 55.4666666666667 67.84 67.4133333333334 74.6666666666667 77.44L192 281.3866666666667V320C180.2666666666667 320 170.6666666666667 329.6 170.6666666666667 341.3333333333334V362.6666666666667C170.6666666666667 386.1333333333334 189.8666666666667 405.3333333333333 213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V341.3333333333334C341.3333333333333 329.6 331.7333333333334 320 320 320V281.3866666666667L437.3333333333333 77.44C444.16 67.4133333333334 448 55.4666666666666 448 42.6666666666667C448 7.2533333333333 419.4133333333333 -21.3333333333333 384 -21.3333333333333H128M106.6666666666667 42.6666666666667C106.6666666666667 30.9333333333333 116.2666666666667 21.3333333333334 128 21.3333333333334H384C395.7333333333334 21.3333333333334 405.3333333333333 30.9333333333333 405.3333333333333 42.6666666666667C405.3333333333333 47.1466666666667 403.84 51.4133333333334 401.4933333333334 54.8266666666667L352.64 139.3066666666667L298.6666666666667 85.3333333333334L190.5066666666667 193.4933333333334L110.5066666666667 54.8266666666667C108.16 51.4133333333334 106.6666666666667 47.1466666666667 106.6666666666667 42.6666666666667M277.3333333333333 234.6666666666667C265.6 234.6666666666667 256 225.0666666666667 256 213.3333333333334S265.6 192 277.3333333333333 192S298.6666666666667 201.6 298.6666666666667 213.3333333333334S289.0666666666667 234.6666666666667 277.3333333333333 234.6666666666667z" />
376
- <glyph glyph-name="beaker-empty"
377
- unicode="&#xF17B;"
378
- horiz-adv-x="512" d=" M128 -21.3333333333333C92.5866666666667 -21.3333333333333 64 7.2533333333333 64 42.6666666666667C64 55.4666666666667 67.84 67.4133333333334 74.6666666666667 77.44L192 281.3866666666667V320C180.2666666666667 320 170.6666666666667 329.6 170.6666666666667 341.3333333333334V362.6666666666667C170.6666666666667 386.1333333333334 189.8666666666667 405.3333333333333 213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V341.3333333333334C341.3333333333333 329.6 331.7333333333334 320 320 320V281.3866666666667L437.3333333333333 77.44C444.16 67.4133333333334 448 55.4666666666666 448 42.6666666666667C448 7.2533333333333 419.4133333333333 -21.3333333333333 384 -21.3333333333333H128z" />
379
- <glyph glyph-name="beaker-empty-outline"
380
- unicode="&#xF17C;"
381
- horiz-adv-x="512" d=" M106.6666666666667 42.6666666666667C106.6666666666667 30.9333333333333 116.2666666666667 21.3333333333334 128 21.3333333333334H384C395.7333333333334 21.3333333333334 405.3333333333333 30.9333333333333 405.3333333333333 42.6666666666667C405.3333333333333 47.1466666666667 403.84 51.4133333333334 401.4933333333334 54.8266666666667L277.3333333333333 269.8666666666667V362.6666666666667H234.6666666666667V269.8666666666667L110.5066666666667 54.8266666666667C108.16 51.4133333333334 106.6666666666667 47.1466666666667 106.6666666666667 42.6666666666667M128 -21.3333333333333C92.5866666666667 -21.3333333333333 64 7.2533333333333 64 42.6666666666667C64 55.4666666666667 67.84 67.4133333333334 74.6666666666667 77.44L192 281.3866666666667V320C180.2666666666667 320 170.6666666666667 329.6 170.6666666666667 341.3333333333334V362.6666666666667C170.6666666666667 386.1333333333334 189.8666666666667 405.3333333333333 213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V341.3333333333334C341.3333333333333 329.6 331.7333333333334 320 320 320V281.3866666666667L437.3333333333333 77.44C444.16 67.4133333333334 448 55.4666666666666 448 42.6666666666667C448 7.2533333333333 419.4133333333333 -21.3333333333333 384 -21.3333333333333H128z" />
382
- <glyph glyph-name="beaker-outline"
383
- unicode="&#xF17D;"
384
- horiz-adv-x="512" d=" M106.6666666666667 42.6666666666667C106.6666666666667 30.9333333333333 116.2666666666667 21.3333333333334 128 21.3333333333334H384C395.7333333333334 21.3333333333334 405.3333333333333 30.9333333333333 405.3333333333333 42.6666666666667C405.3333333333333 47.1466666666667 403.84 51.4133333333334 401.4933333333334 54.8266666666667L277.3333333333333 269.8666666666667V362.6666666666667H234.6666666666667V269.8666666666667L110.5066666666667 54.8266666666667C108.16 51.4133333333334 106.6666666666667 47.1466666666667 106.6666666666667 42.6666666666667M128 -21.3333333333333C92.5866666666667 -21.3333333333333 64 7.2533333333333 64 42.6666666666667C64 55.4666666666667 67.84 67.4133333333334 74.6666666666667 77.44L192 281.3866666666667V320C180.2666666666667 320 170.6666666666667 329.6 170.6666666666667 341.3333333333334V362.6666666666667C170.6666666666667 386.1333333333334 189.8666666666667 405.3333333333333 213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V341.3333333333334C341.3333333333333 329.6 331.7333333333334 320 320 320V281.3866666666667L437.3333333333333 77.44C444.16 67.4133333333334 448 55.4666666666666 448 42.6666666666667C448 7.2533333333333 419.4133333333333 -21.3333333333333 384 -21.3333333333333H128M277.3333333333333 106.6666666666667L305.92 135.2533333333333L347.0933333333333 64H164.9066666666667L221.6533333333333 162.3466666666667L277.3333333333333 106.6666666666667M266.6666666666667 192C272.64 192 277.3333333333333 187.3066666666667 277.3333333333333 181.3333333333334S272.64 170.6666666666667 266.6666666666667 170.6666666666667S256 175.36 256 181.3333333333334S260.6933333333334 192 266.6666666666667 192z" />
385
- <glyph glyph-name="beats"
386
- unicode="&#xF17E;"
387
- horiz-adv-x="512" d=" M149.3333333333333 192C149.3333333333333 133.12 197.12 85.3333333333334 256 85.3333333333334S362.6666666666667 133.12 362.6666666666667 192S314.88 298.6666666666667 256 298.6666666666667C231.8933333333334 298.6666666666667 209.92 290.7733333333333 192 277.3333333333334V395.52C212.2666666666667 401.92 233.6 405.3333333333333 256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192C42.6666666666667 270.9333333333334 85.3333333333333 339.8400000000001 149.3333333333333 376.7466666666667V192M309.3333333333333 192C309.3333333333333 184.1066666666667 305.0666666666667 177.4933333333334 298.6666666666667 173.6533333333334L258.3466666666667 143.1466666666667C254.72 140.3733333333333 250.24 138.6666666666667 245.3333333333333 138.6666666666667C233.6 138.6666666666667 224 148.2666666666667 224 160V224C224 235.7333333333334 233.6 245.3333333333334 245.3333333333333 245.3333333333334C250.24 245.3333333333334 254.72 243.6266666666667 258.3466666666667 240.8533333333333L298.6666666666667 210.3466666666667C305.0666666666667 206.5066666666667 309.3333333333333 199.8933333333333 309.3333333333333 192z" />
388
- <glyph glyph-name="beer"
389
- unicode="&#xF17F;"
390
- horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H405.3333333333333L362.6666666666667 -21.3333333333333H128L85.3333333333333 405.3333333333333M132.2666666666667 362.6666666666667L166.4 21.3333333333334H187.7333333333334L158.5066666666667 312.7466666666667C181.3333333333333 320 210.9866666666667 322.3466666666667 234.6666666666667 298.6666666666667C267.9466666666667 265.3866666666667 327.04 283.9466666666667 352 293.76L358.4 362.6666666666667H132.2666666666667z" />
391
- <glyph glyph-name="behance"
392
- unicode="&#xF180;"
393
- horiz-adv-x="512" d=" M417.7066666666666 186.24C416.8533333333333 199.4666666666667 412.3733333333333 209.4933333333334 404.4799999999999 216.32C396.5866666666666 223.1466666666667 386.7733333333333 226.5600000000001 375.04 226.5600000000001C362.6666666666667 226.5600000000001 352 222.9333333333334 345.3866666666666 215.68C338.3466666666666 208.4266666666667 333.8666666666666 198.6133333333334 332.16 186.24M467.6266666666666 191.1466666666667C469.3333333333333 182.4 469.3333333333333 169.8133333333334 469.3333333333333 153.3866666666667H330.6666666666666C331.7333333333333 134.1866666666667 338.1333333333332 120.96 350.7199999999999 113.2800000000001C358.1866666666666 108.3733333333334 367.36 106.0266666666668 378.2399999999999 106.0266666666668C389.5466666666666 106.0266666666668 398.7199999999999 109.0133333333334 405.3333333333333 114.7733333333334C409.5999999999999 117.9733333333334 413.0133333333332 122.2400000000001 415.9999999999999 128.0000000000001H466.7733333333332C465.4933333333332 116.48 459.3066666666665 105.1733333333334 447.9999999999999 93.4400000000001C431.3599999999999 74.6666666666667 407.4666666666666 65.7066666666667 376.7466666666666 65.7066666666667C351.3599999999999 65.7066666666667 329.1733333333333 73.6000000000001 309.3333333333333 89.1733333333334C290.5599999999999 104.7466666666668 280.7466666666666 130.1333333333335 280.7466666666666 165.3333333333334C280.7466666666666 198.4000000000001 289.4933333333333 224.0000000000001 306.9866666666666 241.0666666666668C324.4799999999999 258.7733333333335 347.0933333333333 267.5200000000001 375.04 267.5200000000001C391.4666666666666 267.5200000000001 406.3999999999999 264.5333333333334 419.6266666666666 258.5600000000001C432.8533333333333 252.5866666666668 443.9466666666666 243.4133333333334 452.4799999999999 230.4000000000001C460.3733333333333 219.0933333333335 465.28 206.0800000000001 467.6266666666666 191.1466666666668M204.3733333333333 147.84C204.3733333333333 161.7066666666667 198.6133333333334 171.3066666666667 187.52 176.4266666666667C181.3333333333333 179.2000000000001 172.3733333333333 180.6933333333333 160.8533333333333 181.3333333333334H103.8933333333333V110.08H160C171.52 110.08 180.48 111.5733333333334 186.88 114.7733333333334C198.6133333333334 120.5333333333334 204.3733333333333 131.6266666666667 204.3733333333333 147.84M103.8933333333333 224.8533333333334H160C171.52 224.8533333333334 181.3333333333333 226.9866666666667 188.16 231.4666666666667C195.4133333333333 235.7333333333334 198.8266666666667 243.6266666666667 198.8266666666667 254.7200000000001C198.8266666666667 266.6666666666668 194.1333333333333 275.2000000000001 184.7466666666667 279.2533333333334C176.4266666666667 282.0266666666667 165.9733333333333 283.3066666666668 153.3866666666667 283.3066666666668H103.8933333333333M250.0266666666667 183.0400000000001C256.8533333333333 172.3733333333334 260.2666666666667 159.3600000000001 260.2666666666667 144.2133333333334C260.2666666666667 128.0000000000001 256 114.3466666666667 248.5333333333333 101.7600000000001C243.4133333333333 93.4400000000001 237.2266666666667 86.6133333333334 229.76 80.8533333333334C221.2266666666666 74.6666666666667 211.2 69.9733333333334 199.68 67.6266666666667C188.1599999999999 65.2800000000001 175.7866666666666 64 162.3466666666666 64H42.6666666666667V329.6H170.6666666666667C203.3066666666667 328.9600000000001 226.1333333333334 320 239.5733333333333 301.2266666666667C247.68 289.92 251.7333333333334 276.48 251.7333333333334 260.6933333333334C251.7333333333334 244.48 247.68 231.4666666666667 239.5733333333333 221.6533333333334C234.6666666666667 216.1066666666667 228.2666666666667 210.9866666666667 219.3066666666667 206.5066666666667C232.7466666666667 201.6 242.9866666666667 193.7066666666667 250.0266666666667 183.04M427.9466666666667 291.8400000000001H321.0666666666667V318.5066666666667H427.9466666666667V291.8400000000001z" />
394
- <glyph glyph-name="bell"
395
- unicode="&#xF181;"
396
- horiz-adv-x="512" d=" M298.6666666666667 21.3333333333334C298.6666666666667 -2.1333333333333 279.4666666666667 -21.3333333333333 256 -21.3333333333333S213.3333333333333 -2.1333333333333 213.3333333333333 21.3333333333334H298.6666666666667M256 405.3333333333333C267.7333333333334 405.3333333333333 277.3333333333333 395.7333333333334 277.3333333333333 384V360.9600000000001C337.92 350.7200000000001 384 298.0266666666667 384 234.6666666666667V106.6666666666667L448 42.6666666666667H64L128 106.6666666666667V234.6666666666667C128 298.0266666666667 174.08 350.7200000000001 234.6666666666667 360.9600000000001V384C234.6666666666667 395.7333333333334 244.2666666666667 405.3333333333333 256 405.3333333333333z" />
397
- <glyph glyph-name="bell-off"
398
- unicode="&#xF182;"
399
- horiz-adv-x="512" d=" M298.6666666666667 21.3333333333334C298.6666666666667 -2.1333333333333 279.4666666666667 -21.3333333333333 256 -21.3333333333333S213.3333333333333 -2.1333333333333 213.3333333333333 21.3333333333334H298.6666666666667M421.12 -12.16L366.2933333333334 42.6666666666667H64L128 106.6666666666667V234.6666666666667C128 248.5333333333334 130.1333333333333 261.9733333333334 134.4 274.5600000000001L74.0266666666667 334.9333333333334L104.32 365.0133333333333L155.52 313.8133333333334L451.1999999999999 18.1333333333334L421.12 -12.16M234.6666666666667 360.9600000000001V384C234.6666666666667 395.7333333333334 244.2666666666667 405.3333333333333 256 405.3333333333333S277.3333333333333 395.7333333333334 277.3333333333333 384V360.9600000000001C337.92 350.7200000000001 384 298.0266666666667 384 234.6666666666667V145.7066666666667L187.0933333333333 342.6133333333334C201.3866666666667 352 217.3866666666667 357.9733333333334 234.6666666666667 360.9600000000001z" />
400
- <glyph glyph-name="bell-outline"
401
- unicode="&#xF183;"
402
- horiz-adv-x="512" d=" M341.3333333333333 85.3333333333334H149.3333333333333V224C149.3333333333333 277.3333333333334 192 320 245.3333333333333 320S341.3333333333333 277.3333333333334 341.3333333333333 224M384 106.6666666666667V224C384 289.4933333333334 338.3466666666667 344.32 277.3333333333333 358.8266666666667V373.3333333333334C277.3333333333333 391.04 263.04 405.3333333333333 245.3333333333333 405.3333333333333S213.3333333333333 391.04 213.3333333333333 373.3333333333334V358.8266666666667C152.1066666666667 344.3200000000001 106.6666666666667 289.4933333333334 106.6666666666667 224V106.6666666666667L64 64V42.6666666666667H426.6666666666667V64M245.3333333333333 -21.3333333333333C268.8 -21.3333333333333 288 -2.1333333333333 288 21.3333333333334H202.6666666666667C202.6666666666667 -2.1333333333333 221.8666666666667 -21.3333333333333 245.3333333333333 -21.3333333333333z" />
403
- <glyph glyph-name="bell-ring"
404
- unicode="&#xF184;"
405
- horiz-adv-x="512" d=" M245.3333333333333 -21.3333333333333C248.32 -21.3333333333333 251.0933333333333 -21.3333333333333 253.8666666666667 -20.48C267.7333333333334 -17.4933333333333 279.2533333333334 -8.1066666666667 284.5866666666667 4.6933333333333C286.72 9.8133333333333 288 15.5733333333334 288 21.3333333333334H202.6666666666667C202.6666666666667 -2.1333333333333 221.8666666666667 -21.3333333333333 245.3333333333333 -21.3333333333333M384 224C384 289.4933333333334 338.3466666666667 344.32 277.3333333333333 358.8266666666667V373.3333333333334C277.3333333333333 391.04 263.04 405.3333333333333 245.3333333333333 405.3333333333333S213.3333333333333 391.04 213.3333333333333 373.3333333333334V358.8266666666667C152.1066666666667 344.3200000000001 106.6666666666667 289.4933333333334 106.6666666666667 224V106.6666666666667L64 64V42.6666666666667H426.6666666666667V64L384 106.6666666666667M426.0266666666667 234.6666666666667H468.6933333333333C465.4933333333333 303.1466666666667 431.7866666666667 363.3066666666667 380.8 402.1333333333334L350.2933333333333 371.6266666666667C393.8133333333334 341.3333333333334 422.8266666666667 291.2000000000001 426.0266666666667 234.6666666666667M140.3733333333333 371.6266666666667L109.8666666666667 402.1333333333334C58.88 363.3066666666667 25.1733333333333 303.1466666666667 21.3333333333333 234.6666666666667H64C67.84 291.2000000000001 96.8533333333333 341.3333333333334 140.3733333333333 371.6266666666667z" />
406
- <glyph glyph-name="bell-ring-outline"
407
- unicode="&#xF185;"
408
- horiz-adv-x="512" d=" M341.3333333333333 85.3333333333334V224C341.3333333333333 277.3333333333334 298.6666666666667 320 245.3333333333333 320S149.3333333333333 277.3333333333334 149.3333333333333 224V85.3333333333334H341.3333333333333M384 106.6666666666667L426.6666666666667 64V42.6666666666667H64V64L106.6666666666667 106.6666666666667V224C106.6666666666667 289.4933333333334 152.1066666666667 344.32 213.3333333333333 358.8266666666667V373.3333333333334C213.3333333333333 391.04 227.6266666666667 405.3333333333333 245.3333333333333 405.3333333333333S277.3333333333333 391.04 277.3333333333333 373.3333333333334V358.8266666666667C338.3466666666667 344.3200000000001 384 289.4933333333334 384 224V106.6666666666667M245.3333333333333 -21.3333333333333C221.8666666666667 -21.3333333333333 202.6666666666667 -2.1333333333333 202.6666666666667 21.3333333333334H288C288 -2.1333333333333 268.8 -21.3333333333333 245.3333333333333 -21.3333333333333M426.0266666666667 234.6666666666667C422.8266666666667 291.2000000000001 393.8133333333333 341.3333333333334 350.2933333333333 371.6266666666667L380.8 402.1333333333334C431.7866666666667 363.3066666666667 465.4933333333332 303.1466666666667 468.6933333333333 234.6666666666667H426.0266666666667M140.3733333333333 371.6266666666667C96.8533333333333 341.3333333333334 67.84 291.2000000000001 64 234.6666666666667H21.3333333333333C25.1733333333333 303.1466666666667 58.88 363.3066666666667 109.8666666666667 402.1333333333334L140.3733333333333 371.6266666666667z" />
409
- <glyph glyph-name="bell-sleep"
410
- unicode="&#xF186;"
411
- horiz-adv-x="512" d=" M298.6666666666667 238.9333333333334L238.9333333333333 166.4H298.6666666666667V128H192V166.4L251.7333333333334 238.9333333333334H192V277.3333333333334H298.6666666666667M384 106.6666666666667V224C384 289.4933333333334 338.3466666666667 344.32 277.3333333333333 358.8266666666667V373.3333333333334C277.3333333333333 391.04 263.04 405.3333333333333 245.3333333333333 405.3333333333333S213.3333333333333 391.04 213.3333333333333 373.3333333333334V358.8266666666667C152.1066666666667 344.3200000000001 106.6666666666667 289.4933333333334 106.6666666666667 224V106.6666666666667L64 64V42.6666666666667H426.6666666666667V64M245.3333333333333 -21.3333333333333C268.8 -21.3333333333333 288 -2.1333333333333 288 21.3333333333334H202.6666666666667C202.6666666666667 -2.1333333333333 221.8666666666667 -21.3333333333333 245.3333333333333 -21.3333333333333z" />
412
- <glyph glyph-name="beta"
413
- unicode="&#xF187;"
414
- horiz-adv-x="512" d=" M196.9066666666667 72.7466666666667V-45.2266666666667H146.7733333333333V304.64C146.7733333333333 335.5733333333334 155.9466666666667 359.8933333333333 174.08 378.0266666666667C192 396.16 216.96 405.3333333333333 247.68 405.3333333333333C277.3333333333333 405.3333333333333 300.16 398.08 317.2266666666667 384C334.08 369.4933333333334 342.4 349.44 342.4 324.0533333333334C342.4 306.56 336.8533333333334 290.1333333333334 325.76 274.9866666666667C314.6666666666667 259.8400000000001 300.3733333333334 249.3866666666667 282.6666666666667 243.6266666666667V242.7733333333334C309.3333333333334 238.5066666666667 330.0266666666667 228.9066666666667 344.1066666666667 213.3333333333334C358.1866666666667 198.1866666666667 365.2266666666667 178.7733333333333 365.2266666666667 154.88C365.2266666666667 126.72 355.4133333333333 103.68 336 85.9733333333334C316.3733333333334 68.2666666666668 290.7733333333333 59.5200000000001 258.7733333333333 59.5200000000001C236.16 59.5200000000001 215.4666666666667 64.0000000000001 196.9066666666667 72.7466666666668M228.6933333333333 218.6666666666668V259.6266666666667C247.2533333333333 261.9733333333334 262.4 268.8 274.56 280.32C286.5066666666667 292.0533333333334 292.48 305.0666666666667 292.48 320C292.48 349.44 277.3333333333333 364.3733333333334 247.4666666666667 364.3733333333334C231.2533333333334 364.3733333333334 218.6666666666667 359.2533333333334 209.92 348.8C201.1733333333333 338.3466666666667 196.9066666666667 323.8400000000001 196.9066666666667 304.8533333333334V117.3333333333334C216.32 106.0266666666666 235.3066666666667 100.48 253.6533333333334 100.48C271.5733333333333 100.48 285.6533333333333 105.1733333333334 295.68 114.3466666666667C305.7066666666667 123.7333333333334 310.6133333333334 136.96 310.6133333333334 153.8133333333334C310.6133333333334 192 283.3066666666667 213.3333333333334 228.6933333333334 218.6666666666667z" />
415
- <glyph glyph-name="bike"
416
- unicode="&#xF188;"
417
- horiz-adv-x="512" d=" M106.6666666666667 10.6666666666667C65.4933333333333 10.6666666666667 32 44.16 32 85.3333333333334S65.4933333333333 160 106.6666666666667 160S181.3333333333333 126.5066666666667 181.3333333333333 85.3333333333334S147.84 10.6666666666667 106.6666666666667 10.6666666666667M106.6666666666667 192C47.7866666666667 192 0 144.2133333333334 0 85.3333333333334S47.7866666666667 -21.3333333333333 106.6666666666667 -21.3333333333333S213.3333333333333 26.4533333333334 213.3333333333333 85.3333333333334S165.5466666666667 192 106.6666666666667 192M315.7333333333334 234.6666666666667H405.3333333333333V273.0666666666667H337.0666666666667L295.68 342.8266666666667C289.4933333333334 353.4933333333334 277.3333333333334 360.5333333333334 264.5333333333334 360.5333333333334C254.5066666666667 360.5333333333334 245.3333333333334 356.48 238.9333333333334 349.8666666666667L160 271.1466666666667C153.3866666666667 264.5333333333334 149.3333333333333 256 149.3333333333333 245.3333333333334C149.3333333333333 231.8933333333333 156.3733333333333 220.5866666666667 167.4666666666667 213.9733333333333L238.9333333333333 170.6666666666667V64H277.3333333333333V202.6666666666667L229.3333333333333 237.8666666666667L278.8266666666667 288M405.3333333333333 10.6666666666667C364.16 10.6666666666667 330.6666666666667 44.16 330.6666666666667 85.3333333333334S364.16 160 405.3333333333333 160S480 126.5066666666667 480 85.3333333333334S446.5066666666667 10.6666666666667 405.3333333333333 10.6666666666667M405.3333333333333 192C346.4533333333334 192 298.6666666666667 144.2133333333334 298.6666666666667 85.3333333333334S346.4533333333334 -21.3333333333333 405.3333333333333 -21.3333333333333S512 26.4533333333334 512 85.3333333333334S464.2133333333333 192 405.3333333333333 192M341.3333333333333 345.6C362.6666666666667 345.6 379.7333333333334 362.6666666666667 379.7333333333334 384S362.6666666666667 422.4 341.3333333333333 422.4S302.9333333333333 405.3333333333333 302.9333333333333 384S320 345.6 341.3333333333333 345.6z" />
418
- <glyph glyph-name="bing"
419
- unicode="&#xF189;"
420
- horiz-adv-x="512" d=" M106.6666666666667 62.5066666666667L313.1733333333333 174.5066666666667L256 202.0266666666667L221.2266666666666 281.6L405.3333333333333 221.8666666666667V132.2666666666667L191.36 2.7733333333333L106.6666666666667 62.5066666666667V381.2266666666667L192 352V138.6666666666667L106.6666666666667 62.5066666666667z" />
421
- <glyph glyph-name="binoculars"
422
- unicode="&#xF18A;"
423
- horiz-adv-x="512" d=" M234.6666666666667 320H277.3333333333333V170.6666666666667H234.6666666666667V320M192 21.3333333333334C192 9.6 182.4 0 170.6666666666667 0H106.6666666666667C94.9333333333333 0 85.3333333333333 9.6 85.3333333333333 21.3333333333334V128L128 320H213.3333333333333V170.6666666666667C213.3333333333333 158.9333333333333 203.7333333333334 149.3333333333334 192 149.3333333333334V21.3333333333334M213.3333333333333 341.3333333333334H149.3333333333333V384H213.3333333333333V341.3333333333334M320 21.3333333333334V149.3333333333334C308.2666666666667 149.3333333333334 298.6666666666667 158.9333333333333 298.6666666666667 170.6666666666667V320H384L426.6666666666667 128V21.3333333333334C426.6666666666667 9.6 417.0666666666667 0 405.3333333333333 0H341.3333333333333C329.6 0 320 9.6 320 21.3333333333334M298.6666666666667 341.3333333333334V384H362.6666666666667V341.3333333333334H298.6666666666667z" />
424
- <glyph glyph-name="bio"
425
- unicode="&#xF18B;"
426
- horiz-adv-x="512" d=" M362.6666666666667 192H426.6666666666667C450.1333333333334 192 469.3333333333333 172.8 469.3333333333333 149.3333333333334V85.3333333333334C469.3333333333333 61.8666666666667 450.1333333333334 42.6666666666667 426.6666666666667 42.6666666666667H362.6666666666667C339.2 42.6666666666667 320 61.8666666666667 320 85.3333333333334V149.3333333333334C320 172.8 339.2 192 362.6666666666667 192M362.6666666666667 149.3333333333334V85.3333333333334H426.6666666666667V149.3333333333334H362.6666666666667M42.6666666666667 298.6666666666667H149.3333333333333C172.8 298.6666666666667 192 279.4666666666667 192 256V213.3333333333334C192 189.8666666666667 172.8 170.6666666666667 149.3333333333333 170.6666666666667C172.8 170.6666666666667 192 151.4666666666667 192 128V85.3333333333334C192 61.8666666666667 172.8 42.6666666666667 149.3333333333333 42.6666666666667H42.6666666666667V298.6666666666667M85.3333333333333 256V192H149.3333333333333V256H85.3333333333333M85.3333333333333 85.3333333333334H149.3333333333333V149.3333333333334H85.3333333333333V85.3333333333334M234.6666666666667 170.6666666666667H277.3333333333333V42.6666666666667H234.6666666666667V170.6666666666667M234.6666666666667 256H277.3333333333333V213.3333333333334H234.6666666666667V256z" />
427
- <glyph glyph-name="biohazard"
428
- unicode="&#xF18C;"
429
- horiz-adv-x="512" d=" M490.6666666666666 105.3866666666667C490.6666666666666 100.48 490.6666666666666 96 489.8133333333333 91.7333333333334C485.9733333333334 146.3466666666667 440.32 189.6533333333334 384 189.6533333333334C376.1066666666667 189.6533333333334 368.4266666666666 188.5866666666667 360.9600000000001 187.0933333333334C361.8133333333334 181.3333333333334 362.6666666666667 176.4266666666667 362.6666666666667 170.6666666666668C362.6666666666667 120.5333333333334 326.6133333333334 78.5066666666667 278.8266666666667 68.0533333333334C286.2933333333333 20.2666666666668 326.6133333333334 -16.8533333333333 376.5333333333333 -20.48C371.84 -21.3333333333333 367.36 -21.3333333333333 362.6666666666667 -21.3333333333333C318.2933333333333 -21.3333333333333 278.8266666666667 1.28 256 35.4133333333334C233.1733333333333 1.28 193.92 -21.3333333333333 149.3333333333333 -21.3333333333333C144.64 -21.3333333333333 140.16 -21.3333333333333 135.4666666666667 -20.48C185.3866666666667 -16.8533333333333 225.4933333333334 20.0533333333333 233.1733333333333 68.0533333333333C185.1733333333333 78.5066666666667 149.3333333333333 120.5333333333334 149.3333333333333 170.6666666666667C149.3333333333333 176.4266666666667 150.1866666666667 181.3333333333334 150.8266666666667 187.0933333333334C143.5733333333333 188.5866666666667 135.8933333333333 189.6533333333333 128 189.6533333333333C71.68 189.6533333333333 26.0266666666667 146.3466666666667 21.9733333333333 91.7333333333333C21.3333333333333 95.9999999999999 21.3333333333333 100.48 21.3333333333333 105.3866666666667C21.3333333333333 173.8666666666667 76.5866666666667 229.5466666666666 145.28 231.68C134.4 250.24 128 272 128 295.04C128 342.6133333333334 154.24 384 193.28 405.3333333333333C166.6133333333333 386.1333333333334 149.3333333333333 355.4133333333334 149.3333333333333 320C149.3333333333333 291.2000000000001 161.28 264.7466666666667 180.6933333333333 245.3333333333334C200.1066666666667 264.7466666666667 226.56 276.48 256 276.48C285.2266666666667 276.48 311.8933333333333 264.7466666666667 330.6666666666667 245.3333333333334C350.5066666666667 264.7466666666667 362.6666666666667 291.2000000000001 362.6666666666667 320C362.6666666666667 355.4133333333334 345.1733333333333 386.1333333333334 318.72 405.3333333333333C357.76 384 384 342.6133333333334 384 295.04C384 272 377.6 250.24 366.7200000000001 231.68C435.6266666666667 229.5466666666667 490.6666666666666 173.8666666666667 490.6666666666666 105.3866666666667M197.76 232.32C214.4 221.44 234.6666666666667 215.04 256 215.04S297.6 221.44 314.24 232.32C298.6666666666667 246.4000000000001 278.6133333333334 255.36 256 255.36S213.3333333333333 246.4000000000001 197.76 232.32M256 139.3066666666667C273.4933333333334 139.3066666666667 288 153.6 288 170.6666666666667C288 188.3733333333333 273.7066666666667 202.6666666666667 256 202.6666666666667S224 188.3733333333333 224 170.6666666666667C224 153.6 238.2933333333333 139.3066666666667 256 139.3066666666667M234.0266666666667 89.8133333333334C231.8933333333334 130.1333333333334 207.1466666666667 164.48 171.7333333333334 180.2666666666667C171.3066666666667 177.0666666666667 170.6666666666667 174.0800000000001 170.6666666666667 170.6666666666668C170.6666666666667 131.84 197.76 99.4133333333334 234.0266666666667 89.8133333333334M340.48 180.2666666666667C304.8533333333334 164.48 279.8933333333333 130.1333333333334 277.3333333333333 89.8133333333334C314.24 99.4133333333334 341.3333333333333 131.84 341.3333333333333 170.6666666666667C341.3333333333333 174.0800000000001 340.6933333333334 177.0666666666667 340.48 180.2666666666667z" />
430
- <glyph glyph-name="bitbucket"
431
- unicode="&#xF18D;"
432
- horiz-adv-x="512" d=" M256 325.12C321.28 324.9066666666667 374.4 336.2133333333334 374.4 350.0800000000001C374.4 363.9466666666667 321.4933333333334 375.2533333333334 256 375.4666666666667C190.72 375.4666666666667 137.6 364.3733333333334 137.6 350.5066666666667C137.6 336.4266666666667 190.5066666666667 325.12 256 325.12M256 140.8C288 140.8 314.6666666666667 167.2533333333333 314.6666666666667 199.68C314.6666666666667 232.1066666666667 288.4266666666666 258.3466666666667 256 258.3466666666667C224 258.3466666666667 197.3333333333333 232.1066666666667 197.3333333333333 199.68S224 140.8 256 140.8M256 405.3333333333333C357.76 405.3333333333333 440.7466666666667 378.0266666666667 440.7466666666667 344.1066666666667C440.7466666666667 335.1466666666667 418.56 206.72 409.8133333333334 155.9466666666667C405.9733333333334 133.12 346.88 99.6266666666667 256 99.6266666666667V100.0533333333333V99.6266666666667C165.12 99.6266666666667 106.0266666666667 133.12 102.1866666666667 155.9466666666667C93.44 206.72 71.2533333333333 335.1466666666667 71.2533333333333 344.1066666666667C71.2533333333333 378.0266666666667 154.24 405.3333333333333 256 405.3333333333333M388.9066666666667 104.96C392.1066666666667 104.96 395.3066666666667 102.6133333333334 395.3066666666667 97.7066666666667V96.0000000000001L382.08 27.5200000000001C375.8933333333333 0 321.4933333333334 -21.3333333333333 256 -21.3333333333333C190.5066666666667 -21.3333333333333 136.1066666666667 0 129.92 27.52L116.6933333333333 96V97.7066666666667C116.6933333333333 102.6133333333334 119.8933333333333 104.96 123.0933333333333 104.96C126.08 104.96 128 103.04 128 103.04S173.6533333333333 66.9866666666666 256 66.9866666666666S384 103.04 384 103.04S385.92 104.96 388.9066666666667 104.96M285.44 199.68C285.44 183.4666666666667 272.2133333333334 170.6666666666667 256 170.6666666666667C239.7866666666667 170.6666666666667 226.56 183.4666666666667 226.56 199.68C226.56 215.8933333333333 239.7866666666667 229.12 256 229.12C272.2133333333333 229.12 285.44 215.8933333333333 285.44 199.68z" />
433
- <glyph glyph-name="black-mesa"
434
- unicode="&#xF18E;"
435
- horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192C85.3333333333333 141.0133333333333 107.7333333333333 95.36 143.1466666666667 64H192V192H362.6666666666667L408.5333333333333 115.4133333333334C420.0533333333333 138.6666666666667 426.6666666666667 164.48 426.6666666666667 192C426.6666666666667 286.2933333333334 350.2933333333334 362.6666666666667 256 362.6666666666667z" />
436
- <glyph glyph-name="blackberry"
437
- unicode="&#xF18F;"
438
- horiz-adv-x="512" d=" M116.2666666666667 228.6933333333334C136.5333333333333 228.6933333333334 160 212.2666666666667 160 192S136.5333333333333 155.3066666666667 116.2666666666667 155.3066666666667H42.6666666666667L57.3866666666667 228.6933333333334H116.2666666666667M130.9866666666666 346.4533333333333C151.2533333333333 346.4533333333333 175.1466666666667 330.0266666666667 175.1466666666667 309.3333333333333C175.1466666666667 289.4933333333334 151.2533333333333 272.8533333333334 130.9866666666666 272.8533333333334H57.3866666666667L72.1066666666667 346.4533333333333H130.9866666666667M277.9733333333333 346.4533333333333C298.6666666666667 346.4533333333333 322.1333333333334 330.0266666666667 322.1333333333334 309.3333333333333C322.1333333333334 289.4933333333334 298.6666666666667 272.8533333333334 277.9733333333333 272.8533333333334H200.7466666666667L215.4666666666667 346.4533333333333H277.9733333333333M263.2533333333334 228.6933333333334C283.7333333333334 228.6933333333334 307.4133333333333 212.2666666666667 307.4133333333333 192S283.7333333333334 155.3066666666666 263.2533333333334 155.3066666666666H186.0266666666667L200.7466666666667 228.6933333333333H263.2533333333334M234.0266666666667 111.1466666666667C254.2933333333333 111.1466666666667 277.9733333333333 94.5066666666666 277.9733333333333 74.6666666666666C277.9733333333333 53.9733333333333 254.2933333333333 37.5466666666666 234.0266666666667 37.5466666666666H160L175.1466666666667 111.1466666666667H234.0266666666667M395.7333333333334 155.3066666666666C416 155.3066666666666 439.8933333333333 138.6666666666666 439.8933333333333 118.4S416 81.7066666666667 395.7333333333334 81.7066666666667H322.1333333333334L336.8533333333333 155.3066666666666H395.7333333333333M425.1733333333333 272.8533333333333C445.4399999999999 272.8533333333333 469.3333333333333 256 469.3333333333333 236.16C469.3333333333333 215.8933333333333 445.4399999999999 199.2533333333333 425.1733333333333 199.2533333333333H352L366.2933333333334 272.8533333333333H425.1733333333333z" />
439
- <glyph glyph-name="blinds"
440
- unicode="&#xF190;"
441
- horiz-adv-x="512" d=" M64 405.3333333333333H448C459.7333333333333 405.3333333333333 469.3333333333333 395.7333333333334 469.3333333333333 384V341.3333333333334C469.3333333333333 329.6 459.7333333333333 320 448 320H426.6666666666667V170.6666666666667C426.6666666666667 158.9333333333333 417.0666666666667 149.3333333333334 405.3333333333333 149.3333333333334H277.3333333333333V103.04C302.2933333333333 94.2933333333333 320 70.6133333333334 320 42.6666666666667C320 7.2533333333333 291.4133333333333 -21.3333333333333 256 -21.3333333333333S192 7.2533333333333 192 42.6666666666667C192 70.6133333333334 209.7066666666667 94.2933333333334 234.6666666666667 103.04V149.3333333333334H106.6666666666667C94.9333333333333 149.3333333333334 85.3333333333333 158.9333333333333 85.3333333333333 170.6666666666667V320H64C52.2666666666667 320 42.6666666666667 329.6 42.6666666666667 341.3333333333334V384C42.6666666666667 395.7333333333334 52.2666666666667 405.3333333333333 64 405.3333333333333M256 64C244.2666666666667 64 234.6666666666667 54.4 234.6666666666667 42.6666666666667S244.2666666666667 21.3333333333334 256 21.3333333333334S277.3333333333333 30.9333333333333 277.3333333333333 42.6666666666667S267.7333333333334 64 256 64z" />
442
- <glyph glyph-name="block-helper"
443
- unicode="&#xF191;"
444
- horiz-adv-x="512" d=" M256 448C397.44 448 512 333.44 512 192S397.44 -64 256 -64S0 50.5600000000001 0 192S114.56 448 256 448M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192C42.6666666666667 140.8 60.8 93.8666666666667 90.88 56.96L391.04 357.12C354.1333333333334 387.2 307.2 405.3333333333333 256 405.3333333333333M256 -21.3333333333333C373.76 -21.3333333333333 469.3333333333333 74.24 469.3333333333333 192C469.3333333333333 243.2 451.1999999999999 290.1333333333334 421.12 327.04L120.96 26.8800000000001C157.8666666666667 -3.1999999999999 204.8 -21.3333333333333 256 -21.3333333333333z" />
445
- <glyph glyph-name="blogger"
446
- unicode="&#xF192;"
447
- horiz-adv-x="512" d=" M298.6666666666667 170.6666666666667H212.2666666666667C200.5333333333333 170.6666666666667 190.9333333333333 161.0666666666667 190.9333333333333 149.3333333333334S200.5333333333333 128 212.2666666666667 128H298.6666666666667C310.4 128 320 137.6 320 149.3333333333334S310.4 170.6666666666667 298.6666666666667 170.6666666666667M212.2666666666667 234.6666666666667H267.7333333333333C279.4666666666667 234.6666666666667 289.0666666666666 244.2666666666667 289.0666666666666 256S279.4666666666667 277.3333333333334 267.7333333333333 277.3333333333334H212.2666666666667C200.5333333333333 277.3333333333334 190.9333333333333 267.7333333333334 190.9333333333333 256S200.5333333333333 234.6666666666667 212.2666666666667 234.6666666666667M341.3333333333333 256V234.6666666666667C341.3333333333333 222.9333333333333 350.9333333333333 213.3333333333334 362.6666666666667 213.3333333333334S384 203.7333333333334 384 192V128C384 92.5866666666667 355.4133333333333 64 320 64H192C156.5866666666667 64 128 92.5866666666667 128 128V277.3333333333334C128 312.7466666666667 156.5866666666667 341.3333333333334 192 341.3333333333334H277.3333333333333C312.7466666666667 341.3333333333334 341.3333333333333 312.7466666666667 341.3333333333333 277.3333333333334M426.6666666666667 405.3333333333333H85.3333333333333C61.6533333333333 405.3333333333333 42.6666666666667 386.3466666666667 42.6666666666667 362.6666666666667V21.3333333333334C42.6666666666667 -2.1333333333333 61.8666666666667 -21.3333333333333 85.3333333333333 -21.3333333333333H426.6666666666667C450.1333333333334 -21.3333333333333 469.3333333333333 -2.1333333333333 469.3333333333333 21.3333333333334V362.6666666666667C469.3333333333333 386.3466666666667 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333z" />
448
- <glyph glyph-name="bluetooth"
449
- unicode="&#xF193;"
450
- horiz-adv-x="512" d=" M317.44 100.48L277.3333333333333 60.3733333333333V140.5866666666667M277.3333333333333 323.6266666666667L317.44 283.52L277.3333333333333 243.6266666666667M377.8133333333334 283.52L256 405.3333333333333H234.6666666666667V243.6266666666667L136.7466666666667 341.3333333333334L106.6666666666667 311.2533333333334L225.92 192L106.6666666666667 72.96L136.7466666666667 42.6666666666667L234.6666666666667 140.5866666666667V-21.3333333333333H256L377.8133333333334 100.48L286.08 192L377.8133333333334 283.52z" />
451
- <glyph glyph-name="bluetooth-audio"
452
- unicode="&#xF194;"
453
- horiz-adv-x="512" d=" M274.7733333333333 100.48L234.6666666666667 60.3733333333333V140.5866666666667M234.6666666666667 323.6266666666667L274.7733333333333 283.52L234.6666666666667 243.6266666666667M335.1466666666667 283.52L213.3333333333333 405.3333333333333H192V243.6266666666667L94.08 341.3333333333334L64 311.2533333333334L183.2533333333333 192L64 72.96L94.08 42.6666666666667L192 140.5866666666667V-21.3333333333333H213.3333333333333L335.1466666666667 100.48L243.4133333333334 192M416.64 304.8533333333334L389.5466666666667 277.3333333333334C402.9866666666667 252.1600000000001 410.6666666666667 222.9333333333333 410.6666666666667 192C410.6666666666667 161.0666666666667 402.9866666666667 131.84 389.5466666666667 106.6666666666667L415.1466666666667 80.64C435.84 113.4933333333334 448 152.1066666666667 448 193.92C448 234.6666666666667 436.48 272.4266666666667 416.64 304.8533333333334M303.7866666666667 192L353.28 142.2933333333334C359.2533333333334 157.8666666666667 362.6666666666667 174.5066666666667 362.6666666666667 192C362.6666666666667 209.4933333333334 359.2533333333334 226.1333333333334 353.4933333333334 241.4933333333334L303.7866666666667 192z" />
454
- <glyph glyph-name="bluetooth-connect"
455
- unicode="&#xF195;"
456
- horiz-adv-x="512" d=" M405.3333333333333 234.6666666666667L362.6666666666667 192L405.3333333333333 149.3333333333334L448 192M317.44 100.48L277.3333333333333 60.3733333333333V140.5866666666667M277.3333333333333 323.6266666666667L317.44 283.52L277.3333333333333 243.6266666666667M377.8133333333334 283.52L256 405.3333333333333H234.6666666666667V243.6266666666667L136.7466666666667 341.3333333333334L106.6666666666667 311.2533333333334L225.92 192L106.6666666666667 72.96L136.7466666666667 42.6666666666667L234.6666666666667 140.5866666666667V-21.3333333333333H256L377.8133333333334 100.48L286.08 192M149.3333333333333 192L106.6666666666667 234.6666666666667L64 192L106.6666666666667 149.3333333333334L149.3333333333333 192z" />
457
- <glyph glyph-name="bluetooth-settings"
458
- unicode="&#xF196;"
459
- horiz-adv-x="512" d=" M317.44 143.1466666666667L277.3333333333333 103.04V183.2533333333333L317.44 143.1466666666667M277.3333333333333 366.2933333333334L317.44 326.1866666666667L277.3333333333333 286.0800000000001M377.8133333333334 326.1866666666667L256 448H234.6666666666667V286.0800000000001L136.7466666666667 384L106.6666666666667 353.92L225.92 234.6666666666667L106.6666666666667 115.4133333333334L136.7466666666667 85.3333333333334L234.6666666666667 183.2533333333333V21.3333333333334H256L377.8133333333334 143.1466666666667L286.08 234.6666666666667L377.8133333333334 326.1866666666667M320 -64H362.6666666666667V-21.3333333333333H320M149.3333333333333 -64H192V-21.3333333333333H149.3333333333333M234.6666666666667 -64H277.3333333333333V-21.3333333333333H234.6666666666667V-64z" />
460
- <glyph glyph-name="bluetooth-transfer"
461
- unicode="&#xF197;"
462
- horiz-adv-x="512" d=" M313.8133333333334 283.52L222.08 192L313.8133333333334 100.48L192 -21.3333333333333H170.6666666666667V140.5866666666667L72.7466666666667 42.6666666666667L42.6666666666667 72.7466666666667L161.92 192L42.6666666666667 311.2533333333334L72.7466666666667 341.3333333333334L170.6666666666667 243.4133333333334V405.3333333333333H192L313.8133333333334 283.52M213.3333333333333 323.6266666666667V243.4133333333334L253.44 283.52L213.3333333333333 323.6266666666667M253.44 100.48L213.3333333333333 140.5866666666667V60.3733333333333L253.44 100.48M469.3333333333333 277.3333333333334H426.6666666666667V213.3333333333334H384V277.3333333333334H341.3333333333333L405.3333333333333 362.6666666666667L469.3333333333333 277.3333333333334M469.3333333333333 106.6666666666667L405.3333333333333 21.3333333333334L341.3333333333333 106.6666666666667H384V170.6666666666667H426.6666666666667V106.6666666666667H469.3333333333333z" />
463
- <glyph glyph-name="blur"
464
- unicode="&#xF198;"
465
- horiz-adv-x="512" d=" M298.6666666666667 266.6666666666667C280.96 266.6666666666667 266.6666666666667 252.3733333333334 266.6666666666667 234.6666666666667S280.96 202.6666666666667 298.6666666666667 202.6666666666667S330.6666666666667 216.96 330.6666666666667 234.6666666666667S316.3733333333334 266.6666666666667 298.6666666666667 266.6666666666667M298.6666666666667 181.3333333333334C280.96 181.3333333333334 266.6666666666667 167.04 266.6666666666667 149.3333333333334S280.96 117.3333333333334 298.6666666666667 117.3333333333334S330.6666666666667 131.6266666666667 330.6666666666667 149.3333333333334S316.3733333333334 181.3333333333334 298.6666666666667 181.3333333333334M213.3333333333333 85.3333333333334C201.6 85.3333333333334 192 75.7333333333334 192 64S201.6 42.6666666666667 213.3333333333333 42.6666666666667S234.6666666666667 52.2666666666667 234.6666666666667 64S225.0666666666667 85.3333333333334 213.3333333333333 85.3333333333334M213.3333333333333 266.6666666666667C195.6266666666667 266.6666666666667 181.3333333333333 252.3733333333334 181.3333333333333 234.6666666666667S195.6266666666667 202.6666666666667 213.3333333333333 202.6666666666667S245.3333333333333 216.96 245.3333333333333 234.6666666666667S231.04 266.6666666666667 213.3333333333333 266.6666666666667M298.6666666666667 10.6666666666667C292.6933333333334 10.6666666666667 288 5.9733333333334 288 0S292.6933333333334 -10.6666666666666 298.6666666666667 -10.6666666666666S309.3333333333333 -5.9733333333334 309.3333333333333 0S304.64 10.6666666666667 298.6666666666667 10.6666666666667M298.6666666666667 85.3333333333334C286.9333333333333 85.3333333333334 277.3333333333333 75.7333333333334 277.3333333333333 64S286.9333333333333 42.6666666666667 298.6666666666667 42.6666666666667S320 52.2666666666667 320 64S310.4 85.3333333333334 298.6666666666667 85.3333333333334M448 160C442.0266666666667 160 437.3333333333333 155.3066666666667 437.3333333333333 149.3333333333334S442.0266666666667 138.6666666666667 448 138.6666666666667S458.6666666666666 143.36 458.6666666666666 149.3333333333334S453.9733333333334 160 448 160M384 341.3333333333334C372.2666666666667 341.3333333333334 362.6666666666667 331.7333333333334 362.6666666666667 320S372.2666666666667 298.6666666666667 384 298.6666666666667S405.3333333333333 308.2666666666667 405.3333333333333 320S395.7333333333334 341.3333333333334 384 341.3333333333334M384 256C372.2666666666667 256 362.6666666666667 246.4000000000001 362.6666666666667 234.6666666666667S372.2666666666667 213.3333333333334 384 213.3333333333334S405.3333333333333 222.9333333333333 405.3333333333333 234.6666666666667S395.7333333333334 256 384 256M384 85.3333333333334C372.2666666666667 85.3333333333334 362.6666666666667 75.7333333333334 362.6666666666667 64S372.2666666666667 42.6666666666667 384 42.6666666666667S405.3333333333333 52.2666666666667 405.3333333333333 64S395.7333333333334 85.3333333333334 384 85.3333333333334M384 170.6666666666667C372.2666666666667 170.6666666666667 362.6666666666667 161.0666666666667 362.6666666666667 149.3333333333334S372.2666666666667 128 384 128S405.3333333333333 137.6 405.3333333333333 149.3333333333334S395.7333333333334 170.6666666666667 384 170.6666666666667M213.3333333333333 181.3333333333334C195.6266666666667 181.3333333333334 181.3333333333333 167.04 181.3333333333333 149.3333333333334S195.6266666666667 117.3333333333334 213.3333333333333 117.3333333333334S245.3333333333333 131.6266666666667 245.3333333333333 149.3333333333334S231.04 181.3333333333334 213.3333333333333 181.3333333333334M213.3333333333333 298.6666666666667C225.0666666666667 298.6666666666667 234.6666666666667 308.2666666666667 234.6666666666667 320S225.0666666666667 341.3333333333334 213.3333333333333 341.3333333333334S192 331.7333333333334 192 320S201.6 298.6666666666667 213.3333333333333 298.6666666666667M213.3333333333333 373.3333333333334C219.3066666666667 373.3333333333334 224 378.0266666666667 224 384S219.3066666666667 394.6666666666667 213.3333333333333 394.6666666666667S202.6666666666667 389.9733333333334 202.6666666666667 384S207.36 373.3333333333334 213.3333333333333 373.3333333333334M213.3333333333333 10.6666666666667C207.36 10.6666666666667 202.6666666666667 5.9733333333334 202.6666666666667 0S207.36 -10.6666666666666 213.3333333333333 -10.6666666666666S224 -5.9733333333334 224 0S219.3066666666667 10.6666666666667 213.3333333333333 10.6666666666667M64 160C58.0266666666667 160 53.3333333333333 155.3066666666667 53.3333333333333 149.3333333333334S58.0266666666667 138.6666666666667 64 138.6666666666667S74.6666666666667 143.36 74.6666666666667 149.3333333333334S69.9733333333333 160 64 160M298.6666666666667 373.3333333333334C304.64 373.3333333333334 309.3333333333333 378.0266666666667 309.3333333333333 384S304.64 394.6666666666667 298.6666666666667 394.6666666666667S288 389.9733333333334 288 384S292.6933333333334 373.3333333333334 298.6666666666667 373.3333333333334M298.6666666666667 298.6666666666667C310.4 298.6666666666667 320 308.2666666666667 320 320S310.4 341.3333333333334 298.6666666666667 341.3333333333334S277.3333333333333 331.7333333333334 277.3333333333333 320S286.9333333333333 298.6666666666667 298.6666666666667 298.6666666666667M448 224C453.9733333333334 224 458.6666666666666 228.6933333333334 458.6666666666666 234.6666666666667S453.9733333333334 245.3333333333334 448 245.3333333333334S437.3333333333333 240.64 437.3333333333333 234.6666666666667S442.0266666666667 224 448 224M128 341.3333333333334C116.2666666666667 341.3333333333334 106.6666666666667 331.7333333333334 106.6666666666667 320S116.2666666666667 298.6666666666667 128 298.6666666666667S149.3333333333333 308.2666666666667 149.3333333333333 320S139.7333333333333 341.3333333333334 128 341.3333333333334M64 245.3333333333334C58.0266666666667 245.3333333333334 53.3333333333333 240.64 53.3333333333333 234.6666666666667S58.0266666666667 224 64 224S74.6666666666667 228.6933333333334 74.6666666666667 234.6666666666667S69.9733333333333 245.3333333333334 64 245.3333333333334M128 256C116.2666666666667 256 106.6666666666667 246.4000000000001 106.6666666666667 234.6666666666667S116.2666666666667 213.3333333333334 128 213.3333333333334S149.3333333333333 222.9333333333333 149.3333333333333 234.6666666666667S139.7333333333333 256 128 256M128 85.3333333333334C116.2666666666667 85.3333333333334 106.6666666666667 75.7333333333334 106.6666666666667 64S116.2666666666667 42.6666666666667 128 42.6666666666667S149.3333333333333 52.2666666666667 149.3333333333333 64S139.7333333333333 85.3333333333334 128 85.3333333333334M128 170.6666666666667C116.2666666666667 170.6666666666667 106.6666666666667 161.0666666666667 106.6666666666667 149.3333333333334S116.2666666666667 128 128 128S149.3333333333333 137.6 149.3333333333333 149.3333333333334S139.7333333333333 170.6666666666667 128 170.6666666666667z" />
466
- <glyph glyph-name="blur-linear"
467
- unicode="&#xF199;"
468
- horiz-adv-x="512" d=" M277.3333333333333 85.3333333333334C289.0666666666667 85.3333333333334 298.6666666666667 94.9333333333333 298.6666666666667 106.6666666666667S289.0666666666667 128 277.3333333333333 128S256 118.4 256 106.6666666666667S265.6 85.3333333333334 277.3333333333333 85.3333333333334M277.3333333333333 170.6666666666667C289.0666666666667 170.6666666666667 298.6666666666667 180.2666666666667 298.6666666666667 192S289.0666666666667 213.3333333333334 277.3333333333333 213.3333333333334S256 203.7333333333334 256 192S265.6 170.6666666666667 277.3333333333333 170.6666666666667M277.3333333333333 256C289.0666666666667 256 298.6666666666667 265.6 298.6666666666667 277.3333333333334S289.0666666666667 298.6666666666667 277.3333333333333 298.6666666666667S256 289.0666666666667 256 277.3333333333334S265.6 256 277.3333333333333 256M362.6666666666667 181.3333333333334C368.64 181.3333333333334 373.3333333333333 186.0266666666667 373.3333333333333 192S368.64 202.6666666666667 362.6666666666667 202.6666666666667S352 197.9733333333333 352 192S356.6933333333333 181.3333333333334 362.6666666666667 181.3333333333334M362.6666666666667 266.6666666666667C368.64 266.6666666666667 373.3333333333333 271.36 373.3333333333333 277.3333333333334S368.64 288 362.6666666666667 288S352 283.3066666666667 352 277.3333333333334S356.6933333333333 266.6666666666667 362.6666666666667 266.6666666666667M64 384V341.3333333333334H448V384M362.6666666666667 96C368.64 96 373.3333333333333 100.6933333333333 373.3333333333333 106.6666666666667S368.64 117.3333333333334 362.6666666666667 117.3333333333334S352 112.64 352 106.6666666666667S356.6933333333333 96 362.6666666666667 96M192 85.3333333333334C203.7333333333334 85.3333333333334 213.3333333333333 94.9333333333333 213.3333333333333 106.6666666666667S203.7333333333334 128 192 128S170.6666666666667 118.4 170.6666666666667 106.6666666666667S180.2666666666667 85.3333333333334 192 85.3333333333334M106.6666666666667 160C124.3733333333333 160 138.6666666666667 174.2933333333334 138.6666666666667 192S124.3733333333333 224 106.6666666666667 224S74.6666666666667 209.7066666666667 74.6666666666667 192S88.96 160 106.6666666666667 160M106.6666666666667 245.3333333333334C124.3733333333333 245.3333333333334 138.6666666666667 259.6266666666667 138.6666666666667 277.3333333333334S124.3733333333333 309.3333333333334 106.6666666666667 309.3333333333334S74.6666666666667 295.04 74.6666666666667 277.3333333333334S88.96 245.3333333333334 106.6666666666667 245.3333333333334M64 0H448V42.6666666666667H64M192 256C203.7333333333334 256 213.3333333333333 265.6 213.3333333333333 277.3333333333334S203.7333333333334 298.6666666666667 192 298.6666666666667S170.6666666666667 289.0666666666667 170.6666666666667 277.3333333333334S180.2666666666667 256 192 256M192 170.6666666666667C203.7333333333334 170.6666666666667 213.3333333333333 180.2666666666667 213.3333333333333 192S203.7333333333334 213.3333333333334 192 213.3333333333334S170.6666666666667 203.7333333333334 170.6666666666667 192S180.2666666666667 170.6666666666667 192 170.6666666666667M106.6666666666667 74.6666666666667C124.3733333333333 74.6666666666667 138.6666666666667 88.96 138.6666666666667 106.6666666666667S124.3733333333333 138.6666666666667 106.6666666666667 138.6666666666667S74.6666666666667 124.3733333333333 74.6666666666667 106.6666666666667S88.96 74.6666666666667 106.6666666666667 74.6666666666667z" />
469
- <glyph glyph-name="blur-off"
470
- unicode="&#xF19A;"
471
- horiz-adv-x="512" d=" M64 160C58.0266666666667 160 53.3333333333333 155.3066666666667 53.3333333333333 149.3333333333334S58.0266666666667 138.6666666666667 64 138.6666666666667S74.6666666666667 143.36 74.6666666666667 149.3333333333334S69.9733333333333 160 64 160M128 85.3333333333334C116.2666666666667 85.3333333333334 106.6666666666667 75.7333333333334 106.6666666666667 64S116.2666666666667 42.6666666666667 128 42.6666666666667S149.3333333333333 52.2666666666667 149.3333333333333 64S139.7333333333333 85.3333333333334 128 85.3333333333334M213.3333333333333 10.6666666666667C207.36 10.6666666666667 202.6666666666667 5.9733333333334 202.6666666666667 0S207.36 -10.6666666666666 213.3333333333333 -10.6666666666666S224 -5.9733333333334 224 0S219.3066666666667 10.6666666666667 213.3333333333333 10.6666666666667M64 245.3333333333334C58.0266666666667 245.3333333333334 53.3333333333333 240.64 53.3333333333333 234.6666666666667S58.0266666666667 224 64 224S74.6666666666667 228.6933333333334 74.6666666666667 234.6666666666667S69.9733333333333 245.3333333333334 64 245.3333333333334M128 170.6666666666667C116.2666666666667 170.6666666666667 106.6666666666667 161.0666666666667 106.6666666666667 149.3333333333334S116.2666666666667 128 128 128S149.3333333333333 137.6 149.3333333333333 149.3333333333334S139.7333333333333 170.6666666666667 128 170.6666666666667M448 160C442.0266666666667 160 437.3333333333333 155.3066666666667 437.3333333333333 149.3333333333334S442.0266666666667 138.6666666666667 448 138.6666666666667S458.6666666666666 143.36 458.6666666666666 149.3333333333334S453.9733333333334 160 448 160M213.3333333333333 85.3333333333334C201.6 85.3333333333334 192 75.7333333333334 192 64S201.6 42.6666666666667 213.3333333333333 42.6666666666667S234.6666666666667 52.2666666666667 234.6666666666667 64S225.0666666666667 85.3333333333334 213.3333333333333 85.3333333333334M53.3333333333333 335.5733333333334L133.9733333333333 254.9333333333334L128 256C116.2666666666667 256 106.6666666666667 246.4000000000001 106.6666666666667 234.6666666666667S116.2666666666667 213.3333333333334 128 213.3333333333334S149.3333333333333 222.9333333333333 149.3333333333333 234.6666666666667C149.3333333333333 236.8 148.6933333333333 238.72 148.0533333333334 240.64L208 180.6933333333333C192.8533333333333 178.3466666666667 181.3333333333333 165.12 181.3333333333333 149.3333333333333C181.3333333333333 131.6266666666667 195.6266666666667 117.3333333333333 213.3333333333333 117.3333333333333C229.12 117.3333333333333 242.3466666666667 128.8533333333334 244.6933333333334 144L304.64 84.0533333333333C302.7200000000001 84.6933333333333 300.8 85.3333333333333 298.6666666666667 85.3333333333333C286.9333333333334 85.3333333333333 277.3333333333334 75.7333333333333 277.3333333333334 63.9999999999999S286.9333333333334 42.6666666666666 298.6666666666667 42.6666666666666S320 52.2666666666666 320 63.9999999999999C320 66.1333333333333 319.36 68.0533333333333 318.7200000000001 69.9733333333333L399.36 -10.6666666666667L426.6666666666667 16.4266666666667L80.4266666666667 362.6666666666667L53.3333333333333 335.5733333333334M298.6666666666667 10.6666666666667C292.6933333333334 10.6666666666667 288 5.9733333333334 288 0S292.6933333333334 -10.6666666666666 298.6666666666667 -10.6666666666666S309.3333333333333 -5.9733333333334 309.3333333333333 0S304.64 10.6666666666667 298.6666666666667 10.6666666666667M384 298.6666666666667C395.7333333333334 298.6666666666667 405.3333333333333 308.2666666666667 405.3333333333333 320S395.7333333333334 341.3333333333334 384 341.3333333333334S362.6666666666667 331.7333333333334 362.6666666666667 320S372.2666666666667 298.6666666666667 384 298.6666666666667M384 213.3333333333334C395.7333333333334 213.3333333333334 405.3333333333333 222.9333333333333 405.3333333333333 234.6666666666667S395.7333333333334 256 384 256S362.6666666666667 246.4000000000001 362.6666666666667 234.6666666666667S372.2666666666667 213.3333333333334 384 213.3333333333334M384 128C395.7333333333334 128 405.3333333333333 137.6 405.3333333333333 149.3333333333334S395.7333333333334 170.6666666666667 384 170.6666666666667S362.6666666666667 161.0666666666667 362.6666666666667 149.3333333333334S372.2666666666667 128 384 128M213.3333333333333 298.6666666666667C225.0666666666667 298.6666666666667 234.6666666666667 308.2666666666667 234.6666666666667 320S225.0666666666667 341.3333333333334 213.3333333333333 341.3333333333334S192 331.7333333333334 192 320S201.6 298.6666666666667 213.3333333333333 298.6666666666667M448 224C453.9733333333334 224 458.6666666666666 228.6933333333334 458.6666666666666 234.6666666666667S453.9733333333334 245.3333333333334 448 245.3333333333334S437.3333333333333 240.64 437.3333333333333 234.6666666666667S442.0266666666667 224 448 224M213.3333333333333 373.3333333333334C219.3066666666667 373.3333333333334 224 378.0266666666667 224 384S219.3066666666667 394.6666666666667 213.3333333333333 394.6666666666667S202.6666666666667 389.9733333333334 202.6666666666667 384S207.36 373.3333333333334 213.3333333333333 373.3333333333334M298.6666666666667 373.3333333333334C304.64 373.3333333333334 309.3333333333333 378.0266666666667 309.3333333333333 384S304.64 394.6666666666667 298.6666666666667 394.6666666666667S288 389.9733333333334 288 384S292.6933333333334 373.3333333333334 298.6666666666667 373.3333333333334M294.4 202.6666666666667H298.6666666666667C316.3733333333334 202.6666666666667 330.6666666666667 216.96 330.6666666666667 234.6666666666667S316.3733333333334 266.6666666666667 298.6666666666667 266.6666666666667S266.6666666666667 252.3733333333334 266.6666666666667 234.6666666666667V230.4000000000001C269.0133333333333 216.1066666666667 280.1066666666667 205.0133333333334 294.4 202.6666666666667M298.6666666666667 298.6666666666667C310.4 298.6666666666667 320 308.2666666666667 320 320S310.4 341.3333333333334 298.6666666666667 341.3333333333334S277.3333333333333 331.7333333333334 277.3333333333333 320S286.9333333333333 298.6666666666667 298.6666666666667 298.6666666666667z" />
472
- <glyph glyph-name="blur-radial"
473
- unicode="&#xF19B;"
474
- horiz-adv-x="512" d=" M298.6666666666667 170.6666666666667C286.9333333333333 170.6666666666667 277.3333333333333 161.0666666666667 277.3333333333333 149.3333333333334S286.9333333333333 128 298.6666666666667 128S320 137.6 320 149.3333333333334S310.4 170.6666666666667 298.6666666666667 170.6666666666667M298.6666666666667 96C292.6933333333334 96 288 91.3066666666667 288 85.3333333333334S292.6933333333334 74.6666666666667 298.6666666666667 74.6666666666667S309.3333333333333 79.36 309.3333333333333 85.3333333333334S304.64 96 298.6666666666667 96M256 21.3333333333334C161.7066666666667 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M362.6666666666667 245.3333333333334C356.6933333333333 245.3333333333334 352 240.64 352 234.6666666666667S356.6933333333333 224 362.6666666666667 224S373.3333333333333 228.6933333333334 373.3333333333333 234.6666666666667S368.64 245.3333333333334 362.6666666666667 245.3333333333334M362.6666666666667 160C356.6933333333333 160 352 155.3066666666667 352 149.3333333333334S356.6933333333333 138.6666666666667 362.6666666666667 138.6666666666667S373.3333333333333 143.36 373.3333333333333 149.3333333333334S368.64 160 362.6666666666667 160M298.6666666666667 288C304.64 288 309.3333333333333 292.6933333333334 309.3333333333333 298.6666666666667S304.64 309.3333333333334 298.6666666666667 309.3333333333334S288 304.64 288 298.6666666666667S292.6933333333334 288 298.6666666666667 288M298.6666666666667 256C286.9333333333333 256 277.3333333333333 246.4000000000001 277.3333333333333 234.6666666666667S286.9333333333333 213.3333333333334 298.6666666666667 213.3333333333334S320 222.9333333333333 320 234.6666666666667S310.4 256 298.6666666666667 256M213.3333333333333 288C219.3066666666667 288 224 292.6933333333334 224 298.6666666666667S219.3066666666667 309.3333333333334 213.3333333333333 309.3333333333334S202.6666666666667 304.64 202.6666666666667 298.6666666666667S207.36 288 213.3333333333333 288M149.3333333333333 160C143.36 160 138.6666666666667 155.3066666666667 138.6666666666667 149.3333333333334S143.36 138.6666666666667 149.3333333333333 138.6666666666667S160 143.36 160 149.3333333333334S155.3066666666667 160 149.3333333333333 160M213.3333333333333 96C207.36 96 202.6666666666667 91.3066666666667 202.6666666666667 85.3333333333334S207.36 74.6666666666667 213.3333333333333 74.6666666666667S224 79.36 224 85.3333333333334S219.3066666666667 96 213.3333333333333 96M149.3333333333333 245.3333333333334C143.36 245.3333333333334 138.6666666666667 240.64 138.6666666666667 234.6666666666667S143.36 224 149.3333333333333 224S160 228.6933333333334 160 234.6666666666667S155.3066666666667 245.3333333333334 149.3333333333333 245.3333333333334M213.3333333333333 170.6666666666667C201.6 170.6666666666667 192 161.0666666666667 192 149.3333333333334S201.6 128 213.3333333333333 128S234.6666666666667 137.6 234.6666666666667 149.3333333333334S225.0666666666667 170.6666666666667 213.3333333333333 170.6666666666667M213.3333333333333 256C201.6 256 192 246.4000000000001 192 234.6666666666667S201.6 213.3333333333334 213.3333333333333 213.3333333333334S234.6666666666667 222.9333333333333 234.6666666666667 234.6666666666667S225.0666666666667 256 213.3333333333333 256z" />
475
- <glyph glyph-name="bone"
476
- unicode="&#xF19C;"
477
- horiz-adv-x="512" d=" M170.6666666666667 149.3333333333334C170.6666666666667 113.92 142.08 85.3333333333334 106.6666666666667 85.3333333333334S42.6666666666667 113.92 42.6666666666667 149.3333333333334C42.6666666666667 165.76 48.8533333333333 180.6933333333334 58.88 192C48.8533333333333 203.3066666666667 42.6666666666667 218.24 42.6666666666667 234.6666666666667C42.6666666666667 270.0800000000001 71.2533333333333 298.6666666666667 106.6666666666667 298.6666666666667S170.6666666666667 270.0800000000001 170.6666666666667 234.6666666666667C199.04 232.96 227.6266666666667 231.04 256 231.04S312.96 232.96 341.3333333333333 234.6666666666667C341.3333333333333 270.0800000000001 369.92 298.6666666666667 405.3333333333333 298.6666666666667S469.3333333333333 270.0800000000001 469.3333333333333 234.6666666666667C469.3333333333333 218.24 463.1466666666666 203.3066666666667 453.1199999999999 192C463.1466666666666 180.6933333333334 469.3333333333333 165.76 469.3333333333333 149.3333333333334C469.3333333333333 113.92 440.7466666666667 85.3333333333334 405.3333333333333 85.3333333333334S341.3333333333333 113.92 341.3333333333333 149.3333333333334C312.96 151.04 284.3733333333334 152.96 256 152.96S199.04 151.04 170.6666666666667 149.3333333333334z" />
478
- <glyph glyph-name="book"
479
- unicode="&#xF19D;"
480
- horiz-adv-x="512" d=" M384 -21.3333333333333C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V362.6666666666667C426.6666666666667 386.3466666666667 407.4666666666667 405.3333333333333 384 405.3333333333333H256V256L202.6666666666667 288L149.3333333333333 256V405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384z" />
481
- <glyph glyph-name="book-multiple"
482
- unicode="&#xF19E;"
483
- horiz-adv-x="512" d=" M405.3333333333333 64H192C168.5333333333333 64 149.3333333333333 83.2 149.3333333333333 106.6666666666667V362.6666666666667C149.3333333333333 386.1333333333334 168.5333333333333 405.3333333333333 192 405.3333333333333H213.3333333333333V298.6666666666667L256 330.6666666666667L298.6666666666667 298.6666666666667V405.3333333333333H405.3333333333333C428.8 405.3333333333333 448 386.1333333333334 448 362.6666666666667V106.6666666666667C448 83.2 428.8 64 405.3333333333333 64M362.6666666666667 21.3333333333334V-21.3333333333333H106.6666666666667C83.2 -21.3333333333333 64 -2.1333333333333 64 21.3333333333334V320H106.6666666666667V21.3333333333334H362.6666666666667z" />
484
- <glyph glyph-name="book-multiple-variant"
485
- unicode="&#xF19F;"
486
- horiz-adv-x="512" d=" M405.3333333333333 64H192C168.5333333333333 64 149.3333333333333 83.2 149.3333333333333 106.6666666666667V362.6666666666667C149.3333333333333 386.1333333333334 168.5333333333333 405.3333333333333 192 405.3333333333333H405.3333333333333C428.8 405.3333333333333 448 386.1333333333334 448 362.6666666666667V106.6666666666667C448 83.2 428.8 64 405.3333333333333 64M213.3333333333333 256L256 288L298.6666666666667 256V362.6666666666667H213.3333333333333V256M362.6666666666667 21.3333333333334V-21.3333333333333H106.6666666666667C83.2 -21.3333333333333 64 -2.1333333333333 64 21.3333333333334V320H106.6666666666667V21.3333333333334H362.6666666666667z" />
487
- <glyph glyph-name="book-open"
488
- unicode="&#xF1A0;"
489
- horiz-adv-x="512" d=" M234.6666666666667 42.6666666666667V256C234.6666666666667 279.4666666666667 215.4666666666667 298.6666666666667 192 298.6666666666667H106.6666666666667V85.3333333333334H192C215.4666666666667 85.3333333333334 234.6666666666667 66.1333333333334 234.6666666666667 42.6666666666667M277.3333333333333 256V42.6666666666667C277.3333333333333 66.1333333333334 296.5333333333333 85.3333333333334 320 85.3333333333334H405.3333333333333V298.6666666666667H320C296.5333333333333 298.6666666666667 277.3333333333333 279.4666666666667 277.3333333333333 256M448 42.6666666666667H320C296.5333333333333 42.6666666666667 277.3333333333333 23.4666666666667 277.3333333333333 0H234.6666666666667C234.6666666666667 23.4666666666667 215.4666666666667 42.6666666666667 192 42.6666666666667H64V341.3333333333334H192C215.4666666666667 341.3333333333334 234.6666666666667 322.1333333333334 234.6666666666667 298.6666666666667H277.3333333333333C277.3333333333333 322.1333333333334 296.5333333333333 341.3333333333334 320 341.3333333333334H448V42.6666666666667z" />
490
- <glyph glyph-name="book-variant"
491
- unicode="&#xF1A1;"
492
- horiz-adv-x="512" d=" M128 362.6666666666667H234.6666666666667V192L181.3333333333333 224L128 192M384 405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V362.6666666666667C426.6666666666667 386.1333333333334 407.4666666666667 405.3333333333333 384 405.3333333333333z" />
493
- <glyph glyph-name="bookmark"
494
- unicode="&#xF1A2;"
495
- horiz-adv-x="512" d=" M362.6666666666667 384H149.3333333333333C125.8666666666667 384 106.6666666666667 364.8 106.6666666666667 341.3333333333334V0L256 64L405.3333333333333 0V341.3333333333334C405.3333333333333 365.0133333333333 386.1333333333334 384 362.6666666666667 384z" />
496
- <glyph glyph-name="bookmark-check"
497
- unicode="&#xF1A3;"
498
- horiz-adv-x="512" d=" M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V0L256 64L106.6666666666667 0V341.3333333333334C106.6666666666667 365.0133333333333 125.8666666666667 384 149.3333333333333 384H362.6666666666667M234.6666666666667 149.3333333333334L368 282.4533333333334L337.92 312.7466666666667L234.6666666666667 209.4933333333334L179.4133333333333 264.7466666666667L149.3333333333333 234.6666666666667L234.6666666666667 149.3333333333334z" />
499
- <glyph glyph-name="bookmark-music"
500
- unicode="&#xF1A4;"
501
- horiz-adv-x="512" d=" M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V0L256 64L106.6666666666667 0V341.3333333333334C106.6666666666667 365.0133333333333 125.8666666666667 384 149.3333333333333 384H362.6666666666667M234.6666666666667 213.3333333333334C211.2 213.3333333333334 192 194.1333333333333 192 170.6666666666667S211.2 128 234.6666666666667 128S277.3333333333333 147.2000000000001 277.3333333333333 170.6666666666667V277.3333333333334H341.3333333333333V320H256V207.5733333333334C249.8133333333334 211.2 242.3466666666667 213.3333333333334 234.6666666666667 213.3333333333334z" />
502
- <glyph glyph-name="bookmark-outline"
503
- unicode="&#xF1A5;"
504
- horiz-adv-x="512" d=" M362.6666666666667 64L256 110.5066666666667L149.3333333333333 64V341.3333333333334H362.6666666666667M362.6666666666667 384H149.3333333333333C125.8666666666667 384 106.6666666666667 364.8 106.6666666666667 341.3333333333334V0L256 64L405.3333333333333 0V341.3333333333334C405.3333333333333 365.0133333333333 386.1333333333334 384 362.6666666666667 384z" />
505
- <glyph glyph-name="bookmark-outline-plus"
506
- unicode="&#xF1A6;"
507
- horiz-adv-x="512" d=" M362.6666666666667 64V341.3333333333334H149.3333333333333V64L256 110.5066666666667L362.6666666666667 64M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V0L256 64L106.6666666666667 0V341.3333333333334C106.6666666666667 365.0133333333333 125.8666666666667 384 149.3333333333333 384H362.6666666666667M234.6666666666667 298.6666666666667H277.3333333333333V256H320V213.3333333333334H277.3333333333333V170.6666666666667H234.6666666666667V213.3333333333334H192V256H234.6666666666667V298.6666666666667z" />
508
- <glyph glyph-name="bookmark-plus"
509
- unicode="&#xF1A7;"
510
- horiz-adv-x="512" d=" M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V0L256 64L106.6666666666667 0V341.3333333333334C106.6666666666667 365.0133333333333 125.8666666666667 384 149.3333333333333 384H362.6666666666667M234.6666666666667 298.6666666666667V256H192V213.3333333333334H234.6666666666667V170.6666666666667H277.3333333333333V213.3333333333334H320V256H277.3333333333333V298.6666666666667H234.6666666666667z" />
511
- <glyph glyph-name="bookmark-remove"
512
- unicode="&#xF1A8;"
513
- horiz-adv-x="512" d=" M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V0L256 64L106.6666666666667 0V341.3333333333334C106.6666666666667 365.0133333333333 125.8666666666667 384 149.3333333333333 384H362.6666666666667M174.2933333333333 264.9600000000001L225.92 213.3333333333334L174.2933333333333 161.92L204.5866666666667 131.6266666666667L256 183.2533333333333L307.4133333333333 131.6266666666667L337.7066666666667 161.92L286.08 213.3333333333334L337.7066666666667 264.9600000000001L307.4133333333333 295.04L256 243.6266666666667L204.5866666666667 295.04L174.2933333333333 264.9600000000001z" />
514
- <glyph glyph-name="border-all"
515
- unicode="&#xF1A9;"
516
- horiz-adv-x="512" d=" M405.3333333333333 213.3333333333334H277.3333333333333V341.3333333333334H405.3333333333333M405.3333333333333 42.6666666666667H277.3333333333333V170.6666666666667H405.3333333333333M234.6666666666667 213.3333333333334H106.6666666666667V341.3333333333334H234.6666666666667M234.6666666666667 42.6666666666667H106.6666666666667V170.6666666666667H234.6666666666667M64 0H448V384H64V0z" />
517
- <glyph glyph-name="border-bottom"
518
- unicode="&#xF1AA;"
519
- horiz-adv-x="512" d=" M106.6666666666667 128H64V85.3333333333334H106.6666666666667M64 0H448V42.6666666666667H64M106.6666666666667 213.3333333333334H64V170.6666666666667H106.6666666666667M405.3333333333333 256H448V298.6666666666667H405.3333333333333M405.3333333333333 341.3333333333334H448V384H405.3333333333333M106.6666666666667 298.6666666666667H64V256H106.6666666666667M405.3333333333333 85.3333333333334H448V128H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M362.6666666666667 384H320V341.3333333333334H362.6666666666667M277.3333333333333 384H234.6666666666667V341.3333333333334H277.3333333333333M362.6666666666667 213.3333333333334H320V170.6666666666667H362.6666666666667M277.3333333333333 298.6666666666667H234.6666666666667V256H277.3333333333333M106.6666666666667 384H64V341.3333333333334H106.6666666666667M277.3333333333333 213.3333333333334H234.6666666666667V170.6666666666667H277.3333333333333M192 384H149.3333333333333V341.3333333333334H192M277.3333333333333 128H234.6666666666667V85.3333333333334H277.3333333333333M192 213.3333333333334H149.3333333333333V170.6666666666667H192V213.3333333333334z" />
520
- <glyph glyph-name="border-color"
521
- unicode="&#xF1AB;"
522
- horiz-adv-x="512" d=" M441.8133333333334 361.8133333333334C450.1333333333334 370.1333333333334 450.1333333333334 384 441.8133333333334 391.8933333333333L391.8933333333333 441.8133333333334C384 450.1333333333334 370.1333333333334 450.1333333333334 361.8133333333334 441.8133333333334L320 400L400 320M378.6666666666667 298.6666666666667L298.6666666666667 378.6666666666667L85.3333333333333 165.3333333333334V85.3333333333334H165.3333333333333L378.6666666666667 298.6666666666667z" />
523
- <glyph glyph-name="border-horizontal"
524
- unicode="&#xF1AC;"
525
- horiz-adv-x="512" d=" M405.3333333333333 0H448V42.6666666666667H405.3333333333333M320 0H362.6666666666667V42.6666666666667H320M234.6666666666667 85.3333333333334H277.3333333333333V128H234.6666666666667M405.3333333333333 256H448V298.6666666666667H405.3333333333333M405.3333333333333 341.3333333333334H448V384H405.3333333333333M64 170.6666666666667H448V213.3333333333334H64M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667M405.3333333333333 85.3333333333334H448V128H405.3333333333333M277.3333333333333 384H234.6666666666667V341.3333333333334H277.3333333333333M277.3333333333333 298.6666666666667H234.6666666666667V256H277.3333333333333M362.6666666666667 384H320V341.3333333333334H362.6666666666667M192 384H149.3333333333333V341.3333333333334H192M106.6666666666667 384H64V341.3333333333334H106.6666666666667M149.3333333333333 0H192V42.6666666666667H149.3333333333333M64 85.3333333333334H106.6666666666667V128H64M106.6666666666667 298.6666666666667H64V256H106.6666666666667M64 0H106.6666666666667V42.6666666666667H64V0z" />
526
- <glyph glyph-name="border-inside"
527
- unicode="&#xF1AD;"
528
- horiz-adv-x="512" d=" M405.3333333333333 85.3333333333334H448V128H405.3333333333333M405.3333333333333 0H448V42.6666666666667H405.3333333333333M277.3333333333333 384H234.6666666666667V213.3333333333334H64V170.6666666666667H234.6666666666667V0H277.3333333333333V170.6666666666667H448V213.3333333333334H277.3333333333333M320 0H362.6666666666667V42.6666666666667H320M405.3333333333333 341.3333333333334H448V384H405.3333333333333M405.3333333333333 256H448V298.6666666666667H405.3333333333333M362.6666666666667 384H320V341.3333333333334H362.6666666666667M106.6666666666667 384H64V341.3333333333334H106.6666666666667M192 384H149.3333333333333V341.3333333333334H192M64 85.3333333333334H106.6666666666667V128H64M106.6666666666667 298.6666666666667H64V256H106.6666666666667M149.3333333333333 0H192V42.6666666666667H149.3333333333333M64 0H106.6666666666667V42.6666666666667H64V0z" />
529
- <glyph glyph-name="border-left"
530
- unicode="&#xF1AE;"
531
- horiz-adv-x="512" d=" M320 341.3333333333334H362.6666666666667V384H320M320 170.6666666666667H362.6666666666667V213.3333333333334H320M405.3333333333333 0H448V42.6666666666667H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M405.3333333333333 341.3333333333334H448V384H405.3333333333333M405.3333333333333 85.3333333333334H448V128H405.3333333333333M320 0H362.6666666666667V42.6666666666667H320M405.3333333333333 256H448V298.6666666666667H405.3333333333333M64 0H106.6666666666667V384H64M149.3333333333333 170.6666666666667H192V213.3333333333334H149.3333333333333M149.3333333333333 341.3333333333334H192V384H149.3333333333333M149.3333333333333 0H192V42.6666666666667H149.3333333333333M234.6666666666667 170.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667M234.6666666666667 256H277.3333333333333V298.6666666666667H234.6666666666667M234.6666666666667 341.3333333333334H277.3333333333333V384H234.6666666666667M234.6666666666667 85.3333333333334H277.3333333333333V128H234.6666666666667M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667V0z" />
532
- <glyph glyph-name="border-none"
533
- unicode="&#xF1AF;"
534
- horiz-adv-x="512" d=" M320 341.3333333333334H362.6666666666667V384H320M320 170.6666666666667H362.6666666666667V213.3333333333334H320M320 0H362.6666666666667V42.6666666666667H320M234.6666666666667 341.3333333333334H277.3333333333333V384H234.6666666666667M405.3333333333333 341.3333333333334H448V384H405.3333333333333M234.6666666666667 256H277.3333333333333V298.6666666666667H234.6666666666667M405.3333333333333 256H448V298.6666666666667H405.3333333333333M405.3333333333333 0H448V42.6666666666667H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M405.3333333333333 85.3333333333334H448V128H405.3333333333333M234.6666666666667 170.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667M64 341.3333333333334H106.6666666666667V384H64M64 256H106.6666666666667V298.6666666666667H64M64 170.6666666666667H106.6666666666667V213.3333333333334H64M64 85.3333333333334H106.6666666666667V128H64M64 0H106.6666666666667V42.6666666666667H64M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667M234.6666666666667 85.3333333333334H277.3333333333333V128H234.6666666666667M149.3333333333333 0H192V42.6666666666667H149.3333333333333M149.3333333333333 170.6666666666667H192V213.3333333333334H149.3333333333333M149.3333333333333 341.3333333333334H192V384H149.3333333333333V341.3333333333334z" />
535
- <glyph glyph-name="border-outside"
536
- unicode="&#xF1B0;"
537
- horiz-adv-x="512" d=" M192 213.3333333333334H149.3333333333333V170.6666666666667H192M277.3333333333333 128H234.6666666666667V85.3333333333334H277.3333333333333M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333M64 0H448V384H64M362.6666666666667 213.3333333333334H320V170.6666666666667H362.6666666666667M277.3333333333333 213.3333333333334H234.6666666666667V170.6666666666667H277.3333333333333M277.3333333333333 298.6666666666667H234.6666666666667V256H277.3333333333333V298.6666666666667z" />
538
- <glyph glyph-name="border-right"
539
- unicode="&#xF1B1;"
540
- horiz-adv-x="512" d=" M234.6666666666667 256H277.3333333333333V298.6666666666667H234.6666666666667M234.6666666666667 341.3333333333334H277.3333333333333V384H234.6666666666667M234.6666666666667 170.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667M320 341.3333333333334H362.6666666666667V384H320M320 0H362.6666666666667V42.6666666666667H320M405.3333333333333 0H448V384H405.3333333333333M320 170.6666666666667H362.6666666666667V213.3333333333334H320M234.6666666666667 85.3333333333334H277.3333333333333V128H234.6666666666667M64 256H106.6666666666667V298.6666666666667H64M64 85.3333333333334H106.6666666666667V128H64M64 170.6666666666667H106.6666666666667V213.3333333333334H64M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667M64 0H106.6666666666667V42.6666666666667H64M149.3333333333333 170.6666666666667H192V213.3333333333334H149.3333333333333M149.3333333333333 341.3333333333334H192V384H149.3333333333333M64 341.3333333333334H106.6666666666667V384H64M149.3333333333333 0H192V42.6666666666667H149.3333333333333V0z" />
541
- <glyph glyph-name="border-top"
542
- unicode="&#xF1B2;"
543
- horiz-adv-x="512" d=" M320 170.6666666666667H362.6666666666667V213.3333333333334H320M405.3333333333333 0H448V42.6666666666667H405.3333333333333M234.6666666666667 256H277.3333333333333V298.6666666666667H234.6666666666667M320 0H362.6666666666667V42.6666666666667H320M405.3333333333333 85.3333333333334H448V128H405.3333333333333M64 341.3333333333334H448V384H64M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M405.3333333333333 256H448V298.6666666666667H405.3333333333333M234.6666666666667 85.3333333333334H277.3333333333333V128H234.6666666666667M64 256H106.6666666666667V298.6666666666667H64M64 170.6666666666667H106.6666666666667V213.3333333333334H64M64 0H106.6666666666667V42.6666666666667H64M64 85.3333333333334H106.6666666666667V128H64M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667M234.6666666666667 170.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667M149.3333333333333 170.6666666666667H192V213.3333333333334H149.3333333333333M149.3333333333333 0H192V42.6666666666667H149.3333333333333V0z" />
544
- <glyph glyph-name="border-vertical"
545
- unicode="&#xF1B3;"
546
- horiz-adv-x="512" d=" M320 170.6666666666667H362.6666666666667V213.3333333333334H320M320 0H362.6666666666667V42.6666666666667H320M320 341.3333333333334H362.6666666666667V384H320M405.3333333333333 256H448V298.6666666666667H405.3333333333333M405.3333333333333 341.3333333333334H448V384H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M405.3333333333333 0H448V42.6666666666667H405.3333333333333M234.6666666666667 0H277.3333333333333V384H234.6666666666667M405.3333333333333 85.3333333333334H448V128H405.3333333333333M149.3333333333333 341.3333333333334H192V384H149.3333333333333M64 85.3333333333334H106.6666666666667V128H64M64 0H106.6666666666667V42.6666666666667H64M64 170.6666666666667H106.6666666666667V213.3333333333334H64M149.3333333333333 170.6666666666667H192V213.3333333333334H149.3333333333333M149.3333333333333 0H192V42.6666666666667H149.3333333333333M64 341.3333333333334H106.6666666666667V384H64M64 256H106.6666666666667V298.6666666666667H64V256z" />
547
- <glyph glyph-name="bowling"
548
- unicode="&#xF1B4;"
549
- horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M266.6666666666667 213.3333333333334C248.96 213.3333333333334 234.6666666666667 199.04 234.6666666666667 181.3333333333334S248.96 149.3333333333334 266.6666666666667 149.3333333333334S298.6666666666667 163.6266666666667 298.6666666666667 181.3333333333334S284.3733333333334 213.3333333333334 266.6666666666667 213.3333333333334M256 341.3333333333334C232.5333333333334 341.3333333333334 213.3333333333333 322.1333333333334 213.3333333333333 298.6666666666667S232.5333333333334 256 256 256S298.6666666666667 275.2000000000001 298.6666666666667 298.6666666666667S279.4666666666667 341.3333333333334 256 341.3333333333334M126.5066666666667 266.6666666666667C114.7733333333333 246.4000000000001 121.8133333333333 220.3733333333333 142.08 208.64C162.56 196.6933333333333 188.5866666666667 203.7333333333333 200.5333333333333 224C212.2666666666667 244.6933333333334 205.2266666666667 270.7200000000001 184.7466666666667 282.4533333333334C164.48 294.1866666666667 138.6666666666667 287.36 126.5066666666667 266.6666666666667z" />
550
- <glyph glyph-name="box"
551
- unicode="&#xF1B5;"
552
- horiz-adv-x="512" d=" M328.32 148.48C328.32 178.7733333333334 303.7866666666667 203.3066666666667 273.4933333333334 203.3066666666667C243.4133333333334 203.3066666666667 218.88 178.7733333333334 218.88 148.48C218.88 118.4 243.4133333333334 93.8666666666667 273.4933333333334 93.8666666666667C303.7866666666667 93.8666666666667 328.32 118.4000000000001 328.32 148.4800000000001M364.8 148.4800000000001C364.8 98.1333333333334 323.8400000000001 57.3866666666668 273.4933333333334 57.3866666666668C238.7200000000001 57.3866666666668 208.4266666666667 77.0133333333335 193.0666666666667 105.8133333333335C177.7066666666667 77.0133333333334 147.4133333333333 57.3866666666668 112.64 57.3866666666668C62.72 57.3866666666668 22.1866666666667 97.4933333333335 21.3333333333334 146.9866666666668V298.6666666666667C21.3333333333334 308.0533333333334 29.6533333333334 316.1600000000001 39.68 316.1600000000001S57.6 308.0533333333334 57.8133333333334 298.6666666666667V221.44C73.1733333333334 232.96 92.16 239.7866666666667 112.64 239.7866666666667C147.4133333333334 239.7866666666667 177.7066666666667 220.16 193.0666666666667 191.36C208.4266666666667 220.16 238.7200000000001 239.7866666666667 273.4933333333334 239.7866666666667C323.84 239.7866666666667 364.8 198.8266666666667 364.8 148.48M167.2533333333334 148.48C167.2533333333334 178.7733333333333 142.72 203.3066666666666 112.64 203.3066666666666C82.3466666666667 203.3066666666666 57.8133333333334 178.7733333333333 57.8133333333334 148.48C57.8133333333334 118.4 82.3466666666667 93.8666666666667 112.64 93.8666666666667C142.72 93.8666666666667 167.2533333333334 118.4 167.2533333333334 148.48M487.2533333333334 86.1866666666667C489.6 82.7733333333333 490.6666666666667 78.9333333333333 490.6666666666667 75.3066666666666C490.6666666666667 69.7599999999999 488.1066666666667 63.9999999999999 483.4133333333334 60.8C480.0000000000001 58.4533333333333 476.3733333333334 57.1733333333333 472.5333333333334 57.1733333333333C467.2 57.1733333333333 461.8666666666667 59.5199999999999 458.6666666666667 63.9999999999999L417.9200000000001 117.9733333333333L377.6 64C373.9733333333333 59.52 368.64 57.1733333333334 363.3066666666666 57.1733333333334C359.4666666666666 57.1733333333334 355.6266666666666 58.4533333333333 351.9999999999999 60.8000000000001C347.5199999999999 64 344.9599999999999 69.9733333333334 344.9599999999999 75.5200000000001C344.9599999999999 79.1466666666668 346.2399999999999 82.9866666666668 348.3733333333333 86.1866666666667L394.6666666666667 148.4800000000001L348.3733333333333 210.9866666666667C346.0266666666667 214.1866666666667 344.9599999999999 217.8133333333334 344.9599999999999 221.6533333333334C344.9599999999999 227.2000000000001 347.52 232.5333333333334 351.9999999999999 236.1600000000001C360.32 242.1333333333334 371.4133333333333 240.6400000000001 377.5999999999999 232.7466666666668L417.9199999999999 178.9866666666667L458.6666666666666 232.7466666666668C464.2133333333333 240.6400000000001 475.5199999999999 242.1333333333334 483.4133333333332 236.1600000000001C488.3199999999999 232.5333333333334 490.6666666666666 226.9866666666668 490.6666666666666 221.2266666666668C490.6666666666666 217.6000000000001 489.5999999999999 213.9733333333334 487.2533333333332 210.9866666666667L440.7466666666666 148.4800000000001L487.2533333333332 86.1866666666667z" />
553
- <glyph glyph-name="briefcase"
554
- unicode="&#xF1B6;"
555
- horiz-adv-x="512" d=" M298.6666666666667 320H213.3333333333333V362.6666666666667H298.6666666666667M426.6666666666667 320H341.3333333333333V362.6666666666667L298.6666666666667 405.3333333333333H213.3333333333333L170.6666666666667 362.6666666666667V320H85.3333333333333C61.6533333333333 320 42.6666666666667 301.0133333333333 42.6666666666667 277.3333333333334V42.6666666666667C42.6666666666667 19.2 61.8666666666667 0 85.3333333333333 0H426.6666666666667C450.1333333333334 0 469.3333333333333 19.2 469.3333333333333 42.6666666666667V277.3333333333334C469.3333333333333 301.0133333333333 450.1333333333334 320 426.6666666666667 320z" />
556
- <glyph glyph-name="briefcase-check"
557
- unicode="&#xF1B7;"
558
- horiz-adv-x="512" d=" M224 74.6666666666667L149.3333333333333 149.3333333333334L179.4133333333333 179.4133333333334L224 135.04L334.5066666666667 245.3333333333334L364.5866666666667 215.2533333333333M213.3333333333333 362.6666666666667H298.6666666666667V320H213.3333333333333M426.6666666666667 320H341.3333333333333V362.6666666666667L298.6666666666667 405.3333333333333H213.3333333333333L170.6666666666667 362.6666666666667V320H85.3333333333333C61.6533333333333 320 42.6666666666667 301.0133333333333 42.6666666666667 277.3333333333334V42.6666666666667C42.6666666666667 18.9866666666667 61.6533333333333 0 85.3333333333333 0H426.6666666666667C450.3466666666667 0 469.3333333333333 18.9866666666667 469.3333333333333 42.6666666666667V277.3333333333334C469.3333333333333 301.0133333333333 450.3466666666667 320 426.6666666666667 320z" />
559
- <glyph glyph-name="briefcase-download"
560
- unicode="&#xF1B8;"
561
- horiz-adv-x="512" d=" M256 42.6666666666667L149.3333333333333 149.3333333333334H213.3333333333333V234.6666666666667H298.6666666666667V149.3333333333334H362.6666666666667M213.3333333333333 362.6666666666667H298.6666666666667V320H213.3333333333333M426.6666666666667 320H341.3333333333333V362.6666666666667L298.6666666666667 405.3333333333333H213.3333333333333L170.6666666666667 362.6666666666667V320H85.3333333333333C61.6533333333333 320 42.6666666666667 301.0133333333333 42.6666666666667 277.3333333333334V42.6666666666667C42.6666666666667 19.2 61.8666666666667 0 85.3333333333333 0H426.6666666666667C450.1333333333334 0 469.3333333333333 19.2 469.3333333333333 42.6666666666667V277.3333333333334C469.3333333333333 301.0133333333333 450.1333333333334 320 426.6666666666667 320z" />
562
- <glyph glyph-name="briefcase-upload"
563
- unicode="&#xF1B9;"
564
- horiz-adv-x="512" d=" M426.6666666666667 320C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H85.3333333333333C61.6533333333333 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V277.3333333333334C42.6666666666667 301.0133333333333 61.6533333333333 320 85.3333333333333 320H170.6666666666667V362.6666666666667L213.3333333333333 405.3333333333333H298.6666666666667L341.3333333333333 362.6666666666667V320H426.6666666666667M213.3333333333333 362.6666666666667V320H298.6666666666667V362.6666666666667H213.3333333333333M256 256L149.3333333333333 149.3333333333334H213.3333333333333V64H298.6666666666667V149.3333333333334H362.6666666666667L256 256z" />
565
- <glyph glyph-name="brightness-1"
566
- unicode="&#xF1BA;"
567
- horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333z" />
568
- <glyph glyph-name="brightness-2"
569
- unicode="&#xF1BB;"
570
- horiz-adv-x="512" d=" M213.3333333333333 405.3333333333333C174.5066666666667 405.3333333333333 138.0266666666667 394.6666666666667 106.6666666666667 376.5333333333333C170.6666666666667 339.6266666666667 213.3333333333333 270.9333333333334 213.3333333333333 192S170.6666666666667 44.3733333333333 106.6666666666667 7.4666666666667C138.0266666666667 -10.6666666666666 174.5066666666667 -21.3333333333333 213.3333333333333 -21.3333333333333C331.0933333333333 -21.3333333333333 426.6666666666667 74.24 426.6666666666667 192S331.0933333333333 405.3333333333333 213.3333333333333 405.3333333333333z" />
571
- <glyph glyph-name="brightness-3"
572
- unicode="&#xF1BC;"
573
- horiz-adv-x="512" d=" M192 405.3333333333333C169.6 405.3333333333333 148.2666666666667 401.92 128 395.52C214.6133333333333 368.4266666666667 277.3333333333333 288 277.3333333333333 192C277.3333333333333 96 214.6133333333334 15.5733333333334 128 -11.52C148.2666666666667 -17.92 169.6 -21.3333333333333 192 -21.3333333333333C309.76 -21.3333333333333 405.3333333333333 74.24 405.3333333333333 192S309.76 405.3333333333333 192 405.3333333333333z" />
574
- <glyph glyph-name="brightness-4"
575
- unicode="&#xF1BD;"
576
- horiz-adv-x="512" d=" M256 64C237.0133333333333 64 218.88 68.2666666666667 202.6666666666667 75.7333333333334C246.6133333333334 96 277.3333333333333 140.3733333333333 277.3333333333333 192C277.3333333333333 243.6266666666667 246.6133333333334 288 202.6666666666667 308.2666666666667C218.88 315.7333333333334 237.0133333333333 320 256 320C326.6133333333334 320 384 262.6133333333334 384 192S326.6133333333334 64 256 64M426.6666666666667 262.6133333333334V362.6666666666667H326.6133333333333L256 433.28L185.3866666666667 362.6666666666667H85.3333333333333V262.6133333333334L14.72 192L85.3333333333333 121.3866666666667V21.3333333333334H185.3866666666667L256 -49.28L326.6133333333334 21.3333333333334H426.6666666666667V121.3866666666667L497.28 192L426.6666666666667 262.6133333333334z" />
577
- <glyph glyph-name="brightness-5"
578
- unicode="&#xF1BE;"
579
- horiz-adv-x="512" d=" M256 64C185.3866666666667 64 128 121.3866666666667 128 192S185.3866666666667 320 256 320S384 262.6133333333334 384 192S326.6133333333334 64 256 64M426.6666666666667 121.3866666666667L497.28 192L426.6666666666667 262.6133333333334V362.6666666666667H326.6133333333333L256 433.28L185.3866666666667 362.6666666666667H85.3333333333333V262.6133333333334L14.72 192L85.3333333333333 121.3866666666667V21.3333333333334H185.3866666666667L256 -49.28L326.6133333333334 21.3333333333334H426.6666666666667V121.3866666666667z" />
580
- <glyph glyph-name="brightness-6"
581
- unicode="&#xF1BF;"
582
- horiz-adv-x="512" d=" M256 64V320C326.6133333333334 320 384 262.6133333333334 384 192S326.6133333333334 64 256 64M426.6666666666667 121.3866666666667L497.28 192L426.6666666666667 262.6133333333334V362.6666666666667H326.6133333333333L256 433.28L185.3866666666667 362.6666666666667H85.3333333333333V262.6133333333334L14.72 192L85.3333333333333 121.3866666666667V21.3333333333334H185.3866666666667L256 -49.28L326.6133333333334 21.3333333333334H426.6666666666667V121.3866666666667z" />
583
- <glyph glyph-name="brightness-7"
584
- unicode="&#xF1C0;"
585
- horiz-adv-x="512" d=" M256 277.3333333333334C208.8533333333333 277.3333333333334 170.6666666666667 239.1466666666667 170.6666666666667 192S208.8533333333333 106.6666666666667 256 106.6666666666667S341.3333333333333 144.8533333333334 341.3333333333333 192S303.1466666666667 277.3333333333334 256 277.3333333333334M256 64C185.3866666666667 64 128 121.3866666666667 128 192S185.3866666666667 320 256 320S384 262.6133333333334 384 192S326.6133333333334 64 256 64M426.6666666666667 262.6133333333334V362.6666666666667H326.6133333333333L256 433.28L185.3866666666667 362.6666666666667H85.3333333333333V262.6133333333334L14.72 192L85.3333333333333 121.3866666666667V21.3333333333334H185.3866666666667L256 -49.28L326.6133333333334 21.3333333333334H426.6666666666667V121.3866666666667L497.28 192L426.6666666666667 262.6133333333334z" />
586
- <glyph glyph-name="brightness-auto"
587
- unicode="&#xF1C1;"
588
- horiz-adv-x="512" d=" M305.0666666666667 106.6666666666667L290.1333333333334 149.3333333333334H221.8666666666667L206.9333333333334 106.6666666666667H166.4L234.6666666666667 298.6666666666667H277.3333333333333L345.6 106.6666666666667H305.0666666666666M426.6666666666667 262.6133333333334V362.6666666666667H326.6133333333333L256 433.28L185.3866666666667 362.6666666666667H85.3333333333333V262.6133333333334L14.72 192L85.3333333333333 121.3866666666667V21.3333333333334H185.3866666666667L256 -49.28L326.6133333333334 21.3333333333334H426.6666666666667V121.3866666666667L497.28 192L426.6666666666667 262.6133333333334M231.4666666666667 178.1333333333334H280.5333333333333L256 256L231.4666666666667 178.1333333333333z" />
589
- <glyph glyph-name="broom"
590
- unicode="&#xF1C2;"
591
- horiz-adv-x="512" d=" M413.0133333333333 389.9733333333334L443.3066666666667 359.68L321.2800000000001 237.8666666666667C344.1066666666667 205.0133333333333 347.3066666666667 165.5466666666666 328.1066666666667 139.9466666666667L193.28 274.7733333333334C218.88 293.9733333333334 258.3466666666667 290.7733333333334 291.2 267.9466666666667L413.0133333333333 389.9733333333334M126.5066666666667 73.1733333333334C83.6266666666667 116.0533333333334 57.3866666666667 167.2533333333333 50.1333333333333 215.04L154.24 259.6266666666667L312.96 100.9066666666667L268.3733333333334 -3.1999999999999C220.5866666666667 4.0533333333334 169.3866666666667 30.2933333333334 126.5066666666667 73.1733333333334z" />
592
- <glyph glyph-name="brush"
593
- unicode="&#xF1C3;"
594
- horiz-adv-x="512" d=" M441.8133333333334 349.2266666666667L413.2266666666667 377.8133333333334C405.3333333333333 386.1333333333334 391.4666666666667 386.1333333333334 383.1466666666667 377.8133333333334L192 186.6666666666667L250.6666666666667 128L441.8133333333334 319.1466666666667C450.1333333333334 327.4666666666667 450.1333333333334 341.3333333333334 441.8133333333334 349.2266666666667M149.3333333333333 149.3333333333334C113.92 149.3333333333334 85.3333333333333 120.7466666666667 85.3333333333333 85.3333333333334C85.3333333333333 57.3866666666667 60.5866666666667 42.6666666666667 42.6666666666667 42.6666666666667C62.2933333333333 16.64 96 0 128 0C175.1466666666667 0 213.3333333333333 38.1866666666667 213.3333333333333 85.3333333333334C213.3333333333333 120.7466666666667 184.7466666666667 149.3333333333334 149.3333333333333 149.3333333333334z" />
595
- <glyph glyph-name="bug"
596
- unicode="&#xF1C4;"
597
- horiz-adv-x="512" d=" M298.6666666666667 192H213.3333333333333V234.6666666666667H298.6666666666667M298.6666666666667 106.6666666666667H213.3333333333333V149.3333333333334H298.6666666666667M426.6666666666667 277.3333333333334H366.7200000000001C357.12 293.9733333333334 343.8933333333333 308.2666666666667 327.8933333333333 319.1466666666667L362.6666666666667 353.92L332.5866666666667 384L286.2933333333333 337.7066666666667C276.48 340.0533333333334 266.6666666666667 341.3333333333334 256 341.3333333333334C245.3333333333333 341.3333333333334 235.52 340.0533333333334 225.92 337.7066666666667L179.4133333333333 384L149.3333333333333 353.92L183.8933333333334 319.1466666666667C168.1066666666667 308.2666666666667 154.88 293.9733333333334 145.28 277.3333333333334H85.3333333333333V234.6666666666667H129.92C128.8533333333333 227.6266666666667 128 220.5866666666667 128 213.3333333333334V192H85.3333333333333V149.3333333333334H128V128C128 120.7466666666667 128.8533333333333 113.7066666666667 129.92 106.6666666666667H85.3333333333333V64H145.28C167.4666666666667 25.8133333333334 208.64 0 256 0S344.5333333333333 25.8133333333334 366.7200000000001 64H426.6666666666667V106.6666666666667H382.08C383.1466666666667 113.7066666666667 384 120.7466666666667 384 128V149.3333333333334H426.6666666666667V192H384V213.3333333333334C384 220.5866666666667 383.1466666666667 227.6266666666667 382.08 234.6666666666667H426.6666666666667V277.3333333333334z" />
598
- <glyph glyph-name="bulletin-board"
599
- unicode="&#xF1C5;"
600
- horiz-adv-x="512" d=" M256.8533333333333 394.6666666666667L203.3066666666667 341.3333333333334H309.9733333333333L256.8533333333333 394.6666666666667M85.3333333333333 298.6666666666667V21.3333333333334H426.6666666666667V298.6666666666667H85.3333333333333M256 448L362.6666666666667 341.3333333333334H426.6666666666667C450.1333333333334 341.3333333333334 469.3333333333333 322.1333333333334 469.3333333333333 298.6666666666667V21.3333333333334C469.3333333333333 -2.1333333333333 450.1333333333334 -21.3333333333333 426.6666666666667 -21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V298.6666666666667C42.6666666666667 322.1333333333334 61.8666666666667 341.3333333333334 85.3333333333333 341.3333333333334H149.3333333333333L256 448M149.3333333333333 64V149.3333333333334H256V64H149.3333333333333M298.6666666666667 85.3333333333334V234.6666666666667H384V85.3333333333334H298.6666666666667M128 192V256H234.6666666666667V192H128z" />
601
- <glyph glyph-name="bullhorn"
602
- unicode="&#xF1C6;"
603
- horiz-adv-x="512" d=" M341.3333333333333 192V106.6666666666667C341.3333333333333 94.9333333333333 331.7333333333334 85.3333333333334 320 85.3333333333334C316.3733333333334 85.3333333333334 312.96 85.3333333333334 299.9466666666667 96C286.7200000000001 106.6666666666667 264.32 128 241.28 138.6666666666667C219.9466666666667 148.48 197.9733333333334 149.3333333333334 176.2133333333334 149.3333333333334L202.0266666666667 78.5066666666667L202.6666666666667 74.6666666666667C202.6666666666667 68.6933333333333 197.9733333333334 64 192 64H149.3333333333333C144.64 64 140.5866666666667 66.9866666666667 139.3066666666667 71.2533333333333L110.72 149.3333333333334H106.6666666666667C94.9333333333333 149.3333333333334 85.3333333333333 158.9333333333333 85.3333333333333 170.6666666666667C61.8666666666667 170.6666666666667 42.6666666666667 189.8666666666667 42.6666666666667 213.3333333333334S61.8666666666667 256 85.3333333333333 256C85.3333333333333 267.7333333333334 94.9333333333333 277.3333333333334 106.6666666666667 277.3333333333334H170.6666666666667C194.3466666666666 277.3333333333334 218.0266666666667 277.3333333333334 241.28 288C264.32 298.6666666666667 286.7200000000001 320 299.9466666666667 330.6666666666667C312.96 341.3333333333334 316.3733333333334 341.3333333333334 320 341.3333333333334C331.7333333333334 341.3333333333334 341.3333333333333 331.7333333333334 341.3333333333333 320V234.6666666666667C353.0666666666667 234.6666666666667 362.6666666666667 225.0666666666667 362.6666666666667 213.3333333333334S353.0666666666667 192 341.3333333333333 192M448 213.3333333333334C448 183.8933333333334 436.0533333333334 157.2266666666667 416.8533333333333 137.8133333333334L386.56 168.1066666666667C398.08 179.6266666666667 405.3333333333333 195.6266666666667 405.3333333333333 213.3333333333334C405.3333333333333 231.04 398.08 247.04 386.56 258.5600000000001L416.8533333333333 288.8533333333334C436.0533333333334 269.4400000000001 448 242.7733333333334 448 213.3333333333334z" />
604
- <glyph glyph-name="bus"
605
- unicode="&#xF1C7;"
606
- horiz-adv-x="512" d=" M384 213.3333333333334H128V320H384M352 85.3333333333334C334.2933333333333 85.3333333333334 320 99.6266666666667 320 117.3333333333334S334.2933333333333 149.3333333333334 352 149.3333333333334S384 135.04 384 117.3333333333334S369.7066666666666 85.3333333333334 352 85.3333333333334M160 85.3333333333334C142.2933333333333 85.3333333333334 128 99.6266666666667 128 117.3333333333334S142.2933333333333 149.3333333333334 160 149.3333333333334S192 135.04 192 117.3333333333334S177.7066666666667 85.3333333333334 160 85.3333333333334M85.3333333333333 106.6666666666667C85.3333333333333 87.8933333333334 93.6533333333333 71.04 106.6666666666667 59.3066666666667V21.3333333333334C106.6666666666667 9.6 116.2666666666667 0 128 0H149.3333333333333C161.0666666666667 0 170.6666666666667 9.6 170.6666666666667 21.3333333333334V42.6666666666667H341.3333333333333V21.3333333333334C341.3333333333333 9.6 350.9333333333333 0 362.6666666666667 0H384C395.7333333333334 0 405.3333333333333 9.6 405.3333333333333 21.3333333333334V59.3066666666667C418.3466666666667 71.0400000000001 426.6666666666667 87.8933333333334 426.6666666666667 106.6666666666667V320C426.6666666666667 394.6666666666667 350.2933333333334 405.3333333333333 256 405.3333333333333S85.3333333333333 394.6666666666667 85.3333333333333 320V106.6666666666667z" />
607
- <glyph glyph-name="cake"
608
- unicode="&#xF1C8;"
609
- horiz-adv-x="512" d=" M245.3333333333333 437.3333333333333C256 432 277.3333333333333 396.8 277.3333333333333 373.3333333333334S263.04 341.3333333333334 245.3333333333333 341.3333333333334S213.3333333333333 344.5333333333334 213.3333333333333 368S