@bagelink/vue 1.4.20 → 1.4.26

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.
Files changed (35) hide show
  1. package/dist/components/AddressSearch.vue.d.ts.map +1 -1
  2. package/dist/components/Carousel2.vue.d.ts +89 -0
  3. package/dist/components/Carousel2.vue.d.ts.map +1 -0
  4. package/dist/components/Dropdown.vue.d.ts.map +1 -1
  5. package/dist/components/Icon/Icon.vue.d.ts.map +1 -1
  6. package/dist/components/Pill.vue.d.ts.map +1 -1
  7. package/dist/components/Slider.vue.d.ts.map +1 -1
  8. package/dist/components/calendar/CalendarPopover.vue.d.ts.map +1 -1
  9. package/dist/components/calendar/views/CalendarPopover.vue.d.ts +2 -2
  10. package/dist/components/calendar/views/CalendarPopover.vue.d.ts.map +1 -1
  11. package/dist/components/form/inputs/RichText/index.vue.d.ts +1 -0
  12. package/dist/components/form/inputs/RichText/index.vue.d.ts.map +1 -1
  13. package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
  14. package/dist/index.cjs +119 -134
  15. package/dist/index.mjs +119 -134
  16. package/dist/style.css +781 -778
  17. package/dist/utils/BagelFormUtils.d.ts +3 -1
  18. package/dist/utils/BagelFormUtils.d.ts.map +1 -1
  19. package/package.json +1 -1
  20. package/src/components/Icon/Icon.vue +4 -2
  21. package/src/components/Pill.vue +0 -2
  22. package/src/components/Slider.vue +0 -11
  23. package/src/components/form/inputs/RichText/index.vue +13 -5
  24. package/src/styles/text.css +784 -777
  25. package/src/utils/BagelFormUtils.ts +5 -9
  26. package/dist/components/Icon.vue.d.ts +0 -16
  27. package/dist/components/Icon.vue.d.ts.map +0 -1
  28. package/dist/components/form/BglFieldSet.vue.d.ts +0 -25
  29. package/dist/components/form/BglFieldSet.vue.d.ts.map +0 -1
  30. package/dist/iconify-0J3vK-m1.cjs +0 -1693
  31. package/dist/iconify-Bc1B42Ak.cjs +0 -1771
  32. package/dist/iconify-BiLGk5km.js +0 -1693
  33. package/dist/iconify-DVnNdzog.js +0 -1771
  34. package/dist/types/timeago.d.ts +0 -23
  35. 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;
@@ -1893,34 +1893,32 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
1893
1893
  line-height: 1.65;
1894
1894
  }
1895
1895
 
1896
- .rich-text-editor[data-v-175a13f1] {
1896
+ .rich-text-editor[data-v-8304a538] {
1897
1897
  background: var(--input-bg);
1898
1898
  border: 1px solid var(--border-color);
1899
1899
  transition: all 0.3s ease;
1900
1900
  }
1901
- .editor-container[data-v-175a13f1] {
1901
+ .editor-container[data-v-8304a538] {
1902
1902
  display: flex;
1903
1903
  gap: 0.5rem;
1904
1904
  }
1905
- .content-area[data-v-175a13f1],
1906
- .preview-area[data-v-175a13f1] {
1905
+ .content-area[data-v-8304a538],
1906
+ .preview-area[data-v-8304a538] {
1907
1907
  flex: 1;
1908
- min-height: 200px;
1909
1908
  background: var(--bgl-richtext-color);
1910
1909
  }
1911
- .split-view[data-v-175a13f1] {
1910
+ .split-view[data-v-8304a538] {
1912
1911
  display: grid;
1913
1912
  grid-template-columns: 1fr 1fr;
1914
1913
  }
1915
- .editableContent[data-v-175a13f1] {
1914
+ .editableContent[data-v-8304a538] {
1916
1915
  width: 100%;
1917
- min-height: 240px;
1918
1916
  height: 100%;
1919
1917
  border: none;
1920
1918
  outline: none;
1921
1919
  background: transparent;
1922
1920
  }
1923
- .html-editor[data-v-175a13f1] {
1921
+ .html-editor[data-v-8304a538] {
1924
1922
  width: 100%;
1925
1923
  height: 100%;
1926
1924
  min-height: 200px;
@@ -1931,12 +1929,12 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
1931
1929
  color: white;
1932
1930
  background-color: var(--bgl-black);
1933
1931
  }
1934
- .preview-area[data-v-175a13f1] {
1932
+ .preview-area[data-v-8304a538] {
1935
1933
  font-family: monospace;
1936
1934
  white-space: pre-wrap;
1937
1935
  overflow-x: auto;
1938
1936
  }
1939
- .fullscreen-mode[data-v-175a13f1] {
1937
+ .fullscreen-mode[data-v-8304a538] {
1940
1938
  position: fixed;
1941
1939
  top: 0;
1942
1940
  left: 0;
@@ -1945,57 +1943,21 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
1945
1943
  z-index: 9999;
1946
1944
  padding: 2rem;
1947
1945
  }
1948
- .fullscreen-mode .editor-container[data-v-175a13f1] {
1946
+ .fullscreen-mode .editor-container[data-v-8304a538] {
1949
1947
  height: calc(100vh - 4rem);
1950
1948
  }
1951
- .fullscreen-mode .content-area[data-v-175a13f1],
1952
- .fullscreen-mode .preview-area[data-v-175a13f1] {
1949
+ .fullscreen-mode .content-area[data-v-8304a538],
1950
+ .fullscreen-mode .preview-area[data-v-8304a538] {
1953
1951
  height: 100%;
1954
1952
  overflow-y: auto;
1955
1953
  }
1956
- .debug-controls[data-v-175a13f1] {
1954
+ .debug-controls[data-v-8304a538] {
1957
1955
  display: flex;
1958
1956
  gap: 0.5rem;
1959
1957
  justify-content: flex-end;
1960
1958
  }
1961
1959
  .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
1960
 
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
1961
  .bagel-input label {
2000
1962
  font-size: var(--label-font-size);
2001
1963
  }
@@ -2036,6 +1998,42 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
2036
1998
  /* color: var(--input-color); */
2037
1999
  }
2038
2000
 
2001
+ .selectinput[data-v-cced5e42] {
2002
+ width: 100%;
2003
+ }
2004
+ .selectinput-option[data-v-cced5e42] {
2005
+ padding: 6px 12px;
2006
+ cursor: pointer;
2007
+ border-radius: 5px;
2008
+ transition: all 0.2s;
2009
+ display: grid;
2010
+ grid-template-columns:1fr;
2011
+ justify-content: space-between;
2012
+ width: 100%;
2013
+ font-size: var(--input-font-size);
2014
+ margin-block: 0.15rem;
2015
+ }
2016
+ .selectinput-option .bgl_icon-font[data-v-cced5e42]{
2017
+ line-height: normal;
2018
+ }
2019
+ .selectinput-options.multiselect .selectinput-option[data-v-cced5e42] {
2020
+ grid-template-columns: 10px 1fr;
2021
+ }
2022
+ .selectinput-options[data-v-cced5e42] {
2023
+ max-height: 300px;
2024
+ overflow-y: auto;
2025
+ }
2026
+ .selectinput-option[data-v-cced5e42]:hover, .highlight[data-v-cced5e42] {
2027
+ background: var(--bgl-gray-20);
2028
+ }
2029
+ .isEmpty p[data-v-cced5e42] {
2030
+ opacity: 0.3;
2031
+ }
2032
+ .selected[data-v-cced5e42]{
2033
+ /* background: var(--bgl-primary-tint); */
2034
+ background: var(--bgl-selected);
2035
+ }
2036
+
2039
2037
  .bgl_input .canvas {
2040
2038
  width: 100%;
2041
2039
  height: 100%;
@@ -2051,6 +2049,40 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
2051
2049
  border-radius: var(--input-border-radius);
2052
2050
  }
2053
2051
 
2052
+ .table-row .bagel-input input,
2053
+ .table-row .bagel-input textarea,
2054
+ .table-row .bagel-input .input {
2055
+ border-radius: 0;
2056
+ background: transparent;
2057
+ color: var(--bgl-text-color);
2058
+ }
2059
+ .table-row .bagel-input textarea {
2060
+ resize: none;
2061
+ min-height: 40px;
2062
+ overflow: auto;
2063
+ margin: 0px;
2064
+ padding: 0.64rem 0.7rem 0;
2065
+ }
2066
+ .table-row .bagel-input {
2067
+ margin: 0;
2068
+ }
2069
+ .table-row .bagel-input input:focus-visible,
2070
+ .table-row .bagel-input textarea:focus-visible,
2071
+ .table-row .bagel-input .input:focus-visible {
2072
+ background: var(--border-color);
2073
+ }
2074
+ .ghost {
2075
+ opacity: 0;
2076
+ background: #c8ebfb;
2077
+ }
2078
+ .sortable-chosen {
2079
+ cursor: grabbing !important;
2080
+ border-color: transparent;
2081
+ background: var(--bgl-box-bg);
2082
+ border-radius: 10px;
2083
+ box-shadow: 0 0 10px 0 rgb(0 0 0 /20%);
2084
+ }
2085
+
2054
2086
  .table-side-scroll[data-v-e9632f79] {
2055
2087
  overflow: auto;
2056
2088
  margin-inline-start: -1rem;
@@ -2157,40 +2189,6 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
2157
2189
  opacity: 1;
2158
2190
  }
2159
2191
 
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
2192
  .tel-input[data-v-24f599bf] {
2195
2193
  direction: ltr;
2196
2194
  text-align: left;
@@ -4260,36 +4258,36 @@ body:has(.bg-dark.is-active) {
4260
4258
  padding: 0 4px;
4261
4259
  }
4262
4260
 
4263
- .pillLarge[data-v-91ae070e]{
4261
+ .pillLarge[data-v-56ad3910]{
4264
4262
  --pill-font-size: var(--bgl-font-size);
4265
4263
  --pill-height:auto;
4266
4264
  }
4267
- .pillSmall[data-v-91ae070e]{
4265
+ .pillSmall[data-v-56ad3910]{
4268
4266
  --pill-font-size: 9px;
4269
4267
  --pill-height:15px;
4270
4268
  }
4271
- .pillText[data-v-91ae070e]{
4269
+ .pillText[data-v-56ad3910]{
4272
4270
  font-size: var(--pill-font-size);
4273
4271
  }
4274
- .bgl_pill-btn[data-v-91ae070e]{
4272
+ .bgl_pill-btn[data-v-56ad3910]{
4275
4273
  color: var(--pill-btn-color);
4276
4274
  background: var(--pill-btn-bg);
4277
4275
  width: calc(var(--pill-height) / 1.25)!important;
4278
4276
  height: calc(var(--pill-height) / 1.25)!important;
4279
4277
  }
4280
- .loading[data-v-91ae070e] {
4278
+ .loading[data-v-56ad3910] {
4281
4279
  border: 1px solid var(--bgl-light-text);
4282
4280
  border-bottom: 2px solid var(--bgl-light-text);
4283
- animation: spin-91ae070e 1s linear infinite;
4281
+ animation: spin-56ad3910 1s linear infinite;
4284
4282
  border-radius: 100px;
4285
4283
  width: 1rem;
4286
4284
  height: 1rem;
4287
4285
  margin: auto;
4288
4286
  }
4289
- .bgl_flatPill .loading[data-v-91ae070e] {
4287
+ .bgl_flatPill .loading[data-v-56ad3910] {
4290
4288
  border-bottom: 2px solid var(--bgl-text-color);
4291
4289
  }
4292
- @keyframes spin-91ae070e {
4290
+ @keyframes spin-56ad3910 {
4293
4291
  0% {
4294
4292
  transform: rotate(0deg);
4295
4293
  }
@@ -4297,12 +4295,12 @@ body:has(.bg-dark.is-active) {
4297
4295
  transform: rotate(360deg);
4298
4296
  }
4299
4297
  }
4300
- .bgl_pill[data-v-91ae070e] {
4298
+ .bgl_pill[data-v-56ad3910] {
4301
4299
  padding-inline: calc(var(--pill-font-size) / 6);
4302
4300
  padding-block: calc(var(--pill-font-size) / 24);
4303
4301
  transition: var(--bgl-transition);
4304
- background-color: var(--0da076cc);
4305
- color: var(--ae6db216);
4302
+ background-color: var(--80c2f0ae);
4303
+ color: var(--0e0f2144);
4306
4304
  display: inline-block;
4307
4305
  margin-inline-end: 0.25rem;
4308
4306
  border-radius: var(--pill-border-radius);
@@ -4310,44 +4308,44 @@ body:has(.bg-dark.is-active) {
4310
4308
  vertical-align: middle;
4311
4309
  margin-bottom: 0.25rem;
4312
4310
  }
4313
- .bgl_pill[disabled="true"][data-v-91ae070e] {
4311
+ .bgl_pill[disabled="true"][data-v-56ad3910] {
4314
4312
  opacity: 0.5;
4315
4313
  cursor: not-allowed;
4316
4314
  }
4317
- .bgl_pill-flex[data-v-91ae070e] {
4315
+ .bgl_pill-flex[data-v-56ad3910] {
4318
4316
  display: flex;
4319
4317
  align-items: center;
4320
4318
  gap: 0.25rem;
4321
4319
  justify-content: center;
4322
4320
  height: 100%;
4323
4321
  }
4324
- .bgl_pill.bgl_flatPill[data-v-91ae070e] {
4322
+ .bgl_pill.bgl_flatPill[data-v-56ad3910] {
4325
4323
  background: transparent;
4326
4324
  }
4327
- .bgl_pill.round[data-v-91ae070e] {
4325
+ .bgl_pill.round[data-v-56ad3910] {
4328
4326
  border-radius: 1000px;
4329
4327
  }
4330
- .bgl_pill-border[data-v-91ae070e] {
4331
- outline: 1px solid var(--0da076cc);
4332
- color: var(--0da076cc);
4328
+ .bgl_pill-border[data-v-56ad3910] {
4329
+ outline: 1px solid var(--80c2f0ae);
4330
+ color: var(--80c2f0ae);
4333
4331
  background: transparent;
4334
4332
  }
4335
4333
 
4336
- .carousel-wrapper[data-v-7225d57d] {
4334
+ .carousel-wrapper[data-v-fa8183f4] {
4337
4335
  position: relative;
4338
4336
  width: 100%;
4339
4337
  }
4340
- .carousel-container[data-v-7225d57d] {
4338
+ .carousel-container[data-v-fa8183f4] {
4341
4339
  margin: 0 auto;
4342
4340
  overflow: hidden;
4343
4341
  }
4344
- .carousel-dots[data-v-7225d57d] {
4342
+ .carousel-dots[data-v-fa8183f4] {
4345
4343
  display: flex;
4346
4344
  justify-content: center;
4347
4345
  gap: 8px;
4348
4346
  margin-top: 16px;
4349
4347
  }
4350
- .carousel-dot[data-v-7225d57d] {
4348
+ .carousel-dot[data-v-fa8183f4] {
4351
4349
  width: 12px;
4352
4350
  height: 12px;
4353
4351
  border-radius: 50px;
@@ -4357,7 +4355,7 @@ body:has(.bg-dark.is-active) {
4357
4355
  cursor: pointer;
4358
4356
  transition: all 0.3s ease-in-out;
4359
4357
  }
4360
- .carousel-dot.active[data-v-7225d57d] {
4358
+ .carousel-dot.active[data-v-fa8183f4] {
4361
4359
  background-color: var(--bgl-primary);
4362
4360
  width: 26px;
4363
4361
  }
@@ -15416,254 +15414,254 @@ select {
15416
15414
  opacity: 0;
15417
15415
  }
15418
15416
  }.txt-center {
15419
- text-align: center;
15417
+ text-align: center;
15420
15418
  }.txt-start {
15421
- text-align: start;
15419
+ text-align: start;
15422
15420
  }.txt-end {
15423
- text-align: end;
15421
+ text-align: end;
15424
15422
  }.txt-justify {
15425
- text-align: justify;
15423
+ text-align: justify;
15426
15424
  }.txt-small {
15427
- font-size: 12px;
15425
+ font-size: 12px;
15428
15426
  }.txt20,
15429
15427
  .txt-20 {
15430
- font-size: 20px;
15428
+ font-size: 20px;
15431
15429
  }.txt24,
15432
15430
  .txt-24 {
15433
- font-size: 24px;
15431
+ font-size: 24px;
15434
15432
  }.txt28,
15435
15433
  .txt-28 {
15436
- font-size: 28px;
15434
+ font-size: 28px;
15437
15435
  }.txt30,
15438
15436
  .txt-30 {
15439
- font-size: 30px;
15437
+ font-size: 30px;
15440
15438
  }.txt32,
15441
15439
  .txt-32 {
15442
- font-size: 32px;
15440
+ font-size: 32px;
15443
15441
  }.txt36,
15444
15442
  .txt-36 {
15445
- font-size: 36px;
15443
+ font-size: 36px;
15446
15444
  }.txt40,
15447
15445
  .txt-40 {
15448
- font-size: 40px;
15446
+ font-size: 40px;
15449
15447
  }.txt44,
15450
15448
  .txt-44 {
15451
- font-size: 44px;
15449
+ font-size: 44px;
15452
15450
  }.txt48,
15453
15451
  .txt-48 {
15454
- font-size: 48px;
15452
+ font-size: 48px;
15455
15453
  }.txt50,
15456
15454
  .txt-50 {
15457
- font-size: 50px;
15455
+ font-size: 50px;
15458
15456
  }.txt52,
15459
15457
  .txt-52 {
15460
- font-size: 52px;
15458
+ font-size: 52px;
15461
15459
  }.txt56,
15462
15460
  .txt-56 {
15463
- font-size: 56px;
15461
+ font-size: 56px;
15464
15462
  }.txt60,
15465
15463
  .txt-60 {
15466
- font-size: 60px;
15464
+ font-size: 60px;
15467
15465
  }.txt64,
15468
15466
  .txt-64 {
15469
- font-size: 64px;
15467
+ font-size: 64px;
15470
15468
  }.txt68,
15471
15469
  .txt-68 {
15472
- font-size: 68px;
15470
+ font-size: 68px;
15473
15471
  }.txt70,
15474
15472
  .txt-70 {
15475
- font-size: 70px;
15473
+ font-size: 70px;
15476
15474
  }.txt72,
15477
15475
  .txt-72 {
15478
- font-size: 72px;
15476
+ font-size: 72px;
15479
15477
  }.txt80,
15480
15478
  .txt-80 {
15481
- font-size: 80px;
15479
+ font-size: 80px;
15482
15480
  }.txt90,
15483
15481
  .txt-90 {
15484
- font-size: 90px;
15482
+ font-size: 90px;
15485
15483
  }.txt100,
15486
15484
  .txt-100 {
15487
- font-size: 100px;
15485
+ font-size: 100px;
15488
15486
  }.txt110,
15489
15487
  .txt-110 {
15490
- font-size: 110px;
15488
+ font-size: 110px;
15491
15489
  }.txt120,
15492
15490
  .txt-120 {
15493
- font-size: 120px;
15491
+ font-size: 120px;
15494
15492
  }.txt130,
15495
15493
  .txt-130 {
15496
- font-size: 130px;
15494
+ font-size: 130px;
15497
15495
  }.txt140,
15498
15496
  .txt-140 {
15499
- font-size: 140px;
15497
+ font-size: 140px;
15500
15498
  }.txt150,
15501
15499
  .txt-150 {
15502
- font-size: 150px;
15500
+ font-size: 150px;
15503
15501
  }.txt18,
15504
15502
  .txt-18 {
15505
- font-size: 18px;
15503
+ font-size: 18px;
15506
15504
  }.txt16,
15507
15505
  .txt-16 {
15508
- font-size: 16px;
15506
+ font-size: 16px;
15509
15507
  }.txt14,
15510
15508
  .txt-14 {
15511
- font-size: 14px;
15509
+ font-size: 14px;
15512
15510
  }.txt12,
15513
15511
  .txt-12 {
15514
- font-size: 12px;
15512
+ font-size: 12px;
15515
15513
  }.txt11,
15516
15514
  .txt-11 {
15517
- font-size: 11px;
15515
+ font-size: 11px;
15518
15516
  }.txt10,
15519
15517
  .txt-10 {
15520
- font-size: 10px;
15518
+ font-size: 10px;
15521
15519
  }.txt9,
15522
15520
  .txt-9 {
15523
- font-size: 9px;
15521
+ font-size: 9px;
15524
15522
  }.txt025,
15525
15523
  .txt-025 {
15526
- font-size: 0.25rem;
15524
+ font-size: 0.25rem;
15527
15525
  }.txt05,
15528
15526
  .txt-05 {
15529
- font-size: 0.5rem;
15527
+ font-size: 0.5rem;
15530
15528
  }.txt075,
15531
15529
  .txt-075 {
15532
- font-size: 0.75rem;
15530
+ font-size: 0.75rem;
15533
15531
  }.txt1,
15534
15532
  .txt-1 {
15535
- font-size: 1rem;
15533
+ font-size: 1rem;
15536
15534
  }.txt1-25,
15537
15535
  .txt-1-25 {
15538
- font-size: 1.25rem;
15536
+ font-size: 1.25rem;
15539
15537
  }.txt1-5,
15540
15538
  .txt-1-5 {
15541
- font-size: 1.5rem;
15539
+ font-size: 1.5rem;
15542
15540
  }.txt1-75,
15543
15541
  .txt-1-75 {
15544
- font-size: 1.75rem;
15542
+ font-size: 1.75rem;
15545
15543
  }.txt2,
15546
15544
  .txt-2 {
15547
- font-size: 2rem;
15545
+ font-size: 2rem;
15548
15546
  }.txt2-25,
15549
15547
  .txt-2-25 {
15550
- font-size: 2.25rem;
15548
+ font-size: 2.25rem;
15551
15549
  }.txt2-5,
15552
15550
  .txt-2-5 {
15553
- font-size: 2.5rem;
15551
+ font-size: 2.5rem;
15554
15552
  }.txt2-75,
15555
15553
  .txt-2-75 {
15556
- font-size: 2.75rem;
15554
+ font-size: 2.75rem;
15557
15555
  }.txt3,
15558
15556
  .txt-3 {
15559
- font-size: 3rem;
15557
+ font-size: 3rem;
15560
15558
  }.txt3-25,
15561
15559
  .txt-3-25 {
15562
- font-size: 3.25rem;
15560
+ font-size: 3.25rem;
15563
15561
  }.txt3-5,
15564
15562
  .txt-3-5 {
15565
- font-size: 3.5rem;
15563
+ font-size: 3.5rem;
15566
15564
  }.txt3-75,
15567
15565
  .txt-3-75 {
15568
- font-size: 3.75rem;
15566
+ font-size: 3.75rem;
15569
15567
  }.txt4,
15570
15568
  .txt-4 {
15571
- font-size: 4rem;
15569
+ font-size: 4rem;
15572
15570
  }.txt4-25,
15573
15571
  .txt-4-25 {
15574
- font-size: 4.25rem;
15572
+ font-size: 4.25rem;
15575
15573
  }.txt4-5,
15576
15574
  .txt-4-5 {
15577
- font-size: 4.5rem;
15575
+ font-size: 4.5rem;
15578
15576
  }.txt4-75,
15579
15577
  .txt-4-75 {
15580
- font-size: 4.75rem;
15578
+ font-size: 4.75rem;
15581
15579
  }.txt5,
15582
15580
  .txt-5 {
15583
- font-size: 5rem;
15581
+ font-size: 5rem;
15584
15582
  }.txt5-25,
15585
15583
  .txt-5-25 {
15586
- font-size: 5.25rem;
15584
+ font-size: 5.25rem;
15587
15585
  }.txt5-5,
15588
15586
  .txt-5-5 {
15589
- font-size: 5.5rem;
15587
+ font-size: 5.5rem;
15590
15588
  }.txt5-75,
15591
15589
  .txt-5-75 {
15592
- font-size: 5.75rem;
15590
+ font-size: 5.75rem;
15593
15591
  }.txt6,
15594
15592
  .txt-6 {
15595
- font-size: 6rem;
15593
+ font-size: 6rem;
15596
15594
  }.txt6-25,
15597
15595
  .txt-6-25 {
15598
- font-size: 6.25rem;
15596
+ font-size: 6.25rem;
15599
15597
  }.txt6-5,
15600
15598
  .txt-6-5 {
15601
- font-size: 6.5rem;
15599
+ font-size: 6.5rem;
15602
15600
  }.txt6-75,
15603
15601
  .txt-6-75 {
15604
- font-size: 6.75rem;
15602
+ font-size: 6.75rem;
15605
15603
  }.txt7,
15606
15604
  .txt-7 {
15607
- font-size: 7rem;
15605
+ font-size: 7rem;
15608
15606
  }.txt7-25,
15609
15607
  .txt-7-25 {
15610
- font-size: 7.25rem;
15608
+ font-size: 7.25rem;
15611
15609
  }.txt7-5,
15612
15610
  .txt-7-5 {
15613
- font-size: 7.5rem;
15611
+ font-size: 7.5rem;
15614
15612
  }.txt7-75,
15615
15613
  .txt-7-75 {
15616
- font-size: 7.75rem;
15614
+ font-size: 7.75rem;
15617
15615
  }.txt8,
15618
15616
  .txt-8 {
15619
- font-size: 8rem;
15617
+ font-size: 8rem;
15620
15618
  }.txt8-25,
15621
15619
  .txt-8-25 {
15622
- font-size: 8.25rem;
15620
+ font-size: 8.25rem;
15623
15621
  }.txt8-5,
15624
15622
  .txt-8-5 {
15625
- font-size: 8.5rem;
15623
+ font-size: 8.5rem;
15626
15624
  }.txt8-75,
15627
15625
  .txt-8-75 {
15628
- font-size: 8.75rem;
15626
+ font-size: 8.75rem;
15629
15627
  }.no-margin {
15630
- margin: 0;
15628
+ margin: 0;
15631
15629
  }.txt-gray,
15632
15630
  .txtgray {
15633
- color: var(--bgl-gray);
15631
+ color: var(--bgl-gray);
15634
15632
  }.txt-blue,
15635
15633
  .txtblue {
15636
- color: var(--bgl-primary);
15634
+ color: var(--bgl-primary);
15637
15635
  }.txt-black,
15638
15636
  .txtblack {
15639
- color: var(--bgl-black);
15637
+ color: var(--bgl-black);
15640
15638
  }.txt-red,
15641
15639
  .txtred {
15642
- color: var(--bgl-red);
15640
+ color: var(--bgl-red);
15643
15641
  }.txt-white,
15644
15642
  .txtwhite {
15645
- color: var(--bgl-white);
15643
+ color: var(--bgl-white);
15646
15644
  }.font-thin,
15647
15645
  .txt-thin {
15648
- font-weight: 100;
15646
+ font-weight: 100;
15649
15647
  }.extra-light,
15650
15648
  .font-extra-light,
15651
15649
  .txt-extra-light,
15652
15650
  .font-ultra-light,
15653
15651
  .txt-ultra-light {
15654
- font-weight: 200;
15652
+ font-weight: 200;
15655
15653
  }.light,
15656
15654
  .txt-light,
15657
15655
  .font-light {
15658
- font-weight: 300;
15656
+ font-weight: 300;
15659
15657
  }.regular,
15660
15658
  .txt-regular,
15661
15659
  .font-regular {
15662
- font-weight: 400;
15660
+ font-weight: 400;
15663
15661
  }.medium,
15664
15662
  .txt-medium,
15665
15663
  .font-medium {
15666
- font-weight: 500;
15664
+ font-weight: 500;
15667
15665
  }.semi,
15668
15666
  .semibold,
15669
15667
  .txt-semi,
@@ -15671,761 +15669,766 @@ select {
15671
15669
  .font-regular,
15672
15670
  .font-semi,
15673
15671
  .font-semibold {
15674
- font-weight: 600;
15672
+ font-weight: 600;
15675
15673
  }.bold,
15676
15674
  .txt-bold,
15677
15675
  .font-bold {
15678
- font-weight: 700;
15676
+ font-weight: 700;
15679
15677
  }.extra-bold,
15680
15678
  .font-extra-bold,
15681
15679
  .txt-extra-bold,
15682
15680
  .font-ultra-bold,
15683
15681
  .txt-ultra-bold {
15684
- font-weight: 800;
15682
+ font-weight: 800;
15685
15683
  }.black,
15686
15684
  .font-black {
15687
- font-weight: 900;
15685
+ font-weight: 900;
15688
15686
  }.line-height-0 {
15689
- line-height: 0;
15687
+ line-height: 0;
15690
15688
  }.line-height-01 {
15691
- line-height: 0.1;
15689
+ line-height: 0.1;
15692
15690
  }.line-height-02 {
15693
- line-height: 0.2;
15691
+ line-height: 0.2;
15694
15692
  }.line-height-03 {
15695
- line-height: 0.3;
15693
+ line-height: 0.3;
15696
15694
  }.line-height-04 {
15697
- line-height: 0.4;
15695
+ line-height: 0.4;
15698
15696
  }.line-height-05 {
15699
- line-height: 0.5;
15697
+ line-height: 0.5;
15700
15698
  }.line-height-06 {
15701
- line-height: 0.6;
15699
+ line-height: 0.6;
15702
15700
  }.line-height-07 {
15703
- line-height: 0.7;
15701
+ line-height: 0.7;
15704
15702
  }.line-height-08 {
15705
- line-height: 0.8;
15703
+ line-height: 0.8;
15706
15704
  }.line-height-09 {
15707
- line-height: 0.9;
15705
+ line-height: 0.9;
15708
15706
  }.line-height-1 {
15709
- line-height: 1;
15707
+ line-height: 1;
15710
15708
  }.line-height-11 {
15711
- line-height: 1.1;
15709
+ line-height: 1.1;
15712
15710
  }.line-height-12 {
15713
- line-height: 1.2;
15711
+ line-height: 1.2;
15714
15712
  }.line-height-13 {
15715
- line-height: 1.3;
15713
+ line-height: 1.3;
15716
15714
  }.line-height-14 {
15717
- line-height: 1.4;
15715
+ line-height: 1.4;
15718
15716
  }.line-height-15 {
15719
- line-height: 1.5;
15717
+ line-height: 1.5;
15720
15718
  }.line-height-16 {
15721
- line-height: 1.6;
15719
+ line-height: 1.6;
15722
15720
  }.line-height-17 {
15723
- line-height: 1.7;
15721
+ line-height: 1.7;
15724
15722
  }.line-height-18 {
15725
- line-height: 1.8;
15723
+ line-height: 1.8;
15726
15724
  }.line-height-19 {
15727
- line-height: 1.9;
15725
+ line-height: 1.9;
15728
15726
  }.line-height-2 {
15729
- line-height: 2;
15727
+ line-height: 2;
15730
15728
  }.line-height-normal {
15731
- line-height: normal;
15729
+ line-height: normal;
15732
15730
  }.ellipsis {
15733
- overflow: hidden;
15734
- display: block;
15735
- width: 100%;
15736
- text-overflow: ellipsis;
15731
+ overflow: hidden;
15732
+ display: block;
15733
+ width: 100%;
15734
+ text-overflow: ellipsis;
15737
15735
  }.ellipsis-1,
15738
15736
  .ellipsis-2,
15739
15737
  .ellipsis-3,
15740
15738
  .ellipsis-4,
15741
15739
  .ellipsis-5,
15742
15740
  .ellipsis-6 {
15743
- display: block;
15744
- display: -webkit-box;
15745
- max-width: 100%;
15746
- -webkit-box-orient: vertical;
15747
- overflow: hidden;
15748
- text-overflow: ellipsis;
15741
+ display: block;
15742
+ display: -webkit-box;
15743
+ max-width: 100%;
15744
+ -webkit-box-orient: vertical;
15745
+ overflow: hidden;
15746
+ text-overflow: ellipsis;
15749
15747
  }.ellipsis-1 {
15750
- -webkit-line-clamp: 1;
15748
+ -webkit-line-clamp: 1;
15751
15749
  }.ellipsis-2 {
15752
- -webkit-line-clamp: 2;
15750
+ -webkit-line-clamp: 2;
15753
15751
  }.ellipsis-3 {
15754
- -webkit-line-clamp: 3;
15752
+ -webkit-line-clamp: 3;
15755
15753
  }.ellipsis-4 {
15756
- -webkit-line-clamp: 4;
15754
+ -webkit-line-clamp: 4;
15757
15755
  }.ellipsis-5 {
15758
- -webkit-line-clamp: 5;
15756
+ -webkit-line-clamp: 5;
15759
15757
  }.ellipsis-6 {
15760
- -webkit-line-clamp: 6;
15758
+ -webkit-line-clamp: 6;
15761
15759
  }.pointer {
15762
- cursor: pointer;
15760
+ cursor: pointer;
15763
15761
  }.grab {
15764
- cursor: grab;
15762
+ cursor: grab;
15765
15763
  }.grab:active {
15766
- cursor: grabbing;
15764
+ cursor: grabbing;
15767
15765
  }.not-allowed {
15768
- cursor: not-allowed;
15766
+ cursor: not-allowed;
15769
15767
  }.decoration-none {
15770
- text-decoration: none;
15768
+ text-decoration: none;
15771
15769
  }.underline,
15772
15770
  .decoration-underline {
15773
- text-decoration: underline !important;
15771
+ text-decoration: underline !important;
15774
15772
  }.word-break {
15775
- word-break: break-word;
15773
+ word-break: break-word;
15776
15774
  }.word-break-all {
15777
- word-break: break-all;
15775
+ word-break: break-all;
15778
15776
  }.uppercase {
15779
- text-transform: uppercase;
15777
+ text-transform: uppercase;
15780
15778
  }.lowercase {
15781
- text-transform: lowercase;
15779
+ text-transform: lowercase;
15782
15780
  }.capitalize {
15783
- text-transform: capitalize;
15781
+ text-transform: capitalize;
15784
15782
  }.nowrap {
15785
- white-space: nowrap;
15783
+ white-space: nowrap;
15786
15784
  }.balance {
15787
- text-wrap: balance;
15785
+ text-wrap: balance;
15788
15786
  }.pretty {
15789
- text-wrap: pretty;
15787
+ text-wrap: pretty;
15790
15788
  }.white-space {
15791
- white-space: nowrap;
15789
+ white-space: nowrap;
15790
+ }.notranslate {
15791
+ translate: none !important;
15792
+ -webkit-translate: none !important;
15793
+ -moz-translate: none !important;
15794
+ -ms-translate: none !important;
15795
+ -o-translate: none !important;
15792
15796
  }@media screen and (max-width: 910px) {
15797
+ .txt20,
15798
+ .txt-20 {
15799
+ font-size: 18px;
15800
+ }
15793
15801
 
15794
- .txt20,
15795
- .txt-20 {
15796
- font-size: 18px;
15797
- }
15798
-
15799
- .txt16,
15800
- .txt-16 {
15801
- font-size: 14px;
15802
- }
15802
+ .txt16,
15803
+ .txt-16 {
15804
+ font-size: 14px;
15805
+ }
15803
15806
 
15804
- .txt14,
15805
- .txt-14 {
15806
- font-size: 12px;
15807
- }
15807
+ .txt14,
15808
+ .txt-14 {
15809
+ font-size: 12px;
15810
+ }
15808
15811
 
15809
- .m_txt-center {
15810
- text-align: center;
15811
- }
15812
+ .m_txt-center {
15813
+ text-align: center;
15814
+ }
15812
15815
 
15813
- .m_txt-start {
15814
- text-align: start;
15815
- }
15816
+ .m_txt-start {
15817
+ text-align: start;
15818
+ }
15816
15819
 
15817
- .m_txt-end {
15818
- text-align: end;
15819
- }
15820
+ .m_txt-end {
15821
+ text-align: end;
15822
+ }
15820
15823
 
15821
- .m_txt-justify {
15822
- text-align: justify;
15823
- }
15824
+ .m_txt-justify {
15825
+ text-align: justify;
15826
+ }
15824
15827
 
15825
- .m_txt-small {
15826
- font-size: 12px;
15827
- }
15828
+ .m_txt-small {
15829
+ font-size: 12px;
15830
+ }
15828
15831
 
15829
- .m_txt20,
15830
- .m_txt-20 {
15831
- font-size: 20px;
15832
- }
15832
+ .m_txt20,
15833
+ .m_txt-20 {
15834
+ font-size: 20px;
15835
+ }
15833
15836
 
15834
- .m_txt24,
15835
- .m_txt-24 {
15836
- font-size: 24px;
15837
- }
15837
+ .m_txt24,
15838
+ .m_txt-24 {
15839
+ font-size: 24px;
15840
+ }
15838
15841
 
15839
- .m_txt28,
15840
- .m_txt-28 {
15841
- font-size: 28px;
15842
- }
15842
+ .m_txt28,
15843
+ .m_txt-28 {
15844
+ font-size: 28px;
15845
+ }
15843
15846
 
15844
- .m_txt30,
15845
- .m_txt-30 {
15846
- font-size: 30px;
15847
- }
15847
+ .m_txt30,
15848
+ .m_txt-30 {
15849
+ font-size: 30px;
15850
+ }
15848
15851
 
15849
- .m_txt32,
15850
- .m_txt-32 {
15851
- font-size: 32px;
15852
- }
15852
+ .m_txt32,
15853
+ .m_txt-32 {
15854
+ font-size: 32px;
15855
+ }
15853
15856
 
15854
- .m_txt36,
15855
- .m_txt-36 {
15856
- font-size: 36px;
15857
- }
15857
+ .m_txt36,
15858
+ .m_txt-36 {
15859
+ font-size: 36px;
15860
+ }
15858
15861
 
15859
- .m_txt40,
15860
- .m_txt-40 {
15861
- font-size: 40px;
15862
- }
15862
+ .m_txt40,
15863
+ .m_txt-40 {
15864
+ font-size: 40px;
15865
+ }
15863
15866
 
15864
- .m_txt44,
15865
- .m_txt-44 {
15866
- font-size: 44px;
15867
- }
15867
+ .m_txt44,
15868
+ .m_txt-44 {
15869
+ font-size: 44px;
15870
+ }
15868
15871
 
15869
- .m_txt48,
15870
- .m_txt-48 {
15871
- font-size: 48px;
15872
- }
15872
+ .m_txt48,
15873
+ .m_txt-48 {
15874
+ font-size: 48px;
15875
+ }
15873
15876
 
15874
- .m_txt50,
15875
- .m_txt-50 {
15876
- font-size: 50px;
15877
- }
15877
+ .m_txt50,
15878
+ .m_txt-50 {
15879
+ font-size: 50px;
15880
+ }
15878
15881
 
15879
- .m_txt52,
15880
- .m_txt-52 {
15881
- font-size: 52px;
15882
- }
15882
+ .m_txt52,
15883
+ .m_txt-52 {
15884
+ font-size: 52px;
15885
+ }
15883
15886
 
15884
- .m_txt56,
15885
- .m_txt-56 {
15886
- font-size: 56px;
15887
- }
15887
+ .m_txt56,
15888
+ .m_txt-56 {
15889
+ font-size: 56px;
15890
+ }
15888
15891
 
15889
- .m_txt60,
15890
- .m_txt-60 {
15891
- font-size: 60px;
15892
- }
15892
+ .m_txt60,
15893
+ .m_txt-60 {
15894
+ font-size: 60px;
15895
+ }
15893
15896
 
15894
- .m_txt64,
15895
- .m_txt-64 {
15896
- font-size: 64px;
15897
- }
15897
+ .m_txt64,
15898
+ .m_txt-64 {
15899
+ font-size: 64px;
15900
+ }
15898
15901
 
15899
- .m_txt68,
15900
- .m_txt-68 {
15901
- font-size: 68px;
15902
- }
15902
+ .m_txt68,
15903
+ .m_txt-68 {
15904
+ font-size: 68px;
15905
+ }
15903
15906
 
15904
- .m_txt70,
15905
- .m_txt-70 {
15906
- font-size: 70px;
15907
- }
15907
+ .m_txt70,
15908
+ .m_txt-70 {
15909
+ font-size: 70px;
15910
+ }
15908
15911
 
15909
- .m_txt72,
15910
- .m_txt-72 {
15911
- font-size: 72px;
15912
- }
15912
+ .m_txt72,
15913
+ .m_txt-72 {
15914
+ font-size: 72px;
15915
+ }
15913
15916
 
15914
- .m_txt80,
15915
- .m_txt-80 {
15916
- font-size: 80px;
15917
- }
15917
+ .m_txt80,
15918
+ .m_txt-80 {
15919
+ font-size: 80px;
15920
+ }
15918
15921
 
15919
- .m_txt90,
15920
- .m_txt-90 {
15921
- font-size: 90px;
15922
- }
15922
+ .m_txt90,
15923
+ .m_txt-90 {
15924
+ font-size: 90px;
15925
+ }
15923
15926
 
15924
- .m_txt100,
15925
- .m_txt-100 {
15926
- font-size: 100px;
15927
- }
15927
+ .m_txt100,
15928
+ .m_txt-100 {
15929
+ font-size: 100px;
15930
+ }
15928
15931
 
15929
- .m_txt110,
15930
- .m_txt-110 {
15931
- font-size: 110px;
15932
- }
15932
+ .m_txt110,
15933
+ .m_txt-110 {
15934
+ font-size: 110px;
15935
+ }
15933
15936
 
15934
- .m_txt120,
15935
- .m_txt-120 {
15936
- font-size: 120px;
15937
- }
15937
+ .m_txt120,
15938
+ .m_txt-120 {
15939
+ font-size: 120px;
15940
+ }
15938
15941
 
15939
- .m_txt130,
15940
- .m_txt-130 {
15941
- font-size: 130px;
15942
- }
15942
+ .m_txt130,
15943
+ .m_txt-130 {
15944
+ font-size: 130px;
15945
+ }
15943
15946
 
15944
- .m_txt140,
15945
- .m_txt-140 {
15946
- font-size: 140px;
15947
- }
15947
+ .m_txt140,
15948
+ .m_txt-140 {
15949
+ font-size: 140px;
15950
+ }
15948
15951
 
15949
- .m_txt150,
15950
- .m_txt-150 {
15951
- font-size: 150px;
15952
- }
15952
+ .m_txt150,
15953
+ .m_txt-150 {
15954
+ font-size: 150px;
15955
+ }
15953
15956
 
15954
- .m_txt18,
15955
- .m_txt-18 {
15956
- font-size: 18px;
15957
- }
15957
+ .m_txt18,
15958
+ .m_txt-18 {
15959
+ font-size: 18px;
15960
+ }
15958
15961
 
15959
- .m_txt16,
15960
- .m_txt-16 {
15961
- font-size: 16px;
15962
- }
15962
+ .m_txt16,
15963
+ .m_txt-16 {
15964
+ font-size: 16px;
15965
+ }
15963
15966
 
15964
- .m_txt14,
15965
- .m_txt-14 {
15966
- font-size: 14px;
15967
- }
15967
+ .m_txt14,
15968
+ .m_txt-14 {
15969
+ font-size: 14px;
15970
+ }
15968
15971
 
15969
- .m_txt12,
15970
- .m_txt-12 {
15971
- font-size: 12px;
15972
- }
15972
+ .m_txt12,
15973
+ .m_txt-12 {
15974
+ font-size: 12px;
15975
+ }
15973
15976
 
15974
- .m_txt10,
15975
- .m_txt-10 {
15976
- font-size: 10px;
15977
- }
15977
+ .m_txt10,
15978
+ .m_txt-10 {
15979
+ font-size: 10px;
15980
+ }
15978
15981
 
15979
- .m_txt9,
15980
- .m_txt-9 {
15981
- font-size: 9px;
15982
- }
15982
+ .m_txt9,
15983
+ .m_txt-9 {
15984
+ font-size: 9px;
15985
+ }
15983
15986
 
15984
- .m_txt025,
15985
- .m_txt-025 {
15986
- font-size: 0.25rem;
15987
- }
15987
+ .m_txt025,
15988
+ .m_txt-025 {
15989
+ font-size: 0.25rem;
15990
+ }
15988
15991
 
15989
- .m_txt05,
15990
- .m_txt-05 {
15991
- font-size: 0.5rem;
15992
- }
15992
+ .m_txt05,
15993
+ .m_txt-05 {
15994
+ font-size: 0.5rem;
15995
+ }
15993
15996
 
15994
- .m_txt075,
15995
- .m_txt-075 {
15996
- font-size: 0.75rem;
15997
- }
15997
+ .m_txt075,
15998
+ .m_txt-075 {
15999
+ font-size: 0.75rem;
16000
+ }
15998
16001
 
15999
- .m_txt1,
16000
- .m_txt-1 {
16001
- font-size: 1rem;
16002
- }
16002
+ .m_txt1,
16003
+ .m_txt-1 {
16004
+ font-size: 1rem;
16005
+ }
16003
16006
 
16004
- .m_txt1-25,
16005
- .m_txt-1-25 {
16006
- font-size: 1.25rem;
16007
- }
16007
+ .m_txt1-25,
16008
+ .m_txt-1-25 {
16009
+ font-size: 1.25rem;
16010
+ }
16008
16011
 
16009
- .m_txt1-5,
16010
- .m_txt-1-5 {
16011
- font-size: 1.5rem;
16012
- }
16012
+ .m_txt1-5,
16013
+ .m_txt-1-5 {
16014
+ font-size: 1.5rem;
16015
+ }
16013
16016
 
16014
- .m_txt1-75,
16015
- .m_txt-1-75 {
16016
- font-size: 1.75rem;
16017
- }
16017
+ .m_txt1-75,
16018
+ .m_txt-1-75 {
16019
+ font-size: 1.75rem;
16020
+ }
16018
16021
 
16019
- .m_txt2,
16020
- .m_txt-2 {
16021
- font-size: 2rem;
16022
- }
16022
+ .m_txt2,
16023
+ .m_txt-2 {
16024
+ font-size: 2rem;
16025
+ }
16023
16026
 
16024
- .m_txt2-25,
16025
- .m_txt-2-25 {
16026
- font-size: 2.25rem;
16027
- }
16027
+ .m_txt2-25,
16028
+ .m_txt-2-25 {
16029
+ font-size: 2.25rem;
16030
+ }
16028
16031
 
16029
- .m_txt2-5,
16030
- .m_txt-2-5 {
16031
- font-size: 2.5rem;
16032
- }
16032
+ .m_txt2-5,
16033
+ .m_txt-2-5 {
16034
+ font-size: 2.5rem;
16035
+ }
16033
16036
 
16034
- .m_txt2-75,
16035
- .m_txt-2-75 {
16036
- font-size: 2.75rem;
16037
- }
16037
+ .m_txt2-75,
16038
+ .m_txt-2-75 {
16039
+ font-size: 2.75rem;
16040
+ }
16038
16041
 
16039
- .m_txt3,
16040
- .m_txt-3 {
16041
- font-size: 3rem;
16042
- }
16042
+ .m_txt3,
16043
+ .m_txt-3 {
16044
+ font-size: 3rem;
16045
+ }
16043
16046
 
16044
- .m_txt3-25,
16045
- .m_txt-3-25 {
16046
- font-size: 3.25rem;
16047
- }
16047
+ .m_txt3-25,
16048
+ .m_txt-3-25 {
16049
+ font-size: 3.25rem;
16050
+ }
16048
16051
 
16049
- .m_txt3-5,
16050
- .m_txt-3-5 {
16051
- font-size: 3.5rem;
16052
- }
16052
+ .m_txt3-5,
16053
+ .m_txt-3-5 {
16054
+ font-size: 3.5rem;
16055
+ }
16053
16056
 
16054
- .m_txt3-75,
16055
- .m_txt-3-75 {
16056
- font-size: 3.75rem;
16057
- }
16057
+ .m_txt3-75,
16058
+ .m_txt-3-75 {
16059
+ font-size: 3.75rem;
16060
+ }
16058
16061
 
16059
- .m_txt4,
16060
- .m_txt-4 {
16061
- font-size: 4rem;
16062
- }
16062
+ .m_txt4,
16063
+ .m_txt-4 {
16064
+ font-size: 4rem;
16065
+ }
16063
16066
 
16064
- .m_txt4-25,
16065
- .m_txt-4-25 {
16066
- font-size: 4.25rem;
16067
- }
16067
+ .m_txt4-25,
16068
+ .m_txt-4-25 {
16069
+ font-size: 4.25rem;
16070
+ }
16068
16071
 
16069
- .m_txt4-5,
16070
- .m_txt-4-5 {
16071
- font-size: 4.5rem;
16072
- }
16072
+ .m_txt4-5,
16073
+ .m_txt-4-5 {
16074
+ font-size: 4.5rem;
16075
+ }
16073
16076
 
16074
- .m_txt4-75,
16075
- .m_txt-4-75 {
16076
- font-size: 4.75rem;
16077
- }
16077
+ .m_txt4-75,
16078
+ .m_txt-4-75 {
16079
+ font-size: 4.75rem;
16080
+ }
16078
16081
 
16079
- .m_txt5,
16080
- .m_txt-5 {
16081
- font-size: 5rem;
16082
- }
16082
+ .m_txt5,
16083
+ .m_txt-5 {
16084
+ font-size: 5rem;
16085
+ }
16083
16086
 
16084
- .m_txt5-25,
16085
- .m_txt-5-25 {
16086
- font-size: 5.25rem;
16087
- }
16087
+ .m_txt5-25,
16088
+ .m_txt-5-25 {
16089
+ font-size: 5.25rem;
16090
+ }
16088
16091
 
16089
- .m_txt5-5,
16090
- .m_txt-5-5 {
16091
- font-size: 5.5rem;
16092
- }
16092
+ .m_txt5-5,
16093
+ .m_txt-5-5 {
16094
+ font-size: 5.5rem;
16095
+ }
16093
16096
 
16094
- .m_txt5-75,
16095
- .m_txt-5-75 {
16096
- font-size: 5.75rem;
16097
- }
16097
+ .m_txt5-75,
16098
+ .m_txt-5-75 {
16099
+ font-size: 5.75rem;
16100
+ }
16098
16101
 
16099
- .m_txt6,
16100
- .m_txt-6 {
16101
- font-size: 6rem;
16102
- }
16102
+ .m_txt6,
16103
+ .m_txt-6 {
16104
+ font-size: 6rem;
16105
+ }
16103
16106
 
16104
- .m_txt6-25,
16105
- .m_txt-6-25 {
16106
- font-size: 6.25rem;
16107
- }
16107
+ .m_txt6-25,
16108
+ .m_txt-6-25 {
16109
+ font-size: 6.25rem;
16110
+ }
16108
16111
 
16109
- .m_txt6-5,
16110
- .m_txt-6-5 {
16111
- font-size: 6.5rem;
16112
- }
16112
+ .m_txt6-5,
16113
+ .m_txt-6-5 {
16114
+ font-size: 6.5rem;
16115
+ }
16113
16116
 
16114
- .m_txt6-75,
16115
- .m_txt-6-75 {
16116
- font-size: 6.75rem;
16117
- }
16117
+ .m_txt6-75,
16118
+ .m_txt-6-75 {
16119
+ font-size: 6.75rem;
16120
+ }
16118
16121
 
16119
- .m_txt7,
16120
- .m_txt-7 {
16121
- font-size: 7rem;
16122
- }
16122
+ .m_txt7,
16123
+ .m_txt-7 {
16124
+ font-size: 7rem;
16125
+ }
16123
16126
 
16124
- .m_txt7-25,
16125
- .m_txt-7-25 {
16126
- font-size: 7.25rem;
16127
- }
16127
+ .m_txt7-25,
16128
+ .m_txt-7-25 {
16129
+ font-size: 7.25rem;
16130
+ }
16128
16131
 
16129
- .m_txt7-5,
16130
- .m_txt-7-5 {
16131
- font-size: 7.5rem;
16132
- }
16132
+ .m_txt7-5,
16133
+ .m_txt-7-5 {
16134
+ font-size: 7.5rem;
16135
+ }
16133
16136
 
16134
- .m_txt7-75,
16135
- .m_txt-7-75 {
16136
- font-size: 7.75rem;
16137
- }
16137
+ .m_txt7-75,
16138
+ .m_txt-7-75 {
16139
+ font-size: 7.75rem;
16140
+ }
16138
16141
 
16139
- .m_txt8,
16140
- .m_txt-8 {
16141
- font-size: 8rem;
16142
- }
16142
+ .m_txt8,
16143
+ .m_txt-8 {
16144
+ font-size: 8rem;
16145
+ }
16143
16146
 
16144
- .m_txt8-25,
16145
- .m_txt-8-25 {
16146
- font-size: 8.25rem;
16147
- }
16147
+ .m_txt8-25,
16148
+ .m_txt-8-25 {
16149
+ font-size: 8.25rem;
16150
+ }
16148
16151
 
16149
- .m_txt8-5,
16150
- .m_txt-8-5 {
16151
- font-size: 8.5rem;
16152
- }
16152
+ .m_txt8-5,
16153
+ .m_txt-8-5 {
16154
+ font-size: 8.5rem;
16155
+ }
16153
16156
 
16154
- .m_txt8-75,
16155
- .m_txt-8-75 {
16156
- font-size: 8.75rem;
16157
- }
16157
+ .m_txt8-75,
16158
+ .m_txt-8-75 {
16159
+ font-size: 8.75rem;
16160
+ }
16158
16161
 
16159
- .m_no-margin {
16160
- margin: 0;
16161
- }
16162
+ .m_no-margin {
16163
+ margin: 0;
16164
+ }
16162
16165
 
16163
- .m_txt-gray,
16164
- .m_txtgray {
16165
- color: var(--bgl-gray);
16166
- }
16166
+ .m_txt-gray,
16167
+ .m_txtgray {
16168
+ color: var(--bgl-gray);
16169
+ }
16167
16170
 
16168
- .m_txt-blue,
16169
- .m_txtblue {
16170
- color: var(--bgl-primary);
16171
- }
16171
+ .m_txt-blue,
16172
+ .m_txtblue {
16173
+ color: var(--bgl-primary);
16174
+ }
16172
16175
 
16173
- .m_txt-black,
16174
- .m_txtblack {
16175
- color: var(--bgl-black);
16176
- }
16176
+ .m_txt-black,
16177
+ .m_txtblack {
16178
+ color: var(--bgl-black);
16179
+ }
16177
16180
 
16178
- .m_txt-red,
16179
- .m_txtred {
16180
- color: var(--bgl-red);
16181
- }
16181
+ .m_txt-red,
16182
+ .m_txtred {
16183
+ color: var(--bgl-red);
16184
+ }
16182
16185
 
16183
- .m_txt-white,
16184
- .m_txtwhite {
16185
- color: var(--bgl-white);
16186
- }
16186
+ .m_txt-white,
16187
+ .m_txtwhite {
16188
+ color: var(--bgl-white);
16189
+ }
16187
16190
 
16188
- .m_font-thin,
16189
- .m_txt-thin {
16190
- font-weight: 100;
16191
- }
16191
+ .m_font-thin,
16192
+ .m_txt-thin {
16193
+ font-weight: 100;
16194
+ }
16192
16195
 
16193
- .m_extra-light,
16194
- .m_font-extra-light,
16195
- .m_txt-extra-light,
16196
- .m_font-ultra-light,
16197
- .m_txt-ultra-light {
16198
- font-weight: 200;
16199
- }
16196
+ .m_extra-light,
16197
+ .m_font-extra-light,
16198
+ .m_txt-extra-light,
16199
+ .m_font-ultra-light,
16200
+ .m_txt-ultra-light {
16201
+ font-weight: 200;
16202
+ }
16200
16203
 
16201
- .m_light,
16202
- .m_txt-light,
16203
- .m_font-light {
16204
- font-weight: 300;
16205
- }
16204
+ .m_light,
16205
+ .m_txt-light,
16206
+ .m_font-light {
16207
+ font-weight: 300;
16208
+ }
16206
16209
 
16207
- .m_regular,
16208
- .m_txt-regular,
16209
- .m_font-regular {
16210
- font-weight: 400;
16211
- }
16210
+ .m_regular,
16211
+ .m_txt-regular,
16212
+ .m_font-regular {
16213
+ font-weight: 400;
16214
+ }
16212
16215
 
16213
- .m_medium,
16214
- .m_txt-medium,
16215
- .m_font-medium {
16216
- font-weight: 500;
16217
- }
16216
+ .m_medium,
16217
+ .m_txt-medium,
16218
+ .m_font-medium {
16219
+ font-weight: 500;
16220
+ }
16218
16221
 
16219
- .m_semi,
16220
- .m_semibold,
16221
- .m_txt-semi,
16222
- .m_txt-semibold,
16223
- .m_font-regular,
16224
- .m_font-semi,
16225
- .m_font-semibold {
16226
- font-weight: 600;
16227
- }
16222
+ .m_semi,
16223
+ .m_semibold,
16224
+ .m_txt-semi,
16225
+ .m_txt-semibold,
16226
+ .m_font-regular,
16227
+ .m_font-semi,
16228
+ .m_font-semibold {
16229
+ font-weight: 600;
16230
+ }
16228
16231
 
16229
- .m_bold,
16230
- .m_txt-bold,
16231
- .m_font-bold {
16232
- font-weight: 700;
16233
- }
16232
+ .m_bold,
16233
+ .m_txt-bold,
16234
+ .m_font-bold {
16235
+ font-weight: 700;
16236
+ }
16234
16237
 
16235
- .m_extra-bold,
16236
- .m_font-extra-bold,
16237
- .m_txt-extra-bold,
16238
- .m_font-ultra-bold,
16239
- .m_txt-ultra-bold {
16240
- font-weight: 800;
16241
- }
16238
+ .m_extra-bold,
16239
+ .m_font-extra-bold,
16240
+ .m_txt-extra-bold,
16241
+ .m_font-ultra-bold,
16242
+ .m_txt-ultra-bold {
16243
+ font-weight: 800;
16244
+ }
16242
16245
 
16243
- .m_black,
16244
- .m_font-black {
16245
- font-weight: 900;
16246
- }
16246
+ .m_black,
16247
+ .m_font-black {
16248
+ font-weight: 900;
16249
+ }
16247
16250
 
16248
- .m_line-height-0 {
16249
- line-height: 0;
16250
- }
16251
+ .m_line-height-0 {
16252
+ line-height: 0;
16253
+ }
16251
16254
 
16252
- .m_line-height-01 {
16253
- line-height: 0.1;
16254
- }
16255
+ .m_line-height-01 {
16256
+ line-height: 0.1;
16257
+ }
16255
16258
 
16256
- .m_line-height-02 {
16257
- line-height: 0.2;
16258
- }
16259
+ .m_line-height-02 {
16260
+ line-height: 0.2;
16261
+ }
16259
16262
 
16260
- .m_line-height-03 {
16261
- line-height: 0.3;
16262
- }
16263
+ .m_line-height-03 {
16264
+ line-height: 0.3;
16265
+ }
16263
16266
 
16264
- .m_line-height-04 {
16265
- line-height: 0.4;
16266
- }
16267
+ .m_line-height-04 {
16268
+ line-height: 0.4;
16269
+ }
16267
16270
 
16268
- .m_line-height-05 {
16269
- line-height: 0.5;
16270
- }
16271
+ .m_line-height-05 {
16272
+ line-height: 0.5;
16273
+ }
16271
16274
 
16272
- .m_line-height-06 {
16273
- line-height: 0.6;
16274
- }
16275
+ .m_line-height-06 {
16276
+ line-height: 0.6;
16277
+ }
16275
16278
 
16276
- .m_line-height-07 {
16277
- line-height: 0.7;
16278
- }
16279
+ .m_line-height-07 {
16280
+ line-height: 0.7;
16281
+ }
16279
16282
 
16280
- .m_line-height-08 {
16281
- line-height: 0.8;
16282
- }
16283
+ .m_line-height-08 {
16284
+ line-height: 0.8;
16285
+ }
16283
16286
 
16284
- .m_line-height-09 {
16285
- line-height: 0.9;
16286
- }
16287
+ .m_line-height-09 {
16288
+ line-height: 0.9;
16289
+ }
16287
16290
 
16288
- .m_line-height-1 {
16289
- line-height: 1;
16290
- }
16291
+ .m_line-height-1 {
16292
+ line-height: 1;
16293
+ }
16291
16294
 
16292
- .m_line-height-11 {
16293
- line-height: 1.1;
16294
- }
16295
+ .m_line-height-11 {
16296
+ line-height: 1.1;
16297
+ }
16295
16298
 
16296
- .m_line-height-12 {
16297
- line-height: 1.2;
16298
- }
16299
+ .m_line-height-12 {
16300
+ line-height: 1.2;
16301
+ }
16299
16302
 
16300
- .m_line-height-13 {
16301
- line-height: 1.3;
16302
- }
16303
+ .m_line-height-13 {
16304
+ line-height: 1.3;
16305
+ }
16303
16306
 
16304
- .m_line-height-14 {
16305
- line-height: 1.4;
16306
- }
16307
+ .m_line-height-14 {
16308
+ line-height: 1.4;
16309
+ }
16307
16310
 
16308
- .m_line-height-15 {
16309
- line-height: 1.5;
16310
- }
16311
+ .m_line-height-15 {
16312
+ line-height: 1.5;
16313
+ }
16311
16314
 
16312
- .m_line-height-16 {
16313
- line-height: 1.6;
16314
- }
16315
+ .m_line-height-16 {
16316
+ line-height: 1.6;
16317
+ }
16315
16318
 
16316
- .m_line-height-17 {
16317
- line-height: 1.7;
16318
- }
16319
+ .m_line-height-17 {
16320
+ line-height: 1.7;
16321
+ }
16319
16322
 
16320
- .m_line-height-18 {
16321
- line-height: 1.8;
16322
- }
16323
+ .m_line-height-18 {
16324
+ line-height: 1.8;
16325
+ }
16323
16326
 
16324
- .m_line-height-19 {
16325
- line-height: 1.9;
16326
- }
16327
+ .m_line-height-19 {
16328
+ line-height: 1.9;
16329
+ }
16327
16330
 
16328
- .m_line-height-2 {
16329
- line-height: 2;
16330
- }
16331
+ .m_line-height-2 {
16332
+ line-height: 2;
16333
+ }
16331
16334
 
16332
- .m_line-height-normal {
16333
- line-height: normal;
16334
- }
16335
+ .m_line-height-normal {
16336
+ line-height: normal;
16337
+ }
16335
16338
 
16336
- .m_ellipsis {
16337
- overflow: hidden;
16338
- display: block;
16339
- width: 100%;
16340
- text-overflow: ellipsis;
16341
- }
16339
+ .m_ellipsis {
16340
+ overflow: hidden;
16341
+ display: block;
16342
+ width: 100%;
16343
+ text-overflow: ellipsis;
16344
+ }
16342
16345
 
16343
- .m_ellipsis-1,
16344
- .m_ellipsis-2,
16345
- .m_ellipsis-3,
16346
- .m_ellipsis-4,
16347
- .m_ellipsis-5,
16348
- .m_ellipsis-6 {
16349
- display: block;
16350
- display: -webkit-box;
16351
- max-width: 100%;
16352
- -webkit-box-orient: vertical;
16353
- overflow: hidden;
16354
- text-overflow: ellipsis;
16355
- }
16346
+ .m_ellipsis-1,
16347
+ .m_ellipsis-2,
16348
+ .m_ellipsis-3,
16349
+ .m_ellipsis-4,
16350
+ .m_ellipsis-5,
16351
+ .m_ellipsis-6 {
16352
+ display: block;
16353
+ display: -webkit-box;
16354
+ max-width: 100%;
16355
+ -webkit-box-orient: vertical;
16356
+ overflow: hidden;
16357
+ text-overflow: ellipsis;
16358
+ }
16356
16359
 
16357
- .m_ellipsis-1 {
16358
- -webkit-line-clamp: 1;
16359
- }
16360
+ .m_ellipsis-1 {
16361
+ -webkit-line-clamp: 1;
16362
+ }
16360
16363
 
16361
- .m_ellipsis-2 {
16362
- -webkit-line-clamp: 2;
16363
- }
16364
+ .m_ellipsis-2 {
16365
+ -webkit-line-clamp: 2;
16366
+ }
16364
16367
 
16365
- .m_ellipsis-3 {
16366
- -webkit-line-clamp: 3;
16367
- }
16368
+ .m_ellipsis-3 {
16369
+ -webkit-line-clamp: 3;
16370
+ }
16368
16371
 
16369
- .m_ellipsis-4 {
16370
- -webkit-line-clamp: 4;
16371
- }
16372
+ .m_ellipsis-4 {
16373
+ -webkit-line-clamp: 4;
16374
+ }
16372
16375
 
16373
- .m_ellipsis-5 {
16374
- -webkit-line-clamp: 5;
16375
- }
16376
+ .m_ellipsis-5 {
16377
+ -webkit-line-clamp: 5;
16378
+ }
16376
16379
 
16377
- .m_ellipsis-6 {
16378
- -webkit-line-clamp: 6;
16379
- }
16380
+ .m_ellipsis-6 {
16381
+ -webkit-line-clamp: 6;
16382
+ }
16380
16383
 
16381
- .m_pointer {
16382
- cursor: pointer;
16383
- }
16384
+ .m_pointer {
16385
+ cursor: pointer;
16386
+ }
16384
16387
 
16385
- .m_decoration-none {
16386
- text-decoration: none;
16387
- }
16388
+ .m_decoration-none {
16389
+ text-decoration: none;
16390
+ }
16388
16391
 
16389
- .m_underline,
16390
- .m_decoration-underline {
16391
- text-decoration: underline !important;
16392
- }
16392
+ .m_underline,
16393
+ .m_decoration-underline {
16394
+ text-decoration: underline !important;
16395
+ }
16393
16396
 
16394
- .m_bgl_icon-font {
16395
- font-family: 'Material Symbols Outlined', serif;
16396
- }
16397
+ .m_bgl_icon-font {
16398
+ font-family: 'Material Symbols Outlined', serif;
16399
+ }
16397
16400
 
16398
- .m_nowrap {
16399
- white-space: nowrap;
16400
- }
16401
+ .m_nowrap {
16402
+ white-space: nowrap;
16403
+ }
16401
16404
 
16402
- .m_balance {
16403
- text-wrap: balance;
16404
- }
16405
+ .m_balance {
16406
+ text-wrap: balance;
16407
+ }
16405
16408
 
16406
- .m_pretty {
16407
- text-wrap: pretty;
16408
- }
16409
+ .m_pretty {
16410
+ text-wrap: pretty;
16411
+ }
16409
16412
 
16410
- .m_word-break {
16411
- word-break: break-word;
16412
- }
16413
+ .m_word-break {
16414
+ word-break: break-word;
16415
+ }
16413
16416
 
16414
- .m_word-break-all {
16415
- word-break: break-all;
16416
- }
16417
+ .m_word-break-all {
16418
+ word-break: break-all;
16419
+ }
16417
16420
 
16418
- .m_uppercase {
16419
- text-transform: uppercase;
16420
- }
16421
+ .m_uppercase {
16422
+ text-transform: uppercase;
16423
+ }
16421
16424
 
16422
- .m_lowercase {
16423
- text-transform: lowercase;
16424
- }
16425
+ .m_lowercase {
16426
+ text-transform: lowercase;
16427
+ }
16425
16428
 
16426
- .m_capitalize {
16427
- text-transform: capitalize;
16428
- }
16429
+ .m_capitalize {
16430
+ text-transform: capitalize;
16431
+ }
16429
16432
  }body>div ::-webkit-scrollbar {
16430
16433
  width: var(--bgl-scrollbar-size);
16431
16434
  height: var(--bgl-scrollbar-size);