@bagelink/vue 0.0.318 → 0.0.331

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 (61) hide show
  1. package/dist/components/Badge.vue.d.ts +2 -2
  2. package/dist/components/Badge.vue.d.ts.map +1 -1
  3. package/dist/components/Card.vue.d.ts +2 -2
  4. package/dist/components/ComboBox.vue.d.ts +13 -2
  5. package/dist/components/ComboBox.vue.d.ts.map +1 -1
  6. package/dist/components/ListView.vue.d.ts.map +1 -1
  7. package/dist/components/Modal.vue.d.ts +0 -1
  8. package/dist/components/Modal.vue.d.ts.map +1 -1
  9. package/dist/components/ModalBglForm.vue.d.ts.map +1 -1
  10. package/dist/components/Popover.vue.d.ts +10 -0
  11. package/dist/components/Popover.vue.d.ts.map +1 -0
  12. package/dist/components/form/BglField.vue.d.ts.map +1 -1
  13. package/dist/components/form/BglForm.vue.d.ts +1 -5
  14. package/dist/components/form/BglForm.vue.d.ts.map +1 -1
  15. package/dist/components/form/inputs/DateInput.vue.d.ts +0 -1
  16. package/dist/components/form/inputs/TextArea.vue.d.ts +3 -1
  17. package/dist/components/form/inputs/TextArea.vue.d.ts.map +1 -1
  18. package/dist/components/form/inputs/TextInput.vue.d.ts +2 -0
  19. package/dist/components/form/inputs/TextInput.vue.d.ts.map +1 -1
  20. package/dist/components/formkit/index.d.ts +1 -14
  21. package/dist/components/formkit/index.d.ts.map +1 -1
  22. package/dist/components/index.d.ts +0 -1
  23. package/dist/components/index.d.ts.map +1 -1
  24. package/dist/components/layout/SidebarMenu.vue.d.ts.map +1 -1
  25. package/dist/components/whatsapp/index.d.ts +0 -2
  26. package/dist/components/whatsapp/index.d.ts.map +1 -1
  27. package/dist/index.cjs +419 -569
  28. package/dist/index.d.ts +0 -1
  29. package/dist/index.mjs +419 -569
  30. package/dist/style.css +1815 -331
  31. package/dist/types/BagelForm.d.ts +1 -1
  32. package/dist/types/BagelForm.d.ts.map +1 -1
  33. package/dist/types/materialIcon.d.ts +2 -0
  34. package/dist/types/materialIcon.d.ts.map +1 -0
  35. package/dist/types/materialIcons.d.ts +1 -1
  36. package/dist/types/materialIcons.d.ts.map +1 -1
  37. package/dist/utils/BagelFormUtils.d.ts +23 -0
  38. package/dist/utils/BagelFormUtils.d.ts.map +1 -0
  39. package/dist/utils/index.d.ts +1 -0
  40. package/dist/utils/index.d.ts.map +1 -1
  41. package/package.json +1 -1
  42. package/src/components/Badge.vue +2 -2
  43. package/src/components/Carousel.vue +137 -137
  44. package/src/components/ComboBox.vue +79 -50
  45. package/src/components/ListView.vue +28 -27
  46. package/src/components/Modal.vue +25 -23
  47. package/src/components/form/BglField.vue +33 -48
  48. package/src/components/form/BglForm.vue +65 -49
  49. package/src/components/form/inputs/TextInput.vue +20 -4
  50. package/src/components/index.ts +1 -1
  51. package/src/components/layout/SidebarMenu.vue +4 -5
  52. package/src/components/whatsapp/index.ts +2 -2
  53. package/src/styles/appearance.css +39 -0
  54. package/src/styles/bagel.css +2 -0
  55. package/src/styles/layout.css +112 -6
  56. package/src/styles/mobilLayout.css +1416 -0
  57. package/src/styles/text.css +4 -0
  58. package/src/types/BagelForm.ts +7 -7
  59. package/src/types/materialIcons.ts +1183 -3006
  60. package/src/utils/BagelFormUtils.ts +58 -0
  61. package/src/utils/index.ts +3 -0
package/dist/style.css CHANGED
@@ -611,41 +611,40 @@ a[data-v-0c8d9a95] {
611
611
  max-height: 300px;
612
612
  }
613
613
 
614
- .list-wrap{
615
- grid-template-rows: auto 1fr;
614
+ .list-wrap {
615
+ grid-template-rows: auto 1fr;
616
616
  }
617
617
  .list-item {
618
- padding: 0.5rem 1rem;
619
- min-height: -webkit-fit-content;
620
- min-height: -moz-fit-content;
621
- min-height: fit-content;
622
- margin: 0.25rem 0;
623
- border-radius: 10px;
624
- cursor: pointer;
625
- transition: var(--bgl-transition);
626
- color: var(--bgl-black);
627
- text-decoration: none;
628
- position: relative;
618
+ padding: 0.5rem 1rem;
619
+ min-height: -webkit-fit-content;
620
+ min-height: -moz-fit-content;
621
+ min-height: fit-content;
622
+ margin: 0.25rem 0;
623
+ cursor: pointer;
624
+ transition: var(--bgl-transition);
625
+ color: var(--bgl-black);
626
+ text-decoration: none;
627
+ position: relative;
629
628
  }
630
629
  .list-item::after {
631
- content: "";
632
- position: absolute;
633
- left: 0;
634
- right: 0;
635
- bottom: -0.15rem;
636
- border-bottom: 1px solid var(--border-color);
630
+ content: "";
631
+ position: absolute;
632
+ left: 0;
633
+ right: 0;
634
+ bottom: -0.15rem;
635
+ border-bottom: 1px solid var(--border-color);
637
636
  }
638
637
  .list-item:hover,
639
638
  .list-item.router-link-active {
640
- background-color: var(--bgl-blue-light);
639
+ background-color: var(--bgl-blue-light);
641
640
  }
642
641
  .list-item:active {
643
- -webkit-filter: var(--bgl-hover-filter);
644
- filter: var(--bgl-hover-filter);
642
+ -webkit-filter: var(--bgl-hover-filter);
643
+ filter: var(--bgl-hover-filter);
645
644
  }
646
645
  @media screen and (max-width: 910px) {
647
646
  .list-item {
648
- padding: 0.5rem;
647
+ padding: 0.5rem;
649
648
  }
650
649
  }
651
650
 
@@ -988,32 +987,50 @@ padding: 0.75rem 0.5rem;
988
987
  }
989
988
  .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}
990
989
 
991
- .combobox[data-v-ceeb5855] {
990
+ .combobox[data-v-14fbb20b] {
992
991
  width: 100%;
993
992
  }
994
- .combobox-option[data-v-ceeb5855] {
993
+ .combobox-option[data-v-14fbb20b] {
995
994
  padding: 6px 12px;
996
995
  cursor: pointer;
997
996
  border-radius: 5px;
998
997
  transition: all 0.2s;
999
- display: flex;
998
+ display: grid;
999
+ grid-template-columns: 10px 1fr;
1000
1000
  justify-content: space-between;
1001
1001
  width: 100%;
1002
+ font-size: var(--input-font-size);
1002
1003
  }
1003
- .combobox-options[data-v-ceeb5855] {
1004
+ .combobox-options[data-v-14fbb20b] {
1004
1005
  max-height: 300px;
1005
1006
  overflow-y: auto;
1006
1007
  }
1007
- .combobox-option[data-v-ceeb5855]:hover {
1008
+ .combobox-option[data-v-14fbb20b]:hover {
1008
1009
  background: var(--bgl-gray-20);
1009
1010
  }
1010
1011
 
1012
+ [data-popper-shown]{
1013
+ color: var(--bgl-primary) !important;
1014
+ }
1015
+ .bagel-input label {
1016
+ font-size: var(--label-font-size);
1017
+ }
1011
1018
  .combobox-btn {
1012
1019
  display: flex;
1013
1020
  justify-content: space-between;
1014
1021
  align-items: center;
1015
1022
  height: var(--input-height);
1016
1023
  border-radius: var(--input-border-radius);
1024
+ border: none;
1025
+ background: var(--input-bg);
1026
+ padding: 0.7rem;
1027
+ color: var(--input-color);
1028
+ width: 100%;
1029
+ font-family: inherit;
1030
+ }
1031
+ .combobox-btn:focus {
1032
+ outline: none;
1033
+ box-shadow: inset 0 0 10px #00000012;
1017
1034
  }
1018
1035
  .v-popper__arrow-container {
1019
1036
  display: none;
@@ -1055,7 +1072,7 @@ display: block;
1055
1072
  width: calc(100% - 5rem);
1056
1073
  }
1057
1074
 
1058
- .inline[data-v-ad24530a] {
1075
+ .inline[data-v-10743b06] {
1059
1076
  display: inline;
1060
1077
  }
1061
1078
 
@@ -1103,88 +1120,88 @@ display: block;
1103
1120
  display: block
1104
1121
  }
1105
1122
 
1106
- .blocker[data-v-dc11f21a] {
1107
- position: fixed;
1108
- top: 0;
1109
- left: 0;
1110
- width: 100%;
1111
- height: 100%;
1112
- z-index: 100;
1123
+ .blocker[data-v-7e8d16cb] {
1124
+ position: fixed;
1125
+ top: 0;
1126
+ left: 0;
1127
+ width: 100%;
1128
+ height: 100%;
1129
+ z-index: 100;
1113
1130
  }
1114
- .bgl-slider[data-v-dc11f21a] {
1115
- display: grid;
1116
- position: relative;
1117
- scroll-behavior: smooth;
1118
- grid-auto-flow: column;
1119
- grid-auto-columns: 100%;
1120
- scroll-snap-type: x mandatory;
1121
- overflow-x: hidden;
1131
+ .bgl-slider[data-v-7e8d16cb] {
1132
+ display: grid;
1133
+ position: relative;
1134
+ scroll-behavior: smooth;
1135
+ grid-auto-flow: column;
1136
+ grid-auto-columns: 100%;
1137
+ scroll-snap-type: x mandatory;
1138
+ overflow-x: hidden;
1122
1139
  }
1123
- .autoHeight[data-v-dc11f21a] {
1124
- transition: height ease 0.7s;
1140
+ .autoHeight[data-v-7e8d16cb] {
1141
+ transition: height ease 0.7s;
1125
1142
  }
1126
- .bgl-slider.allowScroll[data-v-dc11f21a] {
1127
- overflow-x: scroll;
1143
+ .bgl-slider.allowScroll[data-v-7e8d16cb] {
1144
+ overflow-x: scroll;
1128
1145
  }
1129
- .bgl-slider.slides-6[data-v-dc11f21a] {
1130
- grid-auto-columns: 15.9%;
1131
- gap: 1%;
1146
+ .bgl-slider.slides-6[data-v-7e8d16cb] {
1147
+ grid-auto-columns: 15.9%;
1148
+ gap: 1%;
1132
1149
  }
1133
- .bgl-slider.slides-5[data-v-dc11f21a] {
1134
- grid-auto-columns: 19.3%;
1135
- gap: 1%;
1150
+ .bgl-slider.slides-5[data-v-7e8d16cb] {
1151
+ grid-auto-columns: 19.3%;
1152
+ gap: 1%;
1136
1153
  }
1137
- .bgl-slider.slides-4[data-v-dc11f21a] {
1138
- grid-auto-columns: 24.3%;
1139
- gap: 1%;
1154
+ .bgl-slider.slides-4[data-v-7e8d16cb] {
1155
+ grid-auto-columns: 24.3%;
1156
+ gap: 1%;
1140
1157
  }
1141
- .bgl-slider.slides-3[data-v-dc11f21a] {
1142
- grid-auto-columns: 33%;
1143
- gap: 1%;
1158
+ .bgl-slider.slides-3[data-v-7e8d16cb] {
1159
+ grid-auto-columns: 33%;
1160
+ gap: 1%;
1144
1161
  }
1145
- .bgl-slider.slides-2[data-v-dc11f21a] {
1146
- grid-auto-columns: 50%;
1147
- gap: 1%;
1162
+ .bgl-slider.slides-2[data-v-7e8d16cb] {
1163
+ grid-auto-columns: 50%;
1164
+ gap: 1%;
1148
1165
  }
1149
- .bgl-slider.slides-1[data-v-dc11f21a] {
1150
- grid-auto-columns: 100%;
1166
+ .bgl-slider.slides-1[data-v-7e8d16cb] {
1167
+ grid-auto-columns: 100%;
1151
1168
  }
1152
- .bgl-slider[data-v-dc11f21a]::-webkit-scrollbar {
1153
- display: none;
1169
+ .bgl-slider[data-v-7e8d16cb]::-webkit-scrollbar {
1170
+ display: none;
1154
1171
  }
1155
- .bgl-slider *[data-v-dc11f21a] {
1156
- scroll-snap-align: start;
1172
+ .bgl-slider *[data-v-7e8d16cb] {
1173
+ scroll-snap-align: start;
1157
1174
  }
1158
- .dragging.bgl-slider[data-v-dc11f21a] {
1159
- cursor: grabbing;
1160
- cursor: -webkit-grabbing;
1161
- scroll-snap-type: unset;
1175
+ .dragging.bgl-slider[data-v-7e8d16cb] {
1176
+ cursor: grabbing;
1177
+ cursor: -webkit-grabbing;
1178
+ scroll-snap-type: unset;
1162
1179
  }
1163
- .clicking.bgl-slider[data-v-dc11f21a] {
1164
- scroll-behavior: unset;
1180
+ .clicking.bgl-slider[data-v-7e8d16cb] {
1181
+ scroll-behavior: unset;
1165
1182
  }
1166
- .dragging.bgl-slider *[data-v-dc11f21a] {
1167
- scroll-snap-align: unset;
1168
- user-select: none;
1183
+ .dragging.bgl-slider *[data-v-7e8d16cb] {
1184
+ scroll-snap-align: unset;
1185
+ user-select: none;
1169
1186
  }
1170
1187
  @media screen and (max-width: 1280px) {
1171
- .bgl-slider.slides-4[data-v-dc11f21a] {
1172
- grid-auto-columns: 33%;
1188
+ .bgl-slider.slides-4[data-v-7e8d16cb] {
1189
+ grid-auto-columns: 33%;
1173
1190
  }
1174
1191
  }
1175
1192
  @media screen and (max-width: 991px) {
1176
- .bgl-slider.slides-4[data-v-dc11f21a] {
1177
- grid-auto-columns: 50%;
1193
+ .bgl-slider.slides-4[data-v-7e8d16cb] {
1194
+ grid-auto-columns: 50%;
1178
1195
  }
1179
1196
  }
1180
1197
  @media screen and (max-width: 600px) {
1181
- .bgl-slider.slides-4[data-v-dc11f21a] {
1182
- grid-auto-columns: 100%;
1198
+ .bgl-slider.slides-4[data-v-7e8d16cb] {
1199
+ grid-auto-columns: 100%;
1183
1200
  }
1184
1201
  }
1185
1202
 
1186
1203
  .del-top {
1187
- transform: translateY(-2.6rem);
1204
+ transform: translateY(-2.6rem);
1188
1205
  }
1189
1206
 
1190
1207
  :root {
@@ -1812,61 +1829,68 @@ to {
1812
1829
  min-width: unset !important;
1813
1830
  /* width: auto; */
1814
1831
  }
1832
+ .bagel-input label {
1833
+ font-size: var(--label-font-size);
1834
+ }
1815
1835
 
1816
- .bagel-input textarea[data-v-bdd555bb] {
1836
+ .bagel-input textarea[data-v-cd4c27ad] {
1817
1837
  min-height: unset;
1838
+ font-size: var(--input-font-size);
1818
1839
  }
1819
- .bagel-input.text-input textarea[data-v-bdd555bb] {
1840
+ .bagel-input.text-input textarea[data-v-cd4c27ad] {
1820
1841
  resize: none;
1821
1842
  }
1822
- .code textarea[data-v-bdd555bb] {
1843
+ .code textarea[data-v-cd4c27ad] {
1823
1844
  font-family: 'Inconsolata', monospace;
1824
1845
  background: var(--bgl-black) !important;
1825
1846
  color: var(--bgl-white) !important;
1826
1847
  }
1827
- .bagel-input.toggleEdit[data-v-bdd555bb]:hover {
1848
+ .bagel-input.toggleEdit[data-v-cd4c27ad]:hover {
1828
1849
  background-color: var(--input-bg);
1829
1850
  }
1830
- .bagel-input.small[data-v-bdd555bb] {
1851
+ .bagel-input.small[data-v-cd4c27ad] {
1831
1852
  margin-bottom: 0;
1832
1853
  height: 30px;
1833
1854
  }
1834
- .bagel-input.dense label[data-v-bdd555bb] {
1855
+ .bagel-input.dense label[data-v-cd4c27ad] {
1835
1856
  display: flex;
1836
1857
  align-items: center;
1837
1858
  gap: 0.5rem;
1838
1859
  }
1839
- .toggleEditBtn[data-v-bdd555bb] {
1860
+ .bagel-input label[data-v-cd4c27ad] {
1861
+ font-size: var(--label-font-size);
1862
+ }
1863
+ .toggleEditBtn[data-v-cd4c27ad] {
1840
1864
  position: absolute;
1841
1865
  right: -24px;
1842
1866
  top: 4;
1843
1867
  opacity: 0;
1844
1868
  }
1845
- .textInputIconWrap[data-v-bdd555bb] {
1869
+ .textInputIconWrap[data-v-cd4c27ad] {
1846
1870
  position: relative;
1847
1871
  }
1848
- .textInputIconWrap .bgl_icon-font[data-v-bdd555bb] {
1872
+ .textInputIconWrap .bgl_icon-font[data-v-cd4c27ad] {
1849
1873
  position: absolute;
1850
1874
  inset-inline-end: 0.7rem;
1851
1875
  bottom: 50%;
1852
1876
  line-height: 0;
1853
1877
  color: var(--bgl-gray);
1854
1878
  }
1855
- .txtInputIconStart .iconStart[data-v-bdd555bb] {
1879
+ .txtInputIconStart .iconStart[data-v-cd4c27ad] {
1856
1880
  position: absolute;
1857
1881
  inset-inline-start: 0.7rem;
1858
1882
  top: 50%;
1859
1883
  line-height: 0;
1860
1884
  color: var(--bgl-gray);
1861
1885
  }
1862
- .txtInputIconStart textarea[data-v-bdd555bb] {
1886
+ .txtInputIconStart textarea[data-v-cd4c27ad] {
1863
1887
  padding-inline-start: 2rem;
1864
1888
  }
1865
- .bagel-input:hover .toggleEditBtn[data-v-bdd555bb],
1866
- .bagel-input.editMode .toggleEditBtn[data-v-bdd555bb] {
1889
+ .bagel-input:hover .toggleEditBtn[data-v-cd4c27ad],
1890
+ .bagel-input.editMode .toggleEditBtn[data-v-cd4c27ad] {
1867
1891
  opacity: 1;
1868
1892
  }
1869
- .bagel-input.small textarea[data-v-bdd555bb] {
1893
+ .bagel-input.small textarea[data-v-cd4c27ad] {
1870
1894
  height: 30px;
1871
1895
  }
1872
1896
 
@@ -2224,79 +2248,6 @@ img.preview[data-v-1be8d7b1] {
2224
2248
  }
2225
2249
  }
2226
2250
 
2227
- .btn-end[data-v-208db149] {
2228
- text-align: end;
2229
- }
2230
- .whatsapp-preview[data-v-208db149] {
2231
- direction: ltr;
2232
- width: 400px;
2233
- padding: 1rem;
2234
- height: auto;
2235
- margin-top: 1rem;
2236
- /* border-left: 1px solid var(--border-color); */
2237
- margin-left: 20px;
2238
- position: sticky;
2239
- top: 15px;
2240
- flex: 1 1 40%;
2241
- }
2242
- .whatsapp-wrap[data-v-208db149] {
2243
- display: flex;
2244
- gap: 1rem;
2245
- max-width: 1200px;
2246
- overflow: auto;
2247
- height: 100%;
2248
- }
2249
- .create-template-form[data-v-208db149] {
2250
- flex: 1 0 50%;
2251
- min-width: 300px;
2252
- }
2253
- .whatsapp-msg[data-v-208db149] {
2254
- background: var(--whatsapp-green);
2255
- border-radius: 0.5rem;
2256
- border-start-start-radius: 0px;
2257
- padding: 10px;
2258
- line-height: 1.5;
2259
- margin-top: 1rem;
2260
- filter: drop-shadow(0 0px 2px var(--bgl-shadow));
2261
- position: relative;
2262
- min-height: 30px;
2263
- }
2264
- .whatsapp-msg[data-v-208db149]::after {
2265
- content: '';
2266
- inset-inline-start: -5px;
2267
- border-radius: 0.1rem;
2268
- transform: skew(45deg);
2269
- top: 0;
2270
- height: 8px;
2271
- width: 8px;
2272
- background: var(--whatsapp-green);
2273
- position: absolute;
2274
- }
2275
- .whatsapp-body[data-v-208db149] {
2276
- margin: 2px 0;
2277
- }
2278
- .whatsapp-footer[data-v-208db149] {
2279
- margin: 0;
2280
- opacity: 0.6;
2281
- font-size: 0.8rem;
2282
- }
2283
- .whatsappHebrew[data-v-208db149] {
2284
- direction: rtl;
2285
- }
2286
- .whatsappHebrew .whatsapp-msg[data-v-208db149]::after {
2287
- transform: skew(-45deg);
2288
- }
2289
- @media screen and (max-width: 1200px) {
2290
- .whatsapp-preview[data-v-208db149] {
2291
- width: 300px;
2292
- }
2293
- }
2294
- @media screen and (max-width: 910px) {
2295
- .whatsapp-preview[data-v-208db149] {
2296
- display: none;
2297
- }
2298
- }
2299
-
2300
2251
  .layout {
2301
2252
  min-height: 100px;
2302
2253
  display: grid;
@@ -2312,11 +2263,11 @@ img.preview[data-v-1be8d7b1] {
2312
2263
  .wideNav .nav-button .bgl_btn-flex {
2313
2264
  justify-content: flex-start !important;
2314
2265
  }
2315
-
2316
- .nav-button.router-link-active[data-v-67b81581] {
2317
- background-color: #40b884 !important;
2266
+ .nav-button.router-link-active {
2267
+ background-color: var(--bgl-primary-tint) !important;
2318
2268
  }
2319
- .bgl_sidebar[data-v-67b81581] {
2269
+
2270
+ .bgl_sidebar[data-v-8d6bd3d8] {
2320
2271
  background-color: var(--bgl-primary);
2321
2272
  color: var(--bgl-white);
2322
2273
  overflow: hidden;
@@ -2326,22 +2277,22 @@ img.preview[data-v-1be8d7b1] {
2326
2277
  padding: 0.5rem;
2327
2278
  overflow-y: auto;
2328
2279
  }
2329
- .wideNav .toggleNav[data-v-67b81581] {
2280
+ .wideNav .toggleNav[data-v-8d6bd3d8] {
2330
2281
  transform: rotate(180deg);
2331
2282
  }
2332
- .wideNav .nav-button[data-v-67b81581] {
2283
+ .wideNav .nav-button[data-v-8d6bd3d8] {
2333
2284
  padding-inline-start: 1rem !important;
2334
2285
  width: 100%;
2335
2286
  }
2336
- .nav-button.bgl_btn-icon[data-v-67b81581] {
2287
+ .nav-button.bgl_btn-icon[data-v-8d6bd3d8] {
2337
2288
  border-radius: var(--btn-border-radius) !important;
2338
2289
  }
2339
- .nav-button p[data-v-67b81581] {
2290
+ .nav-button p[data-v-8d6bd3d8] {
2340
2291
  transition: var(--nav-tran);
2341
- animation: fade-67b81581 2s;
2292
+ animation: fade-8d6bd3d8 2s;
2342
2293
  animation-duration: 900ms;
2343
2294
  }
2344
- @keyframes fade-67b81581 {
2295
+ @keyframes fade-8d6bd3d8 {
2345
2296
  0% {
2346
2297
  opacity: 0;
2347
2298
  transform: translateX(-20px);
@@ -2457,8 +2408,10 @@ img.preview[data-v-1be8d7b1] {
2457
2408
  min-height: 100%;
2458
2409
  }
2459
2410
  .w-100,
2460
- .w100 {
2411
+ .width-100 {
2461
2412
  width: 100%;
2413
+ max-width: 100px;
2414
+
2462
2415
  }
2463
2416
  .w300,
2464
2417
  .w350,
@@ -2469,15 +2422,38 @@ img.preview[data-v-1be8d7b1] {
2469
2422
  .w600,
2470
2423
  .w650,
2471
2424
  .w700,
2425
+ .w750,
2472
2426
  .w770,
2427
+ .w800,
2428
+ .w850,
2473
2429
  .w900,
2430
+ .w950,
2474
2431
  .w970,
2432
+ .w1000,
2475
2433
  .w1030,
2476
- .w1170 {
2434
+ .w1050,
2435
+ .w1100,
2436
+ .w1150,
2437
+ .w1170,
2438
+ .w1200,
2439
+ .w1250,
2440
+ .w1300,
2441
+ .w1350,
2442
+ .w1400,
2443
+ .w1450,
2444
+ .w1500,
2445
+ .w1550,
2446
+ .w1600 {
2477
2447
  margin-inline-start: auto;
2478
2448
  margin-inline-end: auto;
2479
2449
  width: 98%;
2480
2450
  }
2451
+ .w100 {
2452
+ max-width: 100px;
2453
+ }
2454
+ .w200 {
2455
+ max-width: 200px;
2456
+ }
2481
2457
  .w300 {
2482
2458
  max-width: 300px;
2483
2459
  }
@@ -2502,24 +2478,75 @@ img.preview[data-v-1be8d7b1] {
2502
2478
  .w650 {
2503
2479
  max-width: 650px;
2504
2480
  }
2505
- .w650 {
2481
+ .w700 {
2506
2482
  max-width: 700px;
2507
2483
  }
2484
+ .w750 {
2485
+ max-width: 750px;
2486
+ }
2508
2487
  .w770 {
2509
2488
  max-width: 770px;
2510
2489
  }
2490
+ .w800 {
2491
+ max-width: 800px;
2492
+ }
2493
+ .w850 {
2494
+ max-width: 850px;
2495
+ }
2511
2496
  .w900 {
2512
2497
  max-width: 900px;
2513
2498
  }
2499
+ .w950 {
2500
+ max-width: 950px;
2501
+ }
2514
2502
  .w970 {
2515
2503
  max-width: 970px;
2516
2504
  }
2505
+ .w1000 {
2506
+ max-width: 1000px;
2507
+ }
2517
2508
  .w1030 {
2518
2509
  max-width: 1030px;
2519
2510
  }
2511
+ .w1050 {
2512
+ max-width: 1050px;
2513
+ }
2514
+ .w1100 {
2515
+ max-width: 1100px;
2516
+ }
2517
+ .w1150 {
2518
+ max-width: 1150px;
2519
+ }
2520
2520
  .w1170 {
2521
2521
  max-width: 1170px;
2522
2522
  }
2523
+ .w1200 {
2524
+ max-width: 1200px;
2525
+ }
2526
+ .w1250 {
2527
+ max-width: 1250px;
2528
+ }
2529
+ .w1300 {
2530
+ max-width: 1300px;
2531
+ }
2532
+ .w1350 {
2533
+ max-width: 1350px;
2534
+ }
2535
+ .w1400 {
2536
+ max-width: 1400px;
2537
+ }
2538
+ .w1450 {
2539
+ max-width: 1450px;
2540
+ }
2541
+ .w1500 {
2542
+ max-width: 1500px;
2543
+ }
2544
+ .w1550 {
2545
+ max-width: 1550px;
2546
+ }
2547
+ .w1600 {
2548
+ max-width: 1600px;
2549
+ }
2523
2550
  .w-all,
2524
2551
  .wall {
2525
2552
  width: -webkit-fill-available;
@@ -3157,7 +3184,7 @@ img.preview[data-v-1be8d7b1] {
3157
3184
  position: relative;
3158
3185
  }
3159
3186
  .absolute {
3160
- position: absolute;
3187
+ position: absolute !important;
3161
3188
  }
3162
3189
  .flex {
3163
3190
  display: flex;
@@ -3178,8 +3205,11 @@ img.preview[data-v-1be8d7b1] {
3178
3205
  display: block;
3179
3206
  width: 100%;
3180
3207
  }
3181
- .flex-wrap {
3182
- flex-wrap: wrap;
3208
+ .inline {
3209
+ display: inline;
3210
+ }
3211
+ .inline-block {
3212
+ display: inline-block;
3183
3213
  }
3184
3214
  .flex-end {
3185
3215
  justify-content: flex-end;
@@ -3438,6 +3468,11 @@ img.preview[data-v-1be8d7b1] {
3438
3468
  .overflow-y-hidden {
3439
3469
  overflow-y: hidden;
3440
3470
  }
3471
+ .line {
3472
+ background: var(--border-color);
3473
+ height: 1px;
3474
+ width: 100%;
3475
+ }
3441
3476
  @media screen and (max-width: 910px) {
3442
3477
  .grid-wrap-2 {
3443
3478
  grid-template-columns: repeat(1, 1fr);
@@ -3467,149 +3502,1565 @@ img.preview[data-v-1be8d7b1] {
3467
3502
  grid-template-columns: repeat(4, 1fr);
3468
3503
  }
3469
3504
  }
3470
- input,
3471
- textarea,
3472
- select {
3473
- font-family: inherit;
3474
- width: 100%;
3475
- }
3476
- .bagel-input {
3477
- position: relative;
3478
- display: flex;
3479
- flex-direction: column;
3480
- text-align: start;
3481
- margin-bottom: 0.5rem;
3482
- width: 100%;
3483
- color: var(--bgl-black);
3484
- }
3485
- .bagel-input::placeholder .bagel-input label {
3486
- display: block;
3487
- font-size: var(--label-font-size);
3488
- margin-bottom: 2px;
3489
- line-height: 1.3;
3490
- }
3491
- .bagel-input::placeholder {
3492
- color: var(--placeholder-color);
3493
- }
3494
- .bagel-input label {
3495
- color: var(--label-color);
3496
- }
3497
- .bagel-input input,
3498
- .bagel-input select,
3499
- .custom-select .input {
3500
- height: var(--input-height);
3501
- font-size: var(--input-font-size);
3502
- }
3503
- .bagel-input input,
3504
- .bagel-input textarea,
3505
- .bagel-input select,
3506
- .custom-select .input {
3507
- background: var(--input-bg);
3508
- border: none;
3509
- padding: 0.7rem;
3510
- border-radius: var(--input-border-radius);
3511
- color: var(--input-color);
3512
- min-width: calc(var(--input-height) * 3);
3513
- width: 100%;
3514
- }
3515
- .bagel-input input::placeholder,
3516
- .bagel-input textarea::placeholder,
3517
- .bagel-input select::placeholder,
3518
- .custom-select .input::placeholder {
3519
- color: var(--placeholder-color);
3520
- }
3521
- .bagel-input.search-wrap {
3522
- display: flex;
3523
- flex-direction: row;
3524
- align-items: center;
3525
- }
3526
- .bagel-input.search-wrap input {
3527
- padding-inline-end: 2rem;
3528
- }
3529
- .bagel-input.search-wrap .bgl_icon-font {
3530
- margin-inline-start: -1.75rem;
3531
- }
3532
- .bagel-input select {
3533
- height: var(--input-height);
3534
- }
3535
- .bagel-input textarea {
3536
- resize: vertical;
3537
- min-height: calc(var(--input-height) * 3);
3538
- line-height: 1.5;
3539
- }
3540
- .bagel-input.wider input {
3541
- min-width: 320px;
3542
- }
3543
- .bagel-input input[type="radio"] {
3544
- padding: 0;
3545
- width: fit-content;
3546
- }
3547
- .bagel-input:focus-within label {
3548
- color: var(--bgl-primary);
3549
- }
3550
- .bagel-input select.no-edit,
3551
- .bagel-input input.no-edit,
3552
- .bagel-input textarea.no-edit,
3553
- .bagel-input .switch.no-edit {
3554
- pointer-events: none;
3555
- outline: none;
3556
- }
3557
- .bagel-input label.active {
3558
- color: var(--bgl-primary);
3559
- }
3560
- .inline-80 {
3561
- display: inline-block;
3562
- width: 80%;
3563
- }
3564
- .inline-20 {
3565
- display: inline-block;
3566
- width: 20%;
3567
- }
3568
- .inline-10 {
3569
- display: inline-block;
3570
- width: 20%;
3571
- }
3572
- .inline-50 {
3573
- display: inline-block;
3574
- width: 49%;
3575
- margin: 0 0.5%;
3576
- }
3577
- .custom-select .input {
3578
- height: var(--input-height);
3579
- font-size: var(--input-font-size);
3580
- }
3581
- .custom-select .input {
3582
- background: var(--input-bg);
3583
- border: none;
3584
- padding: 0.7rem;
3585
- border-radius: var(--input-border-radius);
3586
- color: var(--input-color);
3587
- min-width: calc(var(--input-height) * 3);
3588
- width: 100%;
3589
- }
3590
- .input.active,
3591
- .bagel-input input:focus-visible,
3592
- .bagel-input select:focus-visible,
3593
- .bagel-input textarea:focus-visible {
3594
- outline: none;
3595
- box-shadow: inset 0 0 10px #00000012;
3596
- }
3597
- .bagel-input input[type="number"]::-webkit-inner-spin-button,
3598
- .bagel-input input[type="number"]::-webkit-outer-spin-button {
3599
- -webkit-appearance: none;
3600
- }
3601
- .label-count-0 label {
3602
- display: none;
3603
- }
3604
- .label-count-0 button.bgl_btn.bgl_flatBtn {
3605
- margin-right: 5px;
3606
- }
3607
- .label-count-0 button.bgl_btn.bgl_flatBtn:hover {
3608
- background: var(--bgl-hover-filter);
3609
- }
3610
- .bagel-input input[type="color"] {
3611
- padding: 0.025rem 0.05rem;
3612
- display: block;
3505
+ @media screen and (max-width: 910px) {
3506
+ .m_block {
3507
+ display: block !important;
3508
+ }
3509
+
3510
+ .m_inline {
3511
+ display: inline !important;
3512
+ }
3513
+
3514
+ .m_inline-block {
3515
+ display: inline-block !important;
3516
+ }
3517
+
3518
+ .m_flex {
3519
+ display: flex !important;
3520
+ }
3521
+
3522
+ .m_grid {
3523
+ display: grid !important;
3524
+ }
3525
+
3526
+ .m_none {
3527
+ display: none !important;
3528
+ }
3529
+
3530
+ .m_w-100 {
3531
+ width: 100% !important;
3532
+ }
3533
+
3534
+ .m_inline-grid {
3535
+ display: inline-grid;
3536
+ }
3537
+
3538
+ .m_fill {
3539
+ width: 100vw;
3540
+ height: 100vh;
3541
+ }
3542
+
3543
+ .m_justify-items-center {
3544
+ justify-items: center;
3545
+ }
3546
+
3547
+ .m_justify-content-center {
3548
+ justify-content: center;
3549
+ }
3550
+
3551
+ .m_justify-content-start {
3552
+ justify-content: start;
3553
+ }
3554
+
3555
+ .m_align-content-center {
3556
+ align-content: center;
3557
+ }
3558
+
3559
+ .m_align-items-top {
3560
+ align-items: flex-start !important;
3561
+ }
3562
+
3563
+ .m_align-items-center {
3564
+ align-items: center;
3565
+ }
3566
+
3567
+ .m_align-items-end {
3568
+ align-items: end !important;
3569
+ }
3570
+
3571
+ .m_fit-content {
3572
+ width: fit-content;
3573
+ height: fit-content;
3574
+ }
3575
+
3576
+ .m_auto-flow-columns {
3577
+ grid-auto-flow: column;
3578
+ }
3579
+
3580
+ .m_grid-2-col {
3581
+ grid-template-columns: 1fr 1fr;
3582
+ }
3583
+
3584
+ .m_justify-content-between {
3585
+ justify-content: space-between;
3586
+ }
3587
+
3588
+ .m_justify-self-start {
3589
+ justify-self: start;
3590
+ }
3591
+
3592
+ .m_columns-max-content {
3593
+ grid-auto-columns: max-content;
3594
+ }
3595
+
3596
+ .m_rows-max-content {
3597
+ grid-auto-rows: max-content;
3598
+ }
3599
+
3600
+ .m_grid.overflow>* {
3601
+ min-width: 0px;
3602
+ overflow: auto;
3603
+ }
3604
+
3605
+ .m_justify-content-around {
3606
+ justify-content: space-between;
3607
+ }
3608
+
3609
+ .m_justify-content-end {
3610
+ justify-content: end;
3611
+ }
3612
+
3613
+ .m_justify-self-end {
3614
+ justify-self: end;
3615
+ }
3616
+
3617
+ .m_justify-self-center {
3618
+ justify-self: center;
3619
+ }
3620
+
3621
+ .m_position-start {
3622
+ position: absolute;
3623
+ top: 0px;
3624
+ inset-inline-start: 0px;
3625
+ }
3626
+
3627
+ .m_position-end {
3628
+ position: absolute;
3629
+ top: 0px;
3630
+ inset-inline-end: 0px;
3631
+ }
3632
+
3633
+ .m_position-absolute {
3634
+ position: absolute;
3635
+ }
3636
+
3637
+ .m_position-relative {
3638
+ position: relative;
3639
+ }
3640
+
3641
+ .m_auto-flow-rows {
3642
+ grid-auto-flow: row;
3643
+ }
3644
+
3645
+ .m_align-items-start {
3646
+ align-items: start !important;
3647
+ }
3648
+
3649
+ .m_align-self-end {
3650
+ align-self: end;
3651
+ }
3652
+
3653
+ .min-100,
3654
+ .m_min100 {
3655
+ min-height: 100%;
3656
+ }
3657
+
3658
+ .m_w-100,
3659
+ .m_width-100 {
3660
+ width: 100%;
3661
+ max-width: 100px;
3662
+
3663
+ }
3664
+
3665
+ .m_w300,
3666
+ .m_w350,
3667
+ .m_w400,
3668
+ .m_w450,
3669
+ .m_w500,
3670
+ .m_w550,
3671
+ .m_w600,
3672
+ .m_w650,
3673
+ .m_w700,
3674
+ .m_w750,
3675
+ .m_w770,
3676
+ .m_w800,
3677
+ .m_w850,
3678
+ .m_w900 {
3679
+ margin-inline-start: auto;
3680
+ margin-inline-end: auto;
3681
+ width: 98%;
3682
+ }
3683
+
3684
+ .m_w100 {
3685
+ max-width: 100px;
3686
+ }
3687
+
3688
+ .m_w200 {
3689
+ max-width: 200px;
3690
+ }
3691
+
3692
+ .m_w300 {
3693
+ max-width: 300px;
3694
+ }
3695
+
3696
+ .m_w350 {
3697
+ max-width: 350px;
3698
+ }
3699
+
3700
+ .m_w400 {
3701
+ max-width: 400px;
3702
+ }
3703
+
3704
+ .m_w450 {
3705
+ max-width: 450px;
3706
+ }
3707
+
3708
+ .m_w500 {
3709
+ max-width: 500px;
3710
+ }
3711
+
3712
+ .m_w550 {
3713
+ max-width: 550px;
3714
+ }
3715
+
3716
+ .m_w600 {
3717
+ max-width: 600px;
3718
+ }
3719
+
3720
+ .m_w650 {
3721
+ max-width: 650px;
3722
+ }
3723
+
3724
+ .m_w700 {
3725
+ max-width: 700px;
3726
+ }
3727
+
3728
+ .m_w750 {
3729
+ max-width: 750px;
3730
+ }
3731
+
3732
+ .m_w770 {
3733
+ max-width: 770px;
3734
+ }
3735
+
3736
+ .m_w800 {
3737
+ max-width: 800px;
3738
+ }
3739
+
3740
+ .m_w850 {
3741
+ max-width: 850px;
3742
+ }
3743
+
3744
+ .m_w-all,
3745
+ .m_wall {
3746
+ width: -webkit-fill-available;
3747
+ }
3748
+
3749
+ .m_h-all,
3750
+ .m_hall {
3751
+ height: -webkit-fill-available;
3752
+ }
3753
+
3754
+ .m_gap-0 {
3755
+ gap: 0;
3756
+ }
3757
+
3758
+ .m_gap-025 {
3759
+ gap: 0.25rem;
3760
+ }
3761
+
3762
+ .m_gap-05 {
3763
+ gap: 0.5rem;
3764
+ }
3765
+
3766
+ .m_gap-075 {
3767
+ gap: 0.75rem;
3768
+ }
3769
+
3770
+ .m_gap-1 {
3771
+ gap: 1rem;
3772
+ }
3773
+
3774
+ .m_gap-2 {
3775
+ gap: 2rem;
3776
+ }
3777
+
3778
+ .m_gap-3 {
3779
+ gap: 3rem;
3780
+ }
3781
+
3782
+ .m_gap-4 {
3783
+ gap: 4rem;
3784
+ }
3785
+
3786
+ .m_gap-5 {
3787
+ gap: 5rem;
3788
+ }
3789
+
3790
+ .m_gap-col-0,
3791
+ .m_col-gap-0 {
3792
+ column-gap: 0rem;
3793
+ }
3794
+
3795
+ .m_gap-col-025,
3796
+ .m_col-gap-025 {
3797
+ column-gap: 0.25rem;
3798
+ }
3799
+
3800
+ .m_gap-col-05,
3801
+ .m_col-gap-05 {
3802
+ column-gap: 0.5rem;
3803
+ }
3804
+
3805
+ .m_gap-col-075,
3806
+ .m_col-gap-075 {
3807
+ column-gap: 0.75rem;
3808
+ }
3809
+
3810
+ .m_gap-col-1,
3811
+ .m_col-gap-1 {
3812
+ column-gap: 1rem;
3813
+ }
3814
+
3815
+ .m_gap-col-2,
3816
+ .m_col-gap-2 {
3817
+ column-gap: 2rem;
3818
+ }
3819
+
3820
+ .m_gap-col-3,
3821
+ .m_col-gap-3 {
3822
+ column-gap: 3rem;
3823
+ }
3824
+
3825
+ .m_gap-col-4,
3826
+ .m_col-gap-4 {
3827
+ column-gap: 4rem;
3828
+ }
3829
+
3830
+ .m_gap-col-5,
3831
+ .m_col-gap-5 {
3832
+ column-gap: 5rem;
3833
+ }
3834
+
3835
+ .m_gap-row-0,
3836
+ .m_row-gap-0 {
3837
+ row-gap: 0rem;
3838
+ }
3839
+
3840
+ .m_gap-row-025,
3841
+ .m_row-gap-025 {
3842
+ row-gap: 0.25rem;
3843
+ }
3844
+
3845
+ .m_gap-row-05,
3846
+ .m_row-gap-05 {
3847
+ row-gap: 0.5rem;
3848
+ }
3849
+
3850
+ .m_gap-row-075,
3851
+ .m_row-gap-075 {
3852
+ row-gap: 0.75rem;
3853
+ }
3854
+
3855
+ .m_gap-row-1,
3856
+ .m_row-gap-1 {
3857
+ row-gap: 1rem;
3858
+ }
3859
+
3860
+ .m_gap-row-2,
3861
+ .m_row-gap-2 {
3862
+ row-gap: 2rem;
3863
+ }
3864
+
3865
+ .m_gap-row-3,
3866
+ .m_row-gap-3 {
3867
+ row-gap: 3rem;
3868
+ }
3869
+
3870
+ .m_gap-row-4,
3871
+ .m_row-gap-4 {
3872
+ row-gap: 4rem;
3873
+ }
3874
+
3875
+ .m_gap-row-5,
3876
+ .m_row-gap-5 {
3877
+ row-gap: 5rem;
3878
+ }
3879
+
3880
+ .m_flex-wrap {
3881
+ flex-wrap: wrap;
3882
+ }
3883
+
3884
+ .m_column {
3885
+ flex-direction: column;
3886
+ }
3887
+
3888
+ .m_row {
3889
+ flex-direction: row;
3890
+ }
3891
+
3892
+ .m_flex-grow {
3893
+ flex-grow: 1;
3894
+ }
3895
+
3896
+ .m_flex-shrink {
3897
+ flex-shrink: 1;
3898
+ }
3899
+
3900
+ .m_flex-2-col {
3901
+ max-width: 50%;
3902
+ flex: 1 1 calc(50% - 2rem);
3903
+ }
3904
+
3905
+ .m_flex-3-col {
3906
+ flex: 1 1 33.33333%;
3907
+ }
3908
+
3909
+ .m_mb-auto {
3910
+ margin-bottom: auto !important;
3911
+ }
3912
+
3913
+ .m_mb-0 {
3914
+ margin-bottom: 0rem !important;
3915
+ }
3916
+
3917
+ .m_mb-025 {
3918
+ margin-bottom: 0.25rem !important;
3919
+ }
3920
+
3921
+ .m_mb-05 {
3922
+ margin-bottom: 0.5rem !important;
3923
+ }
3924
+
3925
+ .m_mb-075 {
3926
+ margin-bottom: 0.75rem !important;
3927
+ }
3928
+
3929
+ .m_mb-1 {
3930
+ margin-bottom: 1rem !important;
3931
+ }
3932
+
3933
+ .m_mb-2 {
3934
+ margin-bottom: 2rem !important;
3935
+ }
3936
+
3937
+ .m_mb-3 {
3938
+ margin-bottom: 3rem !important;
3939
+ }
3940
+
3941
+ .m_mb-4 {
3942
+ margin-bottom: 4rem !important;
3943
+ }
3944
+
3945
+ .m_mt-auto {
3946
+ margin-top: auto !important;
3947
+ }
3948
+
3949
+ .m_mt-0 {
3950
+ margin-top: 0rem !important;
3951
+ }
3952
+
3953
+ .m_mt-025 {
3954
+ margin-top: 0.25rem !important;
3955
+ }
3956
+
3957
+ .m_mt-05 {
3958
+ margin-top: 0.5rem !important;
3959
+ }
3960
+
3961
+ .m_mt-075 {
3962
+ margin-top: 0.75rem !important;
3963
+ }
3964
+
3965
+ .m_mt-1 {
3966
+ margin-top: 1rem !important;
3967
+ }
3968
+
3969
+ .m_mt-2 {
3970
+ margin-top: 2rem !important;
3971
+ }
3972
+
3973
+ .m_mt-3 {
3974
+ margin-top: 3rem !important;
3975
+ }
3976
+
3977
+ .m_mt-4 {
3978
+ margin-top: 4rem !important;
3979
+ }
3980
+
3981
+ .m_my-auto {
3982
+ margin-top: auto !important;
3983
+ margin-bottom: auto !important;
3984
+ }
3985
+
3986
+ .m_my-0 {
3987
+ margin-top: 0rem !important;
3988
+ margin-bottom: 0rem !important;
3989
+ }
3990
+
3991
+ .m_my-025 {
3992
+ margin-top: 0.25rem !important;
3993
+ margin-bottom: 0.25rem !important;
3994
+ }
3995
+
3996
+ .m_my-05 {
3997
+ margin-top: 0.5rem !important;
3998
+ margin-bottom: 0.5rem !important;
3999
+ }
4000
+
4001
+ .m_my-075 {
4002
+ margin-top: 0.75rem !important;
4003
+ margin-bottom: 0.75rem !important;
4004
+ }
4005
+
4006
+ .m_my-1 {
4007
+ margin-top: 1rem !important;
4008
+ margin-bottom: 1rem !important;
4009
+ }
4010
+
4011
+ .m_my-2 {
4012
+ margin-top: 2rem !important;
4013
+ margin-bottom: 2rem !important;
4014
+ }
4015
+
4016
+ .m_my-3 {
4017
+ margin-top: 3rem !important;
4018
+ margin-bottom: 3rem !important;
4019
+ }
4020
+
4021
+ .m_my-4 {
4022
+ margin-top: 4rem !important;
4023
+ margin-bottom: 4rem !important;
4024
+ }
4025
+
4026
+ .m_ms-auto {
4027
+ margin-inline-start: auto !important;
4028
+ }
4029
+
4030
+ .m_ms-0 {
4031
+ margin-inline-start: 0rem !important;
4032
+ }
4033
+
4034
+ .m_ms-025 {
4035
+ margin-inline-start: 0.25rem !important;
4036
+ }
4037
+
4038
+ .m_ms-05 {
4039
+ margin-inline-start: 0.5rem !important;
4040
+ }
4041
+
4042
+ .m_ms-075 {
4043
+ margin-inline-start: 0.75rem !important;
4044
+ }
4045
+
4046
+ .m_ms-1 {
4047
+ margin-inline-start: 1rem !important;
4048
+ }
4049
+
4050
+ .m_ms-2 {
4051
+ margin-inline-start: 2rem !important;
4052
+ }
4053
+
4054
+ .m_ms-3 {
4055
+ margin-inline-start: 3rem !important;
4056
+ }
4057
+
4058
+ .m_ms-4 {
4059
+ margin-inline-start: 4rem !important;
4060
+ }
4061
+
4062
+ .m_me-auto {
4063
+ margin-inline-end: auto !important;
4064
+ }
4065
+
4066
+ .m_me-0 {
4067
+ margin-inline-end: 0rem !important;
4068
+ }
4069
+
4070
+ .m_me-025 {
4071
+ margin-inline-end: 0.25rem !important;
4072
+ }
4073
+
4074
+ .m_me-05 {
4075
+ margin-inline-end: 0.5rem !important;
4076
+ }
4077
+
4078
+ .m_me-075 {
4079
+ margin-inline-end: 0.75rem !important;
4080
+ }
4081
+
4082
+ .m_me-1 {
4083
+ margin-inline-end: 1rem !important;
4084
+ }
4085
+
4086
+ .m_me-2 {
4087
+ margin-inline-end: 2rem !important;
4088
+ }
4089
+
4090
+ .m_me-3 {
4091
+ margin-inline-end: 3rem !important;
4092
+ }
4093
+
4094
+ .m_me-4 {
4095
+ margin-inline-end: 4rem !important;
4096
+ }
4097
+
4098
+ .mx-auto,
4099
+ .m_margin-auto {
4100
+ margin-inline-start: auto !important;
4101
+ margin-inline-end: auto !important;
4102
+ }
4103
+
4104
+ .m_mx-0 {
4105
+ margin-inline-start: 0rem !important;
4106
+ margin-inline-end: 0rem !important;
4107
+ }
4108
+
4109
+ .m_mx-025 {
4110
+ margin-inline-start: 0.25rem !important;
4111
+ margin-inline-end: 0.25rem !important;
4112
+ }
4113
+
4114
+ .m_mx-05 {
4115
+ margin-inline-start: 0.5rem !important;
4116
+ margin-inline-end: 0.5rem !important;
4117
+ }
4118
+
4119
+ .m_mx-075 {
4120
+ margin-inline-start: 0.75rem !important;
4121
+ margin-inline-end: 0.75rem !important;
4122
+ }
4123
+
4124
+ .m_mx-1 {
4125
+ margin-inline-start: 1rem !important;
4126
+ margin-inline-end: 1rem !important;
4127
+ }
4128
+
4129
+ .m_mx-2 {
4130
+ margin-inline-start: 2rem !important;
4131
+ margin-inline-end: 2rem !important;
4132
+ }
4133
+
4134
+ .m_mx-3 {
4135
+ margin-inline-start: 3rem !important;
4136
+ margin-inline-end: 3rem !important;
4137
+ }
4138
+
4139
+ .m_mx-4 {
4140
+ margin-inline-start: 4rem !important;
4141
+ margin-inline-end: 4rem !important;
4142
+ }
4143
+
4144
+ .m_m-auto {
4145
+ margin: auto !important;
4146
+ }
4147
+
4148
+ .m_m-0 {
4149
+ margin: 0rem !important;
4150
+ }
4151
+
4152
+ .m_m-025 {
4153
+ margin: 0.25rem !important;
4154
+ }
4155
+
4156
+ .m_m-05 {
4157
+ margin: 0.5rem !important;
4158
+ }
4159
+
4160
+ .m_m-075 {
4161
+ margin: 0.75rem !important;
4162
+ }
4163
+
4164
+ .m_m-1 {
4165
+ margin: 1rem !important;
4166
+ }
4167
+
4168
+ .m_m-2 {
4169
+ margin: 2rem !important;
4170
+ }
4171
+
4172
+ .m_m-3 {
4173
+ margin: 3rem !important;
4174
+ }
4175
+
4176
+ .m_m-4 {
4177
+ margin: 4rem !important;
4178
+ }
4179
+
4180
+ .m_-mb-025 {
4181
+ margin-bottom: -0.25rem !important;
4182
+ }
4183
+
4184
+ .m_-mb-05 {
4185
+ margin-bottom: -0.5rem !important;
4186
+ }
4187
+
4188
+ .m_-mb-075 {
4189
+ margin-bottom: -0.75rem !important;
4190
+ }
4191
+
4192
+ .m_-mb-1 {
4193
+ margin-bottom: -1rem !important;
4194
+ }
4195
+
4196
+ .m_-mb-2 {
4197
+ margin-bottom: -2rem !important;
4198
+ }
4199
+
4200
+ .m_-mb-3 {
4201
+ margin-bottom: -3rem !important;
4202
+ }
4203
+
4204
+ .m_-mb-4 {
4205
+ margin-bottom: -4rem !important;
4206
+ }
4207
+
4208
+ .m_-mt-025 {
4209
+ margin-top: -0.25rem !important;
4210
+ }
4211
+
4212
+ .m_-mt-05 {
4213
+ margin-top: -0.5rem !important;
4214
+ }
4215
+
4216
+ .m_-mt-075 {
4217
+ margin-top: 0.75rem !important;
4218
+ }
4219
+
4220
+ .m_-mt-1 {
4221
+ margin-top: -1rem !important;
4222
+ }
4223
+
4224
+ .m_-mt-2 {
4225
+ margin-top: -2rem !important;
4226
+ }
4227
+
4228
+ .m_-mt-3 {
4229
+ margin-top: -3rem !important;
4230
+ }
4231
+
4232
+ .m_-mt-4 {
4233
+ margin-top: -4rem !important;
4234
+ }
4235
+
4236
+ .m_-my-025 {
4237
+ margin-top: -0.25rem !important;
4238
+ margin-bottom: -0.25rem !important;
4239
+ }
4240
+
4241
+ .m_-my-05 {
4242
+ margin-top: -0.5rem !important;
4243
+ margin-bottom: -0.5rem !important;
4244
+ }
4245
+
4246
+ .m_-my-075 {
4247
+ margin-top: 0.75rem !important;
4248
+ margin-bottom: 0.75rem !important;
4249
+ }
4250
+
4251
+ .m_-my-1 {
4252
+ margin-top: -1rem !important;
4253
+ margin-bottom: -1rem !important;
4254
+ }
4255
+
4256
+ .m_-my-2 {
4257
+ margin-top: -2rem !important;
4258
+ margin-bottom: -2rem !important;
4259
+ }
4260
+
4261
+ .m_-my-3 {
4262
+ margin-top: -3rem !important;
4263
+ margin-bottom: -3rem !important;
4264
+ }
4265
+
4266
+ .m_-my-4 {
4267
+ margin-top: -4rem !important;
4268
+ margin-bottom: -4rem !important;
4269
+ }
4270
+
4271
+ .m_-ms-025 {
4272
+ margin-inline-start: -0.25rem !important;
4273
+ }
4274
+
4275
+ .m_-ms-05 {
4276
+ margin-inline-start: -0.5rem !important;
4277
+ }
4278
+
4279
+ .m_-ms-075 {
4280
+ margin-inline-start: -0.75rem !important;
4281
+ }
4282
+
4283
+ .m_-ms-1 {
4284
+ margin-inline-start: -1rem !important;
4285
+ }
4286
+
4287
+ .m_-ms-2 {
4288
+ margin-inline-start: -2rem !important;
4289
+ }
4290
+
4291
+ .m_-ms-3 {
4292
+ margin-inline-start: -3rem !important;
4293
+ }
4294
+
4295
+ .m_-ms-4 {
4296
+ margin-inline-start: -4rem !important;
4297
+ }
4298
+
4299
+ .m_-me-025 {
4300
+ margin-inline-end: -0.25rem !important;
4301
+ }
4302
+
4303
+ .m_-me-05 {
4304
+ margin-inline-end: -0.5rem !important;
4305
+ }
4306
+
4307
+ .m_-me-075 {
4308
+ margin-inline-end: -0.75rem !important;
4309
+ }
4310
+
4311
+ .m_-me-1 {
4312
+ margin-inline-end: -1rem !important;
4313
+ }
4314
+
4315
+ .m_-me-2 {
4316
+ margin-inline-end: -2rem !important;
4317
+ }
4318
+
4319
+ .m_-me-3 {
4320
+ margin-inline-end: -3rem !important;
4321
+ }
4322
+
4323
+ .m_-me-4 {
4324
+ margin-inline-end: -4rem !important;
4325
+ }
4326
+
4327
+ .m_pb-0 {
4328
+ padding-bottom: 0rem !important;
4329
+ }
4330
+
4331
+ .m_pb-1 {
4332
+ padding-bottom: 1rem !important;
4333
+ }
4334
+
4335
+ .m_pb-2 {
4336
+ padding-bottom: 2rem !important;
4337
+ }
4338
+
4339
+ .m_pb-3 {
4340
+ padding-bottom: 3rem !important;
4341
+ }
4342
+
4343
+ .m_pb-4 {
4344
+ padding-bottom: 4rem !important;
4345
+ }
4346
+
4347
+ .m_pb-075 {
4348
+ padding-bottom: 0.75rem !important;
4349
+ }
4350
+
4351
+ .m_pb-05 {
4352
+ padding-bottom: 0.5rem !important;
4353
+ }
4354
+
4355
+ .m_pb-025 {
4356
+ padding-bottom: 0.25rem !important;
4357
+ }
4358
+
4359
+ .m_pt-0 {
4360
+ padding-top: 0rem !important;
4361
+ }
4362
+
4363
+ .m_pt-1 {
4364
+ padding-top: 1rem !important;
4365
+ }
4366
+
4367
+ .m_pt-2 {
4368
+ padding-top: 2rem !important;
4369
+ }
4370
+
4371
+ .m_pt-3 {
4372
+ padding-top: 3rem !important;
4373
+ }
4374
+
4375
+ .m_pt-4 {
4376
+ padding-top: 4rem !important;
4377
+ }
4378
+
4379
+ .m_pt-075 {
4380
+ padding-top: 0.75rem !important;
4381
+ }
4382
+
4383
+ .m_pt-05 {
4384
+ padding-top: 0.5rem !important;
4385
+ }
4386
+
4387
+ .m_pt-025 {
4388
+ padding-top: 0.25rem !important;
4389
+ }
4390
+
4391
+ .m_ps-0 {
4392
+ padding-inline-start: 0rem !important;
4393
+ }
4394
+
4395
+ .m_ps-1 {
4396
+ padding-inline-start: 1rem !important;
4397
+ }
4398
+
4399
+ .m_ps-2 {
4400
+ padding-inline-start: 2rem !important;
4401
+ }
4402
+
4403
+ .m_ps-3 {
4404
+ padding-inline-start: 3rem !important;
4405
+ }
4406
+
4407
+ .m_ps-4 {
4408
+ padding-inline-start: 4rem !important;
4409
+ }
4410
+
4411
+ .m_ps-075 {
4412
+ padding-inline-start: 0.75rem !important;
4413
+ }
4414
+
4415
+ .m_ps-05 {
4416
+ padding-inline-start: 0.5rem !important;
4417
+ }
4418
+
4419
+ .m_ps-025 {
4420
+ padding-inline-start: 0.25rem !important;
4421
+ }
4422
+
4423
+ .m_pe-0 {
4424
+ padding-inline-end: 0rem !important;
4425
+ }
4426
+
4427
+ .m_pe-1 {
4428
+ padding-inline-end: 1rem !important;
4429
+ }
4430
+
4431
+ .m_pe-2 {
4432
+ padding-inline-end: 2rem !important;
4433
+ }
4434
+
4435
+ .m_pe-3 {
4436
+ padding-inline-end: 3rem !important;
4437
+ }
4438
+
4439
+ .m_pe-4 {
4440
+ padding-inline-end: 4rem !important;
4441
+ }
4442
+
4443
+ .m_pe-075 {
4444
+ padding-inline-end: 0.75rem !important;
4445
+ }
4446
+
4447
+ .m_pe-05 {
4448
+ padding-inline-end: 0.5rem !important;
4449
+ }
4450
+
4451
+ .m_pe-025 {
4452
+ padding-inline-end: 0.25rem !important;
4453
+ }
4454
+
4455
+ .m_px-0 {
4456
+ padding-inline-end: 0rem !important;
4457
+ padding-inline-start: 0rem !important;
4458
+ }
4459
+
4460
+ .m_px-1 {
4461
+ padding-inline-end: 1rem !important;
4462
+ padding-inline-start: 1rem !important;
4463
+ }
4464
+
4465
+ .m_px-2 {
4466
+ padding-inline-end: 2rem !important;
4467
+ padding-inline-start: 2rem !important;
4468
+ }
4469
+
4470
+ .m_px-3 {
4471
+ padding-inline-end: 3rem !important;
4472
+ padding-inline-start: 3rem !important;
4473
+ }
4474
+
4475
+ .m_px-4 {
4476
+ padding-inline-end: 4rem !important;
4477
+ padding-inline-start: 4rem !important;
4478
+ }
4479
+
4480
+ .m_px-075 {
4481
+ padding-inline-end: 0.75rem !important;
4482
+ padding-inline-start: 0.75rem !important;
4483
+ }
4484
+
4485
+ .m_px-05 {
4486
+ padding-inline-end: 0.5rem !important;
4487
+ padding-inline-start: 0.5rem !important;
4488
+ }
4489
+
4490
+ .m_px-025 {
4491
+ padding-inline-end: 0.25rem !important;
4492
+ padding-inline-start: 0.25rem !important;
4493
+ }
4494
+
4495
+ .m_py-0 {
4496
+ padding-top: 0rem !important;
4497
+ padding-bottom: 0rem !important;
4498
+ }
4499
+
4500
+ .m_py-1 {
4501
+ padding-top: 1rem !important;
4502
+ padding-bottom: 1rem !important;
4503
+ }
4504
+
4505
+ .m_py-2 {
4506
+ padding-top: 2rem !important;
4507
+ padding-bottom: 2rem !important;
4508
+ }
4509
+
4510
+ .m_py-3 {
4511
+ padding-top: 3rem !important;
4512
+ padding-bottom: 3rem !important;
4513
+ }
4514
+
4515
+ .m_py-4 {
4516
+ padding-top: 4rem !important;
4517
+ padding-bottom: 4rem !important;
4518
+ }
4519
+
4520
+ .m_py-075 {
4521
+ padding-top: 0.75rem !important;
4522
+ padding-bottom: 0.75rem !important;
4523
+ }
4524
+
4525
+ .m_py-05 {
4526
+ padding-top: 0.5rem !important;
4527
+ padding-bottom: 0.5rem !important;
4528
+ }
4529
+
4530
+ .m_py-025 {
4531
+ padding-top: 0.25rem !important;
4532
+ padding-bottom: 0.25rem !important;
4533
+ }
4534
+
4535
+ .m_p-0 {
4536
+ padding: 0rem !important;
4537
+ }
4538
+
4539
+ .m_p-1 {
4540
+ padding: 1rem !important;
4541
+ }
4542
+
4543
+ .m_p-2 {
4544
+ padding: 2rem !important;
4545
+ }
4546
+
4547
+ .m_p-3 {
4548
+ padding: 3rem !important;
4549
+ }
4550
+
4551
+ .m_p-4 {
4552
+ padding: 4rem !important;
4553
+ }
4554
+
4555
+ .m_p-075 {
4556
+ padding: 0.75rem !important;
4557
+ }
4558
+
4559
+ .m_p-05 {
4560
+ padding: 0.5rem !important;
4561
+ }
4562
+
4563
+ .m_p-025 {
4564
+ padding: 0.25rem !important;
4565
+ }
4566
+
4567
+ .m_relative {
4568
+ position: relative;
4569
+ }
4570
+
4571
+ .m_absolute {
4572
+ position: absolute !important;
4573
+ }
4574
+
4575
+ .m_flex-stretch {
4576
+ display: flex;
4577
+ align-items: stretch;
4578
+ }
4579
+
4580
+ .m_flex-end {
4581
+ justify-content: flex-end;
4582
+ }
4583
+
4584
+ .m_space-between {
4585
+ justify-content: space-between;
4586
+ }
4587
+
4588
+ .m_label {
4589
+ display: block;
4590
+ font-size: var(--label-font-size);
4591
+ margin-bottom: 2px;
4592
+ line-height: 1.3;
4593
+ color: var(--label-color);
4594
+ }
4595
+
4596
+ .m_h-10 {
4597
+ height: 10%;
4598
+ }
4599
+
4600
+ .m_vh-10 {
4601
+ height: 10vh;
4602
+ }
4603
+
4604
+ .m_h-10px {
4605
+ height: 10px;
4606
+ }
4607
+
4608
+ .m_hm-10px {
4609
+ max-height: 10px;
4610
+ }
4611
+
4612
+
4613
+ .m_h-20 {
4614
+ height: 20%;
4615
+ }
4616
+
4617
+ .m_vh-20 {
4618
+ height: 20vh;
4619
+ }
4620
+
4621
+ .m_h-20px {
4622
+ height: 20px;
4623
+ }
4624
+
4625
+ .m_hm-20px {
4626
+ max-height: 20px;
4627
+ }
4628
+
4629
+ .m_h-30 {
4630
+ height: 30%;
4631
+ }
4632
+
4633
+ .m_vh-30 {
4634
+ height: 30vh;
4635
+ }
4636
+
4637
+ .m_h-30px {
4638
+ height: 30px;
4639
+ }
4640
+
4641
+ .m_hm-30px {
4642
+ max-height: 30px;
4643
+ }
4644
+
4645
+ .m_h-40 {
4646
+ height: 40%;
4647
+ }
4648
+
4649
+ .m_vh-40 {
4650
+ height: 40vh;
4651
+ }
4652
+
4653
+ .m_h-40px {
4654
+ height: 40px;
4655
+ }
4656
+
4657
+ .m_hm-40px {
4658
+ max-height: 40px;
4659
+ }
4660
+
4661
+ .m_h-50 {
4662
+ height: 50%;
4663
+ }
4664
+
4665
+ .m_vh-50 {
4666
+ height: 50vh;
4667
+ }
4668
+
4669
+ .m_h-50px {
4670
+ height: 50px;
4671
+ }
4672
+
4673
+ .m_hm-50px {
4674
+ max-height: 50px;
4675
+ }
4676
+
4677
+ .m_h-60 {
4678
+ height: 60%;
4679
+ }
4680
+
4681
+ .m_vh-60 {
4682
+ height: 60vh;
4683
+ }
4684
+
4685
+ .m_h-60px {
4686
+ height: 60px;
4687
+ }
4688
+
4689
+ .m_hm-60px {
4690
+ max-height: 60px;
4691
+ }
4692
+
4693
+ .m_h-70 {
4694
+ height: 70%;
4695
+ }
4696
+
4697
+ .m_vh-70 {
4698
+ height: 70vh;
4699
+ }
4700
+
4701
+ .m_h-70px {
4702
+ height: 70px;
4703
+ }
4704
+
4705
+ .m_hm-70px {
4706
+ max-height: 70px;
4707
+ }
4708
+
4709
+ .m_h-80 {
4710
+ height: 80%;
4711
+ }
4712
+
4713
+ .m_vh-80 {
4714
+ height: 80vh;
4715
+ }
4716
+
4717
+ .m_h-80px {
4718
+ height: 80px;
4719
+ }
4720
+
4721
+ .m_hm-80px {
4722
+ max-height: 80px;
4723
+ }
4724
+
4725
+ .m_h-90 {
4726
+ height: 90%;
4727
+ }
4728
+
4729
+ .m_vh-90 {
4730
+ height: 90vh;
4731
+ }
4732
+
4733
+ .m_h-90px {
4734
+ height: 90px;
4735
+ }
4736
+
4737
+ .m_hm-90px {
4738
+ max-height: 90px;
4739
+ }
4740
+
4741
+
4742
+ .m_h-100 {
4743
+ height: 100%;
4744
+ }
4745
+
4746
+ .m_vh-100 {
4747
+ height: 100vh;
4748
+ }
4749
+
4750
+ .m_h-100px {
4751
+ height: 100px;
4752
+ }
4753
+
4754
+ .m_hm-100px {
4755
+ max-height: 100px;
4756
+ }
4757
+
4758
+ .m_h-150 {
4759
+ height: 150%;
4760
+ }
4761
+
4762
+ .m_vh-150 {
4763
+ height: 150vh;
4764
+ }
4765
+
4766
+ .m_h-150px {
4767
+ height: 150px;
4768
+ }
4769
+
4770
+ .m_hm-150px {
4771
+ max-height: 150px;
4772
+ }
4773
+
4774
+ .m_h-200 {
4775
+ height: 200%;
4776
+ }
4777
+
4778
+ .m_vh-200 {
4779
+ height: 200vh;
4780
+ }
4781
+
4782
+ .m_h-200px {
4783
+ height: 200px;
4784
+ }
4785
+
4786
+ .m_hm-200px {
4787
+ max-height: 200px;
4788
+ }
4789
+
4790
+ .m_h-300 {
4791
+ height: 300%;
4792
+ }
4793
+
4794
+ .m_vh-300 {
4795
+ height: 300vh;
4796
+ }
4797
+
4798
+ .m_h-300px {
4799
+ height: 300px;
4800
+ }
4801
+
4802
+ .m_hm-300px {
4803
+ max-height: 300px;
4804
+ }
4805
+
4806
+ .m_h-400 {
4807
+ height: 400%;
4808
+ }
4809
+
4810
+ .m_vh-400 {
4811
+ height: 400vh;
4812
+ }
4813
+
4814
+ .m_h-400px {
4815
+ height: 400px;
4816
+ }
4817
+
4818
+ .m_hm-400px {
4819
+ max-height: 400px;
4820
+ }
4821
+
4822
+ .m_h-500 {
4823
+ height: 500%;
4824
+ }
4825
+
4826
+ .m_vh-500 {
4827
+ height: 500vh;
4828
+ }
4829
+
4830
+ .m_h-500px {
4831
+ height: 500px;
4832
+ }
4833
+
4834
+ .m_hm-500px {
4835
+ max-height: 500px;
4836
+ }
4837
+
4838
+ .m_h-600 {
4839
+ height: 600%;
4840
+ }
4841
+
4842
+ .m_vh-600 {
4843
+ height: 600vh;
4844
+ }
4845
+
4846
+ .m_h-600px {
4847
+ height: 600px;
4848
+ }
4849
+
4850
+ .m_hm-600px {
4851
+ max-height: 600px;
4852
+ }
4853
+
4854
+
4855
+ .m_layout-h-100 {
4856
+ height: 100vh;
4857
+ overflow-y: hidden;
4858
+ }
4859
+
4860
+ .m_grid-wrap-1 {
4861
+ grid-template-columns: repeat(1, 1fr);
4862
+ height: max-content;
4863
+ }
4864
+
4865
+ .m_grid-wrap-2 {
4866
+ grid-template-columns: repeat(2, 1fr);
4867
+ height: max-content;
4868
+ }
4869
+
4870
+ .m_grid-wrap-3 {
4871
+ grid-template-columns: repeat(3, 1fr);
4872
+ height: max-content;
4873
+ }
4874
+
4875
+ .m_grid-wrap-4 {
4876
+ grid-template-columns: repeat(4, 1fr);
4877
+ height: max-content;
4878
+
4879
+ }
4880
+
4881
+ .m_grid-wrap-5 {
4882
+ grid-template-columns: repeat(5, 1fr);
4883
+ height: max-content;
4884
+ }
4885
+
4886
+ .m_grid-wrap-6 {
4887
+ grid-template-columns: repeat(6, 1fr);
4888
+ height: max-content;
4889
+ }
4890
+
4891
+ .m_grid-wrap-7 {
4892
+ grid-template-columns: repeat(7, 1fr);
4893
+ height: max-content;
4894
+ }
4895
+
4896
+ .m_grid-wrap-8 {
4897
+ grid-template-columns: repeat(8, 1fr);
4898
+ height: max-content;
4899
+ }
4900
+
4901
+ .m_overflow-hidden {
4902
+ overflow: hidden;
4903
+ }
4904
+
4905
+ .m_overflow-x {
4906
+ overflow-x: auto;
4907
+ }
4908
+
4909
+ .m_overflow-y {
4910
+ overflow-y: auto;
4911
+ }
4912
+
4913
+ .m_overflow-x-hidden {
4914
+ overflow-x: hidden;
4915
+ }
4916
+
4917
+ .m_overflow-y-hidden {
4918
+ overflow-y: hidden;
4919
+ }
4920
+ }
4921
+ input,
4922
+ textarea,
4923
+ select {
4924
+ font-family: inherit;
4925
+ width: 100%;
4926
+ }
4927
+ .bagel-input {
4928
+ position: relative;
4929
+ display: flex;
4930
+ flex-direction: column;
4931
+ text-align: start;
4932
+ margin-bottom: 0.5rem;
4933
+ width: 100%;
4934
+ color: var(--bgl-black);
4935
+ }
4936
+ .bagel-input::placeholder .bagel-input label {
4937
+ display: block;
4938
+ font-size: var(--label-font-size);
4939
+ margin-bottom: 2px;
4940
+ line-height: 1.3;
4941
+ }
4942
+ .bagel-input::placeholder {
4943
+ color: var(--placeholder-color);
4944
+ }
4945
+ .bagel-input label {
4946
+ color: var(--label-color);
4947
+ }
4948
+ .bagel-input input,
4949
+ .bagel-input select,
4950
+ .custom-select .input {
4951
+ height: var(--input-height);
4952
+ font-size: var(--input-font-size);
4953
+ }
4954
+ .bagel-input input,
4955
+ .bagel-input textarea,
4956
+ .bagel-input select,
4957
+ .custom-select .input {
4958
+ background: var(--input-bg);
4959
+ border: none;
4960
+ padding: 0.7rem;
4961
+ border-radius: var(--input-border-radius);
4962
+ color: var(--input-color);
4963
+ min-width: calc(var(--input-height) * 3);
4964
+ width: 100%;
4965
+ }
4966
+ .bagel-input input::placeholder,
4967
+ .bagel-input textarea::placeholder,
4968
+ .bagel-input select::placeholder,
4969
+ .custom-select .input::placeholder {
4970
+ color: var(--placeholder-color);
4971
+ }
4972
+ .bagel-input.search-wrap {
4973
+ display: flex;
4974
+ flex-direction: row;
4975
+ align-items: center;
4976
+ }
4977
+ .bagel-input.search-wrap input {
4978
+ padding-inline-end: 2rem;
4979
+ }
4980
+ .bagel-input.search-wrap .bgl_icon-font {
4981
+ margin-inline-start: -1.75rem;
4982
+ }
4983
+ .bagel-input select {
4984
+ height: var(--input-height);
4985
+ }
4986
+ .bagel-input textarea {
4987
+ resize: vertical;
4988
+ min-height: calc(var(--input-height) * 3);
4989
+ line-height: 1.5;
4990
+ }
4991
+ .bagel-input.wider input {
4992
+ min-width: 320px;
4993
+ }
4994
+ .bagel-input input[type="radio"] {
4995
+ padding: 0;
4996
+ width: fit-content;
4997
+ }
4998
+ .bagel-input:focus-within label {
4999
+ color: var(--bgl-primary);
5000
+ }
5001
+ .bagel-input select.no-edit,
5002
+ .bagel-input input.no-edit,
5003
+ .bagel-input textarea.no-edit,
5004
+ .bagel-input .switch.no-edit {
5005
+ pointer-events: none;
5006
+ outline: none;
5007
+ }
5008
+ .bagel-input label.active {
5009
+ color: var(--bgl-primary);
5010
+ }
5011
+ .inline-80 {
5012
+ display: inline-block;
5013
+ width: 80%;
5014
+ }
5015
+ .inline-20 {
5016
+ display: inline-block;
5017
+ width: 20%;
5018
+ }
5019
+ .inline-10 {
5020
+ display: inline-block;
5021
+ width: 20%;
5022
+ }
5023
+ .inline-50 {
5024
+ display: inline-block;
5025
+ width: 49%;
5026
+ margin: 0 0.5%;
5027
+ }
5028
+ .custom-select .input {
5029
+ height: var(--input-height);
5030
+ font-size: var(--input-font-size);
5031
+ }
5032
+ .custom-select .input {
5033
+ background: var(--input-bg);
5034
+ border: none;
5035
+ padding: 0.7rem;
5036
+ border-radius: var(--input-border-radius);
5037
+ color: var(--input-color);
5038
+ min-width: calc(var(--input-height) * 3);
5039
+ width: 100%;
5040
+ }
5041
+ .input.active,
5042
+ .bagel-input input:focus-visible,
5043
+ .bagel-input select:focus-visible,
5044
+ .bagel-input textarea:focus-visible {
5045
+ outline: none;
5046
+ box-shadow: inset 0 0 10px #00000012;
5047
+ }
5048
+ .bagel-input input[type="number"]::-webkit-inner-spin-button,
5049
+ .bagel-input input[type="number"]::-webkit-outer-spin-button {
5050
+ -webkit-appearance: none;
5051
+ }
5052
+ .label-count-0 label {
5053
+ display: none;
5054
+ }
5055
+ .label-count-0 button.bgl_btn.bgl_flatBtn {
5056
+ margin-right: 5px;
5057
+ }
5058
+ .label-count-0 button.bgl_btn.bgl_flatBtn:hover {
5059
+ background: var(--bgl-hover-filter);
5060
+ }
5061
+ .bagel-input input[type="color"] {
5062
+ padding: 0.025rem 0.05rem;
5063
+ display: block;
3613
5064
  width: var(--input-height);
3614
5065
  height: var(--input-height);
3615
5066
  border: none;
@@ -3825,6 +5276,9 @@ select {
3825
5276
  .bgl_icon-font {
3826
5277
  font-family: "Material Symbols Outlined", serif;
3827
5278
  }
5279
+ .nowrap {
5280
+ white-space: nowrap;
5281
+ }
3828
5282
  @media screen and (max-width: 910px) {
3829
5283
 
3830
5284
  .txt20,
@@ -3958,6 +5412,36 @@ select {
3958
5412
  min-width: 220px;
3959
5413
  }
3960
5414
  }
5415
+ .opacity-1 {
5416
+ opacity: 0.1;
5417
+ }
5418
+ .opacity-2 {
5419
+ opacity: 0.2;
5420
+ }
5421
+ .opacity-3 {
5422
+ opacity: 0.3;
5423
+ }
5424
+ .opacity-4 {
5425
+ opacity: 0.4;
5426
+ }
5427
+ .opacity-5 {
5428
+ opacity: 0.5;
5429
+ }
5430
+ .opacity-6 {
5431
+ opacity: 0.6;
5432
+ }
5433
+ .opacity-7 {
5434
+ opacity: 0.7;
5435
+ }
5436
+ .opacity-8 {
5437
+ opacity: 0.8;
5438
+ }
5439
+ .opacity-9 {
5440
+ opacity: 0.9;
5441
+ }
5442
+ .opacity-10 {
5443
+ opacity: 1;
5444
+ }
3961
5445
  /* @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@300;400;500;600;700&display=swap"); */
3962
5446
  /*noinspection CssUnknownTarget*/
3963
5447
  :root {