@bagelink/vue 1.4.18 → 1.4.22
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/dist/components/AddressSearch.vue.d.ts.map +1 -1
- package/dist/components/Carousel2.vue.d.ts +89 -0
- package/dist/components/Carousel2.vue.d.ts.map +1 -0
- package/dist/components/Dropdown.vue.d.ts.map +1 -1
- package/dist/components/Icon/Icon.vue.d.ts.map +1 -1
- package/dist/components/calendar/CalendarPopover.vue.d.ts.map +1 -1
- package/dist/components/calendar/views/CalendarPopover.vue.d.ts +2 -2
- package/dist/components/calendar/views/CalendarPopover.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
- package/dist/index.cjs +46 -70
- package/dist/index.mjs +46 -70
- package/dist/style.css +745 -740
- package/package.json +1 -1
- package/src/components/Icon/Icon.vue +4 -2
- package/src/styles/text.css +784 -777
- package/dist/components/Icon.vue.d.ts +0 -16
- package/dist/components/Icon.vue.d.ts.map +0 -1
- package/dist/components/form/BglFieldSet.vue.d.ts +0 -25
- package/dist/components/form/BglFieldSet.vue.d.ts.map +0 -1
- package/dist/iconify-0J3vK-m1.cjs +0 -1693
- package/dist/iconify-Bc1B42Ak.cjs +0 -1771
- package/dist/iconify-BiLGk5km.js +0 -1693
- package/dist/iconify-DVnNdzog.js +0 -1771
- package/dist/types/timeago.d.ts +0 -23
- package/dist/types/timeago.d.ts.map +0 -1
package/dist/style.css
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&display=swap');
|
|
2
|
+
.expand-enter-active,
|
|
3
|
+
.expand-leave-active {
|
|
4
|
+
transition: all 0.2s;
|
|
5
|
+
transition-delay: 0ms;
|
|
6
|
+
}
|
|
7
|
+
.expand-enter-from,
|
|
8
|
+
.expand-leave-to {
|
|
9
|
+
max-height: 0;
|
|
10
|
+
}
|
|
11
|
+
.expand-enter-to,
|
|
12
|
+
.expand-leave-from {
|
|
13
|
+
max-height: 300px;
|
|
14
|
+
}
|
|
15
|
+
|
|
2
16
|
.accordion-item[data-v-3334f637] {
|
|
3
17
|
border-bottom: 1px solid var(--border-color);
|
|
4
18
|
transition: all 0.2s;
|
|
@@ -41,20 +55,6 @@
|
|
|
41
55
|
text-decoration: underline;
|
|
42
56
|
}
|
|
43
57
|
|
|
44
|
-
.expand-enter-active,
|
|
45
|
-
.expand-leave-active {
|
|
46
|
-
transition: all 0.2s;
|
|
47
|
-
transition-delay: 0ms;
|
|
48
|
-
}
|
|
49
|
-
.expand-enter-from,
|
|
50
|
-
.expand-leave-to {
|
|
51
|
-
max-height: 0;
|
|
52
|
-
}
|
|
53
|
-
.expand-enter-to,
|
|
54
|
-
.expand-leave-from {
|
|
55
|
-
max-height: 300px;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
58
|
.bgl_btn[data-v-99c4aa53] {
|
|
59
59
|
--btn-bg: var(--bgl-primary);
|
|
60
60
|
--btn-color: var(--bgl-light-text);
|
|
@@ -262,10 +262,6 @@ display: block;
|
|
|
262
262
|
object-fit: cover;
|
|
263
263
|
}
|
|
264
264
|
|
|
265
|
-
.inline[data-v-689f051f] {
|
|
266
|
-
display: inline;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
265
|
.pill {
|
|
270
266
|
border-radius: 10px;
|
|
271
267
|
padding: 4px 8px;
|
|
@@ -308,6 +304,10 @@ display: block;
|
|
|
308
304
|
color: var(--bgl-red);
|
|
309
305
|
}
|
|
310
306
|
|
|
307
|
+
.inline[data-v-689f051f] {
|
|
308
|
+
display: inline;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
311
|
.bgl_vid iframe[data-v-1c895c6c],
|
|
312
312
|
.bgl_vid video[data-v-1c895c6c] {
|
|
313
313
|
width: 100%;
|
|
@@ -1407,6 +1407,12 @@ fieldset[data-v-f7e758e5] {
|
|
|
1407
1407
|
color: var(--label-color) !important;
|
|
1408
1408
|
}
|
|
1409
1409
|
|
|
1410
|
+
/* Global styles */
|
|
1411
|
+
pre code.hljs {
|
|
1412
|
+
padding: 0 !important;
|
|
1413
|
+
background: transparent !important;
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1410
1416
|
.code-editor-container[data-v-de01e351] {
|
|
1411
1417
|
margin-bottom: 0.5rem;
|
|
1412
1418
|
height: 100%;
|
|
@@ -1475,12 +1481,6 @@ fieldset[data-v-f7e758e5] {
|
|
|
1475
1481
|
color: transparent;
|
|
1476
1482
|
}
|
|
1477
1483
|
|
|
1478
|
-
/* Global styles */
|
|
1479
|
-
pre code.hljs {
|
|
1480
|
-
padding: 0 !important;
|
|
1481
|
-
background: transparent !important;
|
|
1482
|
-
}
|
|
1483
|
-
|
|
1484
1484
|
.colorInputPick{
|
|
1485
1485
|
--input-font-size: 12px;
|
|
1486
1486
|
height: calc(var(--input-height) - 9px) !important;
|
|
@@ -1960,42 +1960,6 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
|
|
|
1960
1960
|
}
|
|
1961
1961
|
.resize-observer[data-v-b329ee4c]{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:transparent;pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer[data-v-b329ee4c] object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper__popper{z-index:10000;top:0;left:0;outline:none}.v-popper__popper.v-popper__popper--hidden{visibility:hidden;opacity:0;transition:opacity .15s,visibility .15s;pointer-events:none}.v-popper__popper.v-popper__popper--shown{visibility:visible;opacity:1;transition:opacity .15s}.v-popper__popper.v-popper__popper--skip-transition,.v-popper__popper.v-popper__popper--skip-transition>.v-popper__wrapper{transition:none!important}.v-popper__backdrop{position:absolute;top:0;left:0;width:100%;height:100%;display:none}.v-popper__inner{position:relative;box-sizing:border-box;overflow-y:auto}.v-popper__inner>div{position:relative;z-index:1;max-width:inherit;max-height:inherit}.v-popper__arrow-container{position:absolute;width:10px;height:10px}.v-popper__popper--arrow-overflow .v-popper__arrow-container,.v-popper__popper--no-positioning .v-popper__arrow-container{display:none}.v-popper__arrow-inner,.v-popper__arrow-outer{border-style:solid;position:absolute;top:0;left:0;width:0;height:0}.v-popper__arrow-inner{visibility:hidden;border-width:7px}.v-popper__arrow-outer{border-width:6px}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner{left:-2px}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-outer,.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-outer{left:-1px}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-outer{border-bottom-width:0;border-left-color:transparent!important;border-right-color:transparent!important;border-bottom-color:transparent!important}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner{top:-2px}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:0}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-outer{border-top-width:0;border-left-color:transparent!important;border-right-color:transparent!important;border-top-color:transparent!important}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner{top:-4px}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-outer{top:-6px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-inner{top:-2px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-outer,.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-outer{top:-1px}.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-outer{border-left-width:0;border-left-color:transparent!important;border-top-color:transparent!important;border-bottom-color:transparent!important}.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-inner{left:-4px}.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-outer{left:-6px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-outer{border-right-width:0;border-top-color:transparent!important;border-right-color:transparent!important;border-bottom-color:transparent!important}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-inner{left:-2px}.v-popper--theme-tooltip .v-popper__inner{background:rgba(0,0,0,.8);color:#fff;border-radius:6px;padding:7px 12px 6px}.v-popper--theme-tooltip .v-popper__arrow-outer{border-color:#000c}.v-popper--theme-dropdown .v-popper__inner{background:#fff;color:#000;border-radius:6px;border:1px solid #ddd;box-shadow:0 6px 30px #0000001a}.v-popper--theme-dropdown .v-popper__arrow-inner{visibility:visible;border-color:#fff}.v-popper--theme-dropdown .v-popper__arrow-outer{border-color:#ddd}
|
|
1962
1962
|
|
|
1963
|
-
.selectinput[data-v-cced5e42] {
|
|
1964
|
-
width: 100%;
|
|
1965
|
-
}
|
|
1966
|
-
.selectinput-option[data-v-cced5e42] {
|
|
1967
|
-
padding: 6px 12px;
|
|
1968
|
-
cursor: pointer;
|
|
1969
|
-
border-radius: 5px;
|
|
1970
|
-
transition: all 0.2s;
|
|
1971
|
-
display: grid;
|
|
1972
|
-
grid-template-columns:1fr;
|
|
1973
|
-
justify-content: space-between;
|
|
1974
|
-
width: 100%;
|
|
1975
|
-
font-size: var(--input-font-size);
|
|
1976
|
-
margin-block: 0.15rem;
|
|
1977
|
-
}
|
|
1978
|
-
.selectinput-option .bgl_icon-font[data-v-cced5e42]{
|
|
1979
|
-
line-height: normal;
|
|
1980
|
-
}
|
|
1981
|
-
.selectinput-options.multiselect .selectinput-option[data-v-cced5e42] {
|
|
1982
|
-
grid-template-columns: 10px 1fr;
|
|
1983
|
-
}
|
|
1984
|
-
.selectinput-options[data-v-cced5e42] {
|
|
1985
|
-
max-height: 300px;
|
|
1986
|
-
overflow-y: auto;
|
|
1987
|
-
}
|
|
1988
|
-
.selectinput-option[data-v-cced5e42]:hover, .highlight[data-v-cced5e42] {
|
|
1989
|
-
background: var(--bgl-gray-20);
|
|
1990
|
-
}
|
|
1991
|
-
.isEmpty p[data-v-cced5e42] {
|
|
1992
|
-
opacity: 0.3;
|
|
1993
|
-
}
|
|
1994
|
-
.selected[data-v-cced5e42]{
|
|
1995
|
-
/* background: var(--bgl-primary-tint); */
|
|
1996
|
-
background: var(--bgl-selected);
|
|
1997
|
-
}
|
|
1998
|
-
|
|
1999
1963
|
.bagel-input label {
|
|
2000
1964
|
font-size: var(--label-font-size);
|
|
2001
1965
|
}
|
|
@@ -2036,6 +2000,42 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
|
|
|
2036
2000
|
/* color: var(--input-color); */
|
|
2037
2001
|
}
|
|
2038
2002
|
|
|
2003
|
+
.selectinput[data-v-cced5e42] {
|
|
2004
|
+
width: 100%;
|
|
2005
|
+
}
|
|
2006
|
+
.selectinput-option[data-v-cced5e42] {
|
|
2007
|
+
padding: 6px 12px;
|
|
2008
|
+
cursor: pointer;
|
|
2009
|
+
border-radius: 5px;
|
|
2010
|
+
transition: all 0.2s;
|
|
2011
|
+
display: grid;
|
|
2012
|
+
grid-template-columns:1fr;
|
|
2013
|
+
justify-content: space-between;
|
|
2014
|
+
width: 100%;
|
|
2015
|
+
font-size: var(--input-font-size);
|
|
2016
|
+
margin-block: 0.15rem;
|
|
2017
|
+
}
|
|
2018
|
+
.selectinput-option .bgl_icon-font[data-v-cced5e42]{
|
|
2019
|
+
line-height: normal;
|
|
2020
|
+
}
|
|
2021
|
+
.selectinput-options.multiselect .selectinput-option[data-v-cced5e42] {
|
|
2022
|
+
grid-template-columns: 10px 1fr;
|
|
2023
|
+
}
|
|
2024
|
+
.selectinput-options[data-v-cced5e42] {
|
|
2025
|
+
max-height: 300px;
|
|
2026
|
+
overflow-y: auto;
|
|
2027
|
+
}
|
|
2028
|
+
.selectinput-option[data-v-cced5e42]:hover, .highlight[data-v-cced5e42] {
|
|
2029
|
+
background: var(--bgl-gray-20);
|
|
2030
|
+
}
|
|
2031
|
+
.isEmpty p[data-v-cced5e42] {
|
|
2032
|
+
opacity: 0.3;
|
|
2033
|
+
}
|
|
2034
|
+
.selected[data-v-cced5e42]{
|
|
2035
|
+
/* background: var(--bgl-primary-tint); */
|
|
2036
|
+
background: var(--bgl-selected);
|
|
2037
|
+
}
|
|
2038
|
+
|
|
2039
2039
|
.bgl_input .canvas {
|
|
2040
2040
|
width: 100%;
|
|
2041
2041
|
height: 100%;
|
|
@@ -2051,6 +2051,40 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
|
|
|
2051
2051
|
border-radius: var(--input-border-radius);
|
|
2052
2052
|
}
|
|
2053
2053
|
|
|
2054
|
+
.table-row .bagel-input input,
|
|
2055
|
+
.table-row .bagel-input textarea,
|
|
2056
|
+
.table-row .bagel-input .input {
|
|
2057
|
+
border-radius: 0;
|
|
2058
|
+
background: transparent;
|
|
2059
|
+
color: var(--bgl-text-color);
|
|
2060
|
+
}
|
|
2061
|
+
.table-row .bagel-input textarea {
|
|
2062
|
+
resize: none;
|
|
2063
|
+
min-height: 40px;
|
|
2064
|
+
overflow: auto;
|
|
2065
|
+
margin: 0px;
|
|
2066
|
+
padding: 0.64rem 0.7rem 0;
|
|
2067
|
+
}
|
|
2068
|
+
.table-row .bagel-input {
|
|
2069
|
+
margin: 0;
|
|
2070
|
+
}
|
|
2071
|
+
.table-row .bagel-input input:focus-visible,
|
|
2072
|
+
.table-row .bagel-input textarea:focus-visible,
|
|
2073
|
+
.table-row .bagel-input .input:focus-visible {
|
|
2074
|
+
background: var(--border-color);
|
|
2075
|
+
}
|
|
2076
|
+
.ghost {
|
|
2077
|
+
opacity: 0;
|
|
2078
|
+
background: #c8ebfb;
|
|
2079
|
+
}
|
|
2080
|
+
.sortable-chosen {
|
|
2081
|
+
cursor: grabbing !important;
|
|
2082
|
+
border-color: transparent;
|
|
2083
|
+
background: var(--bgl-box-bg);
|
|
2084
|
+
border-radius: 10px;
|
|
2085
|
+
box-shadow: 0 0 10px 0 rgb(0 0 0 /20%);
|
|
2086
|
+
}
|
|
2087
|
+
|
|
2054
2088
|
.table-side-scroll[data-v-e9632f79] {
|
|
2055
2089
|
overflow: auto;
|
|
2056
2090
|
margin-inline-start: -1rem;
|
|
@@ -2157,40 +2191,6 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
|
|
|
2157
2191
|
opacity: 1;
|
|
2158
2192
|
}
|
|
2159
2193
|
|
|
2160
|
-
.table-row .bagel-input input,
|
|
2161
|
-
.table-row .bagel-input textarea,
|
|
2162
|
-
.table-row .bagel-input .input {
|
|
2163
|
-
border-radius: 0;
|
|
2164
|
-
background: transparent;
|
|
2165
|
-
color: var(--bgl-text-color);
|
|
2166
|
-
}
|
|
2167
|
-
.table-row .bagel-input textarea {
|
|
2168
|
-
resize: none;
|
|
2169
|
-
min-height: 40px;
|
|
2170
|
-
overflow: auto;
|
|
2171
|
-
margin: 0px;
|
|
2172
|
-
padding: 0.64rem 0.7rem 0;
|
|
2173
|
-
}
|
|
2174
|
-
.table-row .bagel-input {
|
|
2175
|
-
margin: 0;
|
|
2176
|
-
}
|
|
2177
|
-
.table-row .bagel-input input:focus-visible,
|
|
2178
|
-
.table-row .bagel-input textarea:focus-visible,
|
|
2179
|
-
.table-row .bagel-input .input:focus-visible {
|
|
2180
|
-
background: var(--border-color);
|
|
2181
|
-
}
|
|
2182
|
-
.ghost {
|
|
2183
|
-
opacity: 0;
|
|
2184
|
-
background: #c8ebfb;
|
|
2185
|
-
}
|
|
2186
|
-
.sortable-chosen {
|
|
2187
|
-
cursor: grabbing !important;
|
|
2188
|
-
border-color: transparent;
|
|
2189
|
-
background: var(--bgl-box-bg);
|
|
2190
|
-
border-radius: 10px;
|
|
2191
|
-
box-shadow: 0 0 10px 0 rgb(0 0 0 /20%);
|
|
2192
|
-
}
|
|
2193
|
-
|
|
2194
2194
|
.tel-input[data-v-24f599bf] {
|
|
2195
2195
|
direction: ltr;
|
|
2196
2196
|
text-align: left;
|
|
@@ -15416,254 +15416,254 @@ select {
|
|
|
15416
15416
|
opacity: 0;
|
|
15417
15417
|
}
|
|
15418
15418
|
}.txt-center {
|
|
15419
|
-
|
|
15419
|
+
text-align: center;
|
|
15420
15420
|
}.txt-start {
|
|
15421
|
-
|
|
15421
|
+
text-align: start;
|
|
15422
15422
|
}.txt-end {
|
|
15423
|
-
|
|
15423
|
+
text-align: end;
|
|
15424
15424
|
}.txt-justify {
|
|
15425
|
-
|
|
15425
|
+
text-align: justify;
|
|
15426
15426
|
}.txt-small {
|
|
15427
|
-
|
|
15427
|
+
font-size: 12px;
|
|
15428
15428
|
}.txt20,
|
|
15429
15429
|
.txt-20 {
|
|
15430
|
-
|
|
15430
|
+
font-size: 20px;
|
|
15431
15431
|
}.txt24,
|
|
15432
15432
|
.txt-24 {
|
|
15433
|
-
|
|
15433
|
+
font-size: 24px;
|
|
15434
15434
|
}.txt28,
|
|
15435
15435
|
.txt-28 {
|
|
15436
|
-
|
|
15436
|
+
font-size: 28px;
|
|
15437
15437
|
}.txt30,
|
|
15438
15438
|
.txt-30 {
|
|
15439
|
-
|
|
15439
|
+
font-size: 30px;
|
|
15440
15440
|
}.txt32,
|
|
15441
15441
|
.txt-32 {
|
|
15442
|
-
|
|
15442
|
+
font-size: 32px;
|
|
15443
15443
|
}.txt36,
|
|
15444
15444
|
.txt-36 {
|
|
15445
|
-
|
|
15445
|
+
font-size: 36px;
|
|
15446
15446
|
}.txt40,
|
|
15447
15447
|
.txt-40 {
|
|
15448
|
-
|
|
15448
|
+
font-size: 40px;
|
|
15449
15449
|
}.txt44,
|
|
15450
15450
|
.txt-44 {
|
|
15451
|
-
|
|
15451
|
+
font-size: 44px;
|
|
15452
15452
|
}.txt48,
|
|
15453
15453
|
.txt-48 {
|
|
15454
|
-
|
|
15454
|
+
font-size: 48px;
|
|
15455
15455
|
}.txt50,
|
|
15456
15456
|
.txt-50 {
|
|
15457
|
-
|
|
15457
|
+
font-size: 50px;
|
|
15458
15458
|
}.txt52,
|
|
15459
15459
|
.txt-52 {
|
|
15460
|
-
|
|
15460
|
+
font-size: 52px;
|
|
15461
15461
|
}.txt56,
|
|
15462
15462
|
.txt-56 {
|
|
15463
|
-
|
|
15463
|
+
font-size: 56px;
|
|
15464
15464
|
}.txt60,
|
|
15465
15465
|
.txt-60 {
|
|
15466
|
-
|
|
15466
|
+
font-size: 60px;
|
|
15467
15467
|
}.txt64,
|
|
15468
15468
|
.txt-64 {
|
|
15469
|
-
|
|
15469
|
+
font-size: 64px;
|
|
15470
15470
|
}.txt68,
|
|
15471
15471
|
.txt-68 {
|
|
15472
|
-
|
|
15472
|
+
font-size: 68px;
|
|
15473
15473
|
}.txt70,
|
|
15474
15474
|
.txt-70 {
|
|
15475
|
-
|
|
15475
|
+
font-size: 70px;
|
|
15476
15476
|
}.txt72,
|
|
15477
15477
|
.txt-72 {
|
|
15478
|
-
|
|
15478
|
+
font-size: 72px;
|
|
15479
15479
|
}.txt80,
|
|
15480
15480
|
.txt-80 {
|
|
15481
|
-
|
|
15481
|
+
font-size: 80px;
|
|
15482
15482
|
}.txt90,
|
|
15483
15483
|
.txt-90 {
|
|
15484
|
-
|
|
15484
|
+
font-size: 90px;
|
|
15485
15485
|
}.txt100,
|
|
15486
15486
|
.txt-100 {
|
|
15487
|
-
|
|
15487
|
+
font-size: 100px;
|
|
15488
15488
|
}.txt110,
|
|
15489
15489
|
.txt-110 {
|
|
15490
|
-
|
|
15490
|
+
font-size: 110px;
|
|
15491
15491
|
}.txt120,
|
|
15492
15492
|
.txt-120 {
|
|
15493
|
-
|
|
15493
|
+
font-size: 120px;
|
|
15494
15494
|
}.txt130,
|
|
15495
15495
|
.txt-130 {
|
|
15496
|
-
|
|
15496
|
+
font-size: 130px;
|
|
15497
15497
|
}.txt140,
|
|
15498
15498
|
.txt-140 {
|
|
15499
|
-
|
|
15499
|
+
font-size: 140px;
|
|
15500
15500
|
}.txt150,
|
|
15501
15501
|
.txt-150 {
|
|
15502
|
-
|
|
15502
|
+
font-size: 150px;
|
|
15503
15503
|
}.txt18,
|
|
15504
15504
|
.txt-18 {
|
|
15505
|
-
|
|
15505
|
+
font-size: 18px;
|
|
15506
15506
|
}.txt16,
|
|
15507
15507
|
.txt-16 {
|
|
15508
|
-
|
|
15508
|
+
font-size: 16px;
|
|
15509
15509
|
}.txt14,
|
|
15510
15510
|
.txt-14 {
|
|
15511
|
-
|
|
15511
|
+
font-size: 14px;
|
|
15512
15512
|
}.txt12,
|
|
15513
15513
|
.txt-12 {
|
|
15514
|
-
|
|
15514
|
+
font-size: 12px;
|
|
15515
15515
|
}.txt11,
|
|
15516
15516
|
.txt-11 {
|
|
15517
|
-
|
|
15517
|
+
font-size: 11px;
|
|
15518
15518
|
}.txt10,
|
|
15519
15519
|
.txt-10 {
|
|
15520
|
-
|
|
15520
|
+
font-size: 10px;
|
|
15521
15521
|
}.txt9,
|
|
15522
15522
|
.txt-9 {
|
|
15523
|
-
|
|
15523
|
+
font-size: 9px;
|
|
15524
15524
|
}.txt025,
|
|
15525
15525
|
.txt-025 {
|
|
15526
|
-
|
|
15526
|
+
font-size: 0.25rem;
|
|
15527
15527
|
}.txt05,
|
|
15528
15528
|
.txt-05 {
|
|
15529
|
-
|
|
15529
|
+
font-size: 0.5rem;
|
|
15530
15530
|
}.txt075,
|
|
15531
15531
|
.txt-075 {
|
|
15532
|
-
|
|
15532
|
+
font-size: 0.75rem;
|
|
15533
15533
|
}.txt1,
|
|
15534
15534
|
.txt-1 {
|
|
15535
|
-
|
|
15535
|
+
font-size: 1rem;
|
|
15536
15536
|
}.txt1-25,
|
|
15537
15537
|
.txt-1-25 {
|
|
15538
|
-
|
|
15538
|
+
font-size: 1.25rem;
|
|
15539
15539
|
}.txt1-5,
|
|
15540
15540
|
.txt-1-5 {
|
|
15541
|
-
|
|
15541
|
+
font-size: 1.5rem;
|
|
15542
15542
|
}.txt1-75,
|
|
15543
15543
|
.txt-1-75 {
|
|
15544
|
-
|
|
15544
|
+
font-size: 1.75rem;
|
|
15545
15545
|
}.txt2,
|
|
15546
15546
|
.txt-2 {
|
|
15547
|
-
|
|
15547
|
+
font-size: 2rem;
|
|
15548
15548
|
}.txt2-25,
|
|
15549
15549
|
.txt-2-25 {
|
|
15550
|
-
|
|
15550
|
+
font-size: 2.25rem;
|
|
15551
15551
|
}.txt2-5,
|
|
15552
15552
|
.txt-2-5 {
|
|
15553
|
-
|
|
15553
|
+
font-size: 2.5rem;
|
|
15554
15554
|
}.txt2-75,
|
|
15555
15555
|
.txt-2-75 {
|
|
15556
|
-
|
|
15556
|
+
font-size: 2.75rem;
|
|
15557
15557
|
}.txt3,
|
|
15558
15558
|
.txt-3 {
|
|
15559
|
-
|
|
15559
|
+
font-size: 3rem;
|
|
15560
15560
|
}.txt3-25,
|
|
15561
15561
|
.txt-3-25 {
|
|
15562
|
-
|
|
15562
|
+
font-size: 3.25rem;
|
|
15563
15563
|
}.txt3-5,
|
|
15564
15564
|
.txt-3-5 {
|
|
15565
|
-
|
|
15565
|
+
font-size: 3.5rem;
|
|
15566
15566
|
}.txt3-75,
|
|
15567
15567
|
.txt-3-75 {
|
|
15568
|
-
|
|
15568
|
+
font-size: 3.75rem;
|
|
15569
15569
|
}.txt4,
|
|
15570
15570
|
.txt-4 {
|
|
15571
|
-
|
|
15571
|
+
font-size: 4rem;
|
|
15572
15572
|
}.txt4-25,
|
|
15573
15573
|
.txt-4-25 {
|
|
15574
|
-
|
|
15574
|
+
font-size: 4.25rem;
|
|
15575
15575
|
}.txt4-5,
|
|
15576
15576
|
.txt-4-5 {
|
|
15577
|
-
|
|
15577
|
+
font-size: 4.5rem;
|
|
15578
15578
|
}.txt4-75,
|
|
15579
15579
|
.txt-4-75 {
|
|
15580
|
-
|
|
15580
|
+
font-size: 4.75rem;
|
|
15581
15581
|
}.txt5,
|
|
15582
15582
|
.txt-5 {
|
|
15583
|
-
|
|
15583
|
+
font-size: 5rem;
|
|
15584
15584
|
}.txt5-25,
|
|
15585
15585
|
.txt-5-25 {
|
|
15586
|
-
|
|
15586
|
+
font-size: 5.25rem;
|
|
15587
15587
|
}.txt5-5,
|
|
15588
15588
|
.txt-5-5 {
|
|
15589
|
-
|
|
15589
|
+
font-size: 5.5rem;
|
|
15590
15590
|
}.txt5-75,
|
|
15591
15591
|
.txt-5-75 {
|
|
15592
|
-
|
|
15592
|
+
font-size: 5.75rem;
|
|
15593
15593
|
}.txt6,
|
|
15594
15594
|
.txt-6 {
|
|
15595
|
-
|
|
15595
|
+
font-size: 6rem;
|
|
15596
15596
|
}.txt6-25,
|
|
15597
15597
|
.txt-6-25 {
|
|
15598
|
-
|
|
15598
|
+
font-size: 6.25rem;
|
|
15599
15599
|
}.txt6-5,
|
|
15600
15600
|
.txt-6-5 {
|
|
15601
|
-
|
|
15601
|
+
font-size: 6.5rem;
|
|
15602
15602
|
}.txt6-75,
|
|
15603
15603
|
.txt-6-75 {
|
|
15604
|
-
|
|
15604
|
+
font-size: 6.75rem;
|
|
15605
15605
|
}.txt7,
|
|
15606
15606
|
.txt-7 {
|
|
15607
|
-
|
|
15607
|
+
font-size: 7rem;
|
|
15608
15608
|
}.txt7-25,
|
|
15609
15609
|
.txt-7-25 {
|
|
15610
|
-
|
|
15610
|
+
font-size: 7.25rem;
|
|
15611
15611
|
}.txt7-5,
|
|
15612
15612
|
.txt-7-5 {
|
|
15613
|
-
|
|
15613
|
+
font-size: 7.5rem;
|
|
15614
15614
|
}.txt7-75,
|
|
15615
15615
|
.txt-7-75 {
|
|
15616
|
-
|
|
15616
|
+
font-size: 7.75rem;
|
|
15617
15617
|
}.txt8,
|
|
15618
15618
|
.txt-8 {
|
|
15619
|
-
|
|
15619
|
+
font-size: 8rem;
|
|
15620
15620
|
}.txt8-25,
|
|
15621
15621
|
.txt-8-25 {
|
|
15622
|
-
|
|
15622
|
+
font-size: 8.25rem;
|
|
15623
15623
|
}.txt8-5,
|
|
15624
15624
|
.txt-8-5 {
|
|
15625
|
-
|
|
15625
|
+
font-size: 8.5rem;
|
|
15626
15626
|
}.txt8-75,
|
|
15627
15627
|
.txt-8-75 {
|
|
15628
|
-
|
|
15628
|
+
font-size: 8.75rem;
|
|
15629
15629
|
}.no-margin {
|
|
15630
|
-
|
|
15630
|
+
margin: 0;
|
|
15631
15631
|
}.txt-gray,
|
|
15632
15632
|
.txtgray {
|
|
15633
|
-
|
|
15633
|
+
color: var(--bgl-gray);
|
|
15634
15634
|
}.txt-blue,
|
|
15635
15635
|
.txtblue {
|
|
15636
|
-
|
|
15636
|
+
color: var(--bgl-primary);
|
|
15637
15637
|
}.txt-black,
|
|
15638
15638
|
.txtblack {
|
|
15639
|
-
|
|
15639
|
+
color: var(--bgl-black);
|
|
15640
15640
|
}.txt-red,
|
|
15641
15641
|
.txtred {
|
|
15642
|
-
|
|
15642
|
+
color: var(--bgl-red);
|
|
15643
15643
|
}.txt-white,
|
|
15644
15644
|
.txtwhite {
|
|
15645
|
-
|
|
15645
|
+
color: var(--bgl-white);
|
|
15646
15646
|
}.font-thin,
|
|
15647
15647
|
.txt-thin {
|
|
15648
|
-
|
|
15648
|
+
font-weight: 100;
|
|
15649
15649
|
}.extra-light,
|
|
15650
15650
|
.font-extra-light,
|
|
15651
15651
|
.txt-extra-light,
|
|
15652
15652
|
.font-ultra-light,
|
|
15653
15653
|
.txt-ultra-light {
|
|
15654
|
-
|
|
15654
|
+
font-weight: 200;
|
|
15655
15655
|
}.light,
|
|
15656
15656
|
.txt-light,
|
|
15657
15657
|
.font-light {
|
|
15658
|
-
|
|
15658
|
+
font-weight: 300;
|
|
15659
15659
|
}.regular,
|
|
15660
15660
|
.txt-regular,
|
|
15661
15661
|
.font-regular {
|
|
15662
|
-
|
|
15662
|
+
font-weight: 400;
|
|
15663
15663
|
}.medium,
|
|
15664
15664
|
.txt-medium,
|
|
15665
15665
|
.font-medium {
|
|
15666
|
-
|
|
15666
|
+
font-weight: 500;
|
|
15667
15667
|
}.semi,
|
|
15668
15668
|
.semibold,
|
|
15669
15669
|
.txt-semi,
|
|
@@ -15671,761 +15671,766 @@ select {
|
|
|
15671
15671
|
.font-regular,
|
|
15672
15672
|
.font-semi,
|
|
15673
15673
|
.font-semibold {
|
|
15674
|
-
|
|
15674
|
+
font-weight: 600;
|
|
15675
15675
|
}.bold,
|
|
15676
15676
|
.txt-bold,
|
|
15677
15677
|
.font-bold {
|
|
15678
|
-
|
|
15678
|
+
font-weight: 700;
|
|
15679
15679
|
}.extra-bold,
|
|
15680
15680
|
.font-extra-bold,
|
|
15681
15681
|
.txt-extra-bold,
|
|
15682
15682
|
.font-ultra-bold,
|
|
15683
15683
|
.txt-ultra-bold {
|
|
15684
|
-
|
|
15684
|
+
font-weight: 800;
|
|
15685
15685
|
}.black,
|
|
15686
15686
|
.font-black {
|
|
15687
|
-
|
|
15687
|
+
font-weight: 900;
|
|
15688
15688
|
}.line-height-0 {
|
|
15689
|
-
|
|
15689
|
+
line-height: 0;
|
|
15690
15690
|
}.line-height-01 {
|
|
15691
|
-
|
|
15691
|
+
line-height: 0.1;
|
|
15692
15692
|
}.line-height-02 {
|
|
15693
|
-
|
|
15693
|
+
line-height: 0.2;
|
|
15694
15694
|
}.line-height-03 {
|
|
15695
|
-
|
|
15695
|
+
line-height: 0.3;
|
|
15696
15696
|
}.line-height-04 {
|
|
15697
|
-
|
|
15697
|
+
line-height: 0.4;
|
|
15698
15698
|
}.line-height-05 {
|
|
15699
|
-
|
|
15699
|
+
line-height: 0.5;
|
|
15700
15700
|
}.line-height-06 {
|
|
15701
|
-
|
|
15701
|
+
line-height: 0.6;
|
|
15702
15702
|
}.line-height-07 {
|
|
15703
|
-
|
|
15703
|
+
line-height: 0.7;
|
|
15704
15704
|
}.line-height-08 {
|
|
15705
|
-
|
|
15705
|
+
line-height: 0.8;
|
|
15706
15706
|
}.line-height-09 {
|
|
15707
|
-
|
|
15707
|
+
line-height: 0.9;
|
|
15708
15708
|
}.line-height-1 {
|
|
15709
|
-
|
|
15709
|
+
line-height: 1;
|
|
15710
15710
|
}.line-height-11 {
|
|
15711
|
-
|
|
15711
|
+
line-height: 1.1;
|
|
15712
15712
|
}.line-height-12 {
|
|
15713
|
-
|
|
15713
|
+
line-height: 1.2;
|
|
15714
15714
|
}.line-height-13 {
|
|
15715
|
-
|
|
15715
|
+
line-height: 1.3;
|
|
15716
15716
|
}.line-height-14 {
|
|
15717
|
-
|
|
15717
|
+
line-height: 1.4;
|
|
15718
15718
|
}.line-height-15 {
|
|
15719
|
-
|
|
15719
|
+
line-height: 1.5;
|
|
15720
15720
|
}.line-height-16 {
|
|
15721
|
-
|
|
15721
|
+
line-height: 1.6;
|
|
15722
15722
|
}.line-height-17 {
|
|
15723
|
-
|
|
15723
|
+
line-height: 1.7;
|
|
15724
15724
|
}.line-height-18 {
|
|
15725
|
-
|
|
15725
|
+
line-height: 1.8;
|
|
15726
15726
|
}.line-height-19 {
|
|
15727
|
-
|
|
15727
|
+
line-height: 1.9;
|
|
15728
15728
|
}.line-height-2 {
|
|
15729
|
-
|
|
15729
|
+
line-height: 2;
|
|
15730
15730
|
}.line-height-normal {
|
|
15731
|
-
|
|
15731
|
+
line-height: normal;
|
|
15732
15732
|
}.ellipsis {
|
|
15733
|
-
|
|
15734
|
-
|
|
15735
|
-
|
|
15736
|
-
|
|
15733
|
+
overflow: hidden;
|
|
15734
|
+
display: block;
|
|
15735
|
+
width: 100%;
|
|
15736
|
+
text-overflow: ellipsis;
|
|
15737
15737
|
}.ellipsis-1,
|
|
15738
15738
|
.ellipsis-2,
|
|
15739
15739
|
.ellipsis-3,
|
|
15740
15740
|
.ellipsis-4,
|
|
15741
15741
|
.ellipsis-5,
|
|
15742
15742
|
.ellipsis-6 {
|
|
15743
|
-
|
|
15744
|
-
|
|
15745
|
-
|
|
15746
|
-
|
|
15747
|
-
|
|
15748
|
-
|
|
15743
|
+
display: block;
|
|
15744
|
+
display: -webkit-box;
|
|
15745
|
+
max-width: 100%;
|
|
15746
|
+
-webkit-box-orient: vertical;
|
|
15747
|
+
overflow: hidden;
|
|
15748
|
+
text-overflow: ellipsis;
|
|
15749
15749
|
}.ellipsis-1 {
|
|
15750
|
-
|
|
15750
|
+
-webkit-line-clamp: 1;
|
|
15751
15751
|
}.ellipsis-2 {
|
|
15752
|
-
|
|
15752
|
+
-webkit-line-clamp: 2;
|
|
15753
15753
|
}.ellipsis-3 {
|
|
15754
|
-
|
|
15754
|
+
-webkit-line-clamp: 3;
|
|
15755
15755
|
}.ellipsis-4 {
|
|
15756
|
-
|
|
15756
|
+
-webkit-line-clamp: 4;
|
|
15757
15757
|
}.ellipsis-5 {
|
|
15758
|
-
|
|
15758
|
+
-webkit-line-clamp: 5;
|
|
15759
15759
|
}.ellipsis-6 {
|
|
15760
|
-
|
|
15760
|
+
-webkit-line-clamp: 6;
|
|
15761
15761
|
}.pointer {
|
|
15762
|
-
|
|
15762
|
+
cursor: pointer;
|
|
15763
15763
|
}.grab {
|
|
15764
|
-
|
|
15764
|
+
cursor: grab;
|
|
15765
15765
|
}.grab:active {
|
|
15766
|
-
|
|
15766
|
+
cursor: grabbing;
|
|
15767
15767
|
}.not-allowed {
|
|
15768
|
-
|
|
15768
|
+
cursor: not-allowed;
|
|
15769
15769
|
}.decoration-none {
|
|
15770
|
-
|
|
15770
|
+
text-decoration: none;
|
|
15771
15771
|
}.underline,
|
|
15772
15772
|
.decoration-underline {
|
|
15773
|
-
|
|
15773
|
+
text-decoration: underline !important;
|
|
15774
15774
|
}.word-break {
|
|
15775
|
-
|
|
15775
|
+
word-break: break-word;
|
|
15776
15776
|
}.word-break-all {
|
|
15777
|
-
|
|
15777
|
+
word-break: break-all;
|
|
15778
15778
|
}.uppercase {
|
|
15779
|
-
|
|
15779
|
+
text-transform: uppercase;
|
|
15780
15780
|
}.lowercase {
|
|
15781
|
-
|
|
15781
|
+
text-transform: lowercase;
|
|
15782
15782
|
}.capitalize {
|
|
15783
|
-
|
|
15783
|
+
text-transform: capitalize;
|
|
15784
15784
|
}.nowrap {
|
|
15785
|
-
|
|
15785
|
+
white-space: nowrap;
|
|
15786
15786
|
}.balance {
|
|
15787
|
-
|
|
15787
|
+
text-wrap: balance;
|
|
15788
15788
|
}.pretty {
|
|
15789
|
-
|
|
15789
|
+
text-wrap: pretty;
|
|
15790
15790
|
}.white-space {
|
|
15791
|
-
|
|
15791
|
+
white-space: nowrap;
|
|
15792
|
+
}.notranslate {
|
|
15793
|
+
translate: none !important;
|
|
15794
|
+
-webkit-translate: none !important;
|
|
15795
|
+
-moz-translate: none !important;
|
|
15796
|
+
-ms-translate: none !important;
|
|
15797
|
+
-o-translate: none !important;
|
|
15792
15798
|
}@media screen and (max-width: 910px) {
|
|
15799
|
+
.txt20,
|
|
15800
|
+
.txt-20 {
|
|
15801
|
+
font-size: 18px;
|
|
15802
|
+
}
|
|
15793
15803
|
|
|
15794
|
-
|
|
15795
|
-
|
|
15796
|
-
|
|
15797
|
-
|
|
15798
|
-
|
|
15799
|
-
.txt16,
|
|
15800
|
-
.txt-16 {
|
|
15801
|
-
font-size: 14px;
|
|
15802
|
-
}
|
|
15804
|
+
.txt16,
|
|
15805
|
+
.txt-16 {
|
|
15806
|
+
font-size: 14px;
|
|
15807
|
+
}
|
|
15803
15808
|
|
|
15804
|
-
|
|
15805
|
-
|
|
15806
|
-
|
|
15807
|
-
|
|
15809
|
+
.txt14,
|
|
15810
|
+
.txt-14 {
|
|
15811
|
+
font-size: 12px;
|
|
15812
|
+
}
|
|
15808
15813
|
|
|
15809
|
-
|
|
15810
|
-
|
|
15811
|
-
|
|
15814
|
+
.m_txt-center {
|
|
15815
|
+
text-align: center;
|
|
15816
|
+
}
|
|
15812
15817
|
|
|
15813
|
-
|
|
15814
|
-
|
|
15815
|
-
|
|
15818
|
+
.m_txt-start {
|
|
15819
|
+
text-align: start;
|
|
15820
|
+
}
|
|
15816
15821
|
|
|
15817
|
-
|
|
15818
|
-
|
|
15819
|
-
|
|
15822
|
+
.m_txt-end {
|
|
15823
|
+
text-align: end;
|
|
15824
|
+
}
|
|
15820
15825
|
|
|
15821
|
-
|
|
15822
|
-
|
|
15823
|
-
|
|
15826
|
+
.m_txt-justify {
|
|
15827
|
+
text-align: justify;
|
|
15828
|
+
}
|
|
15824
15829
|
|
|
15825
|
-
|
|
15826
|
-
|
|
15827
|
-
|
|
15830
|
+
.m_txt-small {
|
|
15831
|
+
font-size: 12px;
|
|
15832
|
+
}
|
|
15828
15833
|
|
|
15829
|
-
|
|
15830
|
-
|
|
15831
|
-
|
|
15832
|
-
|
|
15834
|
+
.m_txt20,
|
|
15835
|
+
.m_txt-20 {
|
|
15836
|
+
font-size: 20px;
|
|
15837
|
+
}
|
|
15833
15838
|
|
|
15834
|
-
|
|
15835
|
-
|
|
15836
|
-
|
|
15837
|
-
|
|
15839
|
+
.m_txt24,
|
|
15840
|
+
.m_txt-24 {
|
|
15841
|
+
font-size: 24px;
|
|
15842
|
+
}
|
|
15838
15843
|
|
|
15839
|
-
|
|
15840
|
-
|
|
15841
|
-
|
|
15842
|
-
|
|
15844
|
+
.m_txt28,
|
|
15845
|
+
.m_txt-28 {
|
|
15846
|
+
font-size: 28px;
|
|
15847
|
+
}
|
|
15843
15848
|
|
|
15844
|
-
|
|
15845
|
-
|
|
15846
|
-
|
|
15847
|
-
|
|
15849
|
+
.m_txt30,
|
|
15850
|
+
.m_txt-30 {
|
|
15851
|
+
font-size: 30px;
|
|
15852
|
+
}
|
|
15848
15853
|
|
|
15849
|
-
|
|
15850
|
-
|
|
15851
|
-
|
|
15852
|
-
|
|
15854
|
+
.m_txt32,
|
|
15855
|
+
.m_txt-32 {
|
|
15856
|
+
font-size: 32px;
|
|
15857
|
+
}
|
|
15853
15858
|
|
|
15854
|
-
|
|
15855
|
-
|
|
15856
|
-
|
|
15857
|
-
|
|
15859
|
+
.m_txt36,
|
|
15860
|
+
.m_txt-36 {
|
|
15861
|
+
font-size: 36px;
|
|
15862
|
+
}
|
|
15858
15863
|
|
|
15859
|
-
|
|
15860
|
-
|
|
15861
|
-
|
|
15862
|
-
|
|
15864
|
+
.m_txt40,
|
|
15865
|
+
.m_txt-40 {
|
|
15866
|
+
font-size: 40px;
|
|
15867
|
+
}
|
|
15863
15868
|
|
|
15864
|
-
|
|
15865
|
-
|
|
15866
|
-
|
|
15867
|
-
|
|
15869
|
+
.m_txt44,
|
|
15870
|
+
.m_txt-44 {
|
|
15871
|
+
font-size: 44px;
|
|
15872
|
+
}
|
|
15868
15873
|
|
|
15869
|
-
|
|
15870
|
-
|
|
15871
|
-
|
|
15872
|
-
|
|
15874
|
+
.m_txt48,
|
|
15875
|
+
.m_txt-48 {
|
|
15876
|
+
font-size: 48px;
|
|
15877
|
+
}
|
|
15873
15878
|
|
|
15874
|
-
|
|
15875
|
-
|
|
15876
|
-
|
|
15877
|
-
|
|
15879
|
+
.m_txt50,
|
|
15880
|
+
.m_txt-50 {
|
|
15881
|
+
font-size: 50px;
|
|
15882
|
+
}
|
|
15878
15883
|
|
|
15879
|
-
|
|
15880
|
-
|
|
15881
|
-
|
|
15882
|
-
|
|
15884
|
+
.m_txt52,
|
|
15885
|
+
.m_txt-52 {
|
|
15886
|
+
font-size: 52px;
|
|
15887
|
+
}
|
|
15883
15888
|
|
|
15884
|
-
|
|
15885
|
-
|
|
15886
|
-
|
|
15887
|
-
|
|
15889
|
+
.m_txt56,
|
|
15890
|
+
.m_txt-56 {
|
|
15891
|
+
font-size: 56px;
|
|
15892
|
+
}
|
|
15888
15893
|
|
|
15889
|
-
|
|
15890
|
-
|
|
15891
|
-
|
|
15892
|
-
|
|
15894
|
+
.m_txt60,
|
|
15895
|
+
.m_txt-60 {
|
|
15896
|
+
font-size: 60px;
|
|
15897
|
+
}
|
|
15893
15898
|
|
|
15894
|
-
|
|
15895
|
-
|
|
15896
|
-
|
|
15897
|
-
|
|
15899
|
+
.m_txt64,
|
|
15900
|
+
.m_txt-64 {
|
|
15901
|
+
font-size: 64px;
|
|
15902
|
+
}
|
|
15898
15903
|
|
|
15899
|
-
|
|
15900
|
-
|
|
15901
|
-
|
|
15902
|
-
|
|
15904
|
+
.m_txt68,
|
|
15905
|
+
.m_txt-68 {
|
|
15906
|
+
font-size: 68px;
|
|
15907
|
+
}
|
|
15903
15908
|
|
|
15904
|
-
|
|
15905
|
-
|
|
15906
|
-
|
|
15907
|
-
|
|
15909
|
+
.m_txt70,
|
|
15910
|
+
.m_txt-70 {
|
|
15911
|
+
font-size: 70px;
|
|
15912
|
+
}
|
|
15908
15913
|
|
|
15909
|
-
|
|
15910
|
-
|
|
15911
|
-
|
|
15912
|
-
|
|
15914
|
+
.m_txt72,
|
|
15915
|
+
.m_txt-72 {
|
|
15916
|
+
font-size: 72px;
|
|
15917
|
+
}
|
|
15913
15918
|
|
|
15914
|
-
|
|
15915
|
-
|
|
15916
|
-
|
|
15917
|
-
|
|
15919
|
+
.m_txt80,
|
|
15920
|
+
.m_txt-80 {
|
|
15921
|
+
font-size: 80px;
|
|
15922
|
+
}
|
|
15918
15923
|
|
|
15919
|
-
|
|
15920
|
-
|
|
15921
|
-
|
|
15922
|
-
|
|
15924
|
+
.m_txt90,
|
|
15925
|
+
.m_txt-90 {
|
|
15926
|
+
font-size: 90px;
|
|
15927
|
+
}
|
|
15923
15928
|
|
|
15924
|
-
|
|
15925
|
-
|
|
15926
|
-
|
|
15927
|
-
|
|
15929
|
+
.m_txt100,
|
|
15930
|
+
.m_txt-100 {
|
|
15931
|
+
font-size: 100px;
|
|
15932
|
+
}
|
|
15928
15933
|
|
|
15929
|
-
|
|
15930
|
-
|
|
15931
|
-
|
|
15932
|
-
|
|
15934
|
+
.m_txt110,
|
|
15935
|
+
.m_txt-110 {
|
|
15936
|
+
font-size: 110px;
|
|
15937
|
+
}
|
|
15933
15938
|
|
|
15934
|
-
|
|
15935
|
-
|
|
15936
|
-
|
|
15937
|
-
|
|
15939
|
+
.m_txt120,
|
|
15940
|
+
.m_txt-120 {
|
|
15941
|
+
font-size: 120px;
|
|
15942
|
+
}
|
|
15938
15943
|
|
|
15939
|
-
|
|
15940
|
-
|
|
15941
|
-
|
|
15942
|
-
|
|
15944
|
+
.m_txt130,
|
|
15945
|
+
.m_txt-130 {
|
|
15946
|
+
font-size: 130px;
|
|
15947
|
+
}
|
|
15943
15948
|
|
|
15944
|
-
|
|
15945
|
-
|
|
15946
|
-
|
|
15947
|
-
|
|
15949
|
+
.m_txt140,
|
|
15950
|
+
.m_txt-140 {
|
|
15951
|
+
font-size: 140px;
|
|
15952
|
+
}
|
|
15948
15953
|
|
|
15949
|
-
|
|
15950
|
-
|
|
15951
|
-
|
|
15952
|
-
|
|
15954
|
+
.m_txt150,
|
|
15955
|
+
.m_txt-150 {
|
|
15956
|
+
font-size: 150px;
|
|
15957
|
+
}
|
|
15953
15958
|
|
|
15954
|
-
|
|
15955
|
-
|
|
15956
|
-
|
|
15957
|
-
|
|
15959
|
+
.m_txt18,
|
|
15960
|
+
.m_txt-18 {
|
|
15961
|
+
font-size: 18px;
|
|
15962
|
+
}
|
|
15958
15963
|
|
|
15959
|
-
|
|
15960
|
-
|
|
15961
|
-
|
|
15962
|
-
|
|
15964
|
+
.m_txt16,
|
|
15965
|
+
.m_txt-16 {
|
|
15966
|
+
font-size: 16px;
|
|
15967
|
+
}
|
|
15963
15968
|
|
|
15964
|
-
|
|
15965
|
-
|
|
15966
|
-
|
|
15967
|
-
|
|
15969
|
+
.m_txt14,
|
|
15970
|
+
.m_txt-14 {
|
|
15971
|
+
font-size: 14px;
|
|
15972
|
+
}
|
|
15968
15973
|
|
|
15969
|
-
|
|
15970
|
-
|
|
15971
|
-
|
|
15972
|
-
|
|
15974
|
+
.m_txt12,
|
|
15975
|
+
.m_txt-12 {
|
|
15976
|
+
font-size: 12px;
|
|
15977
|
+
}
|
|
15973
15978
|
|
|
15974
|
-
|
|
15975
|
-
|
|
15976
|
-
|
|
15977
|
-
|
|
15979
|
+
.m_txt10,
|
|
15980
|
+
.m_txt-10 {
|
|
15981
|
+
font-size: 10px;
|
|
15982
|
+
}
|
|
15978
15983
|
|
|
15979
|
-
|
|
15980
|
-
|
|
15981
|
-
|
|
15982
|
-
|
|
15984
|
+
.m_txt9,
|
|
15985
|
+
.m_txt-9 {
|
|
15986
|
+
font-size: 9px;
|
|
15987
|
+
}
|
|
15983
15988
|
|
|
15984
|
-
|
|
15985
|
-
|
|
15986
|
-
|
|
15987
|
-
|
|
15989
|
+
.m_txt025,
|
|
15990
|
+
.m_txt-025 {
|
|
15991
|
+
font-size: 0.25rem;
|
|
15992
|
+
}
|
|
15988
15993
|
|
|
15989
|
-
|
|
15990
|
-
|
|
15991
|
-
|
|
15992
|
-
|
|
15994
|
+
.m_txt05,
|
|
15995
|
+
.m_txt-05 {
|
|
15996
|
+
font-size: 0.5rem;
|
|
15997
|
+
}
|
|
15993
15998
|
|
|
15994
|
-
|
|
15995
|
-
|
|
15996
|
-
|
|
15997
|
-
|
|
15999
|
+
.m_txt075,
|
|
16000
|
+
.m_txt-075 {
|
|
16001
|
+
font-size: 0.75rem;
|
|
16002
|
+
}
|
|
15998
16003
|
|
|
15999
|
-
|
|
16000
|
-
|
|
16001
|
-
|
|
16002
|
-
|
|
16004
|
+
.m_txt1,
|
|
16005
|
+
.m_txt-1 {
|
|
16006
|
+
font-size: 1rem;
|
|
16007
|
+
}
|
|
16003
16008
|
|
|
16004
|
-
|
|
16005
|
-
|
|
16006
|
-
|
|
16007
|
-
|
|
16009
|
+
.m_txt1-25,
|
|
16010
|
+
.m_txt-1-25 {
|
|
16011
|
+
font-size: 1.25rem;
|
|
16012
|
+
}
|
|
16008
16013
|
|
|
16009
|
-
|
|
16010
|
-
|
|
16011
|
-
|
|
16012
|
-
|
|
16014
|
+
.m_txt1-5,
|
|
16015
|
+
.m_txt-1-5 {
|
|
16016
|
+
font-size: 1.5rem;
|
|
16017
|
+
}
|
|
16013
16018
|
|
|
16014
|
-
|
|
16015
|
-
|
|
16016
|
-
|
|
16017
|
-
|
|
16019
|
+
.m_txt1-75,
|
|
16020
|
+
.m_txt-1-75 {
|
|
16021
|
+
font-size: 1.75rem;
|
|
16022
|
+
}
|
|
16018
16023
|
|
|
16019
|
-
|
|
16020
|
-
|
|
16021
|
-
|
|
16022
|
-
|
|
16024
|
+
.m_txt2,
|
|
16025
|
+
.m_txt-2 {
|
|
16026
|
+
font-size: 2rem;
|
|
16027
|
+
}
|
|
16023
16028
|
|
|
16024
|
-
|
|
16025
|
-
|
|
16026
|
-
|
|
16027
|
-
|
|
16029
|
+
.m_txt2-25,
|
|
16030
|
+
.m_txt-2-25 {
|
|
16031
|
+
font-size: 2.25rem;
|
|
16032
|
+
}
|
|
16028
16033
|
|
|
16029
|
-
|
|
16030
|
-
|
|
16031
|
-
|
|
16032
|
-
|
|
16034
|
+
.m_txt2-5,
|
|
16035
|
+
.m_txt-2-5 {
|
|
16036
|
+
font-size: 2.5rem;
|
|
16037
|
+
}
|
|
16033
16038
|
|
|
16034
|
-
|
|
16035
|
-
|
|
16036
|
-
|
|
16037
|
-
|
|
16039
|
+
.m_txt2-75,
|
|
16040
|
+
.m_txt-2-75 {
|
|
16041
|
+
font-size: 2.75rem;
|
|
16042
|
+
}
|
|
16038
16043
|
|
|
16039
|
-
|
|
16040
|
-
|
|
16041
|
-
|
|
16042
|
-
|
|
16044
|
+
.m_txt3,
|
|
16045
|
+
.m_txt-3 {
|
|
16046
|
+
font-size: 3rem;
|
|
16047
|
+
}
|
|
16043
16048
|
|
|
16044
|
-
|
|
16045
|
-
|
|
16046
|
-
|
|
16047
|
-
|
|
16049
|
+
.m_txt3-25,
|
|
16050
|
+
.m_txt-3-25 {
|
|
16051
|
+
font-size: 3.25rem;
|
|
16052
|
+
}
|
|
16048
16053
|
|
|
16049
|
-
|
|
16050
|
-
|
|
16051
|
-
|
|
16052
|
-
|
|
16054
|
+
.m_txt3-5,
|
|
16055
|
+
.m_txt-3-5 {
|
|
16056
|
+
font-size: 3.5rem;
|
|
16057
|
+
}
|
|
16053
16058
|
|
|
16054
|
-
|
|
16055
|
-
|
|
16056
|
-
|
|
16057
|
-
|
|
16059
|
+
.m_txt3-75,
|
|
16060
|
+
.m_txt-3-75 {
|
|
16061
|
+
font-size: 3.75rem;
|
|
16062
|
+
}
|
|
16058
16063
|
|
|
16059
|
-
|
|
16060
|
-
|
|
16061
|
-
|
|
16062
|
-
|
|
16064
|
+
.m_txt4,
|
|
16065
|
+
.m_txt-4 {
|
|
16066
|
+
font-size: 4rem;
|
|
16067
|
+
}
|
|
16063
16068
|
|
|
16064
|
-
|
|
16065
|
-
|
|
16066
|
-
|
|
16067
|
-
|
|
16069
|
+
.m_txt4-25,
|
|
16070
|
+
.m_txt-4-25 {
|
|
16071
|
+
font-size: 4.25rem;
|
|
16072
|
+
}
|
|
16068
16073
|
|
|
16069
|
-
|
|
16070
|
-
|
|
16071
|
-
|
|
16072
|
-
|
|
16074
|
+
.m_txt4-5,
|
|
16075
|
+
.m_txt-4-5 {
|
|
16076
|
+
font-size: 4.5rem;
|
|
16077
|
+
}
|
|
16073
16078
|
|
|
16074
|
-
|
|
16075
|
-
|
|
16076
|
-
|
|
16077
|
-
|
|
16079
|
+
.m_txt4-75,
|
|
16080
|
+
.m_txt-4-75 {
|
|
16081
|
+
font-size: 4.75rem;
|
|
16082
|
+
}
|
|
16078
16083
|
|
|
16079
|
-
|
|
16080
|
-
|
|
16081
|
-
|
|
16082
|
-
|
|
16084
|
+
.m_txt5,
|
|
16085
|
+
.m_txt-5 {
|
|
16086
|
+
font-size: 5rem;
|
|
16087
|
+
}
|
|
16083
16088
|
|
|
16084
|
-
|
|
16085
|
-
|
|
16086
|
-
|
|
16087
|
-
|
|
16089
|
+
.m_txt5-25,
|
|
16090
|
+
.m_txt-5-25 {
|
|
16091
|
+
font-size: 5.25rem;
|
|
16092
|
+
}
|
|
16088
16093
|
|
|
16089
|
-
|
|
16090
|
-
|
|
16091
|
-
|
|
16092
|
-
|
|
16094
|
+
.m_txt5-5,
|
|
16095
|
+
.m_txt-5-5 {
|
|
16096
|
+
font-size: 5.5rem;
|
|
16097
|
+
}
|
|
16093
16098
|
|
|
16094
|
-
|
|
16095
|
-
|
|
16096
|
-
|
|
16097
|
-
|
|
16099
|
+
.m_txt5-75,
|
|
16100
|
+
.m_txt-5-75 {
|
|
16101
|
+
font-size: 5.75rem;
|
|
16102
|
+
}
|
|
16098
16103
|
|
|
16099
|
-
|
|
16100
|
-
|
|
16101
|
-
|
|
16102
|
-
|
|
16104
|
+
.m_txt6,
|
|
16105
|
+
.m_txt-6 {
|
|
16106
|
+
font-size: 6rem;
|
|
16107
|
+
}
|
|
16103
16108
|
|
|
16104
|
-
|
|
16105
|
-
|
|
16106
|
-
|
|
16107
|
-
|
|
16109
|
+
.m_txt6-25,
|
|
16110
|
+
.m_txt-6-25 {
|
|
16111
|
+
font-size: 6.25rem;
|
|
16112
|
+
}
|
|
16108
16113
|
|
|
16109
|
-
|
|
16110
|
-
|
|
16111
|
-
|
|
16112
|
-
|
|
16114
|
+
.m_txt6-5,
|
|
16115
|
+
.m_txt-6-5 {
|
|
16116
|
+
font-size: 6.5rem;
|
|
16117
|
+
}
|
|
16113
16118
|
|
|
16114
|
-
|
|
16115
|
-
|
|
16116
|
-
|
|
16117
|
-
|
|
16119
|
+
.m_txt6-75,
|
|
16120
|
+
.m_txt-6-75 {
|
|
16121
|
+
font-size: 6.75rem;
|
|
16122
|
+
}
|
|
16118
16123
|
|
|
16119
|
-
|
|
16120
|
-
|
|
16121
|
-
|
|
16122
|
-
|
|
16124
|
+
.m_txt7,
|
|
16125
|
+
.m_txt-7 {
|
|
16126
|
+
font-size: 7rem;
|
|
16127
|
+
}
|
|
16123
16128
|
|
|
16124
|
-
|
|
16125
|
-
|
|
16126
|
-
|
|
16127
|
-
|
|
16129
|
+
.m_txt7-25,
|
|
16130
|
+
.m_txt-7-25 {
|
|
16131
|
+
font-size: 7.25rem;
|
|
16132
|
+
}
|
|
16128
16133
|
|
|
16129
|
-
|
|
16130
|
-
|
|
16131
|
-
|
|
16132
|
-
|
|
16134
|
+
.m_txt7-5,
|
|
16135
|
+
.m_txt-7-5 {
|
|
16136
|
+
font-size: 7.5rem;
|
|
16137
|
+
}
|
|
16133
16138
|
|
|
16134
|
-
|
|
16135
|
-
|
|
16136
|
-
|
|
16137
|
-
|
|
16139
|
+
.m_txt7-75,
|
|
16140
|
+
.m_txt-7-75 {
|
|
16141
|
+
font-size: 7.75rem;
|
|
16142
|
+
}
|
|
16138
16143
|
|
|
16139
|
-
|
|
16140
|
-
|
|
16141
|
-
|
|
16142
|
-
|
|
16144
|
+
.m_txt8,
|
|
16145
|
+
.m_txt-8 {
|
|
16146
|
+
font-size: 8rem;
|
|
16147
|
+
}
|
|
16143
16148
|
|
|
16144
|
-
|
|
16145
|
-
|
|
16146
|
-
|
|
16147
|
-
|
|
16149
|
+
.m_txt8-25,
|
|
16150
|
+
.m_txt-8-25 {
|
|
16151
|
+
font-size: 8.25rem;
|
|
16152
|
+
}
|
|
16148
16153
|
|
|
16149
|
-
|
|
16150
|
-
|
|
16151
|
-
|
|
16152
|
-
|
|
16154
|
+
.m_txt8-5,
|
|
16155
|
+
.m_txt-8-5 {
|
|
16156
|
+
font-size: 8.5rem;
|
|
16157
|
+
}
|
|
16153
16158
|
|
|
16154
|
-
|
|
16155
|
-
|
|
16156
|
-
|
|
16157
|
-
|
|
16159
|
+
.m_txt8-75,
|
|
16160
|
+
.m_txt-8-75 {
|
|
16161
|
+
font-size: 8.75rem;
|
|
16162
|
+
}
|
|
16158
16163
|
|
|
16159
|
-
|
|
16160
|
-
|
|
16161
|
-
|
|
16164
|
+
.m_no-margin {
|
|
16165
|
+
margin: 0;
|
|
16166
|
+
}
|
|
16162
16167
|
|
|
16163
|
-
|
|
16164
|
-
|
|
16165
|
-
|
|
16166
|
-
|
|
16168
|
+
.m_txt-gray,
|
|
16169
|
+
.m_txtgray {
|
|
16170
|
+
color: var(--bgl-gray);
|
|
16171
|
+
}
|
|
16167
16172
|
|
|
16168
|
-
|
|
16169
|
-
|
|
16170
|
-
|
|
16171
|
-
|
|
16173
|
+
.m_txt-blue,
|
|
16174
|
+
.m_txtblue {
|
|
16175
|
+
color: var(--bgl-primary);
|
|
16176
|
+
}
|
|
16172
16177
|
|
|
16173
|
-
|
|
16174
|
-
|
|
16175
|
-
|
|
16176
|
-
|
|
16178
|
+
.m_txt-black,
|
|
16179
|
+
.m_txtblack {
|
|
16180
|
+
color: var(--bgl-black);
|
|
16181
|
+
}
|
|
16177
16182
|
|
|
16178
|
-
|
|
16179
|
-
|
|
16180
|
-
|
|
16181
|
-
|
|
16183
|
+
.m_txt-red,
|
|
16184
|
+
.m_txtred {
|
|
16185
|
+
color: var(--bgl-red);
|
|
16186
|
+
}
|
|
16182
16187
|
|
|
16183
|
-
|
|
16184
|
-
|
|
16185
|
-
|
|
16186
|
-
|
|
16188
|
+
.m_txt-white,
|
|
16189
|
+
.m_txtwhite {
|
|
16190
|
+
color: var(--bgl-white);
|
|
16191
|
+
}
|
|
16187
16192
|
|
|
16188
|
-
|
|
16189
|
-
|
|
16190
|
-
|
|
16191
|
-
|
|
16193
|
+
.m_font-thin,
|
|
16194
|
+
.m_txt-thin {
|
|
16195
|
+
font-weight: 100;
|
|
16196
|
+
}
|
|
16192
16197
|
|
|
16193
|
-
|
|
16194
|
-
|
|
16195
|
-
|
|
16196
|
-
|
|
16197
|
-
|
|
16198
|
-
|
|
16199
|
-
|
|
16198
|
+
.m_extra-light,
|
|
16199
|
+
.m_font-extra-light,
|
|
16200
|
+
.m_txt-extra-light,
|
|
16201
|
+
.m_font-ultra-light,
|
|
16202
|
+
.m_txt-ultra-light {
|
|
16203
|
+
font-weight: 200;
|
|
16204
|
+
}
|
|
16200
16205
|
|
|
16201
|
-
|
|
16202
|
-
|
|
16203
|
-
|
|
16204
|
-
|
|
16205
|
-
|
|
16206
|
+
.m_light,
|
|
16207
|
+
.m_txt-light,
|
|
16208
|
+
.m_font-light {
|
|
16209
|
+
font-weight: 300;
|
|
16210
|
+
}
|
|
16206
16211
|
|
|
16207
|
-
|
|
16208
|
-
|
|
16209
|
-
|
|
16210
|
-
|
|
16211
|
-
|
|
16212
|
+
.m_regular,
|
|
16213
|
+
.m_txt-regular,
|
|
16214
|
+
.m_font-regular {
|
|
16215
|
+
font-weight: 400;
|
|
16216
|
+
}
|
|
16212
16217
|
|
|
16213
|
-
|
|
16214
|
-
|
|
16215
|
-
|
|
16216
|
-
|
|
16217
|
-
|
|
16218
|
+
.m_medium,
|
|
16219
|
+
.m_txt-medium,
|
|
16220
|
+
.m_font-medium {
|
|
16221
|
+
font-weight: 500;
|
|
16222
|
+
}
|
|
16218
16223
|
|
|
16219
|
-
|
|
16220
|
-
|
|
16221
|
-
|
|
16222
|
-
|
|
16223
|
-
|
|
16224
|
-
|
|
16225
|
-
|
|
16226
|
-
|
|
16227
|
-
|
|
16224
|
+
.m_semi,
|
|
16225
|
+
.m_semibold,
|
|
16226
|
+
.m_txt-semi,
|
|
16227
|
+
.m_txt-semibold,
|
|
16228
|
+
.m_font-regular,
|
|
16229
|
+
.m_font-semi,
|
|
16230
|
+
.m_font-semibold {
|
|
16231
|
+
font-weight: 600;
|
|
16232
|
+
}
|
|
16228
16233
|
|
|
16229
|
-
|
|
16230
|
-
|
|
16231
|
-
|
|
16232
|
-
|
|
16233
|
-
|
|
16234
|
+
.m_bold,
|
|
16235
|
+
.m_txt-bold,
|
|
16236
|
+
.m_font-bold {
|
|
16237
|
+
font-weight: 700;
|
|
16238
|
+
}
|
|
16234
16239
|
|
|
16235
|
-
|
|
16236
|
-
|
|
16237
|
-
|
|
16238
|
-
|
|
16239
|
-
|
|
16240
|
-
|
|
16241
|
-
|
|
16240
|
+
.m_extra-bold,
|
|
16241
|
+
.m_font-extra-bold,
|
|
16242
|
+
.m_txt-extra-bold,
|
|
16243
|
+
.m_font-ultra-bold,
|
|
16244
|
+
.m_txt-ultra-bold {
|
|
16245
|
+
font-weight: 800;
|
|
16246
|
+
}
|
|
16242
16247
|
|
|
16243
|
-
|
|
16244
|
-
|
|
16245
|
-
|
|
16246
|
-
|
|
16248
|
+
.m_black,
|
|
16249
|
+
.m_font-black {
|
|
16250
|
+
font-weight: 900;
|
|
16251
|
+
}
|
|
16247
16252
|
|
|
16248
|
-
|
|
16249
|
-
|
|
16250
|
-
|
|
16253
|
+
.m_line-height-0 {
|
|
16254
|
+
line-height: 0;
|
|
16255
|
+
}
|
|
16251
16256
|
|
|
16252
|
-
|
|
16253
|
-
|
|
16254
|
-
|
|
16257
|
+
.m_line-height-01 {
|
|
16258
|
+
line-height: 0.1;
|
|
16259
|
+
}
|
|
16255
16260
|
|
|
16256
|
-
|
|
16257
|
-
|
|
16258
|
-
|
|
16261
|
+
.m_line-height-02 {
|
|
16262
|
+
line-height: 0.2;
|
|
16263
|
+
}
|
|
16259
16264
|
|
|
16260
|
-
|
|
16261
|
-
|
|
16262
|
-
|
|
16265
|
+
.m_line-height-03 {
|
|
16266
|
+
line-height: 0.3;
|
|
16267
|
+
}
|
|
16263
16268
|
|
|
16264
|
-
|
|
16265
|
-
|
|
16266
|
-
|
|
16269
|
+
.m_line-height-04 {
|
|
16270
|
+
line-height: 0.4;
|
|
16271
|
+
}
|
|
16267
16272
|
|
|
16268
|
-
|
|
16269
|
-
|
|
16270
|
-
|
|
16273
|
+
.m_line-height-05 {
|
|
16274
|
+
line-height: 0.5;
|
|
16275
|
+
}
|
|
16271
16276
|
|
|
16272
|
-
|
|
16273
|
-
|
|
16274
|
-
|
|
16277
|
+
.m_line-height-06 {
|
|
16278
|
+
line-height: 0.6;
|
|
16279
|
+
}
|
|
16275
16280
|
|
|
16276
|
-
|
|
16277
|
-
|
|
16278
|
-
|
|
16281
|
+
.m_line-height-07 {
|
|
16282
|
+
line-height: 0.7;
|
|
16283
|
+
}
|
|
16279
16284
|
|
|
16280
|
-
|
|
16281
|
-
|
|
16282
|
-
|
|
16285
|
+
.m_line-height-08 {
|
|
16286
|
+
line-height: 0.8;
|
|
16287
|
+
}
|
|
16283
16288
|
|
|
16284
|
-
|
|
16285
|
-
|
|
16286
|
-
|
|
16289
|
+
.m_line-height-09 {
|
|
16290
|
+
line-height: 0.9;
|
|
16291
|
+
}
|
|
16287
16292
|
|
|
16288
|
-
|
|
16289
|
-
|
|
16290
|
-
|
|
16293
|
+
.m_line-height-1 {
|
|
16294
|
+
line-height: 1;
|
|
16295
|
+
}
|
|
16291
16296
|
|
|
16292
|
-
|
|
16293
|
-
|
|
16294
|
-
|
|
16297
|
+
.m_line-height-11 {
|
|
16298
|
+
line-height: 1.1;
|
|
16299
|
+
}
|
|
16295
16300
|
|
|
16296
|
-
|
|
16297
|
-
|
|
16298
|
-
|
|
16301
|
+
.m_line-height-12 {
|
|
16302
|
+
line-height: 1.2;
|
|
16303
|
+
}
|
|
16299
16304
|
|
|
16300
|
-
|
|
16301
|
-
|
|
16302
|
-
|
|
16305
|
+
.m_line-height-13 {
|
|
16306
|
+
line-height: 1.3;
|
|
16307
|
+
}
|
|
16303
16308
|
|
|
16304
|
-
|
|
16305
|
-
|
|
16306
|
-
|
|
16309
|
+
.m_line-height-14 {
|
|
16310
|
+
line-height: 1.4;
|
|
16311
|
+
}
|
|
16307
16312
|
|
|
16308
|
-
|
|
16309
|
-
|
|
16310
|
-
|
|
16313
|
+
.m_line-height-15 {
|
|
16314
|
+
line-height: 1.5;
|
|
16315
|
+
}
|
|
16311
16316
|
|
|
16312
|
-
|
|
16313
|
-
|
|
16314
|
-
|
|
16317
|
+
.m_line-height-16 {
|
|
16318
|
+
line-height: 1.6;
|
|
16319
|
+
}
|
|
16315
16320
|
|
|
16316
|
-
|
|
16317
|
-
|
|
16318
|
-
|
|
16321
|
+
.m_line-height-17 {
|
|
16322
|
+
line-height: 1.7;
|
|
16323
|
+
}
|
|
16319
16324
|
|
|
16320
|
-
|
|
16321
|
-
|
|
16322
|
-
|
|
16325
|
+
.m_line-height-18 {
|
|
16326
|
+
line-height: 1.8;
|
|
16327
|
+
}
|
|
16323
16328
|
|
|
16324
|
-
|
|
16325
|
-
|
|
16326
|
-
|
|
16329
|
+
.m_line-height-19 {
|
|
16330
|
+
line-height: 1.9;
|
|
16331
|
+
}
|
|
16327
16332
|
|
|
16328
|
-
|
|
16329
|
-
|
|
16330
|
-
|
|
16333
|
+
.m_line-height-2 {
|
|
16334
|
+
line-height: 2;
|
|
16335
|
+
}
|
|
16331
16336
|
|
|
16332
|
-
|
|
16333
|
-
|
|
16334
|
-
|
|
16337
|
+
.m_line-height-normal {
|
|
16338
|
+
line-height: normal;
|
|
16339
|
+
}
|
|
16335
16340
|
|
|
16336
|
-
|
|
16337
|
-
|
|
16338
|
-
|
|
16339
|
-
|
|
16340
|
-
|
|
16341
|
-
|
|
16341
|
+
.m_ellipsis {
|
|
16342
|
+
overflow: hidden;
|
|
16343
|
+
display: block;
|
|
16344
|
+
width: 100%;
|
|
16345
|
+
text-overflow: ellipsis;
|
|
16346
|
+
}
|
|
16342
16347
|
|
|
16343
|
-
|
|
16344
|
-
|
|
16345
|
-
|
|
16346
|
-
|
|
16347
|
-
|
|
16348
|
-
|
|
16349
|
-
|
|
16350
|
-
|
|
16351
|
-
|
|
16352
|
-
|
|
16353
|
-
|
|
16354
|
-
|
|
16355
|
-
|
|
16348
|
+
.m_ellipsis-1,
|
|
16349
|
+
.m_ellipsis-2,
|
|
16350
|
+
.m_ellipsis-3,
|
|
16351
|
+
.m_ellipsis-4,
|
|
16352
|
+
.m_ellipsis-5,
|
|
16353
|
+
.m_ellipsis-6 {
|
|
16354
|
+
display: block;
|
|
16355
|
+
display: -webkit-box;
|
|
16356
|
+
max-width: 100%;
|
|
16357
|
+
-webkit-box-orient: vertical;
|
|
16358
|
+
overflow: hidden;
|
|
16359
|
+
text-overflow: ellipsis;
|
|
16360
|
+
}
|
|
16356
16361
|
|
|
16357
|
-
|
|
16358
|
-
|
|
16359
|
-
|
|
16362
|
+
.m_ellipsis-1 {
|
|
16363
|
+
-webkit-line-clamp: 1;
|
|
16364
|
+
}
|
|
16360
16365
|
|
|
16361
|
-
|
|
16362
|
-
|
|
16363
|
-
|
|
16366
|
+
.m_ellipsis-2 {
|
|
16367
|
+
-webkit-line-clamp: 2;
|
|
16368
|
+
}
|
|
16364
16369
|
|
|
16365
|
-
|
|
16366
|
-
|
|
16367
|
-
|
|
16370
|
+
.m_ellipsis-3 {
|
|
16371
|
+
-webkit-line-clamp: 3;
|
|
16372
|
+
}
|
|
16368
16373
|
|
|
16369
|
-
|
|
16370
|
-
|
|
16371
|
-
|
|
16374
|
+
.m_ellipsis-4 {
|
|
16375
|
+
-webkit-line-clamp: 4;
|
|
16376
|
+
}
|
|
16372
16377
|
|
|
16373
|
-
|
|
16374
|
-
|
|
16375
|
-
|
|
16378
|
+
.m_ellipsis-5 {
|
|
16379
|
+
-webkit-line-clamp: 5;
|
|
16380
|
+
}
|
|
16376
16381
|
|
|
16377
|
-
|
|
16378
|
-
|
|
16379
|
-
|
|
16382
|
+
.m_ellipsis-6 {
|
|
16383
|
+
-webkit-line-clamp: 6;
|
|
16384
|
+
}
|
|
16380
16385
|
|
|
16381
|
-
|
|
16382
|
-
|
|
16383
|
-
|
|
16386
|
+
.m_pointer {
|
|
16387
|
+
cursor: pointer;
|
|
16388
|
+
}
|
|
16384
16389
|
|
|
16385
|
-
|
|
16386
|
-
|
|
16387
|
-
|
|
16390
|
+
.m_decoration-none {
|
|
16391
|
+
text-decoration: none;
|
|
16392
|
+
}
|
|
16388
16393
|
|
|
16389
|
-
|
|
16390
|
-
|
|
16391
|
-
|
|
16392
|
-
|
|
16394
|
+
.m_underline,
|
|
16395
|
+
.m_decoration-underline {
|
|
16396
|
+
text-decoration: underline !important;
|
|
16397
|
+
}
|
|
16393
16398
|
|
|
16394
|
-
|
|
16395
|
-
|
|
16396
|
-
|
|
16399
|
+
.m_bgl_icon-font {
|
|
16400
|
+
font-family: 'Material Symbols Outlined', serif;
|
|
16401
|
+
}
|
|
16397
16402
|
|
|
16398
|
-
|
|
16399
|
-
|
|
16400
|
-
|
|
16403
|
+
.m_nowrap {
|
|
16404
|
+
white-space: nowrap;
|
|
16405
|
+
}
|
|
16401
16406
|
|
|
16402
|
-
|
|
16403
|
-
|
|
16404
|
-
|
|
16407
|
+
.m_balance {
|
|
16408
|
+
text-wrap: balance;
|
|
16409
|
+
}
|
|
16405
16410
|
|
|
16406
|
-
|
|
16407
|
-
|
|
16408
|
-
|
|
16411
|
+
.m_pretty {
|
|
16412
|
+
text-wrap: pretty;
|
|
16413
|
+
}
|
|
16409
16414
|
|
|
16410
|
-
|
|
16411
|
-
|
|
16412
|
-
|
|
16415
|
+
.m_word-break {
|
|
16416
|
+
word-break: break-word;
|
|
16417
|
+
}
|
|
16413
16418
|
|
|
16414
|
-
|
|
16415
|
-
|
|
16416
|
-
|
|
16419
|
+
.m_word-break-all {
|
|
16420
|
+
word-break: break-all;
|
|
16421
|
+
}
|
|
16417
16422
|
|
|
16418
|
-
|
|
16419
|
-
|
|
16420
|
-
|
|
16423
|
+
.m_uppercase {
|
|
16424
|
+
text-transform: uppercase;
|
|
16425
|
+
}
|
|
16421
16426
|
|
|
16422
|
-
|
|
16423
|
-
|
|
16424
|
-
|
|
16427
|
+
.m_lowercase {
|
|
16428
|
+
text-transform: lowercase;
|
|
16429
|
+
}
|
|
16425
16430
|
|
|
16426
|
-
|
|
16427
|
-
|
|
16428
|
-
|
|
16431
|
+
.m_capitalize {
|
|
16432
|
+
text-transform: capitalize;
|
|
16433
|
+
}
|
|
16429
16434
|
}body>div ::-webkit-scrollbar {
|
|
16430
16435
|
width: var(--bgl-scrollbar-size);
|
|
16431
16436
|
height: var(--bgl-scrollbar-size);
|