@ututrust/web-components 2.2.1 → 2.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +45 -526
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -936,7 +936,7 @@
|
|
|
936
936
|
*
|
|
937
937
|
* @returns {boolean} True if value is a plain Object, otherwise false
|
|
938
938
|
*/
|
|
939
|
-
const isPlainObject$
|
|
939
|
+
const isPlainObject$2 = val => {
|
|
940
940
|
if (kindOf(val) !== 'object') {
|
|
941
941
|
return false;
|
|
942
942
|
}
|
|
@@ -1113,9 +1113,9 @@
|
|
|
1113
1113
|
const result = {};
|
|
1114
1114
|
const assignValue = (val, key) => {
|
|
1115
1115
|
const targetKey = caseless && findKey(result, key) || key;
|
|
1116
|
-
if (isPlainObject$
|
|
1116
|
+
if (isPlainObject$2(result[targetKey]) && isPlainObject$2(val)) {
|
|
1117
1117
|
result[targetKey] = merge$1(result[targetKey], val);
|
|
1118
|
-
} else if (isPlainObject$
|
|
1118
|
+
} else if (isPlainObject$2(val)) {
|
|
1119
1119
|
result[targetKey] = merge$1({}, val);
|
|
1120
1120
|
} else if (isArray$4(val)) {
|
|
1121
1121
|
result[targetKey] = val.slice();
|
|
@@ -1375,7 +1375,7 @@
|
|
|
1375
1375
|
isArray$4(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter));
|
|
1376
1376
|
return obj;
|
|
1377
1377
|
};
|
|
1378
|
-
const noop$
|
|
1378
|
+
const noop$3 = () => {};
|
|
1379
1379
|
const toFiniteNumber = (value, defaultValue) => {
|
|
1380
1380
|
value = +value;
|
|
1381
1381
|
return Number.isFinite(value) ? value : defaultValue;
|
|
@@ -1442,7 +1442,7 @@
|
|
|
1442
1442
|
isNumber: isNumber$1,
|
|
1443
1443
|
isBoolean: isBoolean$2,
|
|
1444
1444
|
isObject: isObject$a,
|
|
1445
|
-
isPlainObject: isPlainObject$
|
|
1445
|
+
isPlainObject: isPlainObject$2,
|
|
1446
1446
|
isUndefined: isUndefined$1,
|
|
1447
1447
|
isDate: isDate$1,
|
|
1448
1448
|
isFile,
|
|
@@ -1474,7 +1474,7 @@
|
|
|
1474
1474
|
freezeMethods,
|
|
1475
1475
|
toObjectSet,
|
|
1476
1476
|
toCamelCase,
|
|
1477
|
-
noop: noop$
|
|
1477
|
+
noop: noop$3,
|
|
1478
1478
|
toFiniteNumber,
|
|
1479
1479
|
findKey,
|
|
1480
1480
|
global: _global,
|
|
@@ -41692,9 +41692,9 @@
|
|
|
41692
41692
|
}
|
|
41693
41693
|
|
|
41694
41694
|
return {
|
|
41695
|
-
persistClient: noop$
|
|
41695
|
+
persistClient: noop$2,
|
|
41696
41696
|
restoreClient: () => undefined,
|
|
41697
|
-
removeClient: noop$
|
|
41697
|
+
removeClient: noop$2
|
|
41698
41698
|
};
|
|
41699
41699
|
}
|
|
41700
41700
|
|
|
@@ -41714,7 +41714,7 @@
|
|
|
41714
41714
|
} // eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
41715
41715
|
|
|
41716
41716
|
|
|
41717
|
-
function noop$
|
|
41717
|
+
function noop$2() {}
|
|
41718
41718
|
|
|
41719
41719
|
class Subscribable {
|
|
41720
41720
|
constructor() {
|
|
@@ -41749,7 +41749,7 @@
|
|
|
41749
41749
|
// TYPES
|
|
41750
41750
|
// UTILS
|
|
41751
41751
|
const isServer = typeof window === 'undefined' || 'Deno' in window;
|
|
41752
|
-
function noop$
|
|
41752
|
+
function noop$1() {
|
|
41753
41753
|
return undefined;
|
|
41754
41754
|
}
|
|
41755
41755
|
function functionalUpdate(updater, input) {
|
|
@@ -41777,29 +41777,6 @@
|
|
|
41777
41777
|
queryKey: arg1
|
|
41778
41778
|
};
|
|
41779
41779
|
}
|
|
41780
|
-
function parseMutationArgs(arg1, arg2, arg3) {
|
|
41781
|
-
if (isQueryKey$1(arg1)) {
|
|
41782
|
-
if (typeof arg2 === 'function') {
|
|
41783
|
-
return { ...arg3,
|
|
41784
|
-
mutationKey: arg1,
|
|
41785
|
-
mutationFn: arg2
|
|
41786
|
-
};
|
|
41787
|
-
}
|
|
41788
|
-
|
|
41789
|
-
return { ...arg2,
|
|
41790
|
-
mutationKey: arg1
|
|
41791
|
-
};
|
|
41792
|
-
}
|
|
41793
|
-
|
|
41794
|
-
if (typeof arg1 === 'function') {
|
|
41795
|
-
return { ...arg2,
|
|
41796
|
-
mutationFn: arg1
|
|
41797
|
-
};
|
|
41798
|
-
}
|
|
41799
|
-
|
|
41800
|
-
return { ...arg1
|
|
41801
|
-
};
|
|
41802
|
-
}
|
|
41803
41780
|
function parseFilterArgs(arg1, arg2, arg3) {
|
|
41804
41781
|
return isQueryKey$1(arg1) ? [{ ...arg2,
|
|
41805
41782
|
queryKey: arg1
|
|
@@ -41893,7 +41870,7 @@
|
|
|
41893
41870
|
*/
|
|
41894
41871
|
|
|
41895
41872
|
function hashQueryKey(queryKey) {
|
|
41896
|
-
return JSON.stringify(queryKey, (_, val) => isPlainObject$
|
|
41873
|
+
return JSON.stringify(queryKey, (_, val) => isPlainObject$1(val) ? Object.keys(val).sort().reduce((result, key) => {
|
|
41897
41874
|
result[key] = val[key];
|
|
41898
41875
|
return result;
|
|
41899
41876
|
}, {}) : val);
|
|
@@ -41937,7 +41914,7 @@
|
|
|
41937
41914
|
|
|
41938
41915
|
const array = isPlainArray$1(a) && isPlainArray$1(b);
|
|
41939
41916
|
|
|
41940
|
-
if (array || isPlainObject$
|
|
41917
|
+
if (array || isPlainObject$1(a) && isPlainObject$1(b)) {
|
|
41941
41918
|
const aSize = array ? a.length : Object.keys(a).length;
|
|
41942
41919
|
const bItems = array ? b : Object.keys(b);
|
|
41943
41920
|
const bSize = bItems.length;
|
|
@@ -41979,7 +41956,7 @@
|
|
|
41979
41956
|
return Array.isArray(value) && value.length === Object.keys(value).length;
|
|
41980
41957
|
} // Copied from: https://github.com/jonschlinkert/is-plain-object
|
|
41981
41958
|
|
|
41982
|
-
function isPlainObject$
|
|
41959
|
+
function isPlainObject$1(o) {
|
|
41983
41960
|
if (!hasObjectPrototype(o)) {
|
|
41984
41961
|
return false;
|
|
41985
41962
|
} // If has modified constructor
|
|
@@ -42568,7 +42545,7 @@
|
|
|
42568
42545
|
|
|
42569
42546
|
const promise = this.promise;
|
|
42570
42547
|
(_this$retryer = this.retryer) == null ? void 0 : _this$retryer.cancel(options);
|
|
42571
|
-
return promise ? promise.then(noop$
|
|
42548
|
+
return promise ? promise.then(noop$1).catch(noop$1) : Promise.resolve();
|
|
42572
42549
|
}
|
|
42573
42550
|
|
|
42574
42551
|
destroy() {
|
|
@@ -43427,7 +43404,7 @@
|
|
|
43427
43404
|
|
|
43428
43405
|
this.resuming = ((_this$resuming = this.resuming) != null ? _this$resuming : Promise.resolve()).then(() => {
|
|
43429
43406
|
const pausedMutations = this.mutations.filter(x => x.state.isPaused);
|
|
43430
|
-
return notifyManager.batch(() => pausedMutations.reduce((promise, mutation) => promise.then(() => mutation.continue().catch(noop$
|
|
43407
|
+
return notifyManager.batch(() => pausedMutations.reduce((promise, mutation) => promise.then(() => mutation.continue().catch(noop$1)), Promise.resolve()));
|
|
43431
43408
|
}).then(() => {
|
|
43432
43409
|
this.resuming = undefined;
|
|
43433
43410
|
});
|
|
@@ -43693,7 +43670,7 @@
|
|
|
43693
43670
|
}
|
|
43694
43671
|
|
|
43695
43672
|
const promises = notifyManager.batch(() => this.queryCache.findAll(filters).map(query => query.cancel(cancelOptions)));
|
|
43696
|
-
return Promise.all(promises).then(noop$
|
|
43673
|
+
return Promise.all(promises).then(noop$1).catch(noop$1);
|
|
43697
43674
|
}
|
|
43698
43675
|
|
|
43699
43676
|
invalidateQueries(arg1, arg2, arg3) {
|
|
@@ -43728,10 +43705,10 @@
|
|
|
43728
43705
|
}
|
|
43729
43706
|
});
|
|
43730
43707
|
}));
|
|
43731
|
-
let promise = Promise.all(promises).then(noop$
|
|
43708
|
+
let promise = Promise.all(promises).then(noop$1);
|
|
43732
43709
|
|
|
43733
43710
|
if (!(options != null && options.throwOnError)) {
|
|
43734
|
-
promise = promise.catch(noop$
|
|
43711
|
+
promise = promise.catch(noop$1);
|
|
43735
43712
|
}
|
|
43736
43713
|
|
|
43737
43714
|
return promise;
|
|
@@ -43750,7 +43727,7 @@
|
|
|
43750
43727
|
}
|
|
43751
43728
|
|
|
43752
43729
|
prefetchQuery(arg1, arg2, arg3) {
|
|
43753
|
-
return this.fetchQuery(arg1, arg2, arg3).then(noop$
|
|
43730
|
+
return this.fetchQuery(arg1, arg2, arg3).then(noop$1).catch(noop$1);
|
|
43754
43731
|
}
|
|
43755
43732
|
|
|
43756
43733
|
fetchInfiniteQuery(arg1, arg2, arg3) {
|
|
@@ -43760,7 +43737,7 @@
|
|
|
43760
43737
|
}
|
|
43761
43738
|
|
|
43762
43739
|
prefetchInfiniteQuery(arg1, arg2, arg3) {
|
|
43763
|
-
return this.fetchInfiniteQuery(arg1, arg2, arg3).then(noop$
|
|
43740
|
+
return this.fetchInfiniteQuery(arg1, arg2, arg3).then(noop$1).catch(noop$1);
|
|
43764
43741
|
}
|
|
43765
43742
|
|
|
43766
43743
|
resumePausedMutations() {
|
|
@@ -44086,7 +44063,7 @@
|
|
|
44086
44063
|
let promise = this.currentQuery.fetch(this.options, fetchOptions);
|
|
44087
44064
|
|
|
44088
44065
|
if (!(fetchOptions != null && fetchOptions.throwOnError)) {
|
|
44089
|
-
promise = promise.catch(noop$
|
|
44066
|
+
promise = promise.catch(noop$1);
|
|
44090
44067
|
}
|
|
44091
44068
|
|
|
44092
44069
|
return promise;
|
|
@@ -44471,131 +44448,6 @@
|
|
|
44471
44448
|
return false;
|
|
44472
44449
|
}
|
|
44473
44450
|
|
|
44474
|
-
// CLASS
|
|
44475
|
-
class MutationObserver extends Subscribable {
|
|
44476
|
-
constructor(client, options) {
|
|
44477
|
-
super();
|
|
44478
|
-
this.client = client;
|
|
44479
|
-
this.setOptions(options);
|
|
44480
|
-
this.bindMethods();
|
|
44481
|
-
this.updateResult();
|
|
44482
|
-
}
|
|
44483
|
-
|
|
44484
|
-
bindMethods() {
|
|
44485
|
-
this.mutate = this.mutate.bind(this);
|
|
44486
|
-
this.reset = this.reset.bind(this);
|
|
44487
|
-
}
|
|
44488
|
-
|
|
44489
|
-
setOptions(options) {
|
|
44490
|
-
var _this$currentMutation;
|
|
44491
|
-
|
|
44492
|
-
const prevOptions = this.options;
|
|
44493
|
-
this.options = this.client.defaultMutationOptions(options);
|
|
44494
|
-
|
|
44495
|
-
if (!shallowEqualObjects(prevOptions, this.options)) {
|
|
44496
|
-
this.client.getMutationCache().notify({
|
|
44497
|
-
type: 'observerOptionsUpdated',
|
|
44498
|
-
mutation: this.currentMutation,
|
|
44499
|
-
observer: this
|
|
44500
|
-
});
|
|
44501
|
-
}
|
|
44502
|
-
|
|
44503
|
-
(_this$currentMutation = this.currentMutation) == null ? void 0 : _this$currentMutation.setOptions(this.options);
|
|
44504
|
-
}
|
|
44505
|
-
|
|
44506
|
-
onUnsubscribe() {
|
|
44507
|
-
if (!this.hasListeners()) {
|
|
44508
|
-
var _this$currentMutation2;
|
|
44509
|
-
|
|
44510
|
-
(_this$currentMutation2 = this.currentMutation) == null ? void 0 : _this$currentMutation2.removeObserver(this);
|
|
44511
|
-
}
|
|
44512
|
-
}
|
|
44513
|
-
|
|
44514
|
-
onMutationUpdate(action) {
|
|
44515
|
-
this.updateResult(); // Determine which callbacks to trigger
|
|
44516
|
-
|
|
44517
|
-
const notifyOptions = {
|
|
44518
|
-
listeners: true
|
|
44519
|
-
};
|
|
44520
|
-
|
|
44521
|
-
if (action.type === 'success') {
|
|
44522
|
-
notifyOptions.onSuccess = true;
|
|
44523
|
-
} else if (action.type === 'error') {
|
|
44524
|
-
notifyOptions.onError = true;
|
|
44525
|
-
}
|
|
44526
|
-
|
|
44527
|
-
this.notify(notifyOptions);
|
|
44528
|
-
}
|
|
44529
|
-
|
|
44530
|
-
getCurrentResult() {
|
|
44531
|
-
return this.currentResult;
|
|
44532
|
-
}
|
|
44533
|
-
|
|
44534
|
-
reset() {
|
|
44535
|
-
this.currentMutation = undefined;
|
|
44536
|
-
this.updateResult();
|
|
44537
|
-
this.notify({
|
|
44538
|
-
listeners: true
|
|
44539
|
-
});
|
|
44540
|
-
}
|
|
44541
|
-
|
|
44542
|
-
mutate(variables, options) {
|
|
44543
|
-
this.mutateOptions = options;
|
|
44544
|
-
|
|
44545
|
-
if (this.currentMutation) {
|
|
44546
|
-
this.currentMutation.removeObserver(this);
|
|
44547
|
-
}
|
|
44548
|
-
|
|
44549
|
-
this.currentMutation = this.client.getMutationCache().build(this.client, { ...this.options,
|
|
44550
|
-
variables: typeof variables !== 'undefined' ? variables : this.options.variables
|
|
44551
|
-
});
|
|
44552
|
-
this.currentMutation.addObserver(this);
|
|
44553
|
-
return this.currentMutation.execute();
|
|
44554
|
-
}
|
|
44555
|
-
|
|
44556
|
-
updateResult() {
|
|
44557
|
-
const state = this.currentMutation ? this.currentMutation.state : getDefaultState();
|
|
44558
|
-
const result = { ...state,
|
|
44559
|
-
isLoading: state.status === 'loading',
|
|
44560
|
-
isSuccess: state.status === 'success',
|
|
44561
|
-
isError: state.status === 'error',
|
|
44562
|
-
isIdle: state.status === 'idle',
|
|
44563
|
-
mutate: this.mutate,
|
|
44564
|
-
reset: this.reset
|
|
44565
|
-
};
|
|
44566
|
-
this.currentResult = result;
|
|
44567
|
-
}
|
|
44568
|
-
|
|
44569
|
-
notify(options) {
|
|
44570
|
-
notifyManager.batch(() => {
|
|
44571
|
-
// First trigger the mutate callbacks
|
|
44572
|
-
if (this.mutateOptions && this.hasListeners()) {
|
|
44573
|
-
if (options.onSuccess) {
|
|
44574
|
-
var _this$mutateOptions$o, _this$mutateOptions, _this$mutateOptions$o2, _this$mutateOptions2;
|
|
44575
|
-
|
|
44576
|
-
(_this$mutateOptions$o = (_this$mutateOptions = this.mutateOptions).onSuccess) == null ? void 0 : _this$mutateOptions$o.call(_this$mutateOptions, this.currentResult.data, this.currentResult.variables, this.currentResult.context);
|
|
44577
|
-
(_this$mutateOptions$o2 = (_this$mutateOptions2 = this.mutateOptions).onSettled) == null ? void 0 : _this$mutateOptions$o2.call(_this$mutateOptions2, this.currentResult.data, null, this.currentResult.variables, this.currentResult.context);
|
|
44578
|
-
} else if (options.onError) {
|
|
44579
|
-
var _this$mutateOptions$o3, _this$mutateOptions3, _this$mutateOptions$o4, _this$mutateOptions4;
|
|
44580
|
-
|
|
44581
|
-
(_this$mutateOptions$o3 = (_this$mutateOptions3 = this.mutateOptions).onError) == null ? void 0 : _this$mutateOptions$o3.call(_this$mutateOptions3, this.currentResult.error, this.currentResult.variables, this.currentResult.context);
|
|
44582
|
-
(_this$mutateOptions$o4 = (_this$mutateOptions4 = this.mutateOptions).onSettled) == null ? void 0 : _this$mutateOptions$o4.call(_this$mutateOptions4, undefined, this.currentResult.error, this.currentResult.variables, this.currentResult.context);
|
|
44583
|
-
}
|
|
44584
|
-
} // Then trigger the listeners
|
|
44585
|
-
|
|
44586
|
-
|
|
44587
|
-
if (options.listeners) {
|
|
44588
|
-
this.listeners.forEach(({
|
|
44589
|
-
listener
|
|
44590
|
-
}) => {
|
|
44591
|
-
listener(this.currentResult);
|
|
44592
|
-
});
|
|
44593
|
-
}
|
|
44594
|
-
});
|
|
44595
|
-
}
|
|
44596
|
-
|
|
44597
|
-
}
|
|
44598
|
-
|
|
44599
44451
|
// TYPES
|
|
44600
44452
|
// FUNCTIONS
|
|
44601
44453
|
function dehydrateMutation(mutation) {
|
|
@@ -45376,8 +45228,6 @@
|
|
|
45376
45228
|
|
|
45377
45229
|
var shimExports = shim.exports;
|
|
45378
45230
|
|
|
45379
|
-
const useSyncExternalStore = shimExports.useSyncExternalStore;
|
|
45380
|
-
|
|
45381
45231
|
const defaultContext = /*#__PURE__*/G$2(undefined);
|
|
45382
45232
|
const QueryClientSharingContext = /*#__PURE__*/G$2(false); // If we are given a context, we will use it.
|
|
45383
45233
|
// Otherwise, if contextSharing is on, we share the first and at least one
|
|
@@ -45462,41 +45312,6 @@
|
|
|
45462
45312
|
|
|
45463
45313
|
const useQueryErrorResetBoundary = () => P$2(QueryErrorResetBoundaryContext); // COMPONENT
|
|
45464
45314
|
|
|
45465
|
-
function shouldThrowError$1(_useErrorBoundary, params) {
|
|
45466
|
-
// Allow useErrorBoundary function to override throwing behavior on a per-error basis
|
|
45467
|
-
if (typeof _useErrorBoundary === 'function') {
|
|
45468
|
-
return _useErrorBoundary(...params);
|
|
45469
|
-
}
|
|
45470
|
-
|
|
45471
|
-
return !!_useErrorBoundary;
|
|
45472
|
-
}
|
|
45473
|
-
|
|
45474
|
-
function useMutation$1(arg1, arg2, arg3) {
|
|
45475
|
-
const options = parseMutationArgs(arg1, arg2, arg3);
|
|
45476
|
-
const queryClient = useQueryClient({
|
|
45477
|
-
context: options.context
|
|
45478
|
-
});
|
|
45479
|
-
const [observer] = p$1(() => new MutationObserver(queryClient, options));
|
|
45480
|
-
_$1(() => {
|
|
45481
|
-
observer.setOptions(options);
|
|
45482
|
-
}, [observer, options]);
|
|
45483
|
-
const result = useSyncExternalStore(x$3(onStoreChange => observer.subscribe(notifyManager.batchCalls(onStoreChange)), [observer]), () => observer.getCurrentResult(), () => observer.getCurrentResult());
|
|
45484
|
-
const mutate = x$3((variables, mutateOptions) => {
|
|
45485
|
-
observer.mutate(variables, mutateOptions).catch(noop$1);
|
|
45486
|
-
}, [observer]);
|
|
45487
|
-
|
|
45488
|
-
if (result.error && shouldThrowError$1(observer.options.useErrorBoundary, [result.error])) {
|
|
45489
|
-
throw result.error;
|
|
45490
|
-
}
|
|
45491
|
-
|
|
45492
|
-
return { ...result,
|
|
45493
|
-
mutate,
|
|
45494
|
-
mutateAsync: result.mutate
|
|
45495
|
-
};
|
|
45496
|
-
} // eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
45497
|
-
|
|
45498
|
-
function noop$1() {}
|
|
45499
|
-
|
|
45500
45315
|
/**
|
|
45501
45316
|
* Checks if emitted event is about cache change and not about observers.
|
|
45502
45317
|
* Useful for persist, where we only want to trigger save when cache is changed.
|
|
@@ -47947,54 +47762,6 @@
|
|
|
47947
47762
|
}
|
|
47948
47763
|
return client$1;
|
|
47949
47764
|
}
|
|
47950
|
-
|
|
47951
|
-
// src/actions/accounts/connect.ts
|
|
47952
|
-
async function connect$1({
|
|
47953
|
-
chainId,
|
|
47954
|
-
connector
|
|
47955
|
-
}) {
|
|
47956
|
-
const client2 = getClient();
|
|
47957
|
-
const activeConnector = client2.connector;
|
|
47958
|
-
if (activeConnector && connector.id === activeConnector.id) throw new ConnectorAlreadyConnectedError();
|
|
47959
|
-
try {
|
|
47960
|
-
client2.setState(x => ({
|
|
47961
|
-
...x,
|
|
47962
|
-
status: "connecting"
|
|
47963
|
-
}));
|
|
47964
|
-
const data = await connector.connect({
|
|
47965
|
-
chainId
|
|
47966
|
-
});
|
|
47967
|
-
client2.setLastUsedConnector(connector.id);
|
|
47968
|
-
client2.setState(x => ({
|
|
47969
|
-
...x,
|
|
47970
|
-
connector,
|
|
47971
|
-
chains: connector?.chains,
|
|
47972
|
-
data,
|
|
47973
|
-
status: "connected"
|
|
47974
|
-
}));
|
|
47975
|
-
client2.storage.setItem("connected", true);
|
|
47976
|
-
return {
|
|
47977
|
-
...data,
|
|
47978
|
-
connector
|
|
47979
|
-
};
|
|
47980
|
-
} catch (err) {
|
|
47981
|
-
client2.setState(x => {
|
|
47982
|
-
return {
|
|
47983
|
-
...x,
|
|
47984
|
-
status: x.connector ? "connected" : "disconnected"
|
|
47985
|
-
};
|
|
47986
|
-
});
|
|
47987
|
-
throw err;
|
|
47988
|
-
}
|
|
47989
|
-
}
|
|
47990
|
-
|
|
47991
|
-
// src/actions/accounts/disconnect.ts
|
|
47992
|
-
async function disconnect() {
|
|
47993
|
-
const client2 = getClient();
|
|
47994
|
-
if (client2.connector) await client2.connector.disconnect();
|
|
47995
|
-
client2.clearState();
|
|
47996
|
-
client2.storage.removeItem("connected");
|
|
47997
|
-
}
|
|
47998
47765
|
function getContract({
|
|
47999
47766
|
address,
|
|
48000
47767
|
abi,
|
|
@@ -48088,57 +47855,6 @@
|
|
|
48088
47855
|
return blockNumber;
|
|
48089
47856
|
}
|
|
48090
47857
|
|
|
48091
|
-
// src/actions/accounts/getAccount.ts
|
|
48092
|
-
function getAccount() {
|
|
48093
|
-
const {
|
|
48094
|
-
data,
|
|
48095
|
-
connector,
|
|
48096
|
-
status
|
|
48097
|
-
} = getClient();
|
|
48098
|
-
switch (status) {
|
|
48099
|
-
case "connected":
|
|
48100
|
-
return {
|
|
48101
|
-
address: data?.account,
|
|
48102
|
-
connector,
|
|
48103
|
-
isConnected: true,
|
|
48104
|
-
isConnecting: false,
|
|
48105
|
-
isDisconnected: false,
|
|
48106
|
-
isReconnecting: false,
|
|
48107
|
-
status
|
|
48108
|
-
};
|
|
48109
|
-
case "reconnecting":
|
|
48110
|
-
return {
|
|
48111
|
-
address: data?.account,
|
|
48112
|
-
connector,
|
|
48113
|
-
isConnected: !!data?.account,
|
|
48114
|
-
isConnecting: false,
|
|
48115
|
-
isDisconnected: false,
|
|
48116
|
-
isReconnecting: true,
|
|
48117
|
-
status
|
|
48118
|
-
};
|
|
48119
|
-
case "connecting":
|
|
48120
|
-
return {
|
|
48121
|
-
address: data?.account,
|
|
48122
|
-
connector,
|
|
48123
|
-
isConnected: false,
|
|
48124
|
-
isConnecting: true,
|
|
48125
|
-
isDisconnected: false,
|
|
48126
|
-
isReconnecting: false,
|
|
48127
|
-
status
|
|
48128
|
-
};
|
|
48129
|
-
case "disconnected":
|
|
48130
|
-
return {
|
|
48131
|
-
address: void 0,
|
|
48132
|
-
connector: void 0,
|
|
48133
|
-
isConnected: false,
|
|
48134
|
-
isConnecting: false,
|
|
48135
|
-
isDisconnected: true,
|
|
48136
|
-
isReconnecting: false,
|
|
48137
|
-
status
|
|
48138
|
-
};
|
|
48139
|
-
}
|
|
48140
|
-
}
|
|
48141
|
-
|
|
48142
47858
|
// src/errors.ts
|
|
48143
47859
|
var RpcError = class extends Error {
|
|
48144
47860
|
constructor(message, options) {
|
|
@@ -48186,13 +47902,6 @@
|
|
|
48186
47902
|
this.name = "ChainNotConfigured";
|
|
48187
47903
|
}
|
|
48188
47904
|
};
|
|
48189
|
-
var ConnectorAlreadyConnectedError = class extends Error {
|
|
48190
|
-
constructor() {
|
|
48191
|
-
super(...arguments);
|
|
48192
|
-
this.name = "ConnectorAlreadyConnectedError";
|
|
48193
|
-
this.message = "Connector already connected";
|
|
48194
|
-
}
|
|
48195
|
-
};
|
|
48196
47905
|
var ConnectorNotFoundError = class extends Error {
|
|
48197
47906
|
constructor() {
|
|
48198
47907
|
super(...arguments);
|
|
@@ -48447,11 +48156,6 @@
|
|
|
48447
48156
|
value: client
|
|
48448
48157
|
});
|
|
48449
48158
|
}
|
|
48450
|
-
function useClient() {
|
|
48451
|
-
const client = P$2(Context);
|
|
48452
|
-
if (!client) throw new Error(["`useClient` must be used within `WagmiConfig`.\n", "Read more: https://wagmi.sh/react/WagmiConfig"].join("\n"));
|
|
48453
|
-
return client;
|
|
48454
|
-
}
|
|
48455
48159
|
var useSyncExternalStore2 = shimExports.useSyncExternalStore;
|
|
48456
48160
|
|
|
48457
48161
|
// src/hooks/utils/query/utils.ts
|
|
@@ -48561,13 +48265,6 @@
|
|
|
48561
48265
|
status
|
|
48562
48266
|
};
|
|
48563
48267
|
}
|
|
48564
|
-
function useMutation(arg1, arg2, arg3) {
|
|
48565
|
-
const options = parseMutationArgs(arg1, arg2, arg3);
|
|
48566
|
-
return useMutation$1({
|
|
48567
|
-
context: queryClientContext,
|
|
48568
|
-
...options
|
|
48569
|
-
});
|
|
48570
|
-
}
|
|
48571
48268
|
function useQuery(arg1, arg2, arg3) {
|
|
48572
48269
|
const parsedOptions = parseQueryArgs(arg1, arg2, arg3);
|
|
48573
48270
|
const baseQuery = useBaseQuery({
|
|
@@ -48725,155 +48422,6 @@
|
|
|
48725
48422
|
scopeKey: enabled ? void 0 : "idle"
|
|
48726
48423
|
});
|
|
48727
48424
|
}
|
|
48728
|
-
var isPlainObject$1 = obj => typeof obj === "object" && !Array.isArray(obj);
|
|
48729
|
-
function useSyncExternalStoreWithTracked(subscribe, getSnapshot, getServerSnapshot = getSnapshot, isEqual = deepEqual$1) {
|
|
48730
|
-
const trackedKeys = F$2([]);
|
|
48731
|
-
const result = withSelectorExports.useSyncExternalStoreWithSelector(subscribe, getSnapshot, getServerSnapshot, x => x, (a, b) => {
|
|
48732
|
-
if (isPlainObject$1(a) && isPlainObject$1(b) && trackedKeys.current.length) {
|
|
48733
|
-
for (const key of trackedKeys.current) {
|
|
48734
|
-
const equal = isEqual(a[key], b[key]);
|
|
48735
|
-
if (!equal) return false;
|
|
48736
|
-
}
|
|
48737
|
-
return true;
|
|
48738
|
-
}
|
|
48739
|
-
return isEqual(a, b);
|
|
48740
|
-
});
|
|
48741
|
-
if (isPlainObject$1(result)) {
|
|
48742
|
-
const trackedResult = {
|
|
48743
|
-
...result
|
|
48744
|
-
};
|
|
48745
|
-
Object.defineProperties(trackedResult, Object.entries(trackedResult).reduce((res, [key, value]) => {
|
|
48746
|
-
return {
|
|
48747
|
-
...res,
|
|
48748
|
-
[key]: {
|
|
48749
|
-
configurable: false,
|
|
48750
|
-
enumerable: true,
|
|
48751
|
-
get: () => {
|
|
48752
|
-
if (!trackedKeys.current.includes(key)) {
|
|
48753
|
-
trackedKeys.current.push(key);
|
|
48754
|
-
}
|
|
48755
|
-
return value;
|
|
48756
|
-
}
|
|
48757
|
-
}
|
|
48758
|
-
};
|
|
48759
|
-
}, {}));
|
|
48760
|
-
return trackedResult;
|
|
48761
|
-
}
|
|
48762
|
-
return result;
|
|
48763
|
-
}
|
|
48764
|
-
|
|
48765
|
-
// src/hooks/accounts/useAccount.ts
|
|
48766
|
-
function useAccount({
|
|
48767
|
-
onConnect,
|
|
48768
|
-
onDisconnect
|
|
48769
|
-
} = {}) {
|
|
48770
|
-
const watchAccount = x$3(callback => {
|
|
48771
|
-
const client = getClient();
|
|
48772
|
-
const unsubscribe = client.subscribe(state => ({
|
|
48773
|
-
address: state.data?.account,
|
|
48774
|
-
connector: state.connector,
|
|
48775
|
-
status: state.status
|
|
48776
|
-
}), (curr, prev) => {
|
|
48777
|
-
if (!!onConnect && prev.status !== "connected" && curr.status === "connected") onConnect({
|
|
48778
|
-
address: curr.address,
|
|
48779
|
-
connector: curr.connector,
|
|
48780
|
-
isReconnected: prev.status === "reconnecting"
|
|
48781
|
-
});
|
|
48782
|
-
if (!!onDisconnect && prev.status === "connected" && curr.status === "disconnected") onDisconnect();
|
|
48783
|
-
return callback(getAccount());
|
|
48784
|
-
});
|
|
48785
|
-
return unsubscribe;
|
|
48786
|
-
}, [onConnect, onDisconnect]);
|
|
48787
|
-
const account = useSyncExternalStoreWithTracked(watchAccount, getAccount);
|
|
48788
|
-
const previousStatusRef = F$2();
|
|
48789
|
-
const {
|
|
48790
|
-
address,
|
|
48791
|
-
connector,
|
|
48792
|
-
status
|
|
48793
|
-
} = account;
|
|
48794
|
-
_$1(() => {
|
|
48795
|
-
if (!!onConnect && previousStatusRef.current === void 0 && status === "connected") onConnect({
|
|
48796
|
-
address,
|
|
48797
|
-
connector,
|
|
48798
|
-
isReconnected: true
|
|
48799
|
-
});
|
|
48800
|
-
previousStatusRef.current = status;
|
|
48801
|
-
}, []);
|
|
48802
|
-
return account;
|
|
48803
|
-
}
|
|
48804
|
-
var mutationKey = args => [{
|
|
48805
|
-
entity: "connect",
|
|
48806
|
-
...args
|
|
48807
|
-
}];
|
|
48808
|
-
var mutationFn = args => {
|
|
48809
|
-
const {
|
|
48810
|
-
connector,
|
|
48811
|
-
chainId
|
|
48812
|
-
} = args;
|
|
48813
|
-
if (!connector) throw new Error("connector is required");
|
|
48814
|
-
return connect$1({
|
|
48815
|
-
connector,
|
|
48816
|
-
chainId
|
|
48817
|
-
});
|
|
48818
|
-
};
|
|
48819
|
-
function useConnect({
|
|
48820
|
-
chainId,
|
|
48821
|
-
connector,
|
|
48822
|
-
onError,
|
|
48823
|
-
onMutate,
|
|
48824
|
-
onSettled,
|
|
48825
|
-
onSuccess
|
|
48826
|
-
} = {}) {
|
|
48827
|
-
const client = useClient();
|
|
48828
|
-
const {
|
|
48829
|
-
data,
|
|
48830
|
-
error,
|
|
48831
|
-
isError,
|
|
48832
|
-
isIdle,
|
|
48833
|
-
isLoading,
|
|
48834
|
-
isSuccess,
|
|
48835
|
-
mutate,
|
|
48836
|
-
mutateAsync,
|
|
48837
|
-
reset,
|
|
48838
|
-
status,
|
|
48839
|
-
variables
|
|
48840
|
-
} = useMutation(mutationKey({
|
|
48841
|
-
connector,
|
|
48842
|
-
chainId
|
|
48843
|
-
}), mutationFn, {
|
|
48844
|
-
onError,
|
|
48845
|
-
onMutate,
|
|
48846
|
-
onSettled,
|
|
48847
|
-
onSuccess
|
|
48848
|
-
});
|
|
48849
|
-
const connect2 = x$3(args => {
|
|
48850
|
-
return mutate({
|
|
48851
|
-
chainId: args?.chainId ?? chainId,
|
|
48852
|
-
connector: args?.connector ?? connector
|
|
48853
|
-
});
|
|
48854
|
-
}, [chainId, connector, mutate]);
|
|
48855
|
-
const connectAsync = x$3(args => {
|
|
48856
|
-
return mutateAsync({
|
|
48857
|
-
chainId: args?.chainId ?? chainId,
|
|
48858
|
-
connector: args?.connector ?? connector
|
|
48859
|
-
});
|
|
48860
|
-
}, [chainId, connector, mutateAsync]);
|
|
48861
|
-
return {
|
|
48862
|
-
connect: connect2,
|
|
48863
|
-
connectAsync,
|
|
48864
|
-
connectors: client.connectors,
|
|
48865
|
-
data,
|
|
48866
|
-
error,
|
|
48867
|
-
isError,
|
|
48868
|
-
isIdle,
|
|
48869
|
-
isLoading,
|
|
48870
|
-
isSuccess,
|
|
48871
|
-
pendingConnector: variables?.connector,
|
|
48872
|
-
reset,
|
|
48873
|
-
status,
|
|
48874
|
-
variables
|
|
48875
|
-
};
|
|
48876
|
-
}
|
|
48877
48425
|
function queryKey6({
|
|
48878
48426
|
address,
|
|
48879
48427
|
args,
|
|
@@ -50128,7 +49676,7 @@
|
|
|
50128
49676
|
}, rankingItem.summaryText)));
|
|
50129
49677
|
}
|
|
50130
49678
|
|
|
50131
|
-
var css_248z$o = "p {\n margin-bottom: 0;\n}\n\n.x-utu-h3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 0.9rem;\n}\n\n.x-utu-h3-balance {\n text-transform: capitalize;\n font-weight: bold;\n font-size: 0.9rem;\n}\n\n.x-utu-error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(252, 229, 70);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.x-utu-spinner {\n margin: 5px;\n display: inline-block;\n border: 3px solid rgb(252, 229, 70);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n}\n\n.x-utu-spinner-default-size {\n width: 21px;\n height: 21px;\n}\n\n.x-utu-section {\n width: 100%;\n}\n.x-utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.x-utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.x-utu-btn {\n padding: 12px;\n border: none;\n border-radius: 10px;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.x-utu-btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-round {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-round-text {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-icon {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n\nbutton.p {\n color: white;\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.logo-position-form {\n position: absolute;\n bottom: 0.3rem;\n right: 22%;\n z-index: 0;\n}\n.logo-position-details {\n position: absolute;\n top: 1rem;\n left: 0;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1.5rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 3%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 5rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.x-utu-text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: rgba(255, 221, 51, 0.1);\n}\n\n.x-utu-video-icon {\n width: 2rem;\n height: 1.4rem;\n}\n.x-utu-video-icon-dark {\n fill: #000000;\n}\n.x-utu-video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .x-utu-section {\n width: 100%;\n }\n .x-utu-section-light {\n border-bottom: 0;\n background-color: #fcf8e5;\n }\n .x-utu-section-dark {\n border-bottom: 0;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .x-utu-h3-balance {\n font-size: 0.8rem;\n }\n .x-utu-h3 {\n font-size: 0.8rem;\n }\n .x-utu-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 5%;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n@media only screen and (min-width: 768px) and (max-width: 991px) {\n .x-utu-btn {\n padding: 10px;\n font-size: 0.9rem;\n }\n}\n/*\nshimmer effect animation\n*/\n.x-utu-skeleton {\n background-color: #e2e5e7;\n background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));\n background-size: 40px 100%;\n background-repeat: no-repeat;\n background-position: left -40px top 0;\n animation: shine 1s ease infinite;\n}\n\n@keyframes shine {\n to {\n background-position: right -40px top 0;\n }\n}\n.x-utu-description {\n background-color: #fcf8e5;\n padding: 5px;\n margin-bottom: 10px;\n width: 100%;\n display: flex;\n flex-direction: row;\n flex-basis: content;\n}\n\n.x-utu-details {\n width: 70%;\n display: flex;\n flex-direction: column;\n margin: 5px 5px;\n}\n\n.x-utu-icon {\n width: 20%;\n min-height: 70px;\n border-radius: 4px;\n margin: auto;\n}\n\n.x-utu-title {\n width: 100%;\n min-height: 28px;\n border-radius: 4px;\n margin-bottom: 5px;\n line-height: 28px;\n}\n\n.x-utu-information {\n min-height: 42px;\n border-radius: 4px;\n width: 100%;\n}\n\n.placeholder-card_wrapper {\n margin-bottom: 0.5rem;\n}\n\n.placeholder-card {\n width: 90%;\n margin-left: 2rem;\n display: flex;\n padding: 2rem 2.5rem 2rem 1.5rem;\n background-color: rgba(255, 221, 51, 0.15);\n min-height: 10rem;\n border-radius: 10px;\n}\n\n.placeholder-icon {\n width: 3rem;\n}\n\n.placeholder-text-title {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 0.9rem;\n align-items: center;\n margin: 0 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n font-style: italic;\n font-weight: 500;\n}\n\n.placeholder-text-body {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 1rem;\n align-items: center;\n margin: 0.5rem 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n}\n\n.target-human-readable {\n padding: 0.5rem;\n text-align: left;\n font-size: 17px;\n text-align: left;\n color: black;\n font-family: sans-serif;\n font-weight: bold;\n}\n\n.utu-feedback-form {\n width:
|
|
49679
|
+
var css_248z$o = "p {\n margin-bottom: 0;\n}\n\n.x-utu-h3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 0.9rem;\n}\n\n.x-utu-h3-balance {\n text-transform: capitalize;\n font-weight: bold;\n font-size: 0.9rem;\n}\n\n.x-utu-error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(252, 229, 70);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.x-utu-spinner {\n margin: 5px;\n display: inline-block;\n border: 3px solid rgb(252, 229, 70);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n}\n\n.x-utu-spinner-default-size {\n width: 21px;\n height: 21px;\n}\n\n.x-utu-section {\n width: 100%;\n}\n.x-utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.x-utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.x-utu-btn {\n padding: 12px;\n border: none;\n border-radius: 10px;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.x-utu-btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-round {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-round-text {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-icon {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n\nbutton.p {\n color: white;\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.logo-position-form {\n position: absolute;\n bottom: 0.3rem;\n right: 22%;\n z-index: 0;\n}\n.logo-position-details {\n position: absolute;\n top: 1rem;\n left: 0;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1.5rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 3%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 5rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.x-utu-text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: rgba(255, 221, 51, 0.1);\n}\n\n.x-utu-video-icon {\n width: 2rem;\n height: 1.4rem;\n}\n.x-utu-video-icon-dark {\n fill: #000000;\n}\n.x-utu-video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .x-utu-section {\n width: 100%;\n }\n .x-utu-section-light {\n border-bottom: 0;\n background-color: #fcf8e5;\n }\n .x-utu-section-dark {\n border-bottom: 0;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .x-utu-h3-balance {\n font-size: 0.8rem;\n }\n .x-utu-h3 {\n font-size: 0.8rem;\n }\n .x-utu-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 5%;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n@media only screen and (min-width: 768px) and (max-width: 991px) {\n .x-utu-btn {\n padding: 10px;\n font-size: 0.9rem;\n }\n}\n/*\nshimmer effect animation\n*/\n.x-utu-skeleton {\n background-color: #e2e5e7;\n background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));\n background-size: 40px 100%;\n background-repeat: no-repeat;\n background-position: left -40px top 0;\n animation: shine 1s ease infinite;\n}\n\n@keyframes shine {\n to {\n background-position: right -40px top 0;\n }\n}\n.x-utu-description {\n background-color: #fcf8e5;\n padding: 5px;\n margin-bottom: 10px;\n width: 100%;\n display: flex;\n flex-direction: row;\n flex-basis: content;\n}\n\n.x-utu-details {\n width: 70%;\n display: flex;\n flex-direction: column;\n margin: 5px 5px;\n}\n\n.x-utu-icon {\n width: 20%;\n min-height: 70px;\n border-radius: 4px;\n margin: auto;\n}\n\n.x-utu-title {\n width: 100%;\n min-height: 28px;\n border-radius: 4px;\n margin-bottom: 5px;\n line-height: 28px;\n}\n\n.x-utu-information {\n min-height: 42px;\n border-radius: 4px;\n width: 100%;\n}\n\n.placeholder-card_wrapper {\n margin-bottom: 0.5rem;\n}\n\n.placeholder-card {\n width: 90%;\n margin-left: 2rem;\n display: flex;\n padding: 2rem 2.5rem 2rem 1.5rem;\n background-color: rgba(255, 221, 51, 0.15);\n min-height: 10rem;\n border-radius: 10px;\n}\n\n.placeholder-icon {\n width: 3rem;\n}\n\n.placeholder-text-title {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 0.9rem;\n align-items: center;\n margin: 0 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n font-style: italic;\n font-weight: 500;\n}\n\n.placeholder-text-body {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 1rem;\n align-items: center;\n margin: 0.5rem 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n}\n\n.target-human-readable {\n padding: 0.5rem;\n text-align: left;\n font-size: 17px;\n text-align: left;\n color: black;\n font-family: sans-serif;\n font-weight: bold;\n}\n\n.utu-feedback-form {\n width: 100%;\n margin: auto;\n}\n\n.utu-feedback-form_title {\n text-align: center;\n height: 3rem;\n background-color: #fcf8e5;\n font-weight: bold;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n\n.x-utu-feedback-form_body_1 {\n display: flex;\n justify-content: space-between;\n}\n\n.x-utu-feedback-details_divider {\n background-color: grey;\n height: 100px;\n width: 3px;\n}";
|
|
50132
49680
|
styleInject(css_248z$o);
|
|
50133
49681
|
|
|
50134
49682
|
var css_248z$n = "p {\n margin-bottom: 0;\n}\n\n.x-utu-h3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 0.9rem;\n}\n\n.x-utu-h3-balance {\n text-transform: capitalize;\n font-weight: bold;\n font-size: 0.9rem;\n}\n\n.x-utu-error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(252, 229, 70);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.x-utu-spinner {\n margin: 5px;\n display: inline-block;\n border: 3px solid rgb(252, 229, 70);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n}\n\n.x-utu-spinner-default-size {\n width: 21px;\n height: 21px;\n}\n\n.x-utu-section {\n width: 100%;\n}\n.x-utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.x-utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.x-utu-btn {\n padding: 12px;\n border: none;\n border-radius: 10px;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.x-utu-btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-round {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-round-text {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-icon {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n\nbutton.p {\n color: white;\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.logo-position-form {\n position: absolute;\n bottom: 0.3rem;\n right: 22%;\n z-index: 0;\n}\n.logo-position-details {\n position: absolute;\n top: 1rem;\n left: 0;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1.5rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 3%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 5rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.x-utu-text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: rgba(255, 221, 51, 0.1);\n}\n\n.x-utu-video-icon {\n width: 2rem;\n height: 1.4rem;\n}\n.x-utu-video-icon-dark {\n fill: #000000;\n}\n.x-utu-video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .x-utu-section {\n width: 100%;\n }\n .x-utu-section-light {\n border-bottom: 0;\n background-color: #fcf8e5;\n }\n .x-utu-section-dark {\n border-bottom: 0;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .x-utu-h3-balance {\n font-size: 0.8rem;\n }\n .x-utu-h3 {\n font-size: 0.8rem;\n }\n .x-utu-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 5%;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n@media only screen and (min-width: 768px) and (max-width: 991px) {\n .x-utu-btn {\n padding: 10px;\n font-size: 0.9rem;\n }\n}\n/*\nshimmer effect animation\n*/\n.x-utu-skeleton {\n background-color: #e2e5e7;\n background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));\n background-size: 40px 100%;\n background-repeat: no-repeat;\n background-position: left -40px top 0;\n animation: shine 1s ease infinite;\n}\n\n@keyframes shine {\n to {\n background-position: right -40px top 0;\n }\n}\n.x-utu-description {\n background-color: #fcf8e5;\n padding: 5px;\n margin-bottom: 10px;\n width: 100%;\n display: flex;\n flex-direction: row;\n flex-basis: content;\n}\n\n.x-utu-details {\n width: 70%;\n display: flex;\n flex-direction: column;\n margin: 5px 5px;\n}\n\n.x-utu-icon {\n width: 20%;\n min-height: 70px;\n border-radius: 4px;\n margin: auto;\n}\n\n.x-utu-title {\n width: 100%;\n min-height: 28px;\n border-radius: 4px;\n margin-bottom: 5px;\n line-height: 28px;\n}\n\n.x-utu-information {\n min-height: 42px;\n border-radius: 4px;\n width: 100%;\n}\n\n.placeholder-card_wrapper {\n margin-bottom: 0.5rem;\n}\n\n.placeholder-card {\n width: 90%;\n margin-left: 2rem;\n display: flex;\n padding: 2rem 2.5rem 2rem 1.5rem;\n background-color: rgba(255, 221, 51, 0.15);\n min-height: 10rem;\n border-radius: 10px;\n}\n\n.placeholder-icon {\n width: 3rem;\n}\n\n.placeholder-text-title {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 0.9rem;\n align-items: center;\n margin: 0 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n font-style: italic;\n font-weight: 500;\n}\n\n.placeholder-text-body {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 1rem;\n align-items: center;\n margin: 0.5rem 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n}\n\n.target-human-readable {\n padding: 0.5rem;\n text-align: left;\n font-size: 17px;\n text-align: left;\n color: black;\n font-family: sans-serif;\n font-weight: bold;\n}\n\n.button {\n cursor: pointer;\n}\n.button:hover {\n background-color: rgb(253, 253, 253);\n}\n.button:active {\n transform: translateY(1px);\n}\n\n.x-utu-badge-set-container {\n width: 6em;\n height: 72px;\n padding: 1rem 1rem 1rem 0;\n}\n.x-utu-badge-set-section {\n display: flex;\n flex-direction: row;\n background-color: rgba(255, 221, 51, 0.1);\n border-radius: 10.07px;\n}\n.x-utu-badge-section {\n display: flex;\n overflow-x: scroll;\n white-space: nowrap;\n padding-bottom: 1rem;\n width: 95%;\n margin: auto;\n /* width */\n /* Track */\n /* Handle */\n /* Handle on hover */\n}\n.x-utu-badge-section-container {\n padding-top: 1rem;\n}\n.x-utu-badge-section > div {\n padding: 1rem;\n}\n.x-utu-badge-section::-webkit-scrollbar {\n width: 10px;\n height: 8px;\n}\n.x-utu-badge-section::-webkit-scrollbar-track {\n background: #f1f1f1;\n border-radius: 10px;\n}\n.x-utu-badge-section::-webkit-scrollbar-thumb {\n background: rgb(252, 229, 70);\n border-radius: 10px;\n}\n.x-utu-badge-section::-webkit-scrollbar-thumb:hover {\n background: #555;\n}\n.x-utu-badge-disable {\n height: 50px;\n width: 50px;\n opacity: 0.6;\n}\n.x-utu-badge-item-text {\n justify-content: center;\n align-items: center;\n color: white;\n}\n.x-utu-badge-text {\n font-size: 0.7rem;\n}\n.x-utu-badge-text-h3 {\n text-align: center;\n}\n.x-utu-badge-text-h3-light {\n color: #000000;\n}\n.x-utu-badge-text-h3-dark {\n color: #ffffff;\n}\n.x-utu-badge-img {\n width: 2rem;\n}\n.x-utu-badge-img-container {\n display: flex;\n justify-content: space-around;\n opacity: 1;\n}\n.x-utu-badge-img-big {\n width: 4.5rem;\n}\n.x-utu-badge-img-big-section {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 1rem;\n}\n\n.x-utu-badge-section-title {\n width: 100%;\n box-sizing: border-box;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .x-utu-badge-section {\n padding-left: 0;\n padding-right: 0;\n }\n}\n@media only screen and (min-width: 1210px) {\n .x-utu-badge-section {\n padding-top: 0;\n }\n}";
|
|
@@ -62978,7 +62526,7 @@
|
|
|
62978
62526
|
}));
|
|
62979
62527
|
}
|
|
62980
62528
|
|
|
62981
|
-
var css_248z$e = "p {\n margin-bottom: 0;\n}\n\n.x-utu-h3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 0.9rem;\n}\n\n.x-utu-h3-balance {\n text-transform: capitalize;\n font-weight: bold;\n font-size: 0.9rem;\n}\n\n.x-utu-error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(252, 229, 70);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.x-utu-spinner {\n margin: 5px;\n display: inline-block;\n border: 3px solid rgb(252, 229, 70);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n}\n\n.x-utu-spinner-default-size {\n width: 21px;\n height: 21px;\n}\n\n.x-utu-section {\n width: 100%;\n}\n.x-utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.x-utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.x-utu-btn {\n padding: 12px;\n border: none;\n border-radius: 10px;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.x-utu-btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-round {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-round-text {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-icon {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n\nbutton.p {\n color: white;\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.logo-position-form {\n position: absolute;\n bottom: 0.3rem;\n right: 22%;\n z-index: 0;\n}\n.logo-position-details {\n position: absolute;\n top: 1rem;\n left: 0;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1.5rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 3%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 5rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.x-utu-text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: rgba(255, 221, 51, 0.1);\n}\n\n.x-utu-video-icon {\n width: 2rem;\n height: 1.4rem;\n}\n.x-utu-video-icon-dark {\n fill: #000000;\n}\n.x-utu-video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .x-utu-section {\n width: 100%;\n }\n .x-utu-section-light {\n border-bottom: 0;\n background-color: #fcf8e5;\n }\n .x-utu-section-dark {\n border-bottom: 0;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .x-utu-h3-balance {\n font-size: 0.8rem;\n }\n .x-utu-h3 {\n font-size: 0.8rem;\n }\n .x-utu-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 5%;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n@media only screen and (min-width: 768px) and (max-width: 991px) {\n .x-utu-btn {\n padding: 10px;\n font-size: 0.9rem;\n }\n}\n/*\nshimmer effect animation\n*/\n.x-utu-skeleton {\n background-color: #e2e5e7;\n background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));\n background-size: 40px 100%;\n background-repeat: no-repeat;\n background-position: left -40px top 0;\n animation: shine 1s ease infinite;\n}\n\n@keyframes shine {\n to {\n background-position: right -40px top 0;\n }\n}\n.x-utu-description {\n background-color: #fcf8e5;\n padding: 5px;\n margin-bottom: 10px;\n width: 100%;\n display: flex;\n flex-direction: row;\n flex-basis: content;\n}\n\n.x-utu-details {\n width: 70%;\n display: flex;\n flex-direction: column;\n margin: 5px 5px;\n}\n\n.x-utu-icon {\n width: 20%;\n min-height: 70px;\n border-radius: 4px;\n margin: auto;\n}\n\n.x-utu-title {\n width: 100%;\n min-height: 28px;\n border-radius: 4px;\n margin-bottom: 5px;\n line-height: 28px;\n}\n\n.x-utu-information {\n min-height: 42px;\n border-radius: 4px;\n width: 100%;\n}\n\n.placeholder-card_wrapper {\n margin-bottom: 0.5rem;\n}\n\n.placeholder-card {\n width: 90%;\n margin-left: 2rem;\n display: flex;\n padding: 2rem 2.5rem 2rem 1.5rem;\n background-color: rgba(255, 221, 51, 0.15);\n min-height: 10rem;\n border-radius: 10px;\n}\n\n.placeholder-icon {\n width: 3rem;\n}\n\n.placeholder-text-title {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 0.9rem;\n align-items: center;\n margin: 0 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n font-style: italic;\n font-weight: 500;\n}\n\n.placeholder-text-body {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 1rem;\n align-items: center;\n margin: 0.5rem 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n}\n\n.target-human-readable {\n padding: 0.5rem;\n text-align: left;\n font-size: 17px;\n text-align: left;\n color: black;\n font-family: sans-serif;\n font-weight: bold;\n}\n\n.x-utu-popup {\n display: flex;\n position: fixed;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n z-index: 2;\n overflow: scroll;\n}\n.x-utu-popup-container {\n z-index: 1001;\n width: 100%;\n}\n.x-utu-popup-container-dark {\n background: transparent;\n}\n.x-utu-popup-container-light {\n background: transparent;\n}\n.x-utu-popup-icon-btn {\n padding: 10px;\n margin-right: 3%;\n font-size: 2.8em;\n border: none;\n background: none;\n transition: all ease-out 0.3s;\n}\n.x-utu-popup-icon-btn:hover {\n transform: scale(1.3);\n opacity: 0.6;\n}\n.x-utu-popup-icon-btn-overlay {\n z-index: 1001;\n}\n.x-utu-popup-icon-btn-light {\n color: #000000;\n}\n.x-utu-popup-icon-btn-dark {\n color: #ffffff;\n}\n.x-utu-popup-container {\n z-index: 1001;\n}\n.x-utu-popup-container-content {\n width:
|
|
62529
|
+
var css_248z$e = "p {\n margin-bottom: 0;\n}\n\n.x-utu-h3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 0.9rem;\n}\n\n.x-utu-h3-balance {\n text-transform: capitalize;\n font-weight: bold;\n font-size: 0.9rem;\n}\n\n.x-utu-error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(252, 229, 70);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.x-utu-spinner {\n margin: 5px;\n display: inline-block;\n border: 3px solid rgb(252, 229, 70);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n}\n\n.x-utu-spinner-default-size {\n width: 21px;\n height: 21px;\n}\n\n.x-utu-section {\n width: 100%;\n}\n.x-utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.x-utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.x-utu-btn {\n padding: 12px;\n border: none;\n border-radius: 10px;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.x-utu-btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-round {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-round-text {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-icon {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n\nbutton.p {\n color: white;\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.logo-position-form {\n position: absolute;\n bottom: 0.3rem;\n right: 22%;\n z-index: 0;\n}\n.logo-position-details {\n position: absolute;\n top: 1rem;\n left: 0;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1.5rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 3%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 5rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.x-utu-text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: rgba(255, 221, 51, 0.1);\n}\n\n.x-utu-video-icon {\n width: 2rem;\n height: 1.4rem;\n}\n.x-utu-video-icon-dark {\n fill: #000000;\n}\n.x-utu-video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .x-utu-section {\n width: 100%;\n }\n .x-utu-section-light {\n border-bottom: 0;\n background-color: #fcf8e5;\n }\n .x-utu-section-dark {\n border-bottom: 0;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .x-utu-h3-balance {\n font-size: 0.8rem;\n }\n .x-utu-h3 {\n font-size: 0.8rem;\n }\n .x-utu-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 5%;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n@media only screen and (min-width: 768px) and (max-width: 991px) {\n .x-utu-btn {\n padding: 10px;\n font-size: 0.9rem;\n }\n}\n/*\nshimmer effect animation\n*/\n.x-utu-skeleton {\n background-color: #e2e5e7;\n background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));\n background-size: 40px 100%;\n background-repeat: no-repeat;\n background-position: left -40px top 0;\n animation: shine 1s ease infinite;\n}\n\n@keyframes shine {\n to {\n background-position: right -40px top 0;\n }\n}\n.x-utu-description {\n background-color: #fcf8e5;\n padding: 5px;\n margin-bottom: 10px;\n width: 100%;\n display: flex;\n flex-direction: row;\n flex-basis: content;\n}\n\n.x-utu-details {\n width: 70%;\n display: flex;\n flex-direction: column;\n margin: 5px 5px;\n}\n\n.x-utu-icon {\n width: 20%;\n min-height: 70px;\n border-radius: 4px;\n margin: auto;\n}\n\n.x-utu-title {\n width: 100%;\n min-height: 28px;\n border-radius: 4px;\n margin-bottom: 5px;\n line-height: 28px;\n}\n\n.x-utu-information {\n min-height: 42px;\n border-radius: 4px;\n width: 100%;\n}\n\n.placeholder-card_wrapper {\n margin-bottom: 0.5rem;\n}\n\n.placeholder-card {\n width: 90%;\n margin-left: 2rem;\n display: flex;\n padding: 2rem 2.5rem 2rem 1.5rem;\n background-color: rgba(255, 221, 51, 0.15);\n min-height: 10rem;\n border-radius: 10px;\n}\n\n.placeholder-icon {\n width: 3rem;\n}\n\n.placeholder-text-title {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 0.9rem;\n align-items: center;\n margin: 0 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n font-style: italic;\n font-weight: 500;\n}\n\n.placeholder-text-body {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 1rem;\n align-items: center;\n margin: 0.5rem 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n}\n\n.target-human-readable {\n padding: 0.5rem;\n text-align: left;\n font-size: 17px;\n text-align: left;\n color: black;\n font-family: sans-serif;\n font-weight: bold;\n}\n\n.x-utu-popup {\n width: 65%;\n margin: auto;\n display: flex;\n position: fixed;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n z-index: 2;\n overflow: scroll;\n}\n.x-utu-popup-container {\n z-index: 1001;\n width: 100%;\n}\n.x-utu-popup-container-dark {\n background: transparent;\n}\n.x-utu-popup-container-light {\n background: transparent;\n}\n.x-utu-popup-icon-btn {\n padding: 10px;\n margin-right: 3%;\n font-size: 2.8em;\n border: none;\n background: none;\n transition: all ease-out 0.3s;\n}\n.x-utu-popup-icon-btn:hover {\n transform: scale(1.3);\n opacity: 0.6;\n}\n.x-utu-popup-icon-btn-overlay {\n z-index: 1001;\n}\n.x-utu-popup-icon-btn-light {\n color: #000000;\n}\n.x-utu-popup-icon-btn-dark {\n color: #ffffff;\n}\n.x-utu-popup-container {\n z-index: 1001;\n}\n.x-utu-popup-container-content {\n width: 100%;\n margin: auto;\n display: flex;\n justify-content: flex-end;\n border-radius: 10px 10px 0 0;\n background-color: #fcf8e5;\n}\n.x-utu-popup-container-dark {\n background: transparent;\n}\n.x-utu-popup-container-light {\n background: transparent;\n}\n.x-utu-popup-background {\n position: fixed;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n background-color: rgba(0, 0, 0, 0.5);\n min-width: 100%;\n min-height: 100%;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .x-utu-popup {\n width: 65%;\n margin: auto;\n min-height: 100%;\n }\n .x-utu-popup-container {\n align-items: center;\n min-width: 100%;\n min-height: 120%;\n }\n .x-utu-popup-container-content {\n align-items: center;\n margin-top: 2%;\n }\n}\n@media only screen and (max-width: 768px) {\n .x-utu-popup-container-content {\n width: 100%;\n background-color: #ffffff;\n justify-content: center;\n }\n}";
|
|
62982
62530
|
styleInject(css_248z$e);
|
|
62983
62531
|
|
|
62984
62532
|
/* eslint-disable no-nested-ternary */
|
|
@@ -63403,7 +62951,7 @@
|
|
|
63403
62951
|
}, "Disconnect Wallet"))));
|
|
63404
62952
|
}
|
|
63405
62953
|
|
|
63406
|
-
var css_248z$8 = "p {\n margin-bottom: 0;\n}\n\n.x-utu-h3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 0.9rem;\n}\n\n.x-utu-h3-balance {\n text-transform: capitalize;\n font-weight: bold;\n font-size: 0.9rem;\n}\n\n.x-utu-error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(252, 229, 70);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.x-utu-spinner {\n margin: 5px;\n display: inline-block;\n border: 3px solid rgb(252, 229, 70);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n}\n\n.x-utu-spinner-default-size {\n width: 21px;\n height: 21px;\n}\n\n.x-utu-section {\n width: 100%;\n}\n.x-utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.x-utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.x-utu-btn {\n padding: 12px;\n border: none;\n border-radius: 10px;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.x-utu-btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-round {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-round-text {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-icon {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n\nbutton.p {\n color: white;\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.logo-position-form {\n position: absolute;\n bottom: 0.3rem;\n right: 22%;\n z-index: 0;\n}\n.logo-position-details {\n position: absolute;\n top: 1rem;\n left: 0;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1.5rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 3%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 5rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.x-utu-text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: rgba(255, 221, 51, 0.1);\n}\n\n.x-utu-video-icon {\n width: 2rem;\n height: 1.4rem;\n}\n.x-utu-video-icon-dark {\n fill: #000000;\n}\n.x-utu-video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .x-utu-section {\n width: 100%;\n }\n .x-utu-section-light {\n border-bottom: 0;\n background-color: #fcf8e5;\n }\n .x-utu-section-dark {\n border-bottom: 0;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .x-utu-h3-balance {\n font-size: 0.8rem;\n }\n .x-utu-h3 {\n font-size: 0.8rem;\n }\n .x-utu-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 5%;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n@media only screen and (min-width: 768px) and (max-width: 991px) {\n .x-utu-btn {\n padding: 10px;\n font-size: 0.9rem;\n }\n}\n/*\nshimmer effect animation\n*/\n.x-utu-skeleton {\n background-color: #e2e5e7;\n background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));\n background-size: 40px 100%;\n background-repeat: no-repeat;\n background-position: left -40px top 0;\n animation: shine 1s ease infinite;\n}\n\n@keyframes shine {\n to {\n background-position: right -40px top 0;\n }\n}\n.x-utu-description {\n background-color: #fcf8e5;\n padding: 5px;\n margin-bottom: 10px;\n width: 100%;\n display: flex;\n flex-direction: row;\n flex-basis: content;\n}\n\n.x-utu-details {\n width: 70%;\n display: flex;\n flex-direction: column;\n margin: 5px 5px;\n}\n\n.x-utu-icon {\n width: 20%;\n min-height: 70px;\n border-radius: 4px;\n margin: auto;\n}\n\n.x-utu-title {\n width: 100%;\n min-height: 28px;\n border-radius: 4px;\n margin-bottom: 5px;\n line-height: 28px;\n}\n\n.x-utu-information {\n min-height: 42px;\n border-radius: 4px;\n width: 100%;\n}\n\n.placeholder-card_wrapper {\n margin-bottom: 0.5rem;\n}\n\n.placeholder-card {\n width: 90%;\n margin-left: 2rem;\n display: flex;\n padding: 2rem 2.5rem 2rem 1.5rem;\n background-color: rgba(255, 221, 51, 0.15);\n min-height: 10rem;\n border-radius: 10px;\n}\n\n.placeholder-icon {\n width: 3rem;\n}\n\n.placeholder-text-title {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 0.9rem;\n align-items: center;\n margin: 0 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n font-style: italic;\n font-weight: 500;\n}\n\n.placeholder-text-body {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 1rem;\n align-items: center;\n margin: 0.5rem 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n}\n\n.target-human-readable {\n padding: 0.5rem;\n text-align: left;\n font-size: 17px;\n text-align: left;\n color: black;\n font-family: sans-serif;\n font-weight: bold;\n}\n\n.video-msg {\n position: absolute;\n}\n\n.trust-video {\n border: none;\n position: absolute;\n object-fit: cover;\n width: 100%;\n height: 100%;\n transform: rotateY(180deg);\n -webkit-transform: rotateY(180deg); /* Safari and Chrome */\n -moz-transform: rotateY(180deg); /* Firefox */\n}\n.trust-video-container {\n width: 25rem;\n height: 40rem;\n position: relative;\n}\n.trust-video-btn {\n padding: 0 !important;\n border: none !important;\n background: none !important;\n}\n.trust-video-wrapper {\n width: 65%;\n margin: auto;\n display: flex;\n justify-content: center;\n background-color: #fcf8e5;\n overflow: hidden;\n align-items: center;\n padding: 2rem;\n}\n.trust-video-wrapper:hover .trust-video-controls {\n visibility: visible;\n opacity: 1;\n}\n.trust-video-msg {\n display: flex;\n align-items: center;\n}\n.trust-video-controls {\n position: absolute;\n bottom: 0;\n margin-top: 35%;\n transform: translate(0, -30%);\n border-radius: 10px;\n align-items: center;\n justify-content: space-between;\n visibility: hidden;\n opacity: 0;\n transition: all 0.25s ease-out;\n display: none;\n}\n.trust-video-controls.show {\n display: flex;\n}\n.trust-video-play {\n border-color: transparent;\n transition: 0.3s;\n margin: auto;\n margin-left: 3rem;\n margin-right: 3rem;\n line-height: 1.5em;\n width: 4em;\n height: 4em;\n padding: 0.6rem;\n padding-right: 0.3rem;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n font-size: 0.9rem;\n border-radius: 50%;\n font: normal normal normal 18px/1;\n}\n.trust-video-play:before {\n content: \"\\f04b\";\n}\n.trust-video-play.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-play-btn {\n border-color: transparent;\n}\n.trust-video-pause {\n border-color: transparent;\n transition: 0.3s;\n margin: auto;\n margin-left: 3rem;\n margin-right: 3rem;\n line-height: 1.5em;\n width: 4em;\n height: 4em;\n padding: 0.6rem;\n padding-right: 0.4rem;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n font-size: 0.9rem;\n border-radius: 50%;\n font: normal normal normal 18px/1;\n}\n.trust-video-pause:before {\n content: \"\\f04b\";\n}\n.trust-video-pause.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-pause-btn {\n border-color: transparent;\n}\n.trust-video-volume {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 1em;\n padding: 0.6rem;\n border-radius: 20%;\n line-height: 1.5em;\n width: 3em;\n height: 3em;\n background-color: rgba(255, 221, 51, 0.7);\n left: 20px;\n}\n.trust-video-fullscreen {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 0.65em;\n line-height: 2.5rem;\n padding: 0.6rem;\n width: 5em;\n border-radius: 20%;\n margin-right: 5%;\n background-color: rgba(255, 221, 51, 0.7);\n right: 20px;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 1280px) {\n .trust-video-play {\n margin-left: 5rem;\n margin-right: 5rem;\n }\n .trust-video-pause {\n margin-left: 5rem;\n margin-right: 5rem;\n }\n .trust-video-controls {\n height: 10em;\n }\n}\n@media only screen and (max-width: 526px) {\n .trust-video-play {\n width: 3em;\n height: 3em;\n padding: 0.5rem;\n padding-right: 0.3rem;\n }\n .trust-video-pause {\n width: 3em;\n height: 3em;\n padding: 0.5rem;\n padding-right: 0.3rem;\n }\n .trust-video-volume {\n width: 2em;\n height: 2em;\n padding: 0.4rem;\n }\n .trust-video-fullscreen {\n width: 3em;\n padding: 0.4rem;\n }\n .trust-video-controls {\n transform: translate(0, -100%);\n }\n}\np {\n margin-bottom: 0;\n}\n\n.x-utu-h3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 0.9rem;\n}\n\n.x-utu-h3-balance {\n text-transform: capitalize;\n font-weight: bold;\n font-size: 0.9rem;\n}\n\n.x-utu-error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(252, 229, 70);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.x-utu-spinner {\n margin: 5px;\n display: inline-block;\n border: 3px solid rgb(252, 229, 70);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n}\n\n.x-utu-spinner-default-size {\n width: 21px;\n height: 21px;\n}\n\n.x-utu-section {\n width: 100%;\n}\n.x-utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.x-utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.x-utu-btn {\n padding: 12px;\n border: none;\n border-radius: 10px;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.x-utu-btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-round {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-round-text {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-icon {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n\nbutton.p {\n color: white;\n}\n\n.submit-result, .submit-success, .submit-error {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.logo-position-form {\n position: absolute;\n bottom: 0.3rem;\n right: 22%;\n z-index: 0;\n}\n.logo-position-details {\n position: absolute;\n top: 1rem;\n left: 0;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1.5rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 3%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 5rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.x-utu-text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: rgba(255, 221, 51, 0.1);\n}\n\n.x-utu-video-icon {\n width: 2rem;\n height: 1.4rem;\n}\n.x-utu-video-icon-dark {\n fill: #000000;\n}\n.x-utu-video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .x-utu-section {\n width: 100%;\n }\n .x-utu-section-light {\n border-bottom: 0;\n background-color: #fcf8e5;\n }\n .x-utu-section-dark {\n border-bottom: 0;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .x-utu-h3-balance {\n font-size: 0.8rem;\n }\n .x-utu-h3 {\n font-size: 0.8rem;\n }\n .x-utu-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 5%;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n@media only screen and (min-width: 768px) and (max-width: 991px) {\n .x-utu-btn {\n padding: 10px;\n font-size: 0.9rem;\n }\n}\n/*\nshimmer effect animation\n*/\n.x-utu-skeleton {\n background-color: #e2e5e7;\n background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));\n background-size: 40px 100%;\n background-repeat: no-repeat;\n background-position: left -40px top 0;\n animation: shine 1s ease infinite;\n}\n\n@keyframes shine {\n to {\n background-position: right -40px top 0;\n }\n}\n.x-utu-description {\n background-color: #fcf8e5;\n padding: 5px;\n margin-bottom: 10px;\n width: 100%;\n display: flex;\n flex-direction: row;\n flex-basis: content;\n}\n\n.x-utu-details {\n width: 70%;\n display: flex;\n flex-direction: column;\n margin: 5px 5px;\n}\n\n.x-utu-icon {\n width: 20%;\n min-height: 70px;\n border-radius: 4px;\n margin: auto;\n}\n\n.x-utu-title {\n width: 100%;\n min-height: 28px;\n border-radius: 4px;\n margin-bottom: 5px;\n line-height: 28px;\n}\n\n.x-utu-information {\n min-height: 42px;\n border-radius: 4px;\n width: 100%;\n}\n\n.placeholder-card_wrapper {\n margin-bottom: 0.5rem;\n}\n\n.placeholder-card {\n width: 90%;\n margin-left: 2rem;\n display: flex;\n padding: 2rem 2.5rem 2rem 1.5rem;\n background-color: rgba(255, 221, 51, 0.15);\n min-height: 10rem;\n border-radius: 10px;\n}\n\n.placeholder-icon {\n width: 3rem;\n}\n\n.placeholder-text-title {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 0.9rem;\n align-items: center;\n margin: 0 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n font-style: italic;\n font-weight: 500;\n}\n\n.placeholder-text-body {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 1rem;\n align-items: center;\n margin: 0.5rem 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n}\n\n.target-human-readable {\n padding: 0.5rem;\n text-align: left;\n font-size: 17px;\n text-align: left;\n color: black;\n font-family: sans-serif;\n font-weight: bold;\n}\n\n.x-utu-feedback-details {\n width: 65%;\n margin: auto;\n background-color: #fcf8e5;\n height: 30rem;\n}\n\n.x-utu-feedback-details_title {\n text-align: center;\n height: 3rem;\n background-color: #fcf8e5;\n font-weight: bold;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n\n.x-utu-feedback-details_body_1 {\n width: 100%;\n display: flex;\n background-color: #fcf8e5;\n justify-content: space-around;\n}\n\n.x-utu-feedback-details_body_VideoShow {\n width: 46%;\n}\n\n.x-utu-feedback-details_body_StarRatingShow {\n width: 46%;\n}\n\n.x-utu-feedback-details_body_2 {\n width: 100%;\n margin-bottom: 2%;\n background-color: #fcf8e5;\n}\n\n.x-utu-feedback-details_divider {\n background-color: rgba(189, 195, 199, 0.3);\n height: 160px;\n width: 3px;\n}\n\n@media only screen and (max-width: 1000px) {\n .x-utu-feedback-details_divider {\n display: none;\n }\n .x-utu-feedback-details_body_1 {\n flex-direction: column;\n }\n}";
|
|
62954
|
+
var css_248z$8 = "p {\n margin-bottom: 0;\n}\n\n.x-utu-h3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 0.9rem;\n}\n\n.x-utu-h3-balance {\n text-transform: capitalize;\n font-weight: bold;\n font-size: 0.9rem;\n}\n\n.x-utu-error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(252, 229, 70);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.x-utu-spinner {\n margin: 5px;\n display: inline-block;\n border: 3px solid rgb(252, 229, 70);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n}\n\n.x-utu-spinner-default-size {\n width: 21px;\n height: 21px;\n}\n\n.x-utu-section {\n width: 100%;\n}\n.x-utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.x-utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.x-utu-btn {\n padding: 12px;\n border: none;\n border-radius: 10px;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.x-utu-btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-round {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-round-text {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-icon {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n\nbutton.p {\n color: white;\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.logo-position-form {\n position: absolute;\n bottom: 0.3rem;\n right: 22%;\n z-index: 0;\n}\n.logo-position-details {\n position: absolute;\n top: 1rem;\n left: 0;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1.5rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 3%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 5rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.x-utu-text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: rgba(255, 221, 51, 0.1);\n}\n\n.x-utu-video-icon {\n width: 2rem;\n height: 1.4rem;\n}\n.x-utu-video-icon-dark {\n fill: #000000;\n}\n.x-utu-video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .x-utu-section {\n width: 100%;\n }\n .x-utu-section-light {\n border-bottom: 0;\n background-color: #fcf8e5;\n }\n .x-utu-section-dark {\n border-bottom: 0;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .x-utu-h3-balance {\n font-size: 0.8rem;\n }\n .x-utu-h3 {\n font-size: 0.8rem;\n }\n .x-utu-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 5%;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n@media only screen and (min-width: 768px) and (max-width: 991px) {\n .x-utu-btn {\n padding: 10px;\n font-size: 0.9rem;\n }\n}\n/*\nshimmer effect animation\n*/\n.x-utu-skeleton {\n background-color: #e2e5e7;\n background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));\n background-size: 40px 100%;\n background-repeat: no-repeat;\n background-position: left -40px top 0;\n animation: shine 1s ease infinite;\n}\n\n@keyframes shine {\n to {\n background-position: right -40px top 0;\n }\n}\n.x-utu-description {\n background-color: #fcf8e5;\n padding: 5px;\n margin-bottom: 10px;\n width: 100%;\n display: flex;\n flex-direction: row;\n flex-basis: content;\n}\n\n.x-utu-details {\n width: 70%;\n display: flex;\n flex-direction: column;\n margin: 5px 5px;\n}\n\n.x-utu-icon {\n width: 20%;\n min-height: 70px;\n border-radius: 4px;\n margin: auto;\n}\n\n.x-utu-title {\n width: 100%;\n min-height: 28px;\n border-radius: 4px;\n margin-bottom: 5px;\n line-height: 28px;\n}\n\n.x-utu-information {\n min-height: 42px;\n border-radius: 4px;\n width: 100%;\n}\n\n.placeholder-card_wrapper {\n margin-bottom: 0.5rem;\n}\n\n.placeholder-card {\n width: 90%;\n margin-left: 2rem;\n display: flex;\n padding: 2rem 2.5rem 2rem 1.5rem;\n background-color: rgba(255, 221, 51, 0.15);\n min-height: 10rem;\n border-radius: 10px;\n}\n\n.placeholder-icon {\n width: 3rem;\n}\n\n.placeholder-text-title {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 0.9rem;\n align-items: center;\n margin: 0 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n font-style: italic;\n font-weight: 500;\n}\n\n.placeholder-text-body {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 1rem;\n align-items: center;\n margin: 0.5rem 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n}\n\n.target-human-readable {\n padding: 0.5rem;\n text-align: left;\n font-size: 17px;\n text-align: left;\n color: black;\n font-family: sans-serif;\n font-weight: bold;\n}\n\n.video-msg {\n position: absolute;\n}\n\n.trust-video {\n border: none;\n position: absolute;\n object-fit: cover;\n width: 100%;\n height: 100%;\n transform: rotateY(180deg);\n -webkit-transform: rotateY(180deg); /* Safari and Chrome */\n -moz-transform: rotateY(180deg); /* Firefox */\n}\n.trust-video-container {\n width: 25rem;\n height: 40rem;\n position: relative;\n}\n.trust-video-btn {\n padding: 0 !important;\n border: none !important;\n background: none !important;\n}\n.trust-video-wrapper {\n width: 65%;\n margin: auto;\n display: flex;\n justify-content: center;\n background-color: #fcf8e5;\n overflow: hidden;\n align-items: center;\n padding: 2rem;\n}\n.trust-video-wrapper:hover .trust-video-controls {\n visibility: visible;\n opacity: 1;\n}\n.trust-video-msg {\n display: flex;\n align-items: center;\n}\n.trust-video-controls {\n position: absolute;\n bottom: 0;\n margin-top: 35%;\n transform: translate(0, -30%);\n border-radius: 10px;\n align-items: center;\n justify-content: space-between;\n visibility: hidden;\n opacity: 0;\n transition: all 0.25s ease-out;\n display: none;\n}\n.trust-video-controls.show {\n display: flex;\n}\n.trust-video-play {\n border-color: transparent;\n transition: 0.3s;\n margin: auto;\n margin-left: 3rem;\n margin-right: 3rem;\n line-height: 1.5em;\n width: 4em;\n height: 4em;\n padding: 0.6rem;\n padding-right: 0.3rem;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n font-size: 0.9rem;\n border-radius: 50%;\n font: normal normal normal 18px/1;\n}\n.trust-video-play:before {\n content: \"\\f04b\";\n}\n.trust-video-play.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-play-btn {\n border-color: transparent;\n}\n.trust-video-pause {\n border-color: transparent;\n transition: 0.3s;\n margin: auto;\n margin-left: 3rem;\n margin-right: 3rem;\n line-height: 1.5em;\n width: 4em;\n height: 4em;\n padding: 0.6rem;\n padding-right: 0.4rem;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n font-size: 0.9rem;\n border-radius: 50%;\n font: normal normal normal 18px/1;\n}\n.trust-video-pause:before {\n content: \"\\f04b\";\n}\n.trust-video-pause.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-pause-btn {\n border-color: transparent;\n}\n.trust-video-volume {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 1em;\n padding: 0.6rem;\n border-radius: 20%;\n line-height: 1.5em;\n width: 3em;\n height: 3em;\n background-color: rgba(255, 221, 51, 0.7);\n left: 20px;\n}\n.trust-video-fullscreen {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 0.65em;\n line-height: 2.5rem;\n padding: 0.6rem;\n width: 5em;\n border-radius: 20%;\n margin-right: 5%;\n background-color: rgba(255, 221, 51, 0.7);\n right: 20px;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 1280px) {\n .trust-video-play {\n margin-left: 5rem;\n margin-right: 5rem;\n }\n .trust-video-pause {\n margin-left: 5rem;\n margin-right: 5rem;\n }\n .trust-video-controls {\n height: 10em;\n }\n}\n@media only screen and (max-width: 526px) {\n .trust-video-play {\n width: 3em;\n height: 3em;\n padding: 0.5rem;\n padding-right: 0.3rem;\n }\n .trust-video-pause {\n width: 3em;\n height: 3em;\n padding: 0.5rem;\n padding-right: 0.3rem;\n }\n .trust-video-volume {\n width: 2em;\n height: 2em;\n padding: 0.4rem;\n }\n .trust-video-fullscreen {\n width: 3em;\n padding: 0.4rem;\n }\n .trust-video-controls {\n transform: translate(0, -100%);\n }\n}\np {\n margin-bottom: 0;\n}\n\n.x-utu-h3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 0.9rem;\n}\n\n.x-utu-h3-balance {\n text-transform: capitalize;\n font-weight: bold;\n font-size: 0.9rem;\n}\n\n.x-utu-error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(252, 229, 70);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.x-utu-spinner {\n margin: 5px;\n display: inline-block;\n border: 3px solid rgb(252, 229, 70);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n}\n\n.x-utu-spinner-default-size {\n width: 21px;\n height: 21px;\n}\n\n.x-utu-section {\n width: 100%;\n}\n.x-utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.x-utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.x-utu-btn {\n padding: 12px;\n border: none;\n border-radius: 10px;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.x-utu-btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-round {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-round-text {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-icon {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n\nbutton.p {\n color: white;\n}\n\n.submit-result, .submit-success, .submit-error {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.logo-position-form {\n position: absolute;\n bottom: 0.3rem;\n right: 22%;\n z-index: 0;\n}\n.logo-position-details {\n position: absolute;\n top: 1rem;\n left: 0;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1.5rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 3%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 5rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.x-utu-text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: rgba(255, 221, 51, 0.1);\n}\n\n.x-utu-video-icon {\n width: 2rem;\n height: 1.4rem;\n}\n.x-utu-video-icon-dark {\n fill: #000000;\n}\n.x-utu-video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .x-utu-section {\n width: 100%;\n }\n .x-utu-section-light {\n border-bottom: 0;\n background-color: #fcf8e5;\n }\n .x-utu-section-dark {\n border-bottom: 0;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .x-utu-h3-balance {\n font-size: 0.8rem;\n }\n .x-utu-h3 {\n font-size: 0.8rem;\n }\n .x-utu-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 5%;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n@media only screen and (min-width: 768px) and (max-width: 991px) {\n .x-utu-btn {\n padding: 10px;\n font-size: 0.9rem;\n }\n}\n/*\nshimmer effect animation\n*/\n.x-utu-skeleton {\n background-color: #e2e5e7;\n background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));\n background-size: 40px 100%;\n background-repeat: no-repeat;\n background-position: left -40px top 0;\n animation: shine 1s ease infinite;\n}\n\n@keyframes shine {\n to {\n background-position: right -40px top 0;\n }\n}\n.x-utu-description {\n background-color: #fcf8e5;\n padding: 5px;\n margin-bottom: 10px;\n width: 100%;\n display: flex;\n flex-direction: row;\n flex-basis: content;\n}\n\n.x-utu-details {\n width: 70%;\n display: flex;\n flex-direction: column;\n margin: 5px 5px;\n}\n\n.x-utu-icon {\n width: 20%;\n min-height: 70px;\n border-radius: 4px;\n margin: auto;\n}\n\n.x-utu-title {\n width: 100%;\n min-height: 28px;\n border-radius: 4px;\n margin-bottom: 5px;\n line-height: 28px;\n}\n\n.x-utu-information {\n min-height: 42px;\n border-radius: 4px;\n width: 100%;\n}\n\n.placeholder-card_wrapper {\n margin-bottom: 0.5rem;\n}\n\n.placeholder-card {\n width: 90%;\n margin-left: 2rem;\n display: flex;\n padding: 2rem 2.5rem 2rem 1.5rem;\n background-color: rgba(255, 221, 51, 0.15);\n min-height: 10rem;\n border-radius: 10px;\n}\n\n.placeholder-icon {\n width: 3rem;\n}\n\n.placeholder-text-title {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 0.9rem;\n align-items: center;\n margin: 0 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n font-style: italic;\n font-weight: 500;\n}\n\n.placeholder-text-body {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 1rem;\n align-items: center;\n margin: 0.5rem 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n}\n\n.target-human-readable {\n padding: 0.5rem;\n text-align: left;\n font-size: 17px;\n text-align: left;\n color: black;\n font-family: sans-serif;\n font-weight: bold;\n}\n\n.x-utu-feedback-details {\n width: 100%;\n margin: auto;\n background-color: #fcf8e5;\n height: 30rem;\n}\n\n.x-utu-feedback-details_title {\n text-align: center;\n height: 3rem;\n background-color: #fcf8e5;\n font-weight: bold;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n\n.x-utu-feedback-details_body_1 {\n width: 100%;\n display: flex;\n background-color: #fcf8e5;\n justify-content: space-around;\n}\n\n.x-utu-feedback-details_body_VideoShow {\n width: 46%;\n}\n\n.x-utu-feedback-details_body_StarRatingShow {\n width: 46%;\n}\n\n.x-utu-feedback-details_body_2 {\n width: 100%;\n margin-bottom: 2%;\n background-color: #fcf8e5;\n}\n\n.x-utu-feedback-details_divider {\n background-color: rgba(189, 195, 199, 0.3);\n height: 160px;\n width: 3px;\n}\n\n@media only screen and (max-width: 1000px) {\n .x-utu-feedback-details_divider {\n display: none;\n }\n .x-utu-feedback-details_body_1 {\n flex-direction: column;\n }\n}";
|
|
63407
62955
|
styleInject(css_248z$8);
|
|
63408
62956
|
|
|
63409
62957
|
var css_248z$7 = "p {\n margin-bottom: 0;\n}\n\n.x-utu-h3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 0.9rem;\n}\n\n.x-utu-h3-balance {\n text-transform: capitalize;\n font-weight: bold;\n font-size: 0.9rem;\n}\n\n.x-utu-error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(252, 229, 70);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.x-utu-spinner {\n margin: 5px;\n display: inline-block;\n border: 3px solid rgb(252, 229, 70);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n}\n\n.x-utu-spinner-default-size {\n width: 21px;\n height: 21px;\n}\n\n.x-utu-section {\n width: 100%;\n}\n.x-utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.x-utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.x-utu-btn {\n padding: 12px;\n border: none;\n border-radius: 10px;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.x-utu-btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-round {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-round-text {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-icon {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n\nbutton.p {\n color: white;\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.logo-position-form {\n position: absolute;\n bottom: 0.3rem;\n right: 22%;\n z-index: 0;\n}\n.logo-position-details {\n position: absolute;\n top: 1rem;\n left: 0;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1.5rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 3%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 5rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.x-utu-text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: rgba(255, 221, 51, 0.1);\n}\n\n.x-utu-video-icon {\n width: 2rem;\n height: 1.4rem;\n}\n.x-utu-video-icon-dark {\n fill: #000000;\n}\n.x-utu-video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .x-utu-section {\n width: 100%;\n }\n .x-utu-section-light {\n border-bottom: 0;\n background-color: #fcf8e5;\n }\n .x-utu-section-dark {\n border-bottom: 0;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .x-utu-h3-balance {\n font-size: 0.8rem;\n }\n .x-utu-h3 {\n font-size: 0.8rem;\n }\n .x-utu-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 5%;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n@media only screen and (min-width: 768px) and (max-width: 991px) {\n .x-utu-btn {\n padding: 10px;\n font-size: 0.9rem;\n }\n}\n/*\nshimmer effect animation\n*/\n.x-utu-skeleton {\n background-color: #e2e5e7;\n background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));\n background-size: 40px 100%;\n background-repeat: no-repeat;\n background-position: left -40px top 0;\n animation: shine 1s ease infinite;\n}\n\n@keyframes shine {\n to {\n background-position: right -40px top 0;\n }\n}\n.x-utu-description {\n background-color: #fcf8e5;\n padding: 5px;\n margin-bottom: 10px;\n width: 100%;\n display: flex;\n flex-direction: row;\n flex-basis: content;\n}\n\n.x-utu-details {\n width: 70%;\n display: flex;\n flex-direction: column;\n margin: 5px 5px;\n}\n\n.x-utu-icon {\n width: 20%;\n min-height: 70px;\n border-radius: 4px;\n margin: auto;\n}\n\n.x-utu-title {\n width: 100%;\n min-height: 28px;\n border-radius: 4px;\n margin-bottom: 5px;\n line-height: 28px;\n}\n\n.x-utu-information {\n min-height: 42px;\n border-radius: 4px;\n width: 100%;\n}\n\n.placeholder-card_wrapper {\n margin-bottom: 0.5rem;\n}\n\n.placeholder-card {\n width: 90%;\n margin-left: 2rem;\n display: flex;\n padding: 2rem 2.5rem 2rem 1.5rem;\n background-color: rgba(255, 221, 51, 0.15);\n min-height: 10rem;\n border-radius: 10px;\n}\n\n.placeholder-icon {\n width: 3rem;\n}\n\n.placeholder-text-title {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 0.9rem;\n align-items: center;\n margin: 0 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n font-style: italic;\n font-weight: 500;\n}\n\n.placeholder-text-body {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 1rem;\n align-items: center;\n margin: 0.5rem 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n}\n\n.target-human-readable {\n padding: 0.5rem;\n text-align: left;\n font-size: 17px;\n text-align: left;\n color: black;\n font-family: sans-serif;\n font-weight: bold;\n}\n\n.x-utu-feedback-details-endorsements {\n width: 100%;\n padding: 1rem 1.5rem;\n}\n\n.x-utu-feedback-details-endorsements-wrapper {\n width: 100%;\n display: flex;\n margin: 1rem 0;\n justify-content: start;\n white-space: nowrap;\n overflow-x: scroll;\n}\n\n/* width */\n.x-utu-feedback-details-endorsements-wrapper::-webkit-scrollbar {\n width: 10px;\n height: 8px;\n}\n\n/* Track */\n.x-utu-feedback-details-endorsements-wrapper::-webkit-scrollbar-track {\n background: #f1f1f1;\n border-radius: 10px;\n}\n\n/* Handle */\n.x-utu-feedback-details-endorsements-wrapper::-webkit-scrollbar-thumb {\n background: rgb(252, 229, 70);\n border-radius: 10px;\n}\n\n/* Handle on hover */\n.x-utu-feedback-details-endorsements-wrapper::-webkit-scrollbar-thumb:hover {\n background: #555;\n}\n\n.x-utu-feedback-details-endorsements-body {\n display: flex;\n margin-right: 1rem;\n margin-bottom: 1rem;\n border-radius: 10px;\n padding: 1.5rem;\n background-color: rgba(255, 221, 51, 0.15);\n}\n\n.x-utu-feedback-details-endorsements-body_text {\n margin: 1rem 0.5rem;\n}\n\n/*\n******************************************** old css\n*/\n.endor-text-section {\n width: 50%;\n}\n\n.endor-title {\n display: flex;\n justify-self: center;\n text-align: center;\n}\n.endor-avatar {\n width: 2rem;\n}\n.endor-text {\n justify-content: space-around;\n padding-left: 3rem;\n padding-right: 0;\n font-size: 1rem;\n align-items: center;\n}\n.endor-text-light {\n color: black;\n}\n.endor-text-dark {\n color: white;\n}\n.endor-text-body {\n display: flex;\n}\n.endor-text-section {\n width: 100%;\n display: flex;\n align-items: center;\n justify-content: center;\n margin-top: 0;\n padding-top: 1rem;\n padding-bottom: 2rem;\n}\n.endor-text-section-no-data {\n display: flex;\n justify-content: flex-start;\n}\n.endor-text-stakes-no-data {\n display: flex;\n flex-direction: row;\n align-items: center;\n margin-top: 2rem;\n}\n.endor-text-stakes-item {\n font-size: 1rem;\n}\n.endor-text-stakes-item-light {\n color: black;\n}\n.endor-text-stakes-item-dark {\n color: white;\n}\n.endor-text-stakes-item-2 {\n font-size: 0.8rem;\n}\n.endor-text-stakes-item-2-light {\n color: black;\n}\n.endor-text-stakes-item-2-dark {\n color: white;\n}\n.endor-text-contacts-section {\n padding-left: 1rem;\n padding-right: 0;\n margin-top: 1rem;\n font-size: 0.7rem;\n width: 22rem;\n flex-wrap: wrap;\n text-align: left;\n}\n.endor-text-contacts-section-light {\n color: black;\n}\n.endor-text-contacts-section-dark {\n color: white;\n}\n.endor-text-contacts-body {\n font-size: 0.7rem;\n margin-top: 0.5em;\n}\n.endor-text-truncate {\n display: inline-block;\n max-width: 5rem;\n vertical-align: bottom;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.endor-text-image-item {\n margin-top: 1rem;\n height: 3rem;\n border-radius: 50%;\n}\n.endor-text-image-item-light {\n border: 2px solid rgb(252, 229, 70);\n}\n.endor-text-image-item-dark {\n border: 2px solid rgb(252, 229, 70);\n}\n\n@media only screen and (min-width: 768px) {\n .endor-title {\n display: flex;\n justify-self: center;\n text-align: center;\n }\n .endor-text {\n padding-left: 0;\n }\n .endor-text-section {\n padding-bottom: 1rem;\n margin-top: 0;\n }\n .endor-text-body {\n padding-left: 0rem;\n padding-right: 0rem;\n }\n .endor-text-contacts-body {\n font-size: 1rem;\n }\n .endor-text-stakes-item {\n font-size: 1.5rem;\n }\n .endor-text-stakes-item-2 {\n font-size: 1rem;\n }\n}\n@media only screen and (min-width: 768px) {\n .endor-section {\n margin-top: 4rem;\n }\n}\n@media only screen and (min-width: 1481px) {\n .endor-text-section {\n align-items: flex-start;\n justify-content: flex-start;\n }\n}";
|
|
@@ -110794,22 +110342,21 @@
|
|
|
110794
110342
|
function UnlockGateWay(_a) {
|
|
110795
110343
|
var _b;
|
|
110796
110344
|
var _this = this;
|
|
110797
|
-
var children = _a.children
|
|
110345
|
+
var children = _a.children,
|
|
110346
|
+
address = _a.address;
|
|
110798
110347
|
var network = 80001;
|
|
110799
|
-
|
|
110800
|
-
address = _c.address;
|
|
110801
|
-
_c.connector;
|
|
110348
|
+
// const {address, connector} = useAccount();
|
|
110802
110349
|
var lockAddress = "0x9ed4453b57abd4397b7f672feb769ade76dc4c8e";
|
|
110803
|
-
var
|
|
110350
|
+
var _c = useContractRead({
|
|
110804
110351
|
address: lockAddress,
|
|
110805
110352
|
abi: PublicLockV13.abi,
|
|
110806
110353
|
functionName: "balanceOf",
|
|
110807
110354
|
args: [address],
|
|
110808
110355
|
watch: true
|
|
110809
110356
|
}),
|
|
110810
|
-
data =
|
|
110811
|
-
isError =
|
|
110812
|
-
isLoading =
|
|
110357
|
+
data = _c.data,
|
|
110358
|
+
isError = _c.isError,
|
|
110359
|
+
isLoading = _c.isLoading;
|
|
110813
110360
|
var paywallConfig = {
|
|
110814
110361
|
locks: (_b = {}, _b[lockAddress] = {
|
|
110815
110362
|
network: network
|
|
@@ -110859,7 +110406,11 @@
|
|
|
110859
110406
|
width: "100%",
|
|
110860
110407
|
textAlign: "center"
|
|
110861
110408
|
}
|
|
110862
|
-
}, y$2("
|
|
110409
|
+
}, y$2("p", {
|
|
110410
|
+
style: {
|
|
110411
|
+
fontSize: "14px"
|
|
110412
|
+
}
|
|
110413
|
+
}, "At the moment you do not have a membership. Please buy a membership to be able to see signal."), y$2("button", {
|
|
110863
110414
|
style: {
|
|
110864
110415
|
width: "20%",
|
|
110865
110416
|
marginTop: "5%",
|
|
@@ -110869,7 +110420,7 @@
|
|
|
110869
110420
|
},
|
|
110870
110421
|
type: "button",
|
|
110871
110422
|
onClick: checkout
|
|
110872
|
-
}, "Buy Membership to
|
|
110423
|
+
}, "Buy Membership to see signal"));
|
|
110873
110424
|
}
|
|
110874
110425
|
return y$2("div", null, children);
|
|
110875
110426
|
}
|
|
@@ -110880,10 +110431,10 @@
|
|
|
110880
110431
|
var targetHumanReadable = props[ATTR_TARGET_HUMAN_READABLE];
|
|
110881
110432
|
var sourceUuid = props[ATTR_SOURCE_UUID];
|
|
110882
110433
|
var targetUuid = props[ATTR_TARGET_UUID];
|
|
110883
|
-
|
|
110884
|
-
|
|
110885
|
-
|
|
110886
|
-
})
|
|
110434
|
+
// const {isConnected} = useAccount();
|
|
110435
|
+
// const {connect} = useConnect({
|
|
110436
|
+
// connector: new InjectedConnector()
|
|
110437
|
+
// });
|
|
110887
110438
|
var getTargetHumanReadableToDisplay = function () {
|
|
110888
110439
|
var targetHumanReadableToReturn;
|
|
110889
110440
|
switch (targetType) {
|
|
@@ -110901,24 +110452,9 @@
|
|
|
110901
110452
|
submitStatus = _a.submitStatus;
|
|
110902
110453
|
return y$2(BaseComponent, null, y$2("style", null, css_248z$8), y$2("div", {
|
|
110903
110454
|
className: "x-utu-feedback-details"
|
|
110904
|
-
},
|
|
110905
|
-
|
|
110906
|
-
|
|
110907
|
-
textAlign: "center"
|
|
110908
|
-
}
|
|
110909
|
-
}, y$2("button", {
|
|
110910
|
-
style: {
|
|
110911
|
-
width: "20%",
|
|
110912
|
-
marginTop: "5%",
|
|
110913
|
-
backgroundColor: "#FCE546FF",
|
|
110914
|
-
padding: "10px",
|
|
110915
|
-
border: "none"
|
|
110916
|
-
},
|
|
110917
|
-
type: "button",
|
|
110918
|
-
onClick: function () {
|
|
110919
|
-
return connect();
|
|
110920
|
-
}
|
|
110921
|
-
}, "Connect your wallet"), " "), isConnected && y$2("div", null, y$2(UnlockGateWay, null, y$2("div", {
|
|
110455
|
+
}, y$2("div", null, y$2(UnlockGateWay, {
|
|
110456
|
+
address: sourceUuid
|
|
110457
|
+
}, y$2("div", {
|
|
110922
110458
|
className: "x-utu-feedback-details_title"
|
|
110923
110459
|
}, y$2("p", null, "Show Feedback For ( ", targetHumanReadableToDisplay, " )", targetType ? y$2("p", null, " Signal Type: ", targetType, " ") : "")), y$2("div", {
|
|
110924
110460
|
className: "x-utu-feedback-details_body_1"
|
|
@@ -110944,24 +110480,7 @@
|
|
|
110944
110480
|
})), y$2(EndorsementsList, __assign({}, props, {
|
|
110945
110481
|
feedbackSummary: feedbackSummary,
|
|
110946
110482
|
submitStatus: submitStatus
|
|
110947
|
-
}))))
|
|
110948
|
-
style: {
|
|
110949
|
-
width: "100%",
|
|
110950
|
-
textAlign: "center",
|
|
110951
|
-
marginTop: "2rem"
|
|
110952
|
-
}
|
|
110953
|
-
}, y$2("button", {
|
|
110954
|
-
style: {
|
|
110955
|
-
width: "20%",
|
|
110956
|
-
backgroundColor: "#FCE546FF",
|
|
110957
|
-
padding: "10px",
|
|
110958
|
-
border: "none"
|
|
110959
|
-
},
|
|
110960
|
-
type: "button",
|
|
110961
|
-
onClick: function () {
|
|
110962
|
-
return disconnect();
|
|
110963
|
-
}
|
|
110964
|
-
}, "disconnect your wallet")))));
|
|
110483
|
+
})))))));
|
|
110965
110484
|
}
|
|
110966
110485
|
|
|
110967
110486
|
var css_248z = "p {\n margin-bottom: 0;\n}\n\n.x-utu-h3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 0.9rem;\n}\n\n.x-utu-h3-balance {\n text-transform: capitalize;\n font-weight: bold;\n font-size: 0.9rem;\n}\n\n.x-utu-error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(252, 229, 70);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.x-utu-spinner {\n margin: 5px;\n display: inline-block;\n border: 3px solid rgb(252, 229, 70);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n}\n\n.x-utu-spinner-default-size {\n width: 21px;\n height: 21px;\n}\n\n.x-utu-section {\n width: 100%;\n}\n.x-utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.x-utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.x-utu-btn {\n padding: 12px;\n border: none;\n border-radius: 10px;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.x-utu-btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-round {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-round-text {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-icon {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n\nbutton.p {\n color: white;\n}\n\n.submit-result, .submit-error, .submit-success {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.logo-position-form {\n position: absolute;\n bottom: 0.3rem;\n right: 22%;\n z-index: 0;\n}\n.logo-position-details {\n position: absolute;\n top: 1rem;\n left: 0;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1.5rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 3%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 5rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.x-utu-text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: rgba(255, 221, 51, 0.1);\n}\n\n.x-utu-video-icon {\n width: 2rem;\n height: 1.4rem;\n}\n.x-utu-video-icon-dark {\n fill: #000000;\n}\n.x-utu-video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .x-utu-section {\n width: 100%;\n }\n .x-utu-section-light {\n border-bottom: 0;\n background-color: #fcf8e5;\n }\n .x-utu-section-dark {\n border-bottom: 0;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .x-utu-h3-balance {\n font-size: 0.8rem;\n }\n .x-utu-h3 {\n font-size: 0.8rem;\n }\n .x-utu-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 5%;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n@media only screen and (min-width: 768px) and (max-width: 991px) {\n .x-utu-btn {\n padding: 10px;\n font-size: 0.9rem;\n }\n}\n/*\nshimmer effect animation\n*/\n.x-utu-skeleton {\n background-color: #e2e5e7;\n background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));\n background-size: 40px 100%;\n background-repeat: no-repeat;\n background-position: left -40px top 0;\n animation: shine 1s ease infinite;\n}\n\n@keyframes shine {\n to {\n background-position: right -40px top 0;\n }\n}\n.x-utu-description {\n background-color: #fcf8e5;\n padding: 5px;\n margin-bottom: 10px;\n width: 100%;\n display: flex;\n flex-direction: row;\n flex-basis: content;\n}\n\n.x-utu-details {\n width: 70%;\n display: flex;\n flex-direction: column;\n margin: 5px 5px;\n}\n\n.x-utu-icon {\n width: 20%;\n min-height: 70px;\n border-radius: 4px;\n margin: auto;\n}\n\n.x-utu-title {\n width: 100%;\n min-height: 28px;\n border-radius: 4px;\n margin-bottom: 5px;\n line-height: 28px;\n}\n\n.x-utu-information {\n min-height: 42px;\n border-radius: 4px;\n width: 100%;\n}\n\n.placeholder-card_wrapper {\n margin-bottom: 0.5rem;\n}\n\n.placeholder-card {\n width: 90%;\n margin-left: 2rem;\n display: flex;\n padding: 2rem 2.5rem 2rem 1.5rem;\n background-color: rgba(255, 221, 51, 0.15);\n min-height: 10rem;\n border-radius: 10px;\n}\n\n.placeholder-icon {\n width: 3rem;\n}\n\n.placeholder-text-title {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 0.9rem;\n align-items: center;\n margin: 0 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n font-style: italic;\n font-weight: 500;\n}\n\n.placeholder-text-body {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 1rem;\n align-items: center;\n margin: 0.5rem 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n}\n\n.target-human-readable {\n padding: 0.5rem;\n text-align: left;\n font-size: 17px;\n text-align: left;\n color: black;\n font-family: sans-serif;\n font-weight: bold;\n}\n\np {\n margin-bottom: 0;\n}\n\n.x-utu-h3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 0.9rem;\n}\n\n.x-utu-h3-balance {\n text-transform: capitalize;\n font-weight: bold;\n font-size: 0.9rem;\n}\n\n.x-utu-error {\n color: #e80054;\n}\n\n:host {\n margin: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 14px;\n font-weight: 300;\n line-height: 1.5;\n color: #000000;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: #000000;\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0);\n }\n 50% {\n transform: rotate(180deg);\n border-top-color: rgb(252, 229, 70);\n border-bottom-color: rgb(155, 152, 152);\n border-right-color: transparent;\n border-left-color: transparent;\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.x-utu-spinner {\n margin: 5px;\n display: inline-block;\n border: 3px solid rgb(252, 229, 70);\n border-top-color: transparent;\n border-bottom-color: transparent;\n border-radius: 50%;\n animation: spin 1s infinite;\n}\n\n.x-utu-spinner-default-size {\n width: 21px;\n height: 21px;\n}\n\n.x-utu-section {\n width: 100%;\n}\n.x-utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.x-utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.x-utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.x-utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.x-utu-btn {\n padding: 12px;\n border: none;\n border-radius: 10px;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}\n.x-utu-btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.x-utu-btn-round {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-round-text {\n color: rgb(253, 253, 253) !important;\n}\n.x-utu-btn-icon {\n border: none;\n background: none;\n padding: 0;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-weight: 500;\n font-size: 14px;\n}\n\nbutton.p {\n color: white;\n}\n\n.submit-result, .submit-success, .submit-error {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-content: center;\n text-align: center;\n}\n.logo-position-form {\n position: absolute;\n bottom: 0.3rem;\n right: 22%;\n z-index: 0;\n}\n.logo-position-details {\n position: absolute;\n top: 1rem;\n left: 0;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-player {\n position: absolute;\n bottom: -0.5rem;\n left: 22rem;\n z-index: 0;\n display: none;\n width: 0.5rem;\n}\n.logo-position-mobile {\n position: absolute;\n top: -1.5rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 3%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 5rem;\n}\n.logo-video-section {\n position: relative;\n}\n.logo-video-position {\n position: absolute;\n z-index: 0;\n display: none;\n width: 5rem;\n left: 21rem;\n top: 35.6rem;\n}\n\n.x-utu-text-area {\n resize: vertical;\n min-height: 8rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.9rem;\n background-color: rgba(255, 221, 51, 0.1);\n}\n\n.x-utu-video-icon {\n width: 2rem;\n height: 1.4rem;\n}\n.x-utu-video-icon-dark {\n fill: #000000;\n}\n.x-utu-video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .x-utu-section {\n width: 100%;\n }\n .x-utu-section-light {\n border-bottom: 0;\n background-color: #fcf8e5;\n }\n .x-utu-section-dark {\n border-bottom: 0;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .x-utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .x-utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .x-utu-h3-balance {\n font-size: 0.8rem;\n }\n .x-utu-h3 {\n font-size: 0.8rem;\n }\n .x-utu-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n position: absolute;\n left: 5%;\n bottom: 5%;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n@media only screen and (min-width: 768px) and (max-width: 991px) {\n .x-utu-btn {\n padding: 10px;\n font-size: 0.9rem;\n }\n}\n/*\nshimmer effect animation\n*/\n.x-utu-skeleton {\n background-color: #e2e5e7;\n background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));\n background-size: 40px 100%;\n background-repeat: no-repeat;\n background-position: left -40px top 0;\n animation: shine 1s ease infinite;\n}\n\n@keyframes shine {\n to {\n background-position: right -40px top 0;\n }\n}\n.x-utu-description {\n background-color: #fcf8e5;\n padding: 5px;\n margin-bottom: 10px;\n width: 100%;\n display: flex;\n flex-direction: row;\n flex-basis: content;\n}\n\n.x-utu-details {\n width: 70%;\n display: flex;\n flex-direction: column;\n margin: 5px 5px;\n}\n\n.x-utu-icon {\n width: 20%;\n min-height: 70px;\n border-radius: 4px;\n margin: auto;\n}\n\n.x-utu-title {\n width: 100%;\n min-height: 28px;\n border-radius: 4px;\n margin-bottom: 5px;\n line-height: 28px;\n}\n\n.x-utu-information {\n min-height: 42px;\n border-radius: 4px;\n width: 100%;\n}\n\n.placeholder-card_wrapper {\n margin-bottom: 0.5rem;\n}\n\n.placeholder-card {\n width: 90%;\n margin-left: 2rem;\n display: flex;\n padding: 2rem 2.5rem 2rem 1.5rem;\n background-color: rgba(255, 221, 51, 0.15);\n min-height: 10rem;\n border-radius: 10px;\n}\n\n.placeholder-icon {\n width: 3rem;\n}\n\n.placeholder-text-title {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 0.9rem;\n align-items: center;\n margin: 0 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n font-style: italic;\n font-weight: 500;\n}\n\n.placeholder-text-body {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 1rem;\n align-items: center;\n margin: 0.5rem 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n}\n\n.target-human-readable {\n padding: 0.5rem;\n text-align: left;\n font-size: 17px;\n text-align: left;\n color: black;\n font-family: sans-serif;\n font-weight: bold;\n}\n\n.video-msg {\n position: absolute;\n}\n\n.trust-video {\n border: none;\n position: absolute;\n object-fit: cover;\n width: 100%;\n height: 100%;\n transform: rotateY(180deg);\n -webkit-transform: rotateY(180deg); /* Safari and Chrome */\n -moz-transform: rotateY(180deg); /* Firefox */\n}\n.trust-video-container {\n width: 25rem;\n height: 40rem;\n position: relative;\n}\n.trust-video-btn {\n padding: 0 !important;\n border: none !important;\n background: none !important;\n}\n.trust-video-wrapper {\n width: 65%;\n margin: auto;\n display: flex;\n justify-content: center;\n background-color: #fcf8e5;\n overflow: hidden;\n align-items: center;\n padding: 2rem;\n}\n.trust-video-wrapper:hover .trust-video-controls {\n visibility: visible;\n opacity: 1;\n}\n.trust-video-msg {\n display: flex;\n align-items: center;\n}\n.trust-video-controls {\n position: absolute;\n bottom: 0;\n margin-top: 35%;\n transform: translate(0, -30%);\n border-radius: 10px;\n align-items: center;\n justify-content: space-between;\n visibility: hidden;\n opacity: 0;\n transition: all 0.25s ease-out;\n display: none;\n}\n.trust-video-controls.show {\n display: flex;\n}\n.trust-video-play {\n border-color: transparent;\n transition: 0.3s;\n margin: auto;\n margin-left: 3rem;\n margin-right: 3rem;\n line-height: 1.5em;\n width: 4em;\n height: 4em;\n padding: 0.6rem;\n padding-right: 0.3rem;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n font-size: 0.9rem;\n border-radius: 50%;\n font: normal normal normal 18px/1;\n}\n.trust-video-play:before {\n content: \"\\f04b\";\n}\n.trust-video-play.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-play-btn {\n border-color: transparent;\n}\n.trust-video-pause {\n border-color: transparent;\n transition: 0.3s;\n margin: auto;\n margin-left: 3rem;\n margin-right: 3rem;\n line-height: 1.5em;\n width: 4em;\n height: 4em;\n padding: 0.6rem;\n padding-right: 0.4rem;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n font-size: 0.9rem;\n border-radius: 50%;\n font: normal normal normal 18px/1;\n}\n.trust-video-pause:before {\n content: \"\\f04b\";\n}\n.trust-video-pause.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-pause-btn {\n border-color: transparent;\n}\n.trust-video-volume {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 1em;\n padding: 0.6rem;\n border-radius: 20%;\n line-height: 1.5em;\n width: 3em;\n height: 3em;\n background-color: rgba(255, 221, 51, 0.7);\n left: 20px;\n}\n.trust-video-fullscreen {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 0.65em;\n line-height: 2.5rem;\n padding: 0.6rem;\n width: 5em;\n border-radius: 20%;\n margin-right: 5%;\n background-color: rgba(255, 221, 51, 0.7);\n right: 20px;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 1280px) {\n .trust-video-play {\n margin-left: 5rem;\n margin-right: 5rem;\n }\n .trust-video-pause {\n margin-left: 5rem;\n margin-right: 5rem;\n }\n .trust-video-controls {\n height: 10em;\n }\n}\n@media only screen and (max-width: 526px) {\n .trust-video-play {\n width: 3em;\n height: 3em;\n padding: 0.5rem;\n padding-right: 0.3rem;\n }\n .trust-video-pause {\n width: 3em;\n height: 3em;\n padding: 0.5rem;\n padding-right: 0.3rem;\n }\n .trust-video-volume {\n width: 2em;\n height: 2em;\n padding: 0.4rem;\n }\n .trust-video-fullscreen {\n width: 3em;\n padding: 0.4rem;\n }\n .trust-video-controls {\n transform: translate(0, -100%);\n }\n}\n.x-utu-feedback-details-popup {\n width: 100%;\n padding: 0.5rem;\n border-radius: 10px;\n display: flex;\n flex-direction: column;\n align-items: stretch;\n justify-content: center;\n}\n\n.x-utu-feedback-details-popup_btn {\n padding: 12px;\n border: none;\n border-radius: 10px;\n font-size: 14px;\n font-weight: 500;\n font-family: Roboto, system-ui, -apple-system, \"Segoe UI\", \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n background-color: rgb(252, 229, 70);\n}";
|