@bagelink/vue 0.0.322 → 0.0.335
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/ComboBox.vue.d.ts.map +1 -1
- package/dist/components/MaterialIcon.vue.d.ts +4 -2
- package/dist/components/MaterialIcon.vue.d.ts.map +1 -1
- package/dist/components/Modal.vue.d.ts +0 -1
- package/dist/components/ModalBglForm.vue.d.ts.map +1 -1
- package/dist/components/Popover.vue.d.ts +10 -0
- package/dist/components/Popover.vue.d.ts.map +1 -0
- package/dist/components/form/BglForm.vue.d.ts +1 -9
- package/dist/components/form/BglForm.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/DateInput.vue.d.ts +0 -1
- package/dist/components/form/inputs/SelectInput.vue.d.ts +22 -16
- package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/TextArea.vue.d.ts +3 -1
- package/dist/components/form/inputs/TextArea.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/TextInput.vue.d.ts.map +1 -1
- package/dist/components/formkit/index.d.ts +1 -14
- package/dist/components/formkit/index.d.ts.map +1 -1
- package/dist/components/index.d.ts +0 -2
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/layout/Layout.vue.d.ts +8 -0
- package/dist/components/layout/Layout.vue.d.ts.map +1 -1
- package/dist/components/layout/SidebarMenu.vue.d.ts.map +1 -1
- package/dist/components/layout/TabbedLayout.vue.d.ts +38 -0
- package/dist/components/layout/TabbedLayout.vue.d.ts.map +1 -0
- package/dist/components/layout/Tabs.vue.d.ts +24 -0
- package/dist/components/layout/Tabs.vue.d.ts.map +1 -0
- package/dist/components/layout/TabsBody.vue.d.ts +21 -0
- package/dist/components/layout/TabsBody.vue.d.ts.map +1 -0
- package/dist/components/layout/TabsNav.vue.d.ts +25 -0
- package/dist/components/layout/TabsNav.vue.d.ts.map +1 -0
- package/dist/components/layout/index.d.ts +4 -0
- package/dist/components/layout/index.d.ts.map +1 -1
- package/dist/components/layout/tabsManager.d.ts +4 -0
- package/dist/components/layout/tabsManager.d.ts.map +1 -0
- package/dist/index.cjs +783 -2035
- package/dist/index.d.ts +0 -1
- package/dist/index.mjs +785 -2037
- package/dist/style.css +2129 -695
- package/dist/types/index.d.ts +7 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/materialIcon.d.ts +2 -0
- package/dist/types/materialIcon.d.ts.map +1 -0
- package/dist/types/materialIcons.d.ts +1 -1
- package/dist/types/materialIcons.d.ts.map +1 -1
- package/dist/utils/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/MaterialIcon.vue +3 -2
- package/src/components/PageTitle.vue +10 -20
- package/src/components/form/BglField.vue +2 -2
- package/src/components/form/BglForm.vue +49 -53
- package/src/components/form/inputs/SelectInput.vue +128 -484
- package/src/components/form/inputs/TextInput.vue +158 -112
- package/src/components/index.ts +0 -2
- package/src/components/layout/Layout.vue +34 -13
- package/src/components/layout/SidebarMenu.vue +22 -22
- package/src/components/layout/TabbedLayout.vue +79 -0
- package/src/components/layout/Tabs.vue +19 -0
- package/src/components/layout/TabsBody.vue +15 -0
- package/src/components/layout/TabsNav.vue +48 -0
- package/src/components/layout/index.ts +4 -0
- package/src/components/layout/tabsManager.ts +18 -0
- package/src/styles/appearance.css +81 -0
- package/src/styles/bagel.css +2 -0
- package/src/styles/layout.css +162 -17
- package/src/styles/mobilLayout.css +1476 -0
- package/src/styles/text.css +153 -1
- package/src/types/index.ts +9 -1
- package/src/types/materialIcons.ts +1180 -1178
- package/src/utils/BagelFormUtils.ts +1 -1
- package/src/utils/index.ts +0 -1
- package/src/components/ComboBox.vue +0 -165
- package/src/components/TabbedLayout.vue +0 -87
package/dist/style.css
CHANGED
|
@@ -648,25 +648,6 @@ a[data-v-0c8d9a95] {
|
|
|
648
648
|
}
|
|
649
649
|
}
|
|
650
650
|
|
|
651
|
-
.tab[data-v-37337215] {
|
|
652
|
-
text-transform: capitalize;
|
|
653
|
-
}
|
|
654
|
-
.side-tabs[data-v-37337215]{
|
|
655
|
-
display: flex;
|
|
656
|
-
}
|
|
657
|
-
.side-tabs .tabs-top[data-v-37337215]{
|
|
658
|
-
margin-inline-end: 1rem;
|
|
659
|
-
}
|
|
660
|
-
.side-tabs .tabs[data-v-37337215]{
|
|
661
|
-
display: block;
|
|
662
|
-
padding: 0;
|
|
663
|
-
margin: 0;
|
|
664
|
-
border: none;
|
|
665
|
-
}
|
|
666
|
-
.side-tabs .tab[data-v-37337215]{
|
|
667
|
-
border: none;
|
|
668
|
-
}
|
|
669
|
-
|
|
670
651
|
.comments-wrap[data-v-c4b41dc0] {
|
|
671
652
|
display: grid;
|
|
672
653
|
grid-template-rows: 1fr 40px;
|
|
@@ -805,15 +786,6 @@ a[data-v-0c8d9a95] {
|
|
|
805
786
|
align-items: center;
|
|
806
787
|
gap: 1rem;
|
|
807
788
|
}
|
|
808
|
-
@media screen and (max-width: 910px) {
|
|
809
|
-
.top-title {
|
|
810
|
-
font-size: 1.25em;
|
|
811
|
-
margin-bottom: 1rem;
|
|
812
|
-
font-weight: 400;
|
|
813
|
-
-webkit-margin-start: 0.5rem;
|
|
814
|
-
margin-inline-start: 0.5rem;
|
|
815
|
-
}
|
|
816
|
-
}
|
|
817
789
|
|
|
818
790
|
.list-arrows[data-v-f3641508] {
|
|
819
791
|
opacity: 0;
|
|
@@ -985,56 +957,6 @@ padding: 0.75rem 0.5rem;
|
|
|
985
957
|
height: 100%;
|
|
986
958
|
object-fit: cover;
|
|
987
959
|
}
|
|
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}
|
|
989
|
-
|
|
990
|
-
.combobox[data-v-220e98d7] {
|
|
991
|
-
width: 100%;
|
|
992
|
-
}
|
|
993
|
-
.combobox-option[data-v-220e98d7] {
|
|
994
|
-
padding: 6px 12px;
|
|
995
|
-
cursor: pointer;
|
|
996
|
-
border-radius: 5px;
|
|
997
|
-
transition: all 0.2s;
|
|
998
|
-
display: flex;
|
|
999
|
-
justify-content: space-between;
|
|
1000
|
-
width: 100%;
|
|
1001
|
-
}
|
|
1002
|
-
.combobox-options[data-v-220e98d7] {
|
|
1003
|
-
max-height: 300px;
|
|
1004
|
-
overflow-y: auto;
|
|
1005
|
-
}
|
|
1006
|
-
.combobox-option[data-v-220e98d7]:hover {
|
|
1007
|
-
background: var(--bgl-gray-20);
|
|
1008
|
-
}
|
|
1009
|
-
|
|
1010
|
-
.bagel-input label {
|
|
1011
|
-
font-size: var(--label-font-size);
|
|
1012
|
-
}
|
|
1013
|
-
.combobox-btn {
|
|
1014
|
-
display: flex;
|
|
1015
|
-
justify-content: space-between;
|
|
1016
|
-
align-items: center;
|
|
1017
|
-
height: var(--input-height);
|
|
1018
|
-
border-radius: var(--input-border-radius);
|
|
1019
|
-
border: none;
|
|
1020
|
-
background: var(--input-bg);
|
|
1021
|
-
padding: 0.7rem;
|
|
1022
|
-
color: var(--input-color);
|
|
1023
|
-
width: 100%;
|
|
1024
|
-
font-family: inherit;
|
|
1025
|
-
}
|
|
1026
|
-
.combobox-btn:focus {
|
|
1027
|
-
outline: none;
|
|
1028
|
-
box-shadow: inset 0 0 10px #00000012;
|
|
1029
|
-
}
|
|
1030
|
-
.v-popper__arrow-container {
|
|
1031
|
-
display: none;
|
|
1032
|
-
}
|
|
1033
|
-
.v-popper--theme-dropdown .v-popper__inner {
|
|
1034
|
-
border: none;
|
|
1035
|
-
background: transparent;
|
|
1036
|
-
border-radius: var(--card-border-radius);
|
|
1037
|
-
}
|
|
1038
960
|
|
|
1039
961
|
.alert[data-v-94bfcb05] {
|
|
1040
962
|
padding: var(--btn-padding);
|
|
@@ -1272,401 +1194,61 @@ display: block;
|
|
|
1272
1194
|
[dir='rtl'] .bagel-input textarea[data-v-1fc4f739] {
|
|
1273
1195
|
direction: ltr;
|
|
1274
1196
|
}
|
|
1197
|
+
.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}
|
|
1275
1198
|
|
|
1276
|
-
|
|
1277
|
-
pointer-events: none;
|
|
1278
|
-
}
|
|
1279
|
-
.multiselect__spinner {
|
|
1280
|
-
position: absolute;
|
|
1281
|
-
right: 1px;
|
|
1282
|
-
top: 1px;
|
|
1283
|
-
width: 40px;
|
|
1284
|
-
height: 38px;
|
|
1285
|
-
background: #fff;
|
|
1286
|
-
display: block;
|
|
1287
|
-
}
|
|
1288
|
-
.multiselect__spinner::before,
|
|
1289
|
-
.multiselect__spinner::after {
|
|
1290
|
-
position: absolute;
|
|
1291
|
-
content: "";
|
|
1292
|
-
top: 50%;
|
|
1293
|
-
left: 50%;
|
|
1294
|
-
margin: -8px 0 0 -8px;
|
|
1295
|
-
width: 16px;
|
|
1296
|
-
height: 16px;
|
|
1297
|
-
border-radius: 100%;
|
|
1298
|
-
border-color: var(--bgl-primary-tint) transparent transparent;
|
|
1299
|
-
border-style: solid;
|
|
1300
|
-
border-width: 2px;
|
|
1301
|
-
box-shadow: 0 0 0 1px transparent;
|
|
1302
|
-
}
|
|
1303
|
-
.multiselect__spinner::before {
|
|
1304
|
-
animation: spinning 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
|
|
1305
|
-
animation-iteration-count: infinite;
|
|
1306
|
-
}
|
|
1307
|
-
.multiselect__spinner::after {
|
|
1308
|
-
animation: spinning 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
|
|
1309
|
-
animation-iteration-count: infinite;
|
|
1310
|
-
}
|
|
1311
|
-
.multiselect__loading-enter-active,
|
|
1312
|
-
.multiselect__loading-leave-active {
|
|
1313
|
-
transition: opacity 0.4s ease-in-out;
|
|
1314
|
-
opacity: 1;
|
|
1315
|
-
}
|
|
1316
|
-
.multiselect__loading-enter,
|
|
1317
|
-
.multiselect__loading-leave-active {
|
|
1318
|
-
opacity: 0;
|
|
1319
|
-
}
|
|
1320
|
-
.multiselect,
|
|
1321
|
-
.multiselect__input,
|
|
1322
|
-
.multiselect__single {
|
|
1323
|
-
font-family: inherit;
|
|
1324
|
-
font-size: var(--input-font-size);
|
|
1325
|
-
touch-action: manipulation;
|
|
1326
|
-
}
|
|
1327
|
-
.multiselect {
|
|
1328
|
-
box-sizing: content-box;
|
|
1329
|
-
display: block;
|
|
1330
|
-
position: relative;
|
|
1199
|
+
.selectinput[data-v-8845266b] {
|
|
1331
1200
|
width: 100%;
|
|
1332
|
-
min-height: var(--input-height);
|
|
1333
|
-
text-align: left;
|
|
1334
|
-
color: var(--input-color);
|
|
1335
|
-
}
|
|
1336
|
-
.multiselect * {
|
|
1337
|
-
box-sizing: border-box;
|
|
1338
|
-
}
|
|
1339
|
-
.multiselect:focus {
|
|
1340
|
-
outline: none;
|
|
1341
|
-
}
|
|
1342
|
-
.multiselect--disabled {
|
|
1343
|
-
background: #ededed;
|
|
1344
|
-
pointer-events: none;
|
|
1345
|
-
opacity: 0.6;
|
|
1346
1201
|
}
|
|
1347
|
-
.
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
.multiselect--active:not(.multiselect--above) .multiselect__tags {
|
|
1357
|
-
box-shadow: inset 0 0 10px #00000012;
|
|
1358
|
-
}
|
|
1359
|
-
.multiselect--active .multiselect__select {
|
|
1360
|
-
transform: rotateZ(180deg);
|
|
1361
|
-
}
|
|
1362
|
-
.multiselect--above.multiselect--active .multiselect__current,
|
|
1363
|
-
.multiselect--above.multiselect--active .multiselect__input,
|
|
1364
|
-
.multiselect--above.multiselect--active .multiselect__tags {
|
|
1365
|
-
border-top-left-radius: 0;
|
|
1366
|
-
border-top-right-radius: 0;
|
|
1367
|
-
}
|
|
1368
|
-
.multiselect__input,
|
|
1369
|
-
.multiselect__single {
|
|
1370
|
-
position: relative;
|
|
1371
|
-
display: inline-block;
|
|
1372
|
-
border: none;
|
|
1373
|
-
background: var(--input-bg);
|
|
1374
|
-
width: calc(100%);
|
|
1375
|
-
transition: border 0.1s ease;
|
|
1376
|
-
box-sizing: border-box;
|
|
1377
|
-
vertical-align: top;
|
|
1202
|
+
.selectinput-option[data-v-8845266b] {
|
|
1203
|
+
padding: 6px 12px;
|
|
1204
|
+
cursor: pointer;
|
|
1205
|
+
border-radius: 5px;
|
|
1206
|
+
transition: all 0.2s;
|
|
1207
|
+
display: grid;
|
|
1208
|
+
grid-template-columns: 10px 1fr;
|
|
1209
|
+
justify-content: space-between;
|
|
1210
|
+
width: 100%;
|
|
1378
1211
|
font-size: var(--input-font-size);
|
|
1379
|
-
padding-inline-start: 0rem;
|
|
1380
|
-
}
|
|
1381
|
-
.multiselect--active .multiselect__input {
|
|
1382
|
-
margin-top: -0.6rem;
|
|
1383
|
-
}
|
|
1384
|
-
.multiselect__input::placeholder {
|
|
1385
|
-
color: var(--input-color);
|
|
1386
|
-
}
|
|
1387
|
-
.multiselect__tag~.multiselect__input,
|
|
1388
|
-
.multiselect__tag~.multiselect__single {
|
|
1389
|
-
width: auto;
|
|
1390
1212
|
}
|
|
1391
|
-
.
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
}
|
|
1395
|
-
.multiselect__input:focus,
|
|
1396
|
-
.multiselect__single:focus {
|
|
1397
|
-
border-color: #a8a8a8;
|
|
1398
|
-
outline: none;
|
|
1213
|
+
.selectinput-options[data-v-8845266b] {
|
|
1214
|
+
max-height: 300px;
|
|
1215
|
+
overflow-y: auto;
|
|
1399
1216
|
}
|
|
1400
|
-
.
|
|
1401
|
-
|
|
1402
|
-
margin-bottom: 8px;
|
|
1217
|
+
.selectinput-option[data-v-8845266b]:hover {
|
|
1218
|
+
background: var(--bgl-gray-20);
|
|
1403
1219
|
}
|
|
1404
|
-
|
|
1405
|
-
|
|
1220
|
+
|
|
1221
|
+
.bagel-input label {
|
|
1222
|
+
font-size: var(--label-font-size);
|
|
1406
1223
|
}
|
|
1407
|
-
.
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1224
|
+
.selectinput-btn {
|
|
1225
|
+
display: flex;
|
|
1226
|
+
justify-content: space-between;
|
|
1227
|
+
align-items: center;
|
|
1228
|
+
height: var(--input-height);
|
|
1411
1229
|
border-radius: var(--input-border-radius);
|
|
1230
|
+
border: none;
|
|
1412
1231
|
background: var(--input-bg);
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
line-height: 0;
|
|
1416
|
-
padding: calc(var(--input-height) / 2);
|
|
1417
|
-
padding-inline-end: 40px;
|
|
1418
|
-
padding-inline-start: 0.7rem;
|
|
1419
|
-
}
|
|
1420
|
-
.multiselect__tag {
|
|
1421
|
-
position: relative;
|
|
1422
|
-
display: inline-block;
|
|
1423
|
-
padding: 4px 26px 4px 10px;
|
|
1424
|
-
border-radius: 5px;
|
|
1425
|
-
margin-right: 10px;
|
|
1426
|
-
color: #fff;
|
|
1427
|
-
line-height: 1;
|
|
1428
|
-
background: var(--bgl-primary-tint);
|
|
1429
|
-
margin-bottom: 5px;
|
|
1430
|
-
white-space: nowrap;
|
|
1431
|
-
overflow: hidden;
|
|
1432
|
-
max-width: 100%;
|
|
1433
|
-
text-overflow: ellipsis;
|
|
1434
|
-
}
|
|
1435
|
-
.multiselect__tag-icon {
|
|
1436
|
-
cursor: pointer;
|
|
1437
|
-
margin-left: 7px;
|
|
1438
|
-
position: absolute;
|
|
1439
|
-
right: 0;
|
|
1440
|
-
top: 0;
|
|
1441
|
-
bottom: 0;
|
|
1442
|
-
font-weight: 700;
|
|
1443
|
-
font-style: initial;
|
|
1444
|
-
width: 22px;
|
|
1445
|
-
text-align: center;
|
|
1446
|
-
line-height: 22px;
|
|
1447
|
-
transition: all 0.2s ease;
|
|
1448
|
-
border-radius: 5px;
|
|
1449
|
-
}
|
|
1450
|
-
.multiselect__tag-icon::after {
|
|
1451
|
-
content: "×";
|
|
1452
|
-
color: #266d4d;
|
|
1453
|
-
font-size: 14px;
|
|
1454
|
-
}
|
|
1455
|
-
|
|
1456
|
-
/* // Remove these lines to avoid green closing button
|
|
1457
|
-
//.multiselect__tag-icon:focus,
|
|
1458
|
-
//.multiselect__tag-icon:hover {
|
|
1459
|
-
// background: #369a6e;
|
|
1460
|
-
//} */
|
|
1461
|
-
.multiselect__tag-icon:focus::after,
|
|
1462
|
-
.multiselect__tag-icon:hover::after {
|
|
1463
|
-
color: white;
|
|
1464
|
-
}
|
|
1465
|
-
.multiselect__current {
|
|
1466
|
-
line-height: 16px;
|
|
1467
|
-
min-height: 40px;
|
|
1468
|
-
box-sizing: border-box;
|
|
1469
|
-
display: block;
|
|
1470
|
-
overflow: hidden;
|
|
1471
|
-
padding: 8px 12px 0;
|
|
1472
|
-
padding-right: 30px;
|
|
1473
|
-
white-space: nowrap;
|
|
1474
|
-
margin: 0;
|
|
1475
|
-
text-decoration: none;
|
|
1476
|
-
border-radius: 5px;
|
|
1477
|
-
/* border: 1px solid #e8e8e8; */
|
|
1478
|
-
cursor: pointer;
|
|
1479
|
-
}
|
|
1480
|
-
.multiselect__select {
|
|
1481
|
-
line-height: 16px;
|
|
1482
|
-
display: block;
|
|
1483
|
-
position: absolute;
|
|
1484
|
-
box-sizing: border-box;
|
|
1485
|
-
/* width: 40px; */
|
|
1486
|
-
/* height: 38px; */
|
|
1487
|
-
right: 1px;
|
|
1488
|
-
top: 1px;
|
|
1489
|
-
padding: 4px 8px;
|
|
1490
|
-
margin: 0;
|
|
1491
|
-
text-decoration: none;
|
|
1492
|
-
text-align: center;
|
|
1493
|
-
cursor: pointer;
|
|
1494
|
-
transition: transform 0.2s ease;
|
|
1495
|
-
padding-top: calc(var(--input-height) / 2 - 0.7rem);
|
|
1496
|
-
}
|
|
1497
|
-
.multiselect__select::before {
|
|
1498
|
-
position: relative;
|
|
1499
|
-
background-size: contain;
|
|
1500
|
-
transform: scale(0.5);
|
|
1501
|
-
color: var(--bgl-black);
|
|
1502
|
-
content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23b7b7b7' height='24' viewBox='0 -960 960 960' width='24'><path d='M480-345 240-585l56-56 184 184 184-184 56 56-240 240Z'/></svg>");
|
|
1503
|
-
}
|
|
1504
|
-
.multiselect__placeholder {
|
|
1505
|
-
color: var(--placeholder-color);
|
|
1506
|
-
display: inline-block;
|
|
1507
|
-
margin-bottom: 10px;
|
|
1508
|
-
}
|
|
1509
|
-
.multiselect--active .multiselect__placeholder {
|
|
1510
|
-
display: none;
|
|
1511
|
-
}
|
|
1512
|
-
.multiselect__content-wrapper {
|
|
1513
|
-
position: absolute;
|
|
1514
|
-
display: block;
|
|
1515
|
-
background: #fff;
|
|
1232
|
+
padding: 0.7rem;
|
|
1233
|
+
color: var(--input-color);
|
|
1516
1234
|
width: 100%;
|
|
1517
|
-
|
|
1518
|
-
overflow: auto;
|
|
1519
|
-
box-shadow: 0 0 10px #00000012;
|
|
1520
|
-
border-top: none;
|
|
1521
|
-
border-bottom-left-radius: 5px;
|
|
1522
|
-
border-bottom-right-radius: 5px;
|
|
1523
|
-
z-index: 150;
|
|
1524
|
-
-webkit-overflow-scrolling: touch;
|
|
1525
|
-
}
|
|
1526
|
-
.multiselect__content {
|
|
1527
|
-
list-style: none;
|
|
1528
|
-
display: inline-block;
|
|
1529
|
-
padding: 0;
|
|
1530
|
-
margin: 0;
|
|
1531
|
-
min-width: 100%;
|
|
1532
|
-
vertical-align: top;
|
|
1533
|
-
}
|
|
1534
|
-
.multiselect--above .multiselect__content-wrapper {
|
|
1535
|
-
bottom: 100%;
|
|
1536
|
-
border-bottom-left-radius: 0;
|
|
1537
|
-
border-bottom-right-radius: 0;
|
|
1538
|
-
border-top-left-radius: 5px;
|
|
1539
|
-
border-top-right-radius: 5px;
|
|
1540
|
-
border-bottom: none;
|
|
1541
|
-
border-top: 1px solid #e8e8e8;
|
|
1542
|
-
}
|
|
1543
|
-
.multiselect__content::-webkit-scrollbar {
|
|
1544
|
-
display: none;
|
|
1545
|
-
}
|
|
1546
|
-
.multiselect__element {
|
|
1547
|
-
display: block;
|
|
1548
|
-
}
|
|
1549
|
-
.multiselect__option {
|
|
1550
|
-
display: block;
|
|
1551
|
-
padding-inline-start: 12px;
|
|
1552
|
-
min-height: calc(var(--input-height) * 0.8);
|
|
1553
|
-
line-height: calc(var(--input-height) * 0.8);
|
|
1554
|
-
text-decoration: none;
|
|
1555
|
-
text-transform: none;
|
|
1556
|
-
position: relative;
|
|
1557
|
-
cursor: pointer;
|
|
1558
|
-
white-space: nowrap;
|
|
1235
|
+
font-family: inherit;
|
|
1559
1236
|
}
|
|
1560
|
-
.
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
position: absolute;
|
|
1564
|
-
width: calc(var(--input-height) * 0.8);
|
|
1565
|
-
height: calc(var(--input-height) * 0.8);
|
|
1566
|
-
;
|
|
1567
|
-
text-align: center;
|
|
1568
|
-
font-size: 13px;
|
|
1237
|
+
.selectinput-btn:disabled {
|
|
1238
|
+
background: var(--input-disabled-bg);
|
|
1239
|
+
color: var(--input-disabled-color);
|
|
1569
1240
|
}
|
|
1570
|
-
.
|
|
1571
|
-
background: var(--bgl-primary-light);
|
|
1241
|
+
.selectinput-btn:focus {
|
|
1572
1242
|
outline: none;
|
|
1573
|
-
|
|
1574
|
-
}
|
|
1575
|
-
.multiselect__option--selected {
|
|
1576
|
-
background: var(--bgl-primary);
|
|
1577
|
-
color: var(--bgl-white);
|
|
1578
|
-
font-weight: bold;
|
|
1579
|
-
}
|
|
1580
|
-
.multiselect__option--selected.multiselect__option--highlight {
|
|
1581
|
-
filter: brightness(0.9);
|
|
1582
|
-
color: #fff;
|
|
1583
|
-
}
|
|
1584
|
-
.multiselect__option--selected.multiselect__option--highlight::after {
|
|
1585
|
-
content: "✕";
|
|
1586
|
-
color: var(--bgl-white);
|
|
1587
|
-
}
|
|
1588
|
-
.multiselect--disabled .multiselect__current,
|
|
1589
|
-
.multiselect--disabled .multiselect__select {
|
|
1590
|
-
background: #ededed;
|
|
1591
|
-
color: #a6a6a6;
|
|
1592
|
-
}
|
|
1593
|
-
.multiselect__option--disabled {
|
|
1594
|
-
background: #ededed !important;
|
|
1595
|
-
color: #a6a6a6 !important;
|
|
1596
|
-
cursor: text;
|
|
1597
|
-
pointer-events: none;
|
|
1598
|
-
}
|
|
1599
|
-
.multiselect__option--group {
|
|
1600
|
-
background: #ededed;
|
|
1601
|
-
color: var(--input-color);
|
|
1602
|
-
}
|
|
1603
|
-
.multiselect__option--group.multiselect__option--highlight {
|
|
1604
|
-
background: var(--input-color);
|
|
1605
|
-
color: #fff;
|
|
1606
|
-
}
|
|
1607
|
-
.multiselect__option--group.multiselect__option--highlight::after {
|
|
1608
|
-
background: var(--input-color);
|
|
1609
|
-
}
|
|
1610
|
-
.multiselect__option--disabled.multiselect__option--highlight {
|
|
1611
|
-
background: #dedede;
|
|
1612
|
-
}
|
|
1613
|
-
.multiselect__option--group-selected.multiselect__option--highlight {
|
|
1614
|
-
background: var(--bgl-red);
|
|
1615
|
-
color: #fff;
|
|
1616
|
-
}
|
|
1617
|
-
.multiselect__option--group-selected.multiselect__option--highlight::after {
|
|
1618
|
-
background: var(--bgl-red);
|
|
1619
|
-
content: attr(data-deselect);
|
|
1620
|
-
color: #fff;
|
|
1621
|
-
}
|
|
1622
|
-
.multiselect-enter-active,
|
|
1623
|
-
.multiselect-leave-active {
|
|
1624
|
-
transition: all 0.15s ease;
|
|
1625
|
-
}
|
|
1626
|
-
.multiselect-enter,
|
|
1627
|
-
.multiselect-leave-active {
|
|
1628
|
-
opacity: 0;
|
|
1629
|
-
}
|
|
1630
|
-
.multiselect__strong {
|
|
1631
|
-
margin-bottom: 8px;
|
|
1632
|
-
line-height: 20px;
|
|
1633
|
-
display: inline-block;
|
|
1634
|
-
vertical-align: top;
|
|
1635
|
-
}
|
|
1636
|
-
*[dir="rtl"] .multiselect {
|
|
1637
|
-
text-align: right;
|
|
1638
|
-
}
|
|
1639
|
-
*[dir="rtl"] .multiselect__select {
|
|
1640
|
-
right: auto;
|
|
1641
|
-
left: 1px;
|
|
1642
|
-
}
|
|
1643
|
-
*[dir="rtl"] .multiselect__tags {
|
|
1644
|
-
padding: calc(var(--input-height) / 2);
|
|
1645
|
-
padding-inline-end: 40px;
|
|
1646
|
-
padding-inline-start: 0.7rem;
|
|
1647
|
-
}
|
|
1648
|
-
*[dir="rtl"] .multiselect__content {
|
|
1649
|
-
text-align: right;
|
|
1650
|
-
}
|
|
1651
|
-
*[dir="rtl"] .multiselect__option::after {
|
|
1652
|
-
right: auto;
|
|
1653
|
-
left: 0;
|
|
1654
|
-
}
|
|
1655
|
-
*[dir="rtl"] .multiselect__clear {
|
|
1656
|
-
right: auto;
|
|
1657
|
-
left: 12px;
|
|
1658
|
-
}
|
|
1659
|
-
*[dir="rtl"] .multiselect__spinner {
|
|
1660
|
-
right: auto;
|
|
1661
|
-
left: 1px;
|
|
1662
|
-
}
|
|
1663
|
-
@keyframes spinning {
|
|
1664
|
-
from {
|
|
1665
|
-
transform: rotate(0);
|
|
1243
|
+
box-shadow: inset 0 0 10px #00000012;
|
|
1666
1244
|
}
|
|
1667
|
-
|
|
1668
|
-
|
|
1245
|
+
.v-popper__arrow-container {
|
|
1246
|
+
display: none;
|
|
1669
1247
|
}
|
|
1248
|
+
.v-popper--theme-dropdown .v-popper__inner {
|
|
1249
|
+
border: none;
|
|
1250
|
+
background: transparent;
|
|
1251
|
+
border-radius: var(--card-border-radius);
|
|
1670
1252
|
}
|
|
1671
1253
|
|
|
1672
1254
|
.bagel-input[data-v-69a60381] {
|
|
@@ -1821,72 +1403,72 @@ to {
|
|
|
1821
1403
|
|
|
1822
1404
|
.bagel-input.shrink,
|
|
1823
1405
|
.bagel-input.shrink input {
|
|
1824
|
-
|
|
1825
|
-
|
|
1406
|
+
min-width: unset !important;
|
|
1407
|
+
/* width: auto; */
|
|
1826
1408
|
}
|
|
1827
1409
|
.bagel-input label {
|
|
1828
1410
|
font-size: var(--label-font-size);
|
|
1829
1411
|
}
|
|
1830
1412
|
|
|
1831
|
-
.bagel-input textarea[data-v-
|
|
1832
|
-
|
|
1833
|
-
|
|
1413
|
+
.bagel-input textarea[data-v-cd4c27ad] {
|
|
1414
|
+
min-height: unset;
|
|
1415
|
+
font-size: var(--input-font-size);
|
|
1834
1416
|
}
|
|
1835
|
-
.bagel-input.text-input textarea[data-v-
|
|
1836
|
-
|
|
1417
|
+
.bagel-input.text-input textarea[data-v-cd4c27ad] {
|
|
1418
|
+
resize: none;
|
|
1837
1419
|
}
|
|
1838
|
-
.code textarea[data-v-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1420
|
+
.code textarea[data-v-cd4c27ad] {
|
|
1421
|
+
font-family: 'Inconsolata', monospace;
|
|
1422
|
+
background: var(--bgl-black) !important;
|
|
1423
|
+
color: var(--bgl-white) !important;
|
|
1842
1424
|
}
|
|
1843
|
-
.bagel-input.toggleEdit[data-v-
|
|
1844
|
-
|
|
1425
|
+
.bagel-input.toggleEdit[data-v-cd4c27ad]:hover {
|
|
1426
|
+
background-color: var(--input-bg);
|
|
1845
1427
|
}
|
|
1846
|
-
.bagel-input.small[data-v-
|
|
1847
|
-
|
|
1848
|
-
|
|
1428
|
+
.bagel-input.small[data-v-cd4c27ad] {
|
|
1429
|
+
margin-bottom: 0;
|
|
1430
|
+
height: 30px;
|
|
1849
1431
|
}
|
|
1850
|
-
.bagel-input.dense label[data-v-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1432
|
+
.bagel-input.dense label[data-v-cd4c27ad] {
|
|
1433
|
+
display: flex;
|
|
1434
|
+
align-items: center;
|
|
1435
|
+
gap: 0.5rem;
|
|
1854
1436
|
}
|
|
1855
|
-
.bagel-input label[data-v-
|
|
1856
|
-
|
|
1437
|
+
.bagel-input label[data-v-cd4c27ad] {
|
|
1438
|
+
font-size: var(--label-font-size);
|
|
1857
1439
|
}
|
|
1858
|
-
.toggleEditBtn[data-v-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1440
|
+
.toggleEditBtn[data-v-cd4c27ad] {
|
|
1441
|
+
position: absolute;
|
|
1442
|
+
right: -24px;
|
|
1443
|
+
top: 4;
|
|
1444
|
+
opacity: 0;
|
|
1863
1445
|
}
|
|
1864
|
-
.textInputIconWrap[data-v-
|
|
1865
|
-
|
|
1446
|
+
.textInputIconWrap[data-v-cd4c27ad] {
|
|
1447
|
+
position: relative;
|
|
1866
1448
|
}
|
|
1867
|
-
.textInputIconWrap .bgl_icon-font[data-v-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1449
|
+
.textInputIconWrap .bgl_icon-font[data-v-cd4c27ad] {
|
|
1450
|
+
position: absolute;
|
|
1451
|
+
inset-inline-end: 0.7rem;
|
|
1452
|
+
bottom: 50%;
|
|
1453
|
+
line-height: 0;
|
|
1454
|
+
color: var(--bgl-gray);
|
|
1873
1455
|
}
|
|
1874
|
-
.txtInputIconStart .iconStart[data-v-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1456
|
+
.txtInputIconStart .iconStart[data-v-cd4c27ad] {
|
|
1457
|
+
position: absolute;
|
|
1458
|
+
inset-inline-start: 0.7rem;
|
|
1459
|
+
top: 50%;
|
|
1460
|
+
line-height: 0;
|
|
1461
|
+
color: var(--bgl-gray);
|
|
1880
1462
|
}
|
|
1881
|
-
.txtInputIconStart textarea[data-v-
|
|
1882
|
-
|
|
1463
|
+
.txtInputIconStart textarea[data-v-cd4c27ad] {
|
|
1464
|
+
padding-inline-start: 2rem;
|
|
1883
1465
|
}
|
|
1884
|
-
.bagel-input:hover .toggleEditBtn[data-v-
|
|
1885
|
-
.bagel-input.editMode .toggleEditBtn[data-v-
|
|
1886
|
-
|
|
1466
|
+
.bagel-input:hover .toggleEditBtn[data-v-cd4c27ad],
|
|
1467
|
+
.bagel-input.editMode .toggleEditBtn[data-v-cd4c27ad] {
|
|
1468
|
+
opacity: 1;
|
|
1887
1469
|
}
|
|
1888
|
-
.bagel-input.small textarea[data-v-
|
|
1889
|
-
|
|
1470
|
+
.bagel-input.small textarea[data-v-cd4c27ad] {
|
|
1471
|
+
height: 30px;
|
|
1890
1472
|
}
|
|
1891
1473
|
|
|
1892
1474
|
.primary-checkbox input[data-v-e4cbb088] {
|
|
@@ -2243,9 +1825,18 @@ img.preview[data-v-1be8d7b1] {
|
|
|
2243
1825
|
}
|
|
2244
1826
|
}
|
|
2245
1827
|
|
|
2246
|
-
.layout {
|
|
1828
|
+
.layout[data-v-977dfbf4] {
|
|
2247
1829
|
min-height: 100px;
|
|
2248
1830
|
display: grid;
|
|
1831
|
+
gap: var(--7a00a82c);
|
|
1832
|
+
grid-template-rows: var(--30493178);
|
|
1833
|
+
grid-template-columns: var(--5b203692);
|
|
1834
|
+
}
|
|
1835
|
+
@media screen and (max-width: 910px) {
|
|
1836
|
+
.layout[data-v-977dfbf4] {
|
|
1837
|
+
grid-template-rows: var(--7cba085b);
|
|
1838
|
+
grid-template-columns: var(--7abc6a1b);
|
|
1839
|
+
}
|
|
2249
1840
|
}
|
|
2250
1841
|
|
|
2251
1842
|
.v-popper--theme-tooltip .v-popper__inner {
|
|
@@ -2262,7 +1853,7 @@ img.preview[data-v-1be8d7b1] {
|
|
|
2262
1853
|
background-color: var(--bgl-primary-tint) !important;
|
|
2263
1854
|
}
|
|
2264
1855
|
|
|
2265
|
-
.bgl_sidebar[data-v-
|
|
1856
|
+
.bgl_sidebar[data-v-8713ae4a] {
|
|
2266
1857
|
background-color: var(--bgl-primary);
|
|
2267
1858
|
color: var(--bgl-white);
|
|
2268
1859
|
overflow: hidden;
|
|
@@ -2272,22 +1863,22 @@ img.preview[data-v-1be8d7b1] {
|
|
|
2272
1863
|
padding: 0.5rem;
|
|
2273
1864
|
overflow-y: auto;
|
|
2274
1865
|
}
|
|
2275
|
-
.wideNav .toggleNav[data-v-
|
|
1866
|
+
.wideNav .toggleNav[data-v-8713ae4a] {
|
|
2276
1867
|
transform: rotate(180deg);
|
|
2277
1868
|
}
|
|
2278
|
-
.wideNav .nav-button[data-v-
|
|
1869
|
+
.wideNav .nav-button[data-v-8713ae4a] {
|
|
2279
1870
|
padding-inline-start: 1rem !important;
|
|
2280
1871
|
width: 100%;
|
|
2281
1872
|
}
|
|
2282
|
-
.nav-button.bgl_btn-icon[data-v-
|
|
1873
|
+
.nav-button.bgl_btn-icon[data-v-8713ae4a] {
|
|
2283
1874
|
border-radius: var(--btn-border-radius) !important;
|
|
2284
1875
|
}
|
|
2285
|
-
.nav-button p[data-v-
|
|
1876
|
+
.nav-button p[data-v-8713ae4a] {
|
|
2286
1877
|
transition: var(--nav-tran);
|
|
2287
|
-
animation: fade-
|
|
1878
|
+
animation: fade-8713ae4a 2s;
|
|
2288
1879
|
animation-duration: 900ms;
|
|
2289
1880
|
}
|
|
2290
|
-
@keyframes fade-
|
|
1881
|
+
@keyframes fade-8713ae4a {
|
|
2291
1882
|
0% {
|
|
2292
1883
|
opacity: 0;
|
|
2293
1884
|
transform: translateX(-20px);
|
|
@@ -2302,6 +1893,34 @@ img.preview[data-v-1be8d7b1] {
|
|
|
2302
1893
|
}
|
|
2303
1894
|
}
|
|
2304
1895
|
|
|
1896
|
+
.tab[data-v-f737d297] {
|
|
1897
|
+
border: none;
|
|
1898
|
+
border-bottom: 1px solid var(--border-color);
|
|
1899
|
+
background: transparent;
|
|
1900
|
+
}
|
|
1901
|
+
.tab.currentTab[data-v-f737d297] {
|
|
1902
|
+
border-bottom: 2px solid var(--primary-color);
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1905
|
+
.tab[data-v-fd61196d] {
|
|
1906
|
+
text-transform: capitalize;
|
|
1907
|
+
}
|
|
1908
|
+
.side-tabs[data-v-fd61196d] {
|
|
1909
|
+
display: flex;
|
|
1910
|
+
}
|
|
1911
|
+
.side-tabs .tabs-top[data-v-fd61196d] {
|
|
1912
|
+
margin-inline-end: 1rem;
|
|
1913
|
+
}
|
|
1914
|
+
.side-tabs .tabs[data-v-fd61196d] {
|
|
1915
|
+
display: block;
|
|
1916
|
+
padding: 0;
|
|
1917
|
+
margin: 0;
|
|
1918
|
+
border: none;
|
|
1919
|
+
}
|
|
1920
|
+
.side-tabs .tab[data-v-fd61196d] {
|
|
1921
|
+
border: none;
|
|
1922
|
+
}
|
|
1923
|
+
|
|
2305
1924
|
|
|
2306
1925
|
|
|
2307
1926
|
.grid {
|
|
@@ -2383,11 +2002,11 @@ img.preview[data-v-1be8d7b1] {
|
|
|
2383
2002
|
top: 0px;
|
|
2384
2003
|
inset-inline-end: 0px;
|
|
2385
2004
|
}
|
|
2386
|
-
.
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2005
|
+
.positioned-full {
|
|
2006
|
+
top: 0;
|
|
2007
|
+
bottom: 0;
|
|
2008
|
+
inset-inline-start: 0;
|
|
2009
|
+
inset-inline-end: 0;
|
|
2391
2010
|
}
|
|
2392
2011
|
.auto-flow-rows {
|
|
2393
2012
|
grid-auto-flow: row;
|
|
@@ -2403,7 +2022,7 @@ img.preview[data-v-1be8d7b1] {
|
|
|
2403
2022
|
min-height: 100%;
|
|
2404
2023
|
}
|
|
2405
2024
|
.w-100,
|
|
2406
|
-
.
|
|
2025
|
+
.width-100 {
|
|
2407
2026
|
width: 100%;
|
|
2408
2027
|
}
|
|
2409
2028
|
.w300,
|
|
@@ -2415,21 +2034,74 @@ img.preview[data-v-1be8d7b1] {
|
|
|
2415
2034
|
.w600,
|
|
2416
2035
|
.w650,
|
|
2417
2036
|
.w700,
|
|
2037
|
+
.w750,
|
|
2418
2038
|
.w770,
|
|
2039
|
+
.w800,
|
|
2040
|
+
.w850,
|
|
2419
2041
|
.w900,
|
|
2042
|
+
.w950,
|
|
2420
2043
|
.w970,
|
|
2044
|
+
.w1000,
|
|
2421
2045
|
.w1030,
|
|
2422
|
-
.
|
|
2046
|
+
.w1050,
|
|
2047
|
+
.w1100,
|
|
2048
|
+
.w1150,
|
|
2049
|
+
.w1170,
|
|
2050
|
+
.w1200,
|
|
2051
|
+
.w1250,
|
|
2052
|
+
.w1300,
|
|
2053
|
+
.w1350,
|
|
2054
|
+
.w1400,
|
|
2055
|
+
.w1450,
|
|
2056
|
+
.w1500,
|
|
2057
|
+
.w1550,
|
|
2058
|
+
.w1600 {
|
|
2423
2059
|
margin-inline-start: auto;
|
|
2424
2060
|
margin-inline-end: auto;
|
|
2425
2061
|
width: 98%;
|
|
2426
2062
|
}
|
|
2063
|
+
.w10 {
|
|
2064
|
+
max-width: 10px;
|
|
2065
|
+
}
|
|
2066
|
+
.w20 {
|
|
2067
|
+
max-width: 20px;
|
|
2068
|
+
}
|
|
2069
|
+
.w20 {
|
|
2070
|
+
max-width: 20px;
|
|
2071
|
+
}
|
|
2072
|
+
.w30 {
|
|
2073
|
+
max-width: 30px;
|
|
2074
|
+
}
|
|
2075
|
+
.w40 {
|
|
2076
|
+
max-width: 40px;
|
|
2077
|
+
}
|
|
2078
|
+
.w50 {
|
|
2079
|
+
max-width: 50px;
|
|
2080
|
+
}
|
|
2081
|
+
.w60 {
|
|
2082
|
+
max-width: 60px;
|
|
2083
|
+
}
|
|
2084
|
+
.w70 {
|
|
2085
|
+
max-width: 70px;
|
|
2086
|
+
}
|
|
2087
|
+
.w80 {
|
|
2088
|
+
max-width: 80px;
|
|
2089
|
+
}
|
|
2090
|
+
.w90 {
|
|
2091
|
+
max-width: 90px;
|
|
2092
|
+
}
|
|
2427
2093
|
.w100 {
|
|
2428
2094
|
max-width: 100px;
|
|
2429
2095
|
}
|
|
2096
|
+
.w150 {
|
|
2097
|
+
max-width: 150px;
|
|
2098
|
+
}
|
|
2430
2099
|
.w200 {
|
|
2431
2100
|
max-width: 200px;
|
|
2432
2101
|
}
|
|
2102
|
+
.w250 {
|
|
2103
|
+
max-width: 250px;
|
|
2104
|
+
}
|
|
2433
2105
|
.w300 {
|
|
2434
2106
|
max-width: 300px;
|
|
2435
2107
|
}
|
|
@@ -2454,24 +2126,75 @@ img.preview[data-v-1be8d7b1] {
|
|
|
2454
2126
|
.w650 {
|
|
2455
2127
|
max-width: 650px;
|
|
2456
2128
|
}
|
|
2457
|
-
.
|
|
2129
|
+
.w700 {
|
|
2458
2130
|
max-width: 700px;
|
|
2459
2131
|
}
|
|
2132
|
+
.w750 {
|
|
2133
|
+
max-width: 750px;
|
|
2134
|
+
}
|
|
2460
2135
|
.w770 {
|
|
2461
2136
|
max-width: 770px;
|
|
2462
2137
|
}
|
|
2138
|
+
.w800 {
|
|
2139
|
+
max-width: 800px;
|
|
2140
|
+
}
|
|
2141
|
+
.w850 {
|
|
2142
|
+
max-width: 850px;
|
|
2143
|
+
}
|
|
2463
2144
|
.w900 {
|
|
2464
2145
|
max-width: 900px;
|
|
2465
2146
|
}
|
|
2147
|
+
.w950 {
|
|
2148
|
+
max-width: 950px;
|
|
2149
|
+
}
|
|
2466
2150
|
.w970 {
|
|
2467
2151
|
max-width: 970px;
|
|
2468
2152
|
}
|
|
2153
|
+
.w1000 {
|
|
2154
|
+
max-width: 1000px;
|
|
2155
|
+
}
|
|
2469
2156
|
.w1030 {
|
|
2470
2157
|
max-width: 1030px;
|
|
2471
2158
|
}
|
|
2159
|
+
.w1050 {
|
|
2160
|
+
max-width: 1050px;
|
|
2161
|
+
}
|
|
2162
|
+
.w1100 {
|
|
2163
|
+
max-width: 1100px;
|
|
2164
|
+
}
|
|
2165
|
+
.w1150 {
|
|
2166
|
+
max-width: 1150px;
|
|
2167
|
+
}
|
|
2472
2168
|
.w1170 {
|
|
2473
2169
|
max-width: 1170px;
|
|
2474
2170
|
}
|
|
2171
|
+
.w1200 {
|
|
2172
|
+
max-width: 1200px;
|
|
2173
|
+
}
|
|
2174
|
+
.w1250 {
|
|
2175
|
+
max-width: 1250px;
|
|
2176
|
+
}
|
|
2177
|
+
.w1300 {
|
|
2178
|
+
max-width: 1300px;
|
|
2179
|
+
}
|
|
2180
|
+
.w1350 {
|
|
2181
|
+
max-width: 1350px;
|
|
2182
|
+
}
|
|
2183
|
+
.w1400 {
|
|
2184
|
+
max-width: 1400px;
|
|
2185
|
+
}
|
|
2186
|
+
.w1450 {
|
|
2187
|
+
max-width: 1450px;
|
|
2188
|
+
}
|
|
2189
|
+
.w1500 {
|
|
2190
|
+
max-width: 1500px;
|
|
2191
|
+
}
|
|
2192
|
+
.w1550 {
|
|
2193
|
+
max-width: 1550px;
|
|
2194
|
+
}
|
|
2195
|
+
.w1600 {
|
|
2196
|
+
max-width: 1600px;
|
|
2197
|
+
}
|
|
2475
2198
|
.w-all,
|
|
2476
2199
|
.wall {
|
|
2477
2200
|
width: -webkit-fill-available;
|
|
@@ -3105,12 +2828,26 @@ img.preview[data-v-1be8d7b1] {
|
|
|
3105
2828
|
.p-025 {
|
|
3106
2829
|
padding: 0.25rem !important;
|
|
3107
2830
|
}
|
|
3108
|
-
.relative
|
|
3109
|
-
|
|
2831
|
+
.relative,
|
|
2832
|
+
.position-relative {
|
|
2833
|
+
position: relative !important;
|
|
3110
2834
|
}
|
|
3111
|
-
.absolute
|
|
2835
|
+
.absolute,
|
|
2836
|
+
.position-absolute {
|
|
3112
2837
|
position: absolute !important;
|
|
3113
2838
|
}
|
|
2839
|
+
.fixed,
|
|
2840
|
+
.position-fixed {
|
|
2841
|
+
position: fixed !important;
|
|
2842
|
+
}
|
|
2843
|
+
.static,
|
|
2844
|
+
.position-static {
|
|
2845
|
+
position: static !important;
|
|
2846
|
+
}
|
|
2847
|
+
.sticky,
|
|
2848
|
+
.position-sticky {
|
|
2849
|
+
position: sticky !important;
|
|
2850
|
+
}
|
|
3114
2851
|
.flex {
|
|
3115
2852
|
display: flex;
|
|
3116
2853
|
align-items: center;
|
|
@@ -3120,7 +2857,8 @@ img.preview[data-v-1be8d7b1] {
|
|
|
3120
2857
|
align-items: stretch;
|
|
3121
2858
|
}
|
|
3122
2859
|
.hide,
|
|
3123
|
-
.
|
|
2860
|
+
.none,
|
|
2861
|
+
.display-none {
|
|
3124
2862
|
display: none;
|
|
3125
2863
|
}
|
|
3126
2864
|
.display-block {
|
|
@@ -3136,9 +2874,6 @@ img.preview[data-v-1be8d7b1] {
|
|
|
3136
2874
|
.inline-block {
|
|
3137
2875
|
display: inline-block;
|
|
3138
2876
|
}
|
|
3139
|
-
.flex-wrap {
|
|
3140
|
-
flex-wrap: wrap;
|
|
3141
|
-
}
|
|
3142
2877
|
.flex-end {
|
|
3143
2878
|
justify-content: flex-end;
|
|
3144
2879
|
}
|
|
@@ -3430,172 +3165,1648 @@ img.preview[data-v-1be8d7b1] {
|
|
|
3430
3165
|
grid-template-columns: repeat(4, 1fr);
|
|
3431
3166
|
}
|
|
3432
3167
|
}
|
|
3433
|
-
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
|
|
3446
|
-
|
|
3447
|
-
|
|
3448
|
-
|
|
3449
|
-
|
|
3450
|
-
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
.
|
|
3455
|
-
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
|
|
3460
|
-
.
|
|
3461
|
-
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
.
|
|
3470
|
-
|
|
3471
|
-
|
|
3472
|
-
|
|
3473
|
-
|
|
3474
|
-
|
|
3475
|
-
|
|
3476
|
-
|
|
3477
|
-
|
|
3478
|
-
|
|
3479
|
-
|
|
3480
|
-
|
|
3481
|
-
.
|
|
3482
|
-
|
|
3483
|
-
}
|
|
3484
|
-
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
.
|
|
3490
|
-
|
|
3491
|
-
}
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3505
|
-
|
|
3506
|
-
.
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
|
|
3510
|
-
.
|
|
3511
|
-
|
|
3512
|
-
}
|
|
3513
|
-
|
|
3514
|
-
.
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
.
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
.
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
.
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
|
|
3558
|
-
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
|
|
3562
|
-
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
.
|
|
3571
|
-
|
|
3572
|
-
}
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
.
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
.
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
.
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
.
|
|
3598
|
-
|
|
3168
|
+
@media screen and (max-width: 910px) {
|
|
3169
|
+
.m_block {
|
|
3170
|
+
display: block !important;
|
|
3171
|
+
}
|
|
3172
|
+
|
|
3173
|
+
.m_inline {
|
|
3174
|
+
display: inline !important;
|
|
3175
|
+
}
|
|
3176
|
+
|
|
3177
|
+
.m_inline-block {
|
|
3178
|
+
display: inline-block !important;
|
|
3179
|
+
}
|
|
3180
|
+
|
|
3181
|
+
.m_flex {
|
|
3182
|
+
display: flex !important;
|
|
3183
|
+
}
|
|
3184
|
+
|
|
3185
|
+
.m_grid {
|
|
3186
|
+
display: grid !important;
|
|
3187
|
+
}
|
|
3188
|
+
|
|
3189
|
+
.m_hide,
|
|
3190
|
+
.m_none,
|
|
3191
|
+
.m_display-none {
|
|
3192
|
+
display: none !important;
|
|
3193
|
+
}
|
|
3194
|
+
|
|
3195
|
+
.m_inline-grid {
|
|
3196
|
+
display: inline-grid;
|
|
3197
|
+
}
|
|
3198
|
+
|
|
3199
|
+
.m_fill {
|
|
3200
|
+
width: 100vw;
|
|
3201
|
+
height: 100vh;
|
|
3202
|
+
}
|
|
3203
|
+
|
|
3204
|
+
.m_justify-items-center {
|
|
3205
|
+
justify-items: center;
|
|
3206
|
+
}
|
|
3207
|
+
|
|
3208
|
+
.m_justify-content-center {
|
|
3209
|
+
justify-content: center;
|
|
3210
|
+
}
|
|
3211
|
+
|
|
3212
|
+
.m_justify-content-start {
|
|
3213
|
+
justify-content: start;
|
|
3214
|
+
}
|
|
3215
|
+
|
|
3216
|
+
.m_align-content-center {
|
|
3217
|
+
align-content: center;
|
|
3218
|
+
}
|
|
3219
|
+
|
|
3220
|
+
.m_align-items-top {
|
|
3221
|
+
align-items: flex-start !important;
|
|
3222
|
+
}
|
|
3223
|
+
|
|
3224
|
+
.m_align-items-center {
|
|
3225
|
+
align-items: center;
|
|
3226
|
+
}
|
|
3227
|
+
|
|
3228
|
+
.m_align-items-end {
|
|
3229
|
+
align-items: end !important;
|
|
3230
|
+
}
|
|
3231
|
+
|
|
3232
|
+
.m_fit-content {
|
|
3233
|
+
width: fit-content;
|
|
3234
|
+
height: fit-content;
|
|
3235
|
+
}
|
|
3236
|
+
|
|
3237
|
+
.m_auto-flow-columns {
|
|
3238
|
+
grid-auto-flow: column;
|
|
3239
|
+
}
|
|
3240
|
+
|
|
3241
|
+
.m_grid-2-col {
|
|
3242
|
+
grid-template-columns: 1fr 1fr;
|
|
3243
|
+
}
|
|
3244
|
+
|
|
3245
|
+
.m_justify-content-between {
|
|
3246
|
+
justify-content: space-between;
|
|
3247
|
+
}
|
|
3248
|
+
|
|
3249
|
+
.m_justify-self-start {
|
|
3250
|
+
justify-self: start;
|
|
3251
|
+
}
|
|
3252
|
+
|
|
3253
|
+
.m_columns-max-content {
|
|
3254
|
+
grid-auto-columns: max-content;
|
|
3255
|
+
}
|
|
3256
|
+
|
|
3257
|
+
.m_rows-max-content {
|
|
3258
|
+
grid-auto-rows: max-content;
|
|
3259
|
+
}
|
|
3260
|
+
|
|
3261
|
+
.m_grid.overflow>* {
|
|
3262
|
+
min-width: 0px;
|
|
3263
|
+
overflow: auto;
|
|
3264
|
+
}
|
|
3265
|
+
|
|
3266
|
+
.m_justify-content-around {
|
|
3267
|
+
justify-content: space-between;
|
|
3268
|
+
}
|
|
3269
|
+
|
|
3270
|
+
.m_justify-content-end {
|
|
3271
|
+
justify-content: end;
|
|
3272
|
+
}
|
|
3273
|
+
|
|
3274
|
+
.m_justify-self-end {
|
|
3275
|
+
justify-self: end;
|
|
3276
|
+
}
|
|
3277
|
+
|
|
3278
|
+
.m_justify-self-center {
|
|
3279
|
+
justify-self: center;
|
|
3280
|
+
}
|
|
3281
|
+
|
|
3282
|
+
.m_position-start {
|
|
3283
|
+
position: absolute;
|
|
3284
|
+
top: 0px;
|
|
3285
|
+
inset-inline-start: 0px;
|
|
3286
|
+
}
|
|
3287
|
+
|
|
3288
|
+
.m_position-end {
|
|
3289
|
+
position: absolute;
|
|
3290
|
+
top: 0px;
|
|
3291
|
+
inset-inline-end: 0px;
|
|
3292
|
+
}
|
|
3293
|
+
|
|
3294
|
+
.m_positioned-full {
|
|
3295
|
+
top: 0;
|
|
3296
|
+
bottom: 0;
|
|
3297
|
+
inset-inline-start: 0;
|
|
3298
|
+
inset-inline-end: 0;
|
|
3299
|
+
}
|
|
3300
|
+
|
|
3301
|
+
.m_auto-flow-rows {
|
|
3302
|
+
grid-auto-flow: row;
|
|
3303
|
+
}
|
|
3304
|
+
|
|
3305
|
+
.m_align-items-start {
|
|
3306
|
+
align-items: start !important;
|
|
3307
|
+
}
|
|
3308
|
+
|
|
3309
|
+
.m_align-self-end {
|
|
3310
|
+
align-self: end;
|
|
3311
|
+
}
|
|
3312
|
+
|
|
3313
|
+
.min-100,
|
|
3314
|
+
.m_min100 {
|
|
3315
|
+
min-height: 100%;
|
|
3316
|
+
}
|
|
3317
|
+
|
|
3318
|
+
.m_w-100,
|
|
3319
|
+
.m_width-100 {
|
|
3320
|
+
width: 100% !important;
|
|
3321
|
+
}
|
|
3322
|
+
|
|
3323
|
+
.m_w300,
|
|
3324
|
+
.m_w350,
|
|
3325
|
+
.m_w400,
|
|
3326
|
+
.m_w450,
|
|
3327
|
+
.m_w500,
|
|
3328
|
+
.m_w550,
|
|
3329
|
+
.m_w600,
|
|
3330
|
+
.m_w650,
|
|
3331
|
+
.m_w700,
|
|
3332
|
+
.m_w750,
|
|
3333
|
+
.m_w770,
|
|
3334
|
+
.m_w800,
|
|
3335
|
+
.m_w850,
|
|
3336
|
+
.m_w900 {
|
|
3337
|
+
margin-inline-start: auto;
|
|
3338
|
+
margin-inline-end: auto;
|
|
3339
|
+
width: 98%;
|
|
3340
|
+
}
|
|
3341
|
+
|
|
3342
|
+
.m_w10 {
|
|
3343
|
+
max-width: 10px;
|
|
3344
|
+
}
|
|
3345
|
+
|
|
3346
|
+
.m_w20 {
|
|
3347
|
+
max-width: 20px;
|
|
3348
|
+
}
|
|
3349
|
+
|
|
3350
|
+
.m_w20 {
|
|
3351
|
+
max-width: 20px;
|
|
3352
|
+
}
|
|
3353
|
+
|
|
3354
|
+
.m_w30 {
|
|
3355
|
+
max-width: 30px;
|
|
3356
|
+
}
|
|
3357
|
+
|
|
3358
|
+
.m_w40 {
|
|
3359
|
+
max-width: 40px;
|
|
3360
|
+
}
|
|
3361
|
+
|
|
3362
|
+
.m_w50 {
|
|
3363
|
+
max-width: 50px;
|
|
3364
|
+
}
|
|
3365
|
+
|
|
3366
|
+
.m_w60 {
|
|
3367
|
+
max-width: 60px;
|
|
3368
|
+
}
|
|
3369
|
+
|
|
3370
|
+
.m_w70 {
|
|
3371
|
+
max-width: 70px;
|
|
3372
|
+
}
|
|
3373
|
+
|
|
3374
|
+
.m_w80 {
|
|
3375
|
+
max-width: 80px;
|
|
3376
|
+
}
|
|
3377
|
+
|
|
3378
|
+
.m_w90 {
|
|
3379
|
+
max-width: 90px;
|
|
3380
|
+
}
|
|
3381
|
+
|
|
3382
|
+
.m_w100 {
|
|
3383
|
+
max-width: 100px;
|
|
3384
|
+
}
|
|
3385
|
+
|
|
3386
|
+
.m_w150 {
|
|
3387
|
+
max-width: 150px;
|
|
3388
|
+
}
|
|
3389
|
+
|
|
3390
|
+
.m_w200 {
|
|
3391
|
+
max-width: 200px;
|
|
3392
|
+
}
|
|
3393
|
+
|
|
3394
|
+
.m_w250 {
|
|
3395
|
+
max-width: 250px;
|
|
3396
|
+
}
|
|
3397
|
+
|
|
3398
|
+
.m_w300 {
|
|
3399
|
+
max-width: 300px;
|
|
3400
|
+
}
|
|
3401
|
+
|
|
3402
|
+
.m_w350 {
|
|
3403
|
+
max-width: 350px;
|
|
3404
|
+
}
|
|
3405
|
+
|
|
3406
|
+
.m_w400 {
|
|
3407
|
+
max-width: 400px;
|
|
3408
|
+
}
|
|
3409
|
+
|
|
3410
|
+
.m_w450 {
|
|
3411
|
+
max-width: 450px;
|
|
3412
|
+
}
|
|
3413
|
+
|
|
3414
|
+
.m_w500 {
|
|
3415
|
+
max-width: 500px;
|
|
3416
|
+
}
|
|
3417
|
+
|
|
3418
|
+
.m_w550 {
|
|
3419
|
+
max-width: 550px;
|
|
3420
|
+
}
|
|
3421
|
+
|
|
3422
|
+
.m_w600 {
|
|
3423
|
+
max-width: 600px;
|
|
3424
|
+
}
|
|
3425
|
+
|
|
3426
|
+
.m_w650 {
|
|
3427
|
+
max-width: 650px;
|
|
3428
|
+
}
|
|
3429
|
+
|
|
3430
|
+
.m_w700 {
|
|
3431
|
+
max-width: 700px;
|
|
3432
|
+
}
|
|
3433
|
+
|
|
3434
|
+
.m_w750 {
|
|
3435
|
+
max-width: 750px;
|
|
3436
|
+
}
|
|
3437
|
+
|
|
3438
|
+
.m_w770 {
|
|
3439
|
+
max-width: 770px;
|
|
3440
|
+
}
|
|
3441
|
+
|
|
3442
|
+
.m_w800 {
|
|
3443
|
+
max-width: 800px;
|
|
3444
|
+
}
|
|
3445
|
+
|
|
3446
|
+
.m_w850 {
|
|
3447
|
+
max-width: 850px;
|
|
3448
|
+
}
|
|
3449
|
+
|
|
3450
|
+
.m_w-all,
|
|
3451
|
+
.m_wall {
|
|
3452
|
+
width: -webkit-fill-available;
|
|
3453
|
+
}
|
|
3454
|
+
|
|
3455
|
+
.m_h-all,
|
|
3456
|
+
.m_hall {
|
|
3457
|
+
height: -webkit-fill-available;
|
|
3458
|
+
}
|
|
3459
|
+
|
|
3460
|
+
.m_gap-0 {
|
|
3461
|
+
gap: 0;
|
|
3462
|
+
}
|
|
3463
|
+
|
|
3464
|
+
.m_gap-025 {
|
|
3465
|
+
gap: 0.25rem;
|
|
3466
|
+
}
|
|
3467
|
+
|
|
3468
|
+
.m_gap-05 {
|
|
3469
|
+
gap: 0.5rem;
|
|
3470
|
+
}
|
|
3471
|
+
|
|
3472
|
+
.m_gap-075 {
|
|
3473
|
+
gap: 0.75rem;
|
|
3474
|
+
}
|
|
3475
|
+
|
|
3476
|
+
.m_gap-1 {
|
|
3477
|
+
gap: 1rem;
|
|
3478
|
+
}
|
|
3479
|
+
|
|
3480
|
+
.m_gap-2 {
|
|
3481
|
+
gap: 2rem;
|
|
3482
|
+
}
|
|
3483
|
+
|
|
3484
|
+
.m_gap-3 {
|
|
3485
|
+
gap: 3rem;
|
|
3486
|
+
}
|
|
3487
|
+
|
|
3488
|
+
.m_gap-4 {
|
|
3489
|
+
gap: 4rem;
|
|
3490
|
+
}
|
|
3491
|
+
|
|
3492
|
+
.m_gap-5 {
|
|
3493
|
+
gap: 5rem;
|
|
3494
|
+
}
|
|
3495
|
+
|
|
3496
|
+
.m_gap-col-0,
|
|
3497
|
+
.m_col-gap-0 {
|
|
3498
|
+
column-gap: 0rem;
|
|
3499
|
+
}
|
|
3500
|
+
|
|
3501
|
+
.m_gap-col-025,
|
|
3502
|
+
.m_col-gap-025 {
|
|
3503
|
+
column-gap: 0.25rem;
|
|
3504
|
+
}
|
|
3505
|
+
|
|
3506
|
+
.m_gap-col-05,
|
|
3507
|
+
.m_col-gap-05 {
|
|
3508
|
+
column-gap: 0.5rem;
|
|
3509
|
+
}
|
|
3510
|
+
|
|
3511
|
+
.m_gap-col-075,
|
|
3512
|
+
.m_col-gap-075 {
|
|
3513
|
+
column-gap: 0.75rem;
|
|
3514
|
+
}
|
|
3515
|
+
|
|
3516
|
+
.m_gap-col-1,
|
|
3517
|
+
.m_col-gap-1 {
|
|
3518
|
+
column-gap: 1rem;
|
|
3519
|
+
}
|
|
3520
|
+
|
|
3521
|
+
.m_gap-col-2,
|
|
3522
|
+
.m_col-gap-2 {
|
|
3523
|
+
column-gap: 2rem;
|
|
3524
|
+
}
|
|
3525
|
+
|
|
3526
|
+
.m_gap-col-3,
|
|
3527
|
+
.m_col-gap-3 {
|
|
3528
|
+
column-gap: 3rem;
|
|
3529
|
+
}
|
|
3530
|
+
|
|
3531
|
+
.m_gap-col-4,
|
|
3532
|
+
.m_col-gap-4 {
|
|
3533
|
+
column-gap: 4rem;
|
|
3534
|
+
}
|
|
3535
|
+
|
|
3536
|
+
.m_gap-col-5,
|
|
3537
|
+
.m_col-gap-5 {
|
|
3538
|
+
column-gap: 5rem;
|
|
3539
|
+
}
|
|
3540
|
+
|
|
3541
|
+
.m_gap-row-0,
|
|
3542
|
+
.m_row-gap-0 {
|
|
3543
|
+
row-gap: 0rem;
|
|
3544
|
+
}
|
|
3545
|
+
|
|
3546
|
+
.m_gap-row-025,
|
|
3547
|
+
.m_row-gap-025 {
|
|
3548
|
+
row-gap: 0.25rem;
|
|
3549
|
+
}
|
|
3550
|
+
|
|
3551
|
+
.m_gap-row-05,
|
|
3552
|
+
.m_row-gap-05 {
|
|
3553
|
+
row-gap: 0.5rem;
|
|
3554
|
+
}
|
|
3555
|
+
|
|
3556
|
+
.m_gap-row-075,
|
|
3557
|
+
.m_row-gap-075 {
|
|
3558
|
+
row-gap: 0.75rem;
|
|
3559
|
+
}
|
|
3560
|
+
|
|
3561
|
+
.m_gap-row-1,
|
|
3562
|
+
.m_row-gap-1 {
|
|
3563
|
+
row-gap: 1rem;
|
|
3564
|
+
}
|
|
3565
|
+
|
|
3566
|
+
.m_gap-row-2,
|
|
3567
|
+
.m_row-gap-2 {
|
|
3568
|
+
row-gap: 2rem;
|
|
3569
|
+
}
|
|
3570
|
+
|
|
3571
|
+
.m_gap-row-3,
|
|
3572
|
+
.m_row-gap-3 {
|
|
3573
|
+
row-gap: 3rem;
|
|
3574
|
+
}
|
|
3575
|
+
|
|
3576
|
+
.m_gap-row-4,
|
|
3577
|
+
.m_row-gap-4 {
|
|
3578
|
+
row-gap: 4rem;
|
|
3579
|
+
}
|
|
3580
|
+
|
|
3581
|
+
.m_gap-row-5,
|
|
3582
|
+
.m_row-gap-5 {
|
|
3583
|
+
row-gap: 5rem;
|
|
3584
|
+
}
|
|
3585
|
+
|
|
3586
|
+
.m_flex-wrap {
|
|
3587
|
+
flex-wrap: wrap;
|
|
3588
|
+
}
|
|
3589
|
+
|
|
3590
|
+
.m_column {
|
|
3591
|
+
flex-direction: column;
|
|
3592
|
+
}
|
|
3593
|
+
|
|
3594
|
+
.m_row {
|
|
3595
|
+
flex-direction: row;
|
|
3596
|
+
}
|
|
3597
|
+
|
|
3598
|
+
.m_flex-grow {
|
|
3599
|
+
flex-grow: 1;
|
|
3600
|
+
}
|
|
3601
|
+
|
|
3602
|
+
.m_flex-shrink {
|
|
3603
|
+
flex-shrink: 1;
|
|
3604
|
+
}
|
|
3605
|
+
|
|
3606
|
+
.m_flex-2-col {
|
|
3607
|
+
max-width: 50%;
|
|
3608
|
+
flex: 1 1 calc(50% - 2rem);
|
|
3609
|
+
}
|
|
3610
|
+
|
|
3611
|
+
.m_flex-3-col {
|
|
3612
|
+
flex: 1 1 33.33333%;
|
|
3613
|
+
}
|
|
3614
|
+
|
|
3615
|
+
.m_mb-auto {
|
|
3616
|
+
margin-bottom: auto !important;
|
|
3617
|
+
}
|
|
3618
|
+
|
|
3619
|
+
.m_mb-0 {
|
|
3620
|
+
margin-bottom: 0rem !important;
|
|
3621
|
+
}
|
|
3622
|
+
|
|
3623
|
+
.m_mb-025 {
|
|
3624
|
+
margin-bottom: 0.25rem !important;
|
|
3625
|
+
}
|
|
3626
|
+
|
|
3627
|
+
.m_mb-05 {
|
|
3628
|
+
margin-bottom: 0.5rem !important;
|
|
3629
|
+
}
|
|
3630
|
+
|
|
3631
|
+
.m_mb-075 {
|
|
3632
|
+
margin-bottom: 0.75rem !important;
|
|
3633
|
+
}
|
|
3634
|
+
|
|
3635
|
+
.m_mb-1 {
|
|
3636
|
+
margin-bottom: 1rem !important;
|
|
3637
|
+
}
|
|
3638
|
+
|
|
3639
|
+
.m_mb-2 {
|
|
3640
|
+
margin-bottom: 2rem !important;
|
|
3641
|
+
}
|
|
3642
|
+
|
|
3643
|
+
.m_mb-3 {
|
|
3644
|
+
margin-bottom: 3rem !important;
|
|
3645
|
+
}
|
|
3646
|
+
|
|
3647
|
+
.m_mb-4 {
|
|
3648
|
+
margin-bottom: 4rem !important;
|
|
3649
|
+
}
|
|
3650
|
+
|
|
3651
|
+
.m_mt-auto {
|
|
3652
|
+
margin-top: auto !important;
|
|
3653
|
+
}
|
|
3654
|
+
|
|
3655
|
+
.m_mt-0 {
|
|
3656
|
+
margin-top: 0rem !important;
|
|
3657
|
+
}
|
|
3658
|
+
|
|
3659
|
+
.m_mt-025 {
|
|
3660
|
+
margin-top: 0.25rem !important;
|
|
3661
|
+
}
|
|
3662
|
+
|
|
3663
|
+
.m_mt-05 {
|
|
3664
|
+
margin-top: 0.5rem !important;
|
|
3665
|
+
}
|
|
3666
|
+
|
|
3667
|
+
.m_mt-075 {
|
|
3668
|
+
margin-top: 0.75rem !important;
|
|
3669
|
+
}
|
|
3670
|
+
|
|
3671
|
+
.m_mt-1 {
|
|
3672
|
+
margin-top: 1rem !important;
|
|
3673
|
+
}
|
|
3674
|
+
|
|
3675
|
+
.m_mt-2 {
|
|
3676
|
+
margin-top: 2rem !important;
|
|
3677
|
+
}
|
|
3678
|
+
|
|
3679
|
+
.m_mt-3 {
|
|
3680
|
+
margin-top: 3rem !important;
|
|
3681
|
+
}
|
|
3682
|
+
|
|
3683
|
+
.m_mt-4 {
|
|
3684
|
+
margin-top: 4rem !important;
|
|
3685
|
+
}
|
|
3686
|
+
|
|
3687
|
+
.m_my-auto {
|
|
3688
|
+
margin-top: auto !important;
|
|
3689
|
+
margin-bottom: auto !important;
|
|
3690
|
+
}
|
|
3691
|
+
|
|
3692
|
+
.m_my-0 {
|
|
3693
|
+
margin-top: 0rem !important;
|
|
3694
|
+
margin-bottom: 0rem !important;
|
|
3695
|
+
}
|
|
3696
|
+
|
|
3697
|
+
.m_my-025 {
|
|
3698
|
+
margin-top: 0.25rem !important;
|
|
3699
|
+
margin-bottom: 0.25rem !important;
|
|
3700
|
+
}
|
|
3701
|
+
|
|
3702
|
+
.m_my-05 {
|
|
3703
|
+
margin-top: 0.5rem !important;
|
|
3704
|
+
margin-bottom: 0.5rem !important;
|
|
3705
|
+
}
|
|
3706
|
+
|
|
3707
|
+
.m_my-075 {
|
|
3708
|
+
margin-top: 0.75rem !important;
|
|
3709
|
+
margin-bottom: 0.75rem !important;
|
|
3710
|
+
}
|
|
3711
|
+
|
|
3712
|
+
.m_my-1 {
|
|
3713
|
+
margin-top: 1rem !important;
|
|
3714
|
+
margin-bottom: 1rem !important;
|
|
3715
|
+
}
|
|
3716
|
+
|
|
3717
|
+
.m_my-2 {
|
|
3718
|
+
margin-top: 2rem !important;
|
|
3719
|
+
margin-bottom: 2rem !important;
|
|
3720
|
+
}
|
|
3721
|
+
|
|
3722
|
+
.m_my-3 {
|
|
3723
|
+
margin-top: 3rem !important;
|
|
3724
|
+
margin-bottom: 3rem !important;
|
|
3725
|
+
}
|
|
3726
|
+
|
|
3727
|
+
.m_my-4 {
|
|
3728
|
+
margin-top: 4rem !important;
|
|
3729
|
+
margin-bottom: 4rem !important;
|
|
3730
|
+
}
|
|
3731
|
+
|
|
3732
|
+
.m_ms-auto {
|
|
3733
|
+
margin-inline-start: auto !important;
|
|
3734
|
+
}
|
|
3735
|
+
|
|
3736
|
+
.m_ms-0 {
|
|
3737
|
+
margin-inline-start: 0rem !important;
|
|
3738
|
+
}
|
|
3739
|
+
|
|
3740
|
+
.m_ms-025 {
|
|
3741
|
+
margin-inline-start: 0.25rem !important;
|
|
3742
|
+
}
|
|
3743
|
+
|
|
3744
|
+
.m_ms-05 {
|
|
3745
|
+
margin-inline-start: 0.5rem !important;
|
|
3746
|
+
}
|
|
3747
|
+
|
|
3748
|
+
.m_ms-075 {
|
|
3749
|
+
margin-inline-start: 0.75rem !important;
|
|
3750
|
+
}
|
|
3751
|
+
|
|
3752
|
+
.m_ms-1 {
|
|
3753
|
+
margin-inline-start: 1rem !important;
|
|
3754
|
+
}
|
|
3755
|
+
|
|
3756
|
+
.m_ms-2 {
|
|
3757
|
+
margin-inline-start: 2rem !important;
|
|
3758
|
+
}
|
|
3759
|
+
|
|
3760
|
+
.m_ms-3 {
|
|
3761
|
+
margin-inline-start: 3rem !important;
|
|
3762
|
+
}
|
|
3763
|
+
|
|
3764
|
+
.m_ms-4 {
|
|
3765
|
+
margin-inline-start: 4rem !important;
|
|
3766
|
+
}
|
|
3767
|
+
|
|
3768
|
+
.m_me-auto {
|
|
3769
|
+
margin-inline-end: auto !important;
|
|
3770
|
+
}
|
|
3771
|
+
|
|
3772
|
+
.m_me-0 {
|
|
3773
|
+
margin-inline-end: 0rem !important;
|
|
3774
|
+
}
|
|
3775
|
+
|
|
3776
|
+
.m_me-025 {
|
|
3777
|
+
margin-inline-end: 0.25rem !important;
|
|
3778
|
+
}
|
|
3779
|
+
|
|
3780
|
+
.m_me-05 {
|
|
3781
|
+
margin-inline-end: 0.5rem !important;
|
|
3782
|
+
}
|
|
3783
|
+
|
|
3784
|
+
.m_me-075 {
|
|
3785
|
+
margin-inline-end: 0.75rem !important;
|
|
3786
|
+
}
|
|
3787
|
+
|
|
3788
|
+
.m_me-1 {
|
|
3789
|
+
margin-inline-end: 1rem !important;
|
|
3790
|
+
}
|
|
3791
|
+
|
|
3792
|
+
.m_me-2 {
|
|
3793
|
+
margin-inline-end: 2rem !important;
|
|
3794
|
+
}
|
|
3795
|
+
|
|
3796
|
+
.m_me-3 {
|
|
3797
|
+
margin-inline-end: 3rem !important;
|
|
3798
|
+
}
|
|
3799
|
+
|
|
3800
|
+
.m_me-4 {
|
|
3801
|
+
margin-inline-end: 4rem !important;
|
|
3802
|
+
}
|
|
3803
|
+
|
|
3804
|
+
.mx-auto,
|
|
3805
|
+
.m_margin-auto {
|
|
3806
|
+
margin-inline-start: auto !important;
|
|
3807
|
+
margin-inline-end: auto !important;
|
|
3808
|
+
}
|
|
3809
|
+
|
|
3810
|
+
.m_mx-0 {
|
|
3811
|
+
margin-inline-start: 0rem !important;
|
|
3812
|
+
margin-inline-end: 0rem !important;
|
|
3813
|
+
}
|
|
3814
|
+
|
|
3815
|
+
.m_mx-025 {
|
|
3816
|
+
margin-inline-start: 0.25rem !important;
|
|
3817
|
+
margin-inline-end: 0.25rem !important;
|
|
3818
|
+
}
|
|
3819
|
+
|
|
3820
|
+
.m_mx-05 {
|
|
3821
|
+
margin-inline-start: 0.5rem !important;
|
|
3822
|
+
margin-inline-end: 0.5rem !important;
|
|
3823
|
+
}
|
|
3824
|
+
|
|
3825
|
+
.m_mx-075 {
|
|
3826
|
+
margin-inline-start: 0.75rem !important;
|
|
3827
|
+
margin-inline-end: 0.75rem !important;
|
|
3828
|
+
}
|
|
3829
|
+
|
|
3830
|
+
.m_mx-1 {
|
|
3831
|
+
margin-inline-start: 1rem !important;
|
|
3832
|
+
margin-inline-end: 1rem !important;
|
|
3833
|
+
}
|
|
3834
|
+
|
|
3835
|
+
.m_mx-2 {
|
|
3836
|
+
margin-inline-start: 2rem !important;
|
|
3837
|
+
margin-inline-end: 2rem !important;
|
|
3838
|
+
}
|
|
3839
|
+
|
|
3840
|
+
.m_mx-3 {
|
|
3841
|
+
margin-inline-start: 3rem !important;
|
|
3842
|
+
margin-inline-end: 3rem !important;
|
|
3843
|
+
}
|
|
3844
|
+
|
|
3845
|
+
.m_mx-4 {
|
|
3846
|
+
margin-inline-start: 4rem !important;
|
|
3847
|
+
margin-inline-end: 4rem !important;
|
|
3848
|
+
}
|
|
3849
|
+
|
|
3850
|
+
.m_m-auto {
|
|
3851
|
+
margin: auto !important;
|
|
3852
|
+
}
|
|
3853
|
+
|
|
3854
|
+
.m_m-0 {
|
|
3855
|
+
margin: 0rem !important;
|
|
3856
|
+
}
|
|
3857
|
+
|
|
3858
|
+
.m_m-025 {
|
|
3859
|
+
margin: 0.25rem !important;
|
|
3860
|
+
}
|
|
3861
|
+
|
|
3862
|
+
.m_m-05 {
|
|
3863
|
+
margin: 0.5rem !important;
|
|
3864
|
+
}
|
|
3865
|
+
|
|
3866
|
+
.m_m-075 {
|
|
3867
|
+
margin: 0.75rem !important;
|
|
3868
|
+
}
|
|
3869
|
+
|
|
3870
|
+
.m_m-1 {
|
|
3871
|
+
margin: 1rem !important;
|
|
3872
|
+
}
|
|
3873
|
+
|
|
3874
|
+
.m_m-2 {
|
|
3875
|
+
margin: 2rem !important;
|
|
3876
|
+
}
|
|
3877
|
+
|
|
3878
|
+
.m_m-3 {
|
|
3879
|
+
margin: 3rem !important;
|
|
3880
|
+
}
|
|
3881
|
+
|
|
3882
|
+
.m_m-4 {
|
|
3883
|
+
margin: 4rem !important;
|
|
3884
|
+
}
|
|
3885
|
+
|
|
3886
|
+
.m_-mb-025 {
|
|
3887
|
+
margin-bottom: -0.25rem !important;
|
|
3888
|
+
}
|
|
3889
|
+
|
|
3890
|
+
.m_-mb-05 {
|
|
3891
|
+
margin-bottom: -0.5rem !important;
|
|
3892
|
+
}
|
|
3893
|
+
|
|
3894
|
+
.m_-mb-075 {
|
|
3895
|
+
margin-bottom: -0.75rem !important;
|
|
3896
|
+
}
|
|
3897
|
+
|
|
3898
|
+
.m_-mb-1 {
|
|
3899
|
+
margin-bottom: -1rem !important;
|
|
3900
|
+
}
|
|
3901
|
+
|
|
3902
|
+
.m_-mb-2 {
|
|
3903
|
+
margin-bottom: -2rem !important;
|
|
3904
|
+
}
|
|
3905
|
+
|
|
3906
|
+
.m_-mb-3 {
|
|
3907
|
+
margin-bottom: -3rem !important;
|
|
3908
|
+
}
|
|
3909
|
+
|
|
3910
|
+
.m_-mb-4 {
|
|
3911
|
+
margin-bottom: -4rem !important;
|
|
3912
|
+
}
|
|
3913
|
+
|
|
3914
|
+
.m_-mt-025 {
|
|
3915
|
+
margin-top: -0.25rem !important;
|
|
3916
|
+
}
|
|
3917
|
+
|
|
3918
|
+
.m_-mt-05 {
|
|
3919
|
+
margin-top: -0.5rem !important;
|
|
3920
|
+
}
|
|
3921
|
+
|
|
3922
|
+
.m_-mt-075 {
|
|
3923
|
+
margin-top: 0.75rem !important;
|
|
3924
|
+
}
|
|
3925
|
+
|
|
3926
|
+
.m_-mt-1 {
|
|
3927
|
+
margin-top: -1rem !important;
|
|
3928
|
+
}
|
|
3929
|
+
|
|
3930
|
+
.m_-mt-2 {
|
|
3931
|
+
margin-top: -2rem !important;
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3934
|
+
.m_-mt-3 {
|
|
3935
|
+
margin-top: -3rem !important;
|
|
3936
|
+
}
|
|
3937
|
+
|
|
3938
|
+
.m_-mt-4 {
|
|
3939
|
+
margin-top: -4rem !important;
|
|
3940
|
+
}
|
|
3941
|
+
|
|
3942
|
+
.m_-my-025 {
|
|
3943
|
+
margin-top: -0.25rem !important;
|
|
3944
|
+
margin-bottom: -0.25rem !important;
|
|
3945
|
+
}
|
|
3946
|
+
|
|
3947
|
+
.m_-my-05 {
|
|
3948
|
+
margin-top: -0.5rem !important;
|
|
3949
|
+
margin-bottom: -0.5rem !important;
|
|
3950
|
+
}
|
|
3951
|
+
|
|
3952
|
+
.m_-my-075 {
|
|
3953
|
+
margin-top: 0.75rem !important;
|
|
3954
|
+
margin-bottom: 0.75rem !important;
|
|
3955
|
+
}
|
|
3956
|
+
|
|
3957
|
+
.m_-my-1 {
|
|
3958
|
+
margin-top: -1rem !important;
|
|
3959
|
+
margin-bottom: -1rem !important;
|
|
3960
|
+
}
|
|
3961
|
+
|
|
3962
|
+
.m_-my-2 {
|
|
3963
|
+
margin-top: -2rem !important;
|
|
3964
|
+
margin-bottom: -2rem !important;
|
|
3965
|
+
}
|
|
3966
|
+
|
|
3967
|
+
.m_-my-3 {
|
|
3968
|
+
margin-top: -3rem !important;
|
|
3969
|
+
margin-bottom: -3rem !important;
|
|
3970
|
+
}
|
|
3971
|
+
|
|
3972
|
+
.m_-my-4 {
|
|
3973
|
+
margin-top: -4rem !important;
|
|
3974
|
+
margin-bottom: -4rem !important;
|
|
3975
|
+
}
|
|
3976
|
+
|
|
3977
|
+
.m_-ms-025 {
|
|
3978
|
+
margin-inline-start: -0.25rem !important;
|
|
3979
|
+
}
|
|
3980
|
+
|
|
3981
|
+
.m_-ms-05 {
|
|
3982
|
+
margin-inline-start: -0.5rem !important;
|
|
3983
|
+
}
|
|
3984
|
+
|
|
3985
|
+
.m_-ms-075 {
|
|
3986
|
+
margin-inline-start: -0.75rem !important;
|
|
3987
|
+
}
|
|
3988
|
+
|
|
3989
|
+
.m_-ms-1 {
|
|
3990
|
+
margin-inline-start: -1rem !important;
|
|
3991
|
+
}
|
|
3992
|
+
|
|
3993
|
+
.m_-ms-2 {
|
|
3994
|
+
margin-inline-start: -2rem !important;
|
|
3995
|
+
}
|
|
3996
|
+
|
|
3997
|
+
.m_-ms-3 {
|
|
3998
|
+
margin-inline-start: -3rem !important;
|
|
3999
|
+
}
|
|
4000
|
+
|
|
4001
|
+
.m_-ms-4 {
|
|
4002
|
+
margin-inline-start: -4rem !important;
|
|
4003
|
+
}
|
|
4004
|
+
|
|
4005
|
+
.m_-me-025 {
|
|
4006
|
+
margin-inline-end: -0.25rem !important;
|
|
4007
|
+
}
|
|
4008
|
+
|
|
4009
|
+
.m_-me-05 {
|
|
4010
|
+
margin-inline-end: -0.5rem !important;
|
|
4011
|
+
}
|
|
4012
|
+
|
|
4013
|
+
.m_-me-075 {
|
|
4014
|
+
margin-inline-end: -0.75rem !important;
|
|
4015
|
+
}
|
|
4016
|
+
|
|
4017
|
+
.m_-me-1 {
|
|
4018
|
+
margin-inline-end: -1rem !important;
|
|
4019
|
+
}
|
|
4020
|
+
|
|
4021
|
+
.m_-me-2 {
|
|
4022
|
+
margin-inline-end: -2rem !important;
|
|
4023
|
+
}
|
|
4024
|
+
|
|
4025
|
+
.m_-me-3 {
|
|
4026
|
+
margin-inline-end: -3rem !important;
|
|
4027
|
+
}
|
|
4028
|
+
|
|
4029
|
+
.m_-me-4 {
|
|
4030
|
+
margin-inline-end: -4rem !important;
|
|
4031
|
+
}
|
|
4032
|
+
|
|
4033
|
+
.m_pb-0 {
|
|
4034
|
+
padding-bottom: 0rem !important;
|
|
4035
|
+
}
|
|
4036
|
+
|
|
4037
|
+
.m_pb-1 {
|
|
4038
|
+
padding-bottom: 1rem !important;
|
|
4039
|
+
}
|
|
4040
|
+
|
|
4041
|
+
.m_pb-2 {
|
|
4042
|
+
padding-bottom: 2rem !important;
|
|
4043
|
+
}
|
|
4044
|
+
|
|
4045
|
+
.m_pb-3 {
|
|
4046
|
+
padding-bottom: 3rem !important;
|
|
4047
|
+
}
|
|
4048
|
+
|
|
4049
|
+
.m_pb-4 {
|
|
4050
|
+
padding-bottom: 4rem !important;
|
|
4051
|
+
}
|
|
4052
|
+
|
|
4053
|
+
.m_pb-075 {
|
|
4054
|
+
padding-bottom: 0.75rem !important;
|
|
4055
|
+
}
|
|
4056
|
+
|
|
4057
|
+
.m_pb-05 {
|
|
4058
|
+
padding-bottom: 0.5rem !important;
|
|
4059
|
+
}
|
|
4060
|
+
|
|
4061
|
+
.m_pb-025 {
|
|
4062
|
+
padding-bottom: 0.25rem !important;
|
|
4063
|
+
}
|
|
4064
|
+
|
|
4065
|
+
.m_pt-0 {
|
|
4066
|
+
padding-top: 0rem !important;
|
|
4067
|
+
}
|
|
4068
|
+
|
|
4069
|
+
.m_pt-1 {
|
|
4070
|
+
padding-top: 1rem !important;
|
|
4071
|
+
}
|
|
4072
|
+
|
|
4073
|
+
.m_pt-2 {
|
|
4074
|
+
padding-top: 2rem !important;
|
|
4075
|
+
}
|
|
4076
|
+
|
|
4077
|
+
.m_pt-3 {
|
|
4078
|
+
padding-top: 3rem !important;
|
|
4079
|
+
}
|
|
4080
|
+
|
|
4081
|
+
.m_pt-4 {
|
|
4082
|
+
padding-top: 4rem !important;
|
|
4083
|
+
}
|
|
4084
|
+
|
|
4085
|
+
.m_pt-075 {
|
|
4086
|
+
padding-top: 0.75rem !important;
|
|
4087
|
+
}
|
|
4088
|
+
|
|
4089
|
+
.m_pt-05 {
|
|
4090
|
+
padding-top: 0.5rem !important;
|
|
4091
|
+
}
|
|
4092
|
+
|
|
4093
|
+
.m_pt-025 {
|
|
4094
|
+
padding-top: 0.25rem !important;
|
|
4095
|
+
}
|
|
4096
|
+
|
|
4097
|
+
.m_ps-0 {
|
|
4098
|
+
padding-inline-start: 0rem !important;
|
|
4099
|
+
}
|
|
4100
|
+
|
|
4101
|
+
.m_ps-1 {
|
|
4102
|
+
padding-inline-start: 1rem !important;
|
|
4103
|
+
}
|
|
4104
|
+
|
|
4105
|
+
.m_ps-2 {
|
|
4106
|
+
padding-inline-start: 2rem !important;
|
|
4107
|
+
}
|
|
4108
|
+
|
|
4109
|
+
.m_ps-3 {
|
|
4110
|
+
padding-inline-start: 3rem !important;
|
|
4111
|
+
}
|
|
4112
|
+
|
|
4113
|
+
.m_ps-4 {
|
|
4114
|
+
padding-inline-start: 4rem !important;
|
|
4115
|
+
}
|
|
4116
|
+
|
|
4117
|
+
.m_ps-075 {
|
|
4118
|
+
padding-inline-start: 0.75rem !important;
|
|
4119
|
+
}
|
|
4120
|
+
|
|
4121
|
+
.m_ps-05 {
|
|
4122
|
+
padding-inline-start: 0.5rem !important;
|
|
4123
|
+
}
|
|
4124
|
+
|
|
4125
|
+
.m_ps-025 {
|
|
4126
|
+
padding-inline-start: 0.25rem !important;
|
|
4127
|
+
}
|
|
4128
|
+
|
|
4129
|
+
.m_pe-0 {
|
|
4130
|
+
padding-inline-end: 0rem !important;
|
|
4131
|
+
}
|
|
4132
|
+
|
|
4133
|
+
.m_pe-1 {
|
|
4134
|
+
padding-inline-end: 1rem !important;
|
|
4135
|
+
}
|
|
4136
|
+
|
|
4137
|
+
.m_pe-2 {
|
|
4138
|
+
padding-inline-end: 2rem !important;
|
|
4139
|
+
}
|
|
4140
|
+
|
|
4141
|
+
.m_pe-3 {
|
|
4142
|
+
padding-inline-end: 3rem !important;
|
|
4143
|
+
}
|
|
4144
|
+
|
|
4145
|
+
.m_pe-4 {
|
|
4146
|
+
padding-inline-end: 4rem !important;
|
|
4147
|
+
}
|
|
4148
|
+
|
|
4149
|
+
.m_pe-075 {
|
|
4150
|
+
padding-inline-end: 0.75rem !important;
|
|
4151
|
+
}
|
|
4152
|
+
|
|
4153
|
+
.m_pe-05 {
|
|
4154
|
+
padding-inline-end: 0.5rem !important;
|
|
4155
|
+
}
|
|
4156
|
+
|
|
4157
|
+
.m_pe-025 {
|
|
4158
|
+
padding-inline-end: 0.25rem !important;
|
|
4159
|
+
}
|
|
4160
|
+
|
|
4161
|
+
.m_px-0 {
|
|
4162
|
+
padding-inline-end: 0rem !important;
|
|
4163
|
+
padding-inline-start: 0rem !important;
|
|
4164
|
+
}
|
|
4165
|
+
|
|
4166
|
+
.m_px-1 {
|
|
4167
|
+
padding-inline-end: 1rem !important;
|
|
4168
|
+
padding-inline-start: 1rem !important;
|
|
4169
|
+
}
|
|
4170
|
+
|
|
4171
|
+
.m_px-2 {
|
|
4172
|
+
padding-inline-end: 2rem !important;
|
|
4173
|
+
padding-inline-start: 2rem !important;
|
|
4174
|
+
}
|
|
4175
|
+
|
|
4176
|
+
.m_px-3 {
|
|
4177
|
+
padding-inline-end: 3rem !important;
|
|
4178
|
+
padding-inline-start: 3rem !important;
|
|
4179
|
+
}
|
|
4180
|
+
|
|
4181
|
+
.m_px-4 {
|
|
4182
|
+
padding-inline-end: 4rem !important;
|
|
4183
|
+
padding-inline-start: 4rem !important;
|
|
4184
|
+
}
|
|
4185
|
+
|
|
4186
|
+
.m_px-075 {
|
|
4187
|
+
padding-inline-end: 0.75rem !important;
|
|
4188
|
+
padding-inline-start: 0.75rem !important;
|
|
4189
|
+
}
|
|
4190
|
+
|
|
4191
|
+
.m_px-05 {
|
|
4192
|
+
padding-inline-end: 0.5rem !important;
|
|
4193
|
+
padding-inline-start: 0.5rem !important;
|
|
4194
|
+
}
|
|
4195
|
+
|
|
4196
|
+
.m_px-025 {
|
|
4197
|
+
padding-inline-end: 0.25rem !important;
|
|
4198
|
+
padding-inline-start: 0.25rem !important;
|
|
4199
|
+
}
|
|
4200
|
+
|
|
4201
|
+
.m_py-0 {
|
|
4202
|
+
padding-top: 0rem !important;
|
|
4203
|
+
padding-bottom: 0rem !important;
|
|
4204
|
+
}
|
|
4205
|
+
|
|
4206
|
+
.m_py-1 {
|
|
4207
|
+
padding-top: 1rem !important;
|
|
4208
|
+
padding-bottom: 1rem !important;
|
|
4209
|
+
}
|
|
4210
|
+
|
|
4211
|
+
.m_py-2 {
|
|
4212
|
+
padding-top: 2rem !important;
|
|
4213
|
+
padding-bottom: 2rem !important;
|
|
4214
|
+
}
|
|
4215
|
+
|
|
4216
|
+
.m_py-3 {
|
|
4217
|
+
padding-top: 3rem !important;
|
|
4218
|
+
padding-bottom: 3rem !important;
|
|
4219
|
+
}
|
|
4220
|
+
|
|
4221
|
+
.m_py-4 {
|
|
4222
|
+
padding-top: 4rem !important;
|
|
4223
|
+
padding-bottom: 4rem !important;
|
|
4224
|
+
}
|
|
4225
|
+
|
|
4226
|
+
.m_py-075 {
|
|
4227
|
+
padding-top: 0.75rem !important;
|
|
4228
|
+
padding-bottom: 0.75rem !important;
|
|
4229
|
+
}
|
|
4230
|
+
|
|
4231
|
+
.m_py-05 {
|
|
4232
|
+
padding-top: 0.5rem !important;
|
|
4233
|
+
padding-bottom: 0.5rem !important;
|
|
4234
|
+
}
|
|
4235
|
+
|
|
4236
|
+
.m_py-025 {
|
|
4237
|
+
padding-top: 0.25rem !important;
|
|
4238
|
+
padding-bottom: 0.25rem !important;
|
|
4239
|
+
}
|
|
4240
|
+
|
|
4241
|
+
.m_p-0 {
|
|
4242
|
+
padding: 0rem !important;
|
|
4243
|
+
}
|
|
4244
|
+
|
|
4245
|
+
.m_p-1 {
|
|
4246
|
+
padding: 1rem !important;
|
|
4247
|
+
}
|
|
4248
|
+
|
|
4249
|
+
.m_p-2 {
|
|
4250
|
+
padding: 2rem !important;
|
|
4251
|
+
}
|
|
4252
|
+
|
|
4253
|
+
.m_p-3 {
|
|
4254
|
+
padding: 3rem !important;
|
|
4255
|
+
}
|
|
4256
|
+
|
|
4257
|
+
.m_p-4 {
|
|
4258
|
+
padding: 4rem !important;
|
|
4259
|
+
}
|
|
4260
|
+
|
|
4261
|
+
.m_p-075 {
|
|
4262
|
+
padding: 0.75rem !important;
|
|
4263
|
+
}
|
|
4264
|
+
|
|
4265
|
+
.m_p-05 {
|
|
4266
|
+
padding: 0.5rem !important;
|
|
4267
|
+
}
|
|
4268
|
+
|
|
4269
|
+
.m_p-025 {
|
|
4270
|
+
padding: 0.25rem !important;
|
|
4271
|
+
}
|
|
4272
|
+
|
|
4273
|
+
.m_relative,
|
|
4274
|
+
.m_position-relative {
|
|
4275
|
+
position: relative !important;
|
|
4276
|
+
}
|
|
4277
|
+
|
|
4278
|
+
.m_absolute,
|
|
4279
|
+
.m_position-absolute {
|
|
4280
|
+
position: absolute !important;
|
|
4281
|
+
}
|
|
4282
|
+
|
|
4283
|
+
.m_fixed,
|
|
4284
|
+
.m_position-fixed {
|
|
4285
|
+
position: fixed !important;
|
|
4286
|
+
}
|
|
4287
|
+
|
|
4288
|
+
.m_static,
|
|
4289
|
+
.m_position-static {
|
|
4290
|
+
position: static !important;
|
|
4291
|
+
}
|
|
4292
|
+
|
|
4293
|
+
.m_sticky,
|
|
4294
|
+
.m_position-sticky {
|
|
4295
|
+
position: sticky !important;
|
|
4296
|
+
}
|
|
4297
|
+
|
|
4298
|
+
.m_flex-stretch {
|
|
4299
|
+
display: flex;
|
|
4300
|
+
align-items: stretch;
|
|
4301
|
+
}
|
|
4302
|
+
|
|
4303
|
+
.m_flex-end {
|
|
4304
|
+
justify-content: flex-end;
|
|
4305
|
+
}
|
|
4306
|
+
|
|
4307
|
+
.m_space-between {
|
|
4308
|
+
justify-content: space-between;
|
|
4309
|
+
}
|
|
4310
|
+
|
|
4311
|
+
.m_label {
|
|
4312
|
+
display: block;
|
|
4313
|
+
font-size: var(--label-font-size);
|
|
4314
|
+
margin-bottom: 2px;
|
|
4315
|
+
line-height: 1.3;
|
|
4316
|
+
color: var(--label-color);
|
|
4317
|
+
}
|
|
4318
|
+
|
|
4319
|
+
.m_h-10 {
|
|
4320
|
+
height: 10%;
|
|
4321
|
+
}
|
|
4322
|
+
|
|
4323
|
+
.m_vh-10 {
|
|
4324
|
+
height: 10vh;
|
|
4325
|
+
}
|
|
4326
|
+
|
|
4327
|
+
.m_h-10px {
|
|
4328
|
+
height: 10px;
|
|
4329
|
+
}
|
|
4330
|
+
|
|
4331
|
+
.m_hm-10px {
|
|
4332
|
+
max-height: 10px;
|
|
4333
|
+
}
|
|
4334
|
+
|
|
4335
|
+
|
|
4336
|
+
.m_h-20 {
|
|
4337
|
+
height: 20%;
|
|
4338
|
+
}
|
|
4339
|
+
|
|
4340
|
+
.m_vh-20 {
|
|
4341
|
+
height: 20vh;
|
|
4342
|
+
}
|
|
4343
|
+
|
|
4344
|
+
.m_h-20px {
|
|
4345
|
+
height: 20px;
|
|
4346
|
+
}
|
|
4347
|
+
|
|
4348
|
+
.m_hm-20px {
|
|
4349
|
+
max-height: 20px;
|
|
4350
|
+
}
|
|
4351
|
+
|
|
4352
|
+
.m_h-30 {
|
|
4353
|
+
height: 30%;
|
|
4354
|
+
}
|
|
4355
|
+
|
|
4356
|
+
.m_vh-30 {
|
|
4357
|
+
height: 30vh;
|
|
4358
|
+
}
|
|
4359
|
+
|
|
4360
|
+
.m_h-30px {
|
|
4361
|
+
height: 30px;
|
|
4362
|
+
}
|
|
4363
|
+
|
|
4364
|
+
.m_hm-30px {
|
|
4365
|
+
max-height: 30px;
|
|
4366
|
+
}
|
|
4367
|
+
|
|
4368
|
+
.m_h-40 {
|
|
4369
|
+
height: 40%;
|
|
4370
|
+
}
|
|
4371
|
+
|
|
4372
|
+
.m_vh-40 {
|
|
4373
|
+
height: 40vh;
|
|
4374
|
+
}
|
|
4375
|
+
|
|
4376
|
+
.m_h-40px {
|
|
4377
|
+
height: 40px;
|
|
4378
|
+
}
|
|
4379
|
+
|
|
4380
|
+
.m_hm-40px {
|
|
4381
|
+
max-height: 40px;
|
|
4382
|
+
}
|
|
4383
|
+
|
|
4384
|
+
.m_h-50 {
|
|
4385
|
+
height: 50%;
|
|
4386
|
+
}
|
|
4387
|
+
|
|
4388
|
+
.m_vh-50 {
|
|
4389
|
+
height: 50vh;
|
|
4390
|
+
}
|
|
4391
|
+
|
|
4392
|
+
.m_h-50px {
|
|
4393
|
+
height: 50px;
|
|
4394
|
+
}
|
|
4395
|
+
|
|
4396
|
+
.m_hm-50px {
|
|
4397
|
+
max-height: 50px;
|
|
4398
|
+
}
|
|
4399
|
+
|
|
4400
|
+
.m_h-60 {
|
|
4401
|
+
height: 60%;
|
|
4402
|
+
}
|
|
4403
|
+
|
|
4404
|
+
.m_vh-60 {
|
|
4405
|
+
height: 60vh;
|
|
4406
|
+
}
|
|
4407
|
+
|
|
4408
|
+
.m_h-60px {
|
|
4409
|
+
height: 60px;
|
|
4410
|
+
}
|
|
4411
|
+
|
|
4412
|
+
.m_hm-60px {
|
|
4413
|
+
max-height: 60px;
|
|
4414
|
+
}
|
|
4415
|
+
|
|
4416
|
+
.m_h-70 {
|
|
4417
|
+
height: 70%;
|
|
4418
|
+
}
|
|
4419
|
+
|
|
4420
|
+
.m_vh-70 {
|
|
4421
|
+
height: 70vh;
|
|
4422
|
+
}
|
|
4423
|
+
|
|
4424
|
+
.m_h-70px {
|
|
4425
|
+
height: 70px;
|
|
4426
|
+
}
|
|
4427
|
+
|
|
4428
|
+
.m_hm-70px {
|
|
4429
|
+
max-height: 70px;
|
|
4430
|
+
}
|
|
4431
|
+
|
|
4432
|
+
.m_h-80 {
|
|
4433
|
+
height: 80%;
|
|
4434
|
+
}
|
|
4435
|
+
|
|
4436
|
+
.m_vh-80 {
|
|
4437
|
+
height: 80vh;
|
|
4438
|
+
}
|
|
4439
|
+
|
|
4440
|
+
.m_h-80px {
|
|
4441
|
+
height: 80px;
|
|
4442
|
+
}
|
|
4443
|
+
|
|
4444
|
+
.m_hm-80px {
|
|
4445
|
+
max-height: 80px;
|
|
4446
|
+
}
|
|
4447
|
+
|
|
4448
|
+
.m_h-90 {
|
|
4449
|
+
height: 90%;
|
|
4450
|
+
}
|
|
4451
|
+
|
|
4452
|
+
.m_vh-90 {
|
|
4453
|
+
height: 90vh;
|
|
4454
|
+
}
|
|
4455
|
+
|
|
4456
|
+
.m_h-90px {
|
|
4457
|
+
height: 90px;
|
|
4458
|
+
}
|
|
4459
|
+
|
|
4460
|
+
.m_hm-90px {
|
|
4461
|
+
max-height: 90px;
|
|
4462
|
+
}
|
|
4463
|
+
|
|
4464
|
+
|
|
4465
|
+
.m_h-100 {
|
|
4466
|
+
height: 100%;
|
|
4467
|
+
}
|
|
4468
|
+
|
|
4469
|
+
.m_vh-100 {
|
|
4470
|
+
height: 100vh;
|
|
4471
|
+
}
|
|
4472
|
+
|
|
4473
|
+
.m_h-100px {
|
|
4474
|
+
height: 100px;
|
|
4475
|
+
}
|
|
4476
|
+
|
|
4477
|
+
.m_hm-100px {
|
|
4478
|
+
max-height: 100px;
|
|
4479
|
+
}
|
|
4480
|
+
|
|
4481
|
+
.m_h-150 {
|
|
4482
|
+
height: 150%;
|
|
4483
|
+
}
|
|
4484
|
+
|
|
4485
|
+
.m_vh-150 {
|
|
4486
|
+
height: 150vh;
|
|
4487
|
+
}
|
|
4488
|
+
|
|
4489
|
+
.m_h-150px {
|
|
4490
|
+
height: 150px;
|
|
4491
|
+
}
|
|
4492
|
+
|
|
4493
|
+
.m_hm-150px {
|
|
4494
|
+
max-height: 150px;
|
|
4495
|
+
}
|
|
4496
|
+
|
|
4497
|
+
.m_h-200 {
|
|
4498
|
+
height: 200%;
|
|
4499
|
+
}
|
|
4500
|
+
|
|
4501
|
+
.m_vh-200 {
|
|
4502
|
+
height: 200vh;
|
|
4503
|
+
}
|
|
4504
|
+
|
|
4505
|
+
.m_h-200px {
|
|
4506
|
+
height: 200px;
|
|
4507
|
+
}
|
|
4508
|
+
|
|
4509
|
+
.m_hm-200px {
|
|
4510
|
+
max-height: 200px;
|
|
4511
|
+
}
|
|
4512
|
+
|
|
4513
|
+
.m_h-300 {
|
|
4514
|
+
height: 300%;
|
|
4515
|
+
}
|
|
4516
|
+
|
|
4517
|
+
.m_vh-300 {
|
|
4518
|
+
height: 300vh;
|
|
4519
|
+
}
|
|
4520
|
+
|
|
4521
|
+
.m_h-300px {
|
|
4522
|
+
height: 300px;
|
|
4523
|
+
}
|
|
4524
|
+
|
|
4525
|
+
.m_hm-300px {
|
|
4526
|
+
max-height: 300px;
|
|
4527
|
+
}
|
|
4528
|
+
|
|
4529
|
+
.m_h-400 {
|
|
4530
|
+
height: 400%;
|
|
4531
|
+
}
|
|
4532
|
+
|
|
4533
|
+
.m_vh-400 {
|
|
4534
|
+
height: 400vh;
|
|
4535
|
+
}
|
|
4536
|
+
|
|
4537
|
+
.m_h-400px {
|
|
4538
|
+
height: 400px;
|
|
4539
|
+
}
|
|
4540
|
+
|
|
4541
|
+
.m_hm-400px {
|
|
4542
|
+
max-height: 400px;
|
|
4543
|
+
}
|
|
4544
|
+
|
|
4545
|
+
.m_h-500 {
|
|
4546
|
+
height: 500%;
|
|
4547
|
+
}
|
|
4548
|
+
|
|
4549
|
+
.m_vh-500 {
|
|
4550
|
+
height: 500vh;
|
|
4551
|
+
}
|
|
4552
|
+
|
|
4553
|
+
.m_h-500px {
|
|
4554
|
+
height: 500px;
|
|
4555
|
+
}
|
|
4556
|
+
|
|
4557
|
+
.m_hm-500px {
|
|
4558
|
+
max-height: 500px;
|
|
4559
|
+
}
|
|
4560
|
+
|
|
4561
|
+
.m_h-600 {
|
|
4562
|
+
height: 600%;
|
|
4563
|
+
}
|
|
4564
|
+
|
|
4565
|
+
.m_vh-600 {
|
|
4566
|
+
height: 600vh;
|
|
4567
|
+
}
|
|
4568
|
+
|
|
4569
|
+
.m_h-600px {
|
|
4570
|
+
height: 600px;
|
|
4571
|
+
}
|
|
4572
|
+
|
|
4573
|
+
.m_hm-600px {
|
|
4574
|
+
max-height: 600px;
|
|
4575
|
+
}
|
|
4576
|
+
|
|
4577
|
+
|
|
4578
|
+
.m_layout-h-100 {
|
|
4579
|
+
height: 100vh;
|
|
4580
|
+
overflow-y: hidden;
|
|
4581
|
+
}
|
|
4582
|
+
|
|
4583
|
+
.m_grid-wrap-1 {
|
|
4584
|
+
grid-template-columns: repeat(1, 1fr);
|
|
4585
|
+
height: max-content;
|
|
4586
|
+
}
|
|
4587
|
+
|
|
4588
|
+
.m_grid-wrap-2 {
|
|
4589
|
+
grid-template-columns: repeat(2, 1fr);
|
|
4590
|
+
height: max-content;
|
|
4591
|
+
}
|
|
4592
|
+
|
|
4593
|
+
.m_grid-wrap-3 {
|
|
4594
|
+
grid-template-columns: repeat(3, 1fr);
|
|
4595
|
+
height: max-content;
|
|
4596
|
+
}
|
|
4597
|
+
|
|
4598
|
+
.m_grid-wrap-4 {
|
|
4599
|
+
grid-template-columns: repeat(4, 1fr);
|
|
4600
|
+
height: max-content;
|
|
4601
|
+
|
|
4602
|
+
}
|
|
4603
|
+
|
|
4604
|
+
.m_grid-wrap-5 {
|
|
4605
|
+
grid-template-columns: repeat(5, 1fr);
|
|
4606
|
+
height: max-content;
|
|
4607
|
+
}
|
|
4608
|
+
|
|
4609
|
+
.m_grid-wrap-6 {
|
|
4610
|
+
grid-template-columns: repeat(6, 1fr);
|
|
4611
|
+
height: max-content;
|
|
4612
|
+
}
|
|
4613
|
+
|
|
4614
|
+
.m_grid-wrap-7 {
|
|
4615
|
+
grid-template-columns: repeat(7, 1fr);
|
|
4616
|
+
height: max-content;
|
|
4617
|
+
}
|
|
4618
|
+
|
|
4619
|
+
.m_grid-wrap-8 {
|
|
4620
|
+
grid-template-columns: repeat(8, 1fr);
|
|
4621
|
+
height: max-content;
|
|
4622
|
+
}
|
|
4623
|
+
|
|
4624
|
+
.m_overflow-hidden {
|
|
4625
|
+
overflow: hidden;
|
|
4626
|
+
}
|
|
4627
|
+
|
|
4628
|
+
.m_overflow-x {
|
|
4629
|
+
overflow-x: auto;
|
|
4630
|
+
}
|
|
4631
|
+
|
|
4632
|
+
.m_overflow-y {
|
|
4633
|
+
overflow-y: auto;
|
|
4634
|
+
}
|
|
4635
|
+
|
|
4636
|
+
.m_overflow-x-hidden {
|
|
4637
|
+
overflow-x: hidden;
|
|
4638
|
+
}
|
|
4639
|
+
|
|
4640
|
+
.m_overflow-y-hidden {
|
|
4641
|
+
overflow-y: hidden;
|
|
4642
|
+
}
|
|
4643
|
+
}
|
|
4644
|
+
input,
|
|
4645
|
+
textarea,
|
|
4646
|
+
select {
|
|
4647
|
+
font-family: inherit;
|
|
4648
|
+
width: 100%;
|
|
4649
|
+
}
|
|
4650
|
+
.bagel-input {
|
|
4651
|
+
position: relative;
|
|
4652
|
+
display: flex;
|
|
4653
|
+
flex-direction: column;
|
|
4654
|
+
text-align: start;
|
|
4655
|
+
margin-bottom: 0.5rem;
|
|
4656
|
+
width: 100%;
|
|
4657
|
+
color: var(--bgl-black);
|
|
4658
|
+
}
|
|
4659
|
+
.bagel-input::placeholder .bagel-input label {
|
|
4660
|
+
display: block;
|
|
4661
|
+
font-size: var(--label-font-size);
|
|
4662
|
+
margin-bottom: 2px;
|
|
4663
|
+
line-height: 1.3;
|
|
4664
|
+
}
|
|
4665
|
+
.bagel-input::placeholder {
|
|
4666
|
+
color: var(--placeholder-color);
|
|
4667
|
+
}
|
|
4668
|
+
.bagel-input label {
|
|
4669
|
+
color: var(--label-color);
|
|
4670
|
+
}
|
|
4671
|
+
.bagel-input input,
|
|
4672
|
+
.bagel-input select,
|
|
4673
|
+
.custom-select .input {
|
|
4674
|
+
height: var(--input-height);
|
|
4675
|
+
font-size: var(--input-font-size);
|
|
4676
|
+
}
|
|
4677
|
+
.bagel-input input,
|
|
4678
|
+
.bagel-input textarea,
|
|
4679
|
+
.bagel-input select,
|
|
4680
|
+
.custom-select .input {
|
|
4681
|
+
background: var(--input-bg);
|
|
4682
|
+
border: none;
|
|
4683
|
+
padding: 0.7rem;
|
|
4684
|
+
border-radius: var(--input-border-radius);
|
|
4685
|
+
color: var(--input-color);
|
|
4686
|
+
min-width: calc(var(--input-height) * 3);
|
|
4687
|
+
width: 100%;
|
|
4688
|
+
}
|
|
4689
|
+
.bagel-input input::placeholder,
|
|
4690
|
+
.bagel-input textarea::placeholder,
|
|
4691
|
+
.bagel-input select::placeholder,
|
|
4692
|
+
.custom-select .input::placeholder {
|
|
4693
|
+
color: var(--placeholder-color);
|
|
4694
|
+
}
|
|
4695
|
+
.bagel-input.search-wrap {
|
|
4696
|
+
display: flex;
|
|
4697
|
+
flex-direction: row;
|
|
4698
|
+
align-items: center;
|
|
4699
|
+
}
|
|
4700
|
+
.bagel-input.search-wrap input {
|
|
4701
|
+
padding-inline-end: 2rem;
|
|
4702
|
+
}
|
|
4703
|
+
.bagel-input.search-wrap .bgl_icon-font {
|
|
4704
|
+
margin-inline-start: -1.75rem;
|
|
4705
|
+
}
|
|
4706
|
+
.bagel-input select {
|
|
4707
|
+
height: var(--input-height);
|
|
4708
|
+
}
|
|
4709
|
+
.bagel-input textarea {
|
|
4710
|
+
resize: vertical;
|
|
4711
|
+
min-height: calc(var(--input-height) * 3);
|
|
4712
|
+
line-height: 1.5;
|
|
4713
|
+
}
|
|
4714
|
+
.bagel-input.wider input {
|
|
4715
|
+
min-width: 320px;
|
|
4716
|
+
}
|
|
4717
|
+
.bagel-input input[type="radio"] {
|
|
4718
|
+
padding: 0;
|
|
4719
|
+
width: fit-content;
|
|
4720
|
+
}
|
|
4721
|
+
.bagel-input:focus-within label {
|
|
4722
|
+
color: var(--bgl-primary);
|
|
4723
|
+
}
|
|
4724
|
+
.bagel-input select.no-edit,
|
|
4725
|
+
.bagel-input input.no-edit,
|
|
4726
|
+
.bagel-input textarea.no-edit,
|
|
4727
|
+
.bagel-input .switch.no-edit {
|
|
4728
|
+
pointer-events: none;
|
|
4729
|
+
outline: none;
|
|
4730
|
+
}
|
|
4731
|
+
.bagel-input label.active {
|
|
4732
|
+
color: var(--bgl-primary);
|
|
4733
|
+
}
|
|
4734
|
+
.inline-80 {
|
|
4735
|
+
display: inline-block;
|
|
4736
|
+
width: 80%;
|
|
4737
|
+
}
|
|
4738
|
+
.inline-20 {
|
|
4739
|
+
display: inline-block;
|
|
4740
|
+
width: 20%;
|
|
4741
|
+
}
|
|
4742
|
+
.inline-10 {
|
|
4743
|
+
display: inline-block;
|
|
4744
|
+
width: 20%;
|
|
4745
|
+
}
|
|
4746
|
+
.inline-50 {
|
|
4747
|
+
display: inline-block;
|
|
4748
|
+
width: 49%;
|
|
4749
|
+
margin: 0 0.5%;
|
|
4750
|
+
}
|
|
4751
|
+
.custom-select .input {
|
|
4752
|
+
height: var(--input-height);
|
|
4753
|
+
font-size: var(--input-font-size);
|
|
4754
|
+
}
|
|
4755
|
+
.custom-select .input {
|
|
4756
|
+
background: var(--input-bg);
|
|
4757
|
+
border: none;
|
|
4758
|
+
padding: 0.7rem;
|
|
4759
|
+
border-radius: var(--input-border-radius);
|
|
4760
|
+
color: var(--input-color);
|
|
4761
|
+
min-width: calc(var(--input-height) * 3);
|
|
4762
|
+
width: 100%;
|
|
4763
|
+
}
|
|
4764
|
+
.input.active,
|
|
4765
|
+
.bagel-input input:focus-visible,
|
|
4766
|
+
.bagel-input select:focus-visible,
|
|
4767
|
+
.bagel-input textarea:focus-visible {
|
|
4768
|
+
outline: none;
|
|
4769
|
+
box-shadow: inset 0 0 10px #00000012;
|
|
4770
|
+
}
|
|
4771
|
+
.bagel-input input[type="number"]::-webkit-inner-spin-button,
|
|
4772
|
+
.bagel-input input[type="number"]::-webkit-outer-spin-button {
|
|
4773
|
+
-webkit-appearance: none;
|
|
4774
|
+
}
|
|
4775
|
+
.label-count-0 label {
|
|
4776
|
+
display: none;
|
|
4777
|
+
}
|
|
4778
|
+
.label-count-0 button.bgl_btn.bgl_flatBtn {
|
|
4779
|
+
margin-right: 5px;
|
|
4780
|
+
}
|
|
4781
|
+
.label-count-0 button.bgl_btn.bgl_flatBtn:hover {
|
|
4782
|
+
background: var(--bgl-hover-filter);
|
|
4783
|
+
}
|
|
4784
|
+
.bagel-input input[type="color"] {
|
|
4785
|
+
padding: 0.025rem 0.05rem;
|
|
4786
|
+
display: block;
|
|
4787
|
+
width: var(--input-height);
|
|
4788
|
+
height: var(--input-height);
|
|
4789
|
+
border: none;
|
|
4790
|
+
-webkit-appearance: none;
|
|
4791
|
+
-moz-appearance: none;
|
|
4792
|
+
appearance: none;
|
|
4793
|
+
cursor: pointer;
|
|
4794
|
+
}
|
|
4795
|
+
.bagel-input input[type="color"]::-webkit-color-swatch {
|
|
4796
|
+
border-radius: var(--input-border-radius);
|
|
4797
|
+
border: none;
|
|
4798
|
+
transition: box-shadow 200ms ease;
|
|
4799
|
+
}
|
|
4800
|
+
.bagel-input input[type="color"]::-moz-color-swatch {
|
|
4801
|
+
border-radius: var(--input-border-radius);
|
|
4802
|
+
border: none;
|
|
4803
|
+
transition: box-shadow 200ms ease;
|
|
4804
|
+
}
|
|
4805
|
+
.bagel-input input[type="color"]::-webkit-color-swatch:hover {
|
|
4806
|
+
box-shadow: inset 0 0 10px #00000050;
|
|
4807
|
+
}
|
|
4808
|
+
.bagel-input input[type="color"]::-moz-color-swatch:hover {
|
|
4809
|
+
box-shadow: inset 0 0 10px #00000050;
|
|
3599
4810
|
}
|
|
3600
4811
|
@media screen and (max-width: 910px) {
|
|
3601
4812
|
.bagel-input.wider input {
|
|
@@ -3792,7 +5003,6 @@ select {
|
|
|
3792
5003
|
white-space: nowrap;
|
|
3793
5004
|
}
|
|
3794
5005
|
@media screen and (max-width: 910px) {
|
|
3795
|
-
|
|
3796
5006
|
.txt20,
|
|
3797
5007
|
.txt-20 {
|
|
3798
5008
|
font-size: 18px;
|
|
@@ -3807,6 +5017,159 @@ select {
|
|
|
3807
5017
|
.txt-14 {
|
|
3808
5018
|
font-size: 12px;
|
|
3809
5019
|
}
|
|
5020
|
+
|
|
5021
|
+
.m_txt-center {
|
|
5022
|
+
text-align: center;
|
|
5023
|
+
}
|
|
5024
|
+
|
|
5025
|
+
.m_txt-start {
|
|
5026
|
+
text-align: start;
|
|
5027
|
+
}
|
|
5028
|
+
|
|
5029
|
+
.m_txt-end {
|
|
5030
|
+
text-align: end;
|
|
5031
|
+
}
|
|
5032
|
+
|
|
5033
|
+
.m_txt-small {
|
|
5034
|
+
font-size: 12px;
|
|
5035
|
+
}
|
|
5036
|
+
|
|
5037
|
+
.m_txt20,
|
|
5038
|
+
.m_txt-20 {
|
|
5039
|
+
font-size: 20px;
|
|
5040
|
+
}
|
|
5041
|
+
|
|
5042
|
+
.m_txt18,
|
|
5043
|
+
.m_txt-18 {
|
|
5044
|
+
font-size: 18px;
|
|
5045
|
+
}
|
|
5046
|
+
|
|
5047
|
+
.m_txt16,
|
|
5048
|
+
.m_txt-16 {
|
|
5049
|
+
font-size: 16px;
|
|
5050
|
+
}
|
|
5051
|
+
|
|
5052
|
+
.m_txt14,
|
|
5053
|
+
.m_txt-14 {
|
|
5054
|
+
font-size: 14px;
|
|
5055
|
+
}
|
|
5056
|
+
|
|
5057
|
+
.m_txt12,
|
|
5058
|
+
.m_txt-12 {
|
|
5059
|
+
font-size: 12px;
|
|
5060
|
+
}
|
|
5061
|
+
|
|
5062
|
+
.m_txt10,
|
|
5063
|
+
.m_txt-10 {
|
|
5064
|
+
font-size: 10px;
|
|
5065
|
+
}
|
|
5066
|
+
|
|
5067
|
+
.m_txt9,
|
|
5068
|
+
.m_txt-9 {
|
|
5069
|
+
font-size: 9px;
|
|
5070
|
+
}
|
|
5071
|
+
|
|
5072
|
+
.m_no-margin {
|
|
5073
|
+
margin: 0;
|
|
5074
|
+
}
|
|
5075
|
+
|
|
5076
|
+
.m_txt-gray,
|
|
5077
|
+
.m_txtgray {
|
|
5078
|
+
color: var(--bgl-gray);
|
|
5079
|
+
}
|
|
5080
|
+
|
|
5081
|
+
.m_txt-blue,
|
|
5082
|
+
.m_txtblue {
|
|
5083
|
+
color: var(--bgl-primary);
|
|
5084
|
+
}
|
|
5085
|
+
|
|
5086
|
+
.m_txt-black,
|
|
5087
|
+
.m_txtblack {
|
|
5088
|
+
color: var(--bgl-black);
|
|
5089
|
+
}
|
|
5090
|
+
|
|
5091
|
+
.m_txt-red,
|
|
5092
|
+
.m_txtred {
|
|
5093
|
+
color: var(--bgl-red);
|
|
5094
|
+
}
|
|
5095
|
+
|
|
5096
|
+
.m_txt-white,
|
|
5097
|
+
.m_txtwhite {
|
|
5098
|
+
color: var(--bgl-white);
|
|
5099
|
+
}
|
|
5100
|
+
|
|
5101
|
+
.m_font-light {
|
|
5102
|
+
font-weight: 100;
|
|
5103
|
+
}
|
|
5104
|
+
|
|
5105
|
+
.m_bold {
|
|
5106
|
+
font-weight: 700;
|
|
5107
|
+
}
|
|
5108
|
+
|
|
5109
|
+
.m_line-height-1 {
|
|
5110
|
+
line-height: 1;
|
|
5111
|
+
}
|
|
5112
|
+
|
|
5113
|
+
.m_ellipsis {
|
|
5114
|
+
overflow: hidden;
|
|
5115
|
+
display: block;
|
|
5116
|
+
width: 100%;
|
|
5117
|
+
text-overflow: ellipsis;
|
|
5118
|
+
}
|
|
5119
|
+
|
|
5120
|
+
.m_ellipsis-1,
|
|
5121
|
+
.m_ellipsis-2,
|
|
5122
|
+
.m_ellipsis-3,
|
|
5123
|
+
.m_ellipsis-4,
|
|
5124
|
+
.m_ellipsis-5,
|
|
5125
|
+
.m_ellipsis-6 {
|
|
5126
|
+
display: block;
|
|
5127
|
+
display: -webkit-box;
|
|
5128
|
+
max-width: 100%;
|
|
5129
|
+
-webkit-box-orient: vertical;
|
|
5130
|
+
overflow: hidden;
|
|
5131
|
+
text-overflow: ellipsis;
|
|
5132
|
+
}
|
|
5133
|
+
|
|
5134
|
+
.m_ellipsis-1 {
|
|
5135
|
+
-webkit-line-clamp: 1;
|
|
5136
|
+
}
|
|
5137
|
+
|
|
5138
|
+
.m_ellipsis-2 {
|
|
5139
|
+
-webkit-line-clamp: 2;
|
|
5140
|
+
}
|
|
5141
|
+
|
|
5142
|
+
.m_ellipsis-3 {
|
|
5143
|
+
-webkit-line-clamp: 3;
|
|
5144
|
+
}
|
|
5145
|
+
|
|
5146
|
+
.m_ellipsis-4 {
|
|
5147
|
+
-webkit-line-clamp: 4;
|
|
5148
|
+
}
|
|
5149
|
+
|
|
5150
|
+
.m_ellipsis-5 {
|
|
5151
|
+
-webkit-line-clamp: 5;
|
|
5152
|
+
}
|
|
5153
|
+
|
|
5154
|
+
.m_ellipsis-6 {
|
|
5155
|
+
-webkit-line-clamp: 6;
|
|
5156
|
+
}
|
|
5157
|
+
|
|
5158
|
+
.m_pointer {
|
|
5159
|
+
cursor: pointer;
|
|
5160
|
+
}
|
|
5161
|
+
|
|
5162
|
+
.m_decoration-none {
|
|
5163
|
+
text-decoration: none;
|
|
5164
|
+
}
|
|
5165
|
+
|
|
5166
|
+
.m_bgl_icon-font {
|
|
5167
|
+
font-family: "Material Symbols Outlined", serif;
|
|
5168
|
+
}
|
|
5169
|
+
|
|
5170
|
+
.m_nowrap {
|
|
5171
|
+
white-space: nowrap;
|
|
5172
|
+
}
|
|
3810
5173
|
}
|
|
3811
5174
|
::-webkit-scrollbar {
|
|
3812
5175
|
width: 0.5em;
|
|
@@ -3924,6 +5287,77 @@ select {
|
|
|
3924
5287
|
min-width: 220px;
|
|
3925
5288
|
}
|
|
3926
5289
|
}
|
|
5290
|
+
.opacity-1 {
|
|
5291
|
+
opacity: 0.1;
|
|
5292
|
+
}
|
|
5293
|
+
.opacity-2 {
|
|
5294
|
+
opacity: 0.2;
|
|
5295
|
+
}
|
|
5296
|
+
.opacity-3 {
|
|
5297
|
+
opacity: 0.3;
|
|
5298
|
+
}
|
|
5299
|
+
.opacity-4 {
|
|
5300
|
+
opacity: 0.4;
|
|
5301
|
+
}
|
|
5302
|
+
.opacity-5 {
|
|
5303
|
+
opacity: 0.5;
|
|
5304
|
+
}
|
|
5305
|
+
.opacity-6 {
|
|
5306
|
+
opacity: 0.6;
|
|
5307
|
+
}
|
|
5308
|
+
.opacity-7 {
|
|
5309
|
+
opacity: 0.7;
|
|
5310
|
+
}
|
|
5311
|
+
.opacity-8 {
|
|
5312
|
+
opacity: 0.8;
|
|
5313
|
+
}
|
|
5314
|
+
.opacity-9 {
|
|
5315
|
+
opacity: 0.9;
|
|
5316
|
+
}
|
|
5317
|
+
.opacity-10 {
|
|
5318
|
+
opacity: 1;
|
|
5319
|
+
}
|
|
5320
|
+
@media screen and (max-width: 910px) {
|
|
5321
|
+
.m_opacity-1 {
|
|
5322
|
+
opacity: 0.1;
|
|
5323
|
+
}
|
|
5324
|
+
|
|
5325
|
+
.m_opacity-2 {
|
|
5326
|
+
opacity: 0.2;
|
|
5327
|
+
}
|
|
5328
|
+
|
|
5329
|
+
.m_opacity-3 {
|
|
5330
|
+
opacity: 0.3;
|
|
5331
|
+
}
|
|
5332
|
+
|
|
5333
|
+
.m_opacity-4 {
|
|
5334
|
+
opacity: 0.4;
|
|
5335
|
+
}
|
|
5336
|
+
|
|
5337
|
+
.m_opacity-5 {
|
|
5338
|
+
opacity: 0.5;
|
|
5339
|
+
}
|
|
5340
|
+
|
|
5341
|
+
.m_opacity-6 {
|
|
5342
|
+
opacity: 0.6;
|
|
5343
|
+
}
|
|
5344
|
+
|
|
5345
|
+
.m_opacity-7 {
|
|
5346
|
+
opacity: 0.7;
|
|
5347
|
+
}
|
|
5348
|
+
|
|
5349
|
+
.m_opacity-8 {
|
|
5350
|
+
opacity: 0.8;
|
|
5351
|
+
}
|
|
5352
|
+
|
|
5353
|
+
.m_opacity-9 {
|
|
5354
|
+
opacity: 0.9;
|
|
5355
|
+
}
|
|
5356
|
+
|
|
5357
|
+
.m_opacity-10 {
|
|
5358
|
+
opacity: 1;
|
|
5359
|
+
}
|
|
5360
|
+
}
|
|
3927
5361
|
/* @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@300;400;500;600;700&display=swap"); */
|
|
3928
5362
|
/*noinspection CssUnknownTarget*/
|
|
3929
5363
|
:root {
|