@ututrust/web-components 1.2.5 → 1.2.6
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 +369 -313
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -42186,6 +42186,115 @@
|
|
|
42186
42186
|
}, h$2("style", null, !excludeFonts && h$2(p$1, null, "@import \"https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap\";"), !excludeBootstrap && h$2(p$1, null, "@import \"https://getbootstrap.com/docs/5.0/dist/css/bootstrap-reboot.min.css\"; @import \"https://getbootstrap.com/docs/5.0/dist/css/bootstrap-grid.min.css\"; @import \"https://getbootstrap.com/docs/5.0/dist/css/bootstrap-utilities.min.css\";"), style), children));
|
|
42187
42187
|
}
|
|
42188
42188
|
|
|
42189
|
+
var _SWITCH_CHAIN_PARAMS, _ADD_CHAIN_PARAMS, _UTT_CONTRACT_ADDRESS;
|
|
42190
|
+
/**
|
|
42191
|
+
* Parameter interface definition for wallet_addEthereumChain
|
|
42192
|
+
* Copied from https://docs.metamask.io/guide/rpc-api.html#unrestricted-methods
|
|
42193
|
+
*/
|
|
42194
|
+
|
|
42195
|
+
/**
|
|
42196
|
+
* Convers a number to a 0x-prefixed hexadecimal string
|
|
42197
|
+
* @param n
|
|
42198
|
+
*/
|
|
42199
|
+
function toHexString(n) {
|
|
42200
|
+
return hexStripZeros(hexlify(n));
|
|
42201
|
+
}
|
|
42202
|
+
|
|
42203
|
+
var SWITCH_CHAIN_PARAMS = (_SWITCH_CHAIN_PARAMS = {}, _defineProperty$2(_SWITCH_CHAIN_PARAMS, NETWORK_NAME.polygon_mainnet, {
|
|
42204
|
+
chainId: toHexString(137)
|
|
42205
|
+
}), _defineProperty$2(_SWITCH_CHAIN_PARAMS, NETWORK_NAME.polygon_mumbai, {
|
|
42206
|
+
chainId: toHexString(80001)
|
|
42207
|
+
}), _SWITCH_CHAIN_PARAMS);
|
|
42208
|
+
var ADD_CHAIN_PARAMS = (_ADD_CHAIN_PARAMS = {}, _defineProperty$2(_ADD_CHAIN_PARAMS, NETWORK_NAME.polygon_mainnet, {
|
|
42209
|
+
chainId: SWITCH_CHAIN_PARAMS[NETWORK_NAME.polygon_mainnet].chainId,
|
|
42210
|
+
chainName: "Polygon",
|
|
42211
|
+
nativeCurrency: {
|
|
42212
|
+
name: "MATIC",
|
|
42213
|
+
symbol: "MATIC",
|
|
42214
|
+
decimals: 18
|
|
42215
|
+
},
|
|
42216
|
+
rpcUrls: ["https://polygon-rpc.com"],
|
|
42217
|
+
blockExplorerUrls: ["https://polygonscan.com"]
|
|
42218
|
+
}), _defineProperty$2(_ADD_CHAIN_PARAMS, NETWORK_NAME.polygon_mumbai, {
|
|
42219
|
+
chainId: SWITCH_CHAIN_PARAMS[NETWORK_NAME.polygon_mumbai].chainId,
|
|
42220
|
+
chainName: "Mumbai",
|
|
42221
|
+
nativeCurrency: {
|
|
42222
|
+
name: "MATIC",
|
|
42223
|
+
symbol: "MATIC",
|
|
42224
|
+
decimals: 18
|
|
42225
|
+
},
|
|
42226
|
+
rpcUrls: ["https://rpc-mumbai.maticvigil.com"],
|
|
42227
|
+
blockExplorerUrls: ["https://mumbai.polygonscan.com"]
|
|
42228
|
+
}), _ADD_CHAIN_PARAMS);
|
|
42229
|
+
var UTT_CONTRACT_ADDRESS = (_UTT_CONTRACT_ADDRESS = {}, _defineProperty$2(_UTT_CONTRACT_ADDRESS, NETWORK_NAME.polygon_mainnet, "0xbA6de5f4a98d2AEbb289d1136194D05Ee24C426f"), _defineProperty$2(_UTT_CONTRACT_ADDRESS, NETWORK_NAME.polygon_mumbai, "0x19bc90FfBDCaD53c48eF0b08A67B0D2563AEE2a8"), _UTT_CONTRACT_ADDRESS);
|
|
42230
|
+
function addNetwork(_x, _x2) {
|
|
42231
|
+
return _addNetwork.apply(this, arguments);
|
|
42232
|
+
}
|
|
42233
|
+
|
|
42234
|
+
function _addNetwork() {
|
|
42235
|
+
_addNetwork = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(provider, networkName) {
|
|
42236
|
+
var network;
|
|
42237
|
+
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
42238
|
+
while (1) {
|
|
42239
|
+
switch (_context.prev = _context.next) {
|
|
42240
|
+
case 0:
|
|
42241
|
+
network = ADD_CHAIN_PARAMS[networkName];
|
|
42242
|
+
_context.next = 3;
|
|
42243
|
+
return provider.request({
|
|
42244
|
+
method: "wallet_addEthereumChain",
|
|
42245
|
+
params: [network]
|
|
42246
|
+
});
|
|
42247
|
+
|
|
42248
|
+
case 3:
|
|
42249
|
+
case "end":
|
|
42250
|
+
return _context.stop();
|
|
42251
|
+
}
|
|
42252
|
+
}
|
|
42253
|
+
}, _callee);
|
|
42254
|
+
}));
|
|
42255
|
+
return _addNetwork.apply(this, arguments);
|
|
42256
|
+
}
|
|
42257
|
+
|
|
42258
|
+
function requestNetworkChange(_x3, _x4) {
|
|
42259
|
+
return _requestNetworkChange.apply(this, arguments);
|
|
42260
|
+
}
|
|
42261
|
+
|
|
42262
|
+
function _requestNetworkChange() {
|
|
42263
|
+
_requestNetworkChange = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(provider, networkName) {
|
|
42264
|
+
var network;
|
|
42265
|
+
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
|
42266
|
+
while (1) {
|
|
42267
|
+
switch (_context2.prev = _context2.next) {
|
|
42268
|
+
case 0:
|
|
42269
|
+
network = SWITCH_CHAIN_PARAMS[networkName];
|
|
42270
|
+
_context2.next = 3;
|
|
42271
|
+
return provider.request({
|
|
42272
|
+
method: "wallet_switchEthereumChain",
|
|
42273
|
+
params: [network]
|
|
42274
|
+
});
|
|
42275
|
+
|
|
42276
|
+
case 3:
|
|
42277
|
+
case "end":
|
|
42278
|
+
return _context2.stop();
|
|
42279
|
+
}
|
|
42280
|
+
}
|
|
42281
|
+
}, _callee2);
|
|
42282
|
+
}));
|
|
42283
|
+
return _requestNetworkChange.apply(this, arguments);
|
|
42284
|
+
}
|
|
42285
|
+
|
|
42286
|
+
function getDefaultNetworkName() {
|
|
42287
|
+
return config.production ? NETWORK_NAME.polygon_mainnet : NETWORK_NAME.polygon_mumbai;
|
|
42288
|
+
}
|
|
42289
|
+
function getUTTContractAddress(networkName) {
|
|
42290
|
+
return UTT_CONTRACT_ADDRESS[networkName];
|
|
42291
|
+
}
|
|
42292
|
+
function getProvider() {
|
|
42293
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
42294
|
+
// @ts-ignore
|
|
42295
|
+
return window.utuWeb3Provider || window.ethereum;
|
|
42296
|
+
}
|
|
42297
|
+
|
|
42189
42298
|
function useAuth() {
|
|
42190
42299
|
var _useState = p(getAccessTokenFromLocalStorage()),
|
|
42191
42300
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -42213,12 +42322,11 @@
|
|
|
42213
42322
|
|
|
42214
42323
|
function _addressSignatureVerification() {
|
|
42215
42324
|
_addressSignatureVerification = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
|
42216
|
-
var _window;
|
|
42217
|
-
|
|
42218
42325
|
var overrideApiUrl,
|
|
42219
42326
|
walletProvider,
|
|
42220
42327
|
cookies,
|
|
42221
42328
|
utuApiBase,
|
|
42329
|
+
_provider,
|
|
42222
42330
|
provider,
|
|
42223
42331
|
signer,
|
|
42224
42332
|
address,
|
|
@@ -42234,30 +42342,31 @@
|
|
|
42234
42342
|
overrideApiUrl = _args.length > 0 && _args[0] !== undefined ? _args[0] : null;
|
|
42235
42343
|
walletProvider = _args.length > 1 && _args[1] !== undefined ? _args[1] : null;
|
|
42236
42344
|
cookies = _args.length > 2 && _args[2] !== undefined ? _args[2] : false;
|
|
42237
|
-
utuApiBase = (overrideApiUrl !== null && overrideApiUrl !== void 0 ? overrideApiUrl : config.production) ? UTU_API_BASE_URL_PRODUCTION : UTU_API_BASE_URL_TEST;
|
|
42345
|
+
utuApiBase = (overrideApiUrl !== null && overrideApiUrl !== void 0 ? overrideApiUrl : config.production) ? UTU_API_BASE_URL_PRODUCTION : UTU_API_BASE_URL_TEST;
|
|
42346
|
+
_provider = getProvider(); // @ts-ignore
|
|
42238
42347
|
|
|
42239
|
-
if (!(!
|
|
42240
|
-
_context.next =
|
|
42348
|
+
if (!(!_provider && !walletProvider)) {
|
|
42349
|
+
_context.next = 7;
|
|
42241
42350
|
break;
|
|
42242
42351
|
}
|
|
42243
42352
|
|
|
42244
42353
|
return _context.abrupt("return", null);
|
|
42245
42354
|
|
|
42246
|
-
case
|
|
42355
|
+
case 7:
|
|
42247
42356
|
// @ts-ignore
|
|
42248
|
-
provider = new Web3Provider(walletProvider ||
|
|
42357
|
+
provider = new Web3Provider(walletProvider || _provider);
|
|
42249
42358
|
signer = provider.getSigner();
|
|
42250
|
-
_context.next =
|
|
42359
|
+
_context.next = 11;
|
|
42251
42360
|
return signer.getAddress();
|
|
42252
42361
|
|
|
42253
|
-
case
|
|
42362
|
+
case 11:
|
|
42254
42363
|
address = _context.sent;
|
|
42255
|
-
_context.next =
|
|
42364
|
+
_context.next = 14;
|
|
42256
42365
|
return signer.signMessage("Sign in at UTU");
|
|
42257
42366
|
|
|
42258
|
-
case
|
|
42367
|
+
case 14:
|
|
42259
42368
|
signature = _context.sent;
|
|
42260
|
-
_context.next =
|
|
42369
|
+
_context.next = 17;
|
|
42261
42370
|
return axios.post("".concat(utuApiBase).concat(API_VERIFY_ADDRESS), {
|
|
42262
42371
|
address: address,
|
|
42263
42372
|
signature: signature
|
|
@@ -42265,16 +42374,16 @@
|
|
|
42265
42374
|
withCredentials: !!cookies
|
|
42266
42375
|
});
|
|
42267
42376
|
|
|
42268
|
-
case
|
|
42377
|
+
case 17:
|
|
42269
42378
|
_yield$axios$post = _context.sent;
|
|
42270
42379
|
data = _yield$axios$post.data;
|
|
42271
|
-
_context.next =
|
|
42380
|
+
_context.next = 21;
|
|
42272
42381
|
return localStorage.setItem(LOCAL_STORAGE_KEY_UTU_IDENTITY_DATA, JSON.stringify(data));
|
|
42273
42382
|
|
|
42274
|
-
case
|
|
42383
|
+
case 21:
|
|
42275
42384
|
return _context.abrupt("return", data);
|
|
42276
42385
|
|
|
42277
|
-
case
|
|
42386
|
+
case 23:
|
|
42278
42387
|
case "end":
|
|
42279
42388
|
return _context.stop();
|
|
42280
42389
|
}
|
|
@@ -43619,7 +43728,7 @@
|
|
|
43619
43728
|
}
|
|
43620
43729
|
});
|
|
43621
43730
|
|
|
43622
|
-
var css_248z$n = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color:
|
|
43731
|
+
var css_248z$n = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n.utu-recommendation {\n border-radius: 5px;\n padding-right: 1rem;\n}\n.utu-recommendation-content {\n display: flex;\n margin-left: 5px;\n}\n.utu-recommendation-text {\n align-self: center;\n margin-left: 20px;\n}\n.utu-recommendation-text-light {\n color: #000000;\n}\n.utu-recommendation-text-dark {\n color: #ffffff;\n}\n\n.summary-image-list {\n display: flex;\n justify-content: center;\n margin: 1.5rem 0 1rem 2rem;\n padding-left: 0;\n list-style: none;\n}\n.summary-image-item {\n margin-left: -15px;\n height: 2.5rem;\n}\n.summary-image-item-light {\n border: 2px solid rgb(252, 229, 70);\n}\n.summary-image-item-dark {\n border: 2px solid rgb(252, 229, 70);\n}";
|
|
43623
43732
|
styleInject(css_248z$n);
|
|
43624
43733
|
|
|
43625
43734
|
function getRoot(ref) {
|
|
@@ -43692,7 +43801,7 @@
|
|
|
43692
43801
|
return h$2(BaseComponent, {
|
|
43693
43802
|
style: css_248z$n,
|
|
43694
43803
|
forwardedRef: ref,
|
|
43695
|
-
className: "utu-recommendation utu-section utu-section-no-border-".concat(envCondition)
|
|
43804
|
+
className: "utu-recommendation x-utu-section x-utu-section-no-border-".concat(envCondition)
|
|
43696
43805
|
}, rankingItem && h$2(p$1, null, h$2("div", {
|
|
43697
43806
|
className: "utu-recommendation-content"
|
|
43698
43807
|
}, h$2("ul", {
|
|
@@ -43716,13 +43825,13 @@
|
|
|
43716
43825
|
}, rankingItem.summaryText))));
|
|
43717
43826
|
}
|
|
43718
43827
|
|
|
43719
|
-
var css_248z$m = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color:
|
|
43828
|
+
var css_248z$m = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n.x-utu-feedback-form-popup {\n display: flex;\n flex-direction: column;\n width: 100%;\n padding: 0.5rem;\n border-radius: 5px;\n}\n\n.desktop-view {\n display: none;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .x-utu-feedback-form {\n border-bottom: 0px;\n z-index: 1;\n align-items: center;\n height: 100%;\n }\n .mobile-view {\n display: none;\n }\n .desktop-view {\n display: flex;\n width: 100%;\n flex-direction: column;\n }\n .desktop-view-block-1 {\n width: 65%;\n margin: auto;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: flex-start;\n padding: 0 4.5rem 0 4.5rem;\n }\n .desktop-view-block-1-dark {\n background-color: #3d3d3c;\n }\n .desktop-view-block-1-light {\n background-color: #fcf8e5;\n }\n .desktop-view-block-2 {\n width: 65%;\n margin: auto;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n }\n .desktop-view-block-2-dark {\n background-color: #3d3d3c;\n }\n .desktop-view-block-2-light {\n background-color: #fcf8e5;\n }\n .desktop-view-block-3 {\n width: 65%;\n margin: auto;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n }\n .desktop-view-block-3-dark {\n background-color: rgb(36, 35, 35);\n }\n .desktop-view-block-3-light {\n background-color: rgb(253, 253, 253);\n }\n}\n.x-utu-form-badges {\n text-align: center;\n}\n\n.x-utu-divider {\n background-color: rgba(189, 195, 199, 0.3);\n height: 90px;\n width: 3px;\n}\n\n.x-utu-feedback-form-Badges {\n width: 65%;\n min-height: 8rem;\n margin: auto;\n background-color: #fcf8e5;\n}";
|
|
43720
43829
|
styleInject(css_248z$m);
|
|
43721
43830
|
|
|
43722
|
-
var css_248z$l = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color:
|
|
43831
|
+
var css_248z$l = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\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}\n.x-utu-badge-section > div {\n padding: 1rem;\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}";
|
|
43723
43832
|
styleInject(css_248z$l);
|
|
43724
43833
|
|
|
43725
|
-
var css_248z$k = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color:
|
|
43834
|
+
var css_248z$k = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}";
|
|
43726
43835
|
styleInject(css_248z$k);
|
|
43727
43836
|
|
|
43728
43837
|
/* eslint max-len: 0 */
|
|
@@ -44489,11 +44598,11 @@
|
|
|
44489
44598
|
}
|
|
44490
44599
|
}
|
|
44491
44600
|
|
|
44492
|
-
var _excluded = ["id", "
|
|
44601
|
+
var _excluded = ["id", "value", "image"];
|
|
44493
44602
|
// export default function BadgeSet({ id, badges, ...props } : BadgeSetProps) {
|
|
44494
44603
|
function BadgeSet(_ref) {
|
|
44495
44604
|
var id = _ref.id,
|
|
44496
|
-
|
|
44605
|
+
value = _ref.value,
|
|
44497
44606
|
image = _ref.image,
|
|
44498
44607
|
props = _objectWithoutProperties(_ref, _excluded);
|
|
44499
44608
|
|
|
@@ -44515,6 +44624,7 @@
|
|
|
44515
44624
|
var walletAddress = q$1(WalletAddressContext);
|
|
44516
44625
|
|
|
44517
44626
|
if (props[ATTR_SOURCE_UUID] === "address") {
|
|
44627
|
+
// eslint-disable-next-line no-param-reassign
|
|
44518
44628
|
props[ATTR_SOURCE_UUID] = walletAddress;
|
|
44519
44629
|
}
|
|
44520
44630
|
|
|
@@ -44532,27 +44642,27 @@
|
|
|
44532
44642
|
return h$2(BaseComponent, {
|
|
44533
44643
|
style: css_248z$l
|
|
44534
44644
|
}, h$2("section", {
|
|
44535
|
-
className: "
|
|
44645
|
+
className: "x-utu-badge-set-section"
|
|
44536
44646
|
}, h$2("div", {
|
|
44537
|
-
className: "badge-img-big-section"
|
|
44647
|
+
className: "x-utu-badge-img-big-section"
|
|
44538
44648
|
}, h$2("img", {
|
|
44539
44649
|
src: image,
|
|
44540
|
-
className: "badge-img-big",
|
|
44650
|
+
className: "x-utu-badge-img-big",
|
|
44541
44651
|
alt: "badges"
|
|
44542
44652
|
})), h$2("div", {
|
|
44543
44653
|
key: id,
|
|
44544
|
-
className: "badge-set-container"
|
|
44654
|
+
className: "x-utu-badge-set-container"
|
|
44545
44655
|
}, h$2("h3", {
|
|
44546
|
-
className: "text-left badge-text-h3 badge-text-h3-".concat(isDark ? "dark" : "light")
|
|
44656
|
+
className: "text-left x-utu-badge-text-h3 x-utu-badge-text-h3-".concat(isDark ? "dark" : "light")
|
|
44547
44657
|
}, id), h$2(SubmitStatusView, {
|
|
44548
44658
|
submitStatus: submitStatus
|
|
44549
44659
|
}, h$2("div", {
|
|
44550
|
-
className: "badge-img-container"
|
|
44551
|
-
},
|
|
44660
|
+
className: "x-utu-badge-img-container"
|
|
44661
|
+
}, value === undefined ? h$2("div", null) : value.map(function (_ref2) {
|
|
44552
44662
|
var qualifier = _ref2.qualifier,
|
|
44553
|
-
|
|
44663
|
+
badge = _ref2.badge;
|
|
44554
44664
|
return h$2("button", {
|
|
44555
|
-
className: "
|
|
44665
|
+
className: "x-utu-btn-icon ".concat(isSelected(qualifier) ? "x-utu-badge-img" : "x-utu-badge-disable"),
|
|
44556
44666
|
type: "button",
|
|
44557
44667
|
onClick: function onClick() {
|
|
44558
44668
|
var qualifierToSet = isSelected(qualifier) ? "neutral" : qualifier;
|
|
@@ -44562,10 +44672,10 @@
|
|
|
44562
44672
|
setSelectedQualifier(qualifierToSet);
|
|
44563
44673
|
}
|
|
44564
44674
|
}, h$2("div", {
|
|
44565
|
-
className: "badge-item-text"
|
|
44675
|
+
className: "x-utu-badge-item-text"
|
|
44566
44676
|
}, h$2("img", {
|
|
44567
|
-
src:
|
|
44568
|
-
className: "badge-img",
|
|
44677
|
+
src: badge.image,
|
|
44678
|
+
className: "x-utu-badge-img",
|
|
44569
44679
|
alt: "badges"
|
|
44570
44680
|
})));
|
|
44571
44681
|
}))))));
|
|
@@ -44589,25 +44699,23 @@
|
|
|
44589
44699
|
}
|
|
44590
44700
|
|
|
44591
44701
|
return h$2(BaseComponent, {
|
|
44592
|
-
className: "utu-section-no-border-".concat(isDark ? "dark" : "light"),
|
|
44702
|
+
className: "x-utu-section-no-border-".concat(isDark ? "dark" : "light"),
|
|
44593
44703
|
excludeBootstrap: true,
|
|
44594
44704
|
excludeFonts: true
|
|
44595
|
-
}, h$2("div", {
|
|
44596
|
-
className: "d-flex justify-content-center ml-5"
|
|
44597
44705
|
}, h$2("div", null, h$2("h3", {
|
|
44598
|
-
className: "
|
|
44706
|
+
className: "x-utu-badge-section-title px-5"
|
|
44599
44707
|
}, "Award Badges"), h$2("div", {
|
|
44600
|
-
className: "badge-section"
|
|
44708
|
+
className: "x-utu-badge-section"
|
|
44601
44709
|
}, badgeSets.map(function (_ref) {
|
|
44602
44710
|
var id = _ref.id,
|
|
44603
|
-
|
|
44711
|
+
value = _ref.value,
|
|
44604
44712
|
image = _ref.image;
|
|
44605
44713
|
return h$2(BadgeSet, _extends$1({}, props, {
|
|
44606
44714
|
id: id,
|
|
44607
44715
|
image: image,
|
|
44608
|
-
|
|
44716
|
+
value: value
|
|
44609
44717
|
}));
|
|
44610
|
-
}))))
|
|
44718
|
+
}))));
|
|
44611
44719
|
}
|
|
44612
44720
|
|
|
44613
44721
|
function S(n,t){for(var e in t)n[e]=t[e];return n}function g(n,t){for(var e in n)if("__source"!==e&&!(e in t))return !0;for(var r in t)if("__source"!==r&&n[r]!==t[r])return !0;return !1}function C(n){this.props=n;}(C.prototype=new d$2).isPureReactComponent=!0,C.prototype.shouldComponentUpdate=function(n,t){return g(this.props,n)||g(this.state,t)};var w=l$3.__b;l$3.__b=function(n){n.type&&n.type.__f&&n.ref&&(n.props.ref=n.ref,n.ref=null),w&&w(n);};var A=l$3.__e;l$3.__e=function(n,t,e,r){if(n.then)for(var u,o=t;o=o.__;)if((u=o.__c)&&u.__c)return null==t.__e&&(t.__e=e.__e,t.__k=e.__k),u.__c(n,t);A(n,t,e,r);};var O=l$3.unmount;function T(){this.__u=0,this.t=null,this.__b=null;}function L(n){var t=n.__.__c;return t&&t.__a&&t.__a(n)}function D(){this.u=null,this.o=null;}l$3.unmount=function(n){var t=n.__c;t&&t.__R&&t.__R(),t&&!0===n.__h&&(n.type=null),O&&O(n);},(T.prototype=new d$2).__c=function(n,t){var e=t.__c,r=this;null==r.t&&(r.t=[]),r.t.push(e);var u=L(r.__v),o=!1,i=function(){o||(o=!0,e.__R=null,u?u(l):l());};e.__R=i;var l=function(){if(!--r.__u){if(r.state.__a){var n=r.state.__a;r.__v.__k[0]=function n(t,e,r){return t&&(t.__v=null,t.__k=t.__k&&t.__k.map(function(t){return n(t,e,r)}),t.__c&&t.__c.__P===e&&(t.__e&&r.insertBefore(t.__e,t.__d),t.__c.__e=!0,t.__c.__P=r)),t}(n,n.__c.__P,n.__c.__O);}var t;for(r.setState({__a:r.__b=null});t=r.t.pop();)t.forceUpdate();}},c=!0===t.__h;r.__u++||c||r.setState({__a:r.__b=r.__v.__k[0]}),n.then(i,i);},T.prototype.componentWillUnmount=function(){this.t=[];},T.prototype.render=function(n,t){if(this.__b){if(this.__v.__k){var e=document.createElement("div"),r=this.__v.__k[0].__c;this.__v.__k[0]=function n(t,e,r){return t&&(t.__c&&t.__c.__H&&(t.__c.__H.__.forEach(function(n){"function"==typeof n.__c&&n.__c();}),t.__c.__H=null),null!=(t=S({},t)).__c&&(t.__c.__P===r&&(t.__c.__P=e),t.__c=null),t.__k=t.__k&&t.__k.map(function(t){return n(t,e,r)})),t}(this.__b,e,r.__O=r.__P);}this.__b=null;}var u=t.__a&&h$2(p$1,null,n.fallback);return u&&(u.__h=null),[h$2(p$1,null,t.__a?null:n.children),u]};var F=function(n,t,e){if(++e[1]===e[0]&&n.o.delete(t),n.props.revealOrder&&("t"!==n.props.revealOrder[0]||!n.o.size))for(e=n.u;e;){for(;e.length>3;)e.pop()();if(e[1]<e[0])break;n.u=e=e[2];}};(D.prototype=new d$2).__a=function(n){var t=this,e=L(t.__v),r=t.o.get(n);return r[0]++,function(u){var o=function(){t.props.revealOrder?(r.push(u),F(t,n,r)):u();};e?e(o):o();}},D.prototype.render=function(n){this.u=null,this.o=new Map;var t=x$1(n.children);n.revealOrder&&"b"===n.revealOrder[0]&&t.reverse();for(var e=t.length;e--;)this.o.set(t[e],this.u=[1,0,this.u]);return n.children},D.prototype.componentDidUpdate=D.prototype.componentDidMount=function(){var n=this;this.o.forEach(function(t,e){F(n,e,t);});};var W="undefined"!=typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103,P=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,$="undefined"!=typeof document,j$1=function(n){return ("undefined"!=typeof Symbol&&"symbol"==typeof Symbol()?/fil|che|rad/i:/fil|che|ra/i).test(n)};d$2.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach(function(n){Object.defineProperty(d$2.prototype,n,{configurable:!0,get:function(){return this["UNSAFE_"+n]},set:function(t){Object.defineProperty(this,n,{configurable:!0,writable:!0,value:t});}});});var H=l$3.event;function Z(){}function Y(){return this.cancelBubble}function q(){return this.defaultPrevented}l$3.event=function(n){return H&&(n=H(n)),n.persist=Z,n.isPropagationStopped=Y,n.isDefaultPrevented=q,n.nativeEvent=n};var J={configurable:!0,get:function(){return this.class}},K=l$3.vnode;l$3.vnode=function(n){var t=n.type,e=n.props,r=e;if("string"==typeof t){var u=-1===t.indexOf("-");for(var o in r={},e){var i=e[o];$&&"children"===o&&"noscript"===t||"value"===o&&"defaultValue"in e&&null==i||("defaultValue"===o&&"value"in e&&null==e.value?o="value":"download"===o&&!0===i?i="":/ondoubleclick/i.test(o)?o="ondblclick":/^onchange(textarea|input)/i.test(o+t)&&!j$1(e.type)?o="oninput":/^onfocus$/i.test(o)?o="onfocusin":/^onblur$/i.test(o)?o="onfocusout":/^on(Ani|Tra|Tou|BeforeInp|Compo)/.test(o)?o=o.toLowerCase():u&&P.test(o)?o=o.replace(/[A-Z0-9]/g,"-$&").toLowerCase():null===i&&(i=void 0),/^oninput$/i.test(o)&&(o=o.toLowerCase(),r[o]&&(o="oninputCapture")),r[o]=i);}"select"==t&&r.multiple&&Array.isArray(r.value)&&(r.value=x$1(e.children).forEach(function(n){n.props.selected=-1!=r.value.indexOf(n.props.value);})),"select"==t&&null!=r.defaultValue&&(r.value=x$1(e.children).forEach(function(n){n.props.selected=r.multiple?-1!=r.defaultValue.indexOf(n.props.value):r.defaultValue==n.props.value;})),n.props=r,e.class!=e.className&&(J.enumerable="className"in e,null!=e.className&&(r.class=e.className),Object.defineProperty(r,"className",J));}n.$$typeof=W,K&&K(n);};var Q=l$3.__r;l$3.__r=function(n){Q&&Q(n),n.__c;};function en(n){return !!n&&n.$$typeof===W}
|
|
@@ -46146,7 +46254,7 @@
|
|
|
46146
46254
|
const FormContext = B(null);
|
|
46147
46255
|
FormContext.displayName = 'RHFContext';
|
|
46148
46256
|
|
|
46149
|
-
var css_248z$j = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color:
|
|
46257
|
+
var css_248z$j = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n.x-utu-feedback-text-space {\n align-self: start;\n}\n.x-utu-feedback-text-area {\n padding: 5px;\n height: 8rem;\n width: 100%;\n border-radius: 10px 10px 0 0;\n border: 0;\n background-color: rgba(255, 221, 51, 0.1);\n}\n.x-utu-feedback-text-input-section {\n width: 100%;\n display: flex;\n justify-content: center;\n}\n.x-utu-feedback-text-input-form {\n display: flex;\n flex-direction: column;\n padding: 1rem 2.5rem 1rem;\n justify-content: center;\n align-items: center;\n width: 100vw;\n}\n.x-utu-feedback-text-input-btn {\n border-radius: 0 0 10px 10px;\n width: 100%;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .x-utu-feedback-text-area {\n width: 100%;\n min-height: 10rem;\n }\n .x-utu-feedback-text-input-form {\n padding: 2rem 2.5rem;\n display: flex;\n justify-content: center;\n align-items: center;\n }\n .x-utu-feedback-text-input-btn {\n width: 100%;\n }\n}";
|
|
46150
46258
|
styleInject(css_248z$j);
|
|
46151
46259
|
|
|
46152
46260
|
/* eslint-disable no-nested-ternary */
|
|
@@ -46178,18 +46286,17 @@
|
|
|
46178
46286
|
}
|
|
46179
46287
|
|
|
46180
46288
|
return h$2(BaseComponent, {
|
|
46181
|
-
style: css_248z$j
|
|
46182
|
-
,
|
|
46183
|
-
className: "d-flex justify-content-center text-input-section utu-section utu-section-no-border-".concat(envCondition),
|
|
46289
|
+
style: css_248z$j,
|
|
46290
|
+
className: "x-utu-feedback-text-input-section x-utu-section x-utu-section-no-border-".concat(envCondition),
|
|
46184
46291
|
excludeBootstrap: true,
|
|
46185
46292
|
excludeFonts: true
|
|
46186
46293
|
}, h$2("form", {
|
|
46187
46294
|
onSubmit: handleSubmit(onSubmit),
|
|
46188
|
-
className: "text-input-form"
|
|
46295
|
+
className: "x-utu-feedback-text-input-form"
|
|
46189
46296
|
}, h$2("h3", {
|
|
46190
46297
|
className: "x-utu-feedback-text-space"
|
|
46191
46298
|
}, "Text Review"), h$2("textarea", {
|
|
46192
|
-
className: "text-area text-area-".concat(envCondition),
|
|
46299
|
+
className: "x-utu-feedback-text-area x-utu-feedback-text-area-".concat(envCondition),
|
|
46193
46300
|
ref: register({
|
|
46194
46301
|
required: true,
|
|
46195
46302
|
minLength: minLength
|
|
@@ -46204,7 +46311,7 @@
|
|
|
46204
46311
|
style: {
|
|
46205
46312
|
backgroundColor: props[ATTR_BTN_COLOR] === undefined ? null : "".concat(props[ATTR_BTN_COLOR])
|
|
46206
46313
|
},
|
|
46207
|
-
className: "text-input-btn btn btn-".concat(envCondition),
|
|
46314
|
+
className: "x-utu-feedback-text-input-btn x-utu-btn x-utu-btn-".concat(envCondition),
|
|
46208
46315
|
type: "submit"
|
|
46209
46316
|
}, "Submit text review"))));
|
|
46210
46317
|
}
|
|
@@ -47329,182 +47436,78 @@
|
|
|
47329
47436
|
}
|
|
47330
47437
|
];
|
|
47331
47438
|
|
|
47332
|
-
var css_248z$i = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color:
|
|
47439
|
+
var css_248z$i = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n.endor-input-form {\n display: flex;\n flex-direction: row;\n justify-items: center;\n justify-content: center;\n align-items: center;\n padding-top: 2rem;\n padding-bottom: 2rem;\n}\n.endor-input-form-text-area {\n height: 3rem;\n width: 100%;\n margin-right: 1rem;\n border-radius: 10px;\n border: none;\n padding: 16px;\n font-weight: 300;\n font-size: 0.8rem;\n align-items: center;\n align-content: center;\n background-color: #fcf8e5;\n overflow: hidden;\n}\n.endor-input-section {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n padding: 1rem 2rem;\n width: 100%;\n}\n.endor-text {\n font-size: 1.5rem;\n}\n.endor-text-light {\n color: black;\n}\n.endor-text-dark {\n color: white;\n}\n.endor-text-area {\n display: flex;\n flex-direction: row;\n}\n.endor-text-info {\n display: flex;\n justify-content: center;\n align-items: center;\n background-color: rgb(252, 229, 70);\n width: 1rem;\n height: 1rem;\n margin-left: 1rem;\n font-size: 0.8rem;\n border-radius: 50%;\n cursor: pointer;\n margin-left: 0.5rem;\n transition-timing-function: ease-in-out;\n transition-duration: 2s;\n transition: width 2s, height 4s;\n}\n.endor-text-body {\n font-size: 0.8rem;\n}\n.endor-text-title {\n font-size: 0.8rem;\n}\n.endor-btn {\n border-radius: 10px;\n}\n\n.endor-utt-balance {\n margin-bottom: 2rem;\n display: flex;\n display: flex;\n box-sizing: border-box;\n width: 10rem;\n height: 4rem;\n border-radius: 5px 30px 30px 5px;\n background-color: rgb(252, 229, 70);\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .endor-input-section {\n padding-left: 0;\n padding-right: 0;\n }\n .endor-input-form {\n width: 40%;\n padding: 2rem;\n }\n .endor-input-form-text-area {\n background-color: rgb(253, 253, 253);\n font-size: 1rem;\n }\n .endor-input-form-section {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n width: 100%;\n }\n .endor-text {\n padding: 2rem;\n width: 40%;\n }\n .endor-text-info {\n font-size: 1rem;\n }\n}\n@media only screen and (min-width: 830px) {\n .endor-text-body {\n font-size: 1rem;\n }\n .endor-text-title {\n font-size: 1rem;\n }\n .endor-input-form-text-area {\n font-size: 1rem;\n }\n}\n.utt-balance-logo {\n justify-items: center;\n height: 4rem;\n width: 4rem;\n}\n\n.x-utu-utt-heading-text {\n margin-top: 7%;\n text-align: center;\n}";
|
|
47333
47440
|
styleInject(css_248z$i);
|
|
47334
47441
|
|
|
47335
|
-
var
|
|
47336
|
-
/**
|
|
47337
|
-
* Parameter interface definition for wallet_addEthereumChain
|
|
47338
|
-
* Copied from https://docs.metamask.io/guide/rpc-api.html#unrestricted-methods
|
|
47339
|
-
*/
|
|
47340
|
-
|
|
47341
|
-
/**
|
|
47342
|
-
* Convers a number to a 0x-prefixed hexadecimal string
|
|
47343
|
-
* @param n
|
|
47344
|
-
*/
|
|
47345
|
-
function toHexString(n) {
|
|
47346
|
-
return hexStripZeros(hexlify(n));
|
|
47347
|
-
}
|
|
47348
|
-
|
|
47349
|
-
var SWITCH_CHAIN_PARAMS = (_SWITCH_CHAIN_PARAMS = {}, _defineProperty$2(_SWITCH_CHAIN_PARAMS, NETWORK_NAME.polygon_mainnet, {
|
|
47350
|
-
chainId: toHexString(137)
|
|
47351
|
-
}), _defineProperty$2(_SWITCH_CHAIN_PARAMS, NETWORK_NAME.polygon_mumbai, {
|
|
47352
|
-
chainId: toHexString(80001)
|
|
47353
|
-
}), _SWITCH_CHAIN_PARAMS);
|
|
47354
|
-
var ADD_CHAIN_PARAMS = (_ADD_CHAIN_PARAMS = {}, _defineProperty$2(_ADD_CHAIN_PARAMS, NETWORK_NAME.polygon_mainnet, {
|
|
47355
|
-
chainId: SWITCH_CHAIN_PARAMS[NETWORK_NAME.polygon_mainnet].chainId,
|
|
47356
|
-
chainName: "Polygon",
|
|
47357
|
-
nativeCurrency: {
|
|
47358
|
-
name: "MATIC",
|
|
47359
|
-
symbol: "MATIC",
|
|
47360
|
-
decimals: 18
|
|
47361
|
-
},
|
|
47362
|
-
rpcUrls: ["https://polygon-rpc.com"],
|
|
47363
|
-
blockExplorerUrls: ["https://polygonscan.com"]
|
|
47364
|
-
}), _defineProperty$2(_ADD_CHAIN_PARAMS, NETWORK_NAME.polygon_mumbai, {
|
|
47365
|
-
chainId: SWITCH_CHAIN_PARAMS[NETWORK_NAME.polygon_mumbai].chainId,
|
|
47366
|
-
chainName: "Mumbai",
|
|
47367
|
-
nativeCurrency: {
|
|
47368
|
-
name: "MATIC",
|
|
47369
|
-
symbol: "MATIC",
|
|
47370
|
-
decimals: 18
|
|
47371
|
-
},
|
|
47372
|
-
rpcUrls: ["https://rpc-mumbai.maticvigil.com"],
|
|
47373
|
-
blockExplorerUrls: ["https://mumbai.polygonscan.com"]
|
|
47374
|
-
}), _ADD_CHAIN_PARAMS);
|
|
47375
|
-
var UTT_CONTRACT_ADDRESS = (_UTT_CONTRACT_ADDRESS = {}, _defineProperty$2(_UTT_CONTRACT_ADDRESS, NETWORK_NAME.polygon_mainnet, "0xbA6de5f4a98d2AEbb289d1136194D05Ee24C426f"), _defineProperty$2(_UTT_CONTRACT_ADDRESS, NETWORK_NAME.polygon_mumbai, "0x19bc90FfBDCaD53c48eF0b08A67B0D2563AEE2a8"), _UTT_CONTRACT_ADDRESS);
|
|
47376
|
-
function addNetwork(_x, _x2) {
|
|
47377
|
-
return _addNetwork.apply(this, arguments);
|
|
47378
|
-
}
|
|
47379
|
-
|
|
47380
|
-
function _addNetwork() {
|
|
47381
|
-
_addNetwork = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(provider, networkName) {
|
|
47382
|
-
var network;
|
|
47383
|
-
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
47384
|
-
while (1) {
|
|
47385
|
-
switch (_context.prev = _context.next) {
|
|
47386
|
-
case 0:
|
|
47387
|
-
network = ADD_CHAIN_PARAMS[networkName];
|
|
47388
|
-
_context.next = 3;
|
|
47389
|
-
return provider.request({
|
|
47390
|
-
method: "wallet_addEthereumChain",
|
|
47391
|
-
params: [network]
|
|
47392
|
-
});
|
|
47393
|
-
|
|
47394
|
-
case 3:
|
|
47395
|
-
case "end":
|
|
47396
|
-
return _context.stop();
|
|
47397
|
-
}
|
|
47398
|
-
}
|
|
47399
|
-
}, _callee);
|
|
47400
|
-
}));
|
|
47401
|
-
return _addNetwork.apply(this, arguments);
|
|
47402
|
-
}
|
|
47403
|
-
|
|
47404
|
-
function requestNetworkChange(_x3, _x4) {
|
|
47405
|
-
return _requestNetworkChange.apply(this, arguments);
|
|
47406
|
-
}
|
|
47407
|
-
|
|
47408
|
-
function _requestNetworkChange() {
|
|
47409
|
-
_requestNetworkChange = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(provider, networkName) {
|
|
47410
|
-
var network;
|
|
47411
|
-
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
|
47412
|
-
while (1) {
|
|
47413
|
-
switch (_context2.prev = _context2.next) {
|
|
47414
|
-
case 0:
|
|
47415
|
-
network = SWITCH_CHAIN_PARAMS[networkName];
|
|
47416
|
-
_context2.next = 3;
|
|
47417
|
-
return provider.request({
|
|
47418
|
-
method: "wallet_switchEthereumChain",
|
|
47419
|
-
params: [network]
|
|
47420
|
-
});
|
|
47421
|
-
|
|
47422
|
-
case 3:
|
|
47423
|
-
case "end":
|
|
47424
|
-
return _context2.stop();
|
|
47425
|
-
}
|
|
47426
|
-
}
|
|
47427
|
-
}, _callee2);
|
|
47428
|
-
}));
|
|
47429
|
-
return _requestNetworkChange.apply(this, arguments);
|
|
47430
|
-
}
|
|
47431
|
-
|
|
47432
|
-
function getDefaultNetworkName() {
|
|
47433
|
-
return config.production ? NETWORK_NAME.polygon_mainnet : NETWORK_NAME.polygon_mumbai;
|
|
47434
|
-
}
|
|
47435
|
-
function getUTTContractAddress(networkName) {
|
|
47436
|
-
return UTT_CONTRACT_ADDRESS[networkName];
|
|
47437
|
-
}
|
|
47438
|
-
|
|
47439
|
-
var css_248z$h = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color: white !important;\n}\n.btn-round-text {\n color: white !important;\n}\n\n.icon-btn {\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.icon-btn svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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.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\nsvg.video-icon {\n width: 3rem;\n height: 2.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section {\n width: 100%;\n }\n .utu-section-light {\n border-bottom: 0;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 15px;\n}\n\n.utt_balance {\n width: 100%;\n align-items: center;\n text-align: center;\n justify-content: center;\n background-color: rgb(252, 229, 70);\n}";
|
|
47442
|
+
var css_248z$h = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n.x-utu-utt-balance {\n width: 100%;\n align-items: center;\n text-align: center;\n justify-content: center;\n background-color: rgb(252, 229, 70);\n margin-top: 0.25rem;\n}";
|
|
47440
47443
|
styleInject(css_248z$h);
|
|
47441
47444
|
|
|
47442
47445
|
function UttBalance() {
|
|
47443
|
-
var _useWalletConnectApi = useWalletConnectApi(),
|
|
47444
|
-
web3Modal = _useWalletConnectApi.web3Modal;
|
|
47445
|
-
|
|
47446
47446
|
var _useState = p(0),
|
|
47447
47447
|
_useState2 = _slicedToArray(_useState, 2),
|
|
47448
47448
|
UTTWalletState = _useState2[0],
|
|
47449
47449
|
setUTTWalletState = _useState2[1];
|
|
47450
47450
|
|
|
47451
|
-
|
|
47452
|
-
var
|
|
47453
|
-
var
|
|
47454
|
-
|
|
47455
|
-
|
|
47456
|
-
|
|
47457
|
-
|
|
47458
|
-
|
|
47459
|
-
|
|
47460
|
-
|
|
47461
|
-
|
|
47462
|
-
case 2:
|
|
47463
|
-
provider = _context.sent;
|
|
47464
|
-
network = getNetwork();
|
|
47465
|
-
_context.next = 6;
|
|
47466
|
-
return requestNetworkChange(provider, network);
|
|
47451
|
+
var fetchBalance = /*#__PURE__*/function () {
|
|
47452
|
+
var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
|
47453
|
+
var provider, network, ethersProvider, userAddress, getContract, walletUTTBalance, UTTBalance;
|
|
47454
|
+
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
47455
|
+
while (1) {
|
|
47456
|
+
switch (_context.prev = _context.next) {
|
|
47457
|
+
case 0:
|
|
47458
|
+
_context.prev = 0;
|
|
47459
|
+
_context.next = 3;
|
|
47460
|
+
return getProvider();
|
|
47467
47461
|
|
|
47468
|
-
|
|
47469
|
-
|
|
47470
|
-
|
|
47471
|
-
|
|
47462
|
+
case 3:
|
|
47463
|
+
provider = _context.sent;
|
|
47464
|
+
network = getDefaultNetworkName();
|
|
47465
|
+
_context.next = 7;
|
|
47466
|
+
return requestNetworkChange(provider, network);
|
|
47472
47467
|
|
|
47473
|
-
|
|
47474
|
-
|
|
47475
|
-
|
|
47476
|
-
|
|
47477
|
-
return getContract.balanceOf(userAddress);
|
|
47468
|
+
case 7:
|
|
47469
|
+
ethersProvider = new Web3Provider(provider);
|
|
47470
|
+
_context.next = 10;
|
|
47471
|
+
return ethersProvider.getSigner().getAddress();
|
|
47478
47472
|
|
|
47479
|
-
|
|
47480
|
-
|
|
47481
|
-
|
|
47482
|
-
|
|
47483
|
-
|
|
47473
|
+
case 10:
|
|
47474
|
+
userAddress = _context.sent;
|
|
47475
|
+
getContract = new Contract(UTT_CONTRACT_ADDRESS_TEST, abi, ethersProvider);
|
|
47476
|
+
_context.next = 14;
|
|
47477
|
+
return getContract.balanceOf(userAddress);
|
|
47484
47478
|
|
|
47485
|
-
|
|
47486
|
-
|
|
47487
|
-
|
|
47488
|
-
|
|
47489
|
-
|
|
47490
|
-
|
|
47491
|
-
}));
|
|
47479
|
+
case 14:
|
|
47480
|
+
walletUTTBalance = _context.sent;
|
|
47481
|
+
UTTBalance = Number(formatUnits(walletUTTBalance, 0) || 0);
|
|
47482
|
+
setUTTWalletState(UTTBalance);
|
|
47483
|
+
_context.next = 23;
|
|
47484
|
+
break;
|
|
47492
47485
|
|
|
47493
|
-
|
|
47494
|
-
|
|
47495
|
-
|
|
47496
|
-
|
|
47486
|
+
case 19:
|
|
47487
|
+
_context.prev = 19;
|
|
47488
|
+
_context.t0 = _context["catch"](0);
|
|
47489
|
+
console.error(_context.t0);
|
|
47490
|
+
setUTTWalletState(0);
|
|
47497
47491
|
|
|
47498
|
-
|
|
47499
|
-
|
|
47492
|
+
case 23:
|
|
47493
|
+
case "end":
|
|
47494
|
+
return _context.stop();
|
|
47495
|
+
}
|
|
47496
|
+
}
|
|
47497
|
+
}, _callee, null, [[0, 19]]);
|
|
47498
|
+
}));
|
|
47500
47499
|
|
|
47501
|
-
|
|
47502
|
-
|
|
47503
|
-
|
|
47500
|
+
return function fetchBalance() {
|
|
47501
|
+
return _ref.apply(this, arguments);
|
|
47502
|
+
};
|
|
47503
|
+
}();
|
|
47504
47504
|
|
|
47505
|
+
h$1(function () {
|
|
47506
|
+
fetchBalance();
|
|
47507
|
+
}, []);
|
|
47505
47508
|
return h$2(BaseComponent, {
|
|
47506
47509
|
style: css_248z$h,
|
|
47507
|
-
className: "
|
|
47510
|
+
className: "utt_balance"
|
|
47508
47511
|
}, h$2("h3", null, UTTWalletState));
|
|
47509
47512
|
}
|
|
47510
47513
|
|
|
@@ -47807,7 +47810,7 @@
|
|
|
47807
47810
|
|
|
47808
47811
|
return h$2(BaseComponent, {
|
|
47809
47812
|
style: css_248z$i,
|
|
47810
|
-
className: "endor-input-section utu-section utu-section-no-border-".concat(envCondition),
|
|
47813
|
+
className: "endor-input-section x-utu-section x-utu-section-no-border-".concat(envCondition),
|
|
47811
47814
|
excludeBootstrap: true,
|
|
47812
47815
|
excludeFonts: true
|
|
47813
47816
|
}, h$2("section", {
|
|
@@ -47854,7 +47857,7 @@
|
|
|
47854
47857
|
style: {
|
|
47855
47858
|
backgroundColor: props[ATTR_BTN_COLOR] === undefined ? null : "".concat(props[ATTR_BTN_COLOR])
|
|
47856
47859
|
},
|
|
47857
|
-
className: "endor-btn btn btn-".concat(envCondition),
|
|
47860
|
+
className: "endor-btn x-utu-btn x-utu-btn-".concat(envCondition),
|
|
47858
47861
|
type: "submit"
|
|
47859
47862
|
}, "Endorse")))));
|
|
47860
47863
|
}
|
|
@@ -50303,7 +50306,7 @@
|
|
|
50303
50306
|
};
|
|
50304
50307
|
var _default = ReactStars;
|
|
50305
50308
|
|
|
50306
|
-
var css_248z$g = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color:
|
|
50309
|
+
var css_248z$g = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n.star-rating-section {\n display: flex;\n justify-content: center;\n align-items: center;\n padding-top: 1.5rem;\n padding-bottom: 1.5rem;\n width: 170px;\n}\n\n.utu-star-rating-text {\n font-size: 1rem;\n font-weight: bold;\n color: rgb(252, 229, 70);\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .star-rating-section {\n padding-top: 1.5rem;\n padding-bottom: 1.5rem;\n padding-left: 1rem;\n width: 170px;\n }\n}";
|
|
50307
50310
|
styleInject(css_248z$g);
|
|
50308
50311
|
|
|
50309
50312
|
function StarRatingInput(props) {
|
|
@@ -50344,7 +50347,7 @@
|
|
|
50344
50347
|
|
|
50345
50348
|
return h$2(BaseComponent, {
|
|
50346
50349
|
style: css_248z$g,
|
|
50347
|
-
className: "star-rating-section utu-section utu-section-".concat(isDark ? "dark" : "light"),
|
|
50350
|
+
className: "star-rating-section x-utu-section x-utu-section-".concat(isDark ? "dark" : "light"),
|
|
50348
50351
|
excludeBootstrap: true,
|
|
50349
50352
|
excludeFonts: true
|
|
50350
50353
|
}, h$2(SubmitStatusView, {
|
|
@@ -58301,7 +58304,7 @@
|
|
|
58301
58304
|
|
|
58302
58305
|
var e=0;function t(t){return "__private_"+e+++"_"+t}function i(e,t){if(!Object.prototype.hasOwnProperty.call(e,t))throw new TypeError("attempted to use private field on non-instance");return e}var r=function(e){this.value=e;},n=t("head"),o=t("end"),u=function(){function e(){Object.defineProperty(this,n,{writable:!0,value:void 0}),Object.defineProperty(this,o,{writable:!0,value:void 0});}var t=e.prototype;return t.enqueue=function(e){var t=new r(e);i(this,o)[o]?(i(this,o)[o].next=t,i(this,o)[o]=t):i(this,n)[n]=i(this,o)[o]=t;},t.dequeue=function(){var e=i(this,n)[n];return i(this,n)[n]=null==e?void 0:e.next,i(this,n)[n]||(i(this,o)[o]=void 0),null==e?void 0:e.value},e}();function s(e){return {done:!1,value:e}}var h={done:!0},a=t("chunkQueue"),l=t("resolveQueue"),v=t("isInProgress"),c=t("isLocked"),d=function(){function e(){Object.defineProperty(this,a,{writable:!0,value:void 0}),Object.defineProperty(this,l,{writable:!0,value:void 0}),Object.defineProperty(this,v,{writable:!0,value:void 0}),Object.defineProperty(this,c,{writable:!0,value:void 0}),this.url=null,i(this,a)[a]=new u,i(this,l)[l]=new u,i(this,v)[v]=!0,i(this,c)[c]=!1;}var t=e.prototype;return t.setUrl=function(e){this.url=e;},t.setBlobProperties=function(e){this.blobProperties=e;},t.storeChunk=function(e){i(this,v)[v]=!0;var t=i(this,l)[l].dequeue();t?t(s(e)):i(this,a)[a].enqueue(e);},t.stop=function(){i(this,v)[v]=!1;},t.reset=function(){i(this,v)[v]=!0,i(this,a)[a]=new u,i(this,l)[l]=new u,i(this,c)[c]=!1;},t.getUrl=function(){return this.url},t.getBlob=function(){},t.getReader=function(){if(i(this,c)[c])throw new Error("ReadableStorage is locked.");i(this,c)[c]=!0;var e=this;return {read:function(){var t=i(e,a)[a].dequeue();return t?Promise.resolve(s(t)):i(e,v)[v]?new Promise(function(t){return i(e,l)[l].enqueue(t)}):Promise.resolve(h)}}},e}();
|
|
58303
58306
|
|
|
58304
|
-
var css_248z$f = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color:
|
|
58307
|
+
var css_248z$f = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\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: 65%;\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 min-width: 100%;\n min-height: 100%;\n }\n .x-utu-popup-container {\n align-items: center;\n min-width: 100%;\n min-height: 100%;\n }\n .x-utu-popup-container-content {\n align-items: center;\n margin-top: 4%;\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}";
|
|
58305
58308
|
styleInject(css_248z$f);
|
|
58306
58309
|
|
|
58307
58310
|
function PopUp(_ref) {
|
|
@@ -58314,8 +58317,7 @@
|
|
|
58314
58317
|
var _useState = p(false),
|
|
58315
58318
|
_useState2 = _slicedToArray(_useState, 2),
|
|
58316
58319
|
isDark = _useState2[0],
|
|
58317
|
-
setIsDark = _useState2[1];
|
|
58318
|
-
|
|
58320
|
+
setIsDark = _useState2[1];
|
|
58319
58321
|
|
|
58320
58322
|
if (themeColor === "dark") {
|
|
58321
58323
|
setIsDark(true);
|
|
@@ -58325,22 +58327,22 @@
|
|
|
58325
58327
|
var envCondition = isDark ? "dark" : "light";
|
|
58326
58328
|
return h$2(BaseComponent, {
|
|
58327
58329
|
style: css_248z$f,
|
|
58328
|
-
className: "popup"
|
|
58330
|
+
className: "x-utu-popup"
|
|
58329
58331
|
}, h$2("div", {
|
|
58330
|
-
className: "popup-container popup-container-".concat(envCondition)
|
|
58332
|
+
className: "x-utu-popup-container x-utu-popup-container-".concat(envCondition)
|
|
58331
58333
|
}, h$2("div", {
|
|
58332
|
-
className: "popup-container-content
|
|
58334
|
+
className: "x-utu-popup-container-content"
|
|
58333
58335
|
}, h$2("button", {
|
|
58334
58336
|
type: "button",
|
|
58335
|
-
className: "icon-btn-popup
|
|
58337
|
+
className: "x-utu-popup-icon-btn x-utu-popup-icon-btn-".concat(envCondition, " ").concat(closeButtonOverlay && "x-utu-popup-icon-btn-overlay"),
|
|
58336
58338
|
onClick: onClose
|
|
58337
58339
|
}, "\xD7")), children), h$2("div", {
|
|
58338
58340
|
onClick: onClose,
|
|
58339
|
-
className: "background"
|
|
58341
|
+
className: "x-utu-popup-background"
|
|
58340
58342
|
}));
|
|
58341
58343
|
}
|
|
58342
58344
|
|
|
58343
|
-
var css_248z$e = "@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);\n.trust-video {\n border: none;\n width: 100%;\n height: auto;\n transform: rotateY(180deg);\n -webkit-transform: rotateY(180deg); /* Safari and Chrome */\n -moz-transform: rotateY(180deg); /* Firefox */\n}\n.trust-video-wrapper {\n
|
|
58345
|
+
var css_248z$e = "@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);\n.video-msg {\n position: absolute;\n}\n\n.trust-video {\n border: none;\n width: 100%;\n height: auto;\n transform: rotateY(180deg);\n -webkit-transform: rotateY(180deg); /* Safari and Chrome */\n -moz-transform: rotateY(180deg); /* Firefox */\n}\n.trust-video-wrapper {\n display: flex;\n justify-content: center;\n width: 100%;\n align-items: center;\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 width: 100%;\n margin-top: 35%;\n transform: translate(0, -50%);\n padding-left: 36px;\n border-radius: 10px;\n height: 4em;\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 font-size: 3em;\n margin: auto;\n line-height: 1.5em;\n width: 3em;\n height: 3em;\n padding: 0;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n border-radius: 50%;\n font: normal normal normal 18px/1 FontAwesome;\n}\n.trust-video-play:before {\n content: \"\\f04b\";\n}\n.trust-video-play.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-volume {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n border-radius: 20%;\n line-height: 1.5em;\n width: 2em;\n height: 1.5em;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n left: 20px;\n}\n.trust-video-volume:before {\n content: \"\\f028\";\n}\n.trust-video-volume.off:before {\n content: \"\\f026\";\n}\n.trust-video-fullscreen {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n line-height: 2.5rem;\n width: 3em;\n border-radius: 20%;\n height: 2.5rem;\n margin-right: 5%;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n right: 20px;\n}\n.trust-video-fullscreen:before {\n content: \"\\f065\";\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .trust-video-wrapper {\n margin-top: -3rem;\n }\n}\n@media only screen and (max-width: 768px) {\n .trust-video {\n border: none;\n }\n}";
|
|
58344
58346
|
styleInject(css_248z$e);
|
|
58345
58347
|
|
|
58346
58348
|
var Player = (function (videoUrl, preview, previewStream) {
|
|
@@ -58502,7 +58504,7 @@
|
|
|
58502
58504
|
};
|
|
58503
58505
|
|
|
58504
58506
|
return h$2("div", {
|
|
58505
|
-
className: "
|
|
58507
|
+
className: "trust-video-wrapper"
|
|
58506
58508
|
}, h$2(VideoSrc, null), h$2("div", {
|
|
58507
58509
|
className: "trust-video-controls ".concat(controlsVisible && "show")
|
|
58508
58510
|
}, h$2("button", {
|
|
@@ -58597,7 +58599,7 @@
|
|
|
58597
58599
|
}))));
|
|
58598
58600
|
}
|
|
58599
58601
|
|
|
58600
|
-
var css_248z$c = "@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);\nbody {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color: white !important;\n}\n.btn-round-text {\n color: white !important;\n}\n\n.icon-btn {\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.icon-btn svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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.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\nsvg.video-icon {\n width: 3rem;\n height: 2.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section {\n width: 100%;\n }\n .utu-section-light {\n border-bottom: 0;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 15px;\n}\n\n.trust-video {\n border: none;\n width: 100%;\n height: auto;\n transform: rotateY(180deg);\n -webkit-transform: rotateY(180deg); /* Safari and Chrome */\n -moz-transform: rotateY(180deg); /* Firefox */\n}\n.trust-video-wrapper {\n width: 100%;\n margin-top: -80%;\n align-items: center;\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 width: 100%;\n margin-top: 35%;\n transform: translate(0, -50%);\n padding-left: 36px;\n border-radius: 10px;\n height: 4em;\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 font-size: 3em;\n margin: auto;\n line-height: 1.5em;\n width: 3em;\n height: 3em;\n padding: 0;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n border-radius: 50%;\n font: normal normal normal 18px/1 FontAwesome;\n}\n.trust-video-play:before {\n content: \"\\f04b\";\n}\n.trust-video-play.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-volume {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n border-radius: 20%;\n line-height: 1.5em;\n width: 2em;\n height: 1.5em;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n left: 20px;\n}\n.trust-video-volume:before {\n content: \"\\f028\";\n}\n.trust-video-volume.off:before {\n content: \"\\f026\";\n}\n.trust-video-fullscreen {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n line-height: 2.5rem;\n width: 3em;\n border-radius: 20%;\n height: 2.5rem;\n margin-right: 5%;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n right: 20px;\n}\n.trust-video-fullscreen:before {\n content: \"\\f065\";\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .trust-video-wrapper {\n margin-top: 20%;\n }\n}\n@media only screen and (max-width: 768px) {\n .trust-video {\n border: none;\n width: 70%;\n }\n}\n.utu-screen-recording {\n width: 100%;\n height: 100vh;\n margin: 5% auto 0;\n position: relative;\n z-index: 1;\n justify-content: center;\n}\n\n.btn-round {\n border: none;\n margin: 5px 0;\n width: 6rem;\n height: 6rem;\n border: none;\n font-size: 9px;\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 display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n z-index: 1;\n}\n.btn-round-light {\n background-color: rgb(252, 229, 70);\n}\n.btn-round-dark {\n background-color: rgb(252, 229, 70);\n}\n.btn-round-loading {\n position: absolute;\n bottom: 5.5rem;\n}\n.btn-round-spinner-light {\n fill: #000000;\n}\n.btn-round-spinner-dark {\n fill: #000000;\n}\n.btn-round-play {\n width: 4rem;\n margin-left: 0.5rem;\n}\n.btn-round-play-light {\n fill: #000000;\n}\n.btn-round-play-dark {\n fill: #000000;\n}\n.btn-round-stop {\n position: absolute;\n bottom: 17rem;\n}\n.btn-round-stop-light {\n fill: #000000;\n}\n.btn-round-stop-dark {\n fill: #000000;\n}\n.btn-round-text-light {\n color: #000000;\n}\n.btn-round-text-dark {\n color: #000000;\n}\n.btn-container {\n display: flex;\n z-index: 0;\n justify-content: center;\n}\n.btn-stop-icon {\n width: 30px;\n height: 30px;\n border-radius: 5px;\n}\n.btn-stop-icon-light {\n background: #000000;\n}\n.btn-stop-icon-dark {\n background: #000000;\n}\n\n.video-recorder {\n padding-top: 0;\n padding-bottom: 4rem;\n height: fit-content;\n}\n\n.video-container {\n display: flex;\n justify-content: center;\n padding-top: 4rem;\n padding-bottom: 4rem;\n}\n\n.response-message {\n height: 3rem;\n line-height: 3rem;\n width: 100%;\n}\n\n.x-utu-video-wrapper {\n display: flex;\n align-items: center;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .video-recorder {\n padding-bottom: 4rem;\n height: fit-content;\n background-color: rgb(253, 253, 253) !important;\n }\n .utu-screen-recording {\n max-height: 80rem;\n min-width: 20rem;\n width: 27rem;\n height: 43rem;\n margin: 5% auto 0;\n z-index: 1;\n justify-content: center;\n border-bottom-left-radius: 2%;\n border-bottom-right-radius: 2%;\n border-bottom: 13px rgb(252, 229, 70) solid;\n }\n .btn-round-stop {\n bottom: 2.5rem;\n }\n .video-container {\n padding-top: 2rem;\n padding-bottom: 2rem;\n }\n}";
|
|
58602
|
+
var css_248z$c = "@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);\nbody {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n.video-msg {\n position: absolute;\n}\n\n.trust-video {\n border: none;\n width: 100%;\n height: auto;\n transform: rotateY(180deg);\n -webkit-transform: rotateY(180deg); /* Safari and Chrome */\n -moz-transform: rotateY(180deg); /* Firefox */\n}\n.trust-video-wrapper {\n display: flex;\n justify-content: center;\n width: 100%;\n align-items: center;\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 width: 100%;\n margin-top: 35%;\n transform: translate(0, -50%);\n padding-left: 36px;\n border-radius: 10px;\n height: 4em;\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 font-size: 3em;\n margin: auto;\n line-height: 1.5em;\n width: 3em;\n height: 3em;\n padding: 0;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n border-radius: 50%;\n font: normal normal normal 18px/1 FontAwesome;\n}\n.trust-video-play:before {\n content: \"\\f04b\";\n}\n.trust-video-play.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-volume {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n border-radius: 20%;\n line-height: 1.5em;\n width: 2em;\n height: 1.5em;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n left: 20px;\n}\n.trust-video-volume:before {\n content: \"\\f028\";\n}\n.trust-video-volume.off:before {\n content: \"\\f026\";\n}\n.trust-video-fullscreen {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n line-height: 2.5rem;\n width: 3em;\n border-radius: 20%;\n height: 2.5rem;\n margin-right: 5%;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n right: 20px;\n}\n.trust-video-fullscreen:before {\n content: \"\\f065\";\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .trust-video-wrapper {\n margin-top: -3rem;\n }\n}\n@media only screen and (max-width: 768px) {\n .trust-video {\n border: none;\n }\n}\n.x-utu-video {\n display: flex;\n justify-content: center;\n}\n.x-utu-video-btn-round {\n border: none;\n margin: 5px 0;\n width: 4rem;\n height: 4rem;\n border: none;\n font-size: 9px;\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 display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n z-index: 1;\n border-radius: 50px;\n}\n.x-utu-video-btn-round-light {\n background-color: rgb(252, 229, 70);\n}\n.x-utu-video-btn-round-dark {\n background-color: rgb(252, 229, 70);\n}\n.x-utu-video-btn-round-loading {\n position: absolute;\n bottom: 5.5rem;\n margin-top: 0.25;\n}\n.x-utu-video-btn-round-spinner-light {\n fill: #000000;\n}\n.x-utu-video-btn-round-spinner-dark {\n fill: #000000;\n}\n.x-utu-video-btn-round-play {\n width: 4rem;\n margin-left: 0.5rem;\n}\n.x-utu-video-btn-round-play-light {\n fill: #000000;\n}\n.x-utu-video-btn-round-play-dark {\n fill: #000000;\n}\n.x-utu-video-btn-round-stop {\n position: absolute;\n bottom: 10%;\n margin-top: 0.25;\n background-color: rgb(252, 229, 70);\n}\n.x-utu-video-btn-round-stop-light {\n fill: #000000;\n}\n.x-utu-video-btn-round-stop-dark {\n fill: #000000;\n}\n.x-utu-video-btn-round-text-light {\n color: #000000;\n}\n.x-utu-video-btn-round-text-dark {\n color: #000000;\n}\n.x-utu-video-btn-container {\n display: flex;\n z-index: 0;\n justify-content: center;\n}\n.x-utu-video-btn-stop-icon {\n width: 20px;\n height: 20px;\n border-radius: 5px;\n}\n.x-utu-video-btn-stop-icon-light {\n background: #000000;\n}\n.x-utu-video-btn-stop-icon-dark {\n background: #000000;\n}\n.x-utu-video-screen-recording {\n width: 100%;\n position: relative;\n z-index: 1;\n justify-content: center;\n}\n.x-utu-video-recorder {\n padding-top: 0;\n padding-bottom: 4rem;\n height: fit-content;\n}\n.x-utu-video-container {\n display: flex;\n justify-content: center;\n padding-top: 2rem;\n padding-bottom: 2rem;\n}\n.x-utu-video-response-message {\n height: 3rem;\n line-height: 3rem;\n width: 100%;\n}\n.x-utu-video-wrapper {\n display: flex;\n align-items: center;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .x-utu-video-recorder {\n padding-bottom: 4rem;\n height: fit-content;\n background-color: rgb(253, 253, 253) !important;\n }\n .x-utu-video-btn-round-stop {\n bottom: 2.5rem;\n }\n .x-utu-video-container {\n padding-top: 2rem;\n padding-bottom: 2rem;\n }\n .x-utu-video-screen-recording {\n max-height: 80rem;\n min-width: 20rem;\n width: 27rem;\n height: 43rem;\n margin: 5% auto 0;\n z-index: 1;\n justify-content: center;\n border-bottom-left-radius: 2%;\n border-bottom-right-radius: 2%;\n border-bottom: 13px rgb(252, 229, 70) solid;\n }\n}";
|
|
58601
58603
|
styleInject(css_248z$c);
|
|
58602
58604
|
|
|
58603
58605
|
function RecordIcon() {
|
|
@@ -58618,9 +58620,9 @@
|
|
|
58618
58620
|
new MediaStream();
|
|
58619
58621
|
function Recorder(props) {
|
|
58620
58622
|
/**
|
|
58621
|
-
|
|
58622
|
-
|
|
58623
|
-
|
|
58623
|
+
* Holds the active reader retrieved from ReadableStorage.getReader() while a video is recording, or null while no
|
|
58624
|
+
* video is recording.
|
|
58625
|
+
*/
|
|
58624
58626
|
var _useState = p(null),
|
|
58625
58627
|
_useState2 = _slicedToArray(_useState, 2),
|
|
58626
58628
|
activeReader = _useState2[0],
|
|
@@ -58708,9 +58710,9 @@
|
|
|
58708
58710
|
stopStream = _useReactMediaRecorde.stopStream,
|
|
58709
58711
|
previewStream = _useReactMediaRecorde.previewStream;
|
|
58710
58712
|
|
|
58711
|
-
var isLoading = loading || [
|
|
58712
|
-
var isReady = (status ===
|
|
58713
|
-
var isRecording = status ===
|
|
58713
|
+
var isLoading = loading || ["stopping", "acquiring_media"].includes(status);
|
|
58714
|
+
var isReady = (status === "idle" || status === "stopped") && !isLoading;
|
|
58715
|
+
var isRecording = status === "recording";
|
|
58714
58716
|
|
|
58715
58717
|
var onStop = /*#__PURE__*/function () {
|
|
58716
58718
|
var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
|
@@ -58773,40 +58775,40 @@
|
|
|
58773
58775
|
};
|
|
58774
58776
|
}, []);
|
|
58775
58777
|
return h$2("div", {
|
|
58776
|
-
className: "
|
|
58778
|
+
className: "x-utu-video"
|
|
58777
58779
|
}, h$2("div", {
|
|
58778
58780
|
className: "text-center"
|
|
58779
58781
|
}, h$2("div", {
|
|
58780
|
-
className: "btn-container"
|
|
58782
|
+
className: "x-utu-video-btn-container"
|
|
58781
58783
|
}, h$2(PopUp, {
|
|
58782
58784
|
closeButtonOverlay: true,
|
|
58783
58785
|
onClose: onClose
|
|
58784
58786
|
}, h$2(BaseComponent, {
|
|
58785
58787
|
style: css_248z$c,
|
|
58786
|
-
className: "utu-screen-recording d-flex flex-column align-items-center justify-content-center"
|
|
58788
|
+
className: "x-utu-video-screen-recording d-flex flex-column align-items-center justify-content-center"
|
|
58787
58789
|
}, VideoSrc(status, previewStream), isRecording && h$2("button", {
|
|
58788
58790
|
type: "button",
|
|
58789
|
-
className: "
|
|
58791
|
+
className: "x-utu-video-btn-round-stop x-utu-video-btn-round-stop-".concat(envCondition, " x-utu-video-btn-round btn-round-").concat(envCondition),
|
|
58790
58792
|
onClick: onStop
|
|
58791
58793
|
}, h$2("div", {
|
|
58792
|
-
className: "btn-stop-icon btn-stop-icon-".concat(envCondition)
|
|
58794
|
+
className: "x-utu-video-btn-stop-icon x-utu-video-btn-stop-icon-".concat(envCondition)
|
|
58793
58795
|
})), isReady && !publishedVideoUrl && h$2("button", {
|
|
58794
58796
|
type: "button",
|
|
58795
|
-
className: "
|
|
58797
|
+
className: "\n x-utu-video-btn-round-stop x-utu-video-btn-round-stop-".concat(envCondition, " x-utu-video-btn-round x-utu-video-btn-round-").concat(envCondition, "\n "),
|
|
58796
58798
|
onClick: function onClick() {
|
|
58797
58799
|
startRecording();
|
|
58798
58800
|
}
|
|
58799
58801
|
}, h$2(RecordIcon, null)), isLoading && h$2("button", {
|
|
58800
58802
|
type: "button",
|
|
58801
|
-
className: "
|
|
58803
|
+
className: "x-utu-video-btn-round-loading x-utu-video-btn-round x-utu-video-btn-round-".concat(envCondition)
|
|
58802
58804
|
}, h$2("div", {
|
|
58803
|
-
className: "mb-2 mr-2 btn-round-spinner btn-round-spinner-".concat(envCondition)
|
|
58805
|
+
className: "mb-2 mr-2 x-utu-video-btn-round-spinner x-utu-video-btn-round-spinner-".concat(envCondition)
|
|
58804
58806
|
}, h$2(videoIcon$1, null))), h$2("div", {
|
|
58805
58807
|
className: "video-msg d-flex align-items-center"
|
|
58806
58808
|
}, successMessage && h$2("h3", {
|
|
58807
|
-
className: "response-message my-4 text-white bg-success"
|
|
58809
|
+
className: "x-utu-video-response-message my-4 text-white bg-success"
|
|
58808
58810
|
}, " ", successMessage, " "), errorMessage && h$2("h3", {
|
|
58809
|
-
className: "response-message my-4 text-white bg-danger"
|
|
58811
|
+
className: "x-utu-video-response-message my-4 text-white bg-danger"
|
|
58810
58812
|
}, " ", errorMessage, " ")), h$2("section", {
|
|
58811
58813
|
className: "logo-position-video"
|
|
58812
58814
|
}, h$2(Logo, null)))))));
|
|
@@ -58852,7 +58854,7 @@
|
|
|
58852
58854
|
var envCondition = isDark ? "dark" : "light";
|
|
58853
58855
|
return h$2(BaseComponent, {
|
|
58854
58856
|
style: css_248z$c,
|
|
58855
|
-
className: "video-container utu-section utu-section-".concat(envCondition)
|
|
58857
|
+
className: "x-utu-video-container x-utu-section x-utu-section-".concat(envCondition)
|
|
58856
58858
|
}, h$2("div", {
|
|
58857
58859
|
className: "x-utu-video-wrapper"
|
|
58858
58860
|
}, h$2("button", {
|
|
@@ -58860,12 +58862,12 @@
|
|
|
58860
58862
|
style: {
|
|
58861
58863
|
backgroundColor: props[ATTR_BTN_COLOR] === undefined ? null : "".concat(props[ATTR_BTN_COLOR])
|
|
58862
58864
|
},
|
|
58863
|
-
className: "btn-round btn-round-".concat(envCondition),
|
|
58865
|
+
className: "x-utu-video-btn-round x-utu-video-btn-round-".concat(envCondition),
|
|
58864
58866
|
onClick: function onClick() {
|
|
58865
58867
|
setVideoVisible(true);
|
|
58866
58868
|
}
|
|
58867
58869
|
}, h$2(videoIcon, null)), h$2("p", {
|
|
58868
|
-
className: "mx-3 mt-3 btn-round-text-".concat(envCondition)
|
|
58870
|
+
className: "mx-3 mt-3 x-utu-video-btn-round-text-".concat(envCondition)
|
|
58869
58871
|
}, " ", h$2("b", null, "RECORD YOUR STORY"), " "), videoVisible && h$2(Recorder, _extends$1({}, props, {
|
|
58870
58872
|
onClose: function onClose() {
|
|
58871
58873
|
setVideoVisible(false);
|
|
@@ -58891,9 +58893,7 @@
|
|
|
58891
58893
|
className: "utu-feedback-form"
|
|
58892
58894
|
}, h$2("div", {
|
|
58893
58895
|
className: "mobile-view"
|
|
58894
|
-
}, h$2(RecordVideo, props), h$2("
|
|
58895
|
-
className: "x-utu-divider"
|
|
58896
|
-
}), h$2(StarRatingInput, props), h$2(Badges, props), h$2(FeedbackTextInput, props), h$2(EndorsementForm, props), h$2("section", {
|
|
58896
|
+
}, h$2(RecordVideo, props), h$2(StarRatingInput, props), h$2(Badges, props), h$2(FeedbackTextInput, props), h$2(EndorsementForm, props), h$2("section", {
|
|
58897
58897
|
className: "logo-section-mobile"
|
|
58898
58898
|
}, h$2("div", {
|
|
58899
58899
|
className: "logo-position-mobile"
|
|
@@ -58904,7 +58904,7 @@
|
|
|
58904
58904
|
}, h$2(RecordVideo, props), h$2("div", {
|
|
58905
58905
|
className: "x-utu-divider"
|
|
58906
58906
|
}), h$2(StarRatingInput, props)), h$2("div", {
|
|
58907
|
-
className: "
|
|
58907
|
+
className: "x-utu-feedback-form-Badges"
|
|
58908
58908
|
}, h$2(Badges, props)), h$2("div", {
|
|
58909
58909
|
className: "desktop-view-block-2 desktop-view-block-2-".concat(isDark ? "dark" : "light")
|
|
58910
58910
|
}, h$2(FeedbackTextInput, props)), h$2("div", {
|
|
@@ -58916,7 +58916,7 @@
|
|
|
58916
58916
|
}, h$2(Logo, null)))));
|
|
58917
58917
|
}
|
|
58918
58918
|
|
|
58919
|
-
var css_248z$b = "@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);\n.trust-video {\n border: none;\n width: 100%;\n height: auto;\n transform: rotateY(180deg);\n -webkit-transform: rotateY(180deg); /* Safari and Chrome */\n -moz-transform: rotateY(180deg); /* Firefox */\n}\n.trust-video-wrapper {\n width: 100%;\n margin-top: -80%;\n align-items: center;\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 width: 100%;\n margin-top: 35%;\n transform: translate(0, -50%);\n padding-left: 36px;\n border-radius: 10px;\n height: 4em;\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 font-size: 3em;\n margin: auto;\n line-height: 1.5em;\n width: 3em;\n height: 3em;\n padding: 0;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n border-radius: 50%;\n font: normal normal normal 18px/1 FontAwesome;\n}\n.trust-video-play:before {\n content: \"\\f04b\";\n}\n.trust-video-play.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-volume {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n border-radius: 20%;\n line-height: 1.5em;\n width: 2em;\n height: 1.5em;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n left: 20px;\n}\n.trust-video-volume:before {\n content: \"\\f028\";\n}\n.trust-video-volume.off:before {\n content: \"\\f026\";\n}\n.trust-video-fullscreen {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n line-height: 2.5rem;\n width: 3em;\n border-radius: 20%;\n height: 2.5rem;\n margin-right: 5%;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n right: 20px;\n}\n.trust-video-fullscreen:before {\n content: \"\\f065\";\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .trust-video-wrapper {\n margin-top: 20%;\n }\n}\n@media only screen and (max-width: 768px) {\n .trust-video {\n border: none;\n width: 70%;\n }\n}\nbody {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color: white !important;\n}\n.btn-round-text {\n color: white !important;\n}\n\n.icon-btn {\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.icon-btn svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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.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\nsvg.video-icon {\n width: 3rem;\n height: 2.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section {\n width: 100%;\n }\n .utu-section-light {\n border-bottom: 0;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 15px;\n}\n\n.utu-feedback-details {\n display: flex;\n flex-direction: column;\n text-align: center;\n width: 100vw;\n position: relative;\n z-index: 1;\n justify-content: start;\n border-bottom: 15px rgb(252, 229, 70) solid;\n}\n.utu-feedback-details-details {\n justify-content: start;\n max-height: 40rem;\n}\n.utu-feedback-details-video-popup {\n justify-content: center;\n max-height: 80rem;\n height: 43rem;\n}\n\n.mobile-view {\n visibility: visible;\n}\n\n.desktop-view {\n display: none;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-feedback-details {\n border-bottom: 0;\n z-index: 1;\n align-items: center;\n }\n .mobile-view {\n display: none;\n }\n .desktop-view {\n display: flex;\n width: 100%;\n flex-direction: column;\n }\n .desktop-view-block-1 {\n width: 100%;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-evenly;\n margin: 1rem 0;\n }\n .desktop-view-block-1-dark {\n background-color: #3d3d3c;\n }\n .desktop-view-block-1-light {\n background-color: #fcf8e5;\n }\n .desktop-view-block-2 {\n width: 100%;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n margin: 1rem 0;\n }\n .desktop-view-block-2-dark {\n background-color: #3d3d3c;\n }\n .desktop-view-block-2-light {\n background-color: #fcf8e5;\n }\n}";
|
|
58919
|
+
var css_248z$b = "@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);\n.video-msg {\n position: absolute;\n}\n\n.trust-video {\n border: none;\n width: 100%;\n height: auto;\n transform: rotateY(180deg);\n -webkit-transform: rotateY(180deg); /* Safari and Chrome */\n -moz-transform: rotateY(180deg); /* Firefox */\n}\n.trust-video-wrapper {\n display: flex;\n justify-content: center;\n width: 100%;\n align-items: center;\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 width: 100%;\n margin-top: 35%;\n transform: translate(0, -50%);\n padding-left: 36px;\n border-radius: 10px;\n height: 4em;\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 font-size: 3em;\n margin: auto;\n line-height: 1.5em;\n width: 3em;\n height: 3em;\n padding: 0;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n border-radius: 50%;\n font: normal normal normal 18px/1 FontAwesome;\n}\n.trust-video-play:before {\n content: \"\\f04b\";\n}\n.trust-video-play.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-volume {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n border-radius: 20%;\n line-height: 1.5em;\n width: 2em;\n height: 1.5em;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n left: 20px;\n}\n.trust-video-volume:before {\n content: \"\\f028\";\n}\n.trust-video-volume.off:before {\n content: \"\\f026\";\n}\n.trust-video-fullscreen {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n line-height: 2.5rem;\n width: 3em;\n border-radius: 20%;\n height: 2.5rem;\n margin-right: 5%;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n right: 20px;\n}\n.trust-video-fullscreen:before {\n content: \"\\f065\";\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .trust-video-wrapper {\n margin-top: -3rem;\n }\n}\n@media only screen and (max-width: 768px) {\n .trust-video {\n border: none;\n }\n}\nbody {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n.utu-feedback-details {\n min-height: 30rem;\n width: 100%;\n margin: auto;\n background-color: #fcf8e5;\n display: flex;\n flex-direction: column;\n text-align: center;\n position: relative;\n z-index: 1;\n justify-content: start;\n border-bottom: 15px rgb(252, 229, 70) solid;\n}\n.utu-feedback-details-details {\n justify-content: start;\n max-height: 40rem;\n}\n.utu-feedback-details-video-popup {\n justify-content: center;\n max-height: 80rem;\n height: 43rem;\n}\n\n.mobile-view {\n visibility: visible;\n}\n\n.desktop-view {\n display: none;\n}\n\n/* ----------- Transition screen ----------- */\n@media only screen and (min-width: 768px) {\n .utu-feedback-details {\n border-bottom: 0;\n z-index: 1;\n align-items: center;\n margin-bottom: 10rem;\n }\n .mobile-view {\n display: none;\n }\n .desktop-view {\n display: flex;\n width: 100%;\n flex-direction: column;\n margin-bottom: 5rem;\n }\n .desktop-view-video-stars {\n display: flex;\n flex-direction: column;\n }\n .desktop-view-block-1 {\n width: 65%;\n margin: auto;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n }\n .desktop-view-block-1-dark {\n background-color: #3d3d3c;\n }\n .desktop-view-block-1-light {\n background-color: #fcf8e5;\n }\n .desktop-view-block-2 {\n width: 65%;\n margin: auto;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n }\n .desktop-view-block-2-dark {\n background-color: #3d3d3c;\n }\n .desktop-view-block-2-light {\n background-color: #fcf8e5;\n }\n}\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 1481px) {\n .utu-feedback-details {\n border-bottom: 0;\n z-index: 1;\n align-items: center;\n width: 65%;\n }\n .mobile-view {\n display: none;\n }\n .desktop-view {\n display: flex;\n width: 100%;\n flex-direction: column;\n }\n .desktop-view-video-stars {\n display: flex;\n flex-direction: column;\n }\n .desktop-view-block-1 {\n min-height: 15rem;\n width: 100%;\n margin: auto;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-evenly;\n }\n .desktop-view-block-1-dark {\n background-color: #3d3d3c;\n }\n .desktop-view-block-1-light {\n background-color: #fcf8e5;\n }\n .desktop-view-block-2 {\n min-height: 15rem;\n width: 100%;\n margin: auto;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n }\n .desktop-view-block-2-dark {\n background-color: #3d3d3c;\n }\n .desktop-view-block-2-light {\n background-color: #fcf8e5;\n }\n}";
|
|
58920
58920
|
styleInject(css_248z$b);
|
|
58921
58921
|
|
|
58922
58922
|
var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice');
|
|
@@ -58963,7 +58963,7 @@
|
|
|
58963
58963
|
}
|
|
58964
58964
|
});
|
|
58965
58965
|
|
|
58966
|
-
var css_248z$a = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color:
|
|
58966
|
+
var css_248z$a = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n.endor-avatar {\n width: 2rem;\n}\n.endor-text {\n justify-content: space-around;\n padding-left: 3rem;\n padding-right: 3rem;\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 padding-top: 1rem;\n padding-bottom: 1rem;\n align-items: center;\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: 2rem;\n padding-right: 2rem;\n font-size: 0.7rem;\n width: 27em;\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-left: -15px;\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-text-body {\n padding-left: 3rem;\n padding-right: 3rem;\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}";
|
|
58967
58967
|
styleInject(css_248z$a);
|
|
58968
58968
|
|
|
58969
58969
|
// const minLength = 5;
|
|
@@ -59010,7 +59010,7 @@
|
|
|
59010
59010
|
return h$2("p", {
|
|
59011
59011
|
className: "endor-text-contacts-body "
|
|
59012
59012
|
}, connectionInfo.ref, "\xA0", ((_connectionInfo$name = connectionInfo.name) === null || _connectionInfo$name === void 0 ? void 0 : _connectionInfo$name.length) > 0 && h$2("span", {
|
|
59013
|
-
className: "
|
|
59013
|
+
className: "endor-text-truncate"
|
|
59014
59014
|
}, h$2("b", null, connectionInfo.name), "\xA0"), has, " endorsed ", h$2("b", {
|
|
59015
59015
|
className: "mx-1"
|
|
59016
59016
|
}, (_endorsementInfo$endo = endorsementInfo.endorsement) === null || _endorsementInfo$endo === void 0 ? void 0 : _endorsementInfo$endo.value, " UTT"));
|
|
@@ -59068,14 +59068,14 @@
|
|
|
59068
59068
|
excludeBootstrap: true,
|
|
59069
59069
|
excludeFonts: true
|
|
59070
59070
|
}, h$2("section", {
|
|
59071
|
-
className: "endor-text-section utu-section-".concat(envCondition)
|
|
59071
|
+
className: "endor-text-section x-utu-section-".concat(envCondition)
|
|
59072
59072
|
}, h$2("div", {
|
|
59073
59073
|
className: "endor-text endor-text-".concat(envCondition)
|
|
59074
59074
|
}, displayEndorsements.map(function (i) {
|
|
59075
59075
|
var _i$endorsement;
|
|
59076
59076
|
|
|
59077
59077
|
return h$2("div", {
|
|
59078
|
-
className: "
|
|
59078
|
+
className: "endor-text-body"
|
|
59079
59079
|
}, h$2("div", {
|
|
59080
59080
|
className: "endor-text-img"
|
|
59081
59081
|
}, endorImg()), h$2("div", {
|
|
@@ -59090,7 +59090,7 @@
|
|
|
59090
59090
|
}))));
|
|
59091
59091
|
}
|
|
59092
59092
|
|
|
59093
|
-
var css_248z$9 = ".stars-section {\n display: flex;\n justify-content: center;\n}\n.stars-text {\n
|
|
59093
|
+
var css_248z$9 = ".stars-section {\n display: flex;\n justify-content: center;\n flex-direction: row;\n width: 100%;\n padding-left: 2rem;\n padding-right: 2rem;\n}\n.stars-section-text {\n display: flex;\n align-items: center;\n margin-top: 1rem;\n width: 70%;\n}\n.stars-section-text-content {\n text-align: justify;\n}\n.stars-section-align {\n display: flex;\n align-items: center;\n margin-top: 1.4rem;\n margin-bottom: 1.4rem;\n margin-right: 1rem;\n width: 30%;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .stars-section {\n padding-top: 0;\n padding-bottom: 0;\n padding-left: 1rem;\n justify-content: start;\n }\n .stars-text {\n width: 60%;\n }\n .stars-align {\n width: 40%;\n }\n}";
|
|
59094
59094
|
styleInject(css_248z$9);
|
|
59095
59095
|
|
|
59096
59096
|
function StarRatingShow(props) {
|
|
@@ -59116,17 +59116,21 @@
|
|
|
59116
59116
|
return h$2(BaseComponent, {
|
|
59117
59117
|
style: css_248z$9
|
|
59118
59118
|
}, h$2("section", {
|
|
59119
|
-
className: "stars-section utu-section-".concat(envCondition)
|
|
59119
|
+
className: "stars-section x-utu-section-".concat(envCondition)
|
|
59120
59120
|
}, h$2("div", {
|
|
59121
|
-
className: "stars-align"
|
|
59121
|
+
className: "stars-section-align"
|
|
59122
59122
|
}, h$2(_default, {
|
|
59123
59123
|
count: 5,
|
|
59124
59124
|
value: stars,
|
|
59125
59125
|
size: 30,
|
|
59126
59126
|
color2: "#FFDD33",
|
|
59127
59127
|
edit: false,
|
|
59128
|
-
className: "
|
|
59129
|
-
}))
|
|
59128
|
+
className: "pr-4"
|
|
59129
|
+
})), h$2("div", {
|
|
59130
|
+
className: "stars-section-text"
|
|
59131
|
+
}, h$2("p", {
|
|
59132
|
+
className: "stars-section-text-content"
|
|
59133
|
+
}, "Your friends Hamad and Laura have rated the service 5 stars"))));
|
|
59130
59134
|
}
|
|
59131
59135
|
|
|
59132
59136
|
var FAILS_ON_PRIMITIVES = fails(function () {
|
|
@@ -59144,7 +59148,7 @@
|
|
|
59144
59148
|
}
|
|
59145
59149
|
});
|
|
59146
59150
|
|
|
59147
|
-
var css_248z$8 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color:
|
|
59151
|
+
var css_248z$8 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n.badge-spacing {\n display: flex;\n flex-direction: column;\n padding-bottom: 3rem;\n padding-top: 1rem;\n}\n.badge-section {\n display: flex;\n justify-content: center;\n padding-top: 1rem;\n padding-bottom: 1rem;\n width: 100%;\n flex-direction: column;\n}\n.badge-section-content {\n display: flex;\n flex-direction: column;\n justify-content: center;\n padding-left: 2rem;\n padding-right: 2rem;\n}\n.badge-section-badges {\n display: flex;\n justify-content: center;\n}\n.badge-section-text {\n display: flex;\n justify-content: center;\n margin-top: 1rem;\n margin-bottom: 1rem;\n}\n.badge-section-text-content {\n text-align: justify;\n max-width: 25rem;\n}\n.badge-container {\n position: relative;\n margin-right: 1rem;\n margin-left: 1rem;\n box-sizing: border-box;\n}\n.badge-container-thumb {\n border-radius: 50%;\n border: 1px rgb(235, 232, 232) solid;\n height: 1.5rem;\n width: 1.5rem;\n font-size: 0.6rem;\n justify-self: center;\n}\n.badge-container-thumb-light {\n background-color: rgb(253, 253, 253);\n color: #000000;\n}\n.badge-container-thumb-dark {\n background-color: rgb(36, 35, 35);\n color: #ffffff;\n}\n.badge-container-img {\n height: 4rem;\n width: 4rem;\n margin-bottom: 0.5rem;\n}\n.badge-container-profile {\n border-radius: 50%;\n border: 1px rgb(235, 232, 232) solid;\n height: 1.5rem;\n width: 1.5rem;\n font-size: 0.6rem;\n justify-self: center;\n margin-left: -0.5rem;\n}\n.badge-container-profile-light {\n background-color: rgb(253, 253, 253);\n color: #000000;\n}\n.badge-container-profile-dark {\n background-color: rgb(36, 35, 35);\n color: #ffffff;\n}\n.badge-container-profile-container {\n display: flex;\n justify-content: center;\n position: absolute;\n bottom: 2rem;\n right: 3.5rem;\n}\n.badge-container-title {\n padding-bottom: 0.5rem;\n font-size: 0.7rem;\n position: absolute;\n top: 5.5rem;\n left: 0.5rem;\n}\n.badge-container-title-dark {\n color: #ffffff;\n}\n.badge-container-title-light {\n color: #000000;\n}\n.badge-container-position-child-thumb {\n position: absolute;\n top: 1.3rem;\n right: -1rem;\n}\n.badge-container-position-child-profile {\n position: relative;\n top: 2.5rem;\n right: -3.3rem;\n}\n\n/* ----------- Transition screens ----------- */\n@media only screen and (min-width: 768px) {\n .badge-section {\n width: 100%;\n }\n .badge-section-badges {\n justify-content: space-evenly;\n }\n}\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 1481px) {\n .badge-section {\n width: 40%;\n }\n .badge-section-badges {\n justify-content: start;\n }\n .badge-section-text {\n justify-content: start;\n }\n .badge-badges {\n justify-content: start;\n }\n .badge-spacing {\n margin-right: 1rem;\n margin-left: 1rem;\n padding-top: 2rem;\n }\n}";
|
|
59148
59152
|
styleInject(css_248z$8);
|
|
59149
59153
|
|
|
59150
59154
|
function BadgesShow$1(props) {
|
|
@@ -59167,7 +59171,7 @@
|
|
|
59167
59171
|
|
|
59168
59172
|
|
|
59169
59173
|
var fbBadges = props.feedbackSummary.badges;
|
|
59170
|
-
var keys = Object.keys(fbBadges); // returns the badge with image,
|
|
59174
|
+
var keys = Object.keys(fbBadges); // returns the badge with image, thumb and title
|
|
59171
59175
|
|
|
59172
59176
|
var badgeGroup = keys.map(function (key, i) {
|
|
59173
59177
|
var badges = fbBadges[key];
|
|
@@ -59179,24 +59183,40 @@
|
|
|
59179
59183
|
}, h$2("div", {
|
|
59180
59184
|
className: "badge-container"
|
|
59181
59185
|
}, h$2("img", {
|
|
59182
|
-
className: "badge-
|
|
59186
|
+
className: "badge-container-thumb badge-container-thumb-".concat(envCondition, " badge-container-position-child-thumb"),
|
|
59183
59187
|
src: badges[badgeKey].badge.image,
|
|
59184
59188
|
alt: "person face"
|
|
59189
|
+
}), h$2("img", {
|
|
59190
|
+
className: "badge-container-img",
|
|
59191
|
+
src: badges[badgeKey].badge.imageBig,
|
|
59192
|
+
alt: "person face"
|
|
59185
59193
|
}), h$2("div", {
|
|
59186
|
-
className: "badge-
|
|
59187
|
-
}, badges[badgeKey].
|
|
59188
|
-
|
|
59189
|
-
|
|
59194
|
+
className: "badge-container-profile-container"
|
|
59195
|
+
}, badges[badgeKey].badge.profile instanceof Array ? badges[badgeKey].badge.profile.map(function (img) {
|
|
59196
|
+
return h$2("img", {
|
|
59197
|
+
className: "badge-container-profile badge-container-profile-".concat(envCondition, " badge-container-position-child-profile"),
|
|
59198
|
+
src: img,
|
|
59199
|
+
alt: "person face"
|
|
59200
|
+
});
|
|
59201
|
+
}) : ""), h$2("div", {
|
|
59202
|
+
className: "badge-container-title badge-container-title-".concat(envCondition)
|
|
59203
|
+
}, keys[i])));
|
|
59190
59204
|
});
|
|
59191
59205
|
});
|
|
59192
59206
|
return h$2(BaseComponent, {
|
|
59193
59207
|
style: css_248z$8,
|
|
59194
|
-
className: "badge-section utu-section-no-border-".concat(isDark ? "dark" : "light"),
|
|
59208
|
+
className: "badge-section x-utu-section-no-border-".concat(isDark ? "dark" : "light"),
|
|
59195
59209
|
excludeBootstrap: true,
|
|
59196
59210
|
excludeFonts: true
|
|
59197
59211
|
}, h$2("section", {
|
|
59198
|
-
className: "badge-section utu-section utu-section-".concat(envCondition)
|
|
59199
|
-
},
|
|
59212
|
+
className: "badge-section-content x-utu-section x-utu-section-".concat(envCondition)
|
|
59213
|
+
}, h$2("div", {
|
|
59214
|
+
className: "badge-section-badges"
|
|
59215
|
+
}, badgeGroup), h$2("div", {
|
|
59216
|
+
className: "badge-section-text"
|
|
59217
|
+
}, h$2("p", {
|
|
59218
|
+
className: "badge-section-text-content"
|
|
59219
|
+
}, "Your connections Hamad and Laura have given this service Well Networked and Powerful Purpose badges"))));
|
|
59200
59220
|
}
|
|
59201
59221
|
|
|
59202
59222
|
var css_248z$7 = ".avatar-no-video {\n width: 6rem;\n height: 6rem;\n}";
|
|
@@ -59233,7 +59253,7 @@
|
|
|
59233
59253
|
}))));
|
|
59234
59254
|
}
|
|
59235
59255
|
|
|
59236
|
-
var css_248z$6 = "@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);\n.trust-video {\n border: none;\n width: 100%;\n height: auto;\n transform: rotateY(180deg);\n -webkit-transform: rotateY(180deg); /* Safari and Chrome */\n -moz-transform: rotateY(180deg); /* Firefox */\n}\n.trust-video-wrapper {\n width: 100%;\n margin-top: -80%;\n align-items: center;\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 width: 100%;\n margin-top: 35%;\n transform: translate(0, -50%);\n padding-left: 36px;\n border-radius: 10px;\n height: 4em;\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 font-size: 3em;\n margin: auto;\n line-height: 1.5em;\n width: 3em;\n height: 3em;\n padding: 0;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n border-radius: 50%;\n font: normal normal normal 18px/1 FontAwesome;\n}\n.trust-video-play:before {\n content: \"\\f04b\";\n}\n.trust-video-play.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-volume {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n border-radius: 20%;\n line-height: 1.5em;\n width: 2em;\n height: 1.5em;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n left: 20px;\n}\n.trust-video-volume:before {\n content: \"\\f028\";\n}\n.trust-video-volume.off:before {\n content: \"\\f026\";\n}\n.trust-video-fullscreen {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n line-height: 2.5rem;\n width: 3em;\n border-radius: 20%;\n height: 2.5rem;\n margin-right: 5%;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n right: 20px;\n}\n.trust-video-fullscreen:before {\n content: \"\\f065\";\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .trust-video-wrapper {\n margin-top: 20%;\n }\n}\n@media only screen and (max-width: 768px) {\n .trust-video {\n border: none;\n width: 70%;\n }\n}\nbody {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color: white !important;\n}\n.btn-round-text {\n color: white !important;\n}\n\n.icon-btn {\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.icon-btn svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 6rem;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -2rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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.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\nsvg.video-icon {\n width: 3rem;\n height: 2.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.video-icon-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .utu-section {\n width: 100%;\n }\n .utu-section-light {\n border-bottom: 0;\n background-color: #fcf8e5;\n }\n .utu-section-dark {\n border-bottom: 0;\n background: rgb(36, 35, 35);\n background-color: #3d3d3c;\n }\n .utu-section-no-border-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-dark {\n background-color: #3d3d3c;\n }\n .utu-section-no-border-mid-light {\n background-color: #fcf8e5;\n }\n .utu-section-no-border-mid-dark {\n background-color: #3d3d3c;\n }\n .text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 15px;\n}\n\n.feedback-details-profile {\n cursor: pointer;\n}\n\n.utu-feedback {\n position: relative;\n width: 50%;\n margin: auto;\n}\n\n.avatar-img {\n border-radius: 50%;\n height: 2rem;\n border: 1px rgb(155, 152, 152) solid;\n}\n.avatar-img-top {\n height: 5rem;\n border-radius: 50%;\n border: 4px solid rgb(252, 229, 70);\n}\n.avatar-img-top:not(:first-child) {\n margin-left: -15px;\n}\n.avatar-img-top-video {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n padding-bottom: 2rem;\n padding-top: 2rem;\n}\n.avatar-img-text {\n font-size: 0.8rem;\n text-align: left;\n width: 19rem;\n}\n.avatar-no-img {\n width: 6rem;\n border-radius: 50%;\n padding: 1.5rem;\n}\n.avatar-no-img-no-vid {\n padding: 5px !important;\n}\n.avatar-no-img-light {\n background-color: rgb(252, 229, 70);\n border: 4px solid rgb(252, 229, 70);\n}\n.avatar-no-img-dark {\n background-color: rgb(252, 229, 70);\n border: 4px solid rgb(252, 229, 70);\n}\n.avatar-no-video-dark {\n fill: #000000;\n}\n.avatar-no-video-light {\n fill: #000000;\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .avatar-img-top-video {\n padding-bottom: 4rem;\n padding-top: 4rem;\n }\n .avatar-no-img {\n margin-bottom: 1rem;\n margin-top: 0.5rem;\n }\n}";
|
|
59256
|
+
var css_248z$6 = "@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);\n.video-msg {\n position: absolute;\n}\n\n.trust-video {\n border: none;\n width: 100%;\n height: auto;\n transform: rotateY(180deg);\n -webkit-transform: rotateY(180deg); /* Safari and Chrome */\n -moz-transform: rotateY(180deg); /* Firefox */\n}\n.trust-video-wrapper {\n display: flex;\n justify-content: center;\n width: 100%;\n align-items: center;\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 width: 100%;\n margin-top: 35%;\n transform: translate(0, -50%);\n padding-left: 36px;\n border-radius: 10px;\n height: 4em;\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 font-size: 3em;\n margin: auto;\n line-height: 1.5em;\n width: 3em;\n height: 3em;\n padding: 0;\n cursor: pointer;\n opacity: 1;\n background-color: #ffdd33;\n border-radius: 50%;\n font: normal normal normal 18px/1 FontAwesome;\n}\n.trust-video-play:before {\n content: \"\\f04b\";\n}\n.trust-video-play.paused:before {\n content: \"\\f04c\";\n}\n.trust-video-volume {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n border-radius: 20%;\n line-height: 1.5em;\n width: 2em;\n height: 1.5em;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n left: 20px;\n}\n.trust-video-volume:before {\n content: \"\\f028\";\n}\n.trust-video-volume.off:before {\n content: \"\\f026\";\n}\n.trust-video-fullscreen {\n border-color: transparent;\n color: rgba(43, 51, 63, 0.7);\n font-size: 3em;\n line-height: 2.5rem;\n width: 3em;\n border-radius: 20%;\n height: 2.5rem;\n margin-right: 5%;\n font: normal normal normal 18px/1 FontAwesome;\n background-color: rgba(255, 221, 51, 0.7);\n right: 20px;\n}\n.trust-video-fullscreen:before {\n content: \"\\f065\";\n}\n\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 768px) {\n .trust-video-wrapper {\n margin-top: -3rem;\n }\n}\n@media only screen and (max-width: 768px) {\n .trust-video {\n border: none;\n }\n}\nbody {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n.utu-feedback {\n position: relative;\n width: 50%;\n margin: auto;\n}\n\n.video-section {\n display: flex;\n list-style-type: none;\n}\n\n.avatar {\n cursor: pointer;\n display: flex;\n justify-content: center;\n}\n.avatar-img {\n border-radius: 50%;\n height: 2rem;\n border: 1px rgb(155, 152, 152) solid;\n}\n.avatar-img-top {\n height: 4rem;\n border-radius: 50%;\n border: 4px solid rgb(252, 229, 70);\n}\n.avatar-img-top:not(:first-child) {\n margin-left: -15px;\n}\n.avatar-img-top-video {\n width: 100%;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n padding-top: 1rem;\n padding: 1rem;\n}\n.avatar-img-top-video-text {\n margin-top: 2rem;\n}\n.avatar-img-top-video-container {\n display: flex;\n flex-direction: column;\n}\n.avatar-img-top-details {\n display: flex;\n height: 4rem;\n border-radius: 50%;\n border: 4px solid rgb(252, 229, 70);\n margin-left: -0.6rem;\n align-items: center;\n padding-bottom: 0;\n}\n.avatar-img-top-details:not(:first-child) {\n margin-left: -15px;\n}\n.avatar-img-top-list-item {\n display: flex;\n align-items: flex-start;\n}\n.avatar-img-top-text {\n font-size: 0.8rem;\n text-align: left;\n width: 19rem;\n}\n.avatar-img-no-img {\n width: 6rem;\n border-radius: 50%;\n padding: 1.5rem;\n}\n.avatar-img-no-img-no-vid {\n padding: 5px !important;\n}\n.avatar-img-no-img-light {\n background-color: rgb(252, 229, 70);\n border: 4px solid rgb(252, 229, 70);\n}\n.avatar-img-no-img-dark {\n background-color: rgb(252, 229, 70);\n border: 4px solid rgb(252, 229, 70);\n}\n.avatar-img-no-video-dark {\n fill: #000000;\n}\n.avatar-img-no-video-light {\n fill: #000000;\n}\n\n/* ----------- Transition screens ----------- */\n@media only screen and (min-width: 768px) {\n .avatar-img-top-video {\n justify-content: center;\n }\n}\n/* ----------- Large screens ----------- */\n@media only screen and (min-width: 1481px) {\n .avatar {\n justify-content: start;\n }\n .avatar-img-top-video {\n padding-top: 4rem;\n justify-content: start;\n }\n .avatar-no-img {\n margin-bottom: 1rem;\n margin-top: 0.5rem;\n }\n}";
|
|
59237
59257
|
styleInject(css_248z$6);
|
|
59238
59258
|
|
|
59239
59259
|
function VideoShow(props) {
|
|
@@ -59252,12 +59272,34 @@
|
|
|
59252
59272
|
|
|
59253
59273
|
if (!props.feedbackSummary) {
|
|
59254
59274
|
return h$2(p$1, null);
|
|
59255
|
-
}
|
|
59275
|
+
}
|
|
59276
|
+
|
|
59277
|
+
var video = props.feedbackSummary.video; // console.log("VideoShow video", video);
|
|
59278
|
+
// console.log("VideoShow video", Object.values(video)[0]);
|
|
59279
|
+
// console.log("VideoShow video", Object.values(video)[1]);
|
|
59280
|
+
|
|
59281
|
+
var profileImage = video instanceof Array ? video.map(function (img) {
|
|
59282
|
+
return img.image;
|
|
59283
|
+
}) : "";
|
|
59284
|
+
var profileUrl = video instanceof Array ? video.map(function (img) {
|
|
59285
|
+
return img.url;
|
|
59286
|
+
}) : "";
|
|
59287
|
+
var profileText = props.feedbackSummary.summary; // set of profile images
|
|
59256
59288
|
|
|
59289
|
+
var videoImg = video instanceof Array ? video.map(function (img) {
|
|
59290
|
+
return h$2("li", {
|
|
59291
|
+
className: "avatar-img-top-list-item",
|
|
59292
|
+
key: img.image
|
|
59293
|
+
}, h$2("img", {
|
|
59294
|
+
className: "avatar-img-top-details rounded-circle summary-image-item summary-image-item-".concat(envCondition),
|
|
59295
|
+
src: img.image,
|
|
59296
|
+
alt: "profile"
|
|
59297
|
+
}));
|
|
59298
|
+
}) : ""; // component for everything inclusing profile images, video or undefined
|
|
59257
59299
|
|
|
59258
59300
|
var UserImageVideo = function UserImageVideo(_ref) {
|
|
59259
|
-
var
|
|
59260
|
-
|
|
59301
|
+
var url = _ref.url,
|
|
59302
|
+
image = _ref.image;
|
|
59261
59303
|
|
|
59262
59304
|
var _useState3 = p(false),
|
|
59263
59305
|
_useState4 = _slicedToArray(_useState3, 2),
|
|
@@ -59265,17 +59307,13 @@
|
|
|
59265
59307
|
setVideoVisible = _useState4[1];
|
|
59266
59308
|
|
|
59267
59309
|
return h$2("div", null, h$2("div", {
|
|
59268
|
-
className: "
|
|
59310
|
+
className: "avatar",
|
|
59269
59311
|
onClick: function onClick() {
|
|
59270
59312
|
setVideoVisible(!videoVisible);
|
|
59271
59313
|
}
|
|
59272
59314
|
}, !image ? h$2("div", {
|
|
59273
59315
|
className: "ml-5 avatar-no-img avatar-no-img-".concat(envCondition)
|
|
59274
|
-
}, h$2(Avatar, props)) : h$2(
|
|
59275
|
-
className: "avatar-img-top",
|
|
59276
|
-
src: image,
|
|
59277
|
-
alt: "person face"
|
|
59278
|
-
})), videoVisible && url && h$2(PopUp, {
|
|
59316
|
+
}, h$2(Avatar, props)) : videoImg), videoVisible && url && h$2(PopUp, {
|
|
59279
59317
|
closeButtonOverlay: true,
|
|
59280
59318
|
onClose: function onClose() {
|
|
59281
59319
|
return setVideoVisible(false);
|
|
@@ -59288,25 +59326,26 @@
|
|
|
59288
59326
|
}, h$2(Logo, null)))));
|
|
59289
59327
|
};
|
|
59290
59328
|
|
|
59291
|
-
var video = props.feedbackSummary.video;
|
|
59292
59329
|
return h$2(BaseComponent, {
|
|
59293
59330
|
style: css_248z$6,
|
|
59294
|
-
className: "video-section utu-section-no-border-".concat(isDark ? "dark" : "light"),
|
|
59331
|
+
className: "video-section x-utu-section-no-border-".concat(isDark ? "dark" : "light"),
|
|
59295
59332
|
excludeBootstrap: true,
|
|
59296
59333
|
excludeFonts: true
|
|
59297
59334
|
}, video && h$2("section", {
|
|
59298
|
-
className: "avatar-img-top-video \n ".concat(
|
|
59299
|
-
}, !
|
|
59335
|
+
className: "avatar-img-top-video \n ".concat(profileUrl ? "x-utu-section-".concat(envCondition) : "")
|
|
59336
|
+
}, !profileUrl ? h$2("div", {
|
|
59300
59337
|
className: "ml-5 avatar-no-img avatar-no-img-".concat(envCondition)
|
|
59301
59338
|
}, h$2(Avatar, props)) : h$2("div", {
|
|
59302
|
-
className: "avatar-img-top-video"
|
|
59339
|
+
className: "avatar-img-top-video-container"
|
|
59303
59340
|
}, h$2(UserImageVideo, {
|
|
59304
|
-
url:
|
|
59305
|
-
image:
|
|
59306
|
-
})
|
|
59341
|
+
url: profileImage,
|
|
59342
|
+
image: profileImage
|
|
59343
|
+
}), h$2("p", {
|
|
59344
|
+
className: "avatar-img-top-video-text"
|
|
59345
|
+
}, profileText))));
|
|
59307
59346
|
}
|
|
59308
59347
|
|
|
59309
|
-
var css_248z$5 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color:
|
|
59348
|
+
var css_248z$5 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n.video-avatar {\n width: 2rem;\n}\n\n.video-placeholder {\n height: 2rem;\n}\n\n.review-section {\n width: 100vw;\n display: flex;\n white-space: nowrap;\n overflow-x: scroll;\n}\n.review-text {\n display: flex;\n flex-direction: column;\n}\n.review-text-sum {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 1rem;\n align-items: center;\n margin: 0 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n font-weight: bold;\n}\n.review-text-cont {\n display: flex;\n text-align: left;\n padding-left: 1rem;\n font-size: 1rem;\n align-items: center;\n margin: 0 8px;\n white-space: pre-line;\n width: 50px;\n inline-size: 100%;\n}\n.review-text-dark {\n color: #ffffff;\n}\n.review-text-light {\n color: #000000;\n}\n.review-card {\n font-size: 0.7rem;\n display: flex;\n padding: 1.5rem;\n padding-top: 4rem;\n padding-bottom: 4rem;\n justify-content: space-around;\n}\n.review-card-group {\n width: 30rem;\n display: flex;\n padding: 2rem 2.5rem 2rem 1.5rem;\n background-color: rgba(255, 221, 51, 0.15);\n align-items: center;\n min-height: 10rem;\n}\n.review-img {\n border-radius: 50%;\n height: 3rem;\n border: 1px rgb(155, 152, 152) solid;\n}\n\n.onerror-review-img {\n border-radius: 50%;\n height: 3rem;\n border: 1px rgb(155, 152, 152) solid;\n}\n\n/* ----------- Transition screen ----------- */\n@media only screen and (min-width: 768px) {\n .review-section {\n width: 100%;\n display: flex;\n justify-content: center;\n }\n}\n@media only screen and (min-width: 1481px) {\n .review-section {\n width: 30%;\n display: flex;\n white-space: nowrap;\n overflow-x: scroll;\n }\n .review-text-dark {\n color: rgb(36, 35, 35);\n }\n .review-text-light {\n color: #000000;\n }\n .review-card {\n padding-top: 4rem;\n padding-bottom: 4rem;\n display: flex;\n justify-content: center;\n max-width: 100%;\n overflow: hidden;\n word-wrap: break-word !important;\n }\n}";
|
|
59310
59349
|
styleInject(css_248z$5);
|
|
59311
59350
|
|
|
59312
59351
|
function BadgesShow(props) {
|
|
@@ -59326,20 +59365,18 @@
|
|
|
59326
59365
|
if (!props.feedbackSummary) {
|
|
59327
59366
|
return h$2(p$1, null);
|
|
59328
59367
|
} // review
|
|
59329
|
-
// const fbReviewImg = props.feedbackSummary.review?.image;
|
|
59330
|
-
// const fbReviewContent = props.feedbackSummary.review?.content;
|
|
59331
59368
|
|
|
59332
59369
|
|
|
59333
59370
|
var fbReview = props.feedbackSummary.reviews;
|
|
59334
59371
|
console.log(fbReview);
|
|
59335
59372
|
return h$2(BaseComponent, {
|
|
59336
59373
|
style: css_248z$5,
|
|
59337
|
-
className: "review-section utu-section-no-border-".concat(isDark ? "dark" : "light"),
|
|
59374
|
+
className: "review-section x-utu-section-no-border-".concat(isDark ? "dark" : "light"),
|
|
59338
59375
|
excludeBootstrap: true,
|
|
59339
59376
|
excludeFonts: true
|
|
59340
59377
|
}, fbReview ? fbReview.map(function (rev) {
|
|
59341
59378
|
return h$2("section", null, h$2("div", {
|
|
59342
|
-
className: "review-card utu-section-no-border-mid-".concat(envCondition)
|
|
59379
|
+
className: "review-card x-utu-section-no-border-mid-".concat(envCondition)
|
|
59343
59380
|
}, h$2("div", {
|
|
59344
59381
|
className: "review-card-group"
|
|
59345
59382
|
}, rev.image ? h$2("img", {
|
|
@@ -59407,11 +59444,13 @@
|
|
|
59407
59444
|
className: "desktop-view"
|
|
59408
59445
|
}, h$2("div", {
|
|
59409
59446
|
className: "desktop-view-block-1 desktop-view-block-1-".concat(isDark ? "dark" : "light")
|
|
59447
|
+
}, h$2("div", {
|
|
59448
|
+
className: "desktop-view-video-stars"
|
|
59410
59449
|
}, h$2(VideoShow, _extends$1({}, props, {
|
|
59411
59450
|
feedbackSummary: feedbackSummary
|
|
59412
59451
|
})), h$2(StarRatingShow, _extends$1({}, props, {
|
|
59413
59452
|
feedbackSummary: feedbackSummary
|
|
59414
|
-
})), h$2(BadgesShow, _extends$1({}, props, {
|
|
59453
|
+
}))), h$2(BadgesShow, _extends$1({}, props, {
|
|
59415
59454
|
feedbackSummary: feedbackSummary
|
|
59416
59455
|
}))), h$2("div", {
|
|
59417
59456
|
className: "desktop-view-block-2 desktop-view-block-2-".concat(isDark ? "dark" : "light")
|
|
@@ -59426,7 +59465,7 @@
|
|
|
59426
59465
|
}, h$2(Logo, null)))));
|
|
59427
59466
|
}
|
|
59428
59467
|
|
|
59429
|
-
var css_248z$4 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color:
|
|
59468
|
+
var css_248z$4 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n.x-utu-feedback-details-popup {\n padding: 0.5rem;\n border-radius: 5px;\n display: flex;\n flex-direction: column;\n align-items: stretch;\n justify-content: center;\n}";
|
|
59430
59469
|
styleInject(css_248z$4);
|
|
59431
59470
|
|
|
59432
59471
|
function FeedbackPopup(props) {
|
|
@@ -59450,13 +59489,13 @@
|
|
|
59450
59489
|
|
|
59451
59490
|
return h$2(BaseComponent, {
|
|
59452
59491
|
style: css_248z$4,
|
|
59453
|
-
className: "
|
|
59492
|
+
className: "x-utu-feedback-details-popup x-utu-section x-utu-section-no-border-".concat(envCondition)
|
|
59454
59493
|
}, h$2("button", {
|
|
59455
59494
|
type: "button",
|
|
59456
59495
|
style: {
|
|
59457
59496
|
backgroundColor: props[ATTR_BTN_COLOR] === undefined ? null : "".concat(props[ATTR_BTN_COLOR])
|
|
59458
59497
|
},
|
|
59459
|
-
className: "btn btn-".concat(envCondition, "
|
|
59498
|
+
className: "x-utu-btn x-utu-btn-".concat(envCondition, " border-radius"),
|
|
59460
59499
|
onClick: function onClick() {
|
|
59461
59500
|
return setPopUpVisible(true);
|
|
59462
59501
|
}
|
|
@@ -59487,13 +59526,13 @@
|
|
|
59487
59526
|
var envCondition = isDark ? "dark" : "light";
|
|
59488
59527
|
return h$2(BaseComponent, {
|
|
59489
59528
|
style: css_248z$m,
|
|
59490
|
-
className: "
|
|
59529
|
+
className: "x-utu-feedback-form-popup x-utu-section x-utu-section-no-border-".concat(envCondition)
|
|
59491
59530
|
}, h$2("button", {
|
|
59492
59531
|
type: "button",
|
|
59493
59532
|
style: {
|
|
59494
59533
|
backgroundColor: props[ATTR_BTN_COLOR] === undefined ? null : "".concat(props[ATTR_BTN_COLOR])
|
|
59495
59534
|
},
|
|
59496
|
-
className: "btn btn-".concat(envCondition, "
|
|
59535
|
+
className: "x-utu-btn x-utu-btn-".concat(envCondition, " border-radius"),
|
|
59497
59536
|
onClick: function onClick() {
|
|
59498
59537
|
return setPopUpVisible(true);
|
|
59499
59538
|
}
|
|
@@ -59502,41 +59541,58 @@
|
|
|
59502
59541
|
return setPopUpVisible(false);
|
|
59503
59542
|
}
|
|
59504
59543
|
}, props), h$2(FeedbackForm, props)));
|
|
59505
|
-
}
|
|
59544
|
+
}
|
|
59506
59545
|
|
|
59507
|
-
var css_248z$3 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color:
|
|
59546
|
+
var css_248z$3 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n.x-utu-header {\n width: 100%;\n padding: 2rem 3rem;\n background-color: #fcf8e5;\n display: flex;\n justify-content: center;\n border-radius: 5px;\n}";
|
|
59508
59547
|
styleInject(css_248z$3);
|
|
59509
59548
|
|
|
59510
59549
|
function Header() {
|
|
59511
59550
|
return h$2(BaseComponent, {
|
|
59512
59551
|
style: css_248z$3
|
|
59513
59552
|
}, h$2("section", {
|
|
59514
|
-
className: "utu-
|
|
59553
|
+
className: "x-utu-header x-utu-section"
|
|
59515
59554
|
}, h$2("h3", null, " Feedback From Your Network ")));
|
|
59516
59555
|
}
|
|
59517
59556
|
|
|
59518
|
-
var css_248z$2 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color:
|
|
59557
|
+
var css_248z$2 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n.x-utu-app-link {\n width: 100%;\n text-align: center;\n justify-content: center;\n border-radius: 5px;\n padding: 0.5rem;\n display: flex;\n flex-direction: column;\n align-items: stretch;\n background-color: #fcf8e5;\n}\n.x-utu-app-link-btn {\n background-color: rgb(252, 229, 70);\n width: 100%;\n}\n.x-utu-app-link-text {\n margin-top: 0.25rem;\n}\n\na {\n text-decoration: none;\n color: #000000;\n}\n\na :hover {\n color: #000000;\n}";
|
|
59519
59558
|
styleInject(css_248z$2);
|
|
59520
59559
|
|
|
59521
|
-
function UtuAppSocialLink() {
|
|
59560
|
+
function UtuAppSocialLink(props) {
|
|
59522
59561
|
var _getUtuSocialLink = getUtuSocialLink(),
|
|
59523
|
-
socialLinkUrl = _getUtuSocialLink.socialLinkUrl;
|
|
59562
|
+
socialLinkUrl = _getUtuSocialLink.socialLinkUrl; // environments
|
|
59563
|
+
|
|
59564
|
+
|
|
59565
|
+
var _useState = p(false),
|
|
59566
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
59567
|
+
isDark = _useState2[0],
|
|
59568
|
+
setIsDark = _useState2[1]; // environment conditionals
|
|
59569
|
+
|
|
59570
|
+
|
|
59571
|
+
var envCondition = isDark ? "dark" : "light";
|
|
59572
|
+
|
|
59573
|
+
if (props[ATTR_THEME_COLOR] === "dark") {
|
|
59574
|
+
setIsDark(true);
|
|
59575
|
+
}
|
|
59524
59576
|
|
|
59525
59577
|
return h$2(BaseComponent, {
|
|
59526
|
-
style: css_248z$2
|
|
59578
|
+
style: css_248z$2,
|
|
59579
|
+
className: "x-utu-app-link x-utu-section x-utu-section-no-border-".concat(envCondition)
|
|
59527
59580
|
}, h$2("button", {
|
|
59528
|
-
className: "utu-app-link btn",
|
|
59529
|
-
type: "button"
|
|
59581
|
+
className: "x-utu-app-link-btn x-utu-btn utu-btn-light",
|
|
59582
|
+
type: "button",
|
|
59583
|
+
style: {
|
|
59584
|
+
backgroundColor: props[ATTR_BTN_COLOR] === undefined ? null : "".concat(props[ATTR_BTN_COLOR])
|
|
59585
|
+
}
|
|
59530
59586
|
}, h$2("a", {
|
|
59531
59587
|
href: socialLinkUrl,
|
|
59532
59588
|
target: "_blank",
|
|
59533
59589
|
rel: "noreferrer"
|
|
59534
|
-
},
|
|
59535
|
-
className: "
|
|
59536
|
-
}, "Connect to earn")
|
|
59590
|
+
}, h$2("h3", {
|
|
59591
|
+
className: "x-utu-app-link-text"
|
|
59592
|
+
}, "Connect to earn"))));
|
|
59537
59593
|
}
|
|
59538
59594
|
|
|
59539
|
-
var css_248z$1 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color:
|
|
59595
|
+
var css_248z$1 = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n.x-utu-wallet-connect {\n width: 100%;\n align-items: center;\n text-align: center;\n justify-content: center;\n background-color: #fcf8e5;\n border-radius: 5px;\n}\n.x-utu-wallet-connect-section {\n padding: 0.5rem;\n}\n.x-utu-wallet-text-input-btn {\n width: 100%;\n background-color: rgb(252, 229, 70);\n margin-top: 1rem;\n}";
|
|
59540
59596
|
styleInject(css_248z$1);
|
|
59541
59597
|
|
|
59542
59598
|
function WalletConnect() {
|
|
@@ -59579,19 +59635,19 @@
|
|
|
59579
59635
|
|
|
59580
59636
|
return h$2(BaseComponent, {
|
|
59581
59637
|
style: css_248z$1,
|
|
59582
|
-
className: "utu-wallet-connect"
|
|
59638
|
+
className: "x-utu-wallet-connect"
|
|
59583
59639
|
}, h$2("section", {
|
|
59584
|
-
className: "
|
|
59640
|
+
className: "x-utu-wallet-connect-section"
|
|
59585
59641
|
}, h$2("p", {
|
|
59586
|
-
className: "utu-wallet-connect-text"
|
|
59642
|
+
className: "x-utu-wallet-connect-text"
|
|
59587
59643
|
}, "See UTU trust signals from your network"), h$2("div", null, h$2("button", {
|
|
59588
59644
|
onClick: connectWallet,
|
|
59589
|
-
className: "
|
|
59645
|
+
className: "x-utu-wallet-text-input-btn x-utu-btn",
|
|
59590
59646
|
type: "submit"
|
|
59591
59647
|
}, "Connect Wallet"))));
|
|
59592
59648
|
}
|
|
59593
59649
|
|
|
59594
|
-
var css_248z = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\n}\n\n.utu-section {\n width: 100%;\n}\n.utu-section-light {\n border-bottom: 1px solid rgb(155, 152, 152);\n background: rgb(253, 253, 253);\n}\n.utu-section-dark {\n border-bottom: 1px solid rgb(235, 232, 232);\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-dark {\n background: rgb(36, 35, 35);\n}\n.utu-section-no-border-mid-light {\n background: rgb(253, 253, 253);\n}\n.utu-section-no-border-mid-dark {\n background: #494949;\n}\n\n.btn {\n padding: 12px;\n border: none;\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.btn-light {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-dark {\n background-color: rgb(252, 229, 70);\n color: #000000 !important;\n}\n.btn-round {\n color:
|
|
59650
|
+
var css_248z = "body {\n overflow: scroll;\n}\n\nh3 {\n text-transform: capitalize;\n font-weight: 500;\n font-size: 14px;\n}\n\n.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.spinner {\n width: 21px;\n height: 21px;\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 margin: 12px;\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 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.x-utu-btn-icon svg {\n width: 60px;\n height: 60px;\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.submit-result svg, .submit-error svg, .submit-success svg {\n width: 45px;\n height: 45px;\n margin: auto;\n}\n.logo-position {\n position: absolute;\n top: -1rem;\n right: 20%;\n z-index: 0;\n width: 0.5rem;\n}\n.logo-position-details {\n position: absolute;\n top: -1.1rem;\n right: 6rem;\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: -1rem;\n right: 4rem;\n z-index: 2;\n width: 0.5rem;\n}\n.logo-position-video {\n position: absolute;\n bottom: 0;\n right: 10%;\n}\n.logo-section {\n position: relative;\n}\n.logo-section-mobile {\n position: relative;\n}\n.logo-size {\n width: 3rem;\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\nsvg.video-icon {\n width: 2rem;\n height: 1.4rem;\n}\nsvg.video-icon-dark {\n fill: #000000;\n}\nsvg.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-text-area {\n background-color: rgba(255, 221, 51, 0.1);\n }\n .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section {\n position: relative;\n }\n .logo-section-mobile .logo-position-video {\n top: 41.2rem;\n position: absolute;\n left: 21rem;\n }\n .logo-section-mobile .logo-section {\n position: relative;\n }\n}\n.x-utu-border-radius {\n border-radius: 5px;\n}\n\n.x-utu-disconnect-wallet-btn {\n width: 100%;\n align-items: center;\n text-align: center;\n justify-content: center;\n background-color: #fcf8e5;\n border-radius: 5px;\n padding: 0.5rem;\n}\n.x-utu-disconnect-text-input-btn {\n width: 100%;\n background-color: rgb(252, 229, 70);\n}";
|
|
59595
59651
|
styleInject(css_248z);
|
|
59596
59652
|
|
|
59597
59653
|
function DisconnectWallet() {
|
|
@@ -59655,10 +59711,10 @@
|
|
|
59655
59711
|
return h$2(BaseComponent, {
|
|
59656
59712
|
style: css_248z
|
|
59657
59713
|
}, h$2("section", {
|
|
59658
|
-
className: "
|
|
59714
|
+
className: "x-utu-disconnect-wallet-btn"
|
|
59659
59715
|
}, h$2("div", null, h$2("button", {
|
|
59660
59716
|
onClick: disconnectWallet,
|
|
59661
|
-
className: "
|
|
59717
|
+
className: "x-utu-disconnect-text-input-btn x-utu-btn",
|
|
59662
59718
|
type: "submit"
|
|
59663
59719
|
}, "Disconnect Wallet"))));
|
|
59664
59720
|
}
|