@omnia/runtime 8.0.7-dev → 8.0.8-dev

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.
@@ -120,1226 +120,873 @@
120
120
  }
121
121
 
122
122
 
123
- .v-skeleton-loader {
124
- align-items: center;
125
- background: rgb(var(--v-theme-surface));
126
- border-radius: 4px;
123
+ .v-infinite-scroll--horizontal {
127
124
  display: flex;
128
- flex-wrap: wrap;
129
- position: relative;
130
- vertical-align: top;
131
- }
132
- .v-skeleton-loader__actions {
133
- justify-content: end;
125
+ flex-direction: row;
126
+ overflow-x: auto;
134
127
  }
135
- .v-skeleton-loader .v-skeleton-loader__ossein {
128
+ .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
136
129
  height: 100%;
130
+ width: 1px;
137
131
  }
138
- .v-skeleton-loader .v-skeleton-loader__avatar,
139
- .v-skeleton-loader .v-skeleton-loader__button,
140
- .v-skeleton-loader .v-skeleton-loader__chip,
141
- .v-skeleton-loader .v-skeleton-loader__divider,
142
- .v-skeleton-loader .v-skeleton-loader__heading,
143
- .v-skeleton-loader .v-skeleton-loader__image,
144
- .v-skeleton-loader .v-skeleton-loader__ossein,
145
- .v-skeleton-loader .v-skeleton-loader__text {
146
- background: rgba(var(--v-theme-on-surface), var(--v-border-opacity));
132
+
133
+ .v-infinite-scroll--vertical {
134
+ display: flex;
135
+ flex-direction: column;
136
+ overflow-y: auto;
147
137
  }
148
- .v-skeleton-loader .v-skeleton-loader__list-item,
149
- .v-skeleton-loader .v-skeleton-loader__list-item-avatar,
150
- .v-skeleton-loader .v-skeleton-loader__list-item-text,
151
- .v-skeleton-loader .v-skeleton-loader__list-item-two-line,
152
- .v-skeleton-loader .v-skeleton-loader__list-item-avatar-two-line,
153
- .v-skeleton-loader .v-skeleton-loader__list-item-three-line,
154
- .v-skeleton-loader .v-skeleton-loader__list-item-avatar-three-line {
155
- border-radius: 4px;
138
+ .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
139
+ height: 1px;
140
+ width: 100%;
156
141
  }
157
- .v-skeleton-loader__bone {
142
+
143
+ .v-infinite-scroll__side {
158
144
  align-items: center;
159
- border-radius: inherit;
160
145
  display: flex;
161
- flex: 1 1 100%;
162
- flex-wrap: wrap;
163
- overflow: hidden;
146
+ justify-content: center;
147
+ padding: 8px;
148
+ }
149
+ .v-progress-circular {
150
+ align-items: center;
151
+ display: inline-flex;
152
+ justify-content: center;
164
153
  position: relative;
154
+ vertical-align: middle;
165
155
  }
166
- .v-skeleton-loader__bone::after {
167
- content: "";
156
+ .v-progress-circular > svg {
157
+ width: 100%;
158
+ height: 100%;
159
+ margin: auto;
168
160
  position: absolute;
169
161
  top: 0;
162
+ bottom: 0;
170
163
  left: 0;
171
- width: 100%;
172
- height: 100%;
173
- animation: loading 1.5s infinite;
174
- background: linear-gradient(90deg, rgba(var(--v-theme-surface), 0), rgba(var(--v-theme-surface), 0.3), rgba(var(--v-theme-surface), 0));
175
- transform: translateX(-100%);
164
+ right: 0;
165
+ z-index: 0;
166
+ }
167
+
168
+ .v-progress-circular__content {
169
+ align-items: center;
170
+ display: flex;
171
+ justify-content: center;
172
+ }
173
+
174
+ .v-progress-circular__underlay {
175
+ color: rgba(var(--v-border-color), var(--v-border-opacity));
176
+ stroke: currentColor;
176
177
  z-index: 1;
177
178
  }
178
- .v-skeleton-loader__avatar {
179
- border-radius: 50%;
180
- flex: 0 1 auto;
181
- margin: 8px 16px;
182
- max-height: 48px;
183
- min-height: 48px;
184
- height: 48px;
185
- max-width: 48px;
186
- min-width: 48px;
187
- width: 48px;
179
+
180
+ .v-progress-circular__overlay {
181
+ stroke: currentColor;
182
+ transition: all 0.2s ease-in-out, stroke-width 0s;
183
+ z-index: 2;
188
184
  }
189
- .v-skeleton-loader__avatar + .v-skeleton-loader__bone {
190
- flex: 1 1 auto;
191
- margin-inline-start: 0;
185
+
186
+ .v-progress-circular--size-x-small {
187
+ height: 16px;
188
+ width: 16px;
192
189
  }
193
- .v-skeleton-loader__avatar + .v-skeleton-loader__sentences > .v-skeleton-loader__text,
194
- .v-skeleton-loader__avatar + .v-skeleton-loader__paragraph > .v-skeleton-loader__text {
195
- margin-inline-start: 0;
190
+ .v-progress-circular--size-small {
191
+ height: 24px;
192
+ width: 24px;
196
193
  }
197
- .v-skeleton-loader__button {
198
- border-radius: 4px;
199
- height: 36px;
200
- margin: 16px;
201
- max-width: 64px;
194
+ .v-progress-circular--size-default {
195
+ height: 32px;
196
+ width: 32px;
202
197
  }
203
- .v-skeleton-loader__button + .v-skeleton-loader__bone {
204
- flex: 1 1 auto;
205
- margin-inline-start: 0;
198
+ .v-progress-circular--size-large {
199
+ height: 48px;
200
+ width: 48px;
206
201
  }
207
- .v-skeleton-loader__button + .v-skeleton-loader__sentences > .v-skeleton-loader__text,
208
- .v-skeleton-loader__button + .v-skeleton-loader__paragraph > .v-skeleton-loader__text {
209
- margin-inline-start: 0;
202
+ .v-progress-circular--size-x-large {
203
+ height: 64px;
204
+ width: 64px;
210
205
  }
211
- .v-skeleton-loader__chip {
212
- border-radius: 16px;
213
- margin: 16px;
214
- height: 32px;
215
- max-width: 96px;
206
+
207
+ .v-progress-circular--indeterminate > svg {
208
+ animation: progress-circular-rotate 1.4s linear infinite;
209
+ transform-origin: center center;
210
+ transition: all 0.2s ease-in-out;
216
211
  }
217
- .v-skeleton-loader__chip + .v-skeleton-loader__bone {
218
- flex: 1 1 auto;
219
- margin-inline-start: 0;
212
+ .v-progress-circular--indeterminate .v-progress-circular__overlay {
213
+ animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
214
+ stroke-dasharray: 25, 200;
215
+ stroke-dashoffset: 0;
216
+ stroke-linecap: round;
217
+ transform-origin: center center;
218
+ transform: rotate(-90deg);
220
219
  }
221
- .v-skeleton-loader__chip + .v-skeleton-loader__sentences > .v-skeleton-loader__text,
222
- .v-skeleton-loader__chip + .v-skeleton-loader__paragraph > .v-skeleton-loader__text {
223
- margin-inline-start: 0;
220
+
221
+ .v-progress-circular--disable-shrink > svg {
222
+ animation-duration: 0.7s;
224
223
  }
225
- .v-skeleton-loader__date-picker {
226
- border-radius: inherit;
224
+ .v-progress-circular--disable-shrink .v-progress-circular__overlay {
225
+ animation: none;
227
226
  }
228
- .v-skeleton-loader__date-picker .v-skeleton-loader__list-item:first-child .v-skeleton-loader__text {
229
- max-width: 88px;
230
- width: 20%;
227
+
228
+ .v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
229
+ .v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
230
+ animation-play-state: paused !important;
231
231
  }
232
- .v-skeleton-loader__date-picker .v-skeleton-loader__heading {
233
- max-width: 256px;
234
- width: 40%;
232
+
233
+ @keyframes progress-circular-dash {
234
+ 0% {
235
+ stroke-dasharray: 1, 200;
236
+ stroke-dashoffset: 0px;
237
+ }
238
+ 50% {
239
+ stroke-dasharray: 100, 200;
240
+ stroke-dashoffset: -15px;
241
+ }
242
+ 100% {
243
+ stroke-dasharray: 100, 200;
244
+ stroke-dashoffset: -124px;
245
+ }
235
246
  }
236
- .v-skeleton-loader__date-picker-days {
237
- flex-wrap: wrap;
238
- margin: 16px;
247
+ @keyframes progress-circular-rotate {
248
+ 100% {
249
+ transform: rotate(270deg);
250
+ }
239
251
  }
240
- .v-skeleton-loader__date-picker-days .v-skeleton-loader__avatar {
252
+ /** if false, disabled buttons will be greyed out */
253
+ .v-btn {
254
+ align-items: center;
241
255
  border-radius: 4px;
242
- margin: 4px;
256
+ display: inline-grid;
257
+ grid-template-areas: "prepend content append";
258
+ grid-template-columns: max-content auto max-content;
259
+ font-weight: 500;
260
+ justify-content: center;
261
+ letter-spacing: 0.0892857143em;
262
+ line-height: normal;
243
263
  max-width: 100%;
264
+ outline: none;
265
+ position: relative;
266
+ text-decoration: none;
267
+ text-indent: 0.0892857143em;
268
+ text-transform: uppercase;
269
+ transition-property: box-shadow, transform, opacity, background;
270
+ transition-duration: 0.28s;
271
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
272
+ user-select: none;
273
+ vertical-align: middle;
274
+ flex-shrink: 0;
275
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
276
+ border-style: solid;
277
+ border-width: 0;
244
278
  }
245
- .v-skeleton-loader__date-picker-options {
246
- flex-wrap: nowrap;
279
+ .v-btn--size-x-small {
280
+ --v-btn-size: 0.625rem;
281
+ --v-btn-height: 20px;
282
+ font-size: var(--v-btn-size);
283
+ min-width: 36px;
284
+ padding: 0 8px;
247
285
  }
248
- .v-skeleton-loader__date-picker-options .v-skeleton-loader__text {
249
- flex: 1 1 auto;
286
+
287
+ .v-btn--size-small {
288
+ --v-btn-size: 0.75rem;
289
+ --v-btn-height: 28px;
290
+ font-size: var(--v-btn-size);
291
+ min-width: 50px;
292
+ padding: 0 12px;
250
293
  }
251
- .v-skeleton-loader__divider {
252
- border-radius: 1px;
253
- height: 2px;
294
+
295
+ .v-btn--size-default {
296
+ --v-btn-size: 0.875rem;
297
+ --v-btn-height: 36px;
298
+ font-size: var(--v-btn-size);
299
+ min-width: 64px;
300
+ padding: 0 16px;
254
301
  }
255
- .v-skeleton-loader__heading {
256
- border-radius: 12px;
257
- margin: 16px;
258
- height: 24px;
302
+
303
+ .v-btn--size-large {
304
+ --v-btn-size: 1rem;
305
+ --v-btn-height: 44px;
306
+ font-size: var(--v-btn-size);
307
+ min-width: 78px;
308
+ padding: 0 20px;
259
309
  }
260
- .v-skeleton-loader__heading + .v-skeleton-loader__subtitle {
261
- margin-top: -16px;
310
+
311
+ .v-btn--size-x-large {
312
+ --v-btn-size: 1.125rem;
313
+ --v-btn-height: 52px;
314
+ font-size: var(--v-btn-size);
315
+ min-width: 92px;
316
+ padding: 0 24px;
262
317
  }
263
- .v-skeleton-loader__image {
264
- height: 150px;
265
- border-radius: 0;
266
- }
267
- .v-skeleton-loader__card .v-skeleton-loader__image {
268
- border-radius: 0;
269
- }
270
- .v-skeleton-loader__list-item {
271
- margin: 16px;
318
+
319
+ .v-btn.v-btn--density-default {
320
+ height: calc(var(--v-btn-height) + 0px);
272
321
  }
273
- .v-skeleton-loader__list-item .v-skeleton-loader__text {
274
- margin: 0;
322
+
323
+ .v-btn.v-btn--density-comfortable {
324
+ height: calc(var(--v-btn-height) + -8px);
275
325
  }
276
- .v-skeleton-loader__table-thead {
277
- justify-content: space-between;
326
+
327
+ .v-btn.v-btn--density-compact {
328
+ height: calc(var(--v-btn-height) + -12px);
278
329
  }
279
- .v-skeleton-loader__table-thead .v-skeleton-loader__heading {
280
- margin-top: 16px;
281
- max-width: 16px;
330
+
331
+ .v-btn--border {
332
+ border-width: thin;
333
+ box-shadow: none;
282
334
  }
283
- .v-skeleton-loader__table-tfoot {
284
- flex-wrap: nowrap;
335
+ .v-btn--absolute {
336
+ position: absolute;
285
337
  }
286
- .v-skeleton-loader__table-tfoot > .v-skeleton-loader__text.v-skeleton-loader__bone {
287
- margin-top: 16px;
338
+ .v-btn--fixed {
339
+ position: fixed;
288
340
  }
289
- .v-skeleton-loader__table-row {
290
- align-items: baseline;
291
- margin: 0 8px;
292
- justify-content: space-evenly;
293
- flex-wrap: nowrap;
341
+ .v-btn:hover > .v-btn__overlay {
342
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
294
343
  }
295
- .v-skeleton-loader__table-row > .v-skeleton-loader__text.v-skeleton-loader__bone {
296
- margin-inline-start: 8px;
297
- margin-inline-end: 8px;
344
+ .v-btn:focus-visible > .v-btn__overlay {
345
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
298
346
  }
299
- .v-skeleton-loader__table-row + .v-skeleton-loader__divider {
300
- margin: 0 16px;
347
+ @supports not selector(:focus-visible) {
348
+ .v-btn:focus > .v-btn__overlay {
349
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
350
+ }
301
351
  }
302
- .v-skeleton-loader__table-cell {
303
- align-items: center;
304
- display: flex;
305
- height: 48px;
306
- width: 88px;
352
+ .v-btn--active > .v-btn__overlay, .v-btn[aria-haspopup=menu][aria-expanded=true] > .v-btn__overlay {
353
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
307
354
  }
308
- .v-skeleton-loader__table-cell .v-skeleton-loader__text {
309
- margin-bottom: 0;
355
+ .v-btn--active:hover > .v-btn__overlay, .v-btn[aria-haspopup=menu][aria-expanded=true]:hover > .v-btn__overlay {
356
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
310
357
  }
311
- .v-skeleton-loader__subtitle {
312
- max-width: 70%;
358
+ .v-btn--active:focus-visible > .v-btn__overlay, .v-btn[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-btn__overlay {
359
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
313
360
  }
314
- .v-skeleton-loader__subtitle > .v-skeleton-loader__text {
315
- height: 16px;
316
- border-radius: 8px;
361
+ @supports not selector(:focus-visible) {
362
+ .v-btn--active:focus > .v-btn__overlay, .v-btn[aria-haspopup=menu][aria-expanded=true]:focus > .v-btn__overlay {
363
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
364
+ }
317
365
  }
318
- .v-skeleton-loader__text {
319
- border-radius: 6px;
320
- margin: 16px;
321
- height: 12px;
366
+ .v-btn--variant-plain, .v-btn--variant-outlined, .v-btn--variant-text, .v-btn--variant-tonal {
367
+ background: transparent;
368
+ color: inherit;
322
369
  }
323
- .v-skeleton-loader__text + .v-skeleton-loader__text {
324
- margin-top: -8px;
325
- max-width: 50%;
370
+ .v-btn--variant-plain {
371
+ opacity: 0.62;
326
372
  }
327
- .v-skeleton-loader__text + .v-skeleton-loader__text + .v-skeleton-loader__text {
328
- max-width: 70%;
373
+ .v-btn--variant-plain:focus, .v-btn--variant-plain:hover {
374
+ opacity: 1;
329
375
  }
330
- .v-skeleton-loader--boilerplate .v-skeleton-loader__bone:after {
376
+ .v-btn--variant-plain .v-btn__overlay {
331
377
  display: none;
332
378
  }
333
- .v-skeleton-loader--is-loading {
334
- overflow: hidden;
379
+ .v-btn--variant-elevated, .v-btn--variant-flat {
380
+ background: rgb(var(--v-theme-surface));
381
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
335
382
  }
336
- .v-skeleton-loader--tile {
337
- border-radius: 0;
383
+ .v-btn--variant-elevated {
384
+ box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
338
385
  }
339
- .v-skeleton-loader--tile .v-skeleton-loader__bone {
340
- border-radius: 0;
386
+ .v-btn--variant-flat {
387
+ box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
341
388
  }
342
-
343
- @keyframes loading {
344
- 100% {
345
- transform: translateX(100%);
346
- }
389
+ .v-btn--variant-outlined {
390
+ border: thin solid currentColor;
347
391
  }
348
- .v-locale-provider {
349
- display: contents;
392
+ .v-btn--variant-text .v-btn__overlay {
393
+ background: currentColor;
350
394
  }
351
- .v-application {
352
- display: flex;
353
- background: rgb(var(--v-theme-background));
354
- color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
395
+ .v-btn--variant-tonal .v-btn__underlay {
396
+ background: currentColor;
397
+ opacity: var(--v-activated-opacity);
398
+ border-radius: inherit;
399
+ position: absolute;
400
+ top: 0;
401
+ right: 0;
402
+ bottom: 0;
403
+ left: 0;
404
+ pointer-events: none;
355
405
  }
356
-
357
- .v-application__wrap {
358
- backface-visibility: hidden;
359
- display: flex;
360
- flex-direction: column;
361
- flex: 1 1 auto;
362
- max-width: 100%;
363
- min-height: 100vh;
364
- min-height: 100dvh;
365
- position: relative;
406
+ @supports selector(:focus-visible) {
407
+ .v-btn::after {
408
+ content: "";
409
+ position: absolute;
410
+ top: 0;
411
+ left: 0;
412
+ width: 100%;
413
+ height: 100%;
414
+ pointer-events: none;
415
+ border: 2px solid currentColor;
416
+ border-radius: inherit;
417
+ opacity: 0;
418
+ transition: opacity 0.2s ease-in-out;
419
+ }
420
+ .v-btn:focus-visible::after {
421
+ opacity: calc(0.25 * var(--v-theme-overlay-multiplier));
422
+ }
366
423
  }
367
- .v-main {
368
- flex: 1 0 auto;
369
- max-width: 100%;
370
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
371
- padding-left: var(--v-layout-left);
372
- padding-right: var(--v-layout-right);
373
- padding-top: var(--v-layout-top);
374
- padding-bottom: var(--v-layout-bottom);
424
+ .v-btn--icon {
425
+ border-radius: 50%;
426
+ min-width: 0;
427
+ padding: 0;
375
428
  }
376
- .v-main__scroller {
377
- max-width: 100%;
378
- position: relative;
429
+ .v-btn--icon.v-btn--size-default {
430
+ --v-btn-size: 1rem;
379
431
  }
380
- .v-main--scrollable {
381
- display: flex;
382
- position: absolute;
383
- top: 0;
384
- left: 0;
385
- width: 100%;
386
- height: 100%;
432
+ .v-btn--icon.v-btn--density-default {
433
+ width: calc(var(--v-btn-height) + 12px);
434
+ height: calc(var(--v-btn-height) + 12px);
387
435
  }
388
- .v-main--scrollable > .v-main__scroller {
389
- flex: 1 1 auto;
390
- overflow-y: auto;
391
- --v-layout-left: 0px;
392
- --v-layout-right: 0px;
393
- --v-layout-top: 0px;
394
- --v-layout-bottom: 0px;
436
+ .v-btn--icon.v-btn--density-comfortable {
437
+ width: calc(var(--v-btn-height) + 0px);
438
+ height: calc(var(--v-btn-height) + 0px);
395
439
  }
396
- .v-divider {
397
- display: block;
398
- flex: 1 1 100%;
399
- height: 0px;
400
- max-height: 0px;
401
- opacity: var(--v-border-opacity);
402
- transition: inherit;
403
- border-style: solid;
404
- border-width: thin 0 0 0;
440
+ .v-btn--icon.v-btn--density-compact {
441
+ width: calc(var(--v-btn-height) + -8px);
442
+ height: calc(var(--v-btn-height) + -8px);
405
443
  }
406
- .v-divider--vertical {
407
- align-self: stretch;
408
- border-width: 0 thin 0 0;
409
- display: inline-flex;
410
- height: inherit;
411
- margin-left: -1px;
412
- max-height: 100%;
413
- max-width: 0px;
414
- vertical-align: text-bottom;
415
- width: 0px;
444
+
445
+ .v-btn--elevated:hover, .v-btn--elevated:focus {
446
+ box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
416
447
  }
417
- .v-divider--inset:not(.v-divider--vertical) {
418
- max-width: calc(100% - 72px);
419
- margin-inline-start: 72px;
448
+ .v-btn--elevated:active {
449
+ box-shadow: 0px 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 3px 14px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
420
450
  }
421
- .v-divider--inset.v-divider--vertical {
422
- margin-bottom: 8px;
423
- margin-top: 8px;
424
- max-height: calc(100% - 16px);
451
+ .v-btn--flat {
452
+ box-shadow: none;
425
453
  }
426
- .v-layout {
427
- --v-scrollbar-offset: 0px;
454
+ .v-btn--block {
428
455
  display: flex;
429
- flex: 1 1 auto;
456
+ flex: 1 0 auto;
457
+ min-width: 100%;
430
458
  }
431
- .v-layout--full-height {
432
- --v-scrollbar-offset: inherit;
433
- height: 100%;
459
+ .v-btn--disabled {
460
+ pointer-events: none;
461
+ opacity: 0.26;
434
462
  }
435
- .v-layout-item {
436
- position: absolute;
437
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
463
+ .v-btn--disabled:hover {
464
+ opacity: 0.26;
438
465
  }
439
-
440
- .v-layout-item--absolute {
441
- position: absolute;
466
+ .v-btn--disabled.v-btn--variant-elevated, .v-btn--disabled.v-btn--variant-flat {
467
+ box-shadow: none;
468
+ opacity: 1;
469
+ color: rgba(var(--v-theme-on-surface), 0.26);
470
+ background: rgb(var(--v-theme-surface));
442
471
  }
443
- .v-theme-provider {
444
- background: rgb(var(--v-theme-background));
445
- color: rgb(var(--v-theme-on-background));
446
- }
447
- .v-container {
448
- width: 100%;
449
- padding: 16px;
450
- margin-right: auto;
451
- margin-left: auto;
452
- }
453
- @media (min-width: 960px) {
454
- .v-container {
455
- max-width: 900px;
456
- }
457
- }
458
- @media (min-width: 1280px) {
459
- .v-container {
460
- max-width: 1200px;
461
- }
472
+ .v-btn--disabled.v-btn--variant-elevated .v-btn__overlay, .v-btn--disabled.v-btn--variant-flat .v-btn__overlay {
473
+ opacity: 0.4615384615;
462
474
  }
463
- @media (min-width: 1920px) {
464
- .v-container {
465
- max-width: 1800px;
466
- }
475
+ .v-btn--loading {
476
+ pointer-events: none;
467
477
  }
468
- @media (min-width: 2560px) {
469
- .v-container {
470
- max-width: 2400px;
471
- }
478
+ .v-btn--loading .v-btn__content,
479
+ .v-btn--loading .v-btn__prepend,
480
+ .v-btn--loading .v-btn__append {
481
+ opacity: 0;
472
482
  }
473
- .v-container--fluid {
474
- max-width: 100%;
483
+ .v-btn--stacked {
484
+ grid-template-areas: "prepend" "content" "append";
485
+ grid-template-columns: auto;
486
+ grid-template-rows: max-content max-content max-content;
487
+ justify-items: center;
488
+ align-content: center;
475
489
  }
476
- .v-container.fill-height {
477
- align-items: center;
478
- display: flex;
479
- flex-wrap: wrap;
490
+ .v-btn--stacked .v-btn__content {
491
+ flex-direction: column;
492
+ line-height: 1.25;
480
493
  }
481
-
482
- .v-row {
483
- display: flex;
484
- flex-wrap: wrap;
485
- flex: 1 1 auto;
486
- margin: -12px;
494
+ .v-btn--stacked .v-btn__prepend,
495
+ .v-btn--stacked .v-btn__append,
496
+ .v-btn--stacked .v-btn__content > .v-icon--start,
497
+ .v-btn--stacked .v-btn__content > .v-icon--end {
498
+ margin-inline-start: 0;
499
+ margin-inline-end: 0;
487
500
  }
488
- .v-row + .v-row {
489
- margin-top: 12px;
501
+ .v-btn--stacked .v-btn__prepend,
502
+ .v-btn--stacked .v-btn__content > .v-icon--start {
503
+ margin-bottom: 4px;
490
504
  }
491
- .v-row + .v-row--dense {
505
+ .v-btn--stacked .v-btn__append,
506
+ .v-btn--stacked .v-btn__content > .v-icon--end {
492
507
  margin-top: 4px;
493
508
  }
494
- .v-row--dense {
495
- margin: -4px;
496
- }
497
- .v-row--dense > .v-col,
498
- .v-row--dense > [class*=v-col-] {
499
- padding: 4px;
500
- }
501
- .v-row.v-row--no-gutters {
502
- margin: 0;
503
- }
504
- .v-row.v-row--no-gutters > .v-col,
505
- .v-row.v-row--no-gutters > [class*=v-col-] {
506
- padding: 0;
509
+ .v-btn--stacked.v-btn--size-x-small {
510
+ --v-btn-size: 0.625rem;
511
+ --v-btn-height: 56px;
512
+ font-size: var(--v-btn-size);
513
+ min-width: 56px;
514
+ padding: 0 12px;
507
515
  }
508
516
 
509
- .v-spacer {
510
- flex-grow: 1;
517
+ .v-btn--stacked.v-btn--size-small {
518
+ --v-btn-size: 0.75rem;
519
+ --v-btn-height: 64px;
520
+ font-size: var(--v-btn-size);
521
+ min-width: 64px;
522
+ padding: 0 14px;
511
523
  }
512
524
 
513
- .v-col-xxl,
514
- .v-col-xxl-auto, .v-col-xxl-12, .v-col-xxl-11, .v-col-xxl-10, .v-col-xxl-9, .v-col-xxl-8, .v-col-xxl-7, .v-col-xxl-6, .v-col-xxl-5, .v-col-xxl-4, .v-col-xxl-3, .v-col-xxl-2, .v-col-xxl-1, .v-col-xl,
515
- .v-col-xl-auto, .v-col-xl-12, .v-col-xl-11, .v-col-xl-10, .v-col-xl-9, .v-col-xl-8, .v-col-xl-7, .v-col-xl-6, .v-col-xl-5, .v-col-xl-4, .v-col-xl-3, .v-col-xl-2, .v-col-xl-1, .v-col-lg,
516
- .v-col-lg-auto, .v-col-lg-12, .v-col-lg-11, .v-col-lg-10, .v-col-lg-9, .v-col-lg-8, .v-col-lg-7, .v-col-lg-6, .v-col-lg-5, .v-col-lg-4, .v-col-lg-3, .v-col-lg-2, .v-col-lg-1, .v-col-md,
517
- .v-col-md-auto, .v-col-md-12, .v-col-md-11, .v-col-md-10, .v-col-md-9, .v-col-md-8, .v-col-md-7, .v-col-md-6, .v-col-md-5, .v-col-md-4, .v-col-md-3, .v-col-md-2, .v-col-md-1, .v-col-sm,
518
- .v-col-sm-auto, .v-col-sm-12, .v-col-sm-11, .v-col-sm-10, .v-col-sm-9, .v-col-sm-8, .v-col-sm-7, .v-col-sm-6, .v-col-sm-5, .v-col-sm-4, .v-col-sm-3, .v-col-sm-2, .v-col-sm-1, .v-col,
519
- .v-col-auto, .v-col-12, .v-col-11, .v-col-10, .v-col-9, .v-col-8, .v-col-7, .v-col-6, .v-col-5, .v-col-4, .v-col-3, .v-col-2, .v-col-1 {
520
- width: 100%;
521
- padding: 12px;
525
+ .v-btn--stacked.v-btn--size-default {
526
+ --v-btn-size: 0.875rem;
527
+ --v-btn-height: 72px;
528
+ font-size: var(--v-btn-size);
529
+ min-width: 72px;
530
+ padding: 0 16px;
522
531
  }
523
532
 
524
- .v-col {
525
- flex-basis: 0;
526
- flex-grow: 1;
527
- max-width: 100%;
533
+ .v-btn--stacked.v-btn--size-large {
534
+ --v-btn-size: 1rem;
535
+ --v-btn-height: 80px;
536
+ font-size: var(--v-btn-size);
537
+ min-width: 80px;
538
+ padding: 0 18px;
528
539
  }
529
540
 
530
- .v-col-auto {
531
- flex: 0 0 auto;
532
- width: auto;
533
- max-width: 100%;
541
+ .v-btn--stacked.v-btn--size-x-large {
542
+ --v-btn-size: 1.125rem;
543
+ --v-btn-height: 88px;
544
+ font-size: var(--v-btn-size);
545
+ min-width: 88px;
546
+ padding: 0 20px;
534
547
  }
535
548
 
536
- .v-col-1 {
537
- flex: 0 0 8.3333333333%;
538
- max-width: 8.3333333333%;
549
+ .v-btn--stacked.v-btn--density-default {
550
+ height: calc(var(--v-btn-height) + 0px);
539
551
  }
540
552
 
541
- .v-col-2 {
542
- flex: 0 0 16.6666666667%;
543
- max-width: 16.6666666667%;
553
+ .v-btn--stacked.v-btn--density-comfortable {
554
+ height: calc(var(--v-btn-height) + -16px);
544
555
  }
545
556
 
546
- .v-col-3 {
547
- flex: 0 0 25%;
548
- max-width: 25%;
557
+ .v-btn--stacked.v-btn--density-compact {
558
+ height: calc(var(--v-btn-height) + -24px);
549
559
  }
550
560
 
551
- .v-col-4 {
552
- flex: 0 0 33.3333333333%;
553
- max-width: 33.3333333333%;
561
+ .v-btn--rounded {
562
+ border-radius: 24px;
554
563
  }
555
-
556
- .v-col-5 {
557
- flex: 0 0 41.6666666667%;
558
- max-width: 41.6666666667%;
564
+ .v-btn--rounded.v-btn--icon {
565
+ border-radius: 4px;
559
566
  }
560
-
561
- .v-col-6 {
562
- flex: 0 0 50%;
563
- max-width: 50%;
567
+ .v-btn .v-icon {
568
+ --v-icon-size-multiplier: 0.8571428571;
564
569
  }
565
-
566
- .v-col-7 {
567
- flex: 0 0 58.3333333333%;
568
- max-width: 58.3333333333%;
570
+ .v-btn--icon .v-icon {
571
+ --v-icon-size-multiplier: 1;
569
572
  }
570
-
571
- .v-col-8 {
572
- flex: 0 0 66.6666666667%;
573
- max-width: 66.6666666667%;
573
+ .v-btn--stacked .v-icon {
574
+ --v-icon-size-multiplier: 1.1428571429;
574
575
  }
575
576
 
576
- .v-col-9 {
577
- flex: 0 0 75%;
578
- max-width: 75%;
577
+ .v-btn__loader {
578
+ align-items: center;
579
+ display: flex;
580
+ height: 100%;
581
+ justify-content: center;
582
+ left: 0;
583
+ position: absolute;
584
+ top: 0;
585
+ width: 100%;
579
586
  }
580
587
 
581
- .v-col-10 {
582
- flex: 0 0 83.3333333333%;
583
- max-width: 83.3333333333%;
588
+ .v-btn__content,
589
+ .v-btn__prepend,
590
+ .v-btn__append {
591
+ align-items: center;
592
+ display: flex;
593
+ transition: transform, opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
584
594
  }
585
595
 
586
- .v-col-11 {
587
- flex: 0 0 91.6666666667%;
588
- max-width: 91.6666666667%;
596
+ .v-btn__prepend {
597
+ grid-area: prepend;
598
+ margin-inline-start: calc(var(--v-btn-height) / -9);
599
+ margin-inline-end: calc(var(--v-btn-height) / 4.5);
589
600
  }
590
601
 
591
- .v-col-12 {
592
- flex: 0 0 100%;
593
- max-width: 100%;
602
+ .v-btn__append {
603
+ grid-area: append;
604
+ margin-inline-start: calc(var(--v-btn-height) / 4.5);
605
+ margin-inline-end: calc(var(--v-btn-height) / -9);
594
606
  }
595
607
 
596
- .v-locale--is-ltr.offset-1, .v-locale--is-ltr .offset-1 {
597
- margin-left: 8.3333333333%;
608
+ .v-btn__content {
609
+ grid-area: content;
610
+ justify-content: center;
611
+ white-space: nowrap;
598
612
  }
599
-
600
- .v-locale--is-rtl.offset-1, .v-locale--is-rtl .offset-1 {
601
- margin-right: 8.3333333333%;
613
+ .v-btn__content > .v-icon--start {
614
+ margin-inline-start: calc(var(--v-btn-height) / -9);
615
+ margin-inline-end: calc(var(--v-btn-height) / 4.5);
602
616
  }
603
-
604
- .v-locale--is-ltr.offset-2, .v-locale--is-ltr .offset-2 {
605
- margin-left: 16.6666666667%;
617
+ .v-btn__content > .v-icon--end {
618
+ margin-inline-start: calc(var(--v-btn-height) / 4.5);
619
+ margin-inline-end: calc(var(--v-btn-height) / -9);
606
620
  }
607
-
608
- .v-locale--is-rtl.offset-2, .v-locale--is-rtl .offset-2 {
609
- margin-right: 16.6666666667%;
621
+ .v-btn--stacked .v-btn__content {
622
+ white-space: normal;
610
623
  }
611
624
 
612
- .v-locale--is-ltr.offset-3, .v-locale--is-ltr .offset-3 {
613
- margin-left: 25%;
625
+ .v-btn__overlay {
626
+ background-color: currentColor;
627
+ border-radius: inherit;
628
+ opacity: 0;
629
+ transition: opacity 0.2s ease-in-out;
614
630
  }
615
631
 
616
- .v-locale--is-rtl.offset-3, .v-locale--is-rtl .offset-3 {
617
- margin-right: 25%;
632
+ .v-btn__overlay,
633
+ .v-btn__underlay {
634
+ position: absolute;
635
+ top: 0;
636
+ left: 0;
637
+ width: 100%;
638
+ height: 100%;
639
+ pointer-events: none;
618
640
  }
619
641
 
620
- .v-locale--is-ltr.offset-4, .v-locale--is-ltr .offset-4 {
621
- margin-left: 33.3333333333%;
642
+ .v-card-actions .v-btn {
643
+ padding: 0 8px;
622
644
  }
623
-
624
- .v-locale--is-rtl.offset-4, .v-locale--is-rtl .offset-4 {
625
- margin-right: 33.3333333333%;
645
+ .v-card-actions .v-btn ~ .v-btn:not(.v-btn-toggle .v-btn) {
646
+ margin-inline-start: 0.5rem;
626
647
  }
627
648
 
628
- .v-locale--is-ltr.offset-5, .v-locale--is-ltr .offset-5 {
629
- margin-left: 41.6666666667%;
649
+ .v-banner-actions .v-btn {
650
+ padding: 0 8px;
630
651
  }
631
652
 
632
- .v-locale--is-rtl.offset-5, .v-locale--is-rtl .offset-5 {
633
- margin-right: 41.6666666667%;
653
+ .v-pagination .v-btn {
654
+ border-radius: 4px;
655
+ }
656
+ .v-btn__overlay {
657
+ transition: none;
658
+ }
659
+ .v-pagination__item--is-active .v-btn__overlay {
660
+ opacity: var(--v-border-opacity);
634
661
  }
635
662
 
636
- .v-locale--is-ltr.offset-6, .v-locale--is-ltr .offset-6 {
637
- margin-left: 50%;
663
+ .v-snackbar-actions .v-btn {
664
+ padding: 0 8px;
665
+ }
666
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
667
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
668
+ }
669
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
670
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
671
+ }
672
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
673
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
674
+ }
675
+ @supports not selector(:focus-visible) {
676
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
677
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
678
+ }
679
+ }
680
+ /** if false, disabled buttons will be greyed out */
681
+ .v-btn-group {
682
+ display: inline-flex;
683
+ flex-wrap: nowrap;
684
+ max-width: 100%;
685
+ min-width: 0;
686
+ overflow: hidden;
687
+ vertical-align: middle;
688
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
689
+ border-style: solid;
690
+ border-width: 0;
691
+ box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
692
+ border-radius: 4px;
693
+ background: transparent;
694
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
695
+ }
696
+ .v-btn-group--border {
697
+ border-width: thin;
698
+ box-shadow: none;
699
+ }
700
+ .v-btn-group--density-default.v-btn-group {
701
+ height: 48px;
638
702
  }
639
703
 
640
- .v-locale--is-rtl.offset-6, .v-locale--is-rtl .offset-6 {
641
- margin-right: 50%;
704
+ .v-btn-group--density-comfortable.v-btn-group {
705
+ height: 40px;
642
706
  }
643
707
 
644
- .v-locale--is-ltr.offset-7, .v-locale--is-ltr .offset-7 {
645
- margin-left: 58.3333333333%;
708
+ .v-btn-group--density-compact.v-btn-group {
709
+ height: 36px;
646
710
  }
647
711
 
648
- .v-locale--is-rtl.offset-7, .v-locale--is-rtl .offset-7 {
649
- margin-right: 58.3333333333%;
712
+ .v-btn-group .v-btn {
713
+ border-radius: 0;
714
+ border-color: inherit;
715
+ }
716
+ .v-btn-group .v-btn:not(:last-child) {
717
+ border-inline-end: none;
718
+ }
719
+ .v-btn-group .v-btn:not(:first-child) {
720
+ border-inline-start: none;
721
+ }
722
+ .v-btn-group .v-btn:first-child {
723
+ border-start-start-radius: inherit;
724
+ border-end-start-radius: inherit;
725
+ }
726
+ .v-btn-group .v-btn:last-child {
727
+ border-start-end-radius: inherit;
728
+ border-end-end-radius: inherit;
729
+ }
730
+ .v-btn-group--divided .v-btn:not(:last-child) {
731
+ border-inline-end-width: thin;
732
+ border-inline-end-style: solid;
733
+ border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
734
+ }
735
+ .v-btn-group--tile {
736
+ border-radius: 0;
737
+ }
738
+ .v-progress-linear {
739
+ background: transparent;
740
+ overflow: hidden;
741
+ position: relative;
742
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
743
+ width: 100%;
744
+ }
745
+ .v-progress-linear--rounded {
746
+ border-radius: 9999px;
650
747
  }
651
748
 
652
- .v-locale--is-ltr.offset-8, .v-locale--is-ltr .offset-8 {
653
- margin-left: 66.6666666667%;
749
+ .v-progress-linear__background {
750
+ background: currentColor;
751
+ bottom: 0;
752
+ left: 0;
753
+ opacity: var(--v-border-opacity);
754
+ position: absolute;
755
+ top: 0;
756
+ transition-property: width, left, right;
757
+ transition: inherit;
654
758
  }
655
759
 
656
- .v-locale--is-rtl.offset-8, .v-locale--is-rtl .offset-8 {
657
- margin-right: 66.6666666667%;
760
+ .v-progress-linear__content {
761
+ align-items: center;
762
+ display: flex;
763
+ height: 100%;
764
+ justify-content: center;
765
+ left: 0;
766
+ pointer-events: none;
767
+ position: absolute;
768
+ top: 0;
769
+ width: 100%;
658
770
  }
659
771
 
660
- .v-locale--is-ltr.offset-9, .v-locale--is-ltr .offset-9 {
661
- margin-left: 75%;
772
+ .v-progress-linear__determinate,
773
+ .v-progress-linear__indeterminate {
774
+ background: currentColor;
662
775
  }
663
776
 
664
- .v-locale--is-rtl.offset-9, .v-locale--is-rtl .offset-9 {
665
- margin-right: 75%;
777
+ .v-progress-linear__determinate {
778
+ height: inherit;
779
+ left: 0;
780
+ position: absolute;
781
+ transition: inherit;
782
+ transition-property: width, left, right;
666
783
  }
667
784
 
668
- .v-locale--is-ltr.offset-10, .v-locale--is-ltr .offset-10 {
669
- margin-left: 83.3333333333%;
785
+ .v-progress-linear__indeterminate .long, .v-progress-linear__indeterminate .short {
786
+ animation-play-state: paused;
787
+ animation-duration: 2.2s;
788
+ animation-iteration-count: infinite;
789
+ bottom: 0;
790
+ height: inherit;
791
+ left: 0;
792
+ position: absolute;
793
+ right: auto;
794
+ top: 0;
795
+ width: auto;
796
+ will-change: left, right;
797
+ }
798
+ .v-progress-linear__indeterminate .long {
799
+ animation-name: indeterminate-ltr;
800
+ }
801
+ .v-progress-linear__indeterminate .short {
802
+ animation-name: indeterminate-short-ltr;
670
803
  }
671
804
 
672
- .v-locale--is-rtl.offset-10, .v-locale--is-rtl .offset-10 {
673
- margin-right: 83.3333333333%;
805
+ .v-progress-linear__stream {
806
+ animation: stream 0.25s infinite linear;
807
+ animation-play-state: paused;
808
+ bottom: 0;
809
+ left: auto;
810
+ opacity: 0.3;
811
+ pointer-events: none;
812
+ position: absolute;
813
+ transition: inherit;
814
+ transition-property: width, left, right;
674
815
  }
675
816
 
676
- .v-locale--is-ltr.offset-11, .v-locale--is-ltr .offset-11 {
677
- margin-left: 91.6666666667%;
817
+ .v-progress-linear--reverse .v-progress-linear__background,
818
+ .v-progress-linear--reverse .v-progress-linear__determinate,
819
+ .v-progress-linear--reverse .v-progress-linear__content {
820
+ left: auto;
821
+ right: 0;
822
+ }
823
+ .v-progress-linear--reverse .v-progress-linear__indeterminate .long, .v-progress-linear--reverse .v-progress-linear__indeterminate .short {
824
+ left: auto;
825
+ right: 0;
826
+ }
827
+ .v-progress-linear--reverse .v-progress-linear__indeterminate .long {
828
+ animation-name: indeterminate-rtl;
829
+ }
830
+ .v-progress-linear--reverse .v-progress-linear__indeterminate .short {
831
+ animation-name: indeterminate-short-rtl;
832
+ }
833
+ .v-progress-linear--reverse .v-progress-linear__stream {
834
+ right: auto;
678
835
  }
679
836
 
680
- .v-locale--is-rtl.offset-11, .v-locale--is-rtl .offset-11 {
681
- margin-right: 91.6666666667%;
837
+ .v-progress-linear--absolute,
838
+ .v-progress-linear--fixed {
839
+ left: 0;
840
+ z-index: 1;
682
841
  }
683
842
 
684
- @media (min-width: 600px) {
685
- .v-col-sm {
686
- flex-basis: 0;
687
- flex-grow: 1;
688
- max-width: 100%;
843
+ .v-progress-linear--absolute {
844
+ position: absolute;
845
+ }
846
+
847
+ .v-progress-linear--fixed {
848
+ position: fixed;
849
+ }
850
+
851
+ .v-progress-linear--rounded {
852
+ border-radius: 9999px;
853
+ }
854
+ .v-progress-linear--rounded.v-progress-linear--rounded-bar .v-progress-linear__determinate,
855
+ .v-progress-linear--rounded.v-progress-linear--rounded-bar .v-progress-linear__indeterminate {
856
+ border-radius: inherit;
857
+ }
858
+
859
+ .v-progress-linear--striped .v-progress-linear__determinate {
860
+ animation: progress-linear-stripes 1s infinite linear;
861
+ background-image: linear-gradient(135deg, hsla(0, 0%, 100%, 0.25) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, 0.25) 0, hsla(0, 0%, 100%, 0.25) 75%, transparent 0, transparent);
862
+ background-repeat: repeat;
863
+ background-size: var(--v-progress-linear-height);
864
+ }
865
+
866
+ .v-progress-linear--active .v-progress-linear__indeterminate .long, .v-progress-linear--active .v-progress-linear__indeterminate .short {
867
+ animation-play-state: running;
868
+ }
869
+ .v-progress-linear--active .v-progress-linear__stream {
870
+ animation-play-state: running;
871
+ }
872
+
873
+ .v-progress-linear--rounded-bar .v-progress-linear__determinate,
874
+ .v-progress-linear--rounded-bar .v-progress-linear__indeterminate,
875
+ .v-progress-linear--rounded-bar .v-progress-linear__stream + .v-progress-linear__background {
876
+ border-radius: 9999px;
877
+ }
878
+ .v-locale--is-ltr.v-progress-linear--rounded-bar .v-progress-linear__determinate, .v-locale--is-ltr .v-progress-linear--rounded-bar .v-progress-linear__determinate {
879
+ border-top-left-radius: 0;
880
+ border-bottom-left-radius: 0;
881
+ }
882
+
883
+ .v-locale--is-rtl.v-progress-linear--rounded-bar .v-progress-linear__determinate, .v-locale--is-rtl .v-progress-linear--rounded-bar .v-progress-linear__determinate {
884
+ border-top-right-radius: 0;
885
+ border-bottom-right-radius: 0;
886
+ }
887
+
888
+ @keyframes indeterminate-ltr {
889
+ 0% {
890
+ left: -90%;
891
+ right: 100%;
689
892
  }
690
- .v-col-sm-auto {
691
- flex: 0 0 auto;
692
- width: auto;
693
- max-width: 100%;
694
- }
695
- .v-col-sm-1 {
696
- flex: 0 0 8.3333333333%;
697
- max-width: 8.3333333333%;
698
- }
699
- .v-col-sm-2 {
700
- flex: 0 0 16.6666666667%;
701
- max-width: 16.6666666667%;
702
- }
703
- .v-col-sm-3 {
704
- flex: 0 0 25%;
705
- max-width: 25%;
706
- }
707
- .v-col-sm-4 {
708
- flex: 0 0 33.3333333333%;
709
- max-width: 33.3333333333%;
710
- }
711
- .v-col-sm-5 {
712
- flex: 0 0 41.6666666667%;
713
- max-width: 41.6666666667%;
714
- }
715
- .v-col-sm-6 {
716
- flex: 0 0 50%;
717
- max-width: 50%;
718
- }
719
- .v-col-sm-7 {
720
- flex: 0 0 58.3333333333%;
721
- max-width: 58.3333333333%;
722
- }
723
- .v-col-sm-8 {
724
- flex: 0 0 66.6666666667%;
725
- max-width: 66.6666666667%;
726
- }
727
- .v-col-sm-9 {
728
- flex: 0 0 75%;
729
- max-width: 75%;
730
- }
731
- .v-col-sm-10 {
732
- flex: 0 0 83.3333333333%;
733
- max-width: 83.3333333333%;
734
- }
735
- .v-col-sm-11 {
736
- flex: 0 0 91.6666666667%;
737
- max-width: 91.6666666667%;
738
- }
739
- .v-col-sm-12 {
740
- flex: 0 0 100%;
741
- max-width: 100%;
742
- }
743
- .v-locale--is-ltr.offset-sm-0, .v-locale--is-ltr .offset-sm-0 {
744
- margin-left: 0;
745
- }
746
- .v-locale--is-rtl.offset-sm-0, .v-locale--is-rtl .offset-sm-0 {
747
- margin-right: 0;
748
- }
749
- .v-locale--is-ltr.offset-sm-1, .v-locale--is-ltr .offset-sm-1 {
750
- margin-left: 8.3333333333%;
751
- }
752
- .v-locale--is-rtl.offset-sm-1, .v-locale--is-rtl .offset-sm-1 {
753
- margin-right: 8.3333333333%;
754
- }
755
- .v-locale--is-ltr.offset-sm-2, .v-locale--is-ltr .offset-sm-2 {
756
- margin-left: 16.6666666667%;
757
- }
758
- .v-locale--is-rtl.offset-sm-2, .v-locale--is-rtl .offset-sm-2 {
759
- margin-right: 16.6666666667%;
760
- }
761
- .v-locale--is-ltr.offset-sm-3, .v-locale--is-ltr .offset-sm-3 {
762
- margin-left: 25%;
763
- }
764
- .v-locale--is-rtl.offset-sm-3, .v-locale--is-rtl .offset-sm-3 {
765
- margin-right: 25%;
766
- }
767
- .v-locale--is-ltr.offset-sm-4, .v-locale--is-ltr .offset-sm-4 {
768
- margin-left: 33.3333333333%;
769
- }
770
- .v-locale--is-rtl.offset-sm-4, .v-locale--is-rtl .offset-sm-4 {
771
- margin-right: 33.3333333333%;
772
- }
773
- .v-locale--is-ltr.offset-sm-5, .v-locale--is-ltr .offset-sm-5 {
774
- margin-left: 41.6666666667%;
775
- }
776
- .v-locale--is-rtl.offset-sm-5, .v-locale--is-rtl .offset-sm-5 {
777
- margin-right: 41.6666666667%;
778
- }
779
- .v-locale--is-ltr.offset-sm-6, .v-locale--is-ltr .offset-sm-6 {
780
- margin-left: 50%;
781
- }
782
- .v-locale--is-rtl.offset-sm-6, .v-locale--is-rtl .offset-sm-6 {
783
- margin-right: 50%;
784
- }
785
- .v-locale--is-ltr.offset-sm-7, .v-locale--is-ltr .offset-sm-7 {
786
- margin-left: 58.3333333333%;
787
- }
788
- .v-locale--is-rtl.offset-sm-7, .v-locale--is-rtl .offset-sm-7 {
789
- margin-right: 58.3333333333%;
790
- }
791
- .v-locale--is-ltr.offset-sm-8, .v-locale--is-ltr .offset-sm-8 {
792
- margin-left: 66.6666666667%;
793
- }
794
- .v-locale--is-rtl.offset-sm-8, .v-locale--is-rtl .offset-sm-8 {
795
- margin-right: 66.6666666667%;
796
- }
797
- .v-locale--is-ltr.offset-sm-9, .v-locale--is-ltr .offset-sm-9 {
798
- margin-left: 75%;
799
- }
800
- .v-locale--is-rtl.offset-sm-9, .v-locale--is-rtl .offset-sm-9 {
801
- margin-right: 75%;
802
- }
803
- .v-locale--is-ltr.offset-sm-10, .v-locale--is-ltr .offset-sm-10 {
804
- margin-left: 83.3333333333%;
805
- }
806
- .v-locale--is-rtl.offset-sm-10, .v-locale--is-rtl .offset-sm-10 {
807
- margin-right: 83.3333333333%;
808
- }
809
- .v-locale--is-ltr.offset-sm-11, .v-locale--is-ltr .offset-sm-11 {
810
- margin-left: 91.6666666667%;
893
+ 60% {
894
+ left: -90%;
895
+ right: 100%;
811
896
  }
812
- .v-locale--is-rtl.offset-sm-11, .v-locale--is-rtl .offset-sm-11 {
813
- margin-right: 91.6666666667%;
897
+ 100% {
898
+ left: 100%;
899
+ right: -35%;
814
900
  }
815
901
  }
816
- @media (min-width: 960px) {
817
- .v-col-md {
818
- flex-basis: 0;
819
- flex-grow: 1;
820
- max-width: 100%;
821
- }
822
- .v-col-md-auto {
823
- flex: 0 0 auto;
824
- width: auto;
825
- max-width: 100%;
826
- }
827
- .v-col-md-1 {
828
- flex: 0 0 8.3333333333%;
829
- max-width: 8.3333333333%;
830
- }
831
- .v-col-md-2 {
832
- flex: 0 0 16.6666666667%;
833
- max-width: 16.6666666667%;
834
- }
835
- .v-col-md-3 {
836
- flex: 0 0 25%;
837
- max-width: 25%;
838
- }
839
- .v-col-md-4 {
840
- flex: 0 0 33.3333333333%;
841
- max-width: 33.3333333333%;
842
- }
843
- .v-col-md-5 {
844
- flex: 0 0 41.6666666667%;
845
- max-width: 41.6666666667%;
846
- }
847
- .v-col-md-6 {
848
- flex: 0 0 50%;
849
- max-width: 50%;
850
- }
851
- .v-col-md-7 {
852
- flex: 0 0 58.3333333333%;
853
- max-width: 58.3333333333%;
854
- }
855
- .v-col-md-8 {
856
- flex: 0 0 66.6666666667%;
857
- max-width: 66.6666666667%;
858
- }
859
- .v-col-md-9 {
860
- flex: 0 0 75%;
861
- max-width: 75%;
862
- }
863
- .v-col-md-10 {
864
- flex: 0 0 83.3333333333%;
865
- max-width: 83.3333333333%;
866
- }
867
- .v-col-md-11 {
868
- flex: 0 0 91.6666666667%;
869
- max-width: 91.6666666667%;
870
- }
871
- .v-col-md-12 {
872
- flex: 0 0 100%;
873
- max-width: 100%;
874
- }
875
- .v-locale--is-ltr.offset-md-0, .v-locale--is-ltr .offset-md-0 {
876
- margin-left: 0;
877
- }
878
- .v-locale--is-rtl.offset-md-0, .v-locale--is-rtl .offset-md-0 {
879
- margin-right: 0;
880
- }
881
- .v-locale--is-ltr.offset-md-1, .v-locale--is-ltr .offset-md-1 {
882
- margin-left: 8.3333333333%;
883
- }
884
- .v-locale--is-rtl.offset-md-1, .v-locale--is-rtl .offset-md-1 {
885
- margin-right: 8.3333333333%;
902
+ @keyframes indeterminate-rtl {
903
+ 0% {
904
+ left: 100%;
905
+ right: -90%;
886
906
  }
887
- .v-locale--is-ltr.offset-md-2, .v-locale--is-ltr .offset-md-2 {
888
- margin-left: 16.6666666667%;
907
+ 60% {
908
+ left: 100%;
909
+ right: -90%;
889
910
  }
890
- .v-locale--is-rtl.offset-md-2, .v-locale--is-rtl .offset-md-2 {
891
- margin-right: 16.6666666667%;
911
+ 100% {
912
+ left: -35%;
913
+ right: 100%;
892
914
  }
893
- .v-locale--is-ltr.offset-md-3, .v-locale--is-ltr .offset-md-3 {
894
- margin-left: 25%;
915
+ }
916
+ @keyframes indeterminate-short-ltr {
917
+ 0% {
918
+ left: -200%;
919
+ right: 100%;
895
920
  }
896
- .v-locale--is-rtl.offset-md-3, .v-locale--is-rtl .offset-md-3 {
897
- margin-right: 25%;
921
+ 60% {
922
+ left: 107%;
923
+ right: -8%;
898
924
  }
899
- .v-locale--is-ltr.offset-md-4, .v-locale--is-ltr .offset-md-4 {
900
- margin-left: 33.3333333333%;
925
+ 100% {
926
+ left: 107%;
927
+ right: -8%;
901
928
  }
902
- .v-locale--is-rtl.offset-md-4, .v-locale--is-rtl .offset-md-4 {
903
- margin-right: 33.3333333333%;
929
+ }
930
+ @keyframes indeterminate-short-rtl {
931
+ 0% {
932
+ left: 100%;
933
+ right: -200%;
904
934
  }
905
- .v-locale--is-ltr.offset-md-5, .v-locale--is-ltr .offset-md-5 {
906
- margin-left: 41.6666666667%;
935
+ 60% {
936
+ left: -8%;
937
+ right: 107%;
907
938
  }
908
- .v-locale--is-rtl.offset-md-5, .v-locale--is-rtl .offset-md-5 {
909
- margin-right: 41.6666666667%;
939
+ 100% {
940
+ left: -8%;
941
+ right: 107%;
910
942
  }
911
- .v-locale--is-ltr.offset-md-6, .v-locale--is-ltr .offset-md-6 {
912
- margin-left: 50%;
943
+ }
944
+ @keyframes stream {
945
+ to {
946
+ transform: translateX(var(--v-progress-linear-stream-to));
913
947
  }
914
- .v-locale--is-rtl.offset-md-6, .v-locale--is-rtl .offset-md-6 {
915
- margin-right: 50%;
916
- }
917
- .v-locale--is-ltr.offset-md-7, .v-locale--is-ltr .offset-md-7 {
918
- margin-left: 58.3333333333%;
919
- }
920
- .v-locale--is-rtl.offset-md-7, .v-locale--is-rtl .offset-md-7 {
921
- margin-right: 58.3333333333%;
922
- }
923
- .v-locale--is-ltr.offset-md-8, .v-locale--is-ltr .offset-md-8 {
924
- margin-left: 66.6666666667%;
925
- }
926
- .v-locale--is-rtl.offset-md-8, .v-locale--is-rtl .offset-md-8 {
927
- margin-right: 66.6666666667%;
928
- }
929
- .v-locale--is-ltr.offset-md-9, .v-locale--is-ltr .offset-md-9 {
930
- margin-left: 75%;
931
- }
932
- .v-locale--is-rtl.offset-md-9, .v-locale--is-rtl .offset-md-9 {
933
- margin-right: 75%;
934
- }
935
- .v-locale--is-ltr.offset-md-10, .v-locale--is-ltr .offset-md-10 {
936
- margin-left: 83.3333333333%;
937
- }
938
- .v-locale--is-rtl.offset-md-10, .v-locale--is-rtl .offset-md-10 {
939
- margin-right: 83.3333333333%;
940
- }
941
- .v-locale--is-ltr.offset-md-11, .v-locale--is-ltr .offset-md-11 {
942
- margin-left: 91.6666666667%;
943
- }
944
- .v-locale--is-rtl.offset-md-11, .v-locale--is-rtl .offset-md-11 {
945
- margin-right: 91.6666666667%;
946
- }
947
- }
948
- @media (min-width: 1280px) {
949
- .v-col-lg {
950
- flex-basis: 0;
951
- flex-grow: 1;
952
- max-width: 100%;
953
- }
954
- .v-col-lg-auto {
955
- flex: 0 0 auto;
956
- width: auto;
957
- max-width: 100%;
958
- }
959
- .v-col-lg-1 {
960
- flex: 0 0 8.3333333333%;
961
- max-width: 8.3333333333%;
962
- }
963
- .v-col-lg-2 {
964
- flex: 0 0 16.6666666667%;
965
- max-width: 16.6666666667%;
966
- }
967
- .v-col-lg-3 {
968
- flex: 0 0 25%;
969
- max-width: 25%;
970
- }
971
- .v-col-lg-4 {
972
- flex: 0 0 33.3333333333%;
973
- max-width: 33.3333333333%;
974
- }
975
- .v-col-lg-5 {
976
- flex: 0 0 41.6666666667%;
977
- max-width: 41.6666666667%;
978
- }
979
- .v-col-lg-6 {
980
- flex: 0 0 50%;
981
- max-width: 50%;
982
- }
983
- .v-col-lg-7 {
984
- flex: 0 0 58.3333333333%;
985
- max-width: 58.3333333333%;
986
- }
987
- .v-col-lg-8 {
988
- flex: 0 0 66.6666666667%;
989
- max-width: 66.6666666667%;
990
- }
991
- .v-col-lg-9 {
992
- flex: 0 0 75%;
993
- max-width: 75%;
994
- }
995
- .v-col-lg-10 {
996
- flex: 0 0 83.3333333333%;
997
- max-width: 83.3333333333%;
998
- }
999
- .v-col-lg-11 {
1000
- flex: 0 0 91.6666666667%;
1001
- max-width: 91.6666666667%;
1002
- }
1003
- .v-col-lg-12 {
1004
- flex: 0 0 100%;
1005
- max-width: 100%;
1006
- }
1007
- .v-locale--is-ltr.offset-lg-0, .v-locale--is-ltr .offset-lg-0 {
1008
- margin-left: 0;
1009
- }
1010
- .v-locale--is-rtl.offset-lg-0, .v-locale--is-rtl .offset-lg-0 {
1011
- margin-right: 0;
1012
- }
1013
- .v-locale--is-ltr.offset-lg-1, .v-locale--is-ltr .offset-lg-1 {
1014
- margin-left: 8.3333333333%;
1015
- }
1016
- .v-locale--is-rtl.offset-lg-1, .v-locale--is-rtl .offset-lg-1 {
1017
- margin-right: 8.3333333333%;
1018
- }
1019
- .v-locale--is-ltr.offset-lg-2, .v-locale--is-ltr .offset-lg-2 {
1020
- margin-left: 16.6666666667%;
1021
- }
1022
- .v-locale--is-rtl.offset-lg-2, .v-locale--is-rtl .offset-lg-2 {
1023
- margin-right: 16.6666666667%;
1024
- }
1025
- .v-locale--is-ltr.offset-lg-3, .v-locale--is-ltr .offset-lg-3 {
1026
- margin-left: 25%;
1027
- }
1028
- .v-locale--is-rtl.offset-lg-3, .v-locale--is-rtl .offset-lg-3 {
1029
- margin-right: 25%;
1030
- }
1031
- .v-locale--is-ltr.offset-lg-4, .v-locale--is-ltr .offset-lg-4 {
1032
- margin-left: 33.3333333333%;
1033
- }
1034
- .v-locale--is-rtl.offset-lg-4, .v-locale--is-rtl .offset-lg-4 {
1035
- margin-right: 33.3333333333%;
1036
- }
1037
- .v-locale--is-ltr.offset-lg-5, .v-locale--is-ltr .offset-lg-5 {
1038
- margin-left: 41.6666666667%;
1039
- }
1040
- .v-locale--is-rtl.offset-lg-5, .v-locale--is-rtl .offset-lg-5 {
1041
- margin-right: 41.6666666667%;
1042
- }
1043
- .v-locale--is-ltr.offset-lg-6, .v-locale--is-ltr .offset-lg-6 {
1044
- margin-left: 50%;
1045
- }
1046
- .v-locale--is-rtl.offset-lg-6, .v-locale--is-rtl .offset-lg-6 {
1047
- margin-right: 50%;
1048
- }
1049
- .v-locale--is-ltr.offset-lg-7, .v-locale--is-ltr .offset-lg-7 {
1050
- margin-left: 58.3333333333%;
1051
- }
1052
- .v-locale--is-rtl.offset-lg-7, .v-locale--is-rtl .offset-lg-7 {
1053
- margin-right: 58.3333333333%;
1054
- }
1055
- .v-locale--is-ltr.offset-lg-8, .v-locale--is-ltr .offset-lg-8 {
1056
- margin-left: 66.6666666667%;
1057
- }
1058
- .v-locale--is-rtl.offset-lg-8, .v-locale--is-rtl .offset-lg-8 {
1059
- margin-right: 66.6666666667%;
1060
- }
1061
- .v-locale--is-ltr.offset-lg-9, .v-locale--is-ltr .offset-lg-9 {
1062
- margin-left: 75%;
1063
- }
1064
- .v-locale--is-rtl.offset-lg-9, .v-locale--is-rtl .offset-lg-9 {
1065
- margin-right: 75%;
1066
- }
1067
- .v-locale--is-ltr.offset-lg-10, .v-locale--is-ltr .offset-lg-10 {
1068
- margin-left: 83.3333333333%;
1069
- }
1070
- .v-locale--is-rtl.offset-lg-10, .v-locale--is-rtl .offset-lg-10 {
1071
- margin-right: 83.3333333333%;
1072
- }
1073
- .v-locale--is-ltr.offset-lg-11, .v-locale--is-ltr .offset-lg-11 {
1074
- margin-left: 91.6666666667%;
1075
- }
1076
- .v-locale--is-rtl.offset-lg-11, .v-locale--is-rtl .offset-lg-11 {
1077
- margin-right: 91.6666666667%;
1078
- }
1079
- }
1080
- @media (min-width: 1920px) {
1081
- .v-col-xl {
1082
- flex-basis: 0;
1083
- flex-grow: 1;
1084
- max-width: 100%;
1085
- }
1086
- .v-col-xl-auto {
1087
- flex: 0 0 auto;
1088
- width: auto;
1089
- max-width: 100%;
1090
- }
1091
- .v-col-xl-1 {
1092
- flex: 0 0 8.3333333333%;
1093
- max-width: 8.3333333333%;
1094
- }
1095
- .v-col-xl-2 {
1096
- flex: 0 0 16.6666666667%;
1097
- max-width: 16.6666666667%;
1098
- }
1099
- .v-col-xl-3 {
1100
- flex: 0 0 25%;
1101
- max-width: 25%;
1102
- }
1103
- .v-col-xl-4 {
1104
- flex: 0 0 33.3333333333%;
1105
- max-width: 33.3333333333%;
1106
- }
1107
- .v-col-xl-5 {
1108
- flex: 0 0 41.6666666667%;
1109
- max-width: 41.6666666667%;
1110
- }
1111
- .v-col-xl-6 {
1112
- flex: 0 0 50%;
1113
- max-width: 50%;
1114
- }
1115
- .v-col-xl-7 {
1116
- flex: 0 0 58.3333333333%;
1117
- max-width: 58.3333333333%;
1118
- }
1119
- .v-col-xl-8 {
1120
- flex: 0 0 66.6666666667%;
1121
- max-width: 66.6666666667%;
1122
- }
1123
- .v-col-xl-9 {
1124
- flex: 0 0 75%;
1125
- max-width: 75%;
1126
- }
1127
- .v-col-xl-10 {
1128
- flex: 0 0 83.3333333333%;
1129
- max-width: 83.3333333333%;
1130
- }
1131
- .v-col-xl-11 {
1132
- flex: 0 0 91.6666666667%;
1133
- max-width: 91.6666666667%;
1134
- }
1135
- .v-col-xl-12 {
1136
- flex: 0 0 100%;
1137
- max-width: 100%;
1138
- }
1139
- .v-locale--is-ltr.offset-xl-0, .v-locale--is-ltr .offset-xl-0 {
1140
- margin-left: 0;
1141
- }
1142
- .v-locale--is-rtl.offset-xl-0, .v-locale--is-rtl .offset-xl-0 {
1143
- margin-right: 0;
1144
- }
1145
- .v-locale--is-ltr.offset-xl-1, .v-locale--is-ltr .offset-xl-1 {
1146
- margin-left: 8.3333333333%;
1147
- }
1148
- .v-locale--is-rtl.offset-xl-1, .v-locale--is-rtl .offset-xl-1 {
1149
- margin-right: 8.3333333333%;
1150
- }
1151
- .v-locale--is-ltr.offset-xl-2, .v-locale--is-ltr .offset-xl-2 {
1152
- margin-left: 16.6666666667%;
1153
- }
1154
- .v-locale--is-rtl.offset-xl-2, .v-locale--is-rtl .offset-xl-2 {
1155
- margin-right: 16.6666666667%;
1156
- }
1157
- .v-locale--is-ltr.offset-xl-3, .v-locale--is-ltr .offset-xl-3 {
1158
- margin-left: 25%;
1159
- }
1160
- .v-locale--is-rtl.offset-xl-3, .v-locale--is-rtl .offset-xl-3 {
1161
- margin-right: 25%;
1162
- }
1163
- .v-locale--is-ltr.offset-xl-4, .v-locale--is-ltr .offset-xl-4 {
1164
- margin-left: 33.3333333333%;
1165
- }
1166
- .v-locale--is-rtl.offset-xl-4, .v-locale--is-rtl .offset-xl-4 {
1167
- margin-right: 33.3333333333%;
1168
- }
1169
- .v-locale--is-ltr.offset-xl-5, .v-locale--is-ltr .offset-xl-5 {
1170
- margin-left: 41.6666666667%;
1171
- }
1172
- .v-locale--is-rtl.offset-xl-5, .v-locale--is-rtl .offset-xl-5 {
1173
- margin-right: 41.6666666667%;
1174
- }
1175
- .v-locale--is-ltr.offset-xl-6, .v-locale--is-ltr .offset-xl-6 {
1176
- margin-left: 50%;
1177
- }
1178
- .v-locale--is-rtl.offset-xl-6, .v-locale--is-rtl .offset-xl-6 {
1179
- margin-right: 50%;
1180
- }
1181
- .v-locale--is-ltr.offset-xl-7, .v-locale--is-ltr .offset-xl-7 {
1182
- margin-left: 58.3333333333%;
1183
- }
1184
- .v-locale--is-rtl.offset-xl-7, .v-locale--is-rtl .offset-xl-7 {
1185
- margin-right: 58.3333333333%;
1186
- }
1187
- .v-locale--is-ltr.offset-xl-8, .v-locale--is-ltr .offset-xl-8 {
1188
- margin-left: 66.6666666667%;
1189
- }
1190
- .v-locale--is-rtl.offset-xl-8, .v-locale--is-rtl .offset-xl-8 {
1191
- margin-right: 66.6666666667%;
1192
- }
1193
- .v-locale--is-ltr.offset-xl-9, .v-locale--is-ltr .offset-xl-9 {
1194
- margin-left: 75%;
1195
- }
1196
- .v-locale--is-rtl.offset-xl-9, .v-locale--is-rtl .offset-xl-9 {
1197
- margin-right: 75%;
1198
- }
1199
- .v-locale--is-ltr.offset-xl-10, .v-locale--is-ltr .offset-xl-10 {
1200
- margin-left: 83.3333333333%;
1201
- }
1202
- .v-locale--is-rtl.offset-xl-10, .v-locale--is-rtl .offset-xl-10 {
1203
- margin-right: 83.3333333333%;
1204
- }
1205
- .v-locale--is-ltr.offset-xl-11, .v-locale--is-ltr .offset-xl-11 {
1206
- margin-left: 91.6666666667%;
1207
- }
1208
- .v-locale--is-rtl.offset-xl-11, .v-locale--is-rtl .offset-xl-11 {
1209
- margin-right: 91.6666666667%;
948
+ }
949
+ @keyframes progress-linear-stripes {
950
+ 0% {
951
+ background-position-x: var(--v-progress-linear-height);
1210
952
  }
1211
953
  }
1212
- @media (min-width: 2560px) {
1213
- .v-col-xxl {
1214
- flex-basis: 0;
1215
- flex-grow: 1;
1216
- max-width: 100%;
1217
- }
1218
- .v-col-xxl-auto {
1219
- flex: 0 0 auto;
1220
- width: auto;
1221
- max-width: 100%;
1222
- }
1223
- .v-col-xxl-1 {
1224
- flex: 0 0 8.3333333333%;
1225
- max-width: 8.3333333333%;
1226
- }
1227
- .v-col-xxl-2 {
1228
- flex: 0 0 16.6666666667%;
1229
- max-width: 16.6666666667%;
1230
- }
1231
- .v-col-xxl-3 {
1232
- flex: 0 0 25%;
1233
- max-width: 25%;
1234
- }
1235
- .v-col-xxl-4 {
1236
- flex: 0 0 33.3333333333%;
1237
- max-width: 33.3333333333%;
1238
- }
1239
- .v-col-xxl-5 {
1240
- flex: 0 0 41.6666666667%;
1241
- max-width: 41.6666666667%;
1242
- }
1243
- .v-col-xxl-6 {
1244
- flex: 0 0 50%;
1245
- max-width: 50%;
1246
- }
1247
- .v-col-xxl-7 {
1248
- flex: 0 0 58.3333333333%;
1249
- max-width: 58.3333333333%;
1250
- }
1251
- .v-col-xxl-8 {
1252
- flex: 0 0 66.6666666667%;
1253
- max-width: 66.6666666667%;
1254
- }
1255
- .v-col-xxl-9 {
1256
- flex: 0 0 75%;
1257
- max-width: 75%;
1258
- }
1259
- .v-col-xxl-10 {
1260
- flex: 0 0 83.3333333333%;
1261
- max-width: 83.3333333333%;
1262
- }
1263
- .v-col-xxl-11 {
1264
- flex: 0 0 91.6666666667%;
1265
- max-width: 91.6666666667%;
1266
- }
1267
- .v-col-xxl-12 {
1268
- flex: 0 0 100%;
1269
- max-width: 100%;
1270
- }
1271
- .v-locale--is-ltr.offset-xxl-0, .v-locale--is-ltr .offset-xxl-0 {
1272
- margin-left: 0;
1273
- }
1274
- .v-locale--is-rtl.offset-xxl-0, .v-locale--is-rtl .offset-xxl-0 {
1275
- margin-right: 0;
1276
- }
1277
- .v-locale--is-ltr.offset-xxl-1, .v-locale--is-ltr .offset-xxl-1 {
1278
- margin-left: 8.3333333333%;
1279
- }
1280
- .v-locale--is-rtl.offset-xxl-1, .v-locale--is-rtl .offset-xxl-1 {
1281
- margin-right: 8.3333333333%;
1282
- }
1283
- .v-locale--is-ltr.offset-xxl-2, .v-locale--is-ltr .offset-xxl-2 {
1284
- margin-left: 16.6666666667%;
1285
- }
1286
- .v-locale--is-rtl.offset-xxl-2, .v-locale--is-rtl .offset-xxl-2 {
1287
- margin-right: 16.6666666667%;
1288
- }
1289
- .v-locale--is-ltr.offset-xxl-3, .v-locale--is-ltr .offset-xxl-3 {
1290
- margin-left: 25%;
1291
- }
1292
- .v-locale--is-rtl.offset-xxl-3, .v-locale--is-rtl .offset-xxl-3 {
1293
- margin-right: 25%;
1294
- }
1295
- .v-locale--is-ltr.offset-xxl-4, .v-locale--is-ltr .offset-xxl-4 {
1296
- margin-left: 33.3333333333%;
1297
- }
1298
- .v-locale--is-rtl.offset-xxl-4, .v-locale--is-rtl .offset-xxl-4 {
1299
- margin-right: 33.3333333333%;
1300
- }
1301
- .v-locale--is-ltr.offset-xxl-5, .v-locale--is-ltr .offset-xxl-5 {
1302
- margin-left: 41.6666666667%;
1303
- }
1304
- .v-locale--is-rtl.offset-xxl-5, .v-locale--is-rtl .offset-xxl-5 {
1305
- margin-right: 41.6666666667%;
1306
- }
1307
- .v-locale--is-ltr.offset-xxl-6, .v-locale--is-ltr .offset-xxl-6 {
1308
- margin-left: 50%;
1309
- }
1310
- .v-locale--is-rtl.offset-xxl-6, .v-locale--is-rtl .offset-xxl-6 {
1311
- margin-right: 50%;
1312
- }
1313
- .v-locale--is-ltr.offset-xxl-7, .v-locale--is-ltr .offset-xxl-7 {
1314
- margin-left: 58.3333333333%;
1315
- }
1316
- .v-locale--is-rtl.offset-xxl-7, .v-locale--is-rtl .offset-xxl-7 {
1317
- margin-right: 58.3333333333%;
1318
- }
1319
- .v-locale--is-ltr.offset-xxl-8, .v-locale--is-ltr .offset-xxl-8 {
1320
- margin-left: 66.6666666667%;
1321
- }
1322
- .v-locale--is-rtl.offset-xxl-8, .v-locale--is-rtl .offset-xxl-8 {
1323
- margin-right: 66.6666666667%;
1324
- }
1325
- .v-locale--is-ltr.offset-xxl-9, .v-locale--is-ltr .offset-xxl-9 {
1326
- margin-left: 75%;
1327
- }
1328
- .v-locale--is-rtl.offset-xxl-9, .v-locale--is-rtl .offset-xxl-9 {
1329
- margin-right: 75%;
1330
- }
1331
- .v-locale--is-ltr.offset-xxl-10, .v-locale--is-ltr .offset-xxl-10 {
1332
- margin-left: 83.3333333333%;
1333
- }
1334
- .v-locale--is-rtl.offset-xxl-10, .v-locale--is-rtl .offset-xxl-10 {
1335
- margin-right: 83.3333333333%;
1336
- }
1337
- .v-locale--is-ltr.offset-xxl-11, .v-locale--is-ltr .offset-xxl-11 {
1338
- margin-left: 91.6666666667%;
1339
- }
1340
- .v-locale--is-rtl.offset-xxl-11, .v-locale--is-rtl .offset-xxl-11 {
1341
- margin-right: 91.6666666667%;
1342
- }
954
+ .v-ripple__container {
955
+ color: inherit;
956
+ border-radius: inherit;
957
+ position: absolute;
958
+ width: 100%;
959
+ height: 100%;
960
+ left: 0;
961
+ top: 0;
962
+ overflow: hidden;
963
+ z-index: 0;
964
+ pointer-events: none;
965
+ contain: strict;
966
+ }
967
+ .v-ripple__animation {
968
+ color: inherit;
969
+ position: absolute;
970
+ top: 0;
971
+ left: 0;
972
+ border-radius: 50%;
973
+ background: currentColor;
974
+ opacity: 0;
975
+ pointer-events: none;
976
+ overflow: hidden;
977
+ will-change: transform, opacity;
978
+ }
979
+ .v-ripple__animation--enter {
980
+ transition: none;
981
+ opacity: 0;
982
+ }
983
+ .v-ripple__animation--in {
984
+ transition: transform 0.25s cubic-bezier(0, 0, 0.2, 1), opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
985
+ opacity: calc(0.25 * var(--v-theme-overlay-multiplier));
986
+ }
987
+ .v-ripple__animation--out {
988
+ transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
989
+ opacity: 0;
1343
990
  }
1344
991
  .v-icon {
1345
992
  --v-icon-size-multiplier: 1;
@@ -1377,930 +1024,1309 @@
1377
1024
  font-size: calc(var(--v-icon-size-multiplier) * 2em);
1378
1025
  }
1379
1026
 
1380
- .v-icon__svg {
1381
- fill: currentColor;
1382
- width: 100%;
1383
- height: 100%;
1384
- }
1385
-
1386
- .v-icon--start {
1387
- margin-inline-end: 8px;
1388
- }
1389
-
1390
- .v-icon--end {
1391
- margin-inline-start: 8px;
1392
- }
1393
- .v-window {
1394
- overflow: hidden;
1395
- }
1396
- .v-window__container {
1397
- display: flex;
1398
- flex-direction: column;
1399
- height: inherit;
1400
- position: relative;
1401
- transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
1402
- }
1403
- .v-window__controls {
1404
- position: absolute;
1405
- left: 0;
1406
- top: 0;
1407
- width: 100%;
1408
- height: 100%;
1409
- display: flex;
1410
- align-items: center;
1411
- justify-content: space-between;
1412
- padding: 0 16px;
1413
- pointer-events: none;
1414
- }
1415
- .v-window__controls * {
1416
- pointer-events: auto;
1417
- }
1418
- .v-window--show-arrows-on-hover {
1419
- overflow: hidden;
1420
- }
1421
- .v-window--show-arrows-on-hover .v-window__left {
1422
- transform: translateX(-200%);
1423
- }
1424
- .v-window--show-arrows-on-hover .v-window__right {
1425
- transform: translateX(200%);
1426
- }
1427
- .v-window--show-arrows-on-hover:hover .v-window__left,
1428
- .v-window--show-arrows-on-hover:hover .v-window__right {
1429
- transform: translateX(0);
1430
- }
1431
- .v-window-x-transition-enter-active, .v-window-x-transition-leave-active, .v-window-x-reverse-transition-enter-active, .v-window-x-reverse-transition-leave-active, .v-window-y-transition-enter-active, .v-window-y-transition-leave-active, .v-window-y-reverse-transition-enter-active, .v-window-y-reverse-transition-leave-active {
1432
- transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
1433
- }
1434
- .v-window-x-transition-leave-from, .v-window-x-transition-leave-to, .v-window-x-reverse-transition-leave-from, .v-window-x-reverse-transition-leave-to, .v-window-y-transition-leave-from, .v-window-y-transition-leave-to, .v-window-y-reverse-transition-leave-from, .v-window-y-reverse-transition-leave-to {
1435
- position: absolute !important;
1436
- top: 0;
1027
+ .v-icon__svg {
1028
+ fill: currentColor;
1437
1029
  width: 100%;
1030
+ height: 100%;
1438
1031
  }
1439
- .v-window-x-transition-enter-from {
1440
- transform: translateX(100%);
1441
- }
1442
- .v-window-x-transition-leave-to {
1443
- transform: translateX(-100%);
1032
+
1033
+ .v-icon--start {
1034
+ margin-inline-end: 8px;
1444
1035
  }
1445
- .v-window-x-reverse-transition-enter-from {
1446
- transform: translateX(-100%);
1036
+
1037
+ .v-icon--end {
1038
+ margin-inline-start: 8px;
1447
1039
  }
1448
- .v-window-x-reverse-transition-leave-to {
1449
- transform: translateX(100%);
1040
+ .v-skeleton-loader {
1041
+ align-items: center;
1042
+ background: rgb(var(--v-theme-surface));
1043
+ border-radius: 4px;
1044
+ display: flex;
1045
+ flex-wrap: wrap;
1046
+ position: relative;
1047
+ vertical-align: top;
1450
1048
  }
1451
- .v-window-y-transition-enter-from {
1452
- transform: translateY(100%);
1049
+ .v-skeleton-loader__actions {
1050
+ justify-content: end;
1453
1051
  }
1454
- .v-window-y-transition-leave-to {
1455
- transform: translateY(-100%);
1052
+ .v-skeleton-loader .v-skeleton-loader__ossein {
1053
+ height: 100%;
1456
1054
  }
1457
- .v-window-y-reverse-transition-enter-from {
1458
- transform: translateY(-100%);
1055
+ .v-skeleton-loader .v-skeleton-loader__avatar,
1056
+ .v-skeleton-loader .v-skeleton-loader__button,
1057
+ .v-skeleton-loader .v-skeleton-loader__chip,
1058
+ .v-skeleton-loader .v-skeleton-loader__divider,
1059
+ .v-skeleton-loader .v-skeleton-loader__heading,
1060
+ .v-skeleton-loader .v-skeleton-loader__image,
1061
+ .v-skeleton-loader .v-skeleton-loader__ossein,
1062
+ .v-skeleton-loader .v-skeleton-loader__text {
1063
+ background: rgba(var(--v-theme-on-surface), var(--v-border-opacity));
1459
1064
  }
1460
- .v-window-y-reverse-transition-leave-to {
1461
- transform: translateY(100%);
1065
+ .v-skeleton-loader .v-skeleton-loader__list-item,
1066
+ .v-skeleton-loader .v-skeleton-loader__list-item-avatar,
1067
+ .v-skeleton-loader .v-skeleton-loader__list-item-text,
1068
+ .v-skeleton-loader .v-skeleton-loader__list-item-two-line,
1069
+ .v-skeleton-loader .v-skeleton-loader__list-item-avatar-two-line,
1070
+ .v-skeleton-loader .v-skeleton-loader__list-item-three-line,
1071
+ .v-skeleton-loader .v-skeleton-loader__list-item-avatar-three-line {
1072
+ border-radius: 4px;
1462
1073
  }
1463
- /** if false, disabled buttons will be greyed out */
1464
- .v-btn {
1074
+ .v-skeleton-loader__bone {
1465
1075
  align-items: center;
1466
- border-radius: 4px;
1467
- display: inline-grid;
1468
- grid-template-areas: "prepend content append";
1469
- grid-template-columns: max-content auto max-content;
1470
- font-weight: 500;
1471
- justify-content: center;
1472
- letter-spacing: 0.0892857143em;
1473
- line-height: normal;
1474
- max-width: 100%;
1475
- outline: none;
1076
+ border-radius: inherit;
1077
+ display: flex;
1078
+ flex: 1 1 100%;
1079
+ flex-wrap: wrap;
1080
+ overflow: hidden;
1476
1081
  position: relative;
1477
- text-decoration: none;
1478
- text-indent: 0.0892857143em;
1479
- text-transform: uppercase;
1480
- transition-property: box-shadow, transform, opacity, background;
1481
- transition-duration: 0.28s;
1482
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1483
- user-select: none;
1484
- vertical-align: middle;
1485
- flex-shrink: 0;
1486
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
1487
- border-style: solid;
1488
- border-width: 0;
1489
1082
  }
1490
- .v-btn--size-x-small {
1491
- --v-btn-size: 0.625rem;
1492
- --v-btn-height: 20px;
1493
- font-size: var(--v-btn-size);
1494
- min-width: 36px;
1495
- padding: 0 8px;
1083
+ .v-skeleton-loader__bone::after {
1084
+ content: "";
1085
+ position: absolute;
1086
+ top: 0;
1087
+ left: 0;
1088
+ width: 100%;
1089
+ height: 100%;
1090
+ animation: loading 1.5s infinite;
1091
+ background: linear-gradient(90deg, rgba(var(--v-theme-surface), 0), rgba(var(--v-theme-surface), 0.3), rgba(var(--v-theme-surface), 0));
1092
+ transform: translateX(-100%);
1093
+ z-index: 1;
1496
1094
  }
1497
-
1498
- .v-btn--size-small {
1499
- --v-btn-size: 0.75rem;
1500
- --v-btn-height: 28px;
1501
- font-size: var(--v-btn-size);
1502
- min-width: 50px;
1503
- padding: 0 12px;
1095
+ .v-skeleton-loader__avatar {
1096
+ border-radius: 50%;
1097
+ flex: 0 1 auto;
1098
+ margin: 8px 16px;
1099
+ max-height: 48px;
1100
+ min-height: 48px;
1101
+ height: 48px;
1102
+ max-width: 48px;
1103
+ min-width: 48px;
1104
+ width: 48px;
1504
1105
  }
1505
-
1506
- .v-btn--size-default {
1507
- --v-btn-size: 0.875rem;
1508
- --v-btn-height: 36px;
1509
- font-size: var(--v-btn-size);
1510
- min-width: 64px;
1511
- padding: 0 16px;
1106
+ .v-skeleton-loader__avatar + .v-skeleton-loader__bone {
1107
+ flex: 1 1 auto;
1108
+ margin-inline-start: 0;
1512
1109
  }
1513
-
1514
- .v-btn--size-large {
1515
- --v-btn-size: 1rem;
1516
- --v-btn-height: 44px;
1517
- font-size: var(--v-btn-size);
1518
- min-width: 78px;
1519
- padding: 0 20px;
1110
+ .v-skeleton-loader__avatar + .v-skeleton-loader__sentences > .v-skeleton-loader__text,
1111
+ .v-skeleton-loader__avatar + .v-skeleton-loader__paragraph > .v-skeleton-loader__text {
1112
+ margin-inline-start: 0;
1520
1113
  }
1521
-
1522
- .v-btn--size-x-large {
1523
- --v-btn-size: 1.125rem;
1524
- --v-btn-height: 52px;
1525
- font-size: var(--v-btn-size);
1526
- min-width: 92px;
1527
- padding: 0 24px;
1114
+ .v-skeleton-loader__button {
1115
+ border-radius: 4px;
1116
+ height: 36px;
1117
+ margin: 16px;
1118
+ max-width: 64px;
1528
1119
  }
1529
-
1530
- .v-btn.v-btn--density-default {
1531
- height: calc(var(--v-btn-height) + 0px);
1120
+ .v-skeleton-loader__button + .v-skeleton-loader__bone {
1121
+ flex: 1 1 auto;
1122
+ margin-inline-start: 0;
1532
1123
  }
1533
-
1534
- .v-btn.v-btn--density-comfortable {
1535
- height: calc(var(--v-btn-height) + -8px);
1124
+ .v-skeleton-loader__button + .v-skeleton-loader__sentences > .v-skeleton-loader__text,
1125
+ .v-skeleton-loader__button + .v-skeleton-loader__paragraph > .v-skeleton-loader__text {
1126
+ margin-inline-start: 0;
1536
1127
  }
1537
-
1538
- .v-btn.v-btn--density-compact {
1539
- height: calc(var(--v-btn-height) + -12px);
1128
+ .v-skeleton-loader__chip {
1129
+ border-radius: 16px;
1130
+ margin: 16px;
1131
+ height: 32px;
1132
+ max-width: 96px;
1540
1133
  }
1541
-
1542
- .v-btn--border {
1543
- border-width: thin;
1544
- box-shadow: none;
1134
+ .v-skeleton-loader__chip + .v-skeleton-loader__bone {
1135
+ flex: 1 1 auto;
1136
+ margin-inline-start: 0;
1545
1137
  }
1546
- .v-btn--absolute {
1547
- position: absolute;
1138
+ .v-skeleton-loader__chip + .v-skeleton-loader__sentences > .v-skeleton-loader__text,
1139
+ .v-skeleton-loader__chip + .v-skeleton-loader__paragraph > .v-skeleton-loader__text {
1140
+ margin-inline-start: 0;
1548
1141
  }
1549
- .v-btn--fixed {
1550
- position: fixed;
1142
+ .v-skeleton-loader__date-picker {
1143
+ border-radius: inherit;
1551
1144
  }
1552
- .v-btn:hover > .v-btn__overlay {
1553
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
1145
+ .v-skeleton-loader__date-picker .v-skeleton-loader__list-item:first-child .v-skeleton-loader__text {
1146
+ max-width: 88px;
1147
+ width: 20%;
1554
1148
  }
1555
- .v-btn:focus-visible > .v-btn__overlay {
1556
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
1149
+ .v-skeleton-loader__date-picker .v-skeleton-loader__heading {
1150
+ max-width: 256px;
1151
+ width: 40%;
1557
1152
  }
1558
- @supports not selector(:focus-visible) {
1559
- .v-btn:focus > .v-btn__overlay {
1560
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
1561
- }
1153
+ .v-skeleton-loader__date-picker-days {
1154
+ flex-wrap: wrap;
1155
+ margin: 16px;
1562
1156
  }
1563
- .v-btn--active > .v-btn__overlay, .v-btn[aria-haspopup=menu][aria-expanded=true] > .v-btn__overlay {
1564
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
1157
+ .v-skeleton-loader__date-picker-days .v-skeleton-loader__avatar {
1158
+ border-radius: 4px;
1159
+ margin: 4px;
1160
+ max-width: 100%;
1565
1161
  }
1566
- .v-btn--active:hover > .v-btn__overlay, .v-btn[aria-haspopup=menu][aria-expanded=true]:hover > .v-btn__overlay {
1567
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
1162
+ .v-skeleton-loader__date-picker-options {
1163
+ flex-wrap: nowrap;
1568
1164
  }
1569
- .v-btn--active:focus-visible > .v-btn__overlay, .v-btn[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-btn__overlay {
1570
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
1165
+ .v-skeleton-loader__date-picker-options .v-skeleton-loader__text {
1166
+ flex: 1 1 auto;
1571
1167
  }
1572
- @supports not selector(:focus-visible) {
1573
- .v-btn--active:focus > .v-btn__overlay, .v-btn[aria-haspopup=menu][aria-expanded=true]:focus > .v-btn__overlay {
1574
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
1575
- }
1168
+ .v-skeleton-loader__divider {
1169
+ border-radius: 1px;
1170
+ height: 2px;
1576
1171
  }
1577
- .v-btn--variant-plain, .v-btn--variant-outlined, .v-btn--variant-text, .v-btn--variant-tonal {
1578
- background: transparent;
1579
- color: inherit;
1172
+ .v-skeleton-loader__heading {
1173
+ border-radius: 12px;
1174
+ margin: 16px;
1175
+ height: 24px;
1580
1176
  }
1581
- .v-btn--variant-plain {
1582
- opacity: 0.62;
1177
+ .v-skeleton-loader__heading + .v-skeleton-loader__subtitle {
1178
+ margin-top: -16px;
1583
1179
  }
1584
- .v-btn--variant-plain:focus, .v-btn--variant-plain:hover {
1585
- opacity: 1;
1180
+ .v-skeleton-loader__image {
1181
+ height: 150px;
1182
+ border-radius: 0;
1586
1183
  }
1587
- .v-btn--variant-plain .v-btn__overlay {
1588
- display: none;
1184
+ .v-skeleton-loader__card .v-skeleton-loader__image {
1185
+ border-radius: 0;
1589
1186
  }
1590
- .v-btn--variant-elevated, .v-btn--variant-flat {
1591
- background: rgb(var(--v-theme-surface));
1592
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
1187
+ .v-skeleton-loader__list-item {
1188
+ margin: 16px;
1593
1189
  }
1594
- .v-btn--variant-elevated {
1595
- box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
1190
+ .v-skeleton-loader__list-item .v-skeleton-loader__text {
1191
+ margin: 0;
1596
1192
  }
1597
- .v-btn--variant-flat {
1598
- box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
1193
+ .v-skeleton-loader__table-thead {
1194
+ justify-content: space-between;
1599
1195
  }
1600
- .v-btn--variant-outlined {
1601
- border: thin solid currentColor;
1196
+ .v-skeleton-loader__table-thead .v-skeleton-loader__heading {
1197
+ margin-top: 16px;
1198
+ max-width: 16px;
1602
1199
  }
1603
- .v-btn--variant-text .v-btn__overlay {
1604
- background: currentColor;
1200
+ .v-skeleton-loader__table-tfoot {
1201
+ flex-wrap: nowrap;
1605
1202
  }
1606
- .v-btn--variant-tonal .v-btn__underlay {
1607
- background: currentColor;
1608
- opacity: var(--v-activated-opacity);
1609
- border-radius: inherit;
1610
- position: absolute;
1611
- top: 0;
1612
- right: 0;
1613
- bottom: 0;
1614
- left: 0;
1615
- pointer-events: none;
1203
+ .v-skeleton-loader__table-tfoot > .v-skeleton-loader__text.v-skeleton-loader__bone {
1204
+ margin-top: 16px;
1616
1205
  }
1617
- @supports selector(:focus-visible) {
1618
- .v-btn::after {
1619
- content: "";
1620
- position: absolute;
1621
- top: 0;
1622
- left: 0;
1623
- width: 100%;
1624
- height: 100%;
1625
- pointer-events: none;
1626
- border: 2px solid currentColor;
1627
- border-radius: inherit;
1628
- opacity: 0;
1629
- transition: opacity 0.2s ease-in-out;
1630
- }
1631
- .v-btn:focus-visible::after {
1632
- opacity: calc(0.25 * var(--v-theme-overlay-multiplier));
1633
- }
1206
+ .v-skeleton-loader__table-row {
1207
+ align-items: baseline;
1208
+ margin: 0 8px;
1209
+ justify-content: space-evenly;
1210
+ flex-wrap: nowrap;
1634
1211
  }
1635
- .v-btn--icon {
1636
- border-radius: 50%;
1637
- min-width: 0;
1638
- padding: 0;
1212
+ .v-skeleton-loader__table-row > .v-skeleton-loader__text.v-skeleton-loader__bone {
1213
+ margin-inline-start: 8px;
1214
+ margin-inline-end: 8px;
1639
1215
  }
1640
- .v-btn--icon.v-btn--size-default {
1641
- --v-btn-size: 1rem;
1216
+ .v-skeleton-loader__table-row + .v-skeleton-loader__divider {
1217
+ margin: 0 16px;
1642
1218
  }
1643
- .v-btn--icon.v-btn--density-default {
1644
- width: calc(var(--v-btn-height) + 12px);
1645
- height: calc(var(--v-btn-height) + 12px);
1219
+ .v-skeleton-loader__table-cell {
1220
+ align-items: center;
1221
+ display: flex;
1222
+ height: 48px;
1223
+ width: 88px;
1646
1224
  }
1647
- .v-btn--icon.v-btn--density-comfortable {
1648
- width: calc(var(--v-btn-height) + 0px);
1649
- height: calc(var(--v-btn-height) + 0px);
1225
+ .v-skeleton-loader__table-cell .v-skeleton-loader__text {
1226
+ margin-bottom: 0;
1650
1227
  }
1651
- .v-btn--icon.v-btn--density-compact {
1652
- width: calc(var(--v-btn-height) + -8px);
1653
- height: calc(var(--v-btn-height) + -8px);
1228
+ .v-skeleton-loader__subtitle {
1229
+ max-width: 70%;
1654
1230
  }
1655
-
1656
- .v-btn--elevated:hover, .v-btn--elevated:focus {
1657
- box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
1231
+ .v-skeleton-loader__subtitle > .v-skeleton-loader__text {
1232
+ height: 16px;
1233
+ border-radius: 8px;
1658
1234
  }
1659
- .v-btn--elevated:active {
1660
- box-shadow: 0px 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 3px 14px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
1235
+ .v-skeleton-loader__text {
1236
+ border-radius: 6px;
1237
+ margin: 16px;
1238
+ height: 12px;
1661
1239
  }
1662
- .v-btn--flat {
1663
- box-shadow: none;
1240
+ .v-skeleton-loader__text + .v-skeleton-loader__text {
1241
+ margin-top: -8px;
1242
+ max-width: 50%;
1664
1243
  }
1665
- .v-btn--block {
1666
- display: flex;
1667
- flex: 1 0 auto;
1668
- min-width: 100%;
1244
+ .v-skeleton-loader__text + .v-skeleton-loader__text + .v-skeleton-loader__text {
1245
+ max-width: 70%;
1669
1246
  }
1670
- .v-btn--disabled {
1671
- pointer-events: none;
1672
- opacity: 0.26;
1247
+ .v-skeleton-loader--boilerplate .v-skeleton-loader__bone:after {
1248
+ display: none;
1673
1249
  }
1674
- .v-btn--disabled:hover {
1675
- opacity: 0.26;
1250
+ .v-skeleton-loader--is-loading {
1251
+ overflow: hidden;
1676
1252
  }
1677
- .v-btn--disabled.v-btn--variant-elevated, .v-btn--disabled.v-btn--variant-flat {
1678
- box-shadow: none;
1679
- opacity: 1;
1680
- color: rgba(var(--v-theme-on-surface), 0.26);
1681
- background: rgb(var(--v-theme-surface));
1253
+ .v-skeleton-loader--tile {
1254
+ border-radius: 0;
1682
1255
  }
1683
- .v-btn--disabled.v-btn--variant-elevated .v-btn__overlay, .v-btn--disabled.v-btn--variant-flat .v-btn__overlay {
1684
- opacity: 0.4615384615;
1256
+ .v-skeleton-loader--tile .v-skeleton-loader__bone {
1257
+ border-radius: 0;
1685
1258
  }
1686
- .v-btn--loading {
1687
- pointer-events: none;
1259
+
1260
+ @keyframes loading {
1261
+ 100% {
1262
+ transform: translateX(100%);
1263
+ }
1688
1264
  }
1689
- .v-btn--loading .v-btn__content,
1690
- .v-btn--loading .v-btn__prepend,
1691
- .v-btn--loading .v-btn__append {
1692
- opacity: 0;
1265
+ .v-locale-provider {
1266
+ display: contents;
1693
1267
  }
1694
- .v-btn--stacked {
1695
- grid-template-areas: "prepend" "content" "append";
1696
- grid-template-columns: auto;
1697
- grid-template-rows: max-content max-content max-content;
1698
- justify-items: center;
1699
- align-content: center;
1268
+ .v-application {
1269
+ display: flex;
1270
+ background: rgb(var(--v-theme-background));
1271
+ color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
1700
1272
  }
1701
- .v-btn--stacked .v-btn__content {
1273
+
1274
+ .v-application__wrap {
1275
+ backface-visibility: hidden;
1276
+ display: flex;
1702
1277
  flex-direction: column;
1703
- line-height: 1.25;
1278
+ flex: 1 1 auto;
1279
+ max-width: 100%;
1280
+ min-height: 100vh;
1281
+ min-height: 100dvh;
1282
+ position: relative;
1704
1283
  }
1705
- .v-btn--stacked .v-btn__prepend,
1706
- .v-btn--stacked .v-btn__append,
1707
- .v-btn--stacked .v-btn__content > .v-icon--start,
1708
- .v-btn--stacked .v-btn__content > .v-icon--end {
1709
- margin-inline-start: 0;
1710
- margin-inline-end: 0;
1284
+ .v-main {
1285
+ flex: 1 0 auto;
1286
+ max-width: 100%;
1287
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
1288
+ padding-left: var(--v-layout-left);
1289
+ padding-right: var(--v-layout-right);
1290
+ padding-top: var(--v-layout-top);
1291
+ padding-bottom: var(--v-layout-bottom);
1711
1292
  }
1712
- .v-btn--stacked .v-btn__prepend,
1713
- .v-btn--stacked .v-btn__content > .v-icon--start {
1714
- margin-bottom: 4px;
1293
+ .v-main__scroller {
1294
+ max-width: 100%;
1295
+ position: relative;
1715
1296
  }
1716
- .v-btn--stacked .v-btn__append,
1717
- .v-btn--stacked .v-btn__content > .v-icon--end {
1718
- margin-top: 4px;
1297
+ .v-main--scrollable {
1298
+ display: flex;
1299
+ position: absolute;
1300
+ top: 0;
1301
+ left: 0;
1302
+ width: 100%;
1303
+ height: 100%;
1719
1304
  }
1720
- .v-btn--stacked.v-btn--size-x-small {
1721
- --v-btn-size: 0.625rem;
1722
- --v-btn-height: 56px;
1723
- font-size: var(--v-btn-size);
1724
- min-width: 56px;
1725
- padding: 0 12px;
1305
+ .v-main--scrollable > .v-main__scroller {
1306
+ flex: 1 1 auto;
1307
+ overflow-y: auto;
1308
+ --v-layout-left: 0px;
1309
+ --v-layout-right: 0px;
1310
+ --v-layout-top: 0px;
1311
+ --v-layout-bottom: 0px;
1726
1312
  }
1727
-
1728
- .v-btn--stacked.v-btn--size-small {
1729
- --v-btn-size: 0.75rem;
1730
- --v-btn-height: 64px;
1731
- font-size: var(--v-btn-size);
1732
- min-width: 64px;
1733
- padding: 0 14px;
1313
+ .v-divider {
1314
+ display: block;
1315
+ flex: 1 1 100%;
1316
+ height: 0px;
1317
+ max-height: 0px;
1318
+ opacity: var(--v-border-opacity);
1319
+ transition: inherit;
1320
+ border-style: solid;
1321
+ border-width: thin 0 0 0;
1734
1322
  }
1735
-
1736
- .v-btn--stacked.v-btn--size-default {
1737
- --v-btn-size: 0.875rem;
1738
- --v-btn-height: 72px;
1739
- font-size: var(--v-btn-size);
1740
- min-width: 72px;
1741
- padding: 0 16px;
1323
+ .v-divider--vertical {
1324
+ align-self: stretch;
1325
+ border-width: 0 thin 0 0;
1326
+ display: inline-flex;
1327
+ height: inherit;
1328
+ margin-left: -1px;
1329
+ max-height: 100%;
1330
+ max-width: 0px;
1331
+ vertical-align: text-bottom;
1332
+ width: 0px;
1742
1333
  }
1743
-
1744
- .v-btn--stacked.v-btn--size-large {
1745
- --v-btn-size: 1rem;
1746
- --v-btn-height: 80px;
1747
- font-size: var(--v-btn-size);
1748
- min-width: 80px;
1749
- padding: 0 18px;
1334
+ .v-divider--inset:not(.v-divider--vertical) {
1335
+ max-width: calc(100% - 72px);
1336
+ margin-inline-start: 72px;
1750
1337
  }
1751
-
1752
- .v-btn--stacked.v-btn--size-x-large {
1753
- --v-btn-size: 1.125rem;
1754
- --v-btn-height: 88px;
1755
- font-size: var(--v-btn-size);
1756
- min-width: 88px;
1757
- padding: 0 20px;
1338
+ .v-divider--inset.v-divider--vertical {
1339
+ margin-bottom: 8px;
1340
+ margin-top: 8px;
1341
+ max-height: calc(100% - 16px);
1342
+ }
1343
+ .v-layout {
1344
+ --v-scrollbar-offset: 0px;
1345
+ display: flex;
1346
+ flex: 1 1 auto;
1347
+ }
1348
+ .v-layout--full-height {
1349
+ --v-scrollbar-offset: inherit;
1350
+ height: 100%;
1758
1351
  }
1759
-
1760
- .v-btn--stacked.v-btn--density-default {
1761
- height: calc(var(--v-btn-height) + 0px);
1352
+ .v-layout-item {
1353
+ position: absolute;
1354
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
1762
1355
  }
1763
1356
 
1764
- .v-btn--stacked.v-btn--density-comfortable {
1765
- height: calc(var(--v-btn-height) + -16px);
1357
+ .v-layout-item--absolute {
1358
+ position: absolute;
1766
1359
  }
1767
-
1768
- .v-btn--stacked.v-btn--density-compact {
1769
- height: calc(var(--v-btn-height) + -24px);
1360
+ .v-theme-provider {
1361
+ background: rgb(var(--v-theme-background));
1362
+ color: rgb(var(--v-theme-on-background));
1770
1363
  }
1771
-
1772
- .v-btn--rounded {
1773
- border-radius: 24px;
1364
+ .v-container {
1365
+ width: 100%;
1366
+ padding: 16px;
1367
+ margin-right: auto;
1368
+ margin-left: auto;
1774
1369
  }
1775
- .v-btn--rounded.v-btn--icon {
1776
- border-radius: 4px;
1370
+ @media (min-width: 960px) {
1371
+ .v-container {
1372
+ max-width: 900px;
1373
+ }
1777
1374
  }
1778
- .v-btn .v-icon {
1779
- --v-icon-size-multiplier: 0.8571428571;
1375
+ @media (min-width: 1280px) {
1376
+ .v-container {
1377
+ max-width: 1200px;
1378
+ }
1780
1379
  }
1781
- .v-btn--icon .v-icon {
1782
- --v-icon-size-multiplier: 1;
1380
+ @media (min-width: 1920px) {
1381
+ .v-container {
1382
+ max-width: 1800px;
1383
+ }
1783
1384
  }
1784
- .v-btn--stacked .v-icon {
1785
- --v-icon-size-multiplier: 1.1428571429;
1385
+ @media (min-width: 2560px) {
1386
+ .v-container {
1387
+ max-width: 2400px;
1388
+ }
1786
1389
  }
1787
-
1788
- .v-btn__loader {
1390
+ .v-container--fluid {
1391
+ max-width: 100%;
1392
+ }
1393
+ .v-container.fill-height {
1789
1394
  align-items: center;
1790
1395
  display: flex;
1791
- height: 100%;
1792
- justify-content: center;
1793
- left: 0;
1794
- position: absolute;
1795
- top: 0;
1796
- width: 100%;
1396
+ flex-wrap: wrap;
1797
1397
  }
1798
1398
 
1799
- .v-btn__content,
1800
- .v-btn__prepend,
1801
- .v-btn__append {
1802
- align-items: center;
1399
+ .v-row {
1803
1400
  display: flex;
1804
- transition: transform, opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
1401
+ flex-wrap: wrap;
1402
+ flex: 1 1 auto;
1403
+ margin: -12px;
1805
1404
  }
1806
-
1807
- .v-btn__prepend {
1808
- grid-area: prepend;
1809
- margin-inline-start: calc(var(--v-btn-height) / -9);
1810
- margin-inline-end: calc(var(--v-btn-height) / 4.5);
1405
+ .v-row + .v-row {
1406
+ margin-top: 12px;
1811
1407
  }
1812
-
1813
- .v-btn__append {
1814
- grid-area: append;
1815
- margin-inline-start: calc(var(--v-btn-height) / 4.5);
1816
- margin-inline-end: calc(var(--v-btn-height) / -9);
1408
+ .v-row + .v-row--dense {
1409
+ margin-top: 4px;
1817
1410
  }
1818
-
1819
- .v-btn__content {
1820
- grid-area: content;
1821
- justify-content: center;
1822
- white-space: nowrap;
1411
+ .v-row--dense {
1412
+ margin: -4px;
1823
1413
  }
1824
- .v-btn__content > .v-icon--start {
1825
- margin-inline-start: calc(var(--v-btn-height) / -9);
1826
- margin-inline-end: calc(var(--v-btn-height) / 4.5);
1414
+ .v-row--dense > .v-col,
1415
+ .v-row--dense > [class*=v-col-] {
1416
+ padding: 4px;
1827
1417
  }
1828
- .v-btn__content > .v-icon--end {
1829
- margin-inline-start: calc(var(--v-btn-height) / 4.5);
1830
- margin-inline-end: calc(var(--v-btn-height) / -9);
1418
+ .v-row.v-row--no-gutters {
1419
+ margin: 0;
1831
1420
  }
1832
- .v-btn--stacked .v-btn__content {
1833
- white-space: normal;
1421
+ .v-row.v-row--no-gutters > .v-col,
1422
+ .v-row.v-row--no-gutters > [class*=v-col-] {
1423
+ padding: 0;
1834
1424
  }
1835
1425
 
1836
- .v-btn__overlay {
1837
- background-color: currentColor;
1838
- border-radius: inherit;
1839
- opacity: 0;
1840
- transition: opacity 0.2s ease-in-out;
1426
+ .v-spacer {
1427
+ flex-grow: 1;
1841
1428
  }
1842
1429
 
1843
- .v-btn__overlay,
1844
- .v-btn__underlay {
1845
- position: absolute;
1846
- top: 0;
1847
- left: 0;
1430
+ .v-col-xxl,
1431
+ .v-col-xxl-auto, .v-col-xxl-12, .v-col-xxl-11, .v-col-xxl-10, .v-col-xxl-9, .v-col-xxl-8, .v-col-xxl-7, .v-col-xxl-6, .v-col-xxl-5, .v-col-xxl-4, .v-col-xxl-3, .v-col-xxl-2, .v-col-xxl-1, .v-col-xl,
1432
+ .v-col-xl-auto, .v-col-xl-12, .v-col-xl-11, .v-col-xl-10, .v-col-xl-9, .v-col-xl-8, .v-col-xl-7, .v-col-xl-6, .v-col-xl-5, .v-col-xl-4, .v-col-xl-3, .v-col-xl-2, .v-col-xl-1, .v-col-lg,
1433
+ .v-col-lg-auto, .v-col-lg-12, .v-col-lg-11, .v-col-lg-10, .v-col-lg-9, .v-col-lg-8, .v-col-lg-7, .v-col-lg-6, .v-col-lg-5, .v-col-lg-4, .v-col-lg-3, .v-col-lg-2, .v-col-lg-1, .v-col-md,
1434
+ .v-col-md-auto, .v-col-md-12, .v-col-md-11, .v-col-md-10, .v-col-md-9, .v-col-md-8, .v-col-md-7, .v-col-md-6, .v-col-md-5, .v-col-md-4, .v-col-md-3, .v-col-md-2, .v-col-md-1, .v-col-sm,
1435
+ .v-col-sm-auto, .v-col-sm-12, .v-col-sm-11, .v-col-sm-10, .v-col-sm-9, .v-col-sm-8, .v-col-sm-7, .v-col-sm-6, .v-col-sm-5, .v-col-sm-4, .v-col-sm-3, .v-col-sm-2, .v-col-sm-1, .v-col,
1436
+ .v-col-auto, .v-col-12, .v-col-11, .v-col-10, .v-col-9, .v-col-8, .v-col-7, .v-col-6, .v-col-5, .v-col-4, .v-col-3, .v-col-2, .v-col-1 {
1848
1437
  width: 100%;
1849
- height: 100%;
1850
- pointer-events: none;
1438
+ padding: 12px;
1851
1439
  }
1852
1440
 
1853
- .v-card-actions .v-btn {
1854
- padding: 0 8px;
1855
- }
1856
- .v-card-actions .v-btn ~ .v-btn:not(.v-btn-toggle .v-btn) {
1857
- margin-inline-start: 0.5rem;
1441
+ .v-col {
1442
+ flex-basis: 0;
1443
+ flex-grow: 1;
1444
+ max-width: 100%;
1858
1445
  }
1859
1446
 
1860
- .v-banner-actions .v-btn {
1861
- padding: 0 8px;
1447
+ .v-col-auto {
1448
+ flex: 0 0 auto;
1449
+ width: auto;
1450
+ max-width: 100%;
1862
1451
  }
1863
1452
 
1864
- .v-pagination .v-btn {
1865
- border-radius: 4px;
1866
- }
1867
- .v-btn__overlay {
1868
- transition: none;
1869
- }
1870
- .v-pagination__item--is-active .v-btn__overlay {
1871
- opacity: var(--v-border-opacity);
1453
+ .v-col-1 {
1454
+ flex: 0 0 8.3333333333%;
1455
+ max-width: 8.3333333333%;
1872
1456
  }
1873
1457
 
1874
- .v-snackbar-actions .v-btn {
1875
- padding: 0 8px;
1876
- }
1877
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
1878
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
1879
- }
1880
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
1881
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
1882
- }
1883
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
1884
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
1885
- }
1886
- @supports not selector(:focus-visible) {
1887
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
1888
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
1889
- }
1890
- }
1891
- /** if false, disabled buttons will be greyed out */
1892
- .v-btn-group {
1893
- display: inline-flex;
1894
- flex-wrap: nowrap;
1895
- max-width: 100%;
1896
- min-width: 0;
1897
- overflow: hidden;
1898
- vertical-align: middle;
1899
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
1900
- border-style: solid;
1901
- border-width: 0;
1902
- box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
1903
- border-radius: 4px;
1904
- background: transparent;
1905
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
1906
- }
1907
- .v-btn-group--border {
1908
- border-width: thin;
1909
- box-shadow: none;
1458
+ .v-col-2 {
1459
+ flex: 0 0 16.6666666667%;
1460
+ max-width: 16.6666666667%;
1910
1461
  }
1911
- .v-btn-group--density-default.v-btn-group {
1912
- height: 48px;
1462
+
1463
+ .v-col-3 {
1464
+ flex: 0 0 25%;
1465
+ max-width: 25%;
1913
1466
  }
1914
1467
 
1915
- .v-btn-group--density-comfortable.v-btn-group {
1916
- height: 40px;
1468
+ .v-col-4 {
1469
+ flex: 0 0 33.3333333333%;
1470
+ max-width: 33.3333333333%;
1917
1471
  }
1918
1472
 
1919
- .v-btn-group--density-compact.v-btn-group {
1920
- height: 36px;
1473
+ .v-col-5 {
1474
+ flex: 0 0 41.6666666667%;
1475
+ max-width: 41.6666666667%;
1921
1476
  }
1922
1477
 
1923
- .v-btn-group .v-btn {
1924
- border-radius: 0;
1925
- border-color: inherit;
1478
+ .v-col-6 {
1479
+ flex: 0 0 50%;
1480
+ max-width: 50%;
1926
1481
  }
1927
- .v-btn-group .v-btn:not(:last-child) {
1928
- border-inline-end: none;
1482
+
1483
+ .v-col-7 {
1484
+ flex: 0 0 58.3333333333%;
1485
+ max-width: 58.3333333333%;
1929
1486
  }
1930
- .v-btn-group .v-btn:not(:first-child) {
1931
- border-inline-start: none;
1487
+
1488
+ .v-col-8 {
1489
+ flex: 0 0 66.6666666667%;
1490
+ max-width: 66.6666666667%;
1932
1491
  }
1933
- .v-btn-group .v-btn:first-child {
1934
- border-start-start-radius: inherit;
1935
- border-end-start-radius: inherit;
1492
+
1493
+ .v-col-9 {
1494
+ flex: 0 0 75%;
1495
+ max-width: 75%;
1936
1496
  }
1937
- .v-btn-group .v-btn:last-child {
1938
- border-start-end-radius: inherit;
1939
- border-end-end-radius: inherit;
1497
+
1498
+ .v-col-10 {
1499
+ flex: 0 0 83.3333333333%;
1500
+ max-width: 83.3333333333%;
1940
1501
  }
1941
- .v-btn-group--divided .v-btn:not(:last-child) {
1942
- border-inline-end-width: thin;
1943
- border-inline-end-style: solid;
1944
- border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
1502
+
1503
+ .v-col-11 {
1504
+ flex: 0 0 91.6666666667%;
1505
+ max-width: 91.6666666667%;
1945
1506
  }
1946
- .v-btn-group--tile {
1947
- border-radius: 0;
1507
+
1508
+ .v-col-12 {
1509
+ flex: 0 0 100%;
1510
+ max-width: 100%;
1948
1511
  }
1949
- .v-progress-linear {
1950
- background: transparent;
1951
- overflow: hidden;
1952
- position: relative;
1953
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
1954
- width: 100%;
1512
+
1513
+ .v-locale--is-ltr.offset-1, .v-locale--is-ltr .offset-1 {
1514
+ margin-left: 8.3333333333%;
1955
1515
  }
1956
- .v-progress-linear--rounded {
1957
- border-radius: 9999px;
1516
+
1517
+ .v-locale--is-rtl.offset-1, .v-locale--is-rtl .offset-1 {
1518
+ margin-right: 8.3333333333%;
1958
1519
  }
1959
1520
 
1960
- .v-progress-linear__background {
1961
- background: currentColor;
1962
- bottom: 0;
1963
- left: 0;
1964
- opacity: var(--v-border-opacity);
1965
- position: absolute;
1966
- top: 0;
1967
- transition-property: width, left, right;
1968
- transition: inherit;
1521
+ .v-locale--is-ltr.offset-2, .v-locale--is-ltr .offset-2 {
1522
+ margin-left: 16.6666666667%;
1969
1523
  }
1970
1524
 
1971
- .v-progress-linear__content {
1972
- align-items: center;
1973
- display: flex;
1974
- height: 100%;
1975
- justify-content: center;
1976
- left: 0;
1977
- pointer-events: none;
1978
- position: absolute;
1979
- top: 0;
1980
- width: 100%;
1525
+ .v-locale--is-rtl.offset-2, .v-locale--is-rtl .offset-2 {
1526
+ margin-right: 16.6666666667%;
1981
1527
  }
1982
1528
 
1983
- .v-progress-linear__determinate,
1984
- .v-progress-linear__indeterminate {
1985
- background: currentColor;
1529
+ .v-locale--is-ltr.offset-3, .v-locale--is-ltr .offset-3 {
1530
+ margin-left: 25%;
1986
1531
  }
1987
1532
 
1988
- .v-progress-linear__determinate {
1989
- height: inherit;
1990
- left: 0;
1991
- position: absolute;
1992
- transition: inherit;
1993
- transition-property: width, left, right;
1533
+ .v-locale--is-rtl.offset-3, .v-locale--is-rtl .offset-3 {
1534
+ margin-right: 25%;
1994
1535
  }
1995
1536
 
1996
- .v-progress-linear__indeterminate .long, .v-progress-linear__indeterminate .short {
1997
- animation-play-state: paused;
1998
- animation-duration: 2.2s;
1999
- animation-iteration-count: infinite;
2000
- bottom: 0;
2001
- height: inherit;
2002
- left: 0;
2003
- position: absolute;
2004
- right: auto;
2005
- top: 0;
2006
- width: auto;
2007
- will-change: left, right;
1537
+ .v-locale--is-ltr.offset-4, .v-locale--is-ltr .offset-4 {
1538
+ margin-left: 33.3333333333%;
2008
1539
  }
2009
- .v-progress-linear__indeterminate .long {
2010
- animation-name: indeterminate-ltr;
1540
+
1541
+ .v-locale--is-rtl.offset-4, .v-locale--is-rtl .offset-4 {
1542
+ margin-right: 33.3333333333%;
2011
1543
  }
2012
- .v-progress-linear__indeterminate .short {
2013
- animation-name: indeterminate-short-ltr;
1544
+
1545
+ .v-locale--is-ltr.offset-5, .v-locale--is-ltr .offset-5 {
1546
+ margin-left: 41.6666666667%;
2014
1547
  }
2015
1548
 
2016
- .v-progress-linear__stream {
2017
- animation: stream 0.25s infinite linear;
2018
- animation-play-state: paused;
2019
- bottom: 0;
2020
- left: auto;
2021
- opacity: 0.3;
2022
- pointer-events: none;
2023
- position: absolute;
2024
- transition: inherit;
2025
- transition-property: width, left, right;
1549
+ .v-locale--is-rtl.offset-5, .v-locale--is-rtl .offset-5 {
1550
+ margin-right: 41.6666666667%;
2026
1551
  }
2027
1552
 
2028
- .v-progress-linear--reverse .v-progress-linear__background,
2029
- .v-progress-linear--reverse .v-progress-linear__determinate,
2030
- .v-progress-linear--reverse .v-progress-linear__content {
2031
- left: auto;
2032
- right: 0;
1553
+ .v-locale--is-ltr.offset-6, .v-locale--is-ltr .offset-6 {
1554
+ margin-left: 50%;
2033
1555
  }
2034
- .v-progress-linear--reverse .v-progress-linear__indeterminate .long, .v-progress-linear--reverse .v-progress-linear__indeterminate .short {
2035
- left: auto;
2036
- right: 0;
1556
+
1557
+ .v-locale--is-rtl.offset-6, .v-locale--is-rtl .offset-6 {
1558
+ margin-right: 50%;
2037
1559
  }
2038
- .v-progress-linear--reverse .v-progress-linear__indeterminate .long {
2039
- animation-name: indeterminate-rtl;
1560
+
1561
+ .v-locale--is-ltr.offset-7, .v-locale--is-ltr .offset-7 {
1562
+ margin-left: 58.3333333333%;
2040
1563
  }
2041
- .v-progress-linear--reverse .v-progress-linear__indeterminate .short {
2042
- animation-name: indeterminate-short-rtl;
1564
+
1565
+ .v-locale--is-rtl.offset-7, .v-locale--is-rtl .offset-7 {
1566
+ margin-right: 58.3333333333%;
2043
1567
  }
2044
- .v-progress-linear--reverse .v-progress-linear__stream {
2045
- right: auto;
1568
+
1569
+ .v-locale--is-ltr.offset-8, .v-locale--is-ltr .offset-8 {
1570
+ margin-left: 66.6666666667%;
2046
1571
  }
2047
1572
 
2048
- .v-progress-linear--absolute,
2049
- .v-progress-linear--fixed {
2050
- left: 0;
2051
- z-index: 1;
1573
+ .v-locale--is-rtl.offset-8, .v-locale--is-rtl .offset-8 {
1574
+ margin-right: 66.6666666667%;
2052
1575
  }
2053
1576
 
2054
- .v-progress-linear--absolute {
2055
- position: absolute;
1577
+ .v-locale--is-ltr.offset-9, .v-locale--is-ltr .offset-9 {
1578
+ margin-left: 75%;
2056
1579
  }
2057
1580
 
2058
- .v-progress-linear--fixed {
2059
- position: fixed;
1581
+ .v-locale--is-rtl.offset-9, .v-locale--is-rtl .offset-9 {
1582
+ margin-right: 75%;
2060
1583
  }
2061
1584
 
2062
- .v-progress-linear--rounded {
2063
- border-radius: 9999px;
1585
+ .v-locale--is-ltr.offset-10, .v-locale--is-ltr .offset-10 {
1586
+ margin-left: 83.3333333333%;
2064
1587
  }
2065
- .v-progress-linear--rounded.v-progress-linear--rounded-bar .v-progress-linear__determinate,
2066
- .v-progress-linear--rounded.v-progress-linear--rounded-bar .v-progress-linear__indeterminate {
2067
- border-radius: inherit;
1588
+
1589
+ .v-locale--is-rtl.offset-10, .v-locale--is-rtl .offset-10 {
1590
+ margin-right: 83.3333333333%;
2068
1591
  }
2069
1592
 
2070
- .v-progress-linear--striped .v-progress-linear__determinate {
2071
- animation: progress-linear-stripes 1s infinite linear;
2072
- background-image: linear-gradient(135deg, hsla(0, 0%, 100%, 0.25) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, 0.25) 0, hsla(0, 0%, 100%, 0.25) 75%, transparent 0, transparent);
2073
- background-repeat: repeat;
2074
- background-size: var(--v-progress-linear-height);
1593
+ .v-locale--is-ltr.offset-11, .v-locale--is-ltr .offset-11 {
1594
+ margin-left: 91.6666666667%;
2075
1595
  }
2076
1596
 
2077
- .v-progress-linear--active .v-progress-linear__indeterminate .long, .v-progress-linear--active .v-progress-linear__indeterminate .short {
2078
- animation-play-state: running;
1597
+ .v-locale--is-rtl.offset-11, .v-locale--is-rtl .offset-11 {
1598
+ margin-right: 91.6666666667%;
2079
1599
  }
2080
- .v-progress-linear--active .v-progress-linear__stream {
2081
- animation-play-state: running;
1600
+
1601
+ @media (min-width: 600px) {
1602
+ .v-col-sm {
1603
+ flex-basis: 0;
1604
+ flex-grow: 1;
1605
+ max-width: 100%;
1606
+ }
1607
+ .v-col-sm-auto {
1608
+ flex: 0 0 auto;
1609
+ width: auto;
1610
+ max-width: 100%;
1611
+ }
1612
+ .v-col-sm-1 {
1613
+ flex: 0 0 8.3333333333%;
1614
+ max-width: 8.3333333333%;
1615
+ }
1616
+ .v-col-sm-2 {
1617
+ flex: 0 0 16.6666666667%;
1618
+ max-width: 16.6666666667%;
1619
+ }
1620
+ .v-col-sm-3 {
1621
+ flex: 0 0 25%;
1622
+ max-width: 25%;
1623
+ }
1624
+ .v-col-sm-4 {
1625
+ flex: 0 0 33.3333333333%;
1626
+ max-width: 33.3333333333%;
1627
+ }
1628
+ .v-col-sm-5 {
1629
+ flex: 0 0 41.6666666667%;
1630
+ max-width: 41.6666666667%;
1631
+ }
1632
+ .v-col-sm-6 {
1633
+ flex: 0 0 50%;
1634
+ max-width: 50%;
1635
+ }
1636
+ .v-col-sm-7 {
1637
+ flex: 0 0 58.3333333333%;
1638
+ max-width: 58.3333333333%;
1639
+ }
1640
+ .v-col-sm-8 {
1641
+ flex: 0 0 66.6666666667%;
1642
+ max-width: 66.6666666667%;
1643
+ }
1644
+ .v-col-sm-9 {
1645
+ flex: 0 0 75%;
1646
+ max-width: 75%;
1647
+ }
1648
+ .v-col-sm-10 {
1649
+ flex: 0 0 83.3333333333%;
1650
+ max-width: 83.3333333333%;
1651
+ }
1652
+ .v-col-sm-11 {
1653
+ flex: 0 0 91.6666666667%;
1654
+ max-width: 91.6666666667%;
1655
+ }
1656
+ .v-col-sm-12 {
1657
+ flex: 0 0 100%;
1658
+ max-width: 100%;
1659
+ }
1660
+ .v-locale--is-ltr.offset-sm-0, .v-locale--is-ltr .offset-sm-0 {
1661
+ margin-left: 0;
1662
+ }
1663
+ .v-locale--is-rtl.offset-sm-0, .v-locale--is-rtl .offset-sm-0 {
1664
+ margin-right: 0;
1665
+ }
1666
+ .v-locale--is-ltr.offset-sm-1, .v-locale--is-ltr .offset-sm-1 {
1667
+ margin-left: 8.3333333333%;
1668
+ }
1669
+ .v-locale--is-rtl.offset-sm-1, .v-locale--is-rtl .offset-sm-1 {
1670
+ margin-right: 8.3333333333%;
1671
+ }
1672
+ .v-locale--is-ltr.offset-sm-2, .v-locale--is-ltr .offset-sm-2 {
1673
+ margin-left: 16.6666666667%;
1674
+ }
1675
+ .v-locale--is-rtl.offset-sm-2, .v-locale--is-rtl .offset-sm-2 {
1676
+ margin-right: 16.6666666667%;
1677
+ }
1678
+ .v-locale--is-ltr.offset-sm-3, .v-locale--is-ltr .offset-sm-3 {
1679
+ margin-left: 25%;
1680
+ }
1681
+ .v-locale--is-rtl.offset-sm-3, .v-locale--is-rtl .offset-sm-3 {
1682
+ margin-right: 25%;
1683
+ }
1684
+ .v-locale--is-ltr.offset-sm-4, .v-locale--is-ltr .offset-sm-4 {
1685
+ margin-left: 33.3333333333%;
1686
+ }
1687
+ .v-locale--is-rtl.offset-sm-4, .v-locale--is-rtl .offset-sm-4 {
1688
+ margin-right: 33.3333333333%;
1689
+ }
1690
+ .v-locale--is-ltr.offset-sm-5, .v-locale--is-ltr .offset-sm-5 {
1691
+ margin-left: 41.6666666667%;
1692
+ }
1693
+ .v-locale--is-rtl.offset-sm-5, .v-locale--is-rtl .offset-sm-5 {
1694
+ margin-right: 41.6666666667%;
1695
+ }
1696
+ .v-locale--is-ltr.offset-sm-6, .v-locale--is-ltr .offset-sm-6 {
1697
+ margin-left: 50%;
1698
+ }
1699
+ .v-locale--is-rtl.offset-sm-6, .v-locale--is-rtl .offset-sm-6 {
1700
+ margin-right: 50%;
1701
+ }
1702
+ .v-locale--is-ltr.offset-sm-7, .v-locale--is-ltr .offset-sm-7 {
1703
+ margin-left: 58.3333333333%;
1704
+ }
1705
+ .v-locale--is-rtl.offset-sm-7, .v-locale--is-rtl .offset-sm-7 {
1706
+ margin-right: 58.3333333333%;
1707
+ }
1708
+ .v-locale--is-ltr.offset-sm-8, .v-locale--is-ltr .offset-sm-8 {
1709
+ margin-left: 66.6666666667%;
1710
+ }
1711
+ .v-locale--is-rtl.offset-sm-8, .v-locale--is-rtl .offset-sm-8 {
1712
+ margin-right: 66.6666666667%;
1713
+ }
1714
+ .v-locale--is-ltr.offset-sm-9, .v-locale--is-ltr .offset-sm-9 {
1715
+ margin-left: 75%;
1716
+ }
1717
+ .v-locale--is-rtl.offset-sm-9, .v-locale--is-rtl .offset-sm-9 {
1718
+ margin-right: 75%;
1719
+ }
1720
+ .v-locale--is-ltr.offset-sm-10, .v-locale--is-ltr .offset-sm-10 {
1721
+ margin-left: 83.3333333333%;
1722
+ }
1723
+ .v-locale--is-rtl.offset-sm-10, .v-locale--is-rtl .offset-sm-10 {
1724
+ margin-right: 83.3333333333%;
1725
+ }
1726
+ .v-locale--is-ltr.offset-sm-11, .v-locale--is-ltr .offset-sm-11 {
1727
+ margin-left: 91.6666666667%;
1728
+ }
1729
+ .v-locale--is-rtl.offset-sm-11, .v-locale--is-rtl .offset-sm-11 {
1730
+ margin-right: 91.6666666667%;
1731
+ }
2082
1732
  }
2083
-
2084
- .v-progress-linear--rounded-bar .v-progress-linear__determinate,
2085
- .v-progress-linear--rounded-bar .v-progress-linear__indeterminate,
2086
- .v-progress-linear--rounded-bar .v-progress-linear__stream + .v-progress-linear__background {
2087
- border-radius: 9999px;
1733
+ @media (min-width: 960px) {
1734
+ .v-col-md {
1735
+ flex-basis: 0;
1736
+ flex-grow: 1;
1737
+ max-width: 100%;
1738
+ }
1739
+ .v-col-md-auto {
1740
+ flex: 0 0 auto;
1741
+ width: auto;
1742
+ max-width: 100%;
1743
+ }
1744
+ .v-col-md-1 {
1745
+ flex: 0 0 8.3333333333%;
1746
+ max-width: 8.3333333333%;
1747
+ }
1748
+ .v-col-md-2 {
1749
+ flex: 0 0 16.6666666667%;
1750
+ max-width: 16.6666666667%;
1751
+ }
1752
+ .v-col-md-3 {
1753
+ flex: 0 0 25%;
1754
+ max-width: 25%;
1755
+ }
1756
+ .v-col-md-4 {
1757
+ flex: 0 0 33.3333333333%;
1758
+ max-width: 33.3333333333%;
1759
+ }
1760
+ .v-col-md-5 {
1761
+ flex: 0 0 41.6666666667%;
1762
+ max-width: 41.6666666667%;
1763
+ }
1764
+ .v-col-md-6 {
1765
+ flex: 0 0 50%;
1766
+ max-width: 50%;
1767
+ }
1768
+ .v-col-md-7 {
1769
+ flex: 0 0 58.3333333333%;
1770
+ max-width: 58.3333333333%;
1771
+ }
1772
+ .v-col-md-8 {
1773
+ flex: 0 0 66.6666666667%;
1774
+ max-width: 66.6666666667%;
1775
+ }
1776
+ .v-col-md-9 {
1777
+ flex: 0 0 75%;
1778
+ max-width: 75%;
1779
+ }
1780
+ .v-col-md-10 {
1781
+ flex: 0 0 83.3333333333%;
1782
+ max-width: 83.3333333333%;
1783
+ }
1784
+ .v-col-md-11 {
1785
+ flex: 0 0 91.6666666667%;
1786
+ max-width: 91.6666666667%;
1787
+ }
1788
+ .v-col-md-12 {
1789
+ flex: 0 0 100%;
1790
+ max-width: 100%;
1791
+ }
1792
+ .v-locale--is-ltr.offset-md-0, .v-locale--is-ltr .offset-md-0 {
1793
+ margin-left: 0;
1794
+ }
1795
+ .v-locale--is-rtl.offset-md-0, .v-locale--is-rtl .offset-md-0 {
1796
+ margin-right: 0;
1797
+ }
1798
+ .v-locale--is-ltr.offset-md-1, .v-locale--is-ltr .offset-md-1 {
1799
+ margin-left: 8.3333333333%;
1800
+ }
1801
+ .v-locale--is-rtl.offset-md-1, .v-locale--is-rtl .offset-md-1 {
1802
+ margin-right: 8.3333333333%;
1803
+ }
1804
+ .v-locale--is-ltr.offset-md-2, .v-locale--is-ltr .offset-md-2 {
1805
+ margin-left: 16.6666666667%;
1806
+ }
1807
+ .v-locale--is-rtl.offset-md-2, .v-locale--is-rtl .offset-md-2 {
1808
+ margin-right: 16.6666666667%;
1809
+ }
1810
+ .v-locale--is-ltr.offset-md-3, .v-locale--is-ltr .offset-md-3 {
1811
+ margin-left: 25%;
1812
+ }
1813
+ .v-locale--is-rtl.offset-md-3, .v-locale--is-rtl .offset-md-3 {
1814
+ margin-right: 25%;
1815
+ }
1816
+ .v-locale--is-ltr.offset-md-4, .v-locale--is-ltr .offset-md-4 {
1817
+ margin-left: 33.3333333333%;
1818
+ }
1819
+ .v-locale--is-rtl.offset-md-4, .v-locale--is-rtl .offset-md-4 {
1820
+ margin-right: 33.3333333333%;
1821
+ }
1822
+ .v-locale--is-ltr.offset-md-5, .v-locale--is-ltr .offset-md-5 {
1823
+ margin-left: 41.6666666667%;
1824
+ }
1825
+ .v-locale--is-rtl.offset-md-5, .v-locale--is-rtl .offset-md-5 {
1826
+ margin-right: 41.6666666667%;
1827
+ }
1828
+ .v-locale--is-ltr.offset-md-6, .v-locale--is-ltr .offset-md-6 {
1829
+ margin-left: 50%;
1830
+ }
1831
+ .v-locale--is-rtl.offset-md-6, .v-locale--is-rtl .offset-md-6 {
1832
+ margin-right: 50%;
1833
+ }
1834
+ .v-locale--is-ltr.offset-md-7, .v-locale--is-ltr .offset-md-7 {
1835
+ margin-left: 58.3333333333%;
1836
+ }
1837
+ .v-locale--is-rtl.offset-md-7, .v-locale--is-rtl .offset-md-7 {
1838
+ margin-right: 58.3333333333%;
1839
+ }
1840
+ .v-locale--is-ltr.offset-md-8, .v-locale--is-ltr .offset-md-8 {
1841
+ margin-left: 66.6666666667%;
1842
+ }
1843
+ .v-locale--is-rtl.offset-md-8, .v-locale--is-rtl .offset-md-8 {
1844
+ margin-right: 66.6666666667%;
1845
+ }
1846
+ .v-locale--is-ltr.offset-md-9, .v-locale--is-ltr .offset-md-9 {
1847
+ margin-left: 75%;
1848
+ }
1849
+ .v-locale--is-rtl.offset-md-9, .v-locale--is-rtl .offset-md-9 {
1850
+ margin-right: 75%;
1851
+ }
1852
+ .v-locale--is-ltr.offset-md-10, .v-locale--is-ltr .offset-md-10 {
1853
+ margin-left: 83.3333333333%;
1854
+ }
1855
+ .v-locale--is-rtl.offset-md-10, .v-locale--is-rtl .offset-md-10 {
1856
+ margin-right: 83.3333333333%;
1857
+ }
1858
+ .v-locale--is-ltr.offset-md-11, .v-locale--is-ltr .offset-md-11 {
1859
+ margin-left: 91.6666666667%;
1860
+ }
1861
+ .v-locale--is-rtl.offset-md-11, .v-locale--is-rtl .offset-md-11 {
1862
+ margin-right: 91.6666666667%;
1863
+ }
2088
1864
  }
2089
- .v-locale--is-ltr.v-progress-linear--rounded-bar .v-progress-linear__determinate, .v-locale--is-ltr .v-progress-linear--rounded-bar .v-progress-linear__determinate {
2090
- border-top-left-radius: 0;
2091
- border-bottom-left-radius: 0;
1865
+ @media (min-width: 1280px) {
1866
+ .v-col-lg {
1867
+ flex-basis: 0;
1868
+ flex-grow: 1;
1869
+ max-width: 100%;
1870
+ }
1871
+ .v-col-lg-auto {
1872
+ flex: 0 0 auto;
1873
+ width: auto;
1874
+ max-width: 100%;
1875
+ }
1876
+ .v-col-lg-1 {
1877
+ flex: 0 0 8.3333333333%;
1878
+ max-width: 8.3333333333%;
1879
+ }
1880
+ .v-col-lg-2 {
1881
+ flex: 0 0 16.6666666667%;
1882
+ max-width: 16.6666666667%;
1883
+ }
1884
+ .v-col-lg-3 {
1885
+ flex: 0 0 25%;
1886
+ max-width: 25%;
1887
+ }
1888
+ .v-col-lg-4 {
1889
+ flex: 0 0 33.3333333333%;
1890
+ max-width: 33.3333333333%;
1891
+ }
1892
+ .v-col-lg-5 {
1893
+ flex: 0 0 41.6666666667%;
1894
+ max-width: 41.6666666667%;
1895
+ }
1896
+ .v-col-lg-6 {
1897
+ flex: 0 0 50%;
1898
+ max-width: 50%;
1899
+ }
1900
+ .v-col-lg-7 {
1901
+ flex: 0 0 58.3333333333%;
1902
+ max-width: 58.3333333333%;
1903
+ }
1904
+ .v-col-lg-8 {
1905
+ flex: 0 0 66.6666666667%;
1906
+ max-width: 66.6666666667%;
1907
+ }
1908
+ .v-col-lg-9 {
1909
+ flex: 0 0 75%;
1910
+ max-width: 75%;
1911
+ }
1912
+ .v-col-lg-10 {
1913
+ flex: 0 0 83.3333333333%;
1914
+ max-width: 83.3333333333%;
1915
+ }
1916
+ .v-col-lg-11 {
1917
+ flex: 0 0 91.6666666667%;
1918
+ max-width: 91.6666666667%;
1919
+ }
1920
+ .v-col-lg-12 {
1921
+ flex: 0 0 100%;
1922
+ max-width: 100%;
1923
+ }
1924
+ .v-locale--is-ltr.offset-lg-0, .v-locale--is-ltr .offset-lg-0 {
1925
+ margin-left: 0;
1926
+ }
1927
+ .v-locale--is-rtl.offset-lg-0, .v-locale--is-rtl .offset-lg-0 {
1928
+ margin-right: 0;
1929
+ }
1930
+ .v-locale--is-ltr.offset-lg-1, .v-locale--is-ltr .offset-lg-1 {
1931
+ margin-left: 8.3333333333%;
1932
+ }
1933
+ .v-locale--is-rtl.offset-lg-1, .v-locale--is-rtl .offset-lg-1 {
1934
+ margin-right: 8.3333333333%;
1935
+ }
1936
+ .v-locale--is-ltr.offset-lg-2, .v-locale--is-ltr .offset-lg-2 {
1937
+ margin-left: 16.6666666667%;
1938
+ }
1939
+ .v-locale--is-rtl.offset-lg-2, .v-locale--is-rtl .offset-lg-2 {
1940
+ margin-right: 16.6666666667%;
1941
+ }
1942
+ .v-locale--is-ltr.offset-lg-3, .v-locale--is-ltr .offset-lg-3 {
1943
+ margin-left: 25%;
1944
+ }
1945
+ .v-locale--is-rtl.offset-lg-3, .v-locale--is-rtl .offset-lg-3 {
1946
+ margin-right: 25%;
1947
+ }
1948
+ .v-locale--is-ltr.offset-lg-4, .v-locale--is-ltr .offset-lg-4 {
1949
+ margin-left: 33.3333333333%;
1950
+ }
1951
+ .v-locale--is-rtl.offset-lg-4, .v-locale--is-rtl .offset-lg-4 {
1952
+ margin-right: 33.3333333333%;
1953
+ }
1954
+ .v-locale--is-ltr.offset-lg-5, .v-locale--is-ltr .offset-lg-5 {
1955
+ margin-left: 41.6666666667%;
1956
+ }
1957
+ .v-locale--is-rtl.offset-lg-5, .v-locale--is-rtl .offset-lg-5 {
1958
+ margin-right: 41.6666666667%;
1959
+ }
1960
+ .v-locale--is-ltr.offset-lg-6, .v-locale--is-ltr .offset-lg-6 {
1961
+ margin-left: 50%;
1962
+ }
1963
+ .v-locale--is-rtl.offset-lg-6, .v-locale--is-rtl .offset-lg-6 {
1964
+ margin-right: 50%;
1965
+ }
1966
+ .v-locale--is-ltr.offset-lg-7, .v-locale--is-ltr .offset-lg-7 {
1967
+ margin-left: 58.3333333333%;
1968
+ }
1969
+ .v-locale--is-rtl.offset-lg-7, .v-locale--is-rtl .offset-lg-7 {
1970
+ margin-right: 58.3333333333%;
1971
+ }
1972
+ .v-locale--is-ltr.offset-lg-8, .v-locale--is-ltr .offset-lg-8 {
1973
+ margin-left: 66.6666666667%;
1974
+ }
1975
+ .v-locale--is-rtl.offset-lg-8, .v-locale--is-rtl .offset-lg-8 {
1976
+ margin-right: 66.6666666667%;
1977
+ }
1978
+ .v-locale--is-ltr.offset-lg-9, .v-locale--is-ltr .offset-lg-9 {
1979
+ margin-left: 75%;
1980
+ }
1981
+ .v-locale--is-rtl.offset-lg-9, .v-locale--is-rtl .offset-lg-9 {
1982
+ margin-right: 75%;
1983
+ }
1984
+ .v-locale--is-ltr.offset-lg-10, .v-locale--is-ltr .offset-lg-10 {
1985
+ margin-left: 83.3333333333%;
1986
+ }
1987
+ .v-locale--is-rtl.offset-lg-10, .v-locale--is-rtl .offset-lg-10 {
1988
+ margin-right: 83.3333333333%;
1989
+ }
1990
+ .v-locale--is-ltr.offset-lg-11, .v-locale--is-ltr .offset-lg-11 {
1991
+ margin-left: 91.6666666667%;
1992
+ }
1993
+ .v-locale--is-rtl.offset-lg-11, .v-locale--is-rtl .offset-lg-11 {
1994
+ margin-right: 91.6666666667%;
1995
+ }
2092
1996
  }
2093
-
2094
- .v-locale--is-rtl.v-progress-linear--rounded-bar .v-progress-linear__determinate, .v-locale--is-rtl .v-progress-linear--rounded-bar .v-progress-linear__determinate {
2095
- border-top-right-radius: 0;
2096
- border-bottom-right-radius: 0;
1997
+ @media (min-width: 1920px) {
1998
+ .v-col-xl {
1999
+ flex-basis: 0;
2000
+ flex-grow: 1;
2001
+ max-width: 100%;
2002
+ }
2003
+ .v-col-xl-auto {
2004
+ flex: 0 0 auto;
2005
+ width: auto;
2006
+ max-width: 100%;
2007
+ }
2008
+ .v-col-xl-1 {
2009
+ flex: 0 0 8.3333333333%;
2010
+ max-width: 8.3333333333%;
2011
+ }
2012
+ .v-col-xl-2 {
2013
+ flex: 0 0 16.6666666667%;
2014
+ max-width: 16.6666666667%;
2015
+ }
2016
+ .v-col-xl-3 {
2017
+ flex: 0 0 25%;
2018
+ max-width: 25%;
2019
+ }
2020
+ .v-col-xl-4 {
2021
+ flex: 0 0 33.3333333333%;
2022
+ max-width: 33.3333333333%;
2023
+ }
2024
+ .v-col-xl-5 {
2025
+ flex: 0 0 41.6666666667%;
2026
+ max-width: 41.6666666667%;
2027
+ }
2028
+ .v-col-xl-6 {
2029
+ flex: 0 0 50%;
2030
+ max-width: 50%;
2031
+ }
2032
+ .v-col-xl-7 {
2033
+ flex: 0 0 58.3333333333%;
2034
+ max-width: 58.3333333333%;
2035
+ }
2036
+ .v-col-xl-8 {
2037
+ flex: 0 0 66.6666666667%;
2038
+ max-width: 66.6666666667%;
2039
+ }
2040
+ .v-col-xl-9 {
2041
+ flex: 0 0 75%;
2042
+ max-width: 75%;
2043
+ }
2044
+ .v-col-xl-10 {
2045
+ flex: 0 0 83.3333333333%;
2046
+ max-width: 83.3333333333%;
2047
+ }
2048
+ .v-col-xl-11 {
2049
+ flex: 0 0 91.6666666667%;
2050
+ max-width: 91.6666666667%;
2051
+ }
2052
+ .v-col-xl-12 {
2053
+ flex: 0 0 100%;
2054
+ max-width: 100%;
2055
+ }
2056
+ .v-locale--is-ltr.offset-xl-0, .v-locale--is-ltr .offset-xl-0 {
2057
+ margin-left: 0;
2058
+ }
2059
+ .v-locale--is-rtl.offset-xl-0, .v-locale--is-rtl .offset-xl-0 {
2060
+ margin-right: 0;
2061
+ }
2062
+ .v-locale--is-ltr.offset-xl-1, .v-locale--is-ltr .offset-xl-1 {
2063
+ margin-left: 8.3333333333%;
2064
+ }
2065
+ .v-locale--is-rtl.offset-xl-1, .v-locale--is-rtl .offset-xl-1 {
2066
+ margin-right: 8.3333333333%;
2067
+ }
2068
+ .v-locale--is-ltr.offset-xl-2, .v-locale--is-ltr .offset-xl-2 {
2069
+ margin-left: 16.6666666667%;
2070
+ }
2071
+ .v-locale--is-rtl.offset-xl-2, .v-locale--is-rtl .offset-xl-2 {
2072
+ margin-right: 16.6666666667%;
2073
+ }
2074
+ .v-locale--is-ltr.offset-xl-3, .v-locale--is-ltr .offset-xl-3 {
2075
+ margin-left: 25%;
2076
+ }
2077
+ .v-locale--is-rtl.offset-xl-3, .v-locale--is-rtl .offset-xl-3 {
2078
+ margin-right: 25%;
2079
+ }
2080
+ .v-locale--is-ltr.offset-xl-4, .v-locale--is-ltr .offset-xl-4 {
2081
+ margin-left: 33.3333333333%;
2082
+ }
2083
+ .v-locale--is-rtl.offset-xl-4, .v-locale--is-rtl .offset-xl-4 {
2084
+ margin-right: 33.3333333333%;
2085
+ }
2086
+ .v-locale--is-ltr.offset-xl-5, .v-locale--is-ltr .offset-xl-5 {
2087
+ margin-left: 41.6666666667%;
2088
+ }
2089
+ .v-locale--is-rtl.offset-xl-5, .v-locale--is-rtl .offset-xl-5 {
2090
+ margin-right: 41.6666666667%;
2091
+ }
2092
+ .v-locale--is-ltr.offset-xl-6, .v-locale--is-ltr .offset-xl-6 {
2093
+ margin-left: 50%;
2094
+ }
2095
+ .v-locale--is-rtl.offset-xl-6, .v-locale--is-rtl .offset-xl-6 {
2096
+ margin-right: 50%;
2097
+ }
2098
+ .v-locale--is-ltr.offset-xl-7, .v-locale--is-ltr .offset-xl-7 {
2099
+ margin-left: 58.3333333333%;
2100
+ }
2101
+ .v-locale--is-rtl.offset-xl-7, .v-locale--is-rtl .offset-xl-7 {
2102
+ margin-right: 58.3333333333%;
2103
+ }
2104
+ .v-locale--is-ltr.offset-xl-8, .v-locale--is-ltr .offset-xl-8 {
2105
+ margin-left: 66.6666666667%;
2106
+ }
2107
+ .v-locale--is-rtl.offset-xl-8, .v-locale--is-rtl .offset-xl-8 {
2108
+ margin-right: 66.6666666667%;
2109
+ }
2110
+ .v-locale--is-ltr.offset-xl-9, .v-locale--is-ltr .offset-xl-9 {
2111
+ margin-left: 75%;
2112
+ }
2113
+ .v-locale--is-rtl.offset-xl-9, .v-locale--is-rtl .offset-xl-9 {
2114
+ margin-right: 75%;
2115
+ }
2116
+ .v-locale--is-ltr.offset-xl-10, .v-locale--is-ltr .offset-xl-10 {
2117
+ margin-left: 83.3333333333%;
2118
+ }
2119
+ .v-locale--is-rtl.offset-xl-10, .v-locale--is-rtl .offset-xl-10 {
2120
+ margin-right: 83.3333333333%;
2121
+ }
2122
+ .v-locale--is-ltr.offset-xl-11, .v-locale--is-ltr .offset-xl-11 {
2123
+ margin-left: 91.6666666667%;
2124
+ }
2125
+ .v-locale--is-rtl.offset-xl-11, .v-locale--is-rtl .offset-xl-11 {
2126
+ margin-right: 91.6666666667%;
2127
+ }
2097
2128
  }
2098
-
2099
- @keyframes indeterminate-ltr {
2100
- 0% {
2101
- left: -90%;
2102
- right: 100%;
2129
+ @media (min-width: 2560px) {
2130
+ .v-col-xxl {
2131
+ flex-basis: 0;
2132
+ flex-grow: 1;
2133
+ max-width: 100%;
2134
+ }
2135
+ .v-col-xxl-auto {
2136
+ flex: 0 0 auto;
2137
+ width: auto;
2138
+ max-width: 100%;
2139
+ }
2140
+ .v-col-xxl-1 {
2141
+ flex: 0 0 8.3333333333%;
2142
+ max-width: 8.3333333333%;
2143
+ }
2144
+ .v-col-xxl-2 {
2145
+ flex: 0 0 16.6666666667%;
2146
+ max-width: 16.6666666667%;
2147
+ }
2148
+ .v-col-xxl-3 {
2149
+ flex: 0 0 25%;
2150
+ max-width: 25%;
2151
+ }
2152
+ .v-col-xxl-4 {
2153
+ flex: 0 0 33.3333333333%;
2154
+ max-width: 33.3333333333%;
2155
+ }
2156
+ .v-col-xxl-5 {
2157
+ flex: 0 0 41.6666666667%;
2158
+ max-width: 41.6666666667%;
2159
+ }
2160
+ .v-col-xxl-6 {
2161
+ flex: 0 0 50%;
2162
+ max-width: 50%;
2163
+ }
2164
+ .v-col-xxl-7 {
2165
+ flex: 0 0 58.3333333333%;
2166
+ max-width: 58.3333333333%;
2167
+ }
2168
+ .v-col-xxl-8 {
2169
+ flex: 0 0 66.6666666667%;
2170
+ max-width: 66.6666666667%;
2171
+ }
2172
+ .v-col-xxl-9 {
2173
+ flex: 0 0 75%;
2174
+ max-width: 75%;
2175
+ }
2176
+ .v-col-xxl-10 {
2177
+ flex: 0 0 83.3333333333%;
2178
+ max-width: 83.3333333333%;
2179
+ }
2180
+ .v-col-xxl-11 {
2181
+ flex: 0 0 91.6666666667%;
2182
+ max-width: 91.6666666667%;
2183
+ }
2184
+ .v-col-xxl-12 {
2185
+ flex: 0 0 100%;
2186
+ max-width: 100%;
2187
+ }
2188
+ .v-locale--is-ltr.offset-xxl-0, .v-locale--is-ltr .offset-xxl-0 {
2189
+ margin-left: 0;
2190
+ }
2191
+ .v-locale--is-rtl.offset-xxl-0, .v-locale--is-rtl .offset-xxl-0 {
2192
+ margin-right: 0;
2193
+ }
2194
+ .v-locale--is-ltr.offset-xxl-1, .v-locale--is-ltr .offset-xxl-1 {
2195
+ margin-left: 8.3333333333%;
2196
+ }
2197
+ .v-locale--is-rtl.offset-xxl-1, .v-locale--is-rtl .offset-xxl-1 {
2198
+ margin-right: 8.3333333333%;
2199
+ }
2200
+ .v-locale--is-ltr.offset-xxl-2, .v-locale--is-ltr .offset-xxl-2 {
2201
+ margin-left: 16.6666666667%;
2202
+ }
2203
+ .v-locale--is-rtl.offset-xxl-2, .v-locale--is-rtl .offset-xxl-2 {
2204
+ margin-right: 16.6666666667%;
2103
2205
  }
2104
- 60% {
2105
- left: -90%;
2106
- right: 100%;
2206
+ .v-locale--is-ltr.offset-xxl-3, .v-locale--is-ltr .offset-xxl-3 {
2207
+ margin-left: 25%;
2107
2208
  }
2108
- 100% {
2109
- left: 100%;
2110
- right: -35%;
2209
+ .v-locale--is-rtl.offset-xxl-3, .v-locale--is-rtl .offset-xxl-3 {
2210
+ margin-right: 25%;
2111
2211
  }
2112
- }
2113
- @keyframes indeterminate-rtl {
2114
- 0% {
2115
- left: 100%;
2116
- right: -90%;
2212
+ .v-locale--is-ltr.offset-xxl-4, .v-locale--is-ltr .offset-xxl-4 {
2213
+ margin-left: 33.3333333333%;
2117
2214
  }
2118
- 60% {
2119
- left: 100%;
2120
- right: -90%;
2215
+ .v-locale--is-rtl.offset-xxl-4, .v-locale--is-rtl .offset-xxl-4 {
2216
+ margin-right: 33.3333333333%;
2121
2217
  }
2122
- 100% {
2123
- left: -35%;
2124
- right: 100%;
2218
+ .v-locale--is-ltr.offset-xxl-5, .v-locale--is-ltr .offset-xxl-5 {
2219
+ margin-left: 41.6666666667%;
2125
2220
  }
2126
- }
2127
- @keyframes indeterminate-short-ltr {
2128
- 0% {
2129
- left: -200%;
2130
- right: 100%;
2221
+ .v-locale--is-rtl.offset-xxl-5, .v-locale--is-rtl .offset-xxl-5 {
2222
+ margin-right: 41.6666666667%;
2131
2223
  }
2132
- 60% {
2133
- left: 107%;
2134
- right: -8%;
2224
+ .v-locale--is-ltr.offset-xxl-6, .v-locale--is-ltr .offset-xxl-6 {
2225
+ margin-left: 50%;
2135
2226
  }
2136
- 100% {
2137
- left: 107%;
2138
- right: -8%;
2227
+ .v-locale--is-rtl.offset-xxl-6, .v-locale--is-rtl .offset-xxl-6 {
2228
+ margin-right: 50%;
2139
2229
  }
2140
- }
2141
- @keyframes indeterminate-short-rtl {
2142
- 0% {
2143
- left: 100%;
2144
- right: -200%;
2230
+ .v-locale--is-ltr.offset-xxl-7, .v-locale--is-ltr .offset-xxl-7 {
2231
+ margin-left: 58.3333333333%;
2145
2232
  }
2146
- 60% {
2147
- left: -8%;
2148
- right: 107%;
2233
+ .v-locale--is-rtl.offset-xxl-7, .v-locale--is-rtl .offset-xxl-7 {
2234
+ margin-right: 58.3333333333%;
2149
2235
  }
2150
- 100% {
2151
- left: -8%;
2152
- right: 107%;
2236
+ .v-locale--is-ltr.offset-xxl-8, .v-locale--is-ltr .offset-xxl-8 {
2237
+ margin-left: 66.6666666667%;
2153
2238
  }
2154
- }
2155
- @keyframes stream {
2156
- to {
2157
- transform: translateX(var(--v-progress-linear-stream-to));
2239
+ .v-locale--is-rtl.offset-xxl-8, .v-locale--is-rtl .offset-xxl-8 {
2240
+ margin-right: 66.6666666667%;
2158
2241
  }
2159
- }
2160
- @keyframes progress-linear-stripes {
2161
- 0% {
2162
- background-position-x: var(--v-progress-linear-height);
2242
+ .v-locale--is-ltr.offset-xxl-9, .v-locale--is-ltr .offset-xxl-9 {
2243
+ margin-left: 75%;
2244
+ }
2245
+ .v-locale--is-rtl.offset-xxl-9, .v-locale--is-rtl .offset-xxl-9 {
2246
+ margin-right: 75%;
2247
+ }
2248
+ .v-locale--is-ltr.offset-xxl-10, .v-locale--is-ltr .offset-xxl-10 {
2249
+ margin-left: 83.3333333333%;
2250
+ }
2251
+ .v-locale--is-rtl.offset-xxl-10, .v-locale--is-rtl .offset-xxl-10 {
2252
+ margin-right: 83.3333333333%;
2253
+ }
2254
+ .v-locale--is-ltr.offset-xxl-11, .v-locale--is-ltr .offset-xxl-11 {
2255
+ margin-left: 91.6666666667%;
2256
+ }
2257
+ .v-locale--is-rtl.offset-xxl-11, .v-locale--is-rtl .offset-xxl-11 {
2258
+ margin-right: 91.6666666667%;
2163
2259
  }
2164
2260
  }
2165
- .v-ripple__container {
2166
- color: inherit;
2167
- border-radius: inherit;
2168
- position: absolute;
2169
- width: 100%;
2170
- height: 100%;
2171
- left: 0;
2172
- top: 0;
2173
- overflow: hidden;
2174
- z-index: 0;
2175
- pointer-events: none;
2176
- contain: strict;
2177
- }
2178
- .v-ripple__animation {
2179
- color: inherit;
2180
- position: absolute;
2181
- top: 0;
2182
- left: 0;
2183
- border-radius: 50%;
2184
- background: currentColor;
2185
- opacity: 0;
2186
- pointer-events: none;
2261
+ .v-window {
2187
2262
  overflow: hidden;
2188
- will-change: transform, opacity;
2189
- }
2190
- .v-ripple__animation--enter {
2191
- transition: none;
2192
- opacity: 0;
2193
- }
2194
- .v-ripple__animation--in {
2195
- transition: transform 0.25s cubic-bezier(0, 0, 0.2, 1), opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
2196
- opacity: calc(0.25 * var(--v-theme-overlay-multiplier));
2197
- }
2198
- .v-ripple__animation--out {
2199
- transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
2200
- opacity: 0;
2201
2263
  }
2202
- .v-progress-circular {
2203
- align-items: center;
2204
- display: inline-flex;
2205
- justify-content: center;
2264
+ .v-window__container {
2265
+ display: flex;
2266
+ flex-direction: column;
2267
+ height: inherit;
2206
2268
  position: relative;
2207
- vertical-align: middle;
2269
+ transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
2208
2270
  }
2209
- .v-progress-circular > svg {
2210
- width: 100%;
2211
- height: 100%;
2212
- margin: auto;
2271
+ .v-window__controls {
2213
2272
  position: absolute;
2214
- top: 0;
2215
- bottom: 0;
2216
2273
  left: 0;
2217
- right: 0;
2218
- z-index: 0;
2219
- }
2220
-
2221
- .v-progress-circular__content {
2222
- align-items: center;
2274
+ top: 0;
2275
+ width: 100%;
2276
+ height: 100%;
2223
2277
  display: flex;
2224
- justify-content: center;
2278
+ align-items: center;
2279
+ justify-content: space-between;
2280
+ padding: 0 16px;
2281
+ pointer-events: none;
2225
2282
  }
2226
-
2227
- .v-progress-circular__underlay {
2228
- color: rgba(var(--v-border-color), var(--v-border-opacity));
2229
- stroke: currentColor;
2230
- z-index: 1;
2283
+ .v-window__controls * {
2284
+ pointer-events: auto;
2231
2285
  }
2232
-
2233
- .v-progress-circular__overlay {
2234
- stroke: currentColor;
2235
- transition: all 0.2s ease-in-out, stroke-width 0s;
2236
- z-index: 2;
2286
+ .v-window--show-arrows-on-hover {
2287
+ overflow: hidden;
2237
2288
  }
2238
-
2239
- .v-progress-circular--size-x-small {
2240
- height: 16px;
2241
- width: 16px;
2289
+ .v-window--show-arrows-on-hover .v-window__left {
2290
+ transform: translateX(-200%);
2242
2291
  }
2243
- .v-progress-circular--size-small {
2244
- height: 24px;
2245
- width: 24px;
2292
+ .v-window--show-arrows-on-hover .v-window__right {
2293
+ transform: translateX(200%);
2246
2294
  }
2247
- .v-progress-circular--size-default {
2248
- height: 32px;
2249
- width: 32px;
2295
+ .v-window--show-arrows-on-hover:hover .v-window__left,
2296
+ .v-window--show-arrows-on-hover:hover .v-window__right {
2297
+ transform: translateX(0);
2250
2298
  }
2251
- .v-progress-circular--size-large {
2252
- height: 48px;
2253
- width: 48px;
2299
+ .v-window-x-transition-enter-active, .v-window-x-transition-leave-active, .v-window-x-reverse-transition-enter-active, .v-window-x-reverse-transition-leave-active, .v-window-y-transition-enter-active, .v-window-y-transition-leave-active, .v-window-y-reverse-transition-enter-active, .v-window-y-reverse-transition-leave-active {
2300
+ transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
2254
2301
  }
2255
- .v-progress-circular--size-x-large {
2256
- height: 64px;
2257
- width: 64px;
2302
+ .v-window-x-transition-leave-from, .v-window-x-transition-leave-to, .v-window-x-reverse-transition-leave-from, .v-window-x-reverse-transition-leave-to, .v-window-y-transition-leave-from, .v-window-y-transition-leave-to, .v-window-y-reverse-transition-leave-from, .v-window-y-reverse-transition-leave-to {
2303
+ position: absolute !important;
2304
+ top: 0;
2305
+ width: 100%;
2258
2306
  }
2259
-
2260
- .v-progress-circular--indeterminate > svg {
2261
- animation: progress-circular-rotate 1.4s linear infinite;
2262
- transform-origin: center center;
2263
- transition: all 0.2s ease-in-out;
2307
+ .v-window-x-transition-enter-from {
2308
+ transform: translateX(100%);
2264
2309
  }
2265
- .v-progress-circular--indeterminate .v-progress-circular__overlay {
2266
- animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
2267
- stroke-dasharray: 25, 200;
2268
- stroke-dashoffset: 0;
2269
- stroke-linecap: round;
2270
- transform-origin: center center;
2271
- transform: rotate(-90deg);
2310
+ .v-window-x-transition-leave-to {
2311
+ transform: translateX(-100%);
2272
2312
  }
2273
-
2274
- .v-progress-circular--disable-shrink > svg {
2275
- animation-duration: 0.7s;
2313
+ .v-window-x-reverse-transition-enter-from {
2314
+ transform: translateX(-100%);
2276
2315
  }
2277
- .v-progress-circular--disable-shrink .v-progress-circular__overlay {
2278
- animation: none;
2316
+ .v-window-x-reverse-transition-leave-to {
2317
+ transform: translateX(100%);
2279
2318
  }
2280
-
2281
- .v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
2282
- .v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
2283
- animation-play-state: paused !important;
2319
+ .v-window-y-transition-enter-from {
2320
+ transform: translateY(100%);
2284
2321
  }
2285
-
2286
- @keyframes progress-circular-dash {
2287
- 0% {
2288
- stroke-dasharray: 1, 200;
2289
- stroke-dashoffset: 0px;
2290
- }
2291
- 50% {
2292
- stroke-dasharray: 100, 200;
2293
- stroke-dashoffset: -15px;
2294
- }
2295
- 100% {
2296
- stroke-dasharray: 100, 200;
2297
- stroke-dashoffset: -124px;
2298
- }
2322
+ .v-window-y-transition-leave-to {
2323
+ transform: translateY(-100%);
2299
2324
  }
2300
- @keyframes progress-circular-rotate {
2301
- 100% {
2302
- transform: rotate(270deg);
2303
- }
2325
+ .v-window-y-reverse-transition-enter-from {
2326
+ transform: translateY(-100%);
2327
+ }
2328
+ .v-window-y-reverse-transition-leave-to {
2329
+ transform: translateY(100%);
2304
2330
  }
2305
2331
  .v-messages {
2306
2332
  flex: 1 1 auto;