icon.gl 0.0.33 → 0.0.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/icon.css +64 -0
- package/css/icon.min.css +1 -1
- package/font/icongl.eot +0 -0
- package/font/icongl.ttf +0 -0
- package/font/icongl.woff +0 -0
- package/font/icongl.woff2 +0 -0
- package/js/icons/ui_book.d.ts +1 -0
- package/js/icons/ui_book.js +4 -0
- package/js/icons/ui_create_layers.d.ts +1 -0
- package/js/icons/ui_create_layers.js +4 -0
- package/js/icons/ui_create_simple_corner.d.ts +1 -0
- package/js/icons/ui_create_simple_corner.js +4 -0
- package/js/icons/ui_create_simple_round.d.ts +1 -0
- package/js/icons/ui_create_simple_round.js +4 -0
- package/js/icons/ui_document_list.d.ts +1 -0
- package/js/icons/ui_document_list.js +4 -0
- package/js/icons/ui_edit_pen.d.ts +1 -0
- package/js/icons/ui_edit_pen.js +4 -0
- package/js/icons/ui_home_filled.d.ts +1 -0
- package/js/icons/ui_home_filled.js +4 -0
- package/js/icons/ui_home_plain.d.ts +1 -0
- package/js/icons/ui_home_plain.js +4 -0
- package/js/icons/ui_home_round.d.ts +1 -0
- package/js/icons/ui_home_round.js +4 -0
- package/js/icons/ui_list.d.ts +1 -0
- package/js/icons/ui_list.js +4 -0
- package/js/icons/ui_list_box.d.ts +1 -0
- package/js/icons/ui_list_box.js +4 -0
- package/js/icons/ui_list_filled.d.ts +1 -0
- package/js/icons/ui_list_filled.js +4 -0
- package/js/icons/ui_paper_list.d.ts +1 -0
- package/js/icons/ui_paper_list.js +4 -0
- package/js/icons/ui_pattern.d.ts +1 -0
- package/js/icons/ui_pattern.js +4 -0
- package/js/icons/ui_solution.d.ts +1 -0
- package/js/icons/ui_solution.js +4 -0
- package/js/icons/ui_table.d.ts +1 -0
- package/js/icons/ui_table.js +4 -0
- package/js/icons.d.ts +16 -0
- package/js/icons.js +16 -0
- package/md/icon.gl.md +12 -9
- package/package.json +1 -1
- package/png/512/ui_book.png +0 -0
- package/png/512/ui_create_layers.png +0 -0
- package/png/512/ui_create_simple_corner.png +0 -0
- package/png/512/ui_create_simple_round.png +0 -0
- package/png/512/ui_document_list.png +0 -0
- package/png/512/ui_edit_pen.png +0 -0
- package/png/512/ui_home_filled.png +0 -0
- package/png/512/ui_home_plain.png +0 -0
- package/png/512/ui_home_round.png +0 -0
- package/png/512/ui_list.png +0 -0
- package/png/512/ui_list_box.png +0 -0
- package/png/512/ui_list_filled.png +0 -0
- package/png/512/ui_paper_list.png +0 -0
- package/png/512/ui_pattern.png +0 -0
- package/png/512/ui_solution.png +0 -0
- package/png/512/ui_table.png +0 -0
- package/scss/variables/_font.scss +16 -0
- package/svg/ui_book.svg +1 -0
- package/svg/ui_create_layers.svg +1 -0
- package/svg/ui_create_simple_corner.svg +1 -0
- package/svg/ui_create_simple_round.svg +1 -0
- package/svg/ui_document_list.svg +1 -0
- package/svg/ui_edit_pen.svg +1 -0
- package/svg/ui_home_filled.svg +1 -0
- package/svg/ui_home_plain.svg +1 -0
- package/svg/ui_home_round.svg +1 -0
- package/svg/ui_list.svg +1 -0
- package/svg/ui_list_box.svg +1 -0
- package/svg/ui_list_filled.svg +1 -0
- package/svg/ui_paper_list.svg +1 -0
- package/svg/ui_pattern.svg +1 -0
- package/svg/ui_solution.svg +1 -0
- package/svg/ui_table.svg +1 -0
- package/ts/icons/ui_book.ts +1 -0
- package/ts/icons/ui_create_layers.ts +1 -0
- package/ts/icons/ui_create_simple_corner.ts +1 -0
- package/ts/icons/ui_create_simple_round.ts +1 -0
- package/ts/icons/ui_document_list.ts +1 -0
- package/ts/icons/ui_edit_pen.ts +1 -0
- package/ts/icons/ui_home_filled.ts +1 -0
- package/ts/icons/ui_home_plain.ts +1 -0
- package/ts/icons/ui_home_round.ts +1 -0
- package/ts/icons/ui_list.ts +1 -0
- package/ts/icons/ui_list_box.ts +1 -0
- package/ts/icons/ui_list_filled.ts +1 -0
- package/ts/icons/ui_paper_list.ts +1 -0
- package/ts/icons/ui_pattern.ts +1 -0
- package/ts/icons/ui_solution.ts +1 -0
- package/ts/icons/ui_table.ts +1 -0
- package/ts/icons.ts +16 -0
package/css/icon.css
CHANGED
|
@@ -6148,6 +6148,70 @@
|
|
|
6148
6148
|
content: "\f6c2";
|
|
6149
6149
|
}
|
|
6150
6150
|
|
|
6151
|
+
.i_ui_table::before {
|
|
6152
|
+
content: "\f6c3";
|
|
6153
|
+
}
|
|
6154
|
+
|
|
6155
|
+
.i_ui_solution::before {
|
|
6156
|
+
content: "\f6c4";
|
|
6157
|
+
}
|
|
6158
|
+
|
|
6159
|
+
.i_ui_pattern::before {
|
|
6160
|
+
content: "\f6c5";
|
|
6161
|
+
}
|
|
6162
|
+
|
|
6163
|
+
.i_ui_paper_list::before {
|
|
6164
|
+
content: "\f6c6";
|
|
6165
|
+
}
|
|
6166
|
+
|
|
6167
|
+
.i_ui_list_filled::before {
|
|
6168
|
+
content: "\f6c7";
|
|
6169
|
+
}
|
|
6170
|
+
|
|
6171
|
+
.i_ui_list_box::before {
|
|
6172
|
+
content: "\f6c8";
|
|
6173
|
+
}
|
|
6174
|
+
|
|
6175
|
+
.i_ui_list::before {
|
|
6176
|
+
content: "\f6c9";
|
|
6177
|
+
}
|
|
6178
|
+
|
|
6179
|
+
.i_ui_home_round::before {
|
|
6180
|
+
content: "\f6ca";
|
|
6181
|
+
}
|
|
6182
|
+
|
|
6183
|
+
.i_ui_home_plain::before {
|
|
6184
|
+
content: "\f6cb";
|
|
6185
|
+
}
|
|
6186
|
+
|
|
6187
|
+
.i_ui_home_filled::before {
|
|
6188
|
+
content: "\f6cc";
|
|
6189
|
+
}
|
|
6190
|
+
|
|
6191
|
+
.i_ui_edit_pen::before {
|
|
6192
|
+
content: "\f6cd";
|
|
6193
|
+
}
|
|
6194
|
+
|
|
6195
|
+
.i_ui_document_list::before {
|
|
6196
|
+
content: "\f6ce";
|
|
6197
|
+
}
|
|
6198
|
+
|
|
6199
|
+
.i_ui_create_simple_round::before {
|
|
6200
|
+
content: "\f6cf";
|
|
6201
|
+
}
|
|
6202
|
+
|
|
6203
|
+
.i_ui_create_simple_corner::before {
|
|
6204
|
+
content: "\f6d0";
|
|
6205
|
+
}
|
|
6206
|
+
|
|
6207
|
+
.i_ui_create_layers::before {
|
|
6208
|
+
content: "\f6d1";
|
|
6209
|
+
}
|
|
6210
|
+
|
|
6211
|
+
.i_ui_book::before {
|
|
6212
|
+
content: "\f6d2";
|
|
6213
|
+
}
|
|
6214
|
+
|
|
6151
6215
|
.i::before,
|
|
6152
6216
|
[class^=i_]::before,
|
|
6153
6217
|
[class*=" i_"]::before {
|
package/css/icon.min.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.i_1x{font-size:1em}.i_2x{font-size:2em}.i_3x{font-size:3em}.i_4x{font-size:4em}.i_5x{font-size:5em}.i_6x{font-size:6em}.i_7x{font-size:7em}.i_8x{font-size:8em}.i_9x{font-size:9em}.i_10x{font-size:10em}.i{align-items:center;aspect-ratio:1/1;background-color:transparent;box-sizing:initial;color:#000;display:inline-flex;font-size:inherit;height:1.5em;justify-content:center;margin:0;overflow:visible;padding:0;position:relative;text-align:center;vertical-align:initial;width:1.5em}.i:before{display:inline;line-height:1;vertical-align:middle}.i *,.i:before{color:#000;font-family:icongl!important;font-size:1.5em;font-style:normal;font-variant:normal;font-weight:400!important;-webkit-text-emphasis-style:none;text-emphasis-style:none;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.i *{align-items:center;display:flex;justify-content:center;line-height:1.5em!important;text-align:center}.i_arrow_up:before{content:""}.i_arrow_down:before{content:""}.i_arrow_left:before{content:""}.i_arrow_right:before{content:""}.i_arrow_up_left:before{content:""}.i_arrow_up_right:before{content:""}.i_arrow_down_left:before{content:""}.i_arrow_down_right:before{content:""}.i_arrow_long_left:before{content:""}.i_arrow_long_right:before{content:""}.i_arrow_long_left_right:before{content:""}.i_arrow_long_from_bar_left:before{content:""}.i_arrow_long_from_bar_right:before{content:""}.i_arrow_dotted_up:before{content:""}.i_arrow_dotted_down:before{content:""}.i_arrow_dotted_left:before{content:""}.i_arrow_dotted_right:before{content:""}.i_arrow_double_up:before{content:""}.i_arrow_double_down:before{content:""}.i_arrow_double_left:before{content:""}.i_arrow_double_right:before{content:""}.i_arrow_tripple_right:before{content:"⇶"}.i_arrow_harpoon_up_barb_left:before{content:""}.i_arrow_harpoon_up_barb_right:before{content:""}.i_arrow_harpoon_down_barb_left:before{content:""}.i_arrow_harpoon_down_barb_right:before{content:""}.i_arrow_harpoon_left_barb_up:before{content:""}.i_arrow_harpoon_left_barb_down:before{content:""}.i_arrow_harpoon_right_barb_up:before{content:""}.i_arrow_harpoon_right_barb_down:before{content:""}.i_arrow_circle_gap_left:before{content:""}.i_arrow_circle_gap_right:before{content:""}.i_arrow_circle_semi_gap_right:before{content:""}.i_arrow_circle_semi_gap_left:before{content:""}.i_arrow_circle_closed_left:before{content:""}.i_arrow_circle_closed_right:before{content:""}.i_arrow_corner_down_right:before{content:""}.i_arrow_corner_left_up:before{content:""}.i_arrow_corner_left_down:before{content:""}.i_arrow_corner_right_up:before{content:""}.i_arrow_corner_right_down:before{content:""}.i_arrow_up_down:before{content:""}.i_arrow_left_right:before{content:""}.i_arrow_up_left_down_right:before{content:""}.i_arrow_up_right_down_left:before{content:""}.i_arrow_two_headed_up:before{content:"↟"}.i_arrow_two_headed_down:before{content:"↡"}.i_arrow_two_headed_left:before{content:"↞"}.i_arrow_two_headed_right:before{content:"↠"}.i_arrow_from_bar_up:before{content:""}.i_arrow_from_bar_down:before{content:""}.i_arrow_from_bar_left:before{content:""}.i_arrow_from_bar_right:before{content:""}.i_arrow_to_bar_up:before{content:""}.i_arrow_to_bar_down:before{content:""}.i_arrow_to_bar_left:before{content:""}.i_arrow_to_bar_right:before{content:""}.i_arrow_to_corner_upper_left:before{content:""}.i_arrow_to_corner_lower_right:before{content:""}.i_game_dice_1:before{content:""}.i_game_dice_2:before{content:""}.i_game_dice_3:before{content:""}.i_game_dice_4:before{content:""}.i_game_dice_5:before{content:""}.i_game_dice_6:before{content:""}.i_number_0:before{content:""}.i_number_1:before{content:""}.i_number_2:before{content:""}.i_number_3:before{content:""}.i_number_4:before{content:""}.i_number_5:before{content:""}.i_number_6:before{content:""}.i_number_7:before{content:""}.i_number_8:before{content:""}.i_number_9:before{content:""}.i_number_circle_0:before{content:""}.i_number_circle_1:before{content:""}.i_number_circle_2:before{content:""}.i_number_circle_3:before{content:""}.i_number_circle_4:before{content:""}.i_number_circle_5:before{content:""}.i_number_circle_6:before{content:""}.i_number_circle_7:before{content:""}.i_number_circle_8:before{content:""}.i_number_circle_9:before{content:""}.i_number_circle_10:before{content:""}.i_number_circle_11:before{content:""}.i_number_circle_12:before{content:""}.i_number_circle_13:before{content:""}.i_number_circle_14:before{content:""}.i_number_circle_15:before{content:""}.i_number_circle_16:before{content:""}.i_number_circle_17:before{content:""}.i_number_circle_18:before{content:""}.i_number_circle_19:before{content:""}.i_number_circle_20:before{content:""}.i_number_circle_21:before{content:""}.i_number_circle_22:before{content:""}.i_number_circle_23:before{content:""}.i_number_circle_24:before{content:""}.i_number_circle_25:before{content:""}.i_number_circle_26:before{content:""}.i_number_circle_27:before{content:""}.i_number_circle_28:before{content:""}.i_number_circle_29:before{content:""}.i_number_circle_30:before{content:""}.i_number_circle_31:before{content:""}.i_number_circle_32:before{content:""}.i_number_circle_33:before{content:""}.i_number_circle_34:before{content:""}.i_number_circle_35:before{content:""}.i_number_circle_36:before{content:""}.i_number_circle_37:before{content:""}.i_number_circle_38:before{content:""}.i_number_circle_39:before{content:""}.i_number_circle_40:before{content:""}.i_number_circle_41:before{content:""}.i_number_circle_42:before{content:""}.i_number_circle_43:before{content:""}.i_number_circle_44:before{content:""}.i_number_circle_45:before{content:""}.i_number_circle_46:before{content:""}.i_number_circle_47:before{content:""}.i_number_circle_48:before{content:""}.i_number_circle_49:before{content:""}.i_number_circle_50:before{content:""}.i_number_circle_fill_0:before{content:""}.i_number_circle_fill_10:before{content:""}.i_number_circle_fill_11:before{content:""}.i_number_circle_fill_12:before{content:""}.i_number_circle_fill_13:before{content:""}.i_number_circle_fill_14:before{content:""}.i_number_circle_fill_15:before{content:""}.i_number_circle_fill_16:before{content:""}.i_number_circle_fill_17:before{content:""}.i_number_circle_fill_18:before{content:""}.i_number_circle_fill_19:before{content:""}.i_number_circle_fill_20:before{content:""}.i_number_circle_square_10:before{content:""}.i_number_circle_square_20:before{content:""}.i_number_circle_square_30:before{content:""}.i_number_circle_square_40:before{content:""}.i_number_circle_square_50:before{content:""}.i_number_circle_square_60:before{content:""}.i_number_circle_square_70:before{content:""}.i_number_circle_square_80:before{content:""}.i_number_circle_small_fill_0:before{content:""}.i_number_circle_small_fill_1:before{content:""}.i_number_circle_small_fill_2:before{content:""}.i_number_circle_small_fill_3:before{content:""}.i_number_circle_small_fill_4:before{content:""}.i_number_circle_small_fill_5:before{content:""}.i_number_circle_small_fill_6:before{content:""}.i_number_circle_small_fill_7:before{content:""}.i_number_circle_small_fill_8:before{content:""}.i_number_circle_small_fill_9:before{content:""}.i_number_circle_small_fill_10:before{content:""}.i_number_fraction_1_4:before{content:""}.i_number_fraction_1_2:before{content:""}.i_number_fraction_3_4:before{content:""}.i_number_fraction_1_7:before{content:""}.i_number_fraction_1_9:before{content:""}.i_number_fraction_1_10:before{content:""}.i_number_fraction_1_3:before{content:""}.i_number_fraction_2_3:before{content:""}.i_number_fraction_1_5:before{content:""}.i_number_fraction_2_5:before{content:""}.i_number_fraction_3_5:before{content:""}.i_number_fraction_4_5:before{content:""}.i_number_fraction_1_6:before{content:""}.i_number_fraction_5_6:before{content:""}.i_number_fraction_1_8:before{content:""}.i_number_fraction_3_8:before{content:""}.i_number_fraction_5_8:before{content:""}.i_number_fraction_7_8:before{content:""}.i_number_fraction_1_x:before{content:""}.i_number_fraction_0_3:before{content:""}.i_position_indicator:before{content:"⌖"}.i_house:before{content:"⌂"}.i_shape_circle:before{content:""}.i_shape_circle_xl:before{content:""}.i_shape_circle_lg:before{content:""}.i_shape_circle_md:before{content:""}.i_shape_circle_sm:before{content:""}.i_shape_circle_xs:before{content:""}.i_shape_circle_fill:before{content:""}.i_shape_circle_fill_lg:before{content:""}.i_shape_circle_fill_md:before{content:""}.i_shape_circle_fill_xs:before{content:""}.i_shape_circle_dotted:before{content:""}.i_shape_circle_circle:before{content:""}.i_shape_circle_dot:before{content:""}.i_shape_circle_hatch_vertical:before{content:""}.i_shape_circle_fill_half_upper:before{content:""}.i_shape_circle_fill_half_lower:before{content:""}.i_shape_circle_fill_half_left:before{content:""}.i_shape_circle_fill_half_right:before{content:""}.i_shape_circle_part_fill_half_left:before{content:""}.i_shape_circle_part_fill_half_right:before{content:""}.i_shape_circle_quarter_upper_left:before{content:""}.i_shape_circle_quarter_upper_right:before{content:""}.i_shape_circle_quarter_lower_left:before{content:""}.i_shape_circle_quarter_lower_right:before{content:""}.i_shape_circle_fill_quarter_upper_right:before{content:""}.i_shape_circle_fill_quarter_three:before{content:""}.i_shape_circle_arc_half_upper:before{content:""}.i_shape_circle_arc_half_lower:before{content:""}.i_shape_circle_arc_quarter_upper_left:before{content:""}.i_shape_circle_arc_quarter_upper_right:before{content:""}.i_shape_circle_arc_quarter_lower_left:before{content:""}.i_shape_circle_arc_quarter_lower_right:before{content:""}.i_shape_circle_inverse:before{content:""}.i_shape_circle_inverse_upper:before{content:""}.i_shape_circle_inverse_lower:before{content:""}.i_shape_circle_inverse_bullet:before{content:""}.i_shape_ellipse_horizontal:before{content:""}.i_shape_ellipse_vertical:before{content:""}.i_shape_ellipse_fill_horizontal:before{content:""}.i_shape_ellipse_fill_vertical:before{content:""}.i_shape_triangle_triangle:before{content:""}.i_triangle_xl:before{content:"⃤"}.i_shape_triangle:before{content:""}.i_shape_triangle_down:before{content:""}.i_shape_triangle_left:before{content:""}.i_shape_triangle_right:before{content:""}.i_shape_triangle_sm:before{content:""}.i_shape_triangle_sm_down:before{content:""}.i_shape_triangle_sm_left:before{content:""}.i_shape_triangle_sm_right:before{content:""}.i_shape_triangle_fill:before{content:""}.i_shape_triangle_fill_down:before{content:""}.i_shape_triangle_fill_left:before{content:""}.i_shape_triangle_fill_right:before{content:""}.i_shape_triangle_fill_md:before{content:""}.i_shape_triangle_fill_md_down:before{content:""}.i_shape_triangle_fill_md_left:before{content:""}.i_shape_triangle_fill_md_right:before{content:""}.i_shape_triangle_fill_sm:before{content:""}.i_shape_triangle_fill_sm_down:before{content:""}.i_shape_triangle_fill_sm_left:before{content:""}.i_shape_triangle_fill_sm_right:before{content:""}.i_shape_triangle_dot:before{content:""}.i_shape_triangle_fill_half_left:before{content:""}.i_shape_triangle_fill_half_right:before{content:""}.i_shape_triangle_down_fill_half_left:before{content:""}.i_shape_triangle_down_fill_half_right:before{content:""}.i_shape_triangle_lower_left:before{content:""}.i_shape_triangle_upper_right:before{content:""}.i_shape_triangle_upper_left:before{content:""}.i_shape_triangle_lower_right:before{content:""}.i_shape_triangle_fill_lower_left:before{content:""}.i_shape_triangle_fill_upper_right:before{content:""}.i_shape_triangle_fill_upper_left:before{content:""}.i_shape_triangle_fill_lower_right:before{content:""}.i_shape_lozenge:before{content:""}.i_shape_lozenge_md:before{content:""}.i_shape_lozenge_sm:before{content:""}.i_shape_lozenge_fill:before{content:""}.i_shape_lozenge_fill_md:before{content:""}.i_shape_lozenge_fill_sm:before{content:""}.i_shape_lozenge_fill_xs:before{content:""}.i_shape_lozenge_line_horizontal:before{content:""}.i_shape_lozenge_lozenge:before{content:""}.i_shape_square:before{content:""}.i_shape_square_xl:before{content:""}.i_shape_square_lg:before{content:""}.i_shape_square_md:before{content:""}.i_shape_square_ms:before{content:""}.i_shape_square_sm:before{content:""}.i_shape_square_xs:before{content:""}.i_shape_square_fill:before{content:""}.i_shape_square_fill_lg:before{content:""}.i_shape_square_fill_md:before{content:""}.i_shape_square_fill_ms:before{content:""}.i_shape_square_fill_sm:before{content:""}.i_shape_square_fill_xs:before{content:""}.i_shape_square_rounded:before{content:"▢"}.i_shape_square_dotted:before{content:"⬚"}.i_shape_square_line_vertical:before{content:""}.i_shape_square_square:before{content:""}.i_shape_square_hatch_horizontal:before{content:""}.i_shape_square_hatch_vertical:before{content:""}.i_shape_square_hatch_diagonal_left:before{content:""}.i_shape_square_hatch_diagonal_right:before{content:""}.i_shape_square_hatch_cross:before{content:""}.i_shape_square_hatch_diagonal_cross:before{content:""}.i_shape_square_quarter_upper_left:before{content:""}.i_shape_square_quarter_upper_right:before{content:""}.i_shape_square_quarter_lower_left:before{content:""}.i_shape_square_quarter_lower_right:before{content:""}.i_shape_square_fill_half_upper:before{content:""}.i_shape_square_fill_half_lower:before{content:""}.i_shape_square_fill_half_left:before{content:""}.i_shape_square_fill_half_right:before{content:""}.i_shape_square_fill_half_upper_left:before{content:""}.i_shape_square_fill_half_upper_right:before{content:""}.i_shape_square_fill_half_lower_left:before{content:""}.i_shape_square_fill_half_lower_right:before{content:""}.i_rectangle_horizontal:before{content:"▭"}.i_rectangle_vertical:before{content:"▯"}.i_rectangle_fill_horizontal:before{content:"▬"}.i_rectangle_fill_vertical:before{content:"▮"}.i_paralellogram:before{content:"▱"}.i_paralellogram_fill:before{content:"▰"}.i_shape_diamond:before{content:""}.i_shape_diamond_xl:before{content:""}.i_shape_diamond_md:before{content:""}.i_shape_diamond_fill:before{content:""}.i_shape_diamond_fill_md:before{content:""}.i_shape_diamond_fill_sm:before{content:""}.i_shape_diamond_diamond:before{content:""}.i_diamond_fill_half_upper:before{content:"⬘"}.i_diamond_fill_half_lower:before{content:"⬙"}.i_diamond_fill_half_left:before{content:"⬖"}.i_diamond_fill_half_right:before{content:"⬗"}.i_pentagon:before{content:"⬠"}.i_pentagon_fill:before{content:"⬟"}.i_pentagon_right:before{content:"⭔"}.i_pentagon_fill_right:before{content:"⭓"}.i_pentagon_fill_down:before{content:"⯂"}.i_hexagon:before{content:"⬡"}.i_hexagon_fill:before{content:"⬢"}.i_hexagon_horizontal_fill:before{content:"⬣"}.i_octagon_fill:before{content:"⯄"}.i_octagon_fill_horizontal:before{content:"⯃"}.i_heart:before{content:"🤍"}.i_heart_fill:before{content:"🖤"}.i_star:before{content:"☆"}.i_star_md:before{content:"⭐"}.i_star_sm:before{content:"⭒"}.i_star_fill:before{content:"★"}.i_star_fill_sm:before{content:"⭑"}.i_star_8_fill:before{content:"🟏"}.i_star_8_fill_md:before{content:"🟎"}.i_time_clock_0100:before{content:""}.i_time_clock_0200:before{content:""}.i_time_clock_0300:before{content:""}.i_time_clock_0400:before{content:""}.i_time_clock_0500:before{content:""}.i_time_clock_0600:before{content:""}.i_time_clock_0700:before{content:""}.i_time_clock_0800:before{content:""}.i_time_clock_0900:before{content:""}.i_time_clock_1000:before{content:""}.i_time_clock_1100:before{content:""}.i_time_clock_0000:before{content:""}.i_time_clock_0130:before{content:""}.i_time_clock_0230:before{content:""}.i_time_clock_0330:before{content:""}.i_time_clock_0430:before{content:""}.i_time_clock_0530:before{content:""}.i_time_clock_0630:before{content:""}.i_time_clock_0730:before{content:""}.i_time_clock_0830:before{content:""}.i_time_clock_0930:before{content:""}.i_time_clock_1030:before{content:""}.i_time_clock_1130:before{content:""}.i_time_clock_0030:before{content:""}.i_time_watch:before{content:""}.i_time_hourglass:before{content:""}.i_time_hourglass_flow:before{content:""}.i_time_alarm:before{content:""}.i_time_stopwatch:before{content:""}.i_time_timer:before{content:""}.i_time_mantelpiece:before{content:"🕰"}.i_arrow_box_down_left:before{content:""}.i_arrow_box_down_right:before{content:""}.i_arrow_box_down:before{content:""}.i_arrow_box_in_down_left:before{content:""}.i_arrow_box_in_down_right:before{content:""}.i_arrow_box_in_down:before{content:""}.i_arrow_box_in_left:before{content:""}.i_arrow_box_in_right:before{content:""}.i_arrow_box_in_up_left:before{content:""}.i_arrow_box_in_up_right:before{content:""}.i_arrow_box_in_up:before{content:""}.i_arrow_box_left:before{content:""}.i_arrow_box_right:before{content:""}.i_arrow_box_up_left:before{content:""}.i_arrow_box_up_right:before{content:""}.i_arrow_box_up:before{content:""}.i_arrow_circle_down_left:before{content:""}.i_arrow_circle_down_right:before{content:""}.i_arrow_circle_down:before{content:""}.i_arrow_circle_fill_down_left:before{content:""}.i_arrow_circle_fill_down_right:before{content:""}.i_arrow_circle_fill_down:before{content:""}.i_arrow_circle_fill_left:before{content:""}.i_arrow_circle_fill_right:before{content:""}.i_arrow_circle_fill_up_left:before{content:""}.i_arrow_circle_fill_up_right:before{content:""}.i_arrow_circle_fill_up:before{content:""}.i_arrow_circle_gap_left_2:before{content:""}.i_arrow_circle_gap_right_2:before{content:""}.i_arrow_circle_left:before{content:""}.i_arrow_circle_right:before{content:""}.i_arrow_circle_up_left:before{content:""}.i_arrow_circle_up_right:before{content:""}.i_arrow_circle_up:before{content:""}.i_arrow_corner_down_left:before{content:""}.i_arrow_corner_up_left:before{content:""}.i_arrow_corner_up_right:before{content:""}.i_arrow_double_cross_in:before{content:""}.i_arrow_double_cross_out:before{content:""}.i_arrow_double_diagonal_in:before{content:""}.i_arrow_double_diagonal_out:before{content:""}.i_arrow_double_left_right:before{content:""}.i_arrow_double_square_in:before{content:""}.i_arrow_double_square_out:before{content:""}.i_arrow_double_up_down:before{content:""}.i_arrow_dual_down:before{content:""}.i_arrow_dual_left:before{content:""}.i_arrow_dual_right:before{content:""}.i_arrow_dual_up:before{content:""}.i_arrow_from_bar_left_right:before{content:""}.i_arrow_from_bar_up_down:before{content:""}.i_arrow_from_corner_lower_left:before{content:""}.i_arrow_from_corner_lower_right:before{content:""}.i_arrow_from_corner_upper_left:before{content:""}.i_arrow_from_corner_upper_right:before{content:""}.i_arrow_large_down_left:before{content:""}.i_arrow_large_down_right:before{content:""}.i_arrow_large_down:before{content:""}.i_arrow_large_left:before{content:""}.i_arrow_large_right:before{content:""}.i_arrow_large_up_left:before{content:""}.i_arrow_large_up_right:before{content:""}.i_arrow_large_up:before{content:""}.i_arrow_long_double_left_right:before{content:""}.i_arrow_long_double_up_down:before{content:""}.i_arrow_long_down_left:before{content:""}.i_arrow_long_down_right:before{content:""}.i_arrow_long_down:before{content:""}.i_arrow_long_up_down:before{content:""}.i_arrow_long_up_left:before{content:""}.i_arrow_long_up_right:before{content:""}.i_arrow_long_up:before{content:""}.i_arrow_small_down_left:before{content:""}.i_arrow_small_down_right:before{content:""}.i_arrow_small_down:before{content:""}.i_arrow_small_left:before{content:""}.i_arrow_small_right:before{content:""}.i_arrow_small_up_left:before{content:""}.i_arrow_small_up_right:before{content:""}.i_arrow_small_up:before{content:""}.i_arrow_square_down_left:before{content:""}.i_arrow_square_down_right:before{content:""}.i_arrow_square_down:before{content:""}.i_arrow_square_fill_down_left:before{content:""}.i_arrow_square_fill_down_right:before{content:""}.i_arrow_square_fill_down:before{content:""}.i_arrow_square_fill_left:before{content:""}.i_arrow_square_fill_right:before{content:""}.i_arrow_square_fill_up_left:before{content:""}.i_arrow_square_fill_up_right:before{content:""}.i_arrow_square_fill_up:before{content:""}.i_arrow_square_left:before{content:""}.i_arrow_square_right:before{content:""}.i_arrow_square_up_left:before{content:""}.i_arrow_square_up_right:before{content:""}.i_arrow_square_up:before{content:""}.i_arrow_to_bar_left_right:before{content:""}.i_arrow_to_bar_up_down:before{content:""}.i_arrow_to_corner_lower_left:before{content:""}.i_arrow_to_corner_upper_right:before{content:""}.i_arrow_triple_down:before{content:""}.i_arrow_triple_left:before{content:""}.i_arrow_triple_right:before{content:""}.i_arrow_triple_up:before{content:""}.i_badge_media_1080p:before{content:""}.i_badge_media_10k:before{content:""}.i_badge_media_12k:before{content:""}.i_badge_media_16k:before{content:""}.i_badge_media_2d:before{content:""}.i_badge_media_2k:before{content:""}.i_badge_media_32k:before{content:""}.i_badge_media_3d:before{content:""}.i_badge_media_4k:before{content:""}.i_badge_media_5k:before{content:""}.i_badge_media_720p:before{content:""}.i_badge_media_8k:before{content:""}.i_badge_media_ar:before{content:""}.i_badge_media_dvd:before{content:""}.i_badge_media_dvi:before{content:""}.i_badge_media_fill_1080p:before{content:""}.i_badge_media_fill_10k:before{content:""}.i_badge_media_fill_12k:before{content:""}.i_badge_media_fill_16k:before{content:""}.i_badge_media_fill_2d:before{content:""}.i_badge_media_fill_2k:before{content:""}.i_badge_media_fill_32k:before{content:""}.i_badge_media_fill_3d:before{content:""}.i_badge_media_fill_4k:before{content:""}.i_badge_media_fill_5k:before{content:""}.i_badge_media_fill_720p:before{content:""}.i_badge_media_fill_8k:before{content:""}.i_badge_media_fill_ar:before{content:""}.i_badge_media_fill_dvd:before{content:""}.i_badge_media_fill_dvi:before{content:""}.i_badge_media_fill_fullhd:before{content:""}.i_badge_media_fill_h264:before{content:""}.i_badge_media_fill_hd:before{content:""}.i_badge_media_fill_hdmi:before{content:""}.i_badge_media_fill_hdtv:before{content:""}.i_badge_media_fill_mp3:before{content:""}.i_badge_media_fill_mp4:before{content:""}.i_badge_media_fill_sd:before{content:""}.i_badge_media_fill_sdtv:before{content:""}.i_badge_media_fill_uhd:before{content:""}.i_badge_media_fill_vga:before{content:""}.i_badge_media_fill_vr:before{content:""}.i_badge_media_fill_xr:before{content:""}.i_badge_media_fullhd:before{content:""}.i_badge_media_h264:before{content:""}.i_badge_media_hd:before{content:""}.i_badge_media_hdmi:before{content:""}.i_badge_media_hdtv:before{content:""}.i_badge_media_mp3:before{content:""}.i_badge_media_mp4:before{content:""}.i_badge_media_sd:before{content:""}.i_badge_media_sdtv:before{content:""}.i_badge_media_uhd:before{content:""}.i_badge_media_vga:before{content:""}.i_badge_media_vr:before{content:""}.i_badge_media_xr:before{content:""}.i_data_chart_pie_01:before{content:""}.i_data_chart_pie_02:before{content:""}.i_data_chart_pie_03:before{content:""}.i_data_chart_pie_04:before{content:""}.i_data_chart_pyramid_01:before{content:""}.i_data_chart_pyramid_02:before{content:""}.i_data_chart_pyramid_03:before{content:""}.i_data_chart_radar_01:before{content:""}.i_design_palette:before{content:""}.i_file_type_3dm:before{content:""}.i_file_type_3gp:before{content:""}.i_file_type_aac:before{content:""}.i_file_type_ai:before{content:""}.i_file_type_aspx:before{content:""}.i_file_type_avi:before{content:""}.i_file_type_bib:before{content:""}.i_file_type_bin:before{content:""}.i_file_type_blend:before{content:""}.i_file_type_bmp:before{content:""}.i_file_type_cs:before{content:""}.i_file_type_css:before{content:""}.i_file_type_csv:before{content:""}.i_file_type_dll:before{content:""}.i_file_type_dmg:before{content:""}.i_file_type_doc:before{content:""}.i_file_type_docx:before{content:""}.i_file_type_dwg:before{content:""}.i_file_type_eml:before{content:""}.i_file_type_eot:before{content:""}.i_file_type_exe:before{content:""}.i_file_type_gh:before{content:""}.i_file_type_gif:before{content:""}.i_file_type_git:before{content:""}.i_file_type_hbs:before{content:""}.i_file_type_heic:before{content:""}.i_file_type_html:before{content:""}.i_file_type_ico:before{content:""}.i_file_type_indd:before{content:""}.i_file_type_ini:before{content:""}.i_file_type_iso_80:before{content:""}.i_file_type_iso_83:before{content:""}.i_file_type_iso:before{content:""}.i_file_type_jar:before{content:""}.i_file_type_java:before{content:""}.i_file_type_jinja:before{content:""}.i_file_type_jpg:before{content:""}.i_file_type_js:before{content:""}.i_file_type_json:before{content:""}.i_file_type_jsx:before{content:""}.i_file_type_key:before{content:""}.i_file_type_m4p:before{content:""}.i_file_type_md:before{content:""}.i_file_type_mdx:before{content:""}.i_file_type_mkv:before{content:""}.i_file_type_mov:before{content:""}.i_file_type_mp3:before{content:""}.i_file_type_mp4:before{content:""}.i_file_type_mpg:before{content:""}.i_file_type_msi:before{content:""}.i_file_type_obj:before{content:""}.i_file_type_ogg:before{content:""}.i_file_type_otf:before{content:""}.i_file_type_pdf:before{content:""}.i_file_type_php:before{content:""}.i_file_type_png:before{content:""}.i_file_type_ppt:before{content:""}.i_file_type_pptx:before{content:""}.i_file_type_psd:before{content:""}.i_file_type_psql:before{content:""}.i_file_type_py:before{content:""}.i_file_type_qgs:before{content:""}.i_file_type_rar:before{content:""}.i_file_type_raw:before{content:""}.i_file_type_rb:before{content:""}.i_file_type_ris:before{content:""}.i_file_type_rtf:before{content:""}.i_file_type_sass:before{content:""}.i_file_type_scss:before{content:""}.i_file_type_sh:before{content:""}.i_file_type_shp:before{content:""}.i_file_type_skp:before{content:""}.i_file_type_sql:before{content:""}.i_file_type_stl:before{content:""}.i_file_type_svg:before{content:""}.i_file_type_tar:before{content:""}.i_file_type_tex:before{content:""}.i_file_type_tiff:before{content:""}.i_file_type_tmp:before{content:""}.i_file_type_ts:before{content:""}.i_file_type_tsx:before{content:""}.i_file_type_ttf:before{content:""}.i_file_type_txt:before{content:""}.i_file_type_wav:before{content:""}.i_file_type_webp:before{content:""}.i_file_type_woff:before{content:""}.i_file_type_woff2:before{content:""}.i_file_type_xls:before{content:""}.i_file_type_xlsx:before{content:""}.i_file_type_yml:before{content:""}.i_file_type_zip:before{content:""}.i_game_cards:before{content:""}.i_game_dice_0_fill:before{content:""}.i_game_dice_0:before{content:""}.i_game_dice_1_fill:before{content:""}.i_game_dice_2_fill:before{content:""}.i_game_dice_3_fill:before{content:""}.i_game_dice_4_fill:before{content:""}.i_game_dice_5_fill:before{content:""}.i_game_dice_6_fill:before{content:""}.i_game_dices_fill:before{content:""}.i_game_dices:before{content:""}.i_letters_circle_a:before{content:""}.i_letters_circle_at:before{content:""}.i_letters_circle_b:before{content:""}.i_letters_circle_c:before{content:""}.i_letters_circle_d:before{content:""}.i_letters_circle_e:before{content:""}.i_letters_circle_exclamation:before{content:""}.i_letters_circle_f:before{content:""}.i_letters_circle_fill_a:before{content:""}.i_letters_circle_fill_at:before{content:""}.i_letters_circle_fill_b:before{content:""}.i_letters_circle_fill_c:before{content:""}.i_letters_circle_fill_d:before{content:""}.i_letters_circle_fill_e:before{content:""}.i_letters_circle_fill_exclamation:before{content:""}.i_letters_circle_fill_f:before{content:""}.i_letters_circle_fill_g:before{content:""}.i_letters_circle_fill_h:before{content:""}.i_letters_circle_fill_hashtag:before{content:""}.i_letters_circle_fill_i:before{content:""}.i_letters_circle_fill_j:before{content:""}.i_letters_circle_fill_k:before{content:""}.i_letters_circle_fill_l:before{content:""}.i_letters_circle_fill_m:before{content:""}.i_letters_circle_fill_n:before{content:""}.i_letters_circle_fill_o:before{content:""}.i_letters_circle_fill_p:before{content:""}.i_letters_circle_fill_q:before{content:""}.i_letters_circle_fill_question:before{content:""}.i_letters_circle_fill_r:before{content:""}.i_letters_circle_fill_s:before{content:""}.i_letters_circle_fill_t:before{content:""}.i_letters_circle_fill_u:before{content:""}.i_letters_circle_fill_v:before{content:""}.i_letters_circle_fill_w:before{content:""}.i_letters_circle_fill_x:before{content:""}.i_letters_circle_fill_y:before{content:""}.i_letters_circle_fill_z:before{content:""}.i_letters_circle_g:before{content:""}.i_letters_circle_h:before{content:""}.i_letters_circle_hashtag:before{content:""}.i_letters_circle_i:before{content:""}.i_letters_circle_j:before{content:""}.i_letters_circle_k:before{content:""}.i_letters_circle_l:before{content:""}.i_letters_circle_m:before{content:""}.i_letters_circle_n:before{content:""}.i_letters_circle_o:before{content:""}.i_letters_circle_p:before{content:""}.i_letters_circle_q:before{content:""}.i_letters_circle_question:before{content:""}.i_letters_circle_r:before{content:""}.i_letters_circle_s:before{content:""}.i_letters_circle_t:before{content:""}.i_letters_circle_u:before{content:""}.i_letters_circle_v:before{content:""}.i_letters_circle_w:before{content:""}.i_letters_circle_x:before{content:""}.i_letters_circle_y:before{content:""}.i_letters_circle_z:before{content:""}.i_letters_square_a:before{content:""}.i_letters_square_at:before{content:""}.i_letters_square_b:before{content:""}.i_letters_square_c:before{content:""}.i_letters_square_d:before{content:""}.i_letters_square_e:before{content:""}.i_letters_square_exclamation:before{content:""}.i_letters_square_f:before{content:""}.i_letters_square_fill_a:before{content:""}.i_letters_square_fill_at:before{content:""}.i_letters_square_fill_b:before{content:""}.i_letters_square_fill_c:before{content:""}.i_letters_square_fill_d:before{content:""}.i_letters_square_fill_e:before{content:""}.i_letters_square_fill_exclamation:before{content:""}.i_letters_square_fill_f:before{content:""}.i_letters_square_fill_g:before{content:""}.i_letters_square_fill_h:before{content:""}.i_letters_square_fill_hashtag:before{content:""}.i_letters_square_fill_i:before{content:""}.i_letters_square_fill_j:before{content:""}.i_letters_square_fill_k:before{content:""}.i_letters_square_fill_l:before{content:""}.i_letters_square_fill_m:before{content:""}.i_letters_square_fill_n:before{content:""}.i_letters_square_fill_o:before{content:""}.i_letters_square_fill_p:before{content:""}.i_letters_square_fill_q:before{content:""}.i_letters_square_fill_question:before{content:""}.i_letters_square_fill_r:before{content:""}.i_letters_square_fill_s:before{content:""}.i_letters_square_fill_t:before{content:""}.i_letters_square_fill_u:before{content:""}.i_letters_square_fill_v:before{content:""}.i_letters_square_fill_w:before{content:""}.i_letters_square_fill_x:before{content:""}.i_letters_square_fill_y:before{content:""}.i_letters_square_fill_z:before{content:""}.i_letters_square_g:before{content:""}.i_letters_square_h:before{content:""}.i_letters_square_hashtag:before{content:""}.i_letters_square_i:before{content:""}.i_letters_square_j:before{content:""}.i_letters_square_k:before{content:""}.i_letters_square_l:before{content:""}.i_letters_square_m:before{content:""}.i_letters_square_n:before{content:""}.i_letters_square_o:before{content:""}.i_letters_square_p:before{content:""}.i_letters_square_q:before{content:""}.i_letters_square_question:before{content:""}.i_letters_square_r:before{content:""}.i_letters_square_s:before{content:""}.i_letters_square_t:before{content:""}.i_letters_square_u:before{content:""}.i_letters_square_v:before{content:""}.i_letters_square_w:before{content:""}.i_letters_square_x:before{content:""}.i_letters_square_y:before{content:""}.i_letters_square_z:before{content:""}.i_logo_starling_md:before{content:""}.i_logo_starling_sm:before{content:""}.i_logo_starling_xl:before{content:""}.i_logo_starling:before{content:""}.i_map_compass_circle_e:before{content:""}.i_map_compass_circle_fill_e:before{content:""}.i_map_compass_circle_fill_n:before{content:""}.i_map_compass_circle_fill_ne:before{content:""}.i_map_compass_circle_fill_nw:before{content:""}.i_map_compass_circle_fill_s:before{content:""}.i_map_compass_circle_fill_se:before{content:""}.i_map_compass_circle_fill_sw:before{content:""}.i_map_compass_circle_fill_w:before{content:""}.i_map_compass_circle_n:before{content:""}.i_map_compass_circle_ne:before{content:""}.i_map_compass_circle_nw:before{content:""}.i_map_compass_circle_s:before{content:""}.i_map_compass_circle_se:before{content:""}.i_map_compass_circle_sw:before{content:""}.i_map_compass_circle_w:before{content:""}.i_map_compass_e:before{content:""}.i_map_compass_fill_e:before{content:""}.i_map_compass_fill_n:before{content:""}.i_map_compass_fill_ne:before{content:""}.i_map_compass_fill_nw:before{content:""}.i_map_compass_fill_s:before{content:""}.i_map_compass_fill_se:before{content:""}.i_map_compass_fill_sw:before{content:""}.i_map_compass_fill_w:before{content:""}.i_map_compass_n:before{content:""}.i_map_compass_ne:before{content:""}.i_map_compass_nw:before{content:""}.i_map_compass_s:before{content:""}.i_map_compass_se:before{content:""}.i_map_compass_stripe_e:before{content:""}.i_map_compass_stripe_n:before{content:""}.i_map_compass_stripe_ne:before{content:""}.i_map_compass_stripe_nw:before{content:""}.i_map_compass_stripe_s:before{content:""}.i_map_compass_stripe_se:before{content:""}.i_map_compass_stripe_sw:before{content:""}.i_map_compass_stripe_w:before{content:""}.i_map_compass_sw:before{content:""}.i_map_compass_w:before{content:""}.i_map_globe_01_tilt:before{content:""}.i_map_globe_01:before{content:""}.i_map_globe_02_tilt:before{content:""}.i_map_globe_02:before{content:""}.i_map_globe_03_tilt:before{content:""}.i_map_globe_03:before{content:""}.i_nature_animal_bear:before{content:""}.i_nature_animal_bull:before{content:""}.i_nature_animal_camel:before{content:""}.i_nature_animal_chicken:before{content:""}.i_nature_animal_cow:before{content:""}.i_nature_animal_dear:before{content:""}.i_nature_animal_duck_01:before{content:""}.i_nature_animal_duck_27:before{content:""}.i_nature_animal_elephant:before{content:""}.i_nature_animal_fill_beaver:before{content:""}.i_nature_animal_fill_bull:before{content:""}.i_nature_animal_fill_dog:before{content:""}.i_nature_animal_fill_elephant:before{content:""}.i_nature_animal_fill_fish:before{content:""}.i_nature_animal_fill_flamingo:before{content:""}.i_nature_animal_fill_goose:before{content:""}.i_nature_animal_fill_pig:before{content:""}.i_nature_animal_fill_polar_bear:before{content:""}.i_nature_animal_fill_rhinoceros:before{content:""}.i_nature_animal_fill_seal:before{content:""}.i_nature_animal_fill_snake:before{content:""}.i_nature_animal_fill_whale:before{content:""}.i_nature_animal_flamingo:before{content:""}.i_nature_animal_fox:before{content:""}.i_nature_animal_giraffe:before{content:""}.i_nature_animal_gorilla:before{content:""}.i_nature_animal_hippo:before{content:""}.i_nature_animal_horse:before{content:""}.i_nature_animal_kangaroo:before{content:""}.i_nature_animal_koala:before{content:""}.i_nature_animal_lama:before{content:""}.i_nature_animal_leopard:before{content:""}.i_nature_animal_lion:before{content:""}.i_nature_animal_monkey:before{content:""}.i_nature_animal_pelican:before{content:""}.i_nature_animal_pig:before{content:""}.i_nature_animal_rabbit:before{content:""}.i_nature_animal_sheep:before{content:""}.i_nature_animal_snake:before{content:""}.i_nature_animal_squirrel:before{content:""}.i_nature_animal_toucan:before{content:""}.i_nature_animal_zebra:before{content:""}.i_number_10:before{content:""}.i_number_circle_fill_1:before{content:""}.i_number_circle_fill_2:before{content:""}.i_number_circle_fill_3:before{content:""}.i_number_circle_fill_4:before{content:""}.i_number_circle_fill_5:before{content:""}.i_number_circle_fill_6:before{content:""}.i_number_circle_fill_7:before{content:""}.i_number_circle_fill_8:before{content:""}.i_number_circle_fill_9:before{content:""}.i_number_circle_square_0:before{content:""}.i_number_circle_square_90:before{content:""}.i_number_square_0:before{content:""}.i_number_square_1:before{content:""}.i_number_square_10:before{content:""}.i_number_square_11:before{content:""}.i_number_square_12:before{content:""}.i_number_square_13:before{content:""}.i_number_square_14:before{content:""}.i_number_square_15:before{content:""}.i_number_square_16:before{content:""}.i_number_square_17:before{content:""}.i_number_square_18:before{content:""}.i_number_square_19:before{content:""}.i_number_square_2:before{content:""}.i_number_square_20:before{content:""}.i_number_square_3:before{content:""}.i_number_square_4:before{content:""}.i_number_square_5:before{content:""}.i_number_square_6:before{content:""}.i_number_square_7:before{content:""}.i_number_square_8:before{content:""}.i_number_square_9:before{content:""}.i_number_square_fill_0:before{content:""}.i_number_square_fill_1:before{content:""}.i_number_square_fill_10:before{content:""}.i_number_square_fill_11:before{content:""}.i_number_square_fill_12:before{content:""}.i_number_square_fill_13:before{content:""}.i_number_square_fill_14:before{content:""}.i_number_square_fill_15:before{content:""}.i_number_square_fill_16:before{content:""}.i_number_square_fill_17:before{content:""}.i_number_square_fill_18:before{content:""}.i_number_square_fill_19:before{content:""}.i_number_square_fill_2:before{content:""}.i_number_square_fill_20:before{content:""}.i_number_square_fill_3:before{content:""}.i_number_square_fill_4:before{content:""}.i_number_square_fill_5:before{content:""}.i_number_square_fill_6:before{content:""}.i_number_square_fill_7:before{content:""}.i_number_square_fill_8:before{content:""}.i_number_square_fill_9:before{content:""}.i_people_and_heart:before{content:""}.i_people_and_min:before{content:""}.i_people_and_plus:before{content:""}.i_people_and_star:before{content:""}.i_people_arrow_growth:before{content:""}.i_people_arrow_linear:before{content:""}.i_people_circle:before{content:""}.i_people_connection_inner:before{content:""}.i_people_connection:before{content:""}.i_people_family:before{content:""}.i_people_heart_02:before{content:""}.i_people_heart:before{content:""}.i_people_person_fill_lg:before{content:""}.i_people_person_fill_lm:before{content:""}.i_people_person_fill_md:before{content:""}.i_people_person_fill_ms:before{content:""}.i_people_person_fill_sm:before{content:""}.i_people_person_fill_us:before{content:""}.i_people_person_fill_xs:before{content:""}.i_people_person_lg:before{content:""}.i_people_person_lm:before{content:""}.i_people_person_md:before{content:""}.i_people_person_ms:before{content:""}.i_people_person_sm:before{content:""}.i_people_person_us:before{content:""}.i_people_person_xs:before{content:""}.i_people_three_03:before{content:""}.i_people_three_diamond:before{content:""}.i_people_three_growth:before{content:""}.i_people_three_heart:before{content:""}.i_people_three_lg:before{content:""}.i_people_three_linear:before{content:""}.i_people_three_star:before{content:""}.i_people_two_01:before{content:""}.i_people_two_02:before{content:""}.i_people_two_03:before{content:""}.i_people_two_growth:before{content:""}.i_people_two_linear:before{content:""}.i_people_two_merged:before{content:""}.i_places:before{content:""}.i_science_erlenmeyer_pour:before{content:""}.i_science_erlenmeyer:before{content:""}.i_science_vial_two:before{content:""}.i_science_vial:before{content:""}.i_shape_29:before{content:""}.i_shape_36:before{content:""}.i_shape_37:before{content:""}.i_shape_circle_arc_half_left:before{content:""}.i_shape_circle_arc_half_right:before{content:""}.i_shape_circle_fill_ms:before{content:""}.i_shape_circle_fill_quarter_lower_left:before{content:""}.i_shape_circle_fill_quarter_lower_right:before{content:""}.i_shape_circle_fill_quarter_upper_left:before{content:""}.i_shape_circle_fill_sm:before{content:""}.i_shape_circle_fill_xl:before{content:""}.i_shape_circle_hatch_horizontal:before{content:""}.i_shape_circle_ms:before{content:""}.i_shape_circle_part_fill_half_lower:before{content:""}.i_shape_circle_part_fill_half_upper:before{content:""}.i_shape_circle_part_half_left:before{content:""}.i_shape_circle_part_half_lower:before{content:""}.i_shape_circle_part_half_right:before{content:""}.i_shape_circle_part_half_upper:before{content:""}.i_shape_diamond_fill_half_left:before{content:""}.i_shape_diamond_fill_half_lower:before{content:""}.i_shape_diamond_fill_half_right:before{content:""}.i_shape_diamond_fill_half_upper:before{content:""}.i_shape_diamond_fill_xl:before{content:""}.i_shape_diamond_sm:before{content:""}.i_shape_hexagon_fill_half_left:before{content:""}.i_shape_hexagon_fill_half_right:before{content:""}.i_shape_hexagon_fill_md_60:before{content:""}.i_shape_hexagon_fill_md_62:before{content:""}.i_shape_hexagon_fill:before{content:""}.i_shape_hexagon_hatch_horizontal:before{content:""}.i_shape_hexagon_hatch_vertical:before{content:""}.i_shape_hexagon_horizontal_fill:before{content:""}.i_shape_hexagon_horizontal:before{content:""}.i_shape_hexagon_md_44:before{content:""}.i_shape_hexagon_md_46:before{content:""}.i_shape_hexagon_part:before{content:""}.i_shape_hexagon:before{content:""}.i_shape_lozenge_line_vertical:before{content:""}.i_shape_lozenge_xs:before{content:""}.i_shape_octagon_fill_horizontal:before{content:""}.i_shape_octagon_horizontal:before{content:""}.i_shape_octagon:before{content:""}.i_shape_paralellogram_fill:before{content:""}.i_shape_paralellogram:before{content:""}.i_shape_pentagon_down:before{content:""}.i_shape_pentagon_fill_down:before{content:""}.i_shape_pentagon_fill_half_left:before{content:""}.i_shape_pentagon_fill_half_right:before{content:""}.i_shape_pentagon_fill_left:before{content:""}.i_shape_pentagon_fill_md_28:before{content:""}.i_shape_pentagon_fill_md_30:before{content:""}.i_shape_pentagon_fill_right:before{content:""}.i_shape_pentagon_fill:before{content:""}.i_shape_pentagon_left:before{content:""}.i_shape_pentagon_md:before{content:""}.i_shape_pentagon_part:before{content:""}.i_shape_pentagon_right:before{content:""}.i_shape_pentagon_sm:before{content:""}.i_shape_pentagon:before{content:""}.i_shape_rectangle_fill_horizontal:before{content:""}.i_shape_rectangle_fill_vertical:before{content:""}.i_shape_rectangle_horizontal:before{content:""}.i_shape_rectangle_vertical:before{content:""}.i_shape_square_fill_xl:before{content:""}.i_shape_square_line_horizontal:before{content:""}.i_shape_triangle_dotted:before{content:""}.i_shape_triangle_down_line_vertical:before{content:""}.i_shape_triangle_fill_xl:before{content:""}.i_shape_triangle_line_vertical:before{content:""}.i_shape_triangle_md_down:before{content:""}.i_shape_triangle_md_left:before{content:""}.i_shape_triangle_md_right:before{content:""}.i_shape_triangle_md:before{content:""}.i_shape_triangle_xl:before{content:""}.i_social_academia:before{content:""}.i_social_adobe_cc:before{content:""}.i_social_airtable_18:before{content:""}.i_social_airtable_19:before{content:""}.i_social_amazon:before{content:""}.i_social_anaconda:before{content:""}.i_social_apple:before{content:""}.i_social_atlassian:before{content:""}.i_social_baidu:before{content:""}.i_social_behance:before{content:""}.i_social_bing:before{content:""}.i_social_bitcoin:before{content:""}.i_social_blender:before{content:""}.i_social_celery:before{content:""}.i_social_cloudflare:before{content:""}.i_social_creative_commons:before{content:""}.i_social_css3:before{content:""}.i_social_dependabot:before{content:""}.i_social_discord:before{content:""}.i_social_docker:before{content:""}.i_social_epic_games:before{content:""}.i_social_eslint:before{content:""}.i_social_ethereum:before{content:""}.i_social_facebook:before{content:""}.i_social_figma:before{content:""}.i_social_firebase:before{content:""}.i_social_flickr:before{content:""}.i_social_git:before{content:""}.i_social_github:before{content:""}.i_social_google:before{content:""}.i_social_graphql:before{content:""}.i_social_gravatar:before{content:""}.i_social_helm:before{content:""}.i_social_html5:before{content:""}.i_social_ideal:before{content:""}.i_social_imdb:before{content:""}.i_social_instagram:before{content:""}.i_social_internet_archive:before{content:""}.i_social_internet_explorer:before{content:""}.i_social_issuu:before{content:""}.i_social_javascript:before{content:""}.i_social_jinja:before{content:""}.i_social_json:before{content:""}.i_social_linkedin:before{content:""}.i_social_squarespace:before{content:""}.i_social_vimeo:before{content:""}.i_social_wikipedia:before{content:""}.i_social_x:before{content:""}.i_solid_cube_02:before{content:""}.i_solid_cube_arrow:before{content:""}.i_solid_cube_scene_02:before{content:""}.i_solid_cube_scene:before{content:""}.i_solid_cube:before{content:""}.i_solid_pyramid:before{content:""}.i_symbol_01:before{content:""}.i_symbol_02:before{content:""}.i_symbol_03:before{content:""}.i_symbol_04:before{content:""}.i_symbol_09:before{content:""}.i_symbol_10:before{content:""}.i_symbol_11:before{content:""}.i_symbol_12:before{content:""}.i_symbol_atom:before{content:""}.i_symbol_diamond_md:before{content:""}.i_symbol_diamond:before{content:""}.i_symbol_heart_fill_md:before{content:""}.i_symbol_heart_fill_sm:before{content:""}.i_symbol_heart_fill_xs:before{content:""}.i_symbol_heart_fill:before{content:""}.i_symbol_heart_ms:before{content:""}.i_symbol_heart_sm:before{content:""}.i_symbol_heart_xs:before{content:""}.i_symbol_heart:before{content:""}.i_symbol_qr:before{content:""}.i_symbol_star_8_fill_md:before{content:""}.i_symbol_star_8_fill_sm:before{content:""}.i_symbol_star_8_fill_xs:before{content:""}.i_symbol_star_8_fill:before{content:""}.i_symbol_star_8_md:before{content:""}.i_symbol_star_8_sm:before{content:""}.i_symbol_star_8_xs:before{content:""}.i_symbol_star_8:before{content:""}.i_symbol_star_fill_md:before{content:""}.i_symbol_star_fill_sm:before{content:""}.i_symbol_star_fill_xs:before{content:""}.i_symbol_star_fill:before{content:""}.i_symbol_star_ms:before{content:""}.i_symbol_star_sm:before{content:""}.i_symbol_star_xs:before{content:""}.i_symbol_star:before{content:""}.i_symbol_swirl_left_02:before{content:""}.i_symbol_swirl_right_02:before{content:""}.i_symbol_swirl_right:before{content:""}.i_system_key:before{content:""}.i_system_settings:before{content:""}.i_system_trash:before{content:""}.i_time_alarm_fill:before{content:""}.i_time_clock_0000_fill:before{content:""}.i_time_clock_0000_square_fill:before{content:""}.i_time_clock_0000_square:before{content:""}.i_time_clock_0030_fill:before{content:""}.i_time_clock_0030_square_fill:before{content:""}.i_time_clock_0030_square:before{content:""}.i_time_clock_0100_fill:before{content:""}.i_time_clock_0100_square_fill:before{content:""}.i_time_clock_0100_square:before{content:""}.i_time_clock_0130_fill:before{content:""}.i_time_clock_0130_square_fill:before{content:""}.i_time_clock_0130_square:before{content:""}.i_time_clock_0200_fill:before{content:""}.i_time_clock_0200_square_fill:before{content:""}.i_time_clock_0200_square:before{content:""}.i_time_clock_0230_fill:before{content:""}.i_time_clock_0230_square_fill:before{content:""}.i_time_clock_0230_square:before{content:""}.i_time_clock_0300_fill:before{content:""}.i_time_clock_0300_square_fill:before{content:""}.i_time_clock_0300_square:before{content:""}.i_time_clock_0330_fill:before{content:""}.i_time_clock_0330_square_fill:before{content:""}.i_time_clock_0330_square:before{content:""}.i_time_clock_0400_fill:before{content:""}.i_time_clock_0400_square_fill:before{content:""}.i_time_clock_0400_square:before{content:""}.i_time_clock_0430_fill:before{content:""}.i_time_clock_0430_square_fill:before{content:""}.i_time_clock_0430_square:before{content:""}.i_time_clock_0500_fill:before{content:""}.i_time_clock_0500_square_fill:before{content:""}.i_time_clock_0500_square:before{content:""}.i_time_clock_0530_fill:before{content:""}.i_time_clock_0530_square_fill:before{content:""}.i_time_clock_0530_square:before{content:""}.i_time_clock_0600_fill:before{content:""}.i_time_clock_0600_square_fill:before{content:""}.i_time_clock_0600_square:before{content:""}.i_time_clock_0630_fill:before{content:""}.i_time_clock_0630_square_fill:before{content:""}.i_time_clock_0630_square:before{content:""}.i_time_clock_0700_fill:before{content:""}.i_time_clock_0700_square_fill:before{content:""}.i_time_clock_0700_square:before{content:""}.i_time_clock_0730_fill:before{content:""}.i_time_clock_0730_square_fill:before{content:""}.i_time_clock_0730_square:before{content:""}.i_time_clock_0800_fill:before{content:""}.i_time_clock_0800_square_fill:before{content:""}.i_time_clock_0800_square:before{content:""}.i_time_clock_0830_fill:before{content:""}.i_time_clock_0830_square_fill:before{content:""}.i_time_clock_0830_square:before{content:""}.i_time_clock_0900_fill:before{content:""}.i_time_clock_0900_square_fill:before{content:""}.i_time_clock_0900_square:before{content:""}.i_time_clock_0930_fill:before{content:""}.i_time_clock_0930_square_fill:before{content:""}.i_time_clock_0930_square:before{content:""}.i_time_clock_1000_fill:before{content:""}.i_time_clock_1000_square_fill:before{content:""}.i_time_clock_1000_square:before{content:""}.i_time_clock_1030_fill:before{content:""}.i_time_clock_1030_square_fill:before{content:""}.i_time_clock_1030_square:before{content:""}.i_time_clock_1100_fill:before{content:""}.i_time_clock_1100_square_fill:before{content:""}.i_time_clock_1100_square:before{content:""}.i_time_clock_1130_fill:before{content:""}.i_time_clock_1130_square_fill:before{content:""}.i_time_clock_1130_square:before{content:""}.i_time_clock_fill:before{content:""}.i_time_clock_history:before{content:""}.i_time_clock_mantelpiece_fill:before{content:""}.i_time_clock_mantelpiece:before{content:""}.i_time_clock:before{content:""}.i_time_is_money:before{content:""}.i_time_stopwatch_00:before{content:""}.i_time_stopwatch_01:before{content:""}.i_time_stopwatch_02:before{content:""}.i_time_stopwatch_03:before{content:""}.i_time_stopwatch_04:before{content:""}.i_time_stopwatch_05:before{content:""}.i_time_stopwatch_06:before{content:""}.i_time_stopwatch_07:before{content:""}.i_time_stopwatch_08:before{content:""}.i_time_stopwatch_fill:before{content:""}.i_time_timer_fill:before{content:""}.i_transport_airport:before{content:""}.i_transport_anchor:before{content:""}.i_transport_bicycle_storage:before{content:""}.i_transport_bicycle:before{content:""}.i_transport_boat:before{content:""}.i_transport_bridge_02:before{content:""}.i_transport_bridge:before{content:""}.i_transport_bus:before{content:""}.i_transport_camper_02:before{content:""}.i_transport_camper:before{content:""}.i_transport_car_rental:before{content:""}.i_transport_car:before{content:""}.i_transport_cargo_ship_02:before{content:""}.i_transport_cargo_ship:before{content:""}.i_transport_crane_truck:before{content:""}.i_transport_electric_car:before{content:""}.i_transport_excavator:before{content:""}.i_transport_ferry_vehicle:before{content:""}.i_transport_ferry:before{content:""}.i_transport_fire_truck:before{content:""}.i_transport_garbage_truck:before{content:""}.i_transport_gas_station:before{content:""}.i_transport_gondola:before{content:""}.i_transport_helicopter:before{content:""}.i_transport_highway:before{content:""}.i_transport_hot_air_balloon:before{content:""}.i_transport_jeep:before{content:""}.i_transport_maintenance:before{content:""}.i_transport_metro:before{content:""}.i_transport_motorcycle_02:before{content:""}.i_transport_motorcycle:before{content:""}.i_transport_no_parking:before{content:""}.i_transport_nuclear_waste:before{content:""}.i_transport_package_truck:before{content:""}.i_transport_parking:before{content:""}.i_transport_quad_bike:before{content:""}.i_transport_roundabout:before{content:""}.i_transport_sailboat:before{content:""}.i_transport_scooter_02:before{content:""}.i_transport_scooter:before{content:""}.i_transport_submarine:before{content:""}.i_transport_taxi_02:before{content:""}.i_transport_taxi_boat:before{content:""}.i_transport_taxi_bus:before{content:""}.i_transport_taxi:before{content:""}.i_transport_tractor:before{content:""}.i_transport_traffic_light:before{content:""}.i_transport_train:before{content:""}.i_transport_tram_02:before{content:""}.i_transport_tram_03:before{content:""}.i_transport_tram:before{content:""}.i_transport_truck_02:before{content:""}.i_transport_truck_03:before{content:""}.i_transport_truck:before{content:""}.i_transport_ufo:before{content:""}.i_transport_walking:before{content:""}.i_travel_bar:before{content:""}.i_travel_cafe:before{content:""}.i_travel_cathedral:before{content:""}.i_travel_cloakroom:before{content:""}.i_travel_customs:before{content:""}.i_travel_daycare_center:before{content:""}.i_travel_dollar:before{content:""}.i_travel_earth:before{content:""}.i_travel_elevator:before{content:""}.i_travel_escalator_down:before{content:""}.i_travel_escalator_up:before{content:""}.i_travel_euro:before{content:""}.i_travel_exchange_office_02:before{content:""}.i_travel_exchange_office:before{content:""}.i_travel_exit:before{content:""}.i_travel_fire_extinguisher:before{content:""}.i_travel_gift_shop:before{content:""}.i_travel_hairdresser:before{content:""}.i_travel_hotel_lobby:before{content:""}.i_travel_hotel:before{content:""}.i_travel_information_02:before{content:""}.i_travel_information_03:before{content:""}.i_travel_information:before{content:""}.i_travel_kremlin:before{content:""}.i_travel_lockers:before{content:""}.i_travel_lost_and_found:before{content:""}.i_travel_luggage_belt:before{content:""}.i_travel_luggage_trolley:before{content:""}.i_travel_luggage:before{content:""}.i_travel_meeting_point:before{content:""}.i_travel_no_access:before{content:""}.i_travel_no_pets_allowed:before{content:""}.i_travel_no_phones:before{content:""}.i_travel_non_smokng_area:before{content:""}.i_travel_nursery:before{content:""}.i_travel_oxygen:before{content:""}.i_travel_passport_control:before{content:""}.i_travel_post_office:before{content:""}.i_travel_pound:before{content:""}.i_travel_public_telephone:before{content:""}.i_travel_restaurant:before{content:""}.i_travel_ruble:before{content:""}.i_travel_russian_church:before{content:""}.i_travel_safe:before{content:""}.i_travel_security:before{content:""}.i_travel_shops:before{content:""}.i_travel_smoking_area:before{content:""}.i_travel_stairs:before{content:""}.i_travel_temple:before{content:""}.i_travel_ticket_office:before{content:""}.i_travel_toilet_men:before{content:""}.i_travel_toilet_women:before{content:""}.i_travel_toilet:before{content:""}.i_travel_traveler:before{content:""}.i_travel_usa:before{content:""}.i_travel_waiting_area:before{content:""}.i_travel_water_fountain:before{content:""}.i_travel_wheelchair_accessible:before{content:""}.i_travel_yuan:before{content:""}.i_type_123:before{content:""}.i_type_abc_case_caps:before{content:""}.i_type_abc_case_lower:before{content:""}.i_type_abc_case_title:before{content:""}.i_type_align_center:before{content:""}.i_type_align_left:before{content:""}.i_type_align_right:before{content:""}.i_type_case_camel_lower:before{content:""}.i_type_case_caps:before{content:""}.i_type_case_lower:before{content:""}.i_type_case_title:before{content:""}.i_type_case:before{content:""}.i_type_code_slash:before{content:""}.i_type_code:before{content:""}.i_type_font:before{content:""}.i_type_justify_center:before{content:""}.i_type_justify_left:before{content:""}.i_type_justify_right:before{content:""}.i_type_style_bold:before{content:""}.i_type_style_h1:before{content:""}.i_type_style_h2:before{content:""}.i_type_style_h3:before{content:""}.i_type_style_h4:before{content:""}.i_type_style_h5:before{content:""}.i_type_style_h6:before{content:""}.i_type_style_italic:before{content:""}.i_type_style_strikethrough:before{content:""}.i_type_style_subscript:before{content:""}.i_type_style_superscript:before{content:""}.i_type_style_underline:before{content:""}.i_ui_bookmark_sm:before{content:""}.i_ui_bookmark:before{content:""}.i_ui_circle_bookmark:before{content:""}.i_ui_circle_create:before{content:""}.i_ui_circle_delete:before{content:""}.i_ui_circle_detail:before{content:""}.i_ui_circle_favorite:before{content:""}.i_ui_circle_fill_bookmark:before{content:""}.i_ui_circle_fill_create:before{content:""}.i_ui_circle_fill_delete:before{content:""}.i_ui_circle_fill_detail:before{content:""}.i_ui_circle_fill_favorite:before{content:""}.i_ui_circle_fill_help:before{content:""}.i_ui_circle_fill_search:before{content:""}.i_ui_circle_fill_update:before{content:""}.i_ui_circle_help:before{content:""}.i_ui_circle_search:before{content:""}.i_ui_circle_update:before{content:""}.i_ui_create_sm:before{content:""}.i_ui_create:before{content:""}.i_ui_delete_sm:before{content:""}.i_ui_delete:before{content:""}.i_ui_detail_sm:before{content:""}.i_ui_detail:before{content:""}.i_ui_favorite_sm:before{content:""}.i_ui_favorite:before{content:""}.i_ui_help_sm:before{content:""}.i_ui_help:before{content:""}.i_ui_media_back:before{content:""}.i_ui_media_circle_back:before{content:""}.i_ui_media_circle_fill_back:before{content:""}.i_ui_media_circle_fill_forward:before{content:""}.i_ui_media_circle_fill_next:before{content:""}.i_ui_media_circle_fill_pause:before{content:""}.i_ui_media_circle_fill_play:before{content:""}.i_ui_media_circle_fill_record:before{content:""}.i_ui_media_circle_fill_rewind:before{content:""}.i_ui_media_circle_fill_stop:before{content:""}.i_ui_media_circle_forward:before{content:""}.i_ui_media_circle_next:before{content:""}.i_ui_media_circle_pause:before{content:""}.i_ui_media_circle_play:before{content:""}.i_ui_media_circle_record:before{content:""}.i_ui_media_circle_rewind:before{content:""}.i_ui_media_circle_sto:before{content:""}.i_ui_media_fill_back:before{content:""}.i_ui_media_fill_forward:before{content:""}.i_ui_media_fill_next:before{content:""}.i_ui_media_fill_pause:before{content:""}.i_ui_media_fill_play:before{content:""}.i_ui_media_fill_record:before{content:""}.i_ui_media_fill_rewind:before{content:""}.i_ui_media_fill_stop:before{content:""}.i_ui_media_forward:before{content:""}.i_ui_media_next:before{content:""}.i_ui_media_pause:before{content:""}.i_ui_media_play:before{content:""}.i_ui_media_record:before{content:""}.i_ui_media_rewind:before{content:""}.i_ui_media_square_back:before{content:""}.i_ui_media_square_fill_back:before{content:""}.i_ui_media_square_fill_forward:before{content:""}.i_ui_media_square_fill_next:before{content:""}.i_ui_media_square_fill_pause:before{content:""}.i_ui_media_square_fill_play:before{content:""}.i_ui_media_square_fill_record:before{content:""}.i_ui_media_square_fill_rewind:before{content:""}.i_ui_media_square_fill_stop:before{content:""}.i_ui_media_square_forward:before{content:""}.i_ui_media_square_next:before{content:""}.i_ui_media_square_pause:before{content:""}.i_ui_media_square_play:before{content:""}.i_ui_media_square_record:before{content:""}.i_ui_media_square_rewind:before{content:""}.i_ui_media_square_stop:before{content:""}.i_ui_media_stop:before{content:""}.i_ui_menu_horizontal:before{content:""}.i_ui_menu_vertical:before{content:""}.i_ui_search_sm:before{content:""}.i_ui_search:before{content:""}.i_ui_sliders_horizontal:before{content:""}.i_ui_sliders_vertical:before{content:""}.i_ui_sort_down:before{content:""}.i_ui_sort_up:before{content:""}.i_ui_square_bookmark:before{content:""}.i_ui_square_create:before{content:""}.i_ui_square_delete:before{content:""}.i_ui_square_detail:before{content:""}.i_ui_square_favorite:before{content:""}.i_ui_square_fill_bookmark:before{content:""}.i_ui_square_fill_create:before{content:""}.i_ui_square_fill_delete:before{content:""}.i_ui_square_fill_detail:before{content:""}.i_ui_square_fill_favorite:before{content:""}.i_ui_square_fill_help:before{content:""}.i_ui_square_fill_search:before{content:""}.i_ui_square_fill_update:before{content:""}.i_ui_square_help:before{content:""}.i_ui_square_search:before{content:""}.i_ui_square_update:before{content:""}.i_ui_update_sm:before{content:""}.i_ui_update:before{content:""}.i_weather_cloud_02:before{content:""}.i_weather_cloud:before{content:""}.i_weather_sun:before{content:""}.i_symbol_swir_left:before{content:""}.i_symbol_star_half_xs:before{content:""}.i_symbol_star_half_sm:before{content:""}.i_symbol_star_half_ms:before{content:""}.i_symbol_star_half_fill_xs:before{content:""}.i_symbol_star_half_fill_sm:before{content:""}.i_symbol_star_half_fill_md:before{content:""}.i_symbol_star_half_fill:before{content:""}.i_symbol_star_copy:before{content:""}.i_badge_country_us:before{content:""}.i_badge_country_tr:before{content:""}.i_badge_country_se:before{content:""}.i_badge_country_ru:before{content:""}.i_badge_country_pt:before{content:""}.i_badge_country_pl:before{content:""}.i_badge_country_no:before{content:""}.i_badge_country_nl:before{content:""}.i_badge_country_ma:before{content:""}.i_badge_country_jp:before{content:""}.i_badge_country_it:before{content:""}.i_badge_country_in:before{content:""}.i_badge_country_gr:before{content:""}.i_badge_country_gl:before{content:""}.i_badge_country_fr:before{content:""}.i_badge_country_fill_us:before{content:""}.i_badge_country_fill_tr:before{content:""}.i_badge_country_fill_se:before{content:""}.i_badge_country_fill_ru:before{content:""}.i_badge_country_fill_pt:before{content:""}.i_badge_country_fill_pl:before{content:""}.i_badge_country_fill_no:before{content:""}.i_badge_country_fill_nl:before{content:""}.i_badge_country_fill_ma:before{content:""}.i_badge_country_fill_jp:before{content:""}.i_badge_country_fill_it:before{content:""}.i_badge_country_fill_in:before{content:""}.i_badge_country_fill_gr:before{content:""}.i_badge_country_fill_gl:before{content:""}.i_badge_country_fill_fr:before{content:""}.i_badge_country_fill_fi:before{content:""}.i_badge_country_fill_es:before{content:""}.i_badge_country_fill_en:before{content:""}.i_badge_country_fill_dk:before{content:""}.i_badge_country_fill_de:before{content:""}.i_badge_country_fill_cn:before{content:""}.i_badge_country_fill_be:before{content:""}.i_badge_country_fill_at:before{content:""}.i_badge_country_fill_aq:before{content:""}.i_badge_country_fi:before{content:""}.i_badge_country_es:before{content:""}.i_badge_country_en:before{content:""}.i_badge_country_dk:before{content:""}.i_badge_country_de:before{content:""}.i_badge_country_cn:before{content:""}.i_badge_country_be:before{content:""}.i_badge_country_at:before{content:""}.i_badge_country_aq:before{content:""}.i:before,[class*=" i_"]:before,[class^=i_]:before{color:#000;display:inline;font-family:icongl!important;font-size:1.5em;font-style:normal;font-variant:normal;font-weight:400!important;line-height:1;-webkit-text-emphasis-style:none;text-emphasis-style:none;text-transform:none;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.si.inline{height:1.2em;vertical-align:sub;width:1.2em}.si.white{fill:#fff}.svg_container{overflow:hidden;padding-bottom:100%;vertical-align:top}.svg_container,.svg_container svg{display:inline-block;position:relative;width:100%}@font-face{font-display:swap;font-family:icongl;src:url(../font/icongl.woff2) format("woff2"),url(../font/icongl.woff) format("woff"),url(../font/icongl.ttf) format("ttf")}/*!
|
|
1
|
+
.i_1x{font-size:1em}.i_2x{font-size:2em}.i_3x{font-size:3em}.i_4x{font-size:4em}.i_5x{font-size:5em}.i_6x{font-size:6em}.i_7x{font-size:7em}.i_8x{font-size:8em}.i_9x{font-size:9em}.i_10x{font-size:10em}.i{align-items:center;aspect-ratio:1/1;background-color:transparent;box-sizing:initial;color:#000;display:inline-flex;font-size:inherit;height:1.5em;justify-content:center;margin:0;overflow:visible;padding:0;position:relative;text-align:center;vertical-align:initial;width:1.5em}.i:before{display:inline;line-height:1;vertical-align:middle}.i *,.i:before{color:#000;font-family:icongl!important;font-size:1.5em;font-style:normal;font-variant:normal;font-weight:400!important;-webkit-text-emphasis-style:none;text-emphasis-style:none;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.i *{align-items:center;display:flex;justify-content:center;line-height:1.5em!important;text-align:center}.i_arrow_up:before{content:""}.i_arrow_down:before{content:""}.i_arrow_left:before{content:""}.i_arrow_right:before{content:""}.i_arrow_up_left:before{content:""}.i_arrow_up_right:before{content:""}.i_arrow_down_left:before{content:""}.i_arrow_down_right:before{content:""}.i_arrow_long_left:before{content:""}.i_arrow_long_right:before{content:""}.i_arrow_long_left_right:before{content:""}.i_arrow_long_from_bar_left:before{content:""}.i_arrow_long_from_bar_right:before{content:""}.i_arrow_dotted_up:before{content:""}.i_arrow_dotted_down:before{content:""}.i_arrow_dotted_left:before{content:""}.i_arrow_dotted_right:before{content:""}.i_arrow_double_up:before{content:""}.i_arrow_double_down:before{content:""}.i_arrow_double_left:before{content:""}.i_arrow_double_right:before{content:""}.i_arrow_tripple_right:before{content:"⇶"}.i_arrow_harpoon_up_barb_left:before{content:""}.i_arrow_harpoon_up_barb_right:before{content:""}.i_arrow_harpoon_down_barb_left:before{content:""}.i_arrow_harpoon_down_barb_right:before{content:""}.i_arrow_harpoon_left_barb_up:before{content:""}.i_arrow_harpoon_left_barb_down:before{content:""}.i_arrow_harpoon_right_barb_up:before{content:""}.i_arrow_harpoon_right_barb_down:before{content:""}.i_arrow_circle_gap_left:before{content:""}.i_arrow_circle_gap_right:before{content:""}.i_arrow_circle_semi_gap_right:before{content:""}.i_arrow_circle_semi_gap_left:before{content:""}.i_arrow_circle_closed_left:before{content:""}.i_arrow_circle_closed_right:before{content:""}.i_arrow_corner_down_right:before{content:""}.i_arrow_corner_left_up:before{content:""}.i_arrow_corner_left_down:before{content:""}.i_arrow_corner_right_up:before{content:""}.i_arrow_corner_right_down:before{content:""}.i_arrow_up_down:before{content:""}.i_arrow_left_right:before{content:""}.i_arrow_up_left_down_right:before{content:""}.i_arrow_up_right_down_left:before{content:""}.i_arrow_two_headed_up:before{content:"↟"}.i_arrow_two_headed_down:before{content:"↡"}.i_arrow_two_headed_left:before{content:"↞"}.i_arrow_two_headed_right:before{content:"↠"}.i_arrow_from_bar_up:before{content:""}.i_arrow_from_bar_down:before{content:""}.i_arrow_from_bar_left:before{content:""}.i_arrow_from_bar_right:before{content:""}.i_arrow_to_bar_up:before{content:""}.i_arrow_to_bar_down:before{content:""}.i_arrow_to_bar_left:before{content:""}.i_arrow_to_bar_right:before{content:""}.i_arrow_to_corner_upper_left:before{content:""}.i_arrow_to_corner_lower_right:before{content:""}.i_game_dice_1:before{content:""}.i_game_dice_2:before{content:""}.i_game_dice_3:before{content:""}.i_game_dice_4:before{content:""}.i_game_dice_5:before{content:""}.i_game_dice_6:before{content:""}.i_number_0:before{content:""}.i_number_1:before{content:""}.i_number_2:before{content:""}.i_number_3:before{content:""}.i_number_4:before{content:""}.i_number_5:before{content:""}.i_number_6:before{content:""}.i_number_7:before{content:""}.i_number_8:before{content:""}.i_number_9:before{content:""}.i_number_circle_0:before{content:""}.i_number_circle_1:before{content:""}.i_number_circle_2:before{content:""}.i_number_circle_3:before{content:""}.i_number_circle_4:before{content:""}.i_number_circle_5:before{content:""}.i_number_circle_6:before{content:""}.i_number_circle_7:before{content:""}.i_number_circle_8:before{content:""}.i_number_circle_9:before{content:""}.i_number_circle_10:before{content:""}.i_number_circle_11:before{content:""}.i_number_circle_12:before{content:""}.i_number_circle_13:before{content:""}.i_number_circle_14:before{content:""}.i_number_circle_15:before{content:""}.i_number_circle_16:before{content:""}.i_number_circle_17:before{content:""}.i_number_circle_18:before{content:""}.i_number_circle_19:before{content:""}.i_number_circle_20:before{content:""}.i_number_circle_21:before{content:""}.i_number_circle_22:before{content:""}.i_number_circle_23:before{content:""}.i_number_circle_24:before{content:""}.i_number_circle_25:before{content:""}.i_number_circle_26:before{content:""}.i_number_circle_27:before{content:""}.i_number_circle_28:before{content:""}.i_number_circle_29:before{content:""}.i_number_circle_30:before{content:""}.i_number_circle_31:before{content:""}.i_number_circle_32:before{content:""}.i_number_circle_33:before{content:""}.i_number_circle_34:before{content:""}.i_number_circle_35:before{content:""}.i_number_circle_36:before{content:""}.i_number_circle_37:before{content:""}.i_number_circle_38:before{content:""}.i_number_circle_39:before{content:""}.i_number_circle_40:before{content:""}.i_number_circle_41:before{content:""}.i_number_circle_42:before{content:""}.i_number_circle_43:before{content:""}.i_number_circle_44:before{content:""}.i_number_circle_45:before{content:""}.i_number_circle_46:before{content:""}.i_number_circle_47:before{content:""}.i_number_circle_48:before{content:""}.i_number_circle_49:before{content:""}.i_number_circle_50:before{content:""}.i_number_circle_fill_0:before{content:""}.i_number_circle_fill_10:before{content:""}.i_number_circle_fill_11:before{content:""}.i_number_circle_fill_12:before{content:""}.i_number_circle_fill_13:before{content:""}.i_number_circle_fill_14:before{content:""}.i_number_circle_fill_15:before{content:""}.i_number_circle_fill_16:before{content:""}.i_number_circle_fill_17:before{content:""}.i_number_circle_fill_18:before{content:""}.i_number_circle_fill_19:before{content:""}.i_number_circle_fill_20:before{content:""}.i_number_circle_square_10:before{content:""}.i_number_circle_square_20:before{content:""}.i_number_circle_square_30:before{content:""}.i_number_circle_square_40:before{content:""}.i_number_circle_square_50:before{content:""}.i_number_circle_square_60:before{content:""}.i_number_circle_square_70:before{content:""}.i_number_circle_square_80:before{content:""}.i_number_circle_small_fill_0:before{content:""}.i_number_circle_small_fill_1:before{content:""}.i_number_circle_small_fill_2:before{content:""}.i_number_circle_small_fill_3:before{content:""}.i_number_circle_small_fill_4:before{content:""}.i_number_circle_small_fill_5:before{content:""}.i_number_circle_small_fill_6:before{content:""}.i_number_circle_small_fill_7:before{content:""}.i_number_circle_small_fill_8:before{content:""}.i_number_circle_small_fill_9:before{content:""}.i_number_circle_small_fill_10:before{content:""}.i_number_fraction_1_4:before{content:""}.i_number_fraction_1_2:before{content:""}.i_number_fraction_3_4:before{content:""}.i_number_fraction_1_7:before{content:""}.i_number_fraction_1_9:before{content:""}.i_number_fraction_1_10:before{content:""}.i_number_fraction_1_3:before{content:""}.i_number_fraction_2_3:before{content:""}.i_number_fraction_1_5:before{content:""}.i_number_fraction_2_5:before{content:""}.i_number_fraction_3_5:before{content:""}.i_number_fraction_4_5:before{content:""}.i_number_fraction_1_6:before{content:""}.i_number_fraction_5_6:before{content:""}.i_number_fraction_1_8:before{content:""}.i_number_fraction_3_8:before{content:""}.i_number_fraction_5_8:before{content:""}.i_number_fraction_7_8:before{content:""}.i_number_fraction_1_x:before{content:""}.i_number_fraction_0_3:before{content:""}.i_position_indicator:before{content:"⌖"}.i_house:before{content:"⌂"}.i_shape_circle:before{content:""}.i_shape_circle_xl:before{content:""}.i_shape_circle_lg:before{content:""}.i_shape_circle_md:before{content:""}.i_shape_circle_sm:before{content:""}.i_shape_circle_xs:before{content:""}.i_shape_circle_fill:before{content:""}.i_shape_circle_fill_lg:before{content:""}.i_shape_circle_fill_md:before{content:""}.i_shape_circle_fill_xs:before{content:""}.i_shape_circle_dotted:before{content:""}.i_shape_circle_circle:before{content:""}.i_shape_circle_dot:before{content:""}.i_shape_circle_hatch_vertical:before{content:""}.i_shape_circle_fill_half_upper:before{content:""}.i_shape_circle_fill_half_lower:before{content:""}.i_shape_circle_fill_half_left:before{content:""}.i_shape_circle_fill_half_right:before{content:""}.i_shape_circle_part_fill_half_left:before{content:""}.i_shape_circle_part_fill_half_right:before{content:""}.i_shape_circle_quarter_upper_left:before{content:""}.i_shape_circle_quarter_upper_right:before{content:""}.i_shape_circle_quarter_lower_left:before{content:""}.i_shape_circle_quarter_lower_right:before{content:""}.i_shape_circle_fill_quarter_upper_right:before{content:""}.i_shape_circle_fill_quarter_three:before{content:""}.i_shape_circle_arc_half_upper:before{content:""}.i_shape_circle_arc_half_lower:before{content:""}.i_shape_circle_arc_quarter_upper_left:before{content:""}.i_shape_circle_arc_quarter_upper_right:before{content:""}.i_shape_circle_arc_quarter_lower_left:before{content:""}.i_shape_circle_arc_quarter_lower_right:before{content:""}.i_shape_circle_inverse:before{content:""}.i_shape_circle_inverse_upper:before{content:""}.i_shape_circle_inverse_lower:before{content:""}.i_shape_circle_inverse_bullet:before{content:""}.i_shape_ellipse_horizontal:before{content:""}.i_shape_ellipse_vertical:before{content:""}.i_shape_ellipse_fill_horizontal:before{content:""}.i_shape_ellipse_fill_vertical:before{content:""}.i_shape_triangle_triangle:before{content:""}.i_triangle_xl:before{content:"⃤"}.i_shape_triangle:before{content:""}.i_shape_triangle_down:before{content:""}.i_shape_triangle_left:before{content:""}.i_shape_triangle_right:before{content:""}.i_shape_triangle_sm:before{content:""}.i_shape_triangle_sm_down:before{content:""}.i_shape_triangle_sm_left:before{content:""}.i_shape_triangle_sm_right:before{content:""}.i_shape_triangle_fill:before{content:""}.i_shape_triangle_fill_down:before{content:""}.i_shape_triangle_fill_left:before{content:""}.i_shape_triangle_fill_right:before{content:""}.i_shape_triangle_fill_md:before{content:""}.i_shape_triangle_fill_md_down:before{content:""}.i_shape_triangle_fill_md_left:before{content:""}.i_shape_triangle_fill_md_right:before{content:""}.i_shape_triangle_fill_sm:before{content:""}.i_shape_triangle_fill_sm_down:before{content:""}.i_shape_triangle_fill_sm_left:before{content:""}.i_shape_triangle_fill_sm_right:before{content:""}.i_shape_triangle_dot:before{content:""}.i_shape_triangle_fill_half_left:before{content:""}.i_shape_triangle_fill_half_right:before{content:""}.i_shape_triangle_down_fill_half_left:before{content:""}.i_shape_triangle_down_fill_half_right:before{content:""}.i_shape_triangle_lower_left:before{content:""}.i_shape_triangle_upper_right:before{content:""}.i_shape_triangle_upper_left:before{content:""}.i_shape_triangle_lower_right:before{content:""}.i_shape_triangle_fill_lower_left:before{content:""}.i_shape_triangle_fill_upper_right:before{content:""}.i_shape_triangle_fill_upper_left:before{content:""}.i_shape_triangle_fill_lower_right:before{content:""}.i_shape_lozenge:before{content:""}.i_shape_lozenge_md:before{content:""}.i_shape_lozenge_sm:before{content:""}.i_shape_lozenge_fill:before{content:""}.i_shape_lozenge_fill_md:before{content:""}.i_shape_lozenge_fill_sm:before{content:""}.i_shape_lozenge_fill_xs:before{content:""}.i_shape_lozenge_line_horizontal:before{content:""}.i_shape_lozenge_lozenge:before{content:""}.i_shape_square:before{content:""}.i_shape_square_xl:before{content:""}.i_shape_square_lg:before{content:""}.i_shape_square_md:before{content:""}.i_shape_square_ms:before{content:""}.i_shape_square_sm:before{content:""}.i_shape_square_xs:before{content:""}.i_shape_square_fill:before{content:""}.i_shape_square_fill_lg:before{content:""}.i_shape_square_fill_md:before{content:""}.i_shape_square_fill_ms:before{content:""}.i_shape_square_fill_sm:before{content:""}.i_shape_square_fill_xs:before{content:""}.i_shape_square_rounded:before{content:"▢"}.i_shape_square_dotted:before{content:"⬚"}.i_shape_square_line_vertical:before{content:""}.i_shape_square_square:before{content:""}.i_shape_square_hatch_horizontal:before{content:""}.i_shape_square_hatch_vertical:before{content:""}.i_shape_square_hatch_diagonal_left:before{content:""}.i_shape_square_hatch_diagonal_right:before{content:""}.i_shape_square_hatch_cross:before{content:""}.i_shape_square_hatch_diagonal_cross:before{content:""}.i_shape_square_quarter_upper_left:before{content:""}.i_shape_square_quarter_upper_right:before{content:""}.i_shape_square_quarter_lower_left:before{content:""}.i_shape_square_quarter_lower_right:before{content:""}.i_shape_square_fill_half_upper:before{content:""}.i_shape_square_fill_half_lower:before{content:""}.i_shape_square_fill_half_left:before{content:""}.i_shape_square_fill_half_right:before{content:""}.i_shape_square_fill_half_upper_left:before{content:""}.i_shape_square_fill_half_upper_right:before{content:""}.i_shape_square_fill_half_lower_left:before{content:""}.i_shape_square_fill_half_lower_right:before{content:""}.i_rectangle_horizontal:before{content:"▭"}.i_rectangle_vertical:before{content:"▯"}.i_rectangle_fill_horizontal:before{content:"▬"}.i_rectangle_fill_vertical:before{content:"▮"}.i_paralellogram:before{content:"▱"}.i_paralellogram_fill:before{content:"▰"}.i_shape_diamond:before{content:""}.i_shape_diamond_xl:before{content:""}.i_shape_diamond_md:before{content:""}.i_shape_diamond_fill:before{content:""}.i_shape_diamond_fill_md:before{content:""}.i_shape_diamond_fill_sm:before{content:""}.i_shape_diamond_diamond:before{content:""}.i_diamond_fill_half_upper:before{content:"⬘"}.i_diamond_fill_half_lower:before{content:"⬙"}.i_diamond_fill_half_left:before{content:"⬖"}.i_diamond_fill_half_right:before{content:"⬗"}.i_pentagon:before{content:"⬠"}.i_pentagon_fill:before{content:"⬟"}.i_pentagon_right:before{content:"⭔"}.i_pentagon_fill_right:before{content:"⭓"}.i_pentagon_fill_down:before{content:"⯂"}.i_hexagon:before{content:"⬡"}.i_hexagon_fill:before{content:"⬢"}.i_hexagon_horizontal_fill:before{content:"⬣"}.i_octagon_fill:before{content:"⯄"}.i_octagon_fill_horizontal:before{content:"⯃"}.i_heart:before{content:"🤍"}.i_heart_fill:before{content:"🖤"}.i_star:before{content:"☆"}.i_star_md:before{content:"⭐"}.i_star_sm:before{content:"⭒"}.i_star_fill:before{content:"★"}.i_star_fill_sm:before{content:"⭑"}.i_star_8_fill:before{content:"🟏"}.i_star_8_fill_md:before{content:"🟎"}.i_time_clock_0100:before{content:""}.i_time_clock_0200:before{content:""}.i_time_clock_0300:before{content:""}.i_time_clock_0400:before{content:""}.i_time_clock_0500:before{content:""}.i_time_clock_0600:before{content:""}.i_time_clock_0700:before{content:""}.i_time_clock_0800:before{content:""}.i_time_clock_0900:before{content:""}.i_time_clock_1000:before{content:""}.i_time_clock_1100:before{content:""}.i_time_clock_0000:before{content:""}.i_time_clock_0130:before{content:""}.i_time_clock_0230:before{content:""}.i_time_clock_0330:before{content:""}.i_time_clock_0430:before{content:""}.i_time_clock_0530:before{content:""}.i_time_clock_0630:before{content:""}.i_time_clock_0730:before{content:""}.i_time_clock_0830:before{content:""}.i_time_clock_0930:before{content:""}.i_time_clock_1030:before{content:""}.i_time_clock_1130:before{content:""}.i_time_clock_0030:before{content:""}.i_time_watch:before{content:""}.i_time_hourglass:before{content:""}.i_time_hourglass_flow:before{content:""}.i_time_alarm:before{content:""}.i_time_stopwatch:before{content:""}.i_time_timer:before{content:""}.i_time_mantelpiece:before{content:"🕰"}.i_arrow_box_down_left:before{content:""}.i_arrow_box_down_right:before{content:""}.i_arrow_box_down:before{content:""}.i_arrow_box_in_down_left:before{content:""}.i_arrow_box_in_down_right:before{content:""}.i_arrow_box_in_down:before{content:""}.i_arrow_box_in_left:before{content:""}.i_arrow_box_in_right:before{content:""}.i_arrow_box_in_up_left:before{content:""}.i_arrow_box_in_up_right:before{content:""}.i_arrow_box_in_up:before{content:""}.i_arrow_box_left:before{content:""}.i_arrow_box_right:before{content:""}.i_arrow_box_up_left:before{content:""}.i_arrow_box_up_right:before{content:""}.i_arrow_box_up:before{content:""}.i_arrow_circle_down_left:before{content:""}.i_arrow_circle_down_right:before{content:""}.i_arrow_circle_down:before{content:""}.i_arrow_circle_fill_down_left:before{content:""}.i_arrow_circle_fill_down_right:before{content:""}.i_arrow_circle_fill_down:before{content:""}.i_arrow_circle_fill_left:before{content:""}.i_arrow_circle_fill_right:before{content:""}.i_arrow_circle_fill_up_left:before{content:""}.i_arrow_circle_fill_up_right:before{content:""}.i_arrow_circle_fill_up:before{content:""}.i_arrow_circle_gap_left_2:before{content:""}.i_arrow_circle_gap_right_2:before{content:""}.i_arrow_circle_left:before{content:""}.i_arrow_circle_right:before{content:""}.i_arrow_circle_up_left:before{content:""}.i_arrow_circle_up_right:before{content:""}.i_arrow_circle_up:before{content:""}.i_arrow_corner_down_left:before{content:""}.i_arrow_corner_up_left:before{content:""}.i_arrow_corner_up_right:before{content:""}.i_arrow_double_cross_in:before{content:""}.i_arrow_double_cross_out:before{content:""}.i_arrow_double_diagonal_in:before{content:""}.i_arrow_double_diagonal_out:before{content:""}.i_arrow_double_left_right:before{content:""}.i_arrow_double_square_in:before{content:""}.i_arrow_double_square_out:before{content:""}.i_arrow_double_up_down:before{content:""}.i_arrow_dual_down:before{content:""}.i_arrow_dual_left:before{content:""}.i_arrow_dual_right:before{content:""}.i_arrow_dual_up:before{content:""}.i_arrow_from_bar_left_right:before{content:""}.i_arrow_from_bar_up_down:before{content:""}.i_arrow_from_corner_lower_left:before{content:""}.i_arrow_from_corner_lower_right:before{content:""}.i_arrow_from_corner_upper_left:before{content:""}.i_arrow_from_corner_upper_right:before{content:""}.i_arrow_large_down_left:before{content:""}.i_arrow_large_down_right:before{content:""}.i_arrow_large_down:before{content:""}.i_arrow_large_left:before{content:""}.i_arrow_large_right:before{content:""}.i_arrow_large_up_left:before{content:""}.i_arrow_large_up_right:before{content:""}.i_arrow_large_up:before{content:""}.i_arrow_long_double_left_right:before{content:""}.i_arrow_long_double_up_down:before{content:""}.i_arrow_long_down_left:before{content:""}.i_arrow_long_down_right:before{content:""}.i_arrow_long_down:before{content:""}.i_arrow_long_up_down:before{content:""}.i_arrow_long_up_left:before{content:""}.i_arrow_long_up_right:before{content:""}.i_arrow_long_up:before{content:""}.i_arrow_small_down_left:before{content:""}.i_arrow_small_down_right:before{content:""}.i_arrow_small_down:before{content:""}.i_arrow_small_left:before{content:""}.i_arrow_small_right:before{content:""}.i_arrow_small_up_left:before{content:""}.i_arrow_small_up_right:before{content:""}.i_arrow_small_up:before{content:""}.i_arrow_square_down_left:before{content:""}.i_arrow_square_down_right:before{content:""}.i_arrow_square_down:before{content:""}.i_arrow_square_fill_down_left:before{content:""}.i_arrow_square_fill_down_right:before{content:""}.i_arrow_square_fill_down:before{content:""}.i_arrow_square_fill_left:before{content:""}.i_arrow_square_fill_right:before{content:""}.i_arrow_square_fill_up_left:before{content:""}.i_arrow_square_fill_up_right:before{content:""}.i_arrow_square_fill_up:before{content:""}.i_arrow_square_left:before{content:""}.i_arrow_square_right:before{content:""}.i_arrow_square_up_left:before{content:""}.i_arrow_square_up_right:before{content:""}.i_arrow_square_up:before{content:""}.i_arrow_to_bar_left_right:before{content:""}.i_arrow_to_bar_up_down:before{content:""}.i_arrow_to_corner_lower_left:before{content:""}.i_arrow_to_corner_upper_right:before{content:""}.i_arrow_triple_down:before{content:""}.i_arrow_triple_left:before{content:""}.i_arrow_triple_right:before{content:""}.i_arrow_triple_up:before{content:""}.i_badge_media_1080p:before{content:""}.i_badge_media_10k:before{content:""}.i_badge_media_12k:before{content:""}.i_badge_media_16k:before{content:""}.i_badge_media_2d:before{content:""}.i_badge_media_2k:before{content:""}.i_badge_media_32k:before{content:""}.i_badge_media_3d:before{content:""}.i_badge_media_4k:before{content:""}.i_badge_media_5k:before{content:""}.i_badge_media_720p:before{content:""}.i_badge_media_8k:before{content:""}.i_badge_media_ar:before{content:""}.i_badge_media_dvd:before{content:""}.i_badge_media_dvi:before{content:""}.i_badge_media_fill_1080p:before{content:""}.i_badge_media_fill_10k:before{content:""}.i_badge_media_fill_12k:before{content:""}.i_badge_media_fill_16k:before{content:""}.i_badge_media_fill_2d:before{content:""}.i_badge_media_fill_2k:before{content:""}.i_badge_media_fill_32k:before{content:""}.i_badge_media_fill_3d:before{content:""}.i_badge_media_fill_4k:before{content:""}.i_badge_media_fill_5k:before{content:""}.i_badge_media_fill_720p:before{content:""}.i_badge_media_fill_8k:before{content:""}.i_badge_media_fill_ar:before{content:""}.i_badge_media_fill_dvd:before{content:""}.i_badge_media_fill_dvi:before{content:""}.i_badge_media_fill_fullhd:before{content:""}.i_badge_media_fill_h264:before{content:""}.i_badge_media_fill_hd:before{content:""}.i_badge_media_fill_hdmi:before{content:""}.i_badge_media_fill_hdtv:before{content:""}.i_badge_media_fill_mp3:before{content:""}.i_badge_media_fill_mp4:before{content:""}.i_badge_media_fill_sd:before{content:""}.i_badge_media_fill_sdtv:before{content:""}.i_badge_media_fill_uhd:before{content:""}.i_badge_media_fill_vga:before{content:""}.i_badge_media_fill_vr:before{content:""}.i_badge_media_fill_xr:before{content:""}.i_badge_media_fullhd:before{content:""}.i_badge_media_h264:before{content:""}.i_badge_media_hd:before{content:""}.i_badge_media_hdmi:before{content:""}.i_badge_media_hdtv:before{content:""}.i_badge_media_mp3:before{content:""}.i_badge_media_mp4:before{content:""}.i_badge_media_sd:before{content:""}.i_badge_media_sdtv:before{content:""}.i_badge_media_uhd:before{content:""}.i_badge_media_vga:before{content:""}.i_badge_media_vr:before{content:""}.i_badge_media_xr:before{content:""}.i_data_chart_pie_01:before{content:""}.i_data_chart_pie_02:before{content:""}.i_data_chart_pie_03:before{content:""}.i_data_chart_pie_04:before{content:""}.i_data_chart_pyramid_01:before{content:""}.i_data_chart_pyramid_02:before{content:""}.i_data_chart_pyramid_03:before{content:""}.i_data_chart_radar_01:before{content:""}.i_design_palette:before{content:""}.i_file_type_3dm:before{content:""}.i_file_type_3gp:before{content:""}.i_file_type_aac:before{content:""}.i_file_type_ai:before{content:""}.i_file_type_aspx:before{content:""}.i_file_type_avi:before{content:""}.i_file_type_bib:before{content:""}.i_file_type_bin:before{content:""}.i_file_type_blend:before{content:""}.i_file_type_bmp:before{content:""}.i_file_type_cs:before{content:""}.i_file_type_css:before{content:""}.i_file_type_csv:before{content:""}.i_file_type_dll:before{content:""}.i_file_type_dmg:before{content:""}.i_file_type_doc:before{content:""}.i_file_type_docx:before{content:""}.i_file_type_dwg:before{content:""}.i_file_type_eml:before{content:""}.i_file_type_eot:before{content:""}.i_file_type_exe:before{content:""}.i_file_type_gh:before{content:""}.i_file_type_gif:before{content:""}.i_file_type_git:before{content:""}.i_file_type_hbs:before{content:""}.i_file_type_heic:before{content:""}.i_file_type_html:before{content:""}.i_file_type_ico:before{content:""}.i_file_type_indd:before{content:""}.i_file_type_ini:before{content:""}.i_file_type_iso_80:before{content:""}.i_file_type_iso_83:before{content:""}.i_file_type_iso:before{content:""}.i_file_type_jar:before{content:""}.i_file_type_java:before{content:""}.i_file_type_jinja:before{content:""}.i_file_type_jpg:before{content:""}.i_file_type_js:before{content:""}.i_file_type_json:before{content:""}.i_file_type_jsx:before{content:""}.i_file_type_key:before{content:""}.i_file_type_m4p:before{content:""}.i_file_type_md:before{content:""}.i_file_type_mdx:before{content:""}.i_file_type_mkv:before{content:""}.i_file_type_mov:before{content:""}.i_file_type_mp3:before{content:""}.i_file_type_mp4:before{content:""}.i_file_type_mpg:before{content:""}.i_file_type_msi:before{content:""}.i_file_type_obj:before{content:""}.i_file_type_ogg:before{content:""}.i_file_type_otf:before{content:""}.i_file_type_pdf:before{content:""}.i_file_type_php:before{content:""}.i_file_type_png:before{content:""}.i_file_type_ppt:before{content:""}.i_file_type_pptx:before{content:""}.i_file_type_psd:before{content:""}.i_file_type_psql:before{content:""}.i_file_type_py:before{content:""}.i_file_type_qgs:before{content:""}.i_file_type_rar:before{content:""}.i_file_type_raw:before{content:""}.i_file_type_rb:before{content:""}.i_file_type_ris:before{content:""}.i_file_type_rtf:before{content:""}.i_file_type_sass:before{content:""}.i_file_type_scss:before{content:""}.i_file_type_sh:before{content:""}.i_file_type_shp:before{content:""}.i_file_type_skp:before{content:""}.i_file_type_sql:before{content:""}.i_file_type_stl:before{content:""}.i_file_type_svg:before{content:""}.i_file_type_tar:before{content:""}.i_file_type_tex:before{content:""}.i_file_type_tiff:before{content:""}.i_file_type_tmp:before{content:""}.i_file_type_ts:before{content:""}.i_file_type_tsx:before{content:""}.i_file_type_ttf:before{content:""}.i_file_type_txt:before{content:""}.i_file_type_wav:before{content:""}.i_file_type_webp:before{content:""}.i_file_type_woff:before{content:""}.i_file_type_woff2:before{content:""}.i_file_type_xls:before{content:""}.i_file_type_xlsx:before{content:""}.i_file_type_yml:before{content:""}.i_file_type_zip:before{content:""}.i_game_cards:before{content:""}.i_game_dice_0_fill:before{content:""}.i_game_dice_0:before{content:""}.i_game_dice_1_fill:before{content:""}.i_game_dice_2_fill:before{content:""}.i_game_dice_3_fill:before{content:""}.i_game_dice_4_fill:before{content:""}.i_game_dice_5_fill:before{content:""}.i_game_dice_6_fill:before{content:""}.i_game_dices_fill:before{content:""}.i_game_dices:before{content:""}.i_letters_circle_a:before{content:""}.i_letters_circle_at:before{content:""}.i_letters_circle_b:before{content:""}.i_letters_circle_c:before{content:""}.i_letters_circle_d:before{content:""}.i_letters_circle_e:before{content:""}.i_letters_circle_exclamation:before{content:""}.i_letters_circle_f:before{content:""}.i_letters_circle_fill_a:before{content:""}.i_letters_circle_fill_at:before{content:""}.i_letters_circle_fill_b:before{content:""}.i_letters_circle_fill_c:before{content:""}.i_letters_circle_fill_d:before{content:""}.i_letters_circle_fill_e:before{content:""}.i_letters_circle_fill_exclamation:before{content:""}.i_letters_circle_fill_f:before{content:""}.i_letters_circle_fill_g:before{content:""}.i_letters_circle_fill_h:before{content:""}.i_letters_circle_fill_hashtag:before{content:""}.i_letters_circle_fill_i:before{content:""}.i_letters_circle_fill_j:before{content:""}.i_letters_circle_fill_k:before{content:""}.i_letters_circle_fill_l:before{content:""}.i_letters_circle_fill_m:before{content:""}.i_letters_circle_fill_n:before{content:""}.i_letters_circle_fill_o:before{content:""}.i_letters_circle_fill_p:before{content:""}.i_letters_circle_fill_q:before{content:""}.i_letters_circle_fill_question:before{content:""}.i_letters_circle_fill_r:before{content:""}.i_letters_circle_fill_s:before{content:""}.i_letters_circle_fill_t:before{content:""}.i_letters_circle_fill_u:before{content:""}.i_letters_circle_fill_v:before{content:""}.i_letters_circle_fill_w:before{content:""}.i_letters_circle_fill_x:before{content:""}.i_letters_circle_fill_y:before{content:""}.i_letters_circle_fill_z:before{content:""}.i_letters_circle_g:before{content:""}.i_letters_circle_h:before{content:""}.i_letters_circle_hashtag:before{content:""}.i_letters_circle_i:before{content:""}.i_letters_circle_j:before{content:""}.i_letters_circle_k:before{content:""}.i_letters_circle_l:before{content:""}.i_letters_circle_m:before{content:""}.i_letters_circle_n:before{content:""}.i_letters_circle_o:before{content:""}.i_letters_circle_p:before{content:""}.i_letters_circle_q:before{content:""}.i_letters_circle_question:before{content:""}.i_letters_circle_r:before{content:""}.i_letters_circle_s:before{content:""}.i_letters_circle_t:before{content:""}.i_letters_circle_u:before{content:""}.i_letters_circle_v:before{content:""}.i_letters_circle_w:before{content:""}.i_letters_circle_x:before{content:""}.i_letters_circle_y:before{content:""}.i_letters_circle_z:before{content:""}.i_letters_square_a:before{content:""}.i_letters_square_at:before{content:""}.i_letters_square_b:before{content:""}.i_letters_square_c:before{content:""}.i_letters_square_d:before{content:""}.i_letters_square_e:before{content:""}.i_letters_square_exclamation:before{content:""}.i_letters_square_f:before{content:""}.i_letters_square_fill_a:before{content:""}.i_letters_square_fill_at:before{content:""}.i_letters_square_fill_b:before{content:""}.i_letters_square_fill_c:before{content:""}.i_letters_square_fill_d:before{content:""}.i_letters_square_fill_e:before{content:""}.i_letters_square_fill_exclamation:before{content:""}.i_letters_square_fill_f:before{content:""}.i_letters_square_fill_g:before{content:""}.i_letters_square_fill_h:before{content:""}.i_letters_square_fill_hashtag:before{content:""}.i_letters_square_fill_i:before{content:""}.i_letters_square_fill_j:before{content:""}.i_letters_square_fill_k:before{content:""}.i_letters_square_fill_l:before{content:""}.i_letters_square_fill_m:before{content:""}.i_letters_square_fill_n:before{content:""}.i_letters_square_fill_o:before{content:""}.i_letters_square_fill_p:before{content:""}.i_letters_square_fill_q:before{content:""}.i_letters_square_fill_question:before{content:""}.i_letters_square_fill_r:before{content:""}.i_letters_square_fill_s:before{content:""}.i_letters_square_fill_t:before{content:""}.i_letters_square_fill_u:before{content:""}.i_letters_square_fill_v:before{content:""}.i_letters_square_fill_w:before{content:""}.i_letters_square_fill_x:before{content:""}.i_letters_square_fill_y:before{content:""}.i_letters_square_fill_z:before{content:""}.i_letters_square_g:before{content:""}.i_letters_square_h:before{content:""}.i_letters_square_hashtag:before{content:""}.i_letters_square_i:before{content:""}.i_letters_square_j:before{content:""}.i_letters_square_k:before{content:""}.i_letters_square_l:before{content:""}.i_letters_square_m:before{content:""}.i_letters_square_n:before{content:""}.i_letters_square_o:before{content:""}.i_letters_square_p:before{content:""}.i_letters_square_q:before{content:""}.i_letters_square_question:before{content:""}.i_letters_square_r:before{content:""}.i_letters_square_s:before{content:""}.i_letters_square_t:before{content:""}.i_letters_square_u:before{content:""}.i_letters_square_v:before{content:""}.i_letters_square_w:before{content:""}.i_letters_square_x:before{content:""}.i_letters_square_y:before{content:""}.i_letters_square_z:before{content:""}.i_logo_starling_md:before{content:""}.i_logo_starling_sm:before{content:""}.i_logo_starling_xl:before{content:""}.i_logo_starling:before{content:""}.i_map_compass_circle_e:before{content:""}.i_map_compass_circle_fill_e:before{content:""}.i_map_compass_circle_fill_n:before{content:""}.i_map_compass_circle_fill_ne:before{content:""}.i_map_compass_circle_fill_nw:before{content:""}.i_map_compass_circle_fill_s:before{content:""}.i_map_compass_circle_fill_se:before{content:""}.i_map_compass_circle_fill_sw:before{content:""}.i_map_compass_circle_fill_w:before{content:""}.i_map_compass_circle_n:before{content:""}.i_map_compass_circle_ne:before{content:""}.i_map_compass_circle_nw:before{content:""}.i_map_compass_circle_s:before{content:""}.i_map_compass_circle_se:before{content:""}.i_map_compass_circle_sw:before{content:""}.i_map_compass_circle_w:before{content:""}.i_map_compass_e:before{content:""}.i_map_compass_fill_e:before{content:""}.i_map_compass_fill_n:before{content:""}.i_map_compass_fill_ne:before{content:""}.i_map_compass_fill_nw:before{content:""}.i_map_compass_fill_s:before{content:""}.i_map_compass_fill_se:before{content:""}.i_map_compass_fill_sw:before{content:""}.i_map_compass_fill_w:before{content:""}.i_map_compass_n:before{content:""}.i_map_compass_ne:before{content:""}.i_map_compass_nw:before{content:""}.i_map_compass_s:before{content:""}.i_map_compass_se:before{content:""}.i_map_compass_stripe_e:before{content:""}.i_map_compass_stripe_n:before{content:""}.i_map_compass_stripe_ne:before{content:""}.i_map_compass_stripe_nw:before{content:""}.i_map_compass_stripe_s:before{content:""}.i_map_compass_stripe_se:before{content:""}.i_map_compass_stripe_sw:before{content:""}.i_map_compass_stripe_w:before{content:""}.i_map_compass_sw:before{content:""}.i_map_compass_w:before{content:""}.i_map_globe_01_tilt:before{content:""}.i_map_globe_01:before{content:""}.i_map_globe_02_tilt:before{content:""}.i_map_globe_02:before{content:""}.i_map_globe_03_tilt:before{content:""}.i_map_globe_03:before{content:""}.i_nature_animal_bear:before{content:""}.i_nature_animal_bull:before{content:""}.i_nature_animal_camel:before{content:""}.i_nature_animal_chicken:before{content:""}.i_nature_animal_cow:before{content:""}.i_nature_animal_dear:before{content:""}.i_nature_animal_duck_01:before{content:""}.i_nature_animal_duck_27:before{content:""}.i_nature_animal_elephant:before{content:""}.i_nature_animal_fill_beaver:before{content:""}.i_nature_animal_fill_bull:before{content:""}.i_nature_animal_fill_dog:before{content:""}.i_nature_animal_fill_elephant:before{content:""}.i_nature_animal_fill_fish:before{content:""}.i_nature_animal_fill_flamingo:before{content:""}.i_nature_animal_fill_goose:before{content:""}.i_nature_animal_fill_pig:before{content:""}.i_nature_animal_fill_polar_bear:before{content:""}.i_nature_animal_fill_rhinoceros:before{content:""}.i_nature_animal_fill_seal:before{content:""}.i_nature_animal_fill_snake:before{content:""}.i_nature_animal_fill_whale:before{content:""}.i_nature_animal_flamingo:before{content:""}.i_nature_animal_fox:before{content:""}.i_nature_animal_giraffe:before{content:""}.i_nature_animal_gorilla:before{content:""}.i_nature_animal_hippo:before{content:""}.i_nature_animal_horse:before{content:""}.i_nature_animal_kangaroo:before{content:""}.i_nature_animal_koala:before{content:""}.i_nature_animal_lama:before{content:""}.i_nature_animal_leopard:before{content:""}.i_nature_animal_lion:before{content:""}.i_nature_animal_monkey:before{content:""}.i_nature_animal_pelican:before{content:""}.i_nature_animal_pig:before{content:""}.i_nature_animal_rabbit:before{content:""}.i_nature_animal_sheep:before{content:""}.i_nature_animal_snake:before{content:""}.i_nature_animal_squirrel:before{content:""}.i_nature_animal_toucan:before{content:""}.i_nature_animal_zebra:before{content:""}.i_number_10:before{content:""}.i_number_circle_fill_1:before{content:""}.i_number_circle_fill_2:before{content:""}.i_number_circle_fill_3:before{content:""}.i_number_circle_fill_4:before{content:""}.i_number_circle_fill_5:before{content:""}.i_number_circle_fill_6:before{content:""}.i_number_circle_fill_7:before{content:""}.i_number_circle_fill_8:before{content:""}.i_number_circle_fill_9:before{content:""}.i_number_circle_square_0:before{content:""}.i_number_circle_square_90:before{content:""}.i_number_square_0:before{content:""}.i_number_square_1:before{content:""}.i_number_square_10:before{content:""}.i_number_square_11:before{content:""}.i_number_square_12:before{content:""}.i_number_square_13:before{content:""}.i_number_square_14:before{content:""}.i_number_square_15:before{content:""}.i_number_square_16:before{content:""}.i_number_square_17:before{content:""}.i_number_square_18:before{content:""}.i_number_square_19:before{content:""}.i_number_square_2:before{content:""}.i_number_square_20:before{content:""}.i_number_square_3:before{content:""}.i_number_square_4:before{content:""}.i_number_square_5:before{content:""}.i_number_square_6:before{content:""}.i_number_square_7:before{content:""}.i_number_square_8:before{content:""}.i_number_square_9:before{content:""}.i_number_square_fill_0:before{content:""}.i_number_square_fill_1:before{content:""}.i_number_square_fill_10:before{content:""}.i_number_square_fill_11:before{content:""}.i_number_square_fill_12:before{content:""}.i_number_square_fill_13:before{content:""}.i_number_square_fill_14:before{content:""}.i_number_square_fill_15:before{content:""}.i_number_square_fill_16:before{content:""}.i_number_square_fill_17:before{content:""}.i_number_square_fill_18:before{content:""}.i_number_square_fill_19:before{content:""}.i_number_square_fill_2:before{content:""}.i_number_square_fill_20:before{content:""}.i_number_square_fill_3:before{content:""}.i_number_square_fill_4:before{content:""}.i_number_square_fill_5:before{content:""}.i_number_square_fill_6:before{content:""}.i_number_square_fill_7:before{content:""}.i_number_square_fill_8:before{content:""}.i_number_square_fill_9:before{content:""}.i_people_and_heart:before{content:""}.i_people_and_min:before{content:""}.i_people_and_plus:before{content:""}.i_people_and_star:before{content:""}.i_people_arrow_growth:before{content:""}.i_people_arrow_linear:before{content:""}.i_people_circle:before{content:""}.i_people_connection_inner:before{content:""}.i_people_connection:before{content:""}.i_people_family:before{content:""}.i_people_heart_02:before{content:""}.i_people_heart:before{content:""}.i_people_person_fill_lg:before{content:""}.i_people_person_fill_lm:before{content:""}.i_people_person_fill_md:before{content:""}.i_people_person_fill_ms:before{content:""}.i_people_person_fill_sm:before{content:""}.i_people_person_fill_us:before{content:""}.i_people_person_fill_xs:before{content:""}.i_people_person_lg:before{content:""}.i_people_person_lm:before{content:""}.i_people_person_md:before{content:""}.i_people_person_ms:before{content:""}.i_people_person_sm:before{content:""}.i_people_person_us:before{content:""}.i_people_person_xs:before{content:""}.i_people_three_03:before{content:""}.i_people_three_diamond:before{content:""}.i_people_three_growth:before{content:""}.i_people_three_heart:before{content:""}.i_people_three_lg:before{content:""}.i_people_three_linear:before{content:""}.i_people_three_star:before{content:""}.i_people_two_01:before{content:""}.i_people_two_02:before{content:""}.i_people_two_03:before{content:""}.i_people_two_growth:before{content:""}.i_people_two_linear:before{content:""}.i_people_two_merged:before{content:""}.i_places:before{content:""}.i_science_erlenmeyer_pour:before{content:""}.i_science_erlenmeyer:before{content:""}.i_science_vial_two:before{content:""}.i_science_vial:before{content:""}.i_shape_29:before{content:""}.i_shape_36:before{content:""}.i_shape_37:before{content:""}.i_shape_circle_arc_half_left:before{content:""}.i_shape_circle_arc_half_right:before{content:""}.i_shape_circle_fill_ms:before{content:""}.i_shape_circle_fill_quarter_lower_left:before{content:""}.i_shape_circle_fill_quarter_lower_right:before{content:""}.i_shape_circle_fill_quarter_upper_left:before{content:""}.i_shape_circle_fill_sm:before{content:""}.i_shape_circle_fill_xl:before{content:""}.i_shape_circle_hatch_horizontal:before{content:""}.i_shape_circle_ms:before{content:""}.i_shape_circle_part_fill_half_lower:before{content:""}.i_shape_circle_part_fill_half_upper:before{content:""}.i_shape_circle_part_half_left:before{content:""}.i_shape_circle_part_half_lower:before{content:""}.i_shape_circle_part_half_right:before{content:""}.i_shape_circle_part_half_upper:before{content:""}.i_shape_diamond_fill_half_left:before{content:""}.i_shape_diamond_fill_half_lower:before{content:""}.i_shape_diamond_fill_half_right:before{content:""}.i_shape_diamond_fill_half_upper:before{content:""}.i_shape_diamond_fill_xl:before{content:""}.i_shape_diamond_sm:before{content:""}.i_shape_hexagon_fill_half_left:before{content:""}.i_shape_hexagon_fill_half_right:before{content:""}.i_shape_hexagon_fill_md_60:before{content:""}.i_shape_hexagon_fill_md_62:before{content:""}.i_shape_hexagon_fill:before{content:""}.i_shape_hexagon_hatch_horizontal:before{content:""}.i_shape_hexagon_hatch_vertical:before{content:""}.i_shape_hexagon_horizontal_fill:before{content:""}.i_shape_hexagon_horizontal:before{content:""}.i_shape_hexagon_md_44:before{content:""}.i_shape_hexagon_md_46:before{content:""}.i_shape_hexagon_part:before{content:""}.i_shape_hexagon:before{content:""}.i_shape_lozenge_line_vertical:before{content:""}.i_shape_lozenge_xs:before{content:""}.i_shape_octagon_fill_horizontal:before{content:""}.i_shape_octagon_horizontal:before{content:""}.i_shape_octagon:before{content:""}.i_shape_paralellogram_fill:before{content:""}.i_shape_paralellogram:before{content:""}.i_shape_pentagon_down:before{content:""}.i_shape_pentagon_fill_down:before{content:""}.i_shape_pentagon_fill_half_left:before{content:""}.i_shape_pentagon_fill_half_right:before{content:""}.i_shape_pentagon_fill_left:before{content:""}.i_shape_pentagon_fill_md_28:before{content:""}.i_shape_pentagon_fill_md_30:before{content:""}.i_shape_pentagon_fill_right:before{content:""}.i_shape_pentagon_fill:before{content:""}.i_shape_pentagon_left:before{content:""}.i_shape_pentagon_md:before{content:""}.i_shape_pentagon_part:before{content:""}.i_shape_pentagon_right:before{content:""}.i_shape_pentagon_sm:before{content:""}.i_shape_pentagon:before{content:""}.i_shape_rectangle_fill_horizontal:before{content:""}.i_shape_rectangle_fill_vertical:before{content:""}.i_shape_rectangle_horizontal:before{content:""}.i_shape_rectangle_vertical:before{content:""}.i_shape_square_fill_xl:before{content:""}.i_shape_square_line_horizontal:before{content:""}.i_shape_triangle_dotted:before{content:""}.i_shape_triangle_down_line_vertical:before{content:""}.i_shape_triangle_fill_xl:before{content:""}.i_shape_triangle_line_vertical:before{content:""}.i_shape_triangle_md_down:before{content:""}.i_shape_triangle_md_left:before{content:""}.i_shape_triangle_md_right:before{content:""}.i_shape_triangle_md:before{content:""}.i_shape_triangle_xl:before{content:""}.i_social_academia:before{content:""}.i_social_adobe_cc:before{content:""}.i_social_airtable_18:before{content:""}.i_social_airtable_19:before{content:""}.i_social_amazon:before{content:""}.i_social_anaconda:before{content:""}.i_social_apple:before{content:""}.i_social_atlassian:before{content:""}.i_social_baidu:before{content:""}.i_social_behance:before{content:""}.i_social_bing:before{content:""}.i_social_bitcoin:before{content:""}.i_social_blender:before{content:""}.i_social_celery:before{content:""}.i_social_cloudflare:before{content:""}.i_social_creative_commons:before{content:""}.i_social_css3:before{content:""}.i_social_dependabot:before{content:""}.i_social_discord:before{content:""}.i_social_docker:before{content:""}.i_social_epic_games:before{content:""}.i_social_eslint:before{content:""}.i_social_ethereum:before{content:""}.i_social_facebook:before{content:""}.i_social_figma:before{content:""}.i_social_firebase:before{content:""}.i_social_flickr:before{content:""}.i_social_git:before{content:""}.i_social_github:before{content:""}.i_social_google:before{content:""}.i_social_graphql:before{content:""}.i_social_gravatar:before{content:""}.i_social_helm:before{content:""}.i_social_html5:before{content:""}.i_social_ideal:before{content:""}.i_social_imdb:before{content:""}.i_social_instagram:before{content:""}.i_social_internet_archive:before{content:""}.i_social_internet_explorer:before{content:""}.i_social_issuu:before{content:""}.i_social_javascript:before{content:""}.i_social_jinja:before{content:""}.i_social_json:before{content:""}.i_social_linkedin:before{content:""}.i_social_squarespace:before{content:""}.i_social_vimeo:before{content:""}.i_social_wikipedia:before{content:""}.i_social_x:before{content:""}.i_solid_cube_02:before{content:""}.i_solid_cube_arrow:before{content:""}.i_solid_cube_scene_02:before{content:""}.i_solid_cube_scene:before{content:""}.i_solid_cube:before{content:""}.i_solid_pyramid:before{content:""}.i_symbol_01:before{content:""}.i_symbol_02:before{content:""}.i_symbol_03:before{content:""}.i_symbol_04:before{content:""}.i_symbol_09:before{content:""}.i_symbol_10:before{content:""}.i_symbol_11:before{content:""}.i_symbol_12:before{content:""}.i_symbol_atom:before{content:""}.i_symbol_diamond_md:before{content:""}.i_symbol_diamond:before{content:""}.i_symbol_heart_fill_md:before{content:""}.i_symbol_heart_fill_sm:before{content:""}.i_symbol_heart_fill_xs:before{content:""}.i_symbol_heart_fill:before{content:""}.i_symbol_heart_ms:before{content:""}.i_symbol_heart_sm:before{content:""}.i_symbol_heart_xs:before{content:""}.i_symbol_heart:before{content:""}.i_symbol_qr:before{content:""}.i_symbol_star_8_fill_md:before{content:""}.i_symbol_star_8_fill_sm:before{content:""}.i_symbol_star_8_fill_xs:before{content:""}.i_symbol_star_8_fill:before{content:""}.i_symbol_star_8_md:before{content:""}.i_symbol_star_8_sm:before{content:""}.i_symbol_star_8_xs:before{content:""}.i_symbol_star_8:before{content:""}.i_symbol_star_fill_md:before{content:""}.i_symbol_star_fill_sm:before{content:""}.i_symbol_star_fill_xs:before{content:""}.i_symbol_star_fill:before{content:""}.i_symbol_star_ms:before{content:""}.i_symbol_star_sm:before{content:""}.i_symbol_star_xs:before{content:""}.i_symbol_star:before{content:""}.i_symbol_swirl_left_02:before{content:""}.i_symbol_swirl_right_02:before{content:""}.i_symbol_swirl_right:before{content:""}.i_system_key:before{content:""}.i_system_settings:before{content:""}.i_system_trash:before{content:""}.i_time_alarm_fill:before{content:""}.i_time_clock_0000_fill:before{content:""}.i_time_clock_0000_square_fill:before{content:""}.i_time_clock_0000_square:before{content:""}.i_time_clock_0030_fill:before{content:""}.i_time_clock_0030_square_fill:before{content:""}.i_time_clock_0030_square:before{content:""}.i_time_clock_0100_fill:before{content:""}.i_time_clock_0100_square_fill:before{content:""}.i_time_clock_0100_square:before{content:""}.i_time_clock_0130_fill:before{content:""}.i_time_clock_0130_square_fill:before{content:""}.i_time_clock_0130_square:before{content:""}.i_time_clock_0200_fill:before{content:""}.i_time_clock_0200_square_fill:before{content:""}.i_time_clock_0200_square:before{content:""}.i_time_clock_0230_fill:before{content:""}.i_time_clock_0230_square_fill:before{content:""}.i_time_clock_0230_square:before{content:""}.i_time_clock_0300_fill:before{content:""}.i_time_clock_0300_square_fill:before{content:""}.i_time_clock_0300_square:before{content:""}.i_time_clock_0330_fill:before{content:""}.i_time_clock_0330_square_fill:before{content:""}.i_time_clock_0330_square:before{content:""}.i_time_clock_0400_fill:before{content:""}.i_time_clock_0400_square_fill:before{content:""}.i_time_clock_0400_square:before{content:""}.i_time_clock_0430_fill:before{content:""}.i_time_clock_0430_square_fill:before{content:""}.i_time_clock_0430_square:before{content:""}.i_time_clock_0500_fill:before{content:""}.i_time_clock_0500_square_fill:before{content:""}.i_time_clock_0500_square:before{content:""}.i_time_clock_0530_fill:before{content:""}.i_time_clock_0530_square_fill:before{content:""}.i_time_clock_0530_square:before{content:""}.i_time_clock_0600_fill:before{content:""}.i_time_clock_0600_square_fill:before{content:""}.i_time_clock_0600_square:before{content:""}.i_time_clock_0630_fill:before{content:""}.i_time_clock_0630_square_fill:before{content:""}.i_time_clock_0630_square:before{content:""}.i_time_clock_0700_fill:before{content:""}.i_time_clock_0700_square_fill:before{content:""}.i_time_clock_0700_square:before{content:""}.i_time_clock_0730_fill:before{content:""}.i_time_clock_0730_square_fill:before{content:""}.i_time_clock_0730_square:before{content:""}.i_time_clock_0800_fill:before{content:""}.i_time_clock_0800_square_fill:before{content:""}.i_time_clock_0800_square:before{content:""}.i_time_clock_0830_fill:before{content:""}.i_time_clock_0830_square_fill:before{content:""}.i_time_clock_0830_square:before{content:""}.i_time_clock_0900_fill:before{content:""}.i_time_clock_0900_square_fill:before{content:""}.i_time_clock_0900_square:before{content:""}.i_time_clock_0930_fill:before{content:""}.i_time_clock_0930_square_fill:before{content:""}.i_time_clock_0930_square:before{content:""}.i_time_clock_1000_fill:before{content:""}.i_time_clock_1000_square_fill:before{content:""}.i_time_clock_1000_square:before{content:""}.i_time_clock_1030_fill:before{content:""}.i_time_clock_1030_square_fill:before{content:""}.i_time_clock_1030_square:before{content:""}.i_time_clock_1100_fill:before{content:""}.i_time_clock_1100_square_fill:before{content:""}.i_time_clock_1100_square:before{content:""}.i_time_clock_1130_fill:before{content:""}.i_time_clock_1130_square_fill:before{content:""}.i_time_clock_1130_square:before{content:""}.i_time_clock_fill:before{content:""}.i_time_clock_history:before{content:""}.i_time_clock_mantelpiece_fill:before{content:""}.i_time_clock_mantelpiece:before{content:""}.i_time_clock:before{content:""}.i_time_is_money:before{content:""}.i_time_stopwatch_00:before{content:""}.i_time_stopwatch_01:before{content:""}.i_time_stopwatch_02:before{content:""}.i_time_stopwatch_03:before{content:""}.i_time_stopwatch_04:before{content:""}.i_time_stopwatch_05:before{content:""}.i_time_stopwatch_06:before{content:""}.i_time_stopwatch_07:before{content:""}.i_time_stopwatch_08:before{content:""}.i_time_stopwatch_fill:before{content:""}.i_time_timer_fill:before{content:""}.i_transport_airport:before{content:""}.i_transport_anchor:before{content:""}.i_transport_bicycle_storage:before{content:""}.i_transport_bicycle:before{content:""}.i_transport_boat:before{content:""}.i_transport_bridge_02:before{content:""}.i_transport_bridge:before{content:""}.i_transport_bus:before{content:""}.i_transport_camper_02:before{content:""}.i_transport_camper:before{content:""}.i_transport_car_rental:before{content:""}.i_transport_car:before{content:""}.i_transport_cargo_ship_02:before{content:""}.i_transport_cargo_ship:before{content:""}.i_transport_crane_truck:before{content:""}.i_transport_electric_car:before{content:""}.i_transport_excavator:before{content:""}.i_transport_ferry_vehicle:before{content:""}.i_transport_ferry:before{content:""}.i_transport_fire_truck:before{content:""}.i_transport_garbage_truck:before{content:""}.i_transport_gas_station:before{content:""}.i_transport_gondola:before{content:""}.i_transport_helicopter:before{content:""}.i_transport_highway:before{content:""}.i_transport_hot_air_balloon:before{content:""}.i_transport_jeep:before{content:""}.i_transport_maintenance:before{content:""}.i_transport_metro:before{content:""}.i_transport_motorcycle_02:before{content:""}.i_transport_motorcycle:before{content:""}.i_transport_no_parking:before{content:""}.i_transport_nuclear_waste:before{content:""}.i_transport_package_truck:before{content:""}.i_transport_parking:before{content:""}.i_transport_quad_bike:before{content:""}.i_transport_roundabout:before{content:""}.i_transport_sailboat:before{content:""}.i_transport_scooter_02:before{content:""}.i_transport_scooter:before{content:""}.i_transport_submarine:before{content:""}.i_transport_taxi_02:before{content:""}.i_transport_taxi_boat:before{content:""}.i_transport_taxi_bus:before{content:""}.i_transport_taxi:before{content:""}.i_transport_tractor:before{content:""}.i_transport_traffic_light:before{content:""}.i_transport_train:before{content:""}.i_transport_tram_02:before{content:""}.i_transport_tram_03:before{content:""}.i_transport_tram:before{content:""}.i_transport_truck_02:before{content:""}.i_transport_truck_03:before{content:""}.i_transport_truck:before{content:""}.i_transport_ufo:before{content:""}.i_transport_walking:before{content:""}.i_travel_bar:before{content:""}.i_travel_cafe:before{content:""}.i_travel_cathedral:before{content:""}.i_travel_cloakroom:before{content:""}.i_travel_customs:before{content:""}.i_travel_daycare_center:before{content:""}.i_travel_dollar:before{content:""}.i_travel_earth:before{content:""}.i_travel_elevator:before{content:""}.i_travel_escalator_down:before{content:""}.i_travel_escalator_up:before{content:""}.i_travel_euro:before{content:""}.i_travel_exchange_office_02:before{content:""}.i_travel_exchange_office:before{content:""}.i_travel_exit:before{content:""}.i_travel_fire_extinguisher:before{content:""}.i_travel_gift_shop:before{content:""}.i_travel_hairdresser:before{content:""}.i_travel_hotel_lobby:before{content:""}.i_travel_hotel:before{content:""}.i_travel_information_02:before{content:""}.i_travel_information_03:before{content:""}.i_travel_information:before{content:""}.i_travel_kremlin:before{content:""}.i_travel_lockers:before{content:""}.i_travel_lost_and_found:before{content:""}.i_travel_luggage_belt:before{content:""}.i_travel_luggage_trolley:before{content:""}.i_travel_luggage:before{content:""}.i_travel_meeting_point:before{content:""}.i_travel_no_access:before{content:""}.i_travel_no_pets_allowed:before{content:""}.i_travel_no_phones:before{content:""}.i_travel_non_smokng_area:before{content:""}.i_travel_nursery:before{content:""}.i_travel_oxygen:before{content:""}.i_travel_passport_control:before{content:""}.i_travel_post_office:before{content:""}.i_travel_pound:before{content:""}.i_travel_public_telephone:before{content:""}.i_travel_restaurant:before{content:""}.i_travel_ruble:before{content:""}.i_travel_russian_church:before{content:""}.i_travel_safe:before{content:""}.i_travel_security:before{content:""}.i_travel_shops:before{content:""}.i_travel_smoking_area:before{content:""}.i_travel_stairs:before{content:""}.i_travel_temple:before{content:""}.i_travel_ticket_office:before{content:""}.i_travel_toilet_men:before{content:""}.i_travel_toilet_women:before{content:""}.i_travel_toilet:before{content:""}.i_travel_traveler:before{content:""}.i_travel_usa:before{content:""}.i_travel_waiting_area:before{content:""}.i_travel_water_fountain:before{content:""}.i_travel_wheelchair_accessible:before{content:""}.i_travel_yuan:before{content:""}.i_type_123:before{content:""}.i_type_abc_case_caps:before{content:""}.i_type_abc_case_lower:before{content:""}.i_type_abc_case_title:before{content:""}.i_type_align_center:before{content:""}.i_type_align_left:before{content:""}.i_type_align_right:before{content:""}.i_type_case_camel_lower:before{content:""}.i_type_case_caps:before{content:""}.i_type_case_lower:before{content:""}.i_type_case_title:before{content:""}.i_type_case:before{content:""}.i_type_code_slash:before{content:""}.i_type_code:before{content:""}.i_type_font:before{content:""}.i_type_justify_center:before{content:""}.i_type_justify_left:before{content:""}.i_type_justify_right:before{content:""}.i_type_style_bold:before{content:""}.i_type_style_h1:before{content:""}.i_type_style_h2:before{content:""}.i_type_style_h3:before{content:""}.i_type_style_h4:before{content:""}.i_type_style_h5:before{content:""}.i_type_style_h6:before{content:""}.i_type_style_italic:before{content:""}.i_type_style_strikethrough:before{content:""}.i_type_style_subscript:before{content:""}.i_type_style_superscript:before{content:""}.i_type_style_underline:before{content:""}.i_ui_bookmark_sm:before{content:""}.i_ui_bookmark:before{content:""}.i_ui_circle_bookmark:before{content:""}.i_ui_circle_create:before{content:""}.i_ui_circle_delete:before{content:""}.i_ui_circle_detail:before{content:""}.i_ui_circle_favorite:before{content:""}.i_ui_circle_fill_bookmark:before{content:""}.i_ui_circle_fill_create:before{content:""}.i_ui_circle_fill_delete:before{content:""}.i_ui_circle_fill_detail:before{content:""}.i_ui_circle_fill_favorite:before{content:""}.i_ui_circle_fill_help:before{content:""}.i_ui_circle_fill_search:before{content:""}.i_ui_circle_fill_update:before{content:""}.i_ui_circle_help:before{content:""}.i_ui_circle_search:before{content:""}.i_ui_circle_update:before{content:""}.i_ui_create_sm:before{content:""}.i_ui_create:before{content:""}.i_ui_delete_sm:before{content:""}.i_ui_delete:before{content:""}.i_ui_detail_sm:before{content:""}.i_ui_detail:before{content:""}.i_ui_favorite_sm:before{content:""}.i_ui_favorite:before{content:""}.i_ui_help_sm:before{content:""}.i_ui_help:before{content:""}.i_ui_media_back:before{content:""}.i_ui_media_circle_back:before{content:""}.i_ui_media_circle_fill_back:before{content:""}.i_ui_media_circle_fill_forward:before{content:""}.i_ui_media_circle_fill_next:before{content:""}.i_ui_media_circle_fill_pause:before{content:""}.i_ui_media_circle_fill_play:before{content:""}.i_ui_media_circle_fill_record:before{content:""}.i_ui_media_circle_fill_rewind:before{content:""}.i_ui_media_circle_fill_stop:before{content:""}.i_ui_media_circle_forward:before{content:""}.i_ui_media_circle_next:before{content:""}.i_ui_media_circle_pause:before{content:""}.i_ui_media_circle_play:before{content:""}.i_ui_media_circle_record:before{content:""}.i_ui_media_circle_rewind:before{content:""}.i_ui_media_circle_sto:before{content:""}.i_ui_media_fill_back:before{content:""}.i_ui_media_fill_forward:before{content:""}.i_ui_media_fill_next:before{content:""}.i_ui_media_fill_pause:before{content:""}.i_ui_media_fill_play:before{content:""}.i_ui_media_fill_record:before{content:""}.i_ui_media_fill_rewind:before{content:""}.i_ui_media_fill_stop:before{content:""}.i_ui_media_forward:before{content:""}.i_ui_media_next:before{content:""}.i_ui_media_pause:before{content:""}.i_ui_media_play:before{content:""}.i_ui_media_record:before{content:""}.i_ui_media_rewind:before{content:""}.i_ui_media_square_back:before{content:""}.i_ui_media_square_fill_back:before{content:""}.i_ui_media_square_fill_forward:before{content:""}.i_ui_media_square_fill_next:before{content:""}.i_ui_media_square_fill_pause:before{content:""}.i_ui_media_square_fill_play:before{content:""}.i_ui_media_square_fill_record:before{content:""}.i_ui_media_square_fill_rewind:before{content:""}.i_ui_media_square_fill_stop:before{content:""}.i_ui_media_square_forward:before{content:""}.i_ui_media_square_next:before{content:""}.i_ui_media_square_pause:before{content:""}.i_ui_media_square_play:before{content:""}.i_ui_media_square_record:before{content:""}.i_ui_media_square_rewind:before{content:""}.i_ui_media_square_stop:before{content:""}.i_ui_media_stop:before{content:""}.i_ui_menu_horizontal:before{content:""}.i_ui_menu_vertical:before{content:""}.i_ui_search_sm:before{content:""}.i_ui_search:before{content:""}.i_ui_sliders_horizontal:before{content:""}.i_ui_sliders_vertical:before{content:""}.i_ui_sort_down:before{content:""}.i_ui_sort_up:before{content:""}.i_ui_square_bookmark:before{content:""}.i_ui_square_create:before{content:""}.i_ui_square_delete:before{content:""}.i_ui_square_detail:before{content:""}.i_ui_square_favorite:before{content:""}.i_ui_square_fill_bookmark:before{content:""}.i_ui_square_fill_create:before{content:""}.i_ui_square_fill_delete:before{content:""}.i_ui_square_fill_detail:before{content:""}.i_ui_square_fill_favorite:before{content:""}.i_ui_square_fill_help:before{content:""}.i_ui_square_fill_search:before{content:""}.i_ui_square_fill_update:before{content:""}.i_ui_square_help:before{content:""}.i_ui_square_search:before{content:""}.i_ui_square_update:before{content:""}.i_ui_update_sm:before{content:""}.i_ui_update:before{content:""}.i_weather_cloud_02:before{content:""}.i_weather_cloud:before{content:""}.i_weather_sun:before{content:""}.i_symbol_swir_left:before{content:""}.i_symbol_star_half_xs:before{content:""}.i_symbol_star_half_sm:before{content:""}.i_symbol_star_half_ms:before{content:""}.i_symbol_star_half_fill_xs:before{content:""}.i_symbol_star_half_fill_sm:before{content:""}.i_symbol_star_half_fill_md:before{content:""}.i_symbol_star_half_fill:before{content:""}.i_symbol_star_copy:before{content:""}.i_badge_country_us:before{content:""}.i_badge_country_tr:before{content:""}.i_badge_country_se:before{content:""}.i_badge_country_ru:before{content:""}.i_badge_country_pt:before{content:""}.i_badge_country_pl:before{content:""}.i_badge_country_no:before{content:""}.i_badge_country_nl:before{content:""}.i_badge_country_ma:before{content:""}.i_badge_country_jp:before{content:""}.i_badge_country_it:before{content:""}.i_badge_country_in:before{content:""}.i_badge_country_gr:before{content:""}.i_badge_country_gl:before{content:""}.i_badge_country_fr:before{content:""}.i_badge_country_fill_us:before{content:""}.i_badge_country_fill_tr:before{content:""}.i_badge_country_fill_se:before{content:""}.i_badge_country_fill_ru:before{content:""}.i_badge_country_fill_pt:before{content:""}.i_badge_country_fill_pl:before{content:""}.i_badge_country_fill_no:before{content:""}.i_badge_country_fill_nl:before{content:""}.i_badge_country_fill_ma:before{content:""}.i_badge_country_fill_jp:before{content:""}.i_badge_country_fill_it:before{content:""}.i_badge_country_fill_in:before{content:""}.i_badge_country_fill_gr:before{content:""}.i_badge_country_fill_gl:before{content:""}.i_badge_country_fill_fr:before{content:""}.i_badge_country_fill_fi:before{content:""}.i_badge_country_fill_es:before{content:""}.i_badge_country_fill_en:before{content:""}.i_badge_country_fill_dk:before{content:""}.i_badge_country_fill_de:before{content:""}.i_badge_country_fill_cn:before{content:""}.i_badge_country_fill_be:before{content:""}.i_badge_country_fill_at:before{content:""}.i_badge_country_fill_aq:before{content:""}.i_badge_country_fi:before{content:""}.i_badge_country_es:before{content:""}.i_badge_country_en:before{content:""}.i_badge_country_dk:before{content:""}.i_badge_country_de:before{content:""}.i_badge_country_cn:before{content:""}.i_badge_country_be:before{content:""}.i_badge_country_at:before{content:""}.i_badge_country_aq:before{content:""}.i_ui_table:before{content:""}.i_ui_solution:before{content:""}.i_ui_pattern:before{content:""}.i_ui_paper_list:before{content:""}.i_ui_list_filled:before{content:""}.i_ui_list_box:before{content:""}.i_ui_list:before{content:""}.i_ui_home_round:before{content:""}.i_ui_home_plain:before{content:""}.i_ui_home_filled:before{content:""}.i_ui_edit_pen:before{content:""}.i_ui_document_list:before{content:""}.i_ui_create_simple_round:before{content:""}.i_ui_create_simple_corner:before{content:""}.i_ui_create_layers:before{content:""}.i_ui_book:before{content:""}.i:before,[class*=" i_"]:before,[class^=i_]:before{color:#000;display:inline;font-family:icongl!important;font-size:1.5em;font-style:normal;font-variant:normal;font-weight:400!important;line-height:1;-webkit-text-emphasis-style:none;text-emphasis-style:none;text-transform:none;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.si.inline{height:1.2em;vertical-align:sub;width:1.2em}.si.white{fill:#fff}.svg_container{overflow:hidden;padding-bottom:100%;vertical-align:top}.svg_container,.svg_container svg{display:inline-block;position:relative;width:100%}@font-face{font-display:swap;font-family:icongl;src:url(../font/icongl.woff2) format("woff2"),url(../font/icongl.woff) format("woff"),url(../font/icongl.ttf) format("ttf")}/*!
|
|
2
2
|
* ============================================================================
|
|
3
3
|
*
|
|
4
4
|
* Icon.gl v1.0.0 (https://www.icon.gl/)
|
package/font/icongl.eot
CHANGED
|
Binary file
|
package/font/icongl.ttf
CHANGED
|
Binary file
|
package/font/icongl.woff
CHANGED
|
Binary file
|
package/font/icongl.woff2
CHANGED
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const icon_ui_book = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 864 864\"><path d=\"M715.62 291.75a162.8 162.8 0 0 0-33.73-33.51c-85.41-63.29-206.73-22.78-246.59-6.35-39.86-16.42-161.18-56.94-246.59 6.35a163 163 0 0 0-33.73 33.51 21.9 21.9 0 0 0-4.38 12.7v321.71c.03 12.09 9.86 21.87 21.96 21.84a21.93 21.93 0 0 0 16.15-7.17 163.57 163.57 0 0 1 127.89-51.68 157.67 157.67 0 0 1 102.49 51.25c1.68 1.51 3.51 2.83 5.47 3.94h1.53a21.88 21.88 0 0 0 15.77 0h1.53c1.96-1.11 3.8-2.44 5.47-3.94a157.74 157.74 0 0 1 105.12-51.25 163.77 163.77 0 0 1 127.89 51.25c8.13 8.95 21.98 9.62 30.94 1.49 4.44-4.04 7.04-9.72 7.17-15.72V304.46c-.09-4.59-1.63-9.03-4.38-12.7Zm-395.29 253.6a197.1 197.1 0 0 0-125.92 34.16V312.55a120.7 120.7 0 0 1 20.37-19.27c64.17-47.96 160.09-18.18 198.63-3.07v288.64a195.6 195.6 0 0 0-93.07-33.51Zm355.87 34.16a199.65 199.65 0 0 0-109.5-34.16h-15.77c-33.61 2.9-65.9 14.44-93.73 33.51V290.22c38.32-15.11 134.46-43.8 198.63 3.07 7.51 5.61 14.35 12.08 20.37 19.27v266.96Z\"/></svg>";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.icon_ui_book = void 0;
|
|
4
|
+
exports.icon_ui_book = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 864 864"><path d="M715.62 291.75a162.8 162.8 0 0 0-33.73-33.51c-85.41-63.29-206.73-22.78-246.59-6.35-39.86-16.42-161.18-56.94-246.59 6.35a163 163 0 0 0-33.73 33.51 21.9 21.9 0 0 0-4.38 12.7v321.71c.03 12.09 9.86 21.87 21.96 21.84a21.93 21.93 0 0 0 16.15-7.17 163.57 163.57 0 0 1 127.89-51.68 157.67 157.67 0 0 1 102.49 51.25c1.68 1.51 3.51 2.83 5.47 3.94h1.53a21.88 21.88 0 0 0 15.77 0h1.53c1.96-1.11 3.8-2.44 5.47-3.94a157.74 157.74 0 0 1 105.12-51.25 163.77 163.77 0 0 1 127.89 51.25c8.13 8.95 21.98 9.62 30.94 1.49 4.44-4.04 7.04-9.72 7.17-15.72V304.46c-.09-4.59-1.63-9.03-4.38-12.7Zm-395.29 253.6a197.1 197.1 0 0 0-125.92 34.16V312.55a120.7 120.7 0 0 1 20.37-19.27c64.17-47.96 160.09-18.18 198.63-3.07v288.64a195.6 195.6 0 0 0-93.07-33.51Zm355.87 34.16a199.65 199.65 0 0 0-109.5-34.16h-15.77c-33.61 2.9-65.9 14.44-93.73 33.51V290.22c38.32-15.11 134.46-43.8 198.63 3.07 7.51 5.61 14.35 12.08 20.37 19.27v266.96Z"/></svg>`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const icon_ui_create_layers = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 864 864\"><path d=\"M241.59 284.99c9.25-6.17 22.16-4.23 28.83 4.35s4.56 20.54-4.7 26.72l-65.69 43.69L431.95 514l231.92-154.25-243.99-162.28c-9.25-6.17-11.36-18.14-4.7-26.73 6.66-8.58 19.57-10.53 28.85-4.35l266.99 177.58c11.51 7.5 12.18 23.46.37 31.32l-99.35 66.09 98.99 65.85c11.53 7.48 12.18 23.46.37 31.32l-266.99 177.6c-7.03 4.92-16.98 5.26-24.48.24L152.94 538.81c-11.51-7.5-12.18-23.46-.37-31.32l99.35-66.09-98.99-65.83c-11.51-7.5-12.18-23.46-.37-31.32l89.05-59.22-.02-.02Zm12.27-31c-27.29 0-27.29-38.44 0-38.44h56.73v-52.58c0-25.3 41.48-25.3 41.48 0v52.58h56.73c27.29 0 27.29 38.44 0 38.44h-56.73v52.58c0 25.3-41.48 25.3-41.48 0v-52.58zM576.6 464.96 444.38 552.9c-7.03 4.92-16.98 5.26-24.48.24l-132.55-88.16-87.28 58.06 231.92 154.25 231.92-154.25-87.28-58.06-.02-.02Z\"/></svg>";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.icon_ui_create_layers = void 0;
|
|
4
|
+
exports.icon_ui_create_layers = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 864 864"><path d="M241.59 284.99c9.25-6.17 22.16-4.23 28.83 4.35s4.56 20.54-4.7 26.72l-65.69 43.69L431.95 514l231.92-154.25-243.99-162.28c-9.25-6.17-11.36-18.14-4.7-26.73 6.66-8.58 19.57-10.53 28.85-4.35l266.99 177.58c11.51 7.5 12.18 23.46.37 31.32l-99.35 66.09 98.99 65.85c11.53 7.48 12.18 23.46.37 31.32l-266.99 177.6c-7.03 4.92-16.98 5.26-24.48.24L152.94 538.81c-11.51-7.5-12.18-23.46-.37-31.32l99.35-66.09-98.99-65.83c-11.51-7.5-12.18-23.46-.37-31.32l89.05-59.22-.02-.02Zm12.27-31c-27.29 0-27.29-38.44 0-38.44h56.73v-52.58c0-25.3 41.48-25.3 41.48 0v52.58h56.73c27.29 0 27.29 38.44 0 38.44h-56.73v52.58c0 25.3-41.48 25.3-41.48 0v-52.58zM576.6 464.96 444.38 552.9c-7.03 4.92-16.98 5.26-24.48.24l-132.55-88.16-87.28 58.06 231.92 154.25 231.92-154.25-87.28-58.06-.02-.02Z"/></svg>`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const icon_ui_create_simple_corner = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 864 864\"><path d=\"M621.37 412.73c0-25.64 38.83-25.64 38.83 0v288.45c0 10.75-8.68 19.48-19.43 19.48H165.14c-10.72 0-19.41-8.72-19.41-19.48V224.25c0-10.75 8.68-19.48 19.41-19.48h286.88c25.55 0 25.55 38.94 0 38.94H184.57V681.7h436.82V412.71zM518.26 274.22c-25.55 0-25.55-38.94 0-38.94h71.87v-72.07c0-25.62 38.83-25.62 38.83 0v72.07h71.87c25.55 0 25.55 38.94 0 38.94h-71.87v72.07c0 25.62-38.83 25.62-38.83 0v-72.07z\"/></svg>";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.icon_ui_create_simple_corner = void 0;
|
|
4
|
+
exports.icon_ui_create_simple_corner = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 864 864"><path d="M621.37 412.73c0-25.64 38.83-25.64 38.83 0v288.45c0 10.75-8.68 19.48-19.43 19.48H165.14c-10.72 0-19.41-8.72-19.41-19.48V224.25c0-10.75 8.68-19.48 19.41-19.48h286.88c25.55 0 25.55 38.94 0 38.94H184.57V681.7h436.82V412.71zM518.26 274.22c-25.55 0-25.55-38.94 0-38.94h71.87v-72.07c0-25.62 38.83-25.62 38.83 0v72.07h71.87c25.55 0 25.55 38.94 0 38.94h-71.87v72.07c0 25.62-38.83 25.62-38.83 0v-72.07z"/></svg>`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const icon_ui_create_simple_round = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 864 864\"><path d=\"M571.38 598.3c0 41.81-34.02 75.83-75.8 75.83l-229.85-.02c-41.81 0-75.82-34.02-75.82-75.83V368.44c0-41.81 34.02-75.83 75.82-75.83h144.89v-45.94H265.73c-67.13 0-121.74 54.6-121.74 121.75v229.84c0 67.14 54.6 121.75 121.74 121.75h229.82c67.13 0 121.74-54.6 121.74-121.75V453.35h-45.94v144.91l.02.05Zm146.71-351.61h-100.8V145.91h-45.91v100.78h-100.8v45.94h100.8v100.78h45.91V292.63h100.8z\"/></svg>";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.icon_ui_create_simple_round = void 0;
|
|
4
|
+
exports.icon_ui_create_simple_round = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 864 864"><path d="M571.38 598.3c0 41.81-34.02 75.83-75.8 75.83l-229.85-.02c-41.81 0-75.82-34.02-75.82-75.83V368.44c0-41.81 34.02-75.83 75.82-75.83h144.89v-45.94H265.73c-67.13 0-121.74 54.6-121.74 121.75v229.84c0 67.14 54.6 121.75 121.74 121.75h229.82c67.13 0 121.74-54.6 121.74-121.75V453.35h-45.94v144.91l.02.05Zm146.71-351.61h-100.8V145.91h-45.91v100.78h-100.8v45.94h100.8v100.78h45.91V292.63h100.8z"/></svg>`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const icon_ui_document_list = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 864 864\"><path d=\"M144 724h580V144H144zm23.05-556.95h533.9v533.9h-533.9z\"/><path d=\"M239.9 569.55h388.2v23.05H239.9zm0-77.92H434v23.05H239.9zm0-156.76H434v23.05H239.9zm0 78.84h388.2v23.05H239.9zm0-138.31h388.2v23.05H239.9z\"/></svg>";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.icon_ui_document_list = void 0;
|
|
4
|
+
exports.icon_ui_document_list = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 864 864"><path d="M144 724h580V144H144zm23.05-556.95h533.9v533.9h-533.9z"/><path d="M239.9 569.55h388.2v23.05H239.9zm0-77.92H434v23.05H239.9zm0-156.76H434v23.05H239.9zm0 78.84h388.2v23.05H239.9zm0-138.31h388.2v23.05H239.9z"/></svg>`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const icon_ui_edit_pen = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 864 864\"><path fill-rule=\"evenodd\" d=\"m712.71 233.38-82.07-82.09c-9.72-9.72-25.47-9.72-35.17 0L190.96 555.87 144.01 720l164.2-46.85 404.51-404.59c9.72-9.72 9.72-25.47 0-35.17ZM201.86 681.61l-19.42-19.4 24.93-78.18 72.7 72.71-78.21 24.88Zm100.48-37.78-82.07-82.1 328.34-328.39 82.07 82.09-328.34 328.41Zm386.92-387-41.04 41.04-82.07-82.09 41.04-41.04c3.24-3.24 8.49-3.24 11.72 0l70.35 70.36c3.24 3.24 3.24 8.49 0 11.72Z\"/></svg>";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.icon_ui_edit_pen = void 0;
|
|
4
|
+
exports.icon_ui_edit_pen = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 864 864"><path fill-rule="evenodd" d="m712.71 233.38-82.07-82.09c-9.72-9.72-25.47-9.72-35.17 0L190.96 555.87 144.01 720l164.2-46.85 404.51-404.59c9.72-9.72 9.72-25.47 0-35.17ZM201.86 681.61l-19.42-19.4 24.93-78.18 72.7 72.71-78.21 24.88Zm100.48-37.78-82.07-82.1 328.34-328.39 82.07 82.09-328.34 328.41Zm386.92-387-41.04 41.04-82.07-82.09 41.04-41.04c3.24-3.24 8.49-3.24 11.72 0l70.35 70.36c3.24 3.24 3.24 8.49 0 11.72Z"/></svg>`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const icon_ui_home_filled = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 864 864\"><path d=\"M432 144c-8.45 0-16.93 2.7-23.82 8.14L163.44 344.52c-12.26 9.62-19.44 24.15-19.44 39.46v303.23c0 17.92 15.37 32.79 33.89 32.79h508.22c18.52 0 33.89-14.87 33.89-32.79V383.98c0-15.3-7.12-29.84-19.38-39.46L455.85 152.11C448.96 146.7 440.44 144 432 144M304.95 523.29h254.14c32.56 0 59.3 25.88 59.3 57.38s-26.75 57.38-59.3 57.38H304.95c-32.56 0-59.27-25.88-59.27-57.38s26.71-57.38 59.27-57.38m0 32.79c-14.36 0-25.41 10.69-25.41 24.59s11.05 24.59 25.41 24.59h254.14c14.36 0 25.41-10.69 25.41-24.59s-11.05-24.59-25.41-24.59z\"/></svg>";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.icon_ui_home_filled = void 0;
|
|
4
|
+
exports.icon_ui_home_filled = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 864 864"><path d="M432 144c-8.45 0-16.93 2.7-23.82 8.14L163.44 344.52c-12.26 9.62-19.44 24.15-19.44 39.46v303.23c0 17.92 15.37 32.79 33.89 32.79h508.22c18.52 0 33.89-14.87 33.89-32.79V383.98c0-15.3-7.12-29.84-19.38-39.46L455.85 152.11C448.96 146.7 440.44 144 432 144M304.95 523.29h254.14c32.56 0 59.3 25.88 59.3 57.38s-26.75 57.38-59.3 57.38H304.95c-32.56 0-59.27-25.88-59.27-57.38s26.71-57.38 59.27-57.38m0 32.79c-14.36 0-25.41 10.69-25.41 24.59s11.05 24.59 25.41 24.59h254.14c14.36 0 25.41-10.69 25.41-24.59s-11.05-24.59-25.41-24.59z"/></svg>`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const icon_ui_home_plain = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 864 864\"><path d=\"M431.99 144c-8.45 0-16.93 2.7-23.82 8.12L163.44 344.07c-12.26 9.6-19.44 24.07-19.44 39.34v302.51c0 17.87 15.37 32.71 33.89 32.71h160.94c18.52 0 33.89-14.84 33.89-32.71l-.03-188.06h118.6v188.03c0 17.87 15.37 32.71 33.89 32.71h160.94c18.52 0 33.89-14.84 33.89-32.71l-.03-302.48c0-15.27-7.15-29.74-19.41-39.34L455.81 152.08c-6.89-5.4-15.37-8.09-23.82-8.09Zm-2.48 33.51c1.49-1.2 3.46-1.2 4.95 0l244.73 191.95c4.35 3.43 6.89 8.52 6.89 13.95v302.51H525.14V497.86c0-17.84-15.37-32.68-33.86-32.68h-118.6c-18.52 0-33.89 14.84-33.89 32.71l.03 188.03H177.88V383.41c0-5.43 2.51-10.52 6.89-13.95l244.72-191.95Z\"/></svg>";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.icon_ui_home_plain = void 0;
|
|
4
|
+
exports.icon_ui_home_plain = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 864 864"><path d="M431.99 144c-8.45 0-16.93 2.7-23.82 8.12L163.44 344.07c-12.26 9.6-19.44 24.07-19.44 39.34v302.51c0 17.87 15.37 32.71 33.89 32.71h160.94c18.52 0 33.89-14.84 33.89-32.71l-.03-188.06h118.6v188.03c0 17.87 15.37 32.71 33.89 32.71h160.94c18.52 0 33.89-14.84 33.89-32.71l-.03-302.48c0-15.27-7.15-29.74-19.41-39.34L455.81 152.08c-6.89-5.4-15.37-8.09-23.82-8.09Zm-2.48 33.51c1.49-1.2 3.46-1.2 4.95 0l244.73 191.95c4.35 3.43 6.89 8.52 6.89 13.95v302.51H525.14V497.86c0-17.84-15.37-32.68-33.86-32.68h-118.6c-18.52 0-33.89 14.84-33.89 32.71l.03 188.03H177.88V383.41c0-5.43 2.51-10.52 6.89-13.95l244.72-191.95Z"/></svg>`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const icon_ui_home_round = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 864 864\"><path d=\"M432 144c-8.45 0-16.93 2.7-23.82 8.13L163.44 344.06c-12.26 9.6-19.44 24.1-19.44 39.37v302.53c0 17.87 15.37 32.72 33.89 32.72l508.22-.03c18.52 0 33.89-14.84 33.89-32.72v-302.5c0-15.27-7.12-29.77-19.38-39.37L455.85 152.09c-6.89-5.4-15.41-8.09-23.85-8.09m0 32.62c.86 0 1.72.31 2.48.89l244.74 191.93c4.35 3.43 6.89 8.55 6.89 13.98v302.53H177.9V383.42c0-5.43 2.54-10.58 6.92-13.98l244.74-191.93a3.78 3.78 0 0 1 2.45-.89Zm-127.05 345.8c-32.56 0-59.3 25.82-59.3 57.24s26.75 57.24 59.3 57.24h254.11c32.56 0 59.3-25.82 59.3-57.24s-26.75-57.24-59.3-57.24zm0 32.71h254.11c14.36 0 25.41 10.67 25.41 24.53s-11.05 24.53-25.41 24.53H304.95c-14.36 0-25.41-10.67-25.41-24.53s11.05-24.53 25.41-24.53\"/></svg>";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.icon_ui_home_round = void 0;
|
|
4
|
+
exports.icon_ui_home_round = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 864 864"><path d="M432 144c-8.45 0-16.93 2.7-23.82 8.13L163.44 344.06c-12.26 9.6-19.44 24.1-19.44 39.37v302.53c0 17.87 15.37 32.72 33.89 32.72l508.22-.03c18.52 0 33.89-14.84 33.89-32.72v-302.5c0-15.27-7.12-29.77-19.38-39.37L455.85 152.09c-6.89-5.4-15.41-8.09-23.85-8.09m0 32.62c.86 0 1.72.31 2.48.89l244.74 191.93c4.35 3.43 6.89 8.55 6.89 13.98v302.53H177.9V383.42c0-5.43 2.54-10.58 6.92-13.98l244.74-191.93a3.78 3.78 0 0 1 2.45-.89Zm-127.05 345.8c-32.56 0-59.3 25.82-59.3 57.24s26.75 57.24 59.3 57.24h254.11c32.56 0 59.3-25.82 59.3-57.24s-26.75-57.24-59.3-57.24zm0 32.71h254.11c14.36 0 25.41 10.67 25.41 24.53s-11.05 24.53-25.41 24.53H304.95c-14.36 0-25.41-10.67-25.41-24.53s11.05-24.53 25.41-24.53"/></svg>`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const icon_ui_list = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 864 864\"><path d=\"M314.19 558.39c5.22-5.3 13.77-5.3 18.99 0 5.26 5.3 5.26 13.89 0 19.19l-89.71 90.47c-5.22 5.27-13.77 5.27-18.99 0l-44.86-45.24c-5.26-5.3-5.26-13.89 0-19.19 5.22-5.3 13.77-5.3 18.99 0l35.36 35.62 80.22-80.86Zm368.35 41.24c7.43 0 13.46 6.08 13.46 13.57s-6.03 13.57-13.46 13.57H435.83c-7.43 0-13.46-6.08-13.46-13.57s6.03-13.57 13.46-13.57zM314.19 377.44c5.22-5.3 13.77-5.3 18.99 0 5.26 5.3 5.26 13.89 0 19.19l-89.71 90.47c-5.22 5.27-13.77 5.27-18.99 0l-44.86-45.24c-5.26-5.3-5.26-13.89 0-19.19 5.22-5.3 13.77-5.3 18.99 0l35.36 35.62 80.22-80.86Zm368.35 41.24c7.43 0 13.46 6.08 13.46 13.57s-6.03 13.57-13.46 13.57H435.83c-7.43 0-13.46-6.08-13.46-13.57s6.03-13.57 13.46-13.57zM314.19 196.49c5.22-5.3 13.77-5.3 18.99 0 5.26 5.3 5.26 13.89 0 19.19l-89.71 90.47c-5.22 5.27-13.77 5.27-18.99 0l-44.86-45.24c-5.26-5.3-5.26-13.89 0-19.19 5.22-5.3 13.77-5.3 18.99 0l35.36 35.62 80.22-80.86Zm368.35 41.24c7.43 0 13.46 6.08 13.46 13.57s-6.03 13.57-13.46 13.57H435.83c-7.43 0-13.46-6.08-13.46-13.57s6.03-13.57 13.46-13.57z\"/></svg>";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.icon_ui_list = void 0;
|
|
4
|
+
exports.icon_ui_list = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 864 864"><path d="M314.19 558.39c5.22-5.3 13.77-5.3 18.99 0 5.26 5.3 5.26 13.89 0 19.19l-89.71 90.47c-5.22 5.27-13.77 5.27-18.99 0l-44.86-45.24c-5.26-5.3-5.26-13.89 0-19.19 5.22-5.3 13.77-5.3 18.99 0l35.36 35.62 80.22-80.86Zm368.35 41.24c7.43 0 13.46 6.08 13.46 13.57s-6.03 13.57-13.46 13.57H435.83c-7.43 0-13.46-6.08-13.46-13.57s6.03-13.57 13.46-13.57zM314.19 377.44c5.22-5.3 13.77-5.3 18.99 0 5.26 5.3 5.26 13.89 0 19.19l-89.71 90.47c-5.22 5.27-13.77 5.27-18.99 0l-44.86-45.24c-5.26-5.3-5.26-13.89 0-19.19 5.22-5.3 13.77-5.3 18.99 0l35.36 35.62 80.22-80.86Zm368.35 41.24c7.43 0 13.46 6.08 13.46 13.57s-6.03 13.57-13.46 13.57H435.83c-7.43 0-13.46-6.08-13.46-13.57s6.03-13.57 13.46-13.57zM314.19 196.49c5.22-5.3 13.77-5.3 18.99 0 5.26 5.3 5.26 13.89 0 19.19l-89.71 90.47c-5.22 5.27-13.77 5.27-18.99 0l-44.86-45.24c-5.26-5.3-5.26-13.89 0-19.19 5.22-5.3 13.77-5.3 18.99 0l35.36 35.62 80.22-80.86Zm368.35 41.24c7.43 0 13.46 6.08 13.46 13.57s-6.03 13.57-13.46 13.57H435.83c-7.43 0-13.46-6.08-13.46-13.57s6.03-13.57 13.46-13.57z"/></svg>`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const icon_ui_list_box = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 864 864\"><path d=\"M297 445.5c-7.46 0-13.5-6.04-13.5-13.5s6.04-13.5 13.5-13.5h270c7.46 0 13.5 6.04 13.5 13.5s-6.04 13.5-13.5 13.5zm0 108c-7.46 0-13.5-6.04-13.5-13.5s6.04-13.5 13.5-13.5h270c7.46 0 13.5 6.04 13.5 13.5s-6.04 13.5-13.5 13.5zm0-216c-7.46 0-13.5-6.04-13.5-13.5s6.04-13.5 13.5-13.5h270c7.46 0 13.5 6.04 13.5 13.5s-6.04 13.5-13.5 13.5z\"/><path d=\"M177.79 171c-3.75 0-6.79 3.07-6.79 6.79v508.42c0 3.75 3.07 6.79 6.79 6.79h508.42c3.75 0 6.79-3.07 6.79-6.79V177.79c0-3.75-3.07-6.79-6.79-6.79zM171 144h522c14.91 0 27 12.09 27 27v522c0 14.91-12.09 27-27 27H171c-14.91 0-27-12.09-27-27V171c0-14.91 12.09-27 27-27\"/></svg>";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.icon_ui_list_box = void 0;
|
|
4
|
+
exports.icon_ui_list_box = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 864 864"><path d="M297 445.5c-7.46 0-13.5-6.04-13.5-13.5s6.04-13.5 13.5-13.5h270c7.46 0 13.5 6.04 13.5 13.5s-6.04 13.5-13.5 13.5zm0 108c-7.46 0-13.5-6.04-13.5-13.5s6.04-13.5 13.5-13.5h270c7.46 0 13.5 6.04 13.5 13.5s-6.04 13.5-13.5 13.5zm0-216c-7.46 0-13.5-6.04-13.5-13.5s6.04-13.5 13.5-13.5h270c7.46 0 13.5 6.04 13.5 13.5s-6.04 13.5-13.5 13.5z"/><path d="M177.79 171c-3.75 0-6.79 3.07-6.79 6.79v508.42c0 3.75 3.07 6.79 6.79 6.79h508.42c3.75 0 6.79-3.07 6.79-6.79V177.79c0-3.75-3.07-6.79-6.79-6.79zM171 144h522c14.91 0 27 12.09 27 27v522c0 14.91-12.09 27-27 27H171c-14.91 0-27-12.09-27-27V171c0-14.91 12.09-27 27-27"/></svg>`;
|