@bagelink/vue 1.0.43 → 1.0.50
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/form/FieldArray.vue.d.ts +3 -2
- package/dist/components/form/FieldArray.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/PhoneInput.vue.d.ts +116 -0
- package/dist/components/form/inputs/PhoneInput.vue.d.ts.map +1 -0
- package/dist/components/form/inputs/index.d.ts +1 -1
- package/dist/components/form/inputs/index.d.ts.map +1 -1
- package/dist/composables/index.d.ts +2 -2
- package/dist/composables/index.d.ts.map +1 -1
- package/dist/directives/pattern.d.ts.map +1 -1
- package/dist/index.cjs +9832 -9920
- package/dist/index.mjs +9832 -9920
- package/dist/style.css +666 -411
- package/dist/types/BagelForm.d.ts +1 -1
- package/dist/types/BagelForm.d.ts.map +1 -1
- package/dist/types/TableSchema.d.ts +1 -1
- package/dist/types/TableSchema.d.ts.map +1 -1
- package/dist/utils/BagelFormUtils.d.ts +2 -1
- package/dist/utils/BagelFormUtils.d.ts.map +1 -1
- package/package.json +5 -5
- package/src/components/DataTable/useTableData.ts +2 -2
- package/src/components/form/FieldArray.vue +89 -48
- package/src/components/form/inputs/PhoneInput.vue +352 -0
- package/src/components/form/inputs/index.ts +1 -1
- package/src/composables/index.ts +8 -15
- package/src/directives/pattern.ts +1 -0
- package/src/styles/inputs.css +139 -140
- package/src/styles/layout.css +226 -113
- package/src/styles/mobilLayout.css +226 -113
- package/src/types/BagelForm.ts +1 -1
- package/src/types/TableSchema.ts +1 -1
- package/src/utils/BagelFormUtils.ts +7 -2
package/dist/style.css
CHANGED
|
@@ -1274,20 +1274,20 @@ fieldset[data-v-f7e758e5] {
|
|
|
1274
1274
|
.fi[data-v-f99f1900]:before{ content:" "
|
|
1275
1275
|
}
|
|
1276
1276
|
|
|
1277
|
-
.minimized{
|
|
1277
|
+
.minimized {
|
|
1278
1278
|
height: 2.4rem;
|
|
1279
1279
|
overflow: hidden;
|
|
1280
1280
|
}
|
|
1281
|
-
.minimizedText{
|
|
1281
|
+
.minimizedText {
|
|
1282
1282
|
display: none;
|
|
1283
1283
|
}
|
|
1284
|
-
.minimized .minimizedText{
|
|
1284
|
+
.minimized .minimizedText {
|
|
1285
1285
|
display: block;
|
|
1286
1286
|
}
|
|
1287
|
-
.minimized .rotate-180{
|
|
1287
|
+
.minimized .rotate-180 {
|
|
1288
1288
|
transform: rotate(0deg);
|
|
1289
1289
|
}
|
|
1290
|
-
.itemBox{
|
|
1290
|
+
.itemBox {
|
|
1291
1291
|
background: var(--input-bg);
|
|
1292
1292
|
grid-template-columns: 1fr auto;
|
|
1293
1293
|
display: grid;
|
|
@@ -1295,7 +1295,7 @@ fieldset[data-v-f7e758e5] {
|
|
|
1295
1295
|
--input-height: 30px;
|
|
1296
1296
|
--input-font-size: 14px;
|
|
1297
1297
|
}
|
|
1298
|
-
.pt-065{
|
|
1298
|
+
.pt-065 {
|
|
1299
1299
|
padding-top: 0.65rem;
|
|
1300
1300
|
}
|
|
1301
1301
|
.itemBox .bagel-input input,
|
|
@@ -1304,10 +1304,10 @@ fieldset[data-v-f7e758e5] {
|
|
|
1304
1304
|
.itemBox .custom-select .input {
|
|
1305
1305
|
background: var(--bgl-white) !important;
|
|
1306
1306
|
}
|
|
1307
|
-
.itemBox .code-editor-wrap textarea{
|
|
1307
|
+
.itemBox .code-editor-wrap textarea {
|
|
1308
1308
|
background: transparent !important;
|
|
1309
1309
|
}
|
|
1310
|
-
.itemBox .bagel-input{
|
|
1310
|
+
.itemBox .bagel-input {
|
|
1311
1311
|
margin-bottom: 0.15rem !important;
|
|
1312
1312
|
}
|
|
1313
1313
|
|
|
@@ -1957,6 +1957,74 @@ pre code.hljs{
|
|
|
1957
1957
|
text-align: right;
|
|
1958
1958
|
}
|
|
1959
1959
|
|
|
1960
|
+
.tel-input[data-v-ea318aee] {
|
|
1961
|
+
direction: ltr;
|
|
1962
|
+
text-align: left;
|
|
1963
|
+
background: var(--input-bg);
|
|
1964
|
+
border: none;
|
|
1965
|
+
padding-inline-start: 0.7rem;
|
|
1966
|
+
border-radius: var(--input-border-radius);
|
|
1967
|
+
color: var(--input-color);
|
|
1968
|
+
min-width: calc(var(--input-height) * 3);
|
|
1969
|
+
width: 100%;
|
|
1970
|
+
display: flex;
|
|
1971
|
+
align-items: center;
|
|
1972
|
+
}
|
|
1973
|
+
.tel-input[data-v-ea318aee]:focus-within {
|
|
1974
|
+
outline: none;
|
|
1975
|
+
box-shadow: inset 0 0 10px #00000012;
|
|
1976
|
+
}
|
|
1977
|
+
.tel-input input[data-v-ea318aee] {
|
|
1978
|
+
background: transparent;
|
|
1979
|
+
text-align: left;
|
|
1980
|
+
flex: 1;
|
|
1981
|
+
}
|
|
1982
|
+
.tel-input input[data-v-ea318aee]:focus-visible {
|
|
1983
|
+
box-shadow: none;
|
|
1984
|
+
}
|
|
1985
|
+
.country-code-display[data-v-ea318aee] {
|
|
1986
|
+
align-items: center;
|
|
1987
|
+
white-space: nowrap;
|
|
1988
|
+
}
|
|
1989
|
+
.dial-code[data-v-ea318aee] {
|
|
1990
|
+
font-size: var(--input-font-size);
|
|
1991
|
+
color: var(--input-color);
|
|
1992
|
+
opacity: 0.6;
|
|
1993
|
+
}
|
|
1994
|
+
.tel-country[data-v-ea318aee] {
|
|
1995
|
+
font-size: var(--input-font-size);
|
|
1996
|
+
max-width: 200px;
|
|
1997
|
+
white-space: nowrap;
|
|
1998
|
+
text-overflow: ellipsis;
|
|
1999
|
+
overflow: hidden;
|
|
2000
|
+
margin-top: 0;
|
|
2001
|
+
margin-bottom: 0;
|
|
2002
|
+
}
|
|
2003
|
+
.tel-countryp-dropdown[data-v-ea318aee] {
|
|
2004
|
+
direction: ltr;
|
|
2005
|
+
text-align: left;
|
|
2006
|
+
}
|
|
2007
|
+
.national-number-input[data-v-ea318aee] {
|
|
2008
|
+
margin-left: 4px;
|
|
2009
|
+
}
|
|
2010
|
+
.country-changed[data-v-ea318aee] {
|
|
2011
|
+
animation: highlight-country-ea318aee 1.5s ease-in-out;
|
|
2012
|
+
}
|
|
2013
|
+
.invalid input[data-v-ea318aee] {
|
|
2014
|
+
border-color: var(--error-color, red);
|
|
2015
|
+
}
|
|
2016
|
+
@keyframes highlight-country-ea318aee {
|
|
2017
|
+
0%, 100% {
|
|
2018
|
+
background-color: transparent;
|
|
2019
|
+
}
|
|
2020
|
+
30% {
|
|
2021
|
+
background-color: var(--primary-color-light, rgba(0, 123, 255, 0.2));
|
|
2022
|
+
}
|
|
2023
|
+
70% {
|
|
2024
|
+
background-color: var(--primary-color-light, rgba(0, 123, 255, 0.2));
|
|
2025
|
+
}
|
|
2026
|
+
}
|
|
2027
|
+
|
|
1960
2028
|
.radio-input-list[data-v-a692c596]{
|
|
1961
2029
|
width: auto;
|
|
1962
2030
|
transform: scale(1.4);
|
|
@@ -2398,45 +2466,6 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
|
|
|
2398
2466
|
box-shadow: 0 0 10px 0 rgb(0 0 0 /20%);
|
|
2399
2467
|
}
|
|
2400
2468
|
|
|
2401
|
-
.tel-input[data-v-133e2b3f] {
|
|
2402
|
-
direction: ltr;
|
|
2403
|
-
text-align: left;
|
|
2404
|
-
background: var(--input-bg);
|
|
2405
|
-
border: none;
|
|
2406
|
-
padding-inline-start: 0.7rem;
|
|
2407
|
-
border-radius: var(--input-border-radius);
|
|
2408
|
-
color: var(--input-color);
|
|
2409
|
-
min-width: calc(var(--input-height) * 3);
|
|
2410
|
-
width: 100%;
|
|
2411
|
-
}
|
|
2412
|
-
.tel-input[data-v-133e2b3f]:focus-within {
|
|
2413
|
-
outline: none;
|
|
2414
|
-
box-shadow: inset 0 0 10px #00000012;
|
|
2415
|
-
}
|
|
2416
|
-
.tel-input input[data-v-133e2b3f] {
|
|
2417
|
-
background: transparent;
|
|
2418
|
-
}
|
|
2419
|
-
.tel-input input[data-v-133e2b3f]:focus-visible {
|
|
2420
|
-
box-shadow: none;
|
|
2421
|
-
}
|
|
2422
|
-
.input_country-code[data-v-133e2b3f] {
|
|
2423
|
-
font-size: var(--input-font-size);
|
|
2424
|
-
color: var(--input-color);
|
|
2425
|
-
}
|
|
2426
|
-
.tel-country[data-v-133e2b3f] {
|
|
2427
|
-
font-size: var(--input-font-size);
|
|
2428
|
-
max-width: 200px;
|
|
2429
|
-
white-space: nowrap;
|
|
2430
|
-
text-overflow: ellipsis;
|
|
2431
|
-
overflow: hidden;
|
|
2432
|
-
margin-top: 0;
|
|
2433
|
-
margin-bottom: 0;
|
|
2434
|
-
}
|
|
2435
|
-
.tel-countryp-dropdown[data-v-133e2b3f] {
|
|
2436
|
-
direction: ltr;
|
|
2437
|
-
text-align: left;
|
|
2438
|
-
}
|
|
2439
|
-
|
|
2440
2469
|
.bagel-input.shrink,
|
|
2441
2470
|
.bagel-input.shrink input {
|
|
2442
2471
|
min-width: unset !important;
|
|
@@ -7540,137 +7569,203 @@ to {
|
|
|
7540
7569
|
margin: 9rem !important;
|
|
7541
7570
|
}.m-10 {
|
|
7542
7571
|
margin: 10rem !important;
|
|
7543
|
-
}.-mb-025
|
|
7572
|
+
}.-mb-025,
|
|
7573
|
+
.mb--025 {
|
|
7544
7574
|
margin-bottom: -0.25rem !important;
|
|
7545
|
-
}.-mb-05
|
|
7575
|
+
}.-mb-05,
|
|
7576
|
+
.mb--05 {
|
|
7546
7577
|
margin-bottom: -0.5rem !important;
|
|
7547
|
-
}.-mb-075
|
|
7578
|
+
}.-mb-075,
|
|
7579
|
+
.mb--075 {
|
|
7548
7580
|
margin-bottom: -0.75rem !important;
|
|
7549
|
-
}.-mb-1
|
|
7581
|
+
}.-mb-1,
|
|
7582
|
+
.mb--1 {
|
|
7550
7583
|
margin-bottom: -1rem !important;
|
|
7551
|
-
}.-mb-1-5
|
|
7584
|
+
}.-mb-1-5,
|
|
7585
|
+
.mb--1-5 {
|
|
7552
7586
|
margin-bottom: -1.5rem !important;
|
|
7553
|
-
}.-mb-2-5
|
|
7587
|
+
}.-mb-2-5,
|
|
7588
|
+
.mb--2-5 {
|
|
7554
7589
|
margin-bottom: -2.5rem !important;
|
|
7555
|
-
}.-mb-3-5
|
|
7590
|
+
}.-mb-3-5,
|
|
7591
|
+
.mb--3-5 {
|
|
7556
7592
|
margin-bottom: -3.5rem !important;
|
|
7557
|
-
}.-mb-4-5
|
|
7593
|
+
}.-mb-4-5,
|
|
7594
|
+
.mb--4-5 {
|
|
7558
7595
|
margin-bottom: -4.5rem !important;
|
|
7559
|
-
}.-mb-5-5
|
|
7596
|
+
}.-mb-5-5,
|
|
7597
|
+
.mb--5-5 {
|
|
7560
7598
|
margin-bottom: -5.5rem !important;
|
|
7561
|
-
}.-mb-6-5
|
|
7599
|
+
}.-mb-6-5,
|
|
7600
|
+
.mb--6-5 {
|
|
7562
7601
|
margin-bottom: -6.5rem !important;
|
|
7563
|
-
}.-mb-7-5
|
|
7602
|
+
}.-mb-7-5,
|
|
7603
|
+
.mb--7-5 {
|
|
7564
7604
|
margin-bottom: -7.5rem !important;
|
|
7565
|
-
}.-mb-8-5
|
|
7605
|
+
}.-mb-8-5,
|
|
7606
|
+
.mb--8-5 {
|
|
7566
7607
|
margin-bottom: -8.5rem !important;
|
|
7567
|
-
}.-mb-9-5
|
|
7608
|
+
}.-mb-9-5,
|
|
7609
|
+
.mb--9-5 {
|
|
7568
7610
|
margin-bottom: -9.5rem !important;
|
|
7569
|
-
}.-mb-10-5
|
|
7611
|
+
}.-mb-10-5,
|
|
7612
|
+
.mb--10-5 {
|
|
7570
7613
|
margin-bottom: -10.5rem !important;
|
|
7571
|
-
}.-mb-2
|
|
7614
|
+
}.-mb-2,
|
|
7615
|
+
.mb--2 {
|
|
7572
7616
|
margin-bottom: -2rem !important;
|
|
7573
|
-
}.-mb-3
|
|
7617
|
+
}.-mb-3,
|
|
7618
|
+
.mb--3 {
|
|
7574
7619
|
margin-bottom: -3rem !important;
|
|
7575
|
-
}.-mb-4
|
|
7620
|
+
}.-mb-4,
|
|
7621
|
+
.mb--4 {
|
|
7576
7622
|
margin-bottom: -4rem !important;
|
|
7577
|
-
}.-mb-5
|
|
7623
|
+
}.-mb-5,
|
|
7624
|
+
.mb--5 {
|
|
7578
7625
|
margin-bottom: -5rem !important;
|
|
7579
|
-
}.-mb-6
|
|
7626
|
+
}.-mb-6,
|
|
7627
|
+
.mb--6 {
|
|
7580
7628
|
margin-bottom: -6rem !important;
|
|
7581
|
-
}.-mb-7
|
|
7629
|
+
}.-mb-7,
|
|
7630
|
+
.mb--7 {
|
|
7582
7631
|
margin-bottom: -7rem !important;
|
|
7583
|
-
}.-mb-8
|
|
7632
|
+
}.-mb-8,
|
|
7633
|
+
.mb--8 {
|
|
7584
7634
|
margin-bottom: -8rem !important;
|
|
7585
|
-
}.-mb-9
|
|
7635
|
+
}.-mb-9,
|
|
7636
|
+
.mb--9 {
|
|
7586
7637
|
margin-bottom: -9rem !important;
|
|
7587
|
-
}.-mb-10
|
|
7638
|
+
}.-mb-10,
|
|
7639
|
+
.mb--10 {
|
|
7588
7640
|
margin-bottom: -10rem !important;
|
|
7589
|
-
}.-mb-11
|
|
7641
|
+
}.-mb-11,
|
|
7642
|
+
.mb--11 {
|
|
7590
7643
|
margin-bottom: -11rem !important;
|
|
7591
|
-
}.-mb-12
|
|
7644
|
+
}.-mb-12,
|
|
7645
|
+
.mb--12 {
|
|
7592
7646
|
margin-bottom: -12rem !important;
|
|
7593
|
-
}.-mb-13
|
|
7647
|
+
}.-mb-13,
|
|
7648
|
+
.mb--13 {
|
|
7594
7649
|
margin-bottom: -13rem !important;
|
|
7595
|
-
}.-mb-14
|
|
7650
|
+
}.-mb-14,
|
|
7651
|
+
.mb--14 {
|
|
7596
7652
|
margin-bottom: -14rem !important;
|
|
7597
|
-
}.-mb-15
|
|
7653
|
+
}.-mb-15,
|
|
7654
|
+
.mb--15 {
|
|
7598
7655
|
margin-bottom: -15rem !important;
|
|
7599
|
-
}.-mb-16
|
|
7656
|
+
}.-mb-16,
|
|
7657
|
+
.mb--16 {
|
|
7600
7658
|
margin-bottom: -16rem !important;
|
|
7601
|
-
}.-mb-17
|
|
7659
|
+
}.-mb-17,
|
|
7660
|
+
.mb--17 {
|
|
7602
7661
|
margin-bottom: -17rem !important;
|
|
7603
|
-
}.-mb-18
|
|
7662
|
+
}.-mb-18,
|
|
7663
|
+
.mb--18 {
|
|
7604
7664
|
margin-bottom: -18rem !important;
|
|
7605
|
-
}.-mb-19
|
|
7665
|
+
}.-mb-19,
|
|
7666
|
+
.mb--19 {
|
|
7606
7667
|
margin-bottom: -19rem !important;
|
|
7607
|
-
}.-mb-20
|
|
7668
|
+
}.-mb-20,
|
|
7669
|
+
.mb--20 {
|
|
7608
7670
|
margin-bottom: -20rem !important;
|
|
7609
|
-
}.-mt-025
|
|
7671
|
+
}.-mt-025,
|
|
7672
|
+
.mt--025 {
|
|
7610
7673
|
margin-top: -0.25rem !important;
|
|
7611
|
-
}.-mt-05
|
|
7674
|
+
}.-mt-05,
|
|
7675
|
+
.mt--05 {
|
|
7612
7676
|
margin-top: -0.5rem !important;
|
|
7613
|
-
}.-mt-075
|
|
7677
|
+
}.-mt-075,
|
|
7678
|
+
.mt--075 {
|
|
7614
7679
|
margin-top: 0.75rem !important;
|
|
7615
|
-
}.-mt-1
|
|
7680
|
+
}.-mt-1,
|
|
7681
|
+
.mt--1 {
|
|
7616
7682
|
margin-top: -1rem !important;
|
|
7617
|
-
}.-mt-1-5
|
|
7683
|
+
}.-mt-1-5,
|
|
7684
|
+
.mt--1-5 {
|
|
7618
7685
|
margin-top: -1.5rem !important;
|
|
7619
|
-
}.-mt-2-5
|
|
7686
|
+
}.-mt-2-5,
|
|
7687
|
+
.mt--2-5 {
|
|
7620
7688
|
margin-top: -2.5rem !important;
|
|
7621
|
-
}.-mt-3-5
|
|
7689
|
+
}.-mt-3-5,
|
|
7690
|
+
.mt--3-5 {
|
|
7622
7691
|
margin-top: -3.5rem !important;
|
|
7623
|
-
}.-mt-4-5
|
|
7692
|
+
}.-mt-4-5,
|
|
7693
|
+
.mt--4-5 {
|
|
7624
7694
|
margin-top: -4.5rem !important;
|
|
7625
|
-
}.-mt-5-5
|
|
7695
|
+
}.-mt-5-5,
|
|
7696
|
+
.mt--5-5 {
|
|
7626
7697
|
margin-top: -5.5rem !important;
|
|
7627
|
-
}.-mt-6-5
|
|
7698
|
+
}.-mt-6-5,
|
|
7699
|
+
.mt--6-5 {
|
|
7628
7700
|
margin-top: -6.5rem !important;
|
|
7629
|
-
}.-mt-7-5
|
|
7701
|
+
}.-mt-7-5,
|
|
7702
|
+
.mt--7-5 {
|
|
7630
7703
|
margin-top: -7.5rem !important;
|
|
7631
|
-
}.-mt-8-5
|
|
7704
|
+
}.-mt-8-5,
|
|
7705
|
+
.mt--8-5 {
|
|
7632
7706
|
margin-top: -8.5rem !important;
|
|
7633
|
-
}.-mt-9-5
|
|
7707
|
+
}.-mt-9-5,
|
|
7708
|
+
.mt--9-5 {
|
|
7634
7709
|
margin-top: -9.5rem !important;
|
|
7635
|
-
}.-mt-10-5
|
|
7710
|
+
}.-mt-10-5,
|
|
7711
|
+
.mt--10-5 {
|
|
7636
7712
|
margin-top: -10.5rem !important;
|
|
7637
|
-
}.-mt-2
|
|
7713
|
+
}.-mt-2,
|
|
7714
|
+
.mt--2 {
|
|
7638
7715
|
margin-top: -2rem !important;
|
|
7639
|
-
}.-mt-3
|
|
7716
|
+
}.-mt-3,
|
|
7717
|
+
.mt--3 {
|
|
7640
7718
|
margin-top: -3rem !important;
|
|
7641
|
-
}.-mt-4
|
|
7719
|
+
}.-mt-4,
|
|
7720
|
+
.mt--4 {
|
|
7642
7721
|
margin-top: -4rem !important;
|
|
7643
|
-
}.-mt-5
|
|
7722
|
+
}.-mt-5,
|
|
7723
|
+
.mt--5 {
|
|
7644
7724
|
margin-top: -5rem !important;
|
|
7645
|
-
}.-mt-6
|
|
7725
|
+
}.-mt-6,
|
|
7726
|
+
.mt--6 {
|
|
7646
7727
|
margin-top: -6rem !important;
|
|
7647
|
-
}.-mt-7
|
|
7728
|
+
}.-mt-7,
|
|
7729
|
+
.mt--7 {
|
|
7648
7730
|
margin-top: -7rem !important;
|
|
7649
|
-
}.-mt-8
|
|
7731
|
+
}.-mt-8,
|
|
7732
|
+
.mt--8 {
|
|
7650
7733
|
margin-top: -8rem !important;
|
|
7651
|
-
}.-mt-9
|
|
7734
|
+
}.-mt-9,
|
|
7735
|
+
.mt--9 {
|
|
7652
7736
|
margin-top: -9rem !important;
|
|
7653
|
-
}.-mt-10
|
|
7737
|
+
}.-mt-10,
|
|
7738
|
+
.mt--10 {
|
|
7654
7739
|
margin-top: -10rem !important;
|
|
7655
|
-
}.-mt-11
|
|
7740
|
+
}.-mt-11,
|
|
7741
|
+
.mt--11 {
|
|
7656
7742
|
margin-top: -11rem !important;
|
|
7657
|
-
}.-mt-12
|
|
7743
|
+
}.-mt-12,
|
|
7744
|
+
.mt--12 {
|
|
7658
7745
|
margin-top: -12rem !important;
|
|
7659
|
-
}.-mt-13
|
|
7746
|
+
}.-mt-13,
|
|
7747
|
+
.mt--13 {
|
|
7660
7748
|
margin-top: -13rem !important;
|
|
7661
|
-
}.-mt-14
|
|
7749
|
+
}.-mt-14,
|
|
7750
|
+
.mt--14 {
|
|
7662
7751
|
margin-top: -14rem !important;
|
|
7663
|
-
}.-mt-15
|
|
7752
|
+
}.-mt-15,
|
|
7753
|
+
.mt--15 {
|
|
7664
7754
|
margin-top: -15rem !important;
|
|
7665
|
-
}.-mt-16
|
|
7755
|
+
}.-mt-16,
|
|
7756
|
+
.mt--16 {
|
|
7666
7757
|
margin-top: -16rem !important;
|
|
7667
|
-
}.-mt-17
|
|
7758
|
+
}.-mt-17,
|
|
7759
|
+
.mt--17 {
|
|
7668
7760
|
margin-top: -17rem !important;
|
|
7669
|
-
}.-mt-18
|
|
7761
|
+
}.-mt-18,
|
|
7762
|
+
.mt--18 {
|
|
7670
7763
|
margin-top: -18rem !important;
|
|
7671
|
-
}.-mt-19
|
|
7764
|
+
}.-mt-19,
|
|
7765
|
+
.mt--19 {
|
|
7672
7766
|
margin-top: -19rem !important;
|
|
7673
|
-
}.-mt-20
|
|
7767
|
+
}.-mt-20,
|
|
7768
|
+
.mt--20 {
|
|
7674
7769
|
margin-top: -20rem !important;
|
|
7675
7770
|
}.-my-025 {
|
|
7676
7771
|
margin-top: -0.25rem !important;
|
|
@@ -7741,99 +7836,146 @@ to {
|
|
|
7741
7836
|
}.-my-10 {
|
|
7742
7837
|
margin-top: -10rem !important;
|
|
7743
7838
|
margin-bottom: -10rem !important;
|
|
7744
|
-
}.-ms-025
|
|
7839
|
+
}.-ms-025,
|
|
7840
|
+
.ms--025 {
|
|
7745
7841
|
margin-inline-start: -0.25rem !important;
|
|
7746
|
-
}.-ms-05
|
|
7842
|
+
}.-ms-05,
|
|
7843
|
+
.ms--05 {
|
|
7747
7844
|
margin-inline-start: -0.5rem !important;
|
|
7748
|
-
}.-ms-075
|
|
7845
|
+
}.-ms-075,
|
|
7846
|
+
.ms--075 {
|
|
7749
7847
|
margin-inline-start: -0.75rem !important;
|
|
7750
|
-
}.-ms-1
|
|
7848
|
+
}.-ms-1,
|
|
7849
|
+
.ms--1 {
|
|
7751
7850
|
margin-inline-start: -1rem !important;
|
|
7752
|
-
}.-ms-1-5
|
|
7851
|
+
}.-ms-1-5,
|
|
7852
|
+
.ms--1-5 {
|
|
7753
7853
|
margin-inline-start: -1.5rem !important;
|
|
7754
|
-
}.-ms-2-5
|
|
7854
|
+
}.-ms-2-5,
|
|
7855
|
+
.ms--2-5 {
|
|
7755
7856
|
margin-inline-start: -2.5rem !important;
|
|
7756
|
-
}.-ms-3-5
|
|
7857
|
+
}.-ms-3-5,
|
|
7858
|
+
.ms--3-5 {
|
|
7757
7859
|
margin-inline-start: -3.5rem !important;
|
|
7758
|
-
}.-ms-4-5
|
|
7860
|
+
}.-ms-4-5,
|
|
7861
|
+
.ms--4-5 {
|
|
7759
7862
|
margin-inline-start: -4.5rem !important;
|
|
7760
|
-
}.-ms-5-5
|
|
7863
|
+
}.-ms-5-5,
|
|
7864
|
+
.ms--5-5 {
|
|
7761
7865
|
margin-inline-start: -5.5rem !important;
|
|
7762
|
-
}.-ms-6-5
|
|
7866
|
+
}.-ms-6-5,
|
|
7867
|
+
.ms--6-5 {
|
|
7763
7868
|
margin-inline-start: -6.5rem !important;
|
|
7764
|
-
}.-ms-7-5
|
|
7869
|
+
}.-ms-7-5,
|
|
7870
|
+
.ms--7-5 {
|
|
7765
7871
|
margin-inline-start: -7.5rem !important;
|
|
7766
|
-
}.-ms-8-5
|
|
7872
|
+
}.-ms-8-5,
|
|
7873
|
+
.ms--8-5 {
|
|
7767
7874
|
margin-inline-start: -8.5rem !important;
|
|
7768
|
-
}.-ms-9-5
|
|
7875
|
+
}.-ms-9-5,
|
|
7876
|
+
.ms--9-5 {
|
|
7769
7877
|
margin-inline-start: -9.5rem !important;
|
|
7770
|
-
}.-ms-10-5
|
|
7878
|
+
}.-ms-10-5,
|
|
7879
|
+
.ms--10-5 {
|
|
7771
7880
|
margin-inline-start: -10.5rem !important;
|
|
7772
|
-
}.-ms-2
|
|
7881
|
+
}.-ms-2,
|
|
7882
|
+
.ms--2 {
|
|
7773
7883
|
margin-inline-start: -2rem !important;
|
|
7774
|
-
}.-ms-3
|
|
7884
|
+
}.-ms-3,
|
|
7885
|
+
.ms--3 {
|
|
7775
7886
|
margin-inline-start: -3rem !important;
|
|
7776
|
-
}.-ms-4
|
|
7887
|
+
}.-ms-4,
|
|
7888
|
+
.ms--4 {
|
|
7777
7889
|
margin-inline-start: -4rem !important;
|
|
7778
|
-
}.-ms-5
|
|
7890
|
+
}.-ms-5,
|
|
7891
|
+
.ms--5 {
|
|
7779
7892
|
margin-inline-start: -5rem !important;
|
|
7780
|
-
}.-ms-6
|
|
7893
|
+
}.-ms-6,
|
|
7894
|
+
.ms--6 {
|
|
7781
7895
|
margin-inline-start: -6rem !important;
|
|
7782
|
-
}.-ms-7
|
|
7896
|
+
}.-ms-7,
|
|
7897
|
+
.ms--7 {
|
|
7783
7898
|
margin-inline-start: -7rem !important;
|
|
7784
|
-
}.-ms-8
|
|
7899
|
+
}.-ms-8,
|
|
7900
|
+
.ms--8 {
|
|
7785
7901
|
margin-inline-start: -8rem !important;
|
|
7786
|
-
}.-ms-9
|
|
7902
|
+
}.-ms-9,
|
|
7903
|
+
.ms--9 {
|
|
7787
7904
|
margin-inline-start: -9rem !important;
|
|
7788
|
-
}.-ms-10
|
|
7905
|
+
}.-ms-10,
|
|
7906
|
+
.ms--10 {
|
|
7789
7907
|
margin-inline-start: -10rem !important;
|
|
7790
|
-
}.-me-025
|
|
7908
|
+
}.-me-025,
|
|
7909
|
+
.me--025 {
|
|
7791
7910
|
margin-inline-end: -0.25rem !important;
|
|
7792
|
-
}.-me-05
|
|
7911
|
+
}.-me-05,
|
|
7912
|
+
.me--05 {
|
|
7793
7913
|
margin-inline-end: -0.5rem !important;
|
|
7794
|
-
}.-me-075
|
|
7914
|
+
}.-me-075,
|
|
7915
|
+
.me--075 {
|
|
7795
7916
|
margin-inline-end: -0.75rem !important;
|
|
7796
|
-
}.-me-1
|
|
7917
|
+
}.-me-1,
|
|
7918
|
+
.me--1 {
|
|
7797
7919
|
margin-inline-end: -1rem !important;
|
|
7798
|
-
}.-me-1-5
|
|
7920
|
+
}.-me-1-5,
|
|
7921
|
+
.me--1-5 {
|
|
7799
7922
|
margin-inline-end: -1.5rem !important;
|
|
7800
|
-
}.-me-2-5
|
|
7923
|
+
}.-me-2-5,
|
|
7924
|
+
.me--2-5 {
|
|
7801
7925
|
margin-inline-end: -2.5rem !important;
|
|
7802
|
-
}.-me-3-5
|
|
7926
|
+
}.-me-3-5,
|
|
7927
|
+
.me--3-5 {
|
|
7803
7928
|
margin-inline-end: -3.5rem !important;
|
|
7804
|
-
}.-me-4-5
|
|
7929
|
+
}.-me-4-5,
|
|
7930
|
+
.me--4-5 {
|
|
7805
7931
|
margin-inline-end: -4.5rem !important;
|
|
7806
|
-
}.-me-5-5
|
|
7932
|
+
}.-me-5-5,
|
|
7933
|
+
.me--5-5 {
|
|
7807
7934
|
margin-inline-end: -5.5rem !important;
|
|
7808
|
-
}.-me-6-5
|
|
7935
|
+
}.-me-6-5,
|
|
7936
|
+
.me--6-5 {
|
|
7809
7937
|
margin-inline-end: -6.5rem !important;
|
|
7810
|
-
}.-me-7-5
|
|
7938
|
+
}.-me-7-5,
|
|
7939
|
+
.me--7-5 {
|
|
7811
7940
|
margin-inline-end: -7.5rem !important;
|
|
7812
|
-
}.-me-8-5
|
|
7941
|
+
}.-me-8-5,
|
|
7942
|
+
.me--8-5 {
|
|
7813
7943
|
margin-inline-end: -8.5rem !important;
|
|
7814
|
-
}.-me-9-5
|
|
7944
|
+
}.-me-9-5,
|
|
7945
|
+
.me--9-5 {
|
|
7815
7946
|
margin-inline-end: -9.5rem !important;
|
|
7816
|
-
}.-me-10-5
|
|
7947
|
+
}.-me-10-5,
|
|
7948
|
+
.me--10-5 {
|
|
7817
7949
|
margin-inline-end: -10.5rem !important;
|
|
7818
|
-
}.-me-2
|
|
7950
|
+
}.-me-2,
|
|
7951
|
+
.me--2 {
|
|
7819
7952
|
margin-inline-end: -2rem !important;
|
|
7820
|
-
}.-me-3
|
|
7953
|
+
}.-me-3,
|
|
7954
|
+
.me--3 {
|
|
7821
7955
|
margin-inline-end: -3rem !important;
|
|
7822
|
-
}.-me-4
|
|
7956
|
+
}.-me-4,
|
|
7957
|
+
.me--4 {
|
|
7823
7958
|
margin-inline-end: -4rem !important;
|
|
7824
|
-
}.-me-4
|
|
7959
|
+
}.-me-4,
|
|
7960
|
+
.me--4 {
|
|
7825
7961
|
margin-inline-end: -4rem !important;
|
|
7826
|
-
}.-me-5
|
|
7962
|
+
}.-me-5,
|
|
7963
|
+
.me--5 {
|
|
7827
7964
|
margin-inline-end: -5rem !important;
|
|
7828
|
-
}.-me-6
|
|
7965
|
+
}.-me-6,
|
|
7966
|
+
.me--6 {
|
|
7829
7967
|
margin-inline-end: -6rem !important;
|
|
7830
|
-
}.-me-7
|
|
7968
|
+
}.-me-7,
|
|
7969
|
+
.me--7 {
|
|
7831
7970
|
margin-inline-end: -7rem !important;
|
|
7832
|
-
}.-me-8
|
|
7971
|
+
}.-me-8,
|
|
7972
|
+
.me--8 {
|
|
7833
7973
|
margin-inline-end: -8rem !important;
|
|
7834
|
-
}.-me-9
|
|
7974
|
+
}.-me-9,
|
|
7975
|
+
.me--9 {
|
|
7835
7976
|
margin-inline-end: -9rem !important;
|
|
7836
|
-
}.-me-10
|
|
7977
|
+
}.-me-10,
|
|
7978
|
+
.me--10 {
|
|
7837
7979
|
margin-inline-end: -10rem !important;
|
|
7838
7980
|
}.pb-0 {
|
|
7839
7981
|
padding-bottom: 0rem !important;
|
|
@@ -12346,267 +12488,333 @@ to {
|
|
|
12346
12488
|
margin: 10rem !important;
|
|
12347
12489
|
}
|
|
12348
12490
|
|
|
12349
|
-
.m_-mb-025
|
|
12491
|
+
.m_-mb-025,
|
|
12492
|
+
.m_mb--025 {
|
|
12350
12493
|
margin-bottom: -0.25rem !important;
|
|
12351
12494
|
}
|
|
12352
12495
|
|
|
12353
|
-
.m_-mb-05
|
|
12496
|
+
.m_-mb-05,
|
|
12497
|
+
.m_mb--05 {
|
|
12354
12498
|
margin-bottom: -0.5rem !important;
|
|
12355
12499
|
}
|
|
12356
12500
|
|
|
12357
|
-
.m_-mb-075
|
|
12501
|
+
.m_-mb-075,
|
|
12502
|
+
.m_mb--075 {
|
|
12358
12503
|
margin-bottom: -0.75rem !important;
|
|
12359
12504
|
}
|
|
12360
12505
|
|
|
12361
|
-
.m_-mb-1
|
|
12506
|
+
.m_-mb-1,
|
|
12507
|
+
.m_mb--1 {
|
|
12362
12508
|
margin-bottom: -1rem !important;
|
|
12363
12509
|
}
|
|
12364
12510
|
|
|
12365
|
-
.m_-mb-1-5
|
|
12511
|
+
.m_-mb-1-5,
|
|
12512
|
+
.m_mb--1-5 {
|
|
12366
12513
|
margin-bottom: -1.5rem !important;
|
|
12367
12514
|
}
|
|
12368
12515
|
|
|
12369
|
-
.m_-mb-2-5
|
|
12516
|
+
.m_-mb-2-5,
|
|
12517
|
+
.m_mb--2-5 {
|
|
12370
12518
|
margin-bottom: -2.5rem !important;
|
|
12371
12519
|
}
|
|
12372
12520
|
|
|
12373
|
-
.m_-mb-3-5
|
|
12521
|
+
.m_-mb-3-5,
|
|
12522
|
+
.m_mb--3-5 {
|
|
12374
12523
|
margin-bottom: -3.5rem !important;
|
|
12375
12524
|
}
|
|
12376
12525
|
|
|
12377
|
-
.m_-mb-4-5
|
|
12526
|
+
.m_-mb-4-5,
|
|
12527
|
+
.m_mb--4-5 {
|
|
12378
12528
|
margin-bottom: -4.5rem !important;
|
|
12379
12529
|
}
|
|
12380
12530
|
|
|
12381
|
-
.m_-mb-5-5
|
|
12531
|
+
.m_-mb-5-5,
|
|
12532
|
+
.m_mb--5-5 {
|
|
12382
12533
|
margin-bottom: -5.5rem !important;
|
|
12383
12534
|
}
|
|
12384
12535
|
|
|
12385
|
-
.m_-mb-6-5
|
|
12536
|
+
.m_-mb-6-5,
|
|
12537
|
+
.m_mb--6-5 {
|
|
12386
12538
|
margin-bottom: -6.5rem !important;
|
|
12387
12539
|
}
|
|
12388
12540
|
|
|
12389
|
-
.m_-mb-7-5
|
|
12541
|
+
.m_-mb-7-5,
|
|
12542
|
+
.m_mb--7-5 {
|
|
12390
12543
|
margin-bottom: -7.5rem !important;
|
|
12391
12544
|
}
|
|
12392
12545
|
|
|
12393
|
-
.m_-mb-8-5
|
|
12546
|
+
.m_-mb-8-5,
|
|
12547
|
+
.m_mb--8-5 {
|
|
12394
12548
|
margin-bottom: -8.5rem !important;
|
|
12395
12549
|
}
|
|
12396
12550
|
|
|
12397
|
-
.m_-mb-9-5
|
|
12551
|
+
.m_-mb-9-5,
|
|
12552
|
+
.m_mb--9-5 {
|
|
12398
12553
|
margin-bottom: -9.5rem !important;
|
|
12399
12554
|
}
|
|
12400
12555
|
|
|
12401
|
-
.m_-mb-10-5
|
|
12556
|
+
.m_-mb-10-5,
|
|
12557
|
+
.m_mb--10-5 {
|
|
12402
12558
|
margin-bottom: -10.5rem !important;
|
|
12403
12559
|
}
|
|
12404
12560
|
|
|
12405
|
-
.m_-mb-2
|
|
12561
|
+
.m_-mb-2,
|
|
12562
|
+
.m_mb--2 {
|
|
12406
12563
|
margin-bottom: -2rem !important;
|
|
12407
12564
|
}
|
|
12408
12565
|
|
|
12409
|
-
.m_-mb-3
|
|
12566
|
+
.m_-mb-3,
|
|
12567
|
+
.m_mb--3 {
|
|
12410
12568
|
margin-bottom: -3rem !important;
|
|
12411
12569
|
}
|
|
12412
12570
|
|
|
12413
|
-
.m_-mb-4
|
|
12571
|
+
.m_-mb-4,
|
|
12572
|
+
.m_mb--4 {
|
|
12414
12573
|
margin-bottom: -4rem !important;
|
|
12415
12574
|
}
|
|
12416
12575
|
|
|
12417
|
-
.m_-mb-5
|
|
12576
|
+
.m_-mb-5,
|
|
12577
|
+
.m_mb--5 {
|
|
12418
12578
|
margin-bottom: -5rem !important;
|
|
12419
12579
|
}
|
|
12420
12580
|
|
|
12421
|
-
.m_-mb-6
|
|
12581
|
+
.m_-mb-6,
|
|
12582
|
+
.m_mb--6 {
|
|
12422
12583
|
margin-bottom: -6rem !important;
|
|
12423
12584
|
}
|
|
12424
12585
|
|
|
12425
|
-
.m_-mb-7
|
|
12586
|
+
.m_-mb-7,
|
|
12587
|
+
.m_mb--7 {
|
|
12426
12588
|
margin-bottom: -7rem !important;
|
|
12427
12589
|
}
|
|
12428
12590
|
|
|
12429
|
-
.m_-mb-8
|
|
12591
|
+
.m_-mb-8,
|
|
12592
|
+
.m_mb--8 {
|
|
12430
12593
|
margin-bottom: -8rem !important;
|
|
12431
12594
|
}
|
|
12432
12595
|
|
|
12433
|
-
.m_-mb-9
|
|
12596
|
+
.m_-mb-9,
|
|
12597
|
+
.m_mb--9 {
|
|
12434
12598
|
margin-bottom: -9rem !important;
|
|
12435
12599
|
}
|
|
12436
12600
|
|
|
12437
|
-
.m_-mb-10
|
|
12601
|
+
.m_-mb-10,
|
|
12602
|
+
.m_mb--10 {
|
|
12438
12603
|
margin-bottom: -10rem !important;
|
|
12439
12604
|
}
|
|
12440
12605
|
|
|
12441
|
-
.m_-mb-11
|
|
12606
|
+
.m_-mb-11,
|
|
12607
|
+
.m_mb--11 {
|
|
12442
12608
|
margin-bottom: -11rem !important;
|
|
12443
12609
|
}
|
|
12444
12610
|
|
|
12445
|
-
.m_-mb-12
|
|
12611
|
+
.m_-mb-12,
|
|
12612
|
+
.m_mb--12 {
|
|
12446
12613
|
margin-bottom: -12rem !important;
|
|
12447
12614
|
}
|
|
12448
12615
|
|
|
12449
|
-
.m_-mb-13
|
|
12616
|
+
.m_-mb-13,
|
|
12617
|
+
.m_mb--13 {
|
|
12450
12618
|
margin-bottom: -13rem !important;
|
|
12451
12619
|
}
|
|
12452
12620
|
|
|
12453
|
-
.m_-mb-14
|
|
12621
|
+
.m_-mb-14,
|
|
12622
|
+
.m_mb--14 {
|
|
12454
12623
|
margin-bottom: -14rem !important;
|
|
12455
12624
|
}
|
|
12456
12625
|
|
|
12457
|
-
.m_-mb-15
|
|
12626
|
+
.m_-mb-15,
|
|
12627
|
+
.m_mb--15 {
|
|
12458
12628
|
margin-bottom: -15rem !important;
|
|
12459
12629
|
}
|
|
12460
12630
|
|
|
12461
|
-
.m_-mb-16
|
|
12631
|
+
.m_-mb-16,
|
|
12632
|
+
.m_mb--16 {
|
|
12462
12633
|
margin-bottom: -16rem !important;
|
|
12463
12634
|
}
|
|
12464
12635
|
|
|
12465
|
-
.m_-mb-17
|
|
12636
|
+
.m_-mb-17,
|
|
12637
|
+
.m_mb--17 {
|
|
12466
12638
|
margin-bottom: -17rem !important;
|
|
12467
12639
|
}
|
|
12468
12640
|
|
|
12469
|
-
.m_-mb-18
|
|
12641
|
+
.m_-mb-18,
|
|
12642
|
+
.m_mb--18 {
|
|
12470
12643
|
margin-bottom: -18rem !important;
|
|
12471
12644
|
}
|
|
12472
12645
|
|
|
12473
|
-
.m_-mb-19
|
|
12646
|
+
.m_-mb-19,
|
|
12647
|
+
.m_mb--19 {
|
|
12474
12648
|
margin-bottom: -19rem !important;
|
|
12475
12649
|
}
|
|
12476
12650
|
|
|
12477
|
-
.m_-mb-20
|
|
12651
|
+
.m_-mb-20,
|
|
12652
|
+
.m_mb--20 {
|
|
12478
12653
|
margin-bottom: -20rem !important;
|
|
12479
12654
|
}
|
|
12480
12655
|
|
|
12481
|
-
.m_-mt-025
|
|
12656
|
+
.m_-mt-025,
|
|
12657
|
+
.m_mt--025 {
|
|
12482
12658
|
margin-top: -0.25rem !important;
|
|
12483
12659
|
}
|
|
12484
12660
|
|
|
12485
|
-
.m_-mt-05
|
|
12661
|
+
.m_-mt-05,
|
|
12662
|
+
.m_mt--05 {
|
|
12486
12663
|
margin-top: -0.5rem !important;
|
|
12487
12664
|
}
|
|
12488
12665
|
|
|
12489
|
-
.m_-mt-075
|
|
12666
|
+
.m_-mt-075,
|
|
12667
|
+
.m_mt--075 {
|
|
12490
12668
|
margin-top: 0.75rem !important;
|
|
12491
12669
|
}
|
|
12492
12670
|
|
|
12493
|
-
.m_-mt-1
|
|
12671
|
+
.m_-mt-1,
|
|
12672
|
+
.m_mt--1 {
|
|
12494
12673
|
margin-top: -1rem !important;
|
|
12495
12674
|
}
|
|
12496
12675
|
|
|
12497
|
-
.m_-mt-1-5
|
|
12676
|
+
.m_-mt-1-5,
|
|
12677
|
+
.m_mt--1-5 {
|
|
12498
12678
|
margin-top: -1.5rem !important;
|
|
12499
12679
|
}
|
|
12500
12680
|
|
|
12501
|
-
.m_-mt-2-5
|
|
12681
|
+
.m_-mt-2-5,
|
|
12682
|
+
.m_mt--2-5 {
|
|
12502
12683
|
margin-top: -2.5rem !important;
|
|
12503
12684
|
}
|
|
12504
12685
|
|
|
12505
|
-
.m_-mt-3-5
|
|
12686
|
+
.m_-mt-3-5,
|
|
12687
|
+
.m_mt--3-5 {
|
|
12506
12688
|
margin-top: -3.5rem !important;
|
|
12507
12689
|
}
|
|
12508
12690
|
|
|
12509
|
-
.m_-mt-4-5
|
|
12691
|
+
.m_-mt-4-5,
|
|
12692
|
+
.m_mt--4-5 {
|
|
12510
12693
|
margin-top: -4.5rem !important;
|
|
12511
12694
|
}
|
|
12512
12695
|
|
|
12513
|
-
.m_-mt-5-5
|
|
12696
|
+
.m_-mt-5-5,
|
|
12697
|
+
.m_mt--5-5 {
|
|
12514
12698
|
margin-top: -5.5rem !important;
|
|
12515
12699
|
}
|
|
12516
12700
|
|
|
12517
|
-
.m_-mt-6-5
|
|
12701
|
+
.m_-mt-6-5,
|
|
12702
|
+
.m_mt--6-5 {
|
|
12518
12703
|
margin-top: -6.5rem !important;
|
|
12519
12704
|
}
|
|
12520
12705
|
|
|
12521
|
-
.m_-mt-7-5
|
|
12706
|
+
.m_-mt-7-5,
|
|
12707
|
+
.m_mt--7-5 {
|
|
12522
12708
|
margin-top: -7.5rem !important;
|
|
12523
12709
|
}
|
|
12524
12710
|
|
|
12525
|
-
.m_-mt-8-5
|
|
12711
|
+
.m_-mt-8-5,
|
|
12712
|
+
.m_mt--8-5 {
|
|
12526
12713
|
margin-top: -8.5rem !important;
|
|
12527
12714
|
}
|
|
12528
12715
|
|
|
12529
|
-
.m_-mt-9-5
|
|
12716
|
+
.m_-mt-9-5,
|
|
12717
|
+
.m_mt--9-5 {
|
|
12530
12718
|
margin-top: -9.5rem !important;
|
|
12531
12719
|
}
|
|
12532
12720
|
|
|
12533
|
-
.m_-mt-10-5
|
|
12721
|
+
.m_-mt-10-5,
|
|
12722
|
+
.m_mt--10-5 {
|
|
12534
12723
|
margin-top: -10.5rem !important;
|
|
12535
12724
|
}
|
|
12536
12725
|
|
|
12537
|
-
.m_-mt-2
|
|
12726
|
+
.m_-mt-2,
|
|
12727
|
+
.m_mt--2 {
|
|
12538
12728
|
margin-top: -2rem !important;
|
|
12539
12729
|
}
|
|
12540
12730
|
|
|
12541
|
-
.m_-mt-3
|
|
12731
|
+
.m_-mt-3,
|
|
12732
|
+
.m_mt--3 {
|
|
12542
12733
|
margin-top: -3rem !important;
|
|
12543
12734
|
}
|
|
12544
12735
|
|
|
12545
|
-
.m_-mt-4
|
|
12736
|
+
.m_-mt-4,
|
|
12737
|
+
.m_mt--4 {
|
|
12546
12738
|
margin-top: -4rem !important;
|
|
12547
12739
|
}
|
|
12548
12740
|
|
|
12549
|
-
.m_-mt-5
|
|
12741
|
+
.m_-mt-5,
|
|
12742
|
+
.m_mt--5 {
|
|
12550
12743
|
margin-top: -5rem !important;
|
|
12551
12744
|
}
|
|
12552
12745
|
|
|
12553
|
-
.m_-mt-6
|
|
12746
|
+
.m_-mt-6,
|
|
12747
|
+
.m_mt--6 {
|
|
12554
12748
|
margin-top: -6rem !important;
|
|
12555
12749
|
}
|
|
12556
12750
|
|
|
12557
|
-
.m_-mt-7
|
|
12751
|
+
.m_-mt-7,
|
|
12752
|
+
.m_mt--7 {
|
|
12558
12753
|
margin-top: -7rem !important;
|
|
12559
12754
|
}
|
|
12560
12755
|
|
|
12561
|
-
.m_-mt-8
|
|
12756
|
+
.m_-mt-8,
|
|
12757
|
+
.m_mt--8 {
|
|
12562
12758
|
margin-top: -8rem !important;
|
|
12563
12759
|
}
|
|
12564
12760
|
|
|
12565
|
-
.m_-mt-9
|
|
12761
|
+
.m_-mt-9,
|
|
12762
|
+
.m_mt--9 {
|
|
12566
12763
|
margin-top: -9rem !important;
|
|
12567
12764
|
}
|
|
12568
12765
|
|
|
12569
|
-
.m_-mt-10
|
|
12766
|
+
.m_-mt-10,
|
|
12767
|
+
.m_mt--10 {
|
|
12570
12768
|
margin-top: -10rem !important;
|
|
12571
12769
|
}
|
|
12572
12770
|
|
|
12573
|
-
.m_-mt-11
|
|
12771
|
+
.m_-mt-11,
|
|
12772
|
+
.m_mt--11 {
|
|
12574
12773
|
margin-top: -11rem !important;
|
|
12575
12774
|
}
|
|
12576
12775
|
|
|
12577
|
-
.m_-mt-12
|
|
12776
|
+
.m_-mt-12,
|
|
12777
|
+
.m_mt--12 {
|
|
12578
12778
|
margin-top: -12rem !important;
|
|
12579
12779
|
}
|
|
12580
12780
|
|
|
12581
|
-
.m_-mt-13
|
|
12781
|
+
.m_-mt-13,
|
|
12782
|
+
.m_mt--13 {
|
|
12582
12783
|
margin-top: -13rem !important;
|
|
12583
12784
|
}
|
|
12584
12785
|
|
|
12585
|
-
.m_-mt-14
|
|
12786
|
+
.m_-mt-14,
|
|
12787
|
+
.m_mt--14 {
|
|
12586
12788
|
margin-top: -14rem !important;
|
|
12587
12789
|
}
|
|
12588
12790
|
|
|
12589
|
-
.m_-mt-15
|
|
12791
|
+
.m_-mt-15,
|
|
12792
|
+
.m_mt--15 {
|
|
12590
12793
|
margin-top: -15rem !important;
|
|
12591
12794
|
}
|
|
12592
12795
|
|
|
12593
|
-
.m_-mt-16
|
|
12796
|
+
.m_-mt-16,
|
|
12797
|
+
.m_mt--16 {
|
|
12594
12798
|
margin-top: -16rem !important;
|
|
12595
12799
|
}
|
|
12596
12800
|
|
|
12597
|
-
.m_-mt-17
|
|
12801
|
+
.m_-mt-17,
|
|
12802
|
+
.m_mt--17 {
|
|
12598
12803
|
margin-top: -17rem !important;
|
|
12599
12804
|
}
|
|
12600
12805
|
|
|
12601
|
-
.m_-mt-18
|
|
12806
|
+
.m_-mt-18,
|
|
12807
|
+
.m_mt--18 {
|
|
12602
12808
|
margin-top: -18rem !important;
|
|
12603
12809
|
}
|
|
12604
12810
|
|
|
12605
|
-
.m_-mt-19
|
|
12811
|
+
.m_-mt-19,
|
|
12812
|
+
.m_mt--19 {
|
|
12606
12813
|
margin-top: -19rem !important;
|
|
12607
12814
|
}
|
|
12608
12815
|
|
|
12609
|
-
.m_-mt-20
|
|
12816
|
+
.m_-mt-20,
|
|
12817
|
+
.m_mt--20 {
|
|
12610
12818
|
margin-top: -20rem !important;
|
|
12611
12819
|
}
|
|
12612
12820
|
|
|
@@ -12726,192 +12934,239 @@ to {
|
|
|
12726
12934
|
margin-bottom: -10rem !important;
|
|
12727
12935
|
}
|
|
12728
12936
|
|
|
12729
|
-
.m_-ms-025
|
|
12937
|
+
.m_-ms-025,
|
|
12938
|
+
.m_ms--025 {
|
|
12730
12939
|
margin-inline-start: -0.25rem !important;
|
|
12731
12940
|
}
|
|
12732
12941
|
|
|
12733
|
-
.m_-ms-05
|
|
12942
|
+
.m_-ms-05,
|
|
12943
|
+
.m_ms--05 {
|
|
12734
12944
|
margin-inline-start: -0.5rem !important;
|
|
12735
12945
|
}
|
|
12736
12946
|
|
|
12737
|
-
.m_-ms-075
|
|
12947
|
+
.m_-ms-075,
|
|
12948
|
+
.m_ms--075 {
|
|
12738
12949
|
margin-inline-start: -0.75rem !important;
|
|
12739
12950
|
}
|
|
12740
12951
|
|
|
12741
|
-
.m_-ms-1
|
|
12952
|
+
.m_-ms-1,
|
|
12953
|
+
.m_ms--1 {
|
|
12742
12954
|
margin-inline-start: -1rem !important;
|
|
12743
12955
|
}
|
|
12744
12956
|
|
|
12745
|
-
.m_-ms-1-5
|
|
12957
|
+
.m_-ms-1-5,
|
|
12958
|
+
.m_ms--1-5 {
|
|
12746
12959
|
margin-inline-start: -1.5rem !important;
|
|
12747
12960
|
}
|
|
12748
12961
|
|
|
12749
|
-
.m_-ms-2-5
|
|
12962
|
+
.m_-ms-2-5,
|
|
12963
|
+
.m_ms--2-5 {
|
|
12750
12964
|
margin-inline-start: -2.5rem !important;
|
|
12751
12965
|
}
|
|
12752
12966
|
|
|
12753
|
-
.m_-ms-3-5
|
|
12967
|
+
.m_-ms-3-5,
|
|
12968
|
+
.m_ms--3-5 {
|
|
12754
12969
|
margin-inline-start: -3.5rem !important;
|
|
12755
12970
|
}
|
|
12756
12971
|
|
|
12757
|
-
.m_-ms-4-5
|
|
12972
|
+
.m_-ms-4-5,
|
|
12973
|
+
.m_ms--4-5 {
|
|
12758
12974
|
margin-inline-start: -4.5rem !important;
|
|
12759
12975
|
}
|
|
12760
12976
|
|
|
12761
|
-
.m_-ms-5-5
|
|
12977
|
+
.m_-ms-5-5,
|
|
12978
|
+
.m_ms--5-5 {
|
|
12762
12979
|
margin-inline-start: -5.5rem !important;
|
|
12763
12980
|
}
|
|
12764
12981
|
|
|
12765
|
-
.m_-ms-6-5
|
|
12982
|
+
.m_-ms-6-5,
|
|
12983
|
+
.m_ms--6-5 {
|
|
12766
12984
|
margin-inline-start: -6.5rem !important;
|
|
12767
12985
|
}
|
|
12768
12986
|
|
|
12769
|
-
.m_-ms-7-5
|
|
12987
|
+
.m_-ms-7-5,
|
|
12988
|
+
.m_ms--7-5 {
|
|
12770
12989
|
margin-inline-start: -7.5rem !important;
|
|
12771
12990
|
}
|
|
12772
12991
|
|
|
12773
|
-
.m_-ms-8-5
|
|
12992
|
+
.m_-ms-8-5,
|
|
12993
|
+
.m_ms--8-5 {
|
|
12774
12994
|
margin-inline-start: -8.5rem !important;
|
|
12775
12995
|
}
|
|
12776
12996
|
|
|
12777
|
-
.m_-ms-9-5
|
|
12997
|
+
.m_-ms-9-5,
|
|
12998
|
+
.m_ms--9-5 {
|
|
12778
12999
|
margin-inline-start: -9.5rem !important;
|
|
12779
13000
|
}
|
|
12780
13001
|
|
|
12781
|
-
.m_-ms-10-5
|
|
13002
|
+
.m_-ms-10-5,
|
|
13003
|
+
.m_ms--10-5 {
|
|
12782
13004
|
margin-inline-start: -10.5rem !important;
|
|
12783
13005
|
}
|
|
12784
13006
|
|
|
12785
13007
|
|
|
12786
|
-
.m_-ms-2
|
|
13008
|
+
.m_-ms-2,
|
|
13009
|
+
.m_ms--2 {
|
|
12787
13010
|
margin-inline-start: -2rem !important;
|
|
12788
13011
|
}
|
|
12789
13012
|
|
|
12790
|
-
.m_-ms-3
|
|
13013
|
+
.m_-ms-3,
|
|
13014
|
+
.m_ms--3 {
|
|
12791
13015
|
margin-inline-start: -3rem !important;
|
|
12792
13016
|
}
|
|
12793
13017
|
|
|
12794
|
-
.m_-ms-4
|
|
13018
|
+
.m_-ms-4,
|
|
13019
|
+
.m_ms--4 {
|
|
12795
13020
|
margin-inline-start: -4rem !important;
|
|
12796
13021
|
}
|
|
12797
13022
|
|
|
12798
|
-
.m_-ms-5
|
|
13023
|
+
.m_-ms-5,
|
|
13024
|
+
.m_ms--5 {
|
|
12799
13025
|
margin-inline-start: -5rem !important;
|
|
12800
13026
|
}
|
|
12801
13027
|
|
|
12802
|
-
.m_-ms-6
|
|
13028
|
+
.m_-ms-6,
|
|
13029
|
+
.m_ms--6 {
|
|
12803
13030
|
margin-inline-start: -6rem !important;
|
|
12804
13031
|
}
|
|
12805
13032
|
|
|
12806
|
-
.m_-ms-7
|
|
13033
|
+
.m_-ms-7,
|
|
13034
|
+
.m_ms--7 {
|
|
12807
13035
|
margin-inline-start: -7rem !important;
|
|
12808
13036
|
}
|
|
12809
13037
|
|
|
12810
|
-
.m_-ms-8
|
|
13038
|
+
.m_-ms-8,
|
|
13039
|
+
.m_ms--8 {
|
|
12811
13040
|
margin-inline-start: -8rem !important;
|
|
12812
13041
|
}
|
|
12813
13042
|
|
|
12814
|
-
.m_-ms-9
|
|
13043
|
+
.m_-ms-9,
|
|
13044
|
+
.m_ms--9 {
|
|
12815
13045
|
margin-inline-start: -9rem !important;
|
|
12816
13046
|
}
|
|
12817
13047
|
|
|
12818
|
-
.m_-ms-10
|
|
13048
|
+
.m_-ms-10,
|
|
13049
|
+
.m_ms--10 {
|
|
12819
13050
|
margin-inline-start: -10rem !important;
|
|
12820
13051
|
}
|
|
12821
13052
|
|
|
12822
|
-
.m_-me-025
|
|
13053
|
+
.m_-me-025,
|
|
13054
|
+
.m_me--025 {
|
|
12823
13055
|
margin-inline-end: -0.25rem !important;
|
|
12824
13056
|
}
|
|
12825
13057
|
|
|
12826
|
-
.m_-me-05
|
|
13058
|
+
.m_-me-05,
|
|
13059
|
+
.m_me--05 {
|
|
12827
13060
|
margin-inline-end: -0.5rem !important;
|
|
12828
13061
|
}
|
|
12829
13062
|
|
|
12830
|
-
.m_-me-075
|
|
13063
|
+
.m_-me-075,
|
|
13064
|
+
.m_me--075 {
|
|
12831
13065
|
margin-inline-end: -0.75rem !important;
|
|
12832
13066
|
}
|
|
12833
13067
|
|
|
12834
|
-
.m_-me-1
|
|
13068
|
+
.m_-me-1,
|
|
13069
|
+
.m_me--1 {
|
|
12835
13070
|
margin-inline-end: -1rem !important;
|
|
12836
13071
|
}
|
|
12837
13072
|
|
|
12838
|
-
.m_-me-1-5
|
|
13073
|
+
.m_-me-1-5,
|
|
13074
|
+
.m_me--1-5 {
|
|
12839
13075
|
margin-inline-end: -1.5rem !important;
|
|
12840
13076
|
}
|
|
12841
13077
|
|
|
12842
|
-
.m_-me-2-5
|
|
13078
|
+
.m_-me-2-5,
|
|
13079
|
+
.m_me--2-5 {
|
|
12843
13080
|
margin-inline-end: -2.5rem !important;
|
|
12844
13081
|
}
|
|
12845
13082
|
|
|
12846
|
-
.m_-me-3-5
|
|
13083
|
+
.m_-me-3-5,
|
|
13084
|
+
.m_me--3-5 {
|
|
12847
13085
|
margin-inline-end: -3.5rem !important;
|
|
12848
13086
|
}
|
|
12849
13087
|
|
|
12850
|
-
.m_-me-4-5
|
|
13088
|
+
.m_-me-4-5,
|
|
13089
|
+
.m_me--4-5 {
|
|
12851
13090
|
margin-inline-end: -4.5rem !important;
|
|
12852
13091
|
}
|
|
12853
13092
|
|
|
12854
|
-
.m_-me-5-5
|
|
13093
|
+
.m_-me-5-5,
|
|
13094
|
+
.m_me--5-5 {
|
|
12855
13095
|
margin-inline-end: -5.5rem !important;
|
|
12856
13096
|
}
|
|
12857
13097
|
|
|
12858
|
-
.m_-me-6-5
|
|
13098
|
+
.m_-me-6-5,
|
|
13099
|
+
.m_me--6-5 {
|
|
12859
13100
|
margin-inline-end: -6.5rem !important;
|
|
12860
13101
|
}
|
|
12861
13102
|
|
|
12862
|
-
.m_-me-7-5
|
|
13103
|
+
.m_-me-7-5,
|
|
13104
|
+
.m_me--7-5 {
|
|
12863
13105
|
margin-inline-end: -7.5rem !important;
|
|
12864
13106
|
}
|
|
12865
13107
|
|
|
12866
|
-
.m_-me-8-5
|
|
13108
|
+
.m_-me-8-5,
|
|
13109
|
+
.m_me--8-5 {
|
|
12867
13110
|
margin-inline-end: -8.5rem !important;
|
|
12868
13111
|
}
|
|
12869
13112
|
|
|
12870
|
-
.m_-me-9-5
|
|
13113
|
+
.m_-me-9-5,
|
|
13114
|
+
.m_me--9-5 {
|
|
12871
13115
|
margin-inline-end: -9.5rem !important;
|
|
12872
13116
|
}
|
|
12873
13117
|
|
|
12874
|
-
.m_-me-10-5
|
|
13118
|
+
.m_-me-10-5,
|
|
13119
|
+
.m_me--10-5 {
|
|
12875
13120
|
margin-inline-end: -10.5rem !important;
|
|
12876
13121
|
}
|
|
12877
13122
|
|
|
12878
|
-
.m_-me-2
|
|
13123
|
+
.m_-me-2,
|
|
13124
|
+
.m_me--2 {
|
|
12879
13125
|
margin-inline-end: -2rem !important;
|
|
12880
13126
|
}
|
|
12881
13127
|
|
|
12882
|
-
.m_-me-3
|
|
13128
|
+
.m_-me-3,
|
|
13129
|
+
.m_me--3 {
|
|
12883
13130
|
margin-inline-end: -3rem !important;
|
|
12884
13131
|
}
|
|
12885
13132
|
|
|
12886
|
-
.m_-me-4
|
|
13133
|
+
.m_-me-4,
|
|
13134
|
+
.m_me--4 {
|
|
12887
13135
|
margin-inline-end: -4rem !important;
|
|
12888
13136
|
}
|
|
12889
13137
|
|
|
12890
|
-
.m_-me-4
|
|
13138
|
+
.m_-me-4,
|
|
13139
|
+
.m_me--4 {
|
|
12891
13140
|
margin-inline-end: -4rem !important;
|
|
12892
13141
|
}
|
|
12893
13142
|
|
|
12894
|
-
.m_-me-5
|
|
13143
|
+
.m_-me-5,
|
|
13144
|
+
.m_me--5 {
|
|
12895
13145
|
margin-inline-end: -5rem !important;
|
|
12896
13146
|
}
|
|
12897
13147
|
|
|
12898
|
-
.m_-me-6
|
|
13148
|
+
.m_-me-6,
|
|
13149
|
+
.m_me--6 {
|
|
12899
13150
|
margin-inline-end: -6rem !important;
|
|
12900
13151
|
}
|
|
12901
13152
|
|
|
12902
|
-
.m_-me-7
|
|
13153
|
+
.m_-me-7,
|
|
13154
|
+
.m_me--7 {
|
|
12903
13155
|
margin-inline-end: -7rem !important;
|
|
12904
13156
|
}
|
|
12905
13157
|
|
|
12906
|
-
.m_-me-8
|
|
13158
|
+
.m_-me-8,
|
|
13159
|
+
.m_me--8 {
|
|
12907
13160
|
margin-inline-end: -8rem !important;
|
|
12908
13161
|
}
|
|
12909
13162
|
|
|
12910
|
-
.m_-me-9
|
|
13163
|
+
.m_-me-9,
|
|
13164
|
+
.m_me--9 {
|
|
12911
13165
|
margin-inline-end: -9rem !important;
|
|
12912
13166
|
}
|
|
12913
13167
|
|
|
12914
|
-
.m_-me-10
|
|
13168
|
+
.m_-me-10,
|
|
13169
|
+
.m_me--10 {
|
|
12915
13170
|
margin-inline-end: -10rem !important;
|
|
12916
13171
|
}
|
|
12917
13172
|
|
|
@@ -14809,238 +15064,238 @@ to {
|
|
|
14809
15064
|
}input,
|
|
14810
15065
|
textarea,
|
|
14811
15066
|
select {
|
|
14812
|
-
|
|
14813
|
-
|
|
15067
|
+
font-family: inherit;
|
|
15068
|
+
width: 100%;
|
|
14814
15069
|
}.bagel-input-error input,
|
|
14815
15070
|
.bagel-input-error button,
|
|
14816
15071
|
.bagel-input-error textarea {
|
|
14817
|
-
|
|
15072
|
+
outline: 1px solid var(--bgl-red);
|
|
14818
15073
|
}.bagel-input {
|
|
14819
|
-
|
|
14820
|
-
|
|
14821
|
-
|
|
14822
|
-
|
|
14823
|
-
|
|
14824
|
-
|
|
14825
|
-
|
|
15074
|
+
position: relative;
|
|
15075
|
+
display: flex;
|
|
15076
|
+
flex-direction: column;
|
|
15077
|
+
text-align: start;
|
|
15078
|
+
margin-bottom: 0.5rem;
|
|
15079
|
+
width: 100%;
|
|
15080
|
+
color: var(--bgl-text-color);
|
|
14826
15081
|
}.bagel-input::-webkit-input-placeholder .bagel-input label {
|
|
14827
|
-
|
|
14828
|
-
|
|
14829
|
-
|
|
14830
|
-
|
|
15082
|
+
display: block;
|
|
15083
|
+
font-size: var(--label-font-size);
|
|
15084
|
+
margin-bottom: 2px;
|
|
15085
|
+
line-height: 1.3;
|
|
14831
15086
|
}.bagel-input::-moz-placeholder .bagel-input label {
|
|
14832
|
-
|
|
14833
|
-
|
|
14834
|
-
|
|
14835
|
-
|
|
15087
|
+
display: block;
|
|
15088
|
+
font-size: var(--label-font-size);
|
|
15089
|
+
margin-bottom: 2px;
|
|
15090
|
+
line-height: 1.3;
|
|
14836
15091
|
}.bagel-input:-ms-input-placeholder .bagel-input label {
|
|
14837
|
-
|
|
14838
|
-
|
|
14839
|
-
|
|
14840
|
-
|
|
15092
|
+
display: block;
|
|
15093
|
+
font-size: var(--label-font-size);
|
|
15094
|
+
margin-bottom: 2px;
|
|
15095
|
+
line-height: 1.3;
|
|
14841
15096
|
}.bagel-input::-ms-input-placeholder .bagel-input label {
|
|
14842
|
-
|
|
14843
|
-
|
|
14844
|
-
|
|
14845
|
-
|
|
15097
|
+
display: block;
|
|
15098
|
+
font-size: var(--label-font-size);
|
|
15099
|
+
margin-bottom: 2px;
|
|
15100
|
+
line-height: 1.3;
|
|
14846
15101
|
}.bagel-input::placeholder .bagel-input label {
|
|
14847
|
-
|
|
14848
|
-
|
|
14849
|
-
|
|
14850
|
-
|
|
15102
|
+
display: block;
|
|
15103
|
+
font-size: var(--label-font-size);
|
|
15104
|
+
margin-bottom: 2px;
|
|
15105
|
+
line-height: 1.3;
|
|
14851
15106
|
}.bagel-input::-webkit-input-placeholder {
|
|
14852
|
-
|
|
15107
|
+
color: var(--placeholder-color);
|
|
14853
15108
|
}.bagel-input::-moz-placeholder {
|
|
14854
|
-
|
|
15109
|
+
color: var(--placeholder-color);
|
|
14855
15110
|
}.bagel-input:-ms-input-placeholder {
|
|
14856
|
-
|
|
15111
|
+
color: var(--placeholder-color);
|
|
14857
15112
|
}.bagel-input::-ms-input-placeholder {
|
|
14858
|
-
|
|
15113
|
+
color: var(--placeholder-color);
|
|
14859
15114
|
}.bagel-input::placeholder {
|
|
14860
|
-
|
|
15115
|
+
color: var(--placeholder-color);
|
|
14861
15116
|
}.bagel-input label {
|
|
14862
|
-
|
|
15117
|
+
color: var(--label-color);
|
|
14863
15118
|
}.bagel-input input,
|
|
14864
15119
|
.bagel-input select,
|
|
14865
15120
|
.custom-select .input {
|
|
14866
|
-
|
|
14867
|
-
|
|
15121
|
+
height: var(--input-height);
|
|
15122
|
+
font-size: var(--input-font-size);
|
|
14868
15123
|
}.bagel-input input,
|
|
14869
15124
|
.bagel-input textarea,
|
|
14870
15125
|
.bagel-input select,
|
|
14871
15126
|
.custom-select .input {
|
|
14872
|
-
|
|
14873
|
-
|
|
14874
|
-
|
|
14875
|
-
|
|
14876
|
-
|
|
14877
|
-
|
|
14878
|
-
|
|
15127
|
+
background: var(--input-bg);
|
|
15128
|
+
border: none;
|
|
15129
|
+
padding: 0.7rem;
|
|
15130
|
+
border-radius: var(--input-border-radius);
|
|
15131
|
+
color: var(--input-color);
|
|
15132
|
+
min-width: calc(var(--input-height) * 3);
|
|
15133
|
+
width: 100%;
|
|
14879
15134
|
}.bagel-input input::-webkit-input-placeholder,
|
|
14880
15135
|
.bagel-input textarea::-webkit-input-placeholder,
|
|
14881
15136
|
.bagel-input select::-webkit-input-placeholder,
|
|
14882
15137
|
.custom-select .input::-webkit-input-placeholder {
|
|
14883
|
-
|
|
15138
|
+
color: var(--placeholder-color);
|
|
14884
15139
|
}.bagel-input input::-moz-placeholder,
|
|
14885
15140
|
.bagel-input textarea::-moz-placeholder,
|
|
14886
15141
|
.bagel-input select::-moz-placeholder,
|
|
14887
15142
|
.custom-select .input::-moz-placeholder {
|
|
14888
|
-
|
|
15143
|
+
color: var(--placeholder-color);
|
|
14889
15144
|
}.bagel-input input:-ms-input-placeholder,
|
|
14890
15145
|
.bagel-input textarea:-ms-input-placeholder,
|
|
14891
15146
|
.bagel-input select:-ms-input-placeholder,
|
|
14892
15147
|
.custom-select .input:-ms-input-placeholder {
|
|
14893
|
-
|
|
15148
|
+
color: var(--placeholder-color);
|
|
14894
15149
|
}.bagel-input input::-ms-input-placeholder,
|
|
14895
15150
|
.bagel-input textarea::-ms-input-placeholder,
|
|
14896
15151
|
.bagel-input select::-ms-input-placeholder,
|
|
14897
15152
|
.custom-select .input::-ms-input-placeholder {
|
|
14898
|
-
|
|
15153
|
+
color: var(--placeholder-color);
|
|
14899
15154
|
}.bagel-input input::placeholder,
|
|
14900
15155
|
.bagel-input textarea::placeholder,
|
|
14901
15156
|
.bagel-input select::placeholder,
|
|
14902
15157
|
.custom-select .input::placeholder {
|
|
14903
|
-
|
|
15158
|
+
color: var(--placeholder-color);
|
|
14904
15159
|
}.bagel-input.search-wrap {
|
|
14905
|
-
|
|
14906
|
-
|
|
14907
|
-
|
|
15160
|
+
display: flex;
|
|
15161
|
+
flex-direction: row;
|
|
15162
|
+
align-items: center;
|
|
14908
15163
|
}.bagel-input.search-wrap input {
|
|
14909
|
-
|
|
14910
|
-
|
|
15164
|
+
-webkit-padding-end: 2rem;
|
|
15165
|
+
padding-inline-end: 2rem;
|
|
14911
15166
|
}.bagel-input.search-wrap .bgl_icon-font {
|
|
14912
|
-
|
|
14913
|
-
|
|
15167
|
+
-webkit-margin-start: -1.75rem;
|
|
15168
|
+
margin-inline-start: -1.75rem;
|
|
14914
15169
|
}.bagel-input select {
|
|
14915
|
-
|
|
15170
|
+
height: var(--input-height);
|
|
14916
15171
|
}.bagel-input textarea {
|
|
14917
|
-
|
|
14918
|
-
|
|
14919
|
-
|
|
15172
|
+
resize: vertical;
|
|
15173
|
+
min-height: calc(var(--input-height) * 3);
|
|
15174
|
+
line-height: 1.5;
|
|
14920
15175
|
}.bagel-input.wider input {
|
|
14921
|
-
|
|
15176
|
+
min-width: 320px;
|
|
14922
15177
|
}.bagel-input input[type='radio'] {
|
|
14923
|
-
|
|
14924
|
-
|
|
14925
|
-
|
|
14926
|
-
|
|
15178
|
+
padding: 0;
|
|
15179
|
+
width: -webkit-fit-content;
|
|
15180
|
+
width: -moz-fit-content;
|
|
15181
|
+
width: fit-content;
|
|
14927
15182
|
}.bagel-input:focus-within label {
|
|
14928
|
-
|
|
15183
|
+
color: var(--bgl-primary);
|
|
14929
15184
|
}.bagel-input select.no-edit,
|
|
14930
15185
|
.bagel-input input.no-edit,
|
|
14931
15186
|
.bagel-input textarea.no-edit,
|
|
14932
15187
|
.bagel-input .switch.no-edit {
|
|
14933
|
-
|
|
14934
|
-
|
|
14935
|
-
|
|
15188
|
+
pointer-events: none;
|
|
15189
|
+
outline: none;
|
|
15190
|
+
opacity: 0.7;
|
|
14936
15191
|
}.bagel-input label.active {
|
|
14937
|
-
|
|
15192
|
+
color: var(--bgl-primary);
|
|
14938
15193
|
}.inline-80 {
|
|
14939
|
-
|
|
14940
|
-
|
|
15194
|
+
display: inline-block;
|
|
15195
|
+
width: 80%;
|
|
14941
15196
|
}.inline-20 {
|
|
14942
|
-
|
|
14943
|
-
|
|
15197
|
+
display: inline-block;
|
|
15198
|
+
width: 20%;
|
|
14944
15199
|
}.inline-10 {
|
|
14945
|
-
|
|
14946
|
-
|
|
15200
|
+
display: inline-block;
|
|
15201
|
+
width: 20%;
|
|
14947
15202
|
}.inline-50 {
|
|
14948
|
-
|
|
14949
|
-
|
|
14950
|
-
|
|
15203
|
+
display: inline-block;
|
|
15204
|
+
width: 49%;
|
|
15205
|
+
margin: 0 0.5%;
|
|
14951
15206
|
}.custom-select .input {
|
|
14952
|
-
|
|
14953
|
-
|
|
15207
|
+
height: var(--input-height);
|
|
15208
|
+
font-size: var(--input-font-size);
|
|
14954
15209
|
}.custom-select .input {
|
|
14955
|
-
|
|
14956
|
-
|
|
14957
|
-
|
|
14958
|
-
|
|
14959
|
-
|
|
14960
|
-
|
|
14961
|
-
|
|
14962
|
-
}[dir='rtl'] .bagel-input input[type='email'],
|
|
15210
|
+
background: var(--input-bg);
|
|
15211
|
+
border: none;
|
|
15212
|
+
padding: 0.7rem;
|
|
15213
|
+
border-radius: var(--input-border-radius);
|
|
15214
|
+
color: var(--input-color);
|
|
15215
|
+
min-width: calc(var(--input-height) * 3);
|
|
15216
|
+
width: 100%;
|
|
15217
|
+
}/* [dir='rtl'] .bagel-input input[type='email'],
|
|
14963
15218
|
[dir='rtl'] .tel-input input[type='tel'] {
|
|
14964
15219
|
direction: ltr;
|
|
14965
15220
|
text-align: right;
|
|
14966
|
-
}
|
|
15221
|
+
} */.input.active .bagel-input input:focus-visible,
|
|
14967
15222
|
.bagel-input select:focus-visible,
|
|
14968
15223
|
.bagel-input textarea:focus-visible,
|
|
14969
15224
|
.bagel-input button:focus-visible,
|
|
14970
15225
|
.bgl_btn:focus-visible {
|
|
14971
|
-
|
|
14972
|
-
|
|
15226
|
+
outline-color: var(--bgl-primary-tint);
|
|
15227
|
+
box-shadow: inset 0 0 10px #00000012;
|
|
14973
15228
|
}.bagel-input input:focus,
|
|
14974
15229
|
.bagel-input select:focus,
|
|
14975
15230
|
.bagel-input textarea:focus {
|
|
14976
|
-
|
|
14977
|
-
|
|
14978
|
-
|
|
15231
|
+
outline-color: rgba(0, 0, 0, 0.05);
|
|
15232
|
+
box-shadow: inset 0 0 10px #00000021;
|
|
15233
|
+
outline-color: var(--input-bg);
|
|
14979
15234
|
}.bagel-input .bgl_btn:focus,
|
|
14980
15235
|
.bagel-input button:focus {
|
|
14981
|
-
|
|
14982
|
-
|
|
15236
|
+
outline-color: rgba(0, 0, 0, 0.05);
|
|
15237
|
+
outline-color: var(--input-bg);
|
|
14983
15238
|
}.bagel-input.light-input input,
|
|
14984
15239
|
.bagel-input.light-input textarea,
|
|
14985
15240
|
.bagel-input.light-input select,
|
|
14986
15241
|
.custom-select.light-input .input,
|
|
14987
15242
|
.light-input .selectinput-btn {
|
|
14988
|
-
|
|
14989
|
-
|
|
14990
|
-
|
|
14991
|
-
|
|
14992
|
-
|
|
15243
|
+
background: var(--bgl-popup-bg) !important;
|
|
15244
|
+
box-shadow:
|
|
15245
|
+
0 1px 5px 0 rgba(0, 0, 0, 0.1),
|
|
15246
|
+
0 1px 2px -1px rgba(0, 0, 0, 0.1) !important;
|
|
15247
|
+
outline: 1px solid var(--border-color) !important;
|
|
14993
15248
|
}.input.active.light-input,
|
|
14994
15249
|
.bagel-input.light-input input:focus-visible,
|
|
14995
15250
|
.bagel-input.light-input select:focus-visible,
|
|
14996
15251
|
.bagel-input.light-input textarea:focus-visible {
|
|
14997
|
-
|
|
15252
|
+
box-shadow: inset 0 0 2px var(--bgl-popup-text) !important;
|
|
14998
15253
|
}.bagel-input input[type='number']-webkit-inner-spin-button,
|
|
14999
15254
|
.bagel-input input[type='number']::-webkit-outer-spin-button {
|
|
15000
|
-
|
|
15255
|
+
-webkit-appearance: none;
|
|
15001
15256
|
}.label-count-0 label {
|
|
15002
|
-
|
|
15257
|
+
display: none;
|
|
15003
15258
|
}.label-count-0 button.bgl_btn.bgl_flatBtn {
|
|
15004
|
-
|
|
15259
|
+
margin-right: 5px;
|
|
15005
15260
|
}.label-count-0 button.bgl_btn.bgl_flatBtn:hover {
|
|
15006
|
-
|
|
15261
|
+
background: var(--bgl-hover-filter);
|
|
15007
15262
|
}.bagel-input input[type='color'] {
|
|
15008
|
-
|
|
15009
|
-
|
|
15010
|
-
|
|
15011
|
-
|
|
15012
|
-
|
|
15013
|
-
|
|
15014
|
-
|
|
15015
|
-
|
|
15016
|
-
|
|
15017
|
-
|
|
15263
|
+
padding: 0.025rem 0.05rem;
|
|
15264
|
+
display: block;
|
|
15265
|
+
width: var(--input-height);
|
|
15266
|
+
min-width: var(--input-height);
|
|
15267
|
+
height: var(--input-height);
|
|
15268
|
+
border: none;
|
|
15269
|
+
-webkit-appearance: none;
|
|
15270
|
+
-moz-appearance: none;
|
|
15271
|
+
appearance: none;
|
|
15272
|
+
cursor: pointer;
|
|
15018
15273
|
}.bagel-input input[type='color']::-webkit-color-swatch {
|
|
15019
|
-
|
|
15020
|
-
|
|
15021
|
-
|
|
15022
|
-
|
|
15274
|
+
border-radius: var(--input-border-radius);
|
|
15275
|
+
border: none;
|
|
15276
|
+
-webkit-transition: box-shadow 200ms ease;
|
|
15277
|
+
transition: box-shadow 200ms ease;
|
|
15023
15278
|
}.bagel-input input[type='color']::-moz-color-swatch {
|
|
15024
|
-
|
|
15025
|
-
|
|
15026
|
-
|
|
15027
|
-
|
|
15279
|
+
border-radius: var(--input-border-radius);
|
|
15280
|
+
border: none;
|
|
15281
|
+
-moz-transition: box-shadow 200ms ease;
|
|
15282
|
+
transition: box-shadow 200ms ease;
|
|
15028
15283
|
}.bagel-input input[type='color']::-webkit-color-swatch:hover {
|
|
15029
|
-
|
|
15284
|
+
box-shadow: inset 0 0 10px #00000050;
|
|
15030
15285
|
}.bagel-input input[type='color']::-moz-color-swatch:hover {
|
|
15031
|
-
|
|
15286
|
+
box-shadow: inset 0 0 10px #00000050;
|
|
15032
15287
|
}@media screen and (max-width: 910px) {
|
|
15033
|
-
|
|
15034
|
-
|
|
15035
|
-
|
|
15288
|
+
.bagel-input.wider input {
|
|
15289
|
+
min-width: 120px;
|
|
15290
|
+
}
|
|
15036
15291
|
}.pixel {
|
|
15037
|
-
|
|
15038
|
-
|
|
15039
|
-
|
|
15040
|
-
|
|
15041
|
-
|
|
15042
|
-
|
|
15043
|
-
|
|
15292
|
+
width: 0 !important;
|
|
15293
|
+
height: 0 !important;
|
|
15294
|
+
overflow: hidden !important;
|
|
15295
|
+
outline: none !important;
|
|
15296
|
+
position: absolute !important;
|
|
15297
|
+
bottom: 0 !important;
|
|
15298
|
+
left: 50% !important;
|
|
15044
15299
|
}.bgl_btn,
|
|
15045
15300
|
.bgl_flatBtn,
|
|
15046
15301
|
.bgl_btn-icon {
|