funuicss 3.6.15 → 3.6.17
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/css/fun.css +556 -419
- package/package.json +1 -1
- package/ui/button/Button.js +27 -16
- package/ui/card/Card.js +12 -10
- package/ui/input/Input.d.ts +7 -5
- package/ui/input/Input.js +215 -39
package/css/fun.css
CHANGED
|
@@ -194,7 +194,7 @@
|
|
|
194
194
|
--borderWidth:0.1rem;
|
|
195
195
|
--border: var(--borderWidth) solid var(--borderColor);
|
|
196
196
|
--inputBorder:0.12rem;
|
|
197
|
-
--input_outline_size:0.
|
|
197
|
+
--input_outline_size:0.1rem;
|
|
198
198
|
--borderRadius:1rem;
|
|
199
199
|
--borderRadiusSmall:0.5rem;
|
|
200
200
|
--borderRadiusMax:2rem;
|
|
@@ -220,7 +220,6 @@
|
|
|
220
220
|
|
|
221
221
|
|
|
222
222
|
|
|
223
|
-
|
|
224
223
|
:root {
|
|
225
224
|
/* BUTTON VARIABLES */
|
|
226
225
|
--btn-font-size: var(--text-base);
|
|
@@ -2003,141 +2002,563 @@ border-radius: var(--borderRadius);
|
|
|
2003
2002
|
}
|
|
2004
2003
|
|
|
2005
2004
|
|
|
2005
|
+
/*inputs*/
|
|
2006
2006
|
/*inputs*/
|
|
2007
2007
|
.input {
|
|
2008
2008
|
padding: var(--inputPadding);
|
|
2009
2009
|
outline: none;
|
|
2010
2010
|
border: var(--inputBorder) transparent;
|
|
2011
|
-
border-bottom: var(--inputBorder) solid
|
|
2012
|
-
color: var(--text-color);
|
|
2011
|
+
border-bottom: var(--inputBorder) solid var(--borderColor);
|
|
2012
|
+
color: var(--text-color);
|
|
2013
2013
|
font-size: var(--minifiedFontSize);
|
|
2014
2014
|
background-color: var(--page-bg);
|
|
2015
2015
|
font-weight: 500;
|
|
2016
|
+
transition: all 0.2s ease;
|
|
2016
2017
|
}
|
|
2018
|
+
|
|
2017
2019
|
.smallInput {
|
|
2018
2020
|
font-size: var(--smallFont);
|
|
2019
2021
|
}
|
|
2020
2022
|
|
|
2021
|
-
|
|
2023
|
+
/* Input wrapper and container */
|
|
2024
|
+
.input-wrapper {
|
|
2025
|
+
display: flex;
|
|
2026
|
+
flex-direction: column;
|
|
2027
|
+
gap: 0.375rem;
|
|
2022
2028
|
position: relative;
|
|
2023
|
-
width: fit-content !important;
|
|
2024
|
-
cursor: pointer;
|
|
2025
2029
|
}
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
left: 0;
|
|
2030
|
-
width: fit-content;
|
|
2031
|
-
max-width: 100%;
|
|
2032
|
-
height: 100%;
|
|
2033
|
-
opacity: 0;
|
|
2034
|
-
cursor: pointer !important;
|
|
2035
|
-
z-index: 2;
|
|
2030
|
+
|
|
2031
|
+
.input-wrapper.full-width {
|
|
2032
|
+
width: 100%;
|
|
2036
2033
|
}
|
|
2037
2034
|
|
|
2035
|
+
.input-container-with-label {
|
|
2036
|
+
position: relative;
|
|
2037
|
+
display: flex;
|
|
2038
|
+
flex-direction: column;
|
|
2039
|
+
}
|
|
2038
2040
|
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
margin: auto;
|
|
2041
|
+
/* Floating Label Styles */
|
|
2042
|
+
.floating-label {
|
|
2043
|
+
position: absolute;
|
|
2044
|
+
left: 0.8rem;
|
|
2045
|
+
top: 50%;
|
|
2046
|
+
transform: translateY(-50%);
|
|
2047
|
+
font-size: var(--minifiedFontSize);
|
|
2047
2048
|
color: var(--text-color);
|
|
2049
|
+
opacity: 0.6;
|
|
2050
|
+
pointer-events: none;
|
|
2051
|
+
transition: all 0.2s ease;
|
|
2052
|
+
background-color: transparent;
|
|
2053
|
+
padding: 0 0.25rem;
|
|
2054
|
+
z-index: 1;
|
|
2055
|
+
font-weight: 500;
|
|
2048
2056
|
}
|
|
2049
2057
|
|
|
2050
|
-
.
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2058
|
+
.floating-label.active {
|
|
2059
|
+
top: 0.35rem;
|
|
2060
|
+
left: 0.8rem;
|
|
2061
|
+
font-size: 0.625rem;
|
|
2062
|
+
opacity: 1;
|
|
2063
|
+
background-color: transparent;
|
|
2064
|
+
color: var(--primary);
|
|
2065
|
+
font-weight: 600;
|
|
2066
|
+
transform: translateY(0);
|
|
2067
|
+
line-height: 1;
|
|
2068
|
+
}
|
|
2069
|
+
.floating-label.label-left{left: 2.5rem ;}
|
|
2070
|
+
/* Label status colors */
|
|
2071
|
+
.floating-label.label-success.active {
|
|
2072
|
+
color: var(--success);
|
|
2054
2073
|
}
|
|
2055
2074
|
|
|
2056
|
-
.
|
|
2057
|
-
|
|
2058
|
-
cursor: pointer;
|
|
2075
|
+
.floating-label.label-warning.active {
|
|
2076
|
+
color: var(--warning);
|
|
2059
2077
|
}
|
|
2060
2078
|
|
|
2061
|
-
.
|
|
2062
|
-
|
|
2063
|
-
color: var(--primary);
|
|
2064
|
-
margin-bottom: 0.5rem;
|
|
2079
|
+
.floating-label.label-danger.active {
|
|
2080
|
+
color: var(--danger);
|
|
2065
2081
|
}
|
|
2066
2082
|
|
|
2067
|
-
.
|
|
2068
|
-
|
|
2083
|
+
.floating-label.label-info.active {
|
|
2084
|
+
color: var(--info, var(--primary));
|
|
2069
2085
|
}
|
|
2070
2086
|
|
|
2071
|
-
|
|
2072
|
-
.
|
|
2073
|
-
.input.
|
|
2074
|
-
|
|
2075
|
-
|
|
2087
|
+
/* For bordered inputs, adjust label positioning */
|
|
2088
|
+
.input.borderedInput ~ .floating-label,
|
|
2089
|
+
.input.borderedInput + .floating-label {
|
|
2090
|
+
left: 0.8rem;
|
|
2091
|
+
}
|
|
2092
|
+
|
|
2093
|
+
.input.borderedInput ~ .floating-label.active,
|
|
2094
|
+
.input.borderedInput + .floating-label.active {
|
|
2095
|
+
left: 0.8rem;
|
|
2096
|
+
top: 0.35rem;
|
|
2097
|
+
background-color: transparent;
|
|
2098
|
+
}
|
|
2099
|
+
|
|
2100
|
+
/* For textarea */
|
|
2101
|
+
textarea ~ .floating-label {
|
|
2102
|
+
top: 1.2rem;
|
|
2103
|
+
}
|
|
2104
|
+
|
|
2105
|
+
textarea ~ .floating-label.active {
|
|
2106
|
+
top: 0.35rem;
|
|
2076
2107
|
}
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
.input.
|
|
2108
|
+
|
|
2109
|
+
/* Status Input Styles */
|
|
2110
|
+
.input.success-input,
|
|
2111
|
+
.input.warning-input,
|
|
2112
|
+
.input.danger-input,
|
|
2113
|
+
.input.info-input {
|
|
2114
|
+
outline: none !important;
|
|
2115
|
+
}
|
|
2116
|
+
|
|
2117
|
+
.input.success-input {
|
|
2118
|
+
border-bottom-color: var(--success);
|
|
2119
|
+
}
|
|
2120
|
+
|
|
2121
|
+
.input.warning-input {
|
|
2122
|
+
border-bottom-color: var(--warning);
|
|
2123
|
+
}
|
|
2124
|
+
|
|
2125
|
+
.input.danger-input {
|
|
2126
|
+
border-bottom-color: var(--danger);
|
|
2127
|
+
}
|
|
2128
|
+
|
|
2129
|
+
.input.info-input {
|
|
2130
|
+
border-bottom-color: var(--info, var(--primary));
|
|
2131
|
+
}
|
|
2132
|
+
|
|
2133
|
+
/* Input dimensions */
|
|
2134
|
+
input,
|
|
2135
|
+
select {
|
|
2136
|
+
height: var(--inputButtonHeight);
|
|
2137
|
+
border-radius: var(--radius);
|
|
2138
|
+
padding-top: 1.2rem;
|
|
2139
|
+
padding-bottom: 0.4rem;
|
|
2140
|
+
}
|
|
2141
|
+
|
|
2142
|
+
/* When no label, use normal padding */
|
|
2143
|
+
input:not(:placeholder-shown),
|
|
2144
|
+
input:focus {
|
|
2145
|
+
padding-top: 1.2rem;
|
|
2146
|
+
padding-bottom: 0.4rem;
|
|
2147
|
+
}
|
|
2148
|
+
|
|
2149
|
+
/* Reset padding when there's no label */
|
|
2150
|
+
.input-container-with-label:not(:has(.floating-label)) input,
|
|
2151
|
+
.input-container-with-label:not(:has(.floating-label)) select {
|
|
2152
|
+
padding-top: 0.6rem;
|
|
2153
|
+
padding-bottom: 0.6rem;
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2156
|
+
textarea {
|
|
2157
|
+
border-radius: var(--radius) !important;
|
|
2158
|
+
height: fit-content !important;
|
|
2159
|
+
min-height: 4rem;
|
|
2160
|
+
padding-top: 1.4rem;
|
|
2161
|
+
padding-bottom: 0.6rem;
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2164
|
+
/* Reset padding when there's no label for textarea */
|
|
2165
|
+
.input-container-with-label:not(:has(.floating-label)) textarea {
|
|
2166
|
+
padding-top: 0.6rem;
|
|
2167
|
+
padding-bottom: 0.6rem;
|
|
2168
|
+
}
|
|
2169
|
+
|
|
2170
|
+
.input.flat {
|
|
2171
|
+
border-radius: 0 !important;
|
|
2172
|
+
}
|
|
2173
|
+
|
|
2174
|
+
/* Focus states */
|
|
2080
2175
|
.input:focus {
|
|
2081
2176
|
border-bottom: var(--inputBorder) solid var(--primary);
|
|
2082
2177
|
}
|
|
2178
|
+
|
|
2179
|
+
.input.success-input:focus {
|
|
2180
|
+
border-bottom-color: var(--success);
|
|
2181
|
+
}
|
|
2182
|
+
|
|
2183
|
+
.input.warning-input:focus {
|
|
2184
|
+
border-bottom-color: var(--warning);
|
|
2185
|
+
}
|
|
2186
|
+
|
|
2187
|
+
.input.danger-input:focus {
|
|
2188
|
+
border-bottom-color: var(--danger);
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2191
|
+
.input.info-input:focus {
|
|
2192
|
+
border-bottom-color: var(--info, var(--primary));
|
|
2193
|
+
}
|
|
2194
|
+
|
|
2083
2195
|
select:focus {
|
|
2084
2196
|
color: var(--text-color) !important;
|
|
2085
2197
|
background-color: var(--raiseThemes) !important;
|
|
2086
|
-
backdrop-filter: var(--raiseBackdrop) !important;
|
|
2198
|
+
backdrop-filter: var(--raiseBackdrop) !important;
|
|
2087
2199
|
outline: none;
|
|
2088
2200
|
}
|
|
2089
2201
|
|
|
2090
|
-
|
|
2091
|
-
|
|
2202
|
+
/* Bordered Input Styles */
|
|
2203
|
+
.input.borderedInput,
|
|
2204
|
+
.input.borderless {
|
|
2205
|
+
padding: 0.6rem 0.8rem;
|
|
2092
2206
|
}
|
|
2207
|
+
|
|
2093
2208
|
.input.borderedInput {
|
|
2094
2209
|
border: var(--border);
|
|
2095
|
-
transition: 0.
|
|
2096
|
-
padding: 0.6rem 0.
|
|
2097
|
-
}
|
|
2098
|
-
.borderless{border: none !important;outline: none !important;
|
|
2099
|
-
background-color: var(--light);
|
|
2100
|
-
}
|
|
2101
|
-
.borderless:focus{border: none !important;outline: none !important;
|
|
2102
|
-
background-color: rgba(var(--borderRgb), 0.3);
|
|
2210
|
+
transition: all 0.2s ease;
|
|
2211
|
+
padding: 0.6rem 0.8rem;
|
|
2103
2212
|
}
|
|
2104
2213
|
|
|
2214
|
+
.input.borderedInput:focus {
|
|
2215
|
+
outline: var(--input_outline_size) solid var(--primary);
|
|
2216
|
+
box-shadow: 0 0 0 3px rgba(var(--borderRgb), 0.1);
|
|
2217
|
+
border-color: var(--primary);
|
|
2218
|
+
}
|
|
2105
2219
|
|
|
2106
|
-
|
|
2220
|
+
/* Status bordered inputs */
|
|
2221
|
+
.input.success-input.borderedInput {
|
|
2107
2222
|
border: var(--inputBorder) solid var(--success) !important;
|
|
2223
|
+
}
|
|
2224
|
+
|
|
2225
|
+
.input.success-input.borderedInput:focus {
|
|
2108
2226
|
outline: var(--input_outline_size) solid var(--success);
|
|
2227
|
+
box-shadow: 0 0 0 3px rgba(var(--success-rgb, 34, 197, 94), 0.1);
|
|
2109
2228
|
}
|
|
2110
|
-
|
|
2229
|
+
|
|
2230
|
+
.input.warning-input.borderedInput {
|
|
2111
2231
|
border: var(--inputBorder) solid var(--warning) !important;
|
|
2232
|
+
}
|
|
2233
|
+
|
|
2234
|
+
.input.warning-input.borderedInput:focus {
|
|
2112
2235
|
outline: var(--input_outline_size) solid var(--warning);
|
|
2236
|
+
box-shadow: 0 0 0 3px rgba(var(--warning-rgb, 234, 179, 8), 0.1);
|
|
2113
2237
|
}
|
|
2114
|
-
|
|
2238
|
+
|
|
2239
|
+
.input.danger-input.borderedInput {
|
|
2115
2240
|
border: var(--inputBorder) solid var(--danger) !important;
|
|
2241
|
+
}
|
|
2242
|
+
|
|
2243
|
+
.input.danger-input.borderedInput:focus {
|
|
2116
2244
|
outline: var(--input_outline_size) solid var(--danger);
|
|
2245
|
+
box-shadow: 0 0 0 3px rgba(var(--danger-rgb, 239, 68, 68), 0.1);
|
|
2117
2246
|
}
|
|
2118
2247
|
|
|
2248
|
+
.input.info-input.borderedInput {
|
|
2249
|
+
border: var(--inputBorder) solid var(--info, var(--primary)) !important;
|
|
2250
|
+
}
|
|
2119
2251
|
|
|
2120
|
-
.input.borderedInput:focus {
|
|
2121
|
-
outline: var(--input_outline_size) solid var(--primary);
|
|
2122
|
-
box-shadow: 0 0 0 3px rgba(var(--borderRgb), 0.1);
|
|
2252
|
+
.input.info-input.borderedInput:focus {
|
|
2253
|
+
outline: var(--input_outline_size) solid var(--info, var(--primary));
|
|
2254
|
+
box-shadow: 0 0 0 3px rgba(var(--info-rgb, var(--borderRgb)), 0.1);
|
|
2255
|
+
}
|
|
2256
|
+
|
|
2257
|
+
/* Borderless styles */
|
|
2258
|
+
.input.borderless {
|
|
2259
|
+
border: none !important;
|
|
2260
|
+
outline: none !important;
|
|
2261
|
+
background-color: var(--light);
|
|
2123
2262
|
}
|
|
2124
2263
|
|
|
2125
|
-
.input.borderless {border: none !important;}
|
|
2126
2264
|
.input.borderless:focus {
|
|
2127
|
-
border: none;
|
|
2265
|
+
border: none !important;
|
|
2266
|
+
outline: none !important;
|
|
2267
|
+
background-color: rgba(var(--borderRgb), 0.3);
|
|
2128
2268
|
}
|
|
2269
|
+
|
|
2270
|
+
/* No outline */
|
|
2129
2271
|
.input.no-outline {
|
|
2130
2272
|
outline: none;
|
|
2131
2273
|
}
|
|
2274
|
+
|
|
2275
|
+
/* Full width */
|
|
2132
2276
|
.full-width {
|
|
2133
2277
|
width: 100%;
|
|
2134
2278
|
}
|
|
2135
|
-
|
|
2279
|
+
|
|
2280
|
+
/* Rounded inputs */
|
|
2281
|
+
.input.round,
|
|
2282
|
+
.input.rounded {
|
|
2136
2283
|
border-radius: 100rem !important;
|
|
2137
2284
|
padding: var(--inputRoundedPadding);
|
|
2285
|
+
}
|
|
2286
|
+
|
|
2287
|
+
.input.rounded ~ .floating-label {
|
|
2288
|
+
left: 1.2rem;
|
|
2289
|
+
}
|
|
2290
|
+
|
|
2291
|
+
.input.rounded ~ .floating-label.active {
|
|
2292
|
+
left: 1.2rem;
|
|
2293
|
+
top: 0.35rem;
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
/* Helper Text Styles */
|
|
2297
|
+
.input-helper-text {
|
|
2298
|
+
display: flex;
|
|
2299
|
+
align-items: center;
|
|
2300
|
+
gap: 0.375rem;
|
|
2301
|
+
font-size: var(--smallFont);
|
|
2302
|
+
margin-top: 0.25rem;
|
|
2303
|
+
padding-left: 0.25rem;
|
|
2304
|
+
color: var(--text-color);
|
|
2305
|
+
opacity: 0.7;
|
|
2306
|
+
animation: slideDown 0.2s ease;
|
|
2307
|
+
}
|
|
2138
2308
|
|
|
2309
|
+
@keyframes slideDown {
|
|
2310
|
+
from {
|
|
2311
|
+
opacity: 0;
|
|
2312
|
+
transform: translateY(-0.25rem);
|
|
2313
|
+
}
|
|
2314
|
+
to {
|
|
2315
|
+
opacity: 0.7;
|
|
2316
|
+
transform: translateY(0);
|
|
2317
|
+
}
|
|
2139
2318
|
}
|
|
2140
2319
|
|
|
2320
|
+
.helper-icon {
|
|
2321
|
+
display: inline-flex;
|
|
2322
|
+
align-items: center;
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2325
|
+
/* Status helper text colors */
|
|
2326
|
+
.input-helper-text.helper-success {
|
|
2327
|
+
color: var(--success);
|
|
2328
|
+
opacity: 1;
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2331
|
+
.input-helper-text.helper-warning {
|
|
2332
|
+
color: var(--warning);
|
|
2333
|
+
opacity: 1;
|
|
2334
|
+
}
|
|
2335
|
+
|
|
2336
|
+
.input-helper-text.helper-danger {
|
|
2337
|
+
color: var(--danger);
|
|
2338
|
+
opacity: 1;
|
|
2339
|
+
}
|
|
2340
|
+
|
|
2341
|
+
.input-helper-text.helper-info {
|
|
2342
|
+
color: var(--info, var(--primary));
|
|
2343
|
+
opacity: 1;
|
|
2344
|
+
}
|
|
2345
|
+
|
|
2346
|
+
/* Icon container adjustments for labeled inputs */
|
|
2347
|
+
.icon-container {
|
|
2348
|
+
position: relative;
|
|
2349
|
+
width: 100%;
|
|
2350
|
+
}
|
|
2351
|
+
|
|
2352
|
+
.icon-container > .input,
|
|
2353
|
+
.icon-container > input,
|
|
2354
|
+
.icon-container > select,
|
|
2355
|
+
.icon-container > textarea {
|
|
2356
|
+
width: 100%;
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2359
|
+
.leftIcon,
|
|
2360
|
+
.rightIcon {
|
|
2361
|
+
position: absolute;
|
|
2362
|
+
display: flex;
|
|
2363
|
+
align-items: center;
|
|
2364
|
+
justify-content: center;
|
|
2365
|
+
height: 100%;
|
|
2366
|
+
width: 2.5rem;
|
|
2367
|
+
padding: 1rem;
|
|
2368
|
+
z-index: 2;
|
|
2369
|
+
pointer-events: auto;
|
|
2370
|
+
top: 0;
|
|
2371
|
+
cursor: default;
|
|
2372
|
+
}
|
|
2373
|
+
|
|
2374
|
+
.leftIcon {
|
|
2375
|
+
left: 0;
|
|
2376
|
+
}
|
|
2377
|
+
|
|
2378
|
+
.rightIcon {
|
|
2379
|
+
right: 0;
|
|
2380
|
+
}
|
|
2381
|
+
|
|
2382
|
+
/* Make icons clickable when they have interactive elements */
|
|
2383
|
+
.leftIcon > *,
|
|
2384
|
+
.rightIcon > * {
|
|
2385
|
+
max-width: 1.25rem;
|
|
2386
|
+
max-height: 1.25rem;
|
|
2387
|
+
width: 1.25rem;
|
|
2388
|
+
height: 1.25rem;
|
|
2389
|
+
flex-shrink: 0;
|
|
2390
|
+
display: flex;
|
|
2391
|
+
align-items: center;
|
|
2392
|
+
justify-content: center;
|
|
2393
|
+
pointer-events: auto;
|
|
2394
|
+
}
|
|
2395
|
+
|
|
2396
|
+
/* Inherit cursor from parent elements (for .pointer class) */
|
|
2397
|
+
.leftIcon .pointer,
|
|
2398
|
+
.rightIcon .pointer,
|
|
2399
|
+
.leftIcon [class*="pointer"],
|
|
2400
|
+
.rightIcon [class*="pointer"] {
|
|
2401
|
+
cursor: pointer;
|
|
2402
|
+
}
|
|
2403
|
+
|
|
2404
|
+
/* If icon is an SVG, apply size directly */
|
|
2405
|
+
.leftIcon svg,
|
|
2406
|
+
.rightIcon svg {
|
|
2407
|
+
width: 1.25rem;
|
|
2408
|
+
height: 1.25rem;
|
|
2409
|
+
pointer-events: auto;
|
|
2410
|
+
}
|
|
2411
|
+
|
|
2412
|
+
/* Adjust padding for inputs with icons and labels */
|
|
2413
|
+
.icon-container.has-left-icon > .input,
|
|
2414
|
+
.icon-container.has-left-icon > input,
|
|
2415
|
+
.icon-container.has-left-icon > select {
|
|
2416
|
+
padding-left: 2.75rem;
|
|
2417
|
+
padding-top: 1.2rem;
|
|
2418
|
+
padding-bottom: 0.4rem;
|
|
2419
|
+
}
|
|
2420
|
+
|
|
2421
|
+
.icon-container:has(.rightIcon) > .input,
|
|
2422
|
+
.icon-container:has(.rightIcon) > input,
|
|
2423
|
+
.icon-container:has(.rightIcon) > select {
|
|
2424
|
+
padding-right: 2.75rem;
|
|
2425
|
+
padding-top: 1.2rem;
|
|
2426
|
+
padding-bottom: 0.4rem;
|
|
2427
|
+
}
|
|
2428
|
+
|
|
2429
|
+
/* Reset padding when no label */
|
|
2430
|
+
.input-container-with-label:not(:has(.floating-label)) .icon-container.has-left-icon > .input,
|
|
2431
|
+
.input-container-with-label:not(:has(.floating-label)) .icon-container.has-left-icon > input,
|
|
2432
|
+
.input-container-with-label:not(:has(.floating-label)) .icon-container.has-left-icon > select {
|
|
2433
|
+
padding-top: 0.6rem;
|
|
2434
|
+
padding-bottom: 0.6rem;
|
|
2435
|
+
padding-left: 2.75rem;
|
|
2436
|
+
}
|
|
2437
|
+
|
|
2438
|
+
.input-container-with-label:not(:has(.floating-label)) .icon-container:has(.rightIcon) > .input,
|
|
2439
|
+
.input-container-with-label:not(:has(.floating-label)) .icon-container:has(.rightIcon) > input,
|
|
2440
|
+
.input-container-with-label:not(:has(.floating-label)) .icon-container:has(.rightIcon) > select {
|
|
2441
|
+
padding-top: 0.6rem;
|
|
2442
|
+
padding-bottom: 0.6rem;
|
|
2443
|
+
padding-right: 2.75rem;
|
|
2444
|
+
}
|
|
2445
|
+
|
|
2446
|
+
/* Label positioning with icons */
|
|
2447
|
+
.icon-container .floating-label {
|
|
2448
|
+
left: 0.8rem;
|
|
2449
|
+
}
|
|
2450
|
+
|
|
2451
|
+
/* When input has left icon, move the label to match where typing starts */
|
|
2452
|
+
.icon-container.has-left-icon .floating-label {
|
|
2453
|
+
left: 3rem;
|
|
2454
|
+
z-index: 3;
|
|
2455
|
+
}
|
|
2456
|
+
|
|
2457
|
+
/* When active, bring label back to normal position (above the icon) */
|
|
2458
|
+
.icon-container .floating-label.active {
|
|
2459
|
+
left: 0.8rem;
|
|
2460
|
+
top: 0.35rem;
|
|
2461
|
+
}
|
|
2462
|
+
|
|
2463
|
+
.icon-container.has-left-icon .floating-label.active {
|
|
2464
|
+
left: 0.8rem;
|
|
2465
|
+
top: 0.35rem;
|
|
2466
|
+
}
|
|
2467
|
+
|
|
2468
|
+
/* Select specific adjustments */
|
|
2469
|
+
select.input {
|
|
2470
|
+
appearance: none;
|
|
2471
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
|
|
2472
|
+
background-repeat: no-repeat;
|
|
2473
|
+
background-position: right 0.8rem center;
|
|
2474
|
+
padding-right: 2.5rem;
|
|
2475
|
+
}
|
|
2476
|
+
|
|
2477
|
+
/* Disabled state */
|
|
2478
|
+
.input:disabled {
|
|
2479
|
+
opacity: 0.5;
|
|
2480
|
+
cursor: not-allowed;
|
|
2481
|
+
background-color: var(--light);
|
|
2482
|
+
}
|
|
2483
|
+
|
|
2484
|
+
.input:disabled ~ .floating-label {
|
|
2485
|
+
opacity: 0.4;
|
|
2486
|
+
}
|
|
2487
|
+
|
|
2488
|
+
/* Responsive adjustments */
|
|
2489
|
+
@media (max-width: 768px) {
|
|
2490
|
+
.floating-label {
|
|
2491
|
+
font-size: 0.875rem;
|
|
2492
|
+
}
|
|
2493
|
+
|
|
2494
|
+
.floating-label.active {
|
|
2495
|
+
font-size: 0.563rem;
|
|
2496
|
+
top: 0.3rem;
|
|
2497
|
+
}
|
|
2498
|
+
|
|
2499
|
+
input,
|
|
2500
|
+
select {
|
|
2501
|
+
padding-top: 1.1rem;
|
|
2502
|
+
padding-bottom: 0.35rem;
|
|
2503
|
+
}
|
|
2504
|
+
|
|
2505
|
+
textarea {
|
|
2506
|
+
padding-top: 1.3rem;
|
|
2507
|
+
padding-bottom: 0.5rem;
|
|
2508
|
+
}
|
|
2509
|
+
}
|
|
2510
|
+
|
|
2511
|
+
.fileInput{
|
|
2512
|
+
position: relative;
|
|
2513
|
+
width: fit-content !important;
|
|
2514
|
+
cursor: pointer;
|
|
2515
|
+
}
|
|
2516
|
+
.filedInput{
|
|
2517
|
+
position: absolute;
|
|
2518
|
+
top: 0;
|
|
2519
|
+
left: 0;
|
|
2520
|
+
width: fit-content;
|
|
2521
|
+
max-width: 100%;
|
|
2522
|
+
height: 100%;
|
|
2523
|
+
opacity: 0;
|
|
2524
|
+
cursor: pointer !important;
|
|
2525
|
+
z-index: 2;
|
|
2526
|
+
}
|
|
2527
|
+
|
|
2528
|
+
|
|
2529
|
+
._upload_container {
|
|
2530
|
+
border: 0.17rem dashed var(--borderColor);
|
|
2531
|
+
border-radius: 16px;
|
|
2532
|
+
padding: var(--space-5);
|
|
2533
|
+
text-align: center;
|
|
2534
|
+
transition: border-color 0.3s ease;
|
|
2535
|
+
cursor: pointer;
|
|
2536
|
+
margin: auto;
|
|
2537
|
+
color: var(--text-color);
|
|
2538
|
+
}
|
|
2539
|
+
|
|
2540
|
+
._upload_container:hover {
|
|
2541
|
+
border-color: var(--primary);
|
|
2542
|
+
background-color: var(--lighter);
|
|
2543
|
+
/* color: var(--primary800); */
|
|
2544
|
+
}
|
|
2545
|
+
|
|
2546
|
+
._upload_label {
|
|
2547
|
+
display: block;
|
|
2548
|
+
cursor: pointer;
|
|
2549
|
+
}
|
|
2550
|
+
|
|
2551
|
+
._upload_icon {
|
|
2552
|
+
font-size: 2.4rem;
|
|
2553
|
+
color: var(--primary);
|
|
2554
|
+
margin-bottom: 0.5rem;
|
|
2555
|
+
}
|
|
2556
|
+
|
|
2557
|
+
._upload_input {
|
|
2558
|
+
display: none;
|
|
2559
|
+
}
|
|
2560
|
+
|
|
2561
|
+
|
|
2141
2562
|
.custom-select {
|
|
2142
2563
|
position: relative;
|
|
2143
2564
|
width: 100%;
|
|
@@ -4319,11 +4740,12 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
4319
4740
|
|
|
4320
4741
|
.range-slider {
|
|
4321
4742
|
width: 100%;
|
|
4322
|
-
height: 6px;
|
|
4743
|
+
height: 6px !important;
|
|
4323
4744
|
appearance: none;
|
|
4324
4745
|
background: var(--lighter);
|
|
4325
4746
|
border-radius: 5rem;
|
|
4326
4747
|
outline: none;
|
|
4748
|
+
padding: 0 !important;
|
|
4327
4749
|
}
|
|
4328
4750
|
|
|
4329
4751
|
.range-slider::-webkit-slider-thumb {
|
|
@@ -5059,182 +5481,41 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
5059
5481
|
|
|
5060
5482
|
|
|
5061
5483
|
/*margin*/
|
|
5062
|
-
.margin{margin:var(--
|
|
5063
|
-
.margin
|
|
5064
|
-
|
|
5065
|
-
}
|
|
5066
|
-
.margin-
|
|
5067
|
-
|
|
5068
|
-
}
|
|
5069
|
-
.margin-top-
|
|
5070
|
-
|
|
5071
|
-
}
|
|
5072
|
-
.margin-top-
|
|
5073
|
-
|
|
5074
|
-
}
|
|
5075
|
-
.margin-top-
|
|
5076
|
-
|
|
5077
|
-
}
|
|
5078
|
-
.margin-top-
|
|
5079
|
-
|
|
5080
|
-
}
|
|
5081
|
-
.margin-
|
|
5082
|
-
|
|
5083
|
-
}
|
|
5084
|
-
.margin-
|
|
5085
|
-
|
|
5086
|
-
}
|
|
5087
|
-
.margin-
|
|
5088
|
-
|
|
5089
|
-
}
|
|
5090
|
-
.margin-
|
|
5091
|
-
|
|
5092
|
-
}
|
|
5093
|
-
.margin-
|
|
5094
|
-
|
|
5095
|
-
}
|
|
5096
|
-
.margin-
|
|
5097
|
-
margin-top: -100px;
|
|
5098
|
-
}
|
|
5099
|
-
.margin-top-10- {
|
|
5100
|
-
margin-top: -10px !important;
|
|
5101
|
-
}
|
|
5102
|
-
.margin-top-20- {
|
|
5103
|
-
margin-top: -20px !important;
|
|
5104
|
-
}
|
|
5105
|
-
.margin-top-30- {
|
|
5106
|
-
margin-top: -30px !important;
|
|
5107
|
-
}
|
|
5108
|
-
.margin-top-40- {
|
|
5109
|
-
margin-top: -40px !important;
|
|
5110
|
-
}
|
|
5111
|
-
.margin-top-50- {
|
|
5112
|
-
margin-top: -50px !important;
|
|
5113
|
-
}
|
|
5114
|
-
.margin-top-60- {
|
|
5115
|
-
margin-top: -60px !important;
|
|
5116
|
-
}
|
|
5117
|
-
.margin-top-70- {
|
|
5118
|
-
margin-top: -70px !important;
|
|
5119
|
-
}
|
|
5120
|
-
.margin-top-80- {
|
|
5121
|
-
margin-top: -80px !important;
|
|
5122
|
-
}
|
|
5123
|
-
.margin-top-90- {
|
|
5124
|
-
margin-top: -90px !important;
|
|
5125
|
-
}
|
|
5126
|
-
|
|
5127
|
-
.margin-top-100 {
|
|
5128
|
-
margin-top: 100px;
|
|
5129
|
-
}
|
|
5130
|
-
.margin-bottom-5 {
|
|
5131
|
-
margin: 5px !important;
|
|
5132
|
-
}
|
|
5133
|
-
.margin-10 {
|
|
5134
|
-
margin: 10px !important;
|
|
5135
|
-
}
|
|
5136
|
-
.margin-20 {
|
|
5137
|
-
margin: 20px !important;
|
|
5138
|
-
}
|
|
5139
|
-
.margin-30 {
|
|
5140
|
-
margin: 30px !important;
|
|
5141
|
-
}
|
|
5142
|
-
.margin-40 {
|
|
5143
|
-
margin: 40px !important;
|
|
5144
|
-
}
|
|
5145
|
-
.margin-50 {
|
|
5146
|
-
margin: 50px !important;
|
|
5147
|
-
}
|
|
5148
|
-
.margin-bottom-10 {
|
|
5149
|
-
margin-bottom: 10px !important;
|
|
5150
|
-
}
|
|
5151
|
-
.margin-bottom-20 {
|
|
5152
|
-
margin-bottom: 20px !important;
|
|
5153
|
-
}
|
|
5154
|
-
.margin-bottom-30 {
|
|
5155
|
-
margin-bottom: 30px !important;
|
|
5156
|
-
}
|
|
5157
|
-
.margin-bottom-40 {
|
|
5158
|
-
margin-bottom: 40px !important;
|
|
5159
|
-
}
|
|
5160
|
-
.margin-bottom-50 {
|
|
5161
|
-
margin-bottom: 50px !important;
|
|
5162
|
-
}
|
|
5163
|
-
.margin-bottom-60 {
|
|
5164
|
-
margin-bottom: 60px !important;
|
|
5165
|
-
}
|
|
5166
|
-
.margin-bottom-70 {
|
|
5167
|
-
margin-bottom: 70px !important;
|
|
5168
|
-
}
|
|
5169
|
-
.margin-bottom-80 {
|
|
5170
|
-
margin-bottom: 80px !important;
|
|
5171
|
-
}
|
|
5172
|
-
.margin-bottom-90 {
|
|
5173
|
-
margin-bottom: 90px !important;
|
|
5174
|
-
}
|
|
5175
|
-
.margin-bottom-100 {
|
|
5176
|
-
margin-bottom: 100px;
|
|
5177
|
-
}
|
|
5178
|
-
.margin-left-10 {
|
|
5179
|
-
margin-left: 10px !important;
|
|
5180
|
-
}
|
|
5181
|
-
.margin-left-20 {
|
|
5182
|
-
margin-left: 20px !important;
|
|
5183
|
-
}
|
|
5184
|
-
.margin-left-30 {
|
|
5185
|
-
margin-left: 30px !important;
|
|
5186
|
-
}
|
|
5187
|
-
.margin-left-40 {
|
|
5188
|
-
margin-left: 40px !important;
|
|
5189
|
-
}
|
|
5190
|
-
.margin-left-50 {
|
|
5191
|
-
margin-left: 50px !important;
|
|
5192
|
-
}
|
|
5193
|
-
.margin-left-60 {
|
|
5194
|
-
margin-left: 60px !important;
|
|
5195
|
-
}
|
|
5196
|
-
.margin-left-70 {
|
|
5197
|
-
margin-left: 70px !important;
|
|
5198
|
-
}
|
|
5199
|
-
.margin-left-80 {
|
|
5200
|
-
margin-left: 80px !important;
|
|
5201
|
-
}
|
|
5202
|
-
.margin-left-90 {
|
|
5203
|
-
margin-left: 90px !important;
|
|
5204
|
-
}
|
|
5205
|
-
.margin-left-100 {
|
|
5206
|
-
margin-left: 100px;
|
|
5207
|
-
}
|
|
5208
|
-
.margin-right-10 {
|
|
5209
|
-
margin-right: 10px !important;
|
|
5210
|
-
}
|
|
5211
|
-
.margin-right-20 {
|
|
5212
|
-
margin-right: 20px !important;
|
|
5213
|
-
}
|
|
5214
|
-
.margin-right-30 {
|
|
5215
|
-
margin-right: 30px !important;
|
|
5216
|
-
}
|
|
5217
|
-
.margin-right-40 {
|
|
5218
|
-
margin-right: 40px !important;
|
|
5219
|
-
}
|
|
5220
|
-
.margin-right-50 {
|
|
5221
|
-
margin-right: 50px !important;
|
|
5222
|
-
}
|
|
5223
|
-
.margin-right-60 {
|
|
5224
|
-
margin-right: 60px !important;
|
|
5225
|
-
}
|
|
5226
|
-
.margin-right-70 {
|
|
5227
|
-
margin-right: 70px !important;
|
|
5228
|
-
}
|
|
5229
|
-
.margin-right-80 {
|
|
5230
|
-
margin-right: 80px !important;
|
|
5231
|
-
}
|
|
5232
|
-
.margin-right-90 {
|
|
5233
|
-
margin-right: 90px !important;
|
|
5234
|
-
}
|
|
5235
|
-
.margin-right-100 {
|
|
5236
|
-
margin-bottom: 100px;
|
|
5237
|
-
}
|
|
5484
|
+
.margin , .m{margin:var(--spacingScale)}
|
|
5485
|
+
.mt , .margin-top{margin-top:var(--spacingScale)}
|
|
5486
|
+
.mb , .margin-bottom{margin-bottom:var(--spacingScale)}
|
|
5487
|
+
.ml , .margin-left{margin-left:var(--spacingScale)}
|
|
5488
|
+
.mr , .margin-right{margin-right:var(--spacingScale)}
|
|
5489
|
+
|
|
5490
|
+
.margin-top-5{margin:5px!important}.margin-top-10{margin-top:10px!important}
|
|
5491
|
+
.margin-top-20{margin-top:20px!important}.margin-top-30{margin-top:30px!important}
|
|
5492
|
+
.margin-top-40{margin-top:40px!important}.margin-top-50{margin-top:50px!important}
|
|
5493
|
+
.margin-top-60{margin-top:60px!important}.margin-top-70{margin-top:70px!important}
|
|
5494
|
+
.margin-top-80{margin-top:80px!important}.margin-top-90{margin-top:90px!important}
|
|
5495
|
+
.margin-top-100-{margin-top:-100px}.margin-top-10-{margin-top:-10px!important}
|
|
5496
|
+
.margin-top-20-{margin-top:-20px!important}.margin-top-30-{margin-top:-30px!important}
|
|
5497
|
+
.margin-top-40-{margin-top:-40px!important}.margin-top-50-{margin-top:-50px!important}
|
|
5498
|
+
.margin-top-60-{margin-top:-60px!important}.margin-top-70-{margin-top:-70px!important}
|
|
5499
|
+
.margin-top-80-{margin-top:-80px!important}.margin-top-90-{margin-top:-90px!important}
|
|
5500
|
+
.margin-top-100{margin-top:100px}.margin-bottom-5{margin:5px!important}
|
|
5501
|
+
.margin-10{margin:10px!important}.margin-20{margin:20px!important}
|
|
5502
|
+
.margin-30{margin:30px!important}.margin-40{margin:40px!important}
|
|
5503
|
+
.margin-50{margin:50px!important}.margin-bottom-10{margin-bottom:10px!important}
|
|
5504
|
+
.margin-bottom-20{margin-bottom:20px!important}.margin-bottom-30{margin-bottom:30px!important}
|
|
5505
|
+
.margin-bottom-40{margin-bottom:40px!important}.margin-bottom-50{margin-bottom:50px!important}
|
|
5506
|
+
.margin-bottom-60{margin-bottom:60px!important}.margin-bottom-70{margin-bottom:70px!important}
|
|
5507
|
+
.margin-bottom-80{margin-bottom:80px!important}.margin-bottom-90{margin-bottom:90px!important}
|
|
5508
|
+
.margin-bottom-100{margin-bottom:100px}.margin-left-10{margin-left:10px!important}
|
|
5509
|
+
.margin-left-20{margin-left:20px!important}.margin-left-30{margin-left:30px!important}
|
|
5510
|
+
.margin-left-40{margin-left:40px!important}.margin-left-50{margin-left:50px!important}
|
|
5511
|
+
.margin-left-60{margin-left:60px!important}.margin-left-70{margin-left:70px!important}
|
|
5512
|
+
.margin-left-80{margin-left:80px!important}.margin-left-90{margin-left:90px!important}
|
|
5513
|
+
.margin-left-100{margin-left:100px}.margin-right-10{margin-right:10px!important}
|
|
5514
|
+
.margin-right-20{margin-right:20px!important}.margin-right-30{margin-right:30px!important}
|
|
5515
|
+
.margin-right-40{margin-right:40px!important}.margin-right-50{margin-right:50px!important}
|
|
5516
|
+
.margin-right-60{margin-right:60px!important}.margin-right-70{margin-right:70px!important}
|
|
5517
|
+
.margin-right-80{margin-right:80px!important}.margin-right-90{margin-right:90px!important}
|
|
5518
|
+
.margin-right-100{margin-bottom:100px}
|
|
5238
5519
|
|
|
5239
5520
|
/* --------- MARGIN --------- */
|
|
5240
5521
|
.margin , .m{margin: var(--spacingScale) !important;}
|
|
@@ -5354,11 +5635,13 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
5354
5635
|
.ml-16- { margin-left: calc(var(--space-16) * -1) !important; }
|
|
5355
5636
|
.ml-20- { margin-left: calc(var(--space-20) * -1) !important; }
|
|
5356
5637
|
|
|
5357
|
-
|
|
5358
|
-
/*padding*/
|
|
5359
|
-
|
|
5360
5638
|
/* --------- PADDING --------- */
|
|
5361
5639
|
.padding , .p{padding:var(--spacingScale)}
|
|
5640
|
+
.pt{padding-top: var(--spacingScale);}
|
|
5641
|
+
.pr{padding-right: var(--spacingScale);}
|
|
5642
|
+
.pb{padding-bottom: var(--spacingScale);}
|
|
5643
|
+
.pl{padding-left: var(--spacingScale);}
|
|
5644
|
+
|
|
5362
5645
|
.p-0 { padding: var(--space-0) !important; }
|
|
5363
5646
|
.p-1 { padding: var(--space-1) !important; }
|
|
5364
5647
|
.p-2 { padding: var(--space-2) !important; }
|
|
@@ -5424,164 +5707,32 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
5424
5707
|
.pl-16 { padding-left: var(--space-16) !important; }
|
|
5425
5708
|
.pl-20 { padding-left: var(--space-20) !important; }
|
|
5426
5709
|
|
|
5427
|
-
.padding {
|
|
5428
|
-
|
|
5429
|
-
}
|
|
5430
|
-
.padding-
|
|
5431
|
-
|
|
5432
|
-
}
|
|
5433
|
-
.padding-
|
|
5434
|
-
|
|
5435
|
-
}
|
|
5436
|
-
.padding-
|
|
5437
|
-
|
|
5438
|
-
}
|
|
5439
|
-
.padding-
|
|
5440
|
-
|
|
5441
|
-
}
|
|
5442
|
-
.padding-
|
|
5443
|
-
|
|
5444
|
-
}
|
|
5445
|
-
.padding-
|
|
5446
|
-
|
|
5447
|
-
}
|
|
5448
|
-
.padding-
|
|
5449
|
-
|
|
5450
|
-
}
|
|
5451
|
-
.padding-
|
|
5452
|
-
|
|
5453
|
-
}
|
|
5454
|
-
.padding-top-80 {
|
|
5455
|
-
padding-top: 80px !important;
|
|
5456
|
-
}
|
|
5457
|
-
.padding-top-90 {
|
|
5458
|
-
padding-top: 90px !important;
|
|
5459
|
-
}
|
|
5460
|
-
.padding-top-100 {
|
|
5461
|
-
padding-top: 100px;
|
|
5462
|
-
}
|
|
5463
|
-
.padding-10 {
|
|
5464
|
-
padding: 10px !important;
|
|
5465
|
-
}
|
|
5466
|
-
.padding-20 {
|
|
5467
|
-
padding: 20px !important;
|
|
5468
|
-
}
|
|
5469
|
-
.padding-30 {
|
|
5470
|
-
padding: 30px !important;
|
|
5471
|
-
}
|
|
5472
|
-
.padding-40 {
|
|
5473
|
-
padding: 40px !important;
|
|
5474
|
-
}
|
|
5475
|
-
.padding-50 {
|
|
5476
|
-
padding: 50px !important;
|
|
5477
|
-
}
|
|
5478
|
-
.padding-60 {
|
|
5479
|
-
padding: 60px !important;
|
|
5480
|
-
}
|
|
5481
|
-
.padding-70 {
|
|
5482
|
-
padding: 70px !important;
|
|
5483
|
-
}
|
|
5484
|
-
.padding-80 {
|
|
5485
|
-
padding: 80px !important;
|
|
5486
|
-
}
|
|
5487
|
-
.padding-90 {
|
|
5488
|
-
padding: 90px !important;
|
|
5489
|
-
}
|
|
5490
|
-
.padding-100 {
|
|
5491
|
-
padding: 100px;
|
|
5492
|
-
}
|
|
5493
|
-
.padding-bottom-10 {
|
|
5494
|
-
padding-bottom: 10px !important;
|
|
5495
|
-
}
|
|
5496
|
-
.padding-bottom-20 {
|
|
5497
|
-
padding-bottom: 20px !important;
|
|
5498
|
-
}
|
|
5499
|
-
.padding-bottom-30 {
|
|
5500
|
-
padding-bottom: 30px !important;
|
|
5501
|
-
}
|
|
5502
|
-
.padding-bottom-40 {
|
|
5503
|
-
padding-bottom: 40px !important;
|
|
5504
|
-
}
|
|
5505
|
-
.padding-bottom-50 {
|
|
5506
|
-
padding-bottom: 50px !important;
|
|
5507
|
-
}
|
|
5508
|
-
.padding-bottom-60 {
|
|
5509
|
-
padding-bottom: 60px !important;
|
|
5510
|
-
}
|
|
5511
|
-
.padding-bottom-70 {
|
|
5512
|
-
padding-bottom: 70px !important;
|
|
5513
|
-
}
|
|
5514
|
-
.padding-bottom-80 {
|
|
5515
|
-
padding-bottom: 80px !important;
|
|
5516
|
-
}
|
|
5517
|
-
.padding-bottom-90 {
|
|
5518
|
-
padding-bottom: 90px !important;
|
|
5519
|
-
}
|
|
5520
|
-
.padding-bottom-100 {
|
|
5521
|
-
padding-bottom: 100px;
|
|
5522
|
-
}
|
|
5523
|
-
.padding-left-10 {
|
|
5524
|
-
padding-left: 10px !important;
|
|
5525
|
-
}
|
|
5526
|
-
.padding-left-20 {
|
|
5527
|
-
padding-left: 20px !important;
|
|
5528
|
-
}
|
|
5529
|
-
.padding-left-30 {
|
|
5530
|
-
padding-left: 30px !important;
|
|
5531
|
-
}
|
|
5532
|
-
.padding-left-40 {
|
|
5533
|
-
padding-left: 40px !important;
|
|
5534
|
-
}
|
|
5535
|
-
.padding-left-50 {
|
|
5536
|
-
padding-left: 50px !important;
|
|
5537
|
-
}
|
|
5538
|
-
.padding-left-60 {
|
|
5539
|
-
padding-left: 60px !important;
|
|
5540
|
-
}
|
|
5541
|
-
.padding-left-70 {
|
|
5542
|
-
padding-left: 70px !important;
|
|
5543
|
-
}
|
|
5544
|
-
.padding-left-80 {
|
|
5545
|
-
padding-left: 80px !important;
|
|
5546
|
-
}
|
|
5547
|
-
.padding-left-90 {
|
|
5548
|
-
padding-left: 90px !important;
|
|
5549
|
-
}
|
|
5550
|
-
.padding-left-100 {
|
|
5551
|
-
padding-left: 100px;
|
|
5552
|
-
}
|
|
5553
|
-
.padding-right-10 {
|
|
5554
|
-
padding-right: 10px !important;
|
|
5555
|
-
}
|
|
5556
|
-
.padding-right-20 {
|
|
5557
|
-
padding-right: 20px !important;
|
|
5558
|
-
}
|
|
5559
|
-
.padding-right-30 {
|
|
5560
|
-
padding-right: 30px !important;
|
|
5561
|
-
}
|
|
5562
|
-
.padding-right-40 {
|
|
5563
|
-
padding-right: 40px !important;
|
|
5564
|
-
}
|
|
5565
|
-
.padding-right-50 {
|
|
5566
|
-
padding-right: 50px !important;
|
|
5567
|
-
}
|
|
5568
|
-
.padding-right-60 {
|
|
5569
|
-
padding-right: 60px !important;
|
|
5570
|
-
}
|
|
5571
|
-
.padding-right-70 {
|
|
5572
|
-
padding-right: 70px !important;
|
|
5573
|
-
}
|
|
5574
|
-
.padding-right-80 {
|
|
5575
|
-
padding-right: 80px !important;
|
|
5576
|
-
}
|
|
5577
|
-
.padding-right-90 {
|
|
5578
|
-
padding-right: 90px !important;
|
|
5579
|
-
}
|
|
5580
|
-
.padding-right-100 {
|
|
5581
|
-
padding-bottom: 100px;
|
|
5582
|
-
}
|
|
5583
|
-
|
|
5584
|
-
|
|
5710
|
+
.padding{padding: var(--spacingScale) !important}.padding-5{padding:5px!important}
|
|
5711
|
+
.padding-top-10{padding-top:10px!important}.padding-top-20{padding-top:20px!important}
|
|
5712
|
+
.padding-top-30{padding-top:30px!important}.padding-top-40{padding-top:40px!important}
|
|
5713
|
+
.padding-top-50{padding-top:50px!important}.padding-top-60{padding-top:60px!important}
|
|
5714
|
+
.padding-top-70{padding-top:70px!important}.padding-top-80{padding-top:80px!important}
|
|
5715
|
+
.padding-top-90{padding-top:90px!important}.padding-top-100{padding-top:100px}
|
|
5716
|
+
.padding-10{padding:10px!important}.padding-20{padding:20px!important}
|
|
5717
|
+
.padding-30{padding:30px!important}.padding-40{padding:40px!important}
|
|
5718
|
+
.padding-50{padding:50px!important}.padding-60{padding:60px!important}
|
|
5719
|
+
.padding-70{padding:70px!important}.padding-80{padding:80px!important}
|
|
5720
|
+
.padding-90{padding:90px!important}.padding-100{padding:100px}
|
|
5721
|
+
.padding-bottom-10{padding-bottom:10px!important}.padding-bottom-20{padding-bottom:20px!important}
|
|
5722
|
+
.padding-bottom-30{padding-bottom:30px!important}.padding-bottom-40{padding-bottom:40px!important}
|
|
5723
|
+
.padding-bottom-50{padding-bottom:50px!important}.padding-bottom-60{padding-bottom:60px!important}
|
|
5724
|
+
.padding-bottom-70{padding-bottom:70px!important}.padding-bottom-80{padding-bottom:80px!important}
|
|
5725
|
+
.padding-bottom-90{padding-bottom:90px!important}.padding-bottom-100{padding-bottom:100px}
|
|
5726
|
+
.padding-left-10{padding-left:10px!important}.padding-left-20{padding-left:20px!important}
|
|
5727
|
+
.padding-left-30{padding-left:30px!important}.padding-left-40{padding-left:40px!important}
|
|
5728
|
+
.padding-left-50{padding-left:50px!important}.padding-left-60{padding-left:60px!important}
|
|
5729
|
+
.padding-left-70{padding-left:70px!important}.padding-left-80{padding-left:80px!important}
|
|
5730
|
+
.padding-left-90{padding-left:90px!important}.padding-left-100{padding-left:100px}
|
|
5731
|
+
.padding-right-10{padding-right:10px!important}.padding-right-20{padding-right:20px!important}
|
|
5732
|
+
.padding-right-30{padding-right:30px!important}.padding-right-40{padding-right:40px!important}
|
|
5733
|
+
.padding-right-50{padding-right:50px!important}.padding-right-60{padding-right:60px!important}
|
|
5734
|
+
.padding-right-70{padding-right:70px!important}.padding-right-80{padding-right:80px!important}
|
|
5735
|
+
.padding-right-90{padding-right:90px!important}.padding-right-100{padding-bottom:100px}
|
|
5585
5736
|
|
|
5586
5737
|
/* carousel */
|
|
5587
5738
|
/* Hide scrollbar for all carousel containers */
|
|
@@ -5602,21 +5753,7 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
5602
5753
|
padding: 1rem 0;
|
|
5603
5754
|
scroll-behavior: smooth;
|
|
5604
5755
|
}
|
|
5605
|
-
|
|
5606
|
-
/* Each carousel item wrapper */
|
|
5607
|
-
.carousel-item {
|
|
5608
|
-
scroll-snap-align: start;
|
|
5609
|
-
flex: 0 0 auto;
|
|
5610
|
-
|
|
5611
|
-
}
|
|
5612
|
-
|
|
5613
|
-
|
|
5614
|
-
|
|
5615
|
-
|
|
5616
|
-
|
|
5617
|
-
|
|
5618
|
-
/* screens */
|
|
5619
|
-
|
|
5756
|
+
.carousel-item {scroll-snap-align: start;flex: 0 0 auto;}
|
|
5620
5757
|
|
|
5621
5758
|
/* small screens */
|
|
5622
5759
|
@media only screen and (max-width: 767px) {
|