|
<head data-webtasks-id="152ba53b-6168-4b42"><title data-webtasks-id="9acd1c0a-61fb-4107">Sales Presentation Preparation: Todoist</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" data-webtasks-id="42507209-7cb1-4f91"><meta http-equiv="X-UA-Compatible" content="IE=edge" data-webtasks-id="4e50e440-e2d0-4837"><meta property="og:image" content="/assets/images/968d99236e2536919d6d14ca13d25930.jpg" data-webtasks-id="5527e9ae-1d9a-4cde"><meta property="og:image:secure_url" content="/assets/images/968d99236e2536919d6d14ca13d25930.jpg" data-webtasks-id="53c82714-c5c5-4091"><meta name="apple-itunes-app" content="app-id=572688855" data-webtasks-id="40d0d635-bb76-487a"><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1" data-webtasks-id="35a179fd-08a9-4c98"><meta name="theme-color" content="#db4c3f" data-webtasks-id="89c4b2a0-e6e0-4356"><script type="text/javascript" async="" src="https://www.googletagmanager.com/gtag/js?id=G-M6V9BEQD2J&l=dataLayer&cx=c" nonce="" data-webtasks-id="4fc6d91d-d4fa-4081"></script><script async="" defer="" src="https://www.googletagmanager.com/gtm.js?id=GTM-WQB95PC&gtm_auth=BcR4sNCoRjSMVR5_xQ5zQA&gtm_preview=env-1&gtm_cookies_win=x" nonce="" data-webtasks-id="434e9af8-3ac5-4d6a"></script><script nonce="" data-webtasks-id="af41276e-0c30-43c2">class CdnFailbackWatchdog { |
|
TYPE_CSS = 'css' |
|
TYPE_JS = 'js' |
|
|
|
MAX_CDN_FALLBACK = 2 |
|
ASSET_TIMEOUT = 15 * 1000 |
|
SEARCH_PARAM = 'cdn_fallback' |
|
|
|
constructor(console) { |
|
this.console = console |
|
this.isReloading = false |
|
this.tracked = 0 |
|
this.timeout = null |
|
|
|
this.successes = [] |
|
this.failures = [] |
|
this.params = new URLSearchParams(window.location.search) |
|
this.jsFilesCnt = 0 |
|
this.cssFilesCnt = 0 |
|
this.cdns = null |
|
this.cdn = '' |
|
|
|
this.console.log('[watchdog] init') |
|
} |
|
|
|
saveLastTriedCDN(value) { |
|
|
|
try { |
|
this.console.log('[watchdog] saving last tried CDN: ' + value) |
|
localStorage.setItem('td-cdn', value) |
|
localStorage.setItem('td-cdn-ttl', Date.now() + 1000 * 60 * 60 * 24 * 30) |
|
} catch (e) { |
|
this.console.log('[watchdog] failed to save working CDN in localStorage') |
|
} |
|
} |
|
|
|
getLastTriedCDN() { |
|
const value = localStorage.getItem('td-cdn') |
|
const ttl = localStorage.getItem('td-cdn-ttl') |
|
|
|
if (value && ttl && parseInt(ttl, 10) > Date.now()) { |
|
this.console.log('[watchdog] retrieving last tried CDN: ' + value) |
|
return value |
|
} |
|
|
|
this.clearLastTriedCDN() |
|
return null |
|
} |
|
|
|
clearLastTriedCDN() { |
|
try { |
|
this.console.log('[watchdog] clearing last tried CDN') |
|
localStorage.removeItem('td-cdn') |
|
localStorage.removeItem('td-cdn-ttl') |
|
} catch (e) { |
|
this.console.log('[watchdog] failed to clear working CDN in localStorage') |
|
} |
|
} |
|
|
|
getCdns() { |
|
if (this.cdns == null) { |
|
const cdnsStr = |
|
(document && |
|
document.documentElement && |
|
document.documentElement.getAttribute('data-cdns')) || |
|
'/' |
|
this.cdns = cdnsStr.split('|') |
|
} |
|
|
|
return this.cdns |
|
} |
|
|
|
selectCDN() { |
|
if (this.cdn) { |
|
this.console.log('[watchdog] using CDN from cache: ' + this.cdn) |
|
return this.cdn |
|
} |
|
|
|
const cdns = this.getCdns() |
|
|
|
|
|
|
|
let lastTriedCDN |
|
try { |
|
lastTriedCDN = this.getLastTriedCDN() |
|
} catch (e) { |
|
this.console.log('[watchdog] failed to get last tried CDN') |
|
this.cdn = cdns[cdns.length - 1] |
|
return this.cdn |
|
} |
|
|
|
|
|
if (lastTriedCDN && !cdns.includes(lastTriedCDN)) { |
|
lastTriedCDN = null |
|
this.clearLastTriedCDN() |
|
} |
|
|
|
|
|
|
|
if (lastTriedCDN) { |
|
this.cdn = lastTriedCDN |
|
} else { |
|
const loadAttempt = this.getLoadAttempt() |
|
const cdnIndex = Math.min(loadAttempt, cdns.length - 1) |
|
|
|
this.cdn = cdns[cdnIndex] |
|
} |
|
|
|
|
|
if (!this.cdn.endsWith('/')) { |
|
this.cdn += '/' |
|
} |
|
|
|
this.saveLastTriedCDN(this.cdn) |
|
return this.cdn |
|
} |
|
|
|
getLoadAttempt() { |
|
const cdnFallback = this.params.get(this.SEARCH_PARAM) |
|
return (cdnFallback && parseInt(cdnFallback, 10)) || 0 |
|
} |
|
|
|
track(assetType) { |
|
this.tracked += 1 |
|
|
|
if (assetType === this.TYPE_JS) { |
|
this.jsFilesCnt += 1 |
|
} else if (assetType === this.TYPE_CSS) { |
|
this.cssFilesCnt += 1 |
|
} |
|
|
|
if (this.timeout != null) { |
|
clearTimeout(this.timeout) |
|
this.timeout = null |
|
} |
|
|
|
this.timeout = setTimeout(this.reloadIfIssue.bind(this, true), this.ASSET_TIMEOUT) |
|
} |
|
|
|
parse(element) { |
|
element.onload = null |
|
element.onerror = null |
|
|
|
if (element) { |
|
if (element.href && element.rel && element.rel === 'stylesheet') { |
|
return { |
|
src: element.href, |
|
type: this.TYPE_CSS, |
|
} |
|
} |
|
|
|
if (element.src && element.nodeName.toLowerCase() === 'script') { |
|
return { |
|
src: element.src, |
|
type: this.TYPE_JS, |
|
} |
|
} |
|
} |
|
|
|
return null |
|
} |
|
|
|
ok(element) { |
|
const parsedAsset = this.parse(element) |
|
|
|
if (parsedAsset) { |
|
this.successes.push(parsedAsset) |
|
this.reloadIfIssue() |
|
} |
|
} |
|
|
|
err(element) { |
|
const parsedAsset = this.parse(element) |
|
|
|
if (parsedAsset) { |
|
this.failures.push({ |
|
...parsedAsset, |
|
reason: 'Failed to load from CDN', |
|
}) |
|
this.reloadIfIssue() |
|
} |
|
} |
|
|
|
haveAssetsLoaded(ignoreTracking = false) { |
|
if (ignoreTracking) { |
|
this.console.warn( |
|
`Ignoring asset checks, because something timed out. Tracked: ${this.tracked}; Successes: ${this.successes.length}; Failures: ${this.failures.length}`, |
|
) |
|
|
|
return false |
|
} |
|
|
|
if (this.tracked > this.successes.length + this.failures.length) { |
|
return null |
|
} |
|
|
|
if (this.timeout != null) { |
|
this.console.log( |
|
`[watchdog] All assets have reported back; successes: ${this.successes.length}; failures: ${this.failures.length}`, |
|
) |
|
clearTimeout(this.timeout) |
|
this.timeout = null |
|
} |
|
|
|
if (this.failures.length > 0) { |
|
this.logFailures() |
|
|
|
return false |
|
} |
|
|
|
const anySuccessfulCss = |
|
this.cssFilesCnt == 0 || |
|
this.successes.findIndex((asset) => asset.type === this.TYPE_CSS) > -1 |
|
|
|
const anySuccessfulJS = |
|
this.jsFilesCnt == 0 || |
|
this.successes.findIndex((asset) => asset.type === this.TYPE_JS) > -1 |
|
|
|
if (anySuccessfulCss && anySuccessfulJS) { |
|
return true |
|
} |
|
|
|
this.console.warn( |
|
`CSS or JS is missing from loaded assets; CSS: ${anySuccessfulCss}; JS: ${anySuccessfulJS}`, |
|
) |
|
|
|
return false |
|
} |
|
|
|
showTroubleLoading() { |
|
try { |
|
document.querySelector('.cdn-failback-error').classList.add('cdn-failback-error--show') |
|
} catch (e) { |
|
|
|
} |
|
} |
|
|
|
logFailures() { |
|
this.console.group('The following assets had issues loading:') |
|
const messages = this.failures.map((asset) => `${asset.src}: ${asset.reason}`) |
|
|
|
messages.forEach((msg) => this.console.warn(msg)) |
|
this.console.groupEnd() |
|
} |
|
|
|
reloadIfIssue(ignoreTracking = false) { |
|
const result = this.haveAssetsLoaded(ignoreTracking) |
|
|
|
if (result === null || result === true) { |
|
return |
|
} |
|
|
|
if (result === false) { |
|
|
|
this.clearLastTriedCDN() |
|
} |
|
|
|
if (this.isReloading) { |
|
this.console.warn( |
|
'[RELOAD] Detected more issues loading assets, but we are already preparing to reload so no need to do anything', |
|
) |
|
return |
|
} |
|
|
|
if (window.navigator.onLine === false) { |
|
this.console.warn("[RELOAD] Need to reload, but not online; won't try reloading") |
|
this.showTroubleLoading() |
|
return |
|
} |
|
|
|
const cdnFallback = this.getLoadAttempt() + 1 |
|
const maxCdnFallback = Math.min(this.getCdns().length, this.MAX_CDN_FALLBACK) |
|
|
|
if (cdnFallback > maxCdnFallback) { |
|
this.console.warn("[RELOAD] Hit maximum reload attempts, won't try reloading anymore") |
|
this.showTroubleLoading() |
|
return |
|
} |
|
|
|
let timeoutId = null |
|
this.isReloading = true |
|
|
|
const reloadClient = () => { |
|
this.params.set(this.SEARCH_PARAM, cdnFallback) |
|
this.console.warn('[RELOAD] Reloading client with URL: ' + this.params.toString()) |
|
window.clearTimeout(timeoutId) |
|
window.location.search = this.params.toString() |
|
} |
|
|
|
timeoutId = window.setTimeout( |
|
reloadClient.bind(this), |
|
5 * 1000, |
|
) |
|
|
|
this.cleanupServiceWorkers().then(reloadClient).catch(reloadClient) |
|
} |
|
|
|
cleanupServiceWorkers() { |
|
const cleanupPromises = [] |
|
|
|
if ('serviceWorker' in navigator && window && window.caches != null) { |
|
cleanupPromises.push( |
|
new Promise((resolve) => { |
|
window.caches |
|
.keys() |
|
.then((cacheKeys) => |
|
Promise.all( |
|
cacheKeys.map((cacheKey) => window.caches.delete(cacheKey)), |
|
), |
|
) |
|
.then(() => { |
|
this.console.warn('[RELOAD] Removed all Service Worker caches') |
|
resolve() |
|
}) |
|
.catch((t) => { |
|
this.console.warn( |
|
'[RELOAD] Service worker cache keys could not be removed: ' + |
|
t.message, |
|
), |
|
resolve() |
|
}) |
|
}), |
|
) |
|
} |
|
|
|
|
|
cleanupPromises.push( |
|
new Promise((resolve) => { |
|
navigator.serviceWorker |
|
.getRegistration('/app/service-worker.js') |
|
.then((swReg) => { |
|
if (swReg) { |
|
swReg |
|
.unregister() |
|
.then(() => { |
|
this.console.warn('[RELOAD] Service worker unregistered') |
|
resolve() |
|
}) |
|
.catch((t) => { |
|
this.console.warn( |
|
'[RELOAD] Service worker could not be unregistered: ' + |
|
t.message, |
|
) |
|
resolve() |
|
}) |
|
} else { |
|
resolve() |
|
} |
|
}) |
|
.catch((e) => { |
|
this.console.warn( |
|
'[RELOAD] Service worker could not be unregistered: ' + e.message, |
|
) |
|
resolve() |
|
}) |
|
}), |
|
) |
|
|
|
return Promise.all(cleanupPromises) |
|
} |
|
} |
|
|
|
function getPathnameFromAsset(asset) { |
|
if (asset.startsWith('/')) { |
|
return asset.slice(1) |
|
} |
|
try { |
|
return new URL(asset).pathname.slice(1) |
|
} catch { |
|
return asset |
|
} |
|
} |
|
|
|
function cdnLoadScript(tagName = 'head') { |
|
return (asset) => { |
|
window.watchdog.track('js') |
|
const scriptE = document.createElement('script') |
|
scriptE.onload = () => { |
|
window.watchdog.ok(scriptE) |
|
} |
|
scriptE.onerror = () => { |
|
window.watchdog.err(scriptE) |
|
} |
|
|
|
scriptE.src = window.watchdog.cdn + getPathnameFromAsset(asset) |
|
scriptE.async = false |
|
scriptE.crossOrigin = 'anonymous' |
|
scriptE.nonce = document.documentElement.getAttribute('data-csp-nonce') || 'unknown-nonce' |
|
document.getElementsByTagName(tagName)[0].appendChild(scriptE) |
|
} |
|
} |
|
|
|
function cdnLoadLink(tagName = 'head') { |
|
return (asset) => { |
|
window.watchdog.track('css') |
|
const linkE = document.createElement('link') |
|
linkE.onload = () => { |
|
window.watchdog.ok(linkE) |
|
} |
|
linkE.onerror = () => { |
|
window.watchdog.err(linkE) |
|
} |
|
|
|
linkE.href = window.watchdog.cdn + getPathnameFromAsset(asset) |
|
linkE.async = false |
|
linkE.crossOrigin = 'anonymous' |
|
linkE.rel = 'stylesheet' |
|
linkE.nonce = document.documentElement.getAttribute('data-csp-nonce') || 'unknown-nonce' |
|
document.getElementsByTagName(tagName)[0].appendChild(linkE) |
|
} |
|
} |
|
|
|
window.watchdog = new CdnFailbackWatchdog(window.console) |
|
window.watchdog.selectCDN() |
|
|
|
window.cdnLoadScript = cdnLoadScript |
|
window.cdnLoadLink = cdnLoadLink</script><script nonce="" data-webtasks-id="48fd3ef3-d6ea-4cf2">cdnLoadScript()("init-theme.424d6e9aca3f1406ddd0052b67231394.js"); |
|
|
|
cdnLoadScript()("checkUnsupportedBrowser.c96c50bcdd3a49f39a83b159f26b5b3c.js"); |
|
|
|
cdnLoadScript()("/assets/runtime.8ce64929dd0addb55bb5787d1d866de2.js");</script><script src="https://todoist.b-cdn.net/init-theme.424d6e9aca3f1406ddd0052b67231394.js" crossorigin="anonymous" data-webtasks-id="fcb88dba-af7f-4751"></script><script src="https://todoist.b-cdn.net/checkUnsupportedBrowser.c96c50bcdd3a49f39a83b159f26b5b3c.js" crossorigin="anonymous" data-webtasks-id="ddfc5fdf-6855-4add"></script><script src="https://todoist.b-cdn.net/assets/runtime.8ce64929dd0addb55bb5787d1d866de2.js" crossorigin="anonymous" data-webtasks-id="13739a11-9e0c-49e3"></script><script nonce="" data-webtasks-id="512876b1-5ff4-43ee">cdnLoadLink()("/assets/vendor~add~app~authentication~275fb47b.3bddbc7f0e2749783e460b54c1f6fab0.css"); |
|
|
|
cdnLoadLink()("/assets/vendor~add~app~253ae210.cecc6c91b0559c218c324a51b600ce1c.css"); |
|
|
|
cdnLoadLink()("/assets/app~d0ae3f07.2415fea43ce14de494a1bb15c0e0377f.css"); |
|
|
|
cdnLoadLink()("/assets/app~5a11b65b.789955acb2b0d1b96ce54fa7f1bdf022.css"); |
|
|
|
cdnLoadLink()("/assets/app~c714bc7b.3b9a3320fb1350deb46a6ab033b25dc2.css"); |
|
|
|
cdnLoadLink()("/assets/app~31e116db.a721f48b197617be0b1fe1f4a501a5f9.css"); |
|
|
|
cdnLoadLink()("/assets/app~fc66dfb5.801c0ac5f0ac081b675a6e6ffe084595.css"); |
|
|
|
cdnLoadLink()("/assets/app~2cb4426d.f8c583acb830ed5a9238cd39ea4c2b78.css");</script><link href="https://todoist.b-cdn.net/assets/vendor~add~app~authentication~275fb47b.3bddbc7f0e2749783e460b54c1f6fab0.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="31b2ecba-1321-4e07"><link href="https://todoist.b-cdn.net/assets/vendor~add~app~253ae210.cecc6c91b0559c218c324a51b600ce1c.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="94b44cf8-3759-4728"><link href="https://todoist.b-cdn.net/assets/app~d0ae3f07.2415fea43ce14de494a1bb15c0e0377f.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="9e565264-9018-4e6a"><link href="https://todoist.b-cdn.net/assets/app~5a11b65b.789955acb2b0d1b96ce54fa7f1bdf022.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="af69e1b5-dbc6-4814"><link href="https://todoist.b-cdn.net/assets/app~c714bc7b.3b9a3320fb1350deb46a6ab033b25dc2.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="00ac0961-8abb-491b"><link href="https://todoist.b-cdn.net/assets/app~31e116db.a721f48b197617be0b1fe1f4a501a5f9.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="33de1756-5eb7-4fc3"><link href="https://todoist.b-cdn.net/assets/app~fc66dfb5.801c0ac5f0ac081b675a6e6ffe084595.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="dd7f1fd2-7afd-4812"><link href="https://todoist.b-cdn.net/assets/app~2cb4426d.f8c583acb830ed5a9238cd39ea4c2b78.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="5aeec291-eeae-4f5c"><script async="" src="https://www.google-analytics.com/analytics.js" data-webtasks-id="0ae51562-1763-4813"></script><style data-webtasks-id="583553cf-44e5-4578">.cdn-failback-error { |
|
display: none; |
|
flex-direction: column; |
|
justify-content: center; |
|
align-items: center; |
|
position: fixed; |
|
height: calc(100% - 36px); |
|
width: calc(100% - 36px); |
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, |
|
'Apple Color Emoji', Helvetica, Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol'; |
|
padding: 18px; |
|
background-color: white; |
|
z-index: 1; |
|
} |
|
.cdn-failback-error h1 { |
|
font-size: 24px; |
|
} |
|
.cdn-failback-error p { |
|
font-size: 16px; |
|
} |
|
.cdn-failback-error p a { |
|
color: #d1453b !important; |
|
} |
|
|
|
.cdn-failback-error.cdn-failback-error--show { |
|
display: flex; |
|
}</style><style data-webtasks-id="b34422aa-3944-48c6">body { |
|
margin: 0; |
|
} |
|
|
|
.loading_screen { |
|
position: fixed; |
|
display: flex; |
|
justify-content: center; |
|
height: 100%; |
|
width: 100%; |
|
} |
|
|
|
.loading_screen--loader { |
|
width: 100px; |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
justify-content: center; |
|
} |
|
|
|
.loading_screen--logo { |
|
margin-bottom: 32px; |
|
} |
|
|
|
.loading_screen--spinner { |
|
animation-name: circular-spinner; |
|
animation-duration: 1.2s; |
|
animation-iteration-count: infinite; |
|
animation-timing-function: linear; |
|
} |
|
|
|
.theme_dark .loading_screen { |
|
background-color: #1f1f1f; |
|
} |
|
|
|
.theme_dark .loading_screen--logo .logo_bg { |
|
fill: rgba(255, 255, 255, 0.87); |
|
} |
|
|
|
.theme_dark .loading_screen--logo .logo_stripe { |
|
fill: #1f1f1f; |
|
} |
|
|
|
.theme_dark .loading_screen--spinner .ring_thumb { |
|
fill: rgba(255, 255, 255, 0.87); |
|
} |
|
|
|
.theme_dark .loading_screen--spinner .ring_track { |
|
fill: rgba(255, 255, 255, 0.4); |
|
} |
|
|
|
@keyframes circular-spinner { |
|
0% { |
|
transform: rotate(0deg); |
|
} |
|
100% { |
|
transform: rotate(360deg); |
|
} |
|
}</style><script nonce="" data-webtasks-id="09c41c78-00b0-4435">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': |
|
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], |
|
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.defer=true;j.src= |
|
'https://www.googletagmanager.com/gtm.js?id='+i+dl+'>m_auth=BcR4sNCoRjSMVR5_xQ5zQA>m_preview=env-1>m_cookies_win=x'; |
|
var n=d.querySelector('[nonce]');n&&j.setAttribute('nonce',n.nonce||n.getAttribute('nonce'));f.parentNode.insertBefore(j,f); |
|
})(window,document,'script','dataLayer','GTM-WQB95PC');</script><meta name="apple-mobile-web-app-title" content="Todoist" data-webtasks-id="3342431d-125c-4503"><meta name="apple-mobile-web-app-capable" content="yes" data-webtasks-id="96e26261-96b9-4478"><meta name="apple-mobile-web-app-status-bar-style" content="default" data-webtasks-id="39d40fa0-ef74-4364"><meta name="theme-color" content="#C24F3D" data-webtasks-id="dda5966e-4f4d-48ef"><link rel="apple-touch-startup-image" sizes="1024x1024" href="/app/manifest_icons/icon_1024x1024.098d1a14e2f871db82d8a2392d59b587.png" data-webtasks-id="4eb9bd84-4200-456e"><link rel="apple-touch-icon" sizes="1024x1024" href="/app/manifest_icons/icon_1024x1024.098d1a14e2f871db82d8a2392d59b587.png" data-webtasks-id="c66a6c83-cb59-4ca2"><link rel="apple-touch-icon" sizes="180x180" href="/app/manifest_icons/icon_180x180.d0c3ef3c6be29a9ca57ead5171bbebc4.png" data-webtasks-id="cbaa2798-ff92-44d0"><link rel="apple-touch-icon" sizes="167x167" href="/app/manifest_icons/icon_167x167.3a26fccf02024d9e908aa61a168c04b6.png" data-webtasks-id="40d281bd-a935-470c"><link rel="apple-touch-icon" sizes="152x152" href="/app/manifest_icons/icon_152x152.749dc17e04c34f6e3ade0c6ec90a827c.png" data-webtasks-id="93a232d2-a5f5-42cf"><link rel="apple-touch-icon" sizes="120x120" href="/app/manifest_icons/icon_120x120.4a19b1dbc4514d6e3e3929c28f912cc8.png" data-webtasks-id="09523df3-407b-4f05"><link rel="manifest" href="/app/manifest.48149c9f0c601e29a9554640f7bf5b4d.json" data-webtasks-id="dd1a0811-4aa8-4cf2"><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/98.661794586db6155211b62b66452ea5b9.css" data-webtasks-id="901e5166-0253-4c88"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/98.9917839217825cf4238394433c7f0e3f.js" data-webtasks-id="0ba75bce-9bc1-4820"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/99.8430aacde66c52603a2eb1e096e8bcbd.css" data-webtasks-id="ccbdae97-95dc-4c4e"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/99.d7786603923961d6130df5a8fba7274c.js" data-webtasks-id="556cfde5-55ca-411f"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/100.b629ea0ccf140d381f747a0a9b43e143.css" data-webtasks-id="dc2f153a-076b-4373"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/100.6ea9551355fba42b82ff5df17e65853f.js" data-webtasks-id="e9d3d5fa-e8c7-418c"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/101.ee8d052d1cae91032335580570810324.css" data-webtasks-id="8f8c6dd7-b337-47ae"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/101.f11d4660ef102f5486e262cb7a74573e.js" data-webtasks-id="5c3a1d0a-c4f8-4d5f"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/102.9efc7d118af4be1061bd9cfe5b14a62c.css" data-webtasks-id="3ae7231d-a7a5-44fc"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/102.d05d612ec9b832abf472584ac0e1c5ac.js" data-webtasks-id="9ddde05f-898f-492e"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/103.30a8daf0902dd7f54a756bb0aa66bbe8.css" data-webtasks-id="93dc0eb6-657b-4792"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/103.97ecbf50c381b89d14ac4f2e5c210a28.js" data-webtasks-id="a0f1c3c9-8062-45a2"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/104.37ba6c86f74d760008e69bb9c65e5c86.css" data-webtasks-id="328beed3-49f0-4406"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/104.b1e7e817baa13c9e657949961368452c.js" data-webtasks-id="8bb175fe-6161-493d"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/105.cac76b8228f2c73f9773c36700ed207c.css" data-webtasks-id="ded082d6-b47d-4d9f"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/105.4a014ac94e66889011f326aaf5f6080f.js" data-webtasks-id="b8d60810-5c41-497b"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/106.2aa7fbe90fd5d34c5dc8e60b594ee385.css" data-webtasks-id="a00064cb-7d75-4d59"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/106.28e67f981dfb80835d1e0a7a481bd567.js" data-webtasks-id="8abf7c14-df08-445a"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/107.3068545f246fddc0614457869806de9e.css" data-webtasks-id="788673d1-6db0-42da"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/107.012f4b3a870c0e1638ae35137e9d040e.js" data-webtasks-id="577dc764-cc74-41b9"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/108.ab835c81ab951809ee09ba2994a4a1ea.css" data-webtasks-id="41006fa8-8c00-4a71"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/108.549d9ad9f48b6138ad516c2437205792.js" data-webtasks-id="719a8460-d3bf-4990"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/109.9588611b5216e07907250f927acc895c.css" data-webtasks-id="9dfd0cf2-9a67-4cd8"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/109.f3d53bb67902a3ccf2c58ea0fd5c8673.js" data-webtasks-id="59d3fa6e-2246-4158"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/110.6fc99b0005bb204116467384c0dc8905.css" data-webtasks-id="4480a35b-a001-45fb"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/110.64ddcabfe10bce324fbc0971e99b28cf.js" data-webtasks-id="561c9c62-c024-46be"></script><style data-tiptap-style="" data-webtasks-id="ed6eca0f-4a11-49e1">.ProseMirror { |
|
position: relative; |
|
} |
|
|
|
.ProseMirror { |
|
word-wrap: break-word; |
|
white-space: pre-wrap; |
|
white-space: break-spaces; |
|
-webkit-font-variant-ligatures: none; |
|
font-variant-ligatures: none; |
|
font-feature-settings: "liga" 0; |
|
} |
|
|
|
.ProseMirror [contenteditable="false"] { |
|
white-space: normal; |
|
} |
|
|
|
.ProseMirror [contenteditable="false"] [contenteditable="true"] { |
|
white-space: pre-wrap; |
|
} |
|
|
|
.ProseMirror pre { |
|
white-space: pre-wrap; |
|
} |
|
|
|
img.ProseMirror-separator { |
|
display: inline !important; |
|
border: none !important; |
|
margin: 0 !important; |
|
width: 1px !important; |
|
height: 1px !important; |
|
} |
|
|
|
.ProseMirror-gapcursor { |
|
display: none; |
|
pointer-events: none; |
|
position: absolute; |
|
margin: 0; |
|
} |
|
|
|
.ProseMirror-gapcursor:after { |
|
content: ""; |
|
display: block; |
|
position: absolute; |
|
top: -2px; |
|
width: 20px; |
|
border-top: 1px solid black; |
|
animation: ProseMirror-cursor-blink 1.1s steps(2, start) infinite; |
|
} |
|
|
|
@keyframes ProseMirror-cursor-blink { |
|
to { |
|
visibility: hidden; |
|
} |
|
} |
|
|
|
.ProseMirror-hideselection *::selection { |
|
background: transparent; |
|
} |
|
|
|
.ProseMirror-hideselection *::-moz-selection { |
|
background: transparent; |
|
} |
|
|
|
.ProseMirror-hideselection * { |
|
caret-color: transparent; |
|
} |
|
|
|
.ProseMirror-focused .ProseMirror-gapcursor { |
|
display: block; |
|
} |
|
|
|
.tippy-box[data-animation=fade][data-state=hidden] { |
|
opacity: 0 |
|
}</style></head><body data-webtasks-id="164c066c-ba86-48a8" style="overflow: hidden; padding-right: 0px;" data-dialog-body-scroll=":r18:"><div class="cdn-failback-error" data-webtasks-id="10e3334b-0515-4809" data-aria-hidden="true" aria-hidden="true"><svg class="loading_screen--logo" width="64" height="64" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="b074f2a9-af19-4f4d"><g fill="none" fill-rule="evenodd" data-webtasks-id="ad548ed9-fa68-4ab5"><path class="logo_bg" d="M56.000016 0h-48c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8" fill="#E44332" data-webtasks-id="8d227f26-e83f-4b00"></path><g class="logo_stripe" fill="#FFF" data-webtasks-id="28c8fa71-2239-4ba6"><path d="M13.672368 29.985936c1.1304-.65152 25.34368-14.58496 25.89952-14.90592.5544-.32016.58224-1.30224-.03824-1.65632-.62096-.35408-1.79984-1.02368-2.23856-1.28048-.44656-.26048-1.24976-.40528-1.99472.02384-.30928.1784-21.00256 12.0768-21.69424 |
|
12.46992-.82784.47072-1.85248.4768-2.67744-.0008-.65152-.37696-10.92864-6.3488-10.92864-6.3488v5.39712c2.66016 1.54912 9.2744 5.40128 10.87744 6.30624.95664.54016 1.87232.52688 2.79488-.0048" data-webtasks-id="4ea36379-8145-4a8e"></path><path d="M13.672368 40.76952c1.1304-.65152 25.34368-14.58496 25.89952-14.90592.5544-.32.58224-1.30224-.03824-1.65632-.62096-.35408-1.79984-1.02368-2.23856-1.28048-.44656-.26048-1.24976-.40528-1.99472.02384-.30928.1784-21.00256 12.0768-21.69424 |
|
12.46992-.82784.47072-1.85248.4768-2.67744-.0008-.65152-.37696-10.92864-6.3488-10.92864-6.3488v5.39712c2.66016 1.54912 9.2744 5.40128 10.87744 6.30624.95664.54016 1.87232.52688 2.79488-.0048" data-webtasks-id="2b9a0043-b80a-4f9f"></path><path d="M13.672368 51.55312c1.1304-.65152 25.34368-14.58496 25.89952-14.90592.5544-.32.58224-1.30224-.03824-1.65632-.62096-.35408-1.79984-1.02368-2.23856-1.28048-.44656-.26048-1.24976-.40528-1.99472.02384-.30928.1784-21.00256 12.0768-21.69424 |
|
12.46992-.82784.47072-1.85248.4768-2.67744-.0008-.65152-.37696-10.92864-6.3488-10.92864-6.3488v5.39712c2.66016 1.54912 9.2744 5.40128 10.87744 6.30624.95664.54016 1.87232.52688 2.79488-.0048" data-webtasks-id="ca9ee739-152f-46aa"></path></g></g></svg><h1 data-webtasks-id="0024dda8-222b-4ec2">Todoist couldn't load the required files.</h1><p data-webtasks-id="20a0927c-d050-47e1">Please check your network connection, or <a href="https://todoist.com/contact" data-webtasks-id="2b2abf5d-ac46-45f8">contact support</a> if the problem persists.</p></div><noscript data-webtasks-id="d45640cd-6ef9-473f" data-aria-hidden="true" aria-hidden="true"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WQB95PC>m_auth=BcR4sNCoRjSMVR5_xQ5zQA>m_preview=env-1>m_cookies_win=x" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><div id="todoist_app" data-webtasks-id="fc53aeb3-1074-44b0"><div id="page_background" data-webtasks-id="42c424a4-143a-4615"><a class="skiplink" href="#content" data-webtasks-id="a6c3cc64-e97f-4867" data-aria-hidden="true" aria-hidden="true">Skip to task list</a><div data-testid="top_bar" id="top_bar" data-webtasks-id="15883d04-1fde-490d" data-aria-hidden="true" aria-hidden="true"><div id="top_bar_inner" role="banner" aria-label="Top Banner: contains Search, Quick Add, Productivity, Help, Notifications, and Settings" data-webtasks-id="f993fec6-5b05-4a43"><div class="left_control" data-webtasks-id="79a6ee36-59e6-49e0"><div data-webtasks-id="fe64bcfb-0e85-40ba"><button type="button" aria-label="Main menu" role="switch" aria-checked="true" data-gtm-id="burger-menu-toggle" class="left_menu_toggle top_bar_btn" tabindex="0" data-webtasks-id="bf4afbff-2b3b-4f7b"><svg viewBox="0 0 24 24" class="close_icon" width="24" height="24" data-webtasks-id="6b2a208d-a624-4701"><path fill="currentColor" fill-rule="nonzero" d="M5.146 5.146a.5.5 0 0 1 .708 0L12 11.293l6.146-6.147a.5.5 0 0 1 .638-.057l.07.057a.5.5 0 0 1 0 .708L12.707 12l6.147 6.146a.5.5 0 0 1 .057.638l-.057.07a.5.5 0 0 1-.708 0L12 12.707l-6.146 6.147a.5.5 0 0 1-.638.057l-.07-.057a.5.5 0 0 1 0-.708L11.293 12 5.146 5.854a.5.5 0 0 1-.057-.638z" data-webtasks-id="86c99200-b941-46af"></path></svg><svg class="menu_icon" width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="23dc880a-ff63-455d"><path fill="currentColor" fill-rule="evenodd" d="M4.5 5h15a.5.5 0 110 1h-15a.5.5 0 010-1zm0 6h15a.5.5 0 110 1h-15a.5.5 0 110-1zm0 6h15a.5.5 0 110 1h-15a.5.5 0 110-1z" data-webtasks-id="30ca56fa-af11-4555"></path></svg></button></div><button type="button" aria-label="Go to Home view" data-gtm-id="burger-home-button" class="top_bar_btn home_btn" tabindex="0" data-webtasks-id="3d88d72c-00ac-4037"><svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="fae854c2-de7c-49cb"><path fill="currentColor" d="M12.527 3.075c.35.104.64.263 1.27.876L19.1 9.123c.374.364.49.505.601.678.11.174.185.351.232.552.042.178.062.34.066.742L20 17.718c0 .446-.046.607-.134.77a.906.906 0 01-.378.378c-.163.088-.324.134-.77.134H14v-4.718c0-.446-.046-.607-.134-.77a.906.906 0 00-.378-.378c-.142-.077-.284-.122-.616-.132L12.718 13h-1.436c-.446 0-.607.046-.77.134a.906.906 0 00-.378.378c-.077.142-.122.284-.132.616l-.002.154V19H5.282c-.446 0-.607-.046-.77-.134a.906.906 0 01-.378-.378c-.088-.163-.134-.324-.134-.77v-6.462c0-.522.02-.703.067-.903.047-.2.121-.378.232-.552l.077-.113c.098-.134.233-.282.524-.565l5.304-5.172c.629-.613.92-.772 1.269-.876a1.82 1.82 0 011.054 0zm-.286.958a.825.825 0 00-.482 0c-.18.054-.326.139-.63.418l-.227.216L5.598 9.84c-.3.293-.385.39-.456.5a.76.76 0 00-.102.242c-.026.112-.037.224-.04.531l.002 6.807.005.073.074.006L8.999 18 9 14.268l.003-.17c.013-.448.083-.749.249-1.058a1.9 1.9 0 01.788-.788c.306-.164.6-.234 1.043-.249l.199-.003h1.45l.17.003c.448.013.749.083 1.058.249.337.18.608.45.788.788.164.306.234.6.249 1.043l.003.199L14.999 18l3.92-.002.073-.006.006-.073.002-.2v-6.615l-.005-.218a1.494 1.494 0 00-.035-.305.747.747 0 00-.102-.242l-.059-.084a3.571 3.571 0 00-.294-.315l-5.407-5.273c-.425-.414-.604-.545-.798-.615l-.06-.019z" data-webtasks-id="93e0b184-82e9-4ab2"></path></svg></button><div id="quick_find" data-testid="quick_find_container" class="" style="width: 218px;" data-webtasks-id="ca27d560-d90b-4c8f"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" aria-hidden="true" class="search_icon" data-webtasks-id="0a97023d-fe7b-4de2"><path d="M10.5 3a7.5 7.5 0 015.645 12.438l4.709 4.708a.502.502 0 01-.708.708l-4.708-4.709A7.5 7.5 0 1110.5 3zm0 1a6.5 6.5 0 100 13 6.5 6.5 0 000-13z" fill="currentColor" data-webtasks-id="20c01673-527b-4067"></path></svg><div class="_2a3b75a1 _8c75067a" data-webtasks-id="ce6bf57c-920d-4a8a"><input autocomplete="off" id=":r0:" role="combobox" aria-autocomplete="none" aria-haspopup="listbox" aria-expanded="false" class="quick_find__input" placeholder="Search" aria-label="Quick search" aria-keyshortcuts="/" value="" data-webtasks-id="970d98de-fd8f-49d5"></div><a aria-label="How to use search" href="https://todoist.com/help/articles/360000394949" rel="noopener noreferrer" target="_blank" class="help_icon" tabindex="0" data-webtasks-id="9840daad-ce1b-47dc"><svg width="24" height="24" aria-hidden="true" data-webtasks-id="8ef294aa-1ff5-4f30"><g fill="none" fill-rule="evenodd" data-webtasks-id="3489162f-de96-4728"><path fill="currentColor" d="M11.9 16.5c-.46 0-.8-.35-.8-.85s.34-.86.8-.86c.48 0 .8.36.8.86s-.32.85-.8.85zM9.5 9.87c.06-1.32.9-2.37 2.54-2.37 1.46 0 2.46.95 2.46 2.21 0 .96-.47 1.64-1.22 2.11-.73.46-.94.8-.94 1.45v.4h-1.02v-.57c0-.8.37-1.36 1.16-1.86.68-.43.94-.82.94-1.47 0-.76-.56-1.32-1.43-1.32-.87 0-1.43.55-1.5 1.42H9.5z" data-webtasks-id="65c089e1-a668-4be7"></path><circle cx="12" cy="12" r="7.5" stroke="currentColor" data-webtasks-id="94b2a5d5-7c25-430c"></circle></g></svg></a><button class="close_icon" aria-label="Close Search" data-webtasks-id="0c12e19a-dce7-44f1"><svg viewBox="0 0 24 24" class="" width="18" height="18" aria-hidden="true" data-webtasks-id="a91258f0-5ff2-4db8"><path fill="currentColor" fill-rule="nonzero" d="M5.146 5.146a.5.5 0 0 1 .708 0L12 11.293l6.146-6.147a.5.5 0 0 1 .638-.057l.07.057a.5.5 0 0 1 0 .708L12.707 12l6.147 6.146a.5.5 0 0 1 .057.638l-.057.07a.5.5 0 0 1-.708 0L12 12.707l-6.146 6.147a.5.5 0 0 1-.638.057l-.07-.057a.5.5 0 0 1 0-.708L11.293 12 5.146 5.854a.5.5 0 0 1-.057-.638z" data-webtasks-id="d1ac1e9e-4ec0-41f6"></path></svg></button><button class="shortcut_hint" aria-label="Quick search" aria-keyshortcuts="/" tabindex="0" data-webtasks-id="8480a3a3-e21f-4f0d">/</button></div></div><div aria-label="Menu" class="top_right_button_group" role="group" data-webtasks-id="bc7fef9e-adfc-4a9a"><button data-testid="upgrade-button-top-bar" data-gtm-id="upgrade-button-top-bar" tabindex="0" type="button" aria-disabled="false" class="Zx8lDnR _8313bd46 _54d56775 _8b7f1a82 _2a3b75a1 _56a651f6" data-gtm-vis-recent-on-screen-39724453_306="7768" data-gtm-vis-first-on-screen-39724453_306="7768" data-gtm-vis-total-visible-time-39724453_306="100" data-gtm-vis-has-fired-39724453_306="1" data-webtasks-id="b768c9ac-0849-4ff5"><div aria-hidden="true" class="a44d4350 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="0fa99454-ed7c-4c9d"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="9fbff046-134f-412c"><g fill="none" fill-rule="evenodd" data-webtasks-id="e12f20f9-5e54-4dfc"><path stroke="#FFD093" fill="#FFD093" stroke-linejoin="bevel" d="M8.2 18.6l3.8-2.3 3.8 2.3a.8.8 0 0 0 1-.9l-.9-4.2 3.3-2.8a.8.8 0 0 0-.4-1.3L14.4 9l-1.7-4a.8.8 0 0 0-1.4 0L9.6 9l-4.4.4a.8.8 0 0 0-.4 1.3l3.3 2.8-1 4.2a.8.8 0 0 0 1.1.9z" data-webtasks-id="e50dea06-9468-4dd7"></path></g></svg></div><span class="_0051d171 _2a3b75a1 f973eed0 f6342c26" data-webtasks-id="2b0b6ad5-1277-488d">Upgrade to Pro</span></button><button type="button" id="quick_add_task_holder" data-track="navigation|quick_add" aria-label="Quick Add" class="top_bar_btn" tabindex="0" data-webtasks-id="46979c1f-3100-47af"><svg width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="3244a4da-8a3d-43a5"><g fill="none" fill-rule="evenodd" transform="translate(4 3)" data-webtasks-id="d45b4e83-ac9d-4acd"><mask id="jd4FBg" fill="#fff" data-webtasks-id="771a52cf-6f05-4f10"><path d="M9 8h7a.5.5 0 1 1 0 1H9v7a.5.5 0 1 1-1 0V9H1a.5.5 0 0 1 0-1h7V1a.5.5 0 0 1 1 0v7z" data-webtasks-id="5144feb5-f67f-4576"></path></mask><g mask="url(#jd4FBg)" data-webtasks-id="2b07bc43-fd76-4a3e"><path fill="currentColor" d="M-4-3h24v24H-4z" data-webtasks-id="bfc20c02-768b-4f34"></path></g></g></svg></button><button type="button" aria-label="Productivity" id="top_completed_holder" data-track="navigation|karma" class="completed_pie_stat top_bar_btn" tabindex="0" data-webtasks-id="5cce188b-e028-4801"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="55ef48e2-8227-4edc"><g fill="none" fill-rule="evenodd" data-webtasks-id="42468a1f-832e-4094"><g fill="currentColor" fill-rule="nonzero" data-webtasks-id="be395b6d-30c2-430c"><g data-webtasks-id="814a4a97-8a41-4cb7"><g data-webtasks-id="6b5005a6-205a-48b9"><path d="M12 3c4.97 0 9 4.03 9 9s-4.03 9-9 9-9-4.03-9-9 4.03-9 9-9zm0 1c-4.418 0-8 3.582-8 8 0 .702.09 1.383.26 2.031l2.886-2.885c.196-.195.512-.195.708 0l2.646 2.647 4.793-4.794L13 9c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h3.52l.052.005L16.5 8c.036 0 .071.004.105.011l.046.012.04.015c.014.005.027.012.04.019.013.006.025.013.036.02l.035.025c.014.01.027.02.04.033l.012.011.011.013c.012.012.023.025.033.039l-.044-.052c.026.027.05.056.069.087l.02.034.02.042.014.04c.005.015.009.03.012.046l.006.033.005.051V12c0 .276-.224.5-.5.5s-.5-.224-.5-.5V9.706l-5.146 5.148c-.196.195-.512.195-.708 0L7.5 12.207 4.618 15.09C5.827 17.974 8.677 20 12 20c4.418 0 8-3.582 8-8s-3.582-8-8-8z" transform="translate(-564 -480) translate(528 444) translate(36 36)" data-webtasks-id="35121fce-979d-4329"></path></g></g></g></g></svg><span class="count" data-webtasks-id="5a9f0a1d-f2a2-4b95">0/5</span></button><button data-command="" data-disclosure="" aria-expanded="false" id="help_btn" aria-haspopup="menu" aria-label="Help & Feedback" tabindex="0" class="reactist_menubutton top_bar_btn" type="button" data-webtasks-id="fcc46279-9262-4e8d"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" aria-hidden="true" data-webtasks-id="5d392cc0-83f8-4d05"><path d="M12 3a9 9 0 11-.001 18.001A9 9 0 0112 3zm0 1a8 8 0 100 16 8 8 0 000-16zm-.093 10.794c.47 0 .802.355.802.856 0 .495-.331.85-.802.85-.471 0-.808-.355-.808-.85 0-.501.337-.856.808-.856zm.128-7.294c1.465 0 2.465.954 2.465 2.213 0 .96-.47 1.639-1.215 2.11-.738.458-.948.8-.948 1.443v.397H11.32v-.562c-.006-.808.366-1.358 1.163-1.86.674-.433.936-.818.936-1.473 0-.758-.559-1.314-1.425-1.314-.878 0-1.436.544-1.5 1.418H9.5c.064-1.32.901-2.372 2.535-2.372z" fill="currentColor" fill-rule="nonzero" data-webtasks-id="bd5a6a00-2753-43e1"></path></svg></button><button aria-owns="notification_popup" aria-label="Notifications" aria-controls="notification_popup" aria-expanded="false" aria-haspopup="listbox" type="button" aria-disabled="false" tabindex="0" class="c2qnPuu _8313bd46 _7a4dbd5f _5e45d59f _8644eccb _2a3b75a1" data-webtasks-id="73a3f098-951e-440f"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="515c92ca-af31-4aff"><path d="M12 3a5.75 5.75 0 015.75 5.75c0 3.24.682 5.875 2.03 7.927A1.5 1.5 0 0118.525 19H14.5a2.5 2.5 0 01-5 0H5.475a1.501 1.501 0 01-1.254-2.323C5.568 14.625 6.25 11.989 6.25 8.75A5.75 5.75 0 0112 3zm1.5 16h-3a1.5 1.5 0 003 0zM12 4a4.75 4.75 0 00-4.75 4.75c0 3.423-.731 6.248-2.193 8.476a.5.5 0 00.418.774h13.05a.5.5 0 00.418-.774c-1.462-2.227-2.193-5.053-2.193-8.476A4.75 4.75 0 0012 4z" fill="currentColor" fill-rule="nonzero" data-webtasks-id="1dcc3d79-a72b-4dc3"></path></svg></button><button data-command="" data-disclosure="" aria-expanded="false" id=":r2:" aria-haspopup="menu" aria-label="Settings" tabindex="0" class="reactist_menubutton top_bar_btn settings_btn" type="button" data-webtasks-id="1e72b2b0-b2de-43e9"><div class="+syWHcL _0J7x-Vo settings_avatar _2a3b75a1" data-webtasks-id="e342e87b-3b75-4fcc"><img src="https://dcff1xvirvpfp.cloudfront.net/e0bb2b38dfa4453db86eeebe2f5f504b_big.jpg" alt="webtasks.navigator" data-webtasks-id="d3598072-bf80-4b5c"></div></button></div></div></div><div id="app_holder" data-webtasks-id="8d4eada9-f36c-459c" data-aria-hidden="true" aria-hidden="true"><div id="content_wrapper" data-webtasks-id="226fc1b5-19d0-476f"><div class="left_menu_overlay" data-webtasks-id="3851a5b5-5f9a-40bf"></div><div id="left_menu" class="_2a3b75a1 _509a57b4 _1fb9d90e" style="width: 305px;" data-webtasks-id="1ff5d2ac-7257-4f66"><div role="navigation" id="left_menu_inner" aria-label="Main Navigation: contains Projects, Labels, and Filters" class="_2a3b75a1 _509a57b4 _1fb9d90e _4a93668a" style="gap: var(--reactist-spacing-large); width: 305px;" data-webtasks-id="23dfced6-a576-4fcc"><ul aria-label="Main filters" data-testid="top-sidebar-nav-items" id="top-menu" class="A-1+3VRDSVrGqFoUjyOVqA== focus-marker-enabled-within _2a3b75a1" data-webtasks-id="e4bf0207-e757-43e9"><li id="filter_inbox" class="iydsj+G" data-id="2315339881" data-track="navigation|inbox" disabled="" draggable="false" data-webtasks-id="c26808e4-cff8-4d88"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="aba3b7cd-0e26-4c37"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="5fdf1def-bf58-436d"><a aria-label="Inbox, 27 tasks" tabindex="0" href="/app/project/2315339881" data-webtasks-id="2fb95428-7c37-408a"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="cd1c20ec-6b93-4a48"><svg width="24" height="24" viewBox="0 0 24 24" class="Dd3PmF2g5h93YIf1bCDdiA==" data-webtasks-id="f1fdbe01-7ea5-4589"><g fill="currentColor" fill-rule="nonzero" data-webtasks-id="a1f68d50-6a0b-4ee4"><path d="M10 14.5a2 2 0 104 0h5.5V18a1.5 1.5 0 01-1.5 1.5H6A1.5 1.5 0 014.5 18v-3.5H10z" opacity="0.1" data-webtasks-id="e47b675d-fa57-4ef2"></path><path d="M8.062 4h7.876a2 2 0 011.94 1.515l2.062 8.246a2 2 0 01.06.485V18a2 2 0 01-2 2H6a2 2 0 01-2-2v-3.754a2 2 0 01.06-.485l2.06-8.246A2 2 0 018.061 4zm0 1a1 1 0 00-.97.757L5.03 14.004a1 1 0 00-.03.242V18a1 1 0 001 1h12a1 1 0 001-1v-3.754a1 1 0 00-.03-.242l-2.06-8.247A1 1 0 0015.94 5H8.061zM12 17.25A2.75 2.75 0 019.295 15H7a.5.5 0 110-1h2.75a.5.5 0 01.5.5 1.75 1.75 0 003.5 0 .5.5 0 01.5-.5H17a.5.5 0 110 1h-2.295A2.75 2.75 0 0112 17.25z" data-webtasks-id="328b921e-c225-4286"></path></g></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="82550558-9186-499c">Inbox</span></a><span data-project-actions="true" data-webtasks-id="c23a2e2e-f19a-4f27"><div class="fgALZGUA6SZg9blSarq2hg== _2a3b75a1 _9015266f" data-webtasks-id="cdb5cc9a-99b8-491b"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== _2a3b75a1" data-webtasks-id="bcaa2ba0-bd25-4d14">27</span></div></span></div></div></li><li id="filter_today" data-track="navigation|today" class="" data-webtasks-id="df8174cd-c7bd-47f4"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="934abf98-71d0-4ed2"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="50d0aa7e-ef51-4f13"><a aria-label="Today, 4 tasks" tabindex="0" href="/app/today" data-webtasks-id="a315348e-3b76-4319"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="d21bd3c9-7b97-4668"><svg width="24" height="24" viewBox="0 0 24 24" class="ONBJEQtK++jnfUWJ3V90Dw==" data-webtasks-id="24d440d4-4714-4295"><g fill="currentColor" fill-rule="evenodd" data-webtasks-id="100bac0a-6aeb-4b96"><path fill-rule="nonzero" d="M6 4.5h12A1.5 1.5 0 0 1 19.5 6v2.5h-15V6A1.5 1.5 0 0 1 6 4.5z" opacity=".1" data-webtasks-id="7aee0df0-7280-44d8"></path><path fill-rule="nonzero" d="M6 4h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zm0 1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H6zm1 3h10a.5.5 0 1 1 0 1H7a.5.5 0 0 1 0-1z" data-webtasks-id="8014f7de-22cc-4414"></path><text font-family="-apple-system, system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'" font-size="9" transform="translate(4 2)" font-weight="500" data-webtasks-id="8ce417bc-1f26-4193"><tspan x="8" y="15" text-anchor="middle" data-webtasks-id="ea388613-2637-441c">03</tspan></text></g></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="21a5272c-05cb-4629">Today</span></a><span data-project-actions="true" data-webtasks-id="54ee2b66-3fbf-4b10"><div class="fgALZGUA6SZg9blSarq2hg== _2a3b75a1 _9015266f" data-webtasks-id="de9e6086-5a9a-4eff"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== mKhIUVyJYf3pexnRkJu3eA== _2a3b75a1" data-webtasks-id="bfa4e663-ca79-4348">4</span></div></span></div></div></li><li id="filter_upcoming" data-track="navigation|upcoming" data-webtasks-id="0d79d399-eff5-4ba3"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="96794809-1ce6-41a2"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="7215c135-9c53-4bc5"><a aria-label="Upcoming" tabindex="0" href="/app/upcoming" data-webtasks-id="bbe3ddf9-fba7-4f8e"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="6fc716bf-10e1-4c0b"><svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="SWWJ2mDmoJ5jpYGsCY5nBA==" data-webtasks-id="b6643132-09e7-446a"><g fill="currentColor" fill-rule="nonzero" data-webtasks-id="4c375ace-e9e6-4569"><path d="M6 4.5h12A1.5 1.5 0 0119.5 6v2.5h-15V6A1.5 1.5 0 016 4.5z" opacity="0.1" data-webtasks-id="d8370e8e-c2c2-46f7"></path><path d="M6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2zm0 1a1 1 0 00-1 1v12a1 1 0 001 1h12a1 1 0 001-1V6a1 1 0 00-1-1H6zm10 12a1 1 0 110-2 1 1 0 010 2zm-4 0a1 1 0 110-2 1 1 0 010 2zm-4 0a1 1 0 110-2 1 1 0 010 2zm8-4a1 1 0 110-2 1 1 0 010 2zm-4 0a1 1 0 110-2 1 1 0 010 2zm-4 0a1 1 0 110-2 1 1 0 010 2zM7 8h10a.5.5 0 110 1H7a.5.5 0 010-1z" data-webtasks-id="d925c59e-6737-47d7"></path></g></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="e248cd47-cc1d-4d88">Upcoming</span></a><span data-project-actions="true" data-webtasks-id="a3306d90-bf28-4cce"><div class="_2a3b75a1 _9015266f" data-webtasks-id="4054b995-bed9-4e13"></div></span></div></div></li><li id="filters_labels" data-track="navigation|filters-labels" data-webtasks-id="cb16a49e-f060-4740" class=""><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="6cb2879b-1ce1-470b"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="187818f4-f66a-4ac5"><a aria-label="Filters & Labels" tabindex="0" href="/app/filters-labels" data-webtasks-id="1f36078c-2b1f-4a91"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="0ab88f80-2768-4831"><svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg" class="yeJ7DFSh0CB61w0UHm64kQ==" data-webtasks-id="d4d17d27-fe7d-4eb2"><path opacity="0.1" fill-rule="evenodd" clip-rule="evenodd" d="M13 6.5A1.5 1.5 0 0114.5 5h3A1.5 1.5 0 0119 6.5v3a1.5 1.5 0 01-1.5 1.5h-3A1.5 1.5 0 0113 9.5v-3zM6.5 13A1.5 1.5 0 005 14.5v3A1.5 1.5 0 006.5 19h3a1.5 1.5 0 001.5-1.5v-3A1.5 1.5 0 009.5 13h-3zm8 0a1.5 1.5 0 00-1.5 1.5v3a1.5 1.5 0 001.5 1.5h3a1.5 1.5 0 001.5-1.5v-3a1.5 1.5 0 00-1.5-1.5h-3zm-8-8A1.5 1.5 0 005 6.5v3A1.5 1.5 0 006.5 11h3A1.5 1.5 0 0011 9.5v-3A1.5 1.5 0 009.5 5h-3z" fill="currentColor" data-webtasks-id="f040482e-f8a2-436e"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M17.5 6h-3a.5.5 0 00-.5.5v3a.5.5 0 00.5.5h3a.5.5 0 00.5-.5v-3a.5.5 0 00-.5-.5zm-3-1A1.5 1.5 0 0013 6.5v3a1.5 1.5 0 001.5 1.5h3A1.5 1.5 0 0019 9.5v-3A1.5 1.5 0 0017.5 5h-3zm-8 9h3a.5.5 0 01.5.5v3a.5.5 0 01-.5.5h-3a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5zm-1.5.5A1.5 1.5 0 016.5 13h3a1.5 1.5 0 011.5 1.5v3A1.5 1.5 0 019.5 19h-3A1.5 1.5 0 015 17.5v-3zm9.5-.5h3a.5.5 0 01.5.5v3a.5.5 0 01-.5.5h-3a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5zm-1.5.5a1.5 1.5 0 011.5-1.5h3a1.5 1.5 0 011.5 1.5v3a1.5 1.5 0 01-1.5 1.5h-3a1.5 1.5 0 01-1.5-1.5v-3zM6.5 6h3a.5.5 0 01.5.5v3a.5.5 0 01-.5.5h-3a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5zM5 6.5A1.5 1.5 0 016.5 5h3A1.5 1.5 0 0111 6.5v3A1.5 1.5 0 019.5 11h-3A1.5 1.5 0 015 9.5v-3z" fill="currentColor" data-webtasks-id="ef42943e-940b-43c9"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="e7b1eb22-f4dc-4b6a">Filters & Labels</span></a><span data-project-actions="true" data-webtasks-id="83858151-b7de-4e8f"><div class="_2a3b75a1 _9015266f" data-webtasks-id="5fd72f2c-aa87-4fcd"></div></span></div></div></li></ul><div class="_2a3b75a1" data-webtasks-id="abbbe627-a0bf-4f89"><div data-expansion-panel-header="true" class="_67vYS3K focus-marker-enabled-within _2a3b75a1 _9015266f _4eb1d749" data-webtasks-id="6ebf7d53-9bb5-40ab"><div class="_2a3b75a1 _509a57b4 c4803194 b0e6eab4 cad4e2ec e5a9206f _50ba6b6b f6342c26 _34cd2b5e" data-webtasks-id="62c9c791-2c76-4849"><div class="_2a3b75a1 _509a57b4 e5a9206f _50ba6b6b _4a93668a" data-webtasks-id="5be6aa1d-d40e-40d0"><div class="_2a3b75a1 _509a57b4 e5a9206f _55ef2d4e d5d0d34a _2580a74b" data-webtasks-id="e36a2c86-f20a-4afe"><div class="a83bd4e0 _7be5c531 _6a3e5ade _2f303ac3 _2a3b75a1 _211eebc7" data-webtasks-id="25012274-8bb8-4253">Favorites</div></div></div><div class="_2a3b75a1 d5d0d34a" data-webtasks-id="732bf9a8-e3ea-4a17"></div><div class="_2a3b75a1 d5d0d34a" data-webtasks-id="c53399c8-3d8b-4b7c"><button data-expansion-panel-toggle="true" data-track="navigation|favorites_panel" aria-expanded="true" aria-controls="left-menu-favorites-panel" aria-label="Toggle list of Favorites" type="button" aria-disabled="false" tabindex="0" class="znXtw1Z WQcHCWm _427OSVk _8313bd46 f169a390 _8b7f1a82 _8644eccb _2a3b75a1" data-webtasks-id="e87520ff-8f54-43a4"><svg width="16" height="16" viewBox="0 0 16 16" class="aqv2kvH" data-webtasks-id="e8065de0-ada2-4415"><path d="M14 5.758L13.156 5 7.992 9.506l-.55-.48.002.002-4.588-4.003L2 5.77 7.992 11 14 5.758" fill="currentColor" data-webtasks-id="be3c991b-d647-443f"></path></svg></button></div></div></div><div class="_2a3b75a1" data-webtasks-id="5ed8e54f-468b-4beb"><div class="VELYhgE ChYSaj4 _2a3b75a1 f6342c26" data-webtasks-id="54ecb143-37f0-46ce"><div class="_2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="d13d1045-1c00-4d66"><div class="_2a3b75a1 _8c75067a" data-webtasks-id="3f26ae25-766e-4b89"><div id="left-menu-favorites-panel" class="_2a3b75a1" data-webtasks-id="552086c3-426b-4a8b"><ul aria-label="Favorites" class="A-1+3VRDSVrGqFoUjyOVqA== focus-marker-enabled-within _2a3b75a1" data-webtasks-id="a0f4aabf-e6d5-47ca"><li data-webtasks-id="708e4e2c-c8b3-4cd6"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="2862dd1a-c1f0-4f5a"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="1cd09996-83bd-4430"><a aria-label="Task Type, 4 tasks" tabindex="0" href="/app/label/2167512163" data-webtasks-id="79059e48-6947-46d0"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" style="color: rgb(64, 115, 255);" data-webtasks-id="cb59d1a0-0e27-4415"><svg width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="02a2ca9d-36ac-49eb"><path fill="currentColor" d="M5.914 11.086l4.5-4.5A2 2 0 0111.828 6H16a2 2 0 012 2v4.172a2 2 0 01-.586 1.414l-4.5 4.5a2 2 0 01-2.828 0l-4.172-4.172a2 2 0 010-2.828zM14 11a1 1 0 100-2 1 1 0 000 2z" data-webtasks-id="01d35cd9-674a-49e5"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="c0f7cafa-d6d0-4dda">Task Type</span></a><span data-project-actions="true" data-webtasks-id="8678a677-0768-4fd5"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="c2abcb03-85d6-48fc"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== _2a3b75a1" data-webtasks-id="c81b082e-a650-4c5f">4</span><button type="button" aria-label="More label actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="865e6c1c-e568-4e1f"><span data-webtasks-id="b9bb8246-3280-4502"><svg width="15" height="3" data-webtasks-id="b6319b37-19fb-4051"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="61b67dd5-b5d8-40ff"></path></svg></span></button></div></span></div></div></li><li data-webtasks-id="0626eb36-c868-442f"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="e0d4c699-dd47-408f"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="92536203-8f6d-4de9"><a aria-label="Status, 0 tasks" tabindex="0" href="/app/label/2167486659" data-webtasks-id="504919c5-0428-442f"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" style="color: rgb(64, 115, 255);" data-webtasks-id="292a5881-7651-4c09"><svg width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="f421eed7-09fb-405b"><path fill="currentColor" d="M5.914 11.086l4.5-4.5A2 2 0 0111.828 6H16a2 2 0 012 2v4.172a2 2 0 01-.586 1.414l-4.5 4.5a2 2 0 01-2.828 0l-4.172-4.172a2 2 0 010-2.828zM14 11a1 1 0 100-2 1 1 0 000 2z" data-webtasks-id="f996ad64-15ac-44b1"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="f8c9dee2-e8a1-4f47">Status</span></a><span data-project-actions="true" data-webtasks-id="98e983f6-a8d3-4804"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="2f62d437-ada5-45c1"><button type="button" aria-label="More label actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="2701bbc5-f044-4b49"><span data-webtasks-id="bd5717a7-27fe-4b75"><svg width="15" height="3" data-webtasks-id="1e2a1019-fff2-4168"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="17c933c6-51ba-4ef7"></path></svg></span></button></div></span></div></div></li><li data-webtasks-id="0f5cc04f-683d-4634"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="c4c65a0a-81b9-4fa5"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="86e6eb1a-dbb4-4082"><a aria-label="Important Tasks, 7 tasks" tabindex="0" href="/app/filter/2339312997" data-webtasks-id="c7c53e61-c251-4697"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" style="color: rgb(128, 128, 128);" data-webtasks-id="263d08a2-29b4-4059"><svg width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="e029d76d-043a-49c0"><path fill="currentColor" d="M12 19a5 5 0 005-5c0-1.102-.345-2-1.064-3.03-.259-.371-1.414-1.832-1.697-2.225-.775-1.077-1.338-2.124-1.765-3.403a.5.5 0 00-.948 0c-.427 1.28-.99 2.326-1.765 3.403-.283.393-1.438 1.854-1.697 2.225C7.344 12 7 12.898 7 14a5 5 0 005 5z" data-webtasks-id="beaad580-e985-4fdd"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="264c13c8-cef4-403d">Important Tasks</span></a><span data-project-actions="true" data-webtasks-id="1385c7a7-e9af-4c50"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="ffa8a692-391c-4a42"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== _2a3b75a1" data-webtasks-id="ddd11748-cde5-46a4">7</span><button type="button" aria-label="More filter actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="51aafc59-3689-4b45"><span data-webtasks-id="acf153f0-e79d-4663"><svg width="15" height="3" data-webtasks-id="f7de05a1-2ff1-47b5"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="3124ed7b-eb9a-4344"></path></svg></span></button></div></span></div></div></li></ul></div></div></div></div></div></div><div class="_2a3b75a1" data-webtasks-id="0bf85dbe-681e-4111"><div data-expansion-panel-header="true" class="_67vYS3K focus-marker-enabled-within _2a3b75a1 _9015266f _4eb1d749" data-webtasks-id="edda417c-a483-473b"><div class="I0d9ZtQ _2a3b75a1 _509a57b4 c4803194 b0e6eab4 cad4e2ec e5a9206f _50ba6b6b f6342c26 _34cd2b5e" data-webtasks-id="13501a77-e84f-4f79"><a class="_2a3b75a1 _509a57b4 e5a9206f _50ba6b6b _4a93668a f6342c26" href="/app/projects" data-webtasks-id="7a62644a-bf8c-4b3a"><div class="_2a3b75a1 _509a57b4 e5a9206f _55ef2d4e d5d0d34a _2580a74b" data-webtasks-id="7cfcded9-cd6d-49ef"><div class="a83bd4e0 _7be5c531 _6a3e5ade _2f303ac3 _2a3b75a1 _211eebc7" data-webtasks-id="d73bdd4e-1ae6-43ed">Projects</div><span class="_7957de66 c6106b8c _2a3b75a1 _4a786bb9" data-webtasks-id="08fdd1a5-b726-491b">Used: 5/5</span></div></a><div class="_2a3b75a1 d5d0d34a" data-webtasks-id="2b9349b2-e697-40a2"><button aria-label="Unlock more projects" tabindex="0" type="button" aria-disabled="false" class="_8313bd46 f169a390 _8b7f1a82 _8644eccb _2a3b75a1" data-webtasks-id="ebb96876-317e-4ff8"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="e5512a1c-9a0a-4f7c"><path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M15 6.995V9H9V6.995C9 5.895 9.9 5 11.01 5h1.988C14.102 5 15 5.897 15 6.995zM8 9V6.995A3.003 3.003 0 0111.01 4h1.988A3.002 3.002 0 0116 6.995V9h.994C18.102 9 19 9.887 19 11v6c0 1.105-.897 2-2.006 2H7.006A1.998 1.998 0 015 17v-6c0-1.105.897-2 2.006-2H8zm-2 2v6c0 .556.446 1 1.006 1h9.988c.557 0 1.006-.448 1.006-1v-6c0-.556-.446-1-1.006-1H7.006C6.449 10 6 10.448 6 11zm4 3a2 2 0 104 0 2 2 0 00-4 0zm2 1a1 1 0 100-2 1 1 0 000 2z" data-webtasks-id="2be246bf-e0b0-42ea"></path></svg></button></div><div class="_2a3b75a1 d5d0d34a" data-webtasks-id="9d473bb8-231e-4e25"><button data-expansion-panel-toggle="true" data-track="navigation|projects_panel" aria-expanded="true" aria-controls="left-menu-projects-panel" aria-label="Toggle list of Projects" type="button" aria-disabled="false" tabindex="0" class="znXtw1Z WQcHCWm _427OSVk _8313bd46 f169a390 _8b7f1a82 _8644eccb _2a3b75a1" data-webtasks-id="76a5895b-fdcb-4bc0"><svg width="16" height="16" viewBox="0 0 16 16" class="aqv2kvH" data-webtasks-id="be4d591a-935e-40ba"><path d="M14 5.758L13.156 5 7.992 9.506l-.55-.48.002.002-4.588-4.003L2 5.77 7.992 11 14 5.758" fill="currentColor" data-webtasks-id="1cbc17c8-f45b-47a6"></path></svg></button></div></div></div><div class="_2a3b75a1" data-webtasks-id="42af5677-74aa-4c09"><div class="VELYhgE ChYSaj4 _2a3b75a1 f6342c26" data-webtasks-id="834069de-b1c3-4dc1"><div class="_2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="cf84a163-d4cd-4c2e"><div class="_2a3b75a1 _8c75067a" data-webtasks-id="ad0b69ab-f7ea-4abb"><div id="left-menu-projects-panel" class="_2a3b75a1" data-webtasks-id="2742cbea-98cc-4b62"><ul id="projects_list" aria-label="Projects" class="A-1+3VRDSVrGqFoUjyOVqA== focus-marker-enabled-within _2a3b75a1" data-webtasks-id="eef037ee-6d76-47b9"><li data-type="project_list_item" data-id="2315367588" project="[object Object]" data-draggable="" draggable="true" class="iydsj+G" style="margin-left: 0px;" data-webtasks-id="6a4f5616-685a-4700"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="cc8028ab-d35c-41db"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="278add6a-8d78-4418"><a aria-label="Home Renovation Project, 9 tasks" tabindex="0" href="/app/project/2315367588" data-webtasks-id="13cc387e-b773-4976"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="342eadcc-95df-42b6"><svg width="24" height="24" viewBox="0 0 24 24" class="project_icon" style="color: rgb(224, 81, 148);" data-webtasks-id="c05686d2-0dfb-48e3"><path d="M12 7a5 5 0 110 10 5 5 0 010-10z" fill="currentColor" data-webtasks-id="fc52e4c0-c61f-4140"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="93836671-c658-4ede">Home Renovation Project</span></a><span data-project-actions="true" data-webtasks-id="de16137d-0f4f-4a95"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="bff62410-b8b4-4151"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== _2a3b75a1" data-webtasks-id="808a9c12-17c7-4cee">9</span><button type="button" aria-label="More project actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="bf67075e-ce9c-4f40"><span data-webtasks-id="b83aef05-b7e2-4e68"><svg width="15" height="3" data-webtasks-id="457e0e8e-3eda-45c1"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="e59859c0-15fc-4255"></path></svg></span></button></div></span></div></div></li><li data-type="project_list_item" data-id="2315444883" project="[object Object]" data-draggable="" draggable="true" class="iydsj+G" style="margin-left: 0px;" data-webtasks-id="2a11ea05-28b0-47c6"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="5d37ac31-ea2f-41e0"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="287a1ce6-2796-4db9"><a aria-label="Website Redesign, 1 task" tabindex="0" href="/app/project/2315444883" data-webtasks-id="d641049d-a344-4935"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="740d734e-127e-437e"><svg width="24" height="24" viewBox="0 0 24 24" class="project_icon" style="color: rgb(128, 128, 128);" data-webtasks-id="66c759ae-fdbc-437c"><path d="M12 7a5 5 0 110 10 5 5 0 010-10z" fill="currentColor" data-webtasks-id="c113f4fe-2946-414c"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="99766acb-24d7-46d2">Website Redesign</span></a><span data-project-actions="true" data-webtasks-id="62130a52-60ac-4db0"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="a085825f-1c7e-4623"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== _2a3b75a1" data-webtasks-id="9bf0bfc6-1ef7-431f">1</span><button type="button" aria-label="More project actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="94679fdd-c466-4842"><span data-webtasks-id="7bc009b2-0321-4a54"><svg width="15" height="3" data-webtasks-id="40fb0a67-9d5f-49bc"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="228511ab-a349-4a59"></path></svg></span></button></div></span></div></div></li><li data-type="project_list_item" data-id="2315445490" project="[object Object]" data-draggable="" draggable="true" class="iydsj+G" style="margin-left: 0px;" data-webtasks-id="d76af33f-99a5-4217"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="4d88be8d-09ea-461c"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="5f5274a3-4cc7-42f5"><a aria-label="Marketing Campaign, 0 tasks" tabindex="0" href="/app/project/2315445490" data-webtasks-id="bfb98337-5443-43ad"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="1ee80461-6ec9-4717"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="project_icon" style="color: rgb(136, 77, 255);" data-webtasks-id="6a02ce6a-22d8-4b0a"><path d="M12 13c3.376 0 5.328 1.187 5.854 3.562A1.181 1.181 0 0116.7 18H7.3a1.182 1.182 0 01-1.154-1.438C6.672 14.187 8.624 13 12 13zm0-7a3 3 0 110 6 3 3 0 010-6z" fill="currentColor" data-webtasks-id="0414e248-531f-4425"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="ce193dc7-9fdf-48c3">Marketing Campaign</span></a><span data-project-actions="true" data-webtasks-id="8332f72d-9c68-4214"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="2c2e0a75-5cf7-4120"><button type="button" aria-label="More project actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="6aac6fb9-c2ee-45f9"><span data-webtasks-id="10dfd562-c458-4047"><svg width="15" height="3" data-webtasks-id="ade27cf6-7877-4246"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="13282831-1dba-45a0"></path></svg></span></button></div></span></div></div></li><li data-type="project_list_item" data-id="2315446415" project="[object Object]" data-draggable="" draggable="true" class="iydsj+G" style="margin-left: 0px;" data-webtasks-id="8a93ea66-9ef5-4fa6"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="67b7006f-0d2b-4aab"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="6ac45370-bb4e-4bd5"><a aria-label="Mila Project, 1 task" tabindex="0" href="/app/project/2315446415" data-webtasks-id="b09c3aaa-6159-4a0e"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="391e6018-1a62-4b4d"><svg width="24" height="24" viewBox="0 0 24 24" class="project_icon" style="color: rgb(128, 128, 128);" data-webtasks-id="d4b93d32-d7fc-4e97"><path d="M12 7a5 5 0 110 10 5 5 0 010-10z" fill="currentColor" data-webtasks-id="3891a969-6c92-4b27"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="a8eecb7b-57ce-4078">Mila Project</span></a><span data-project-actions="true" data-webtasks-id="a636331b-6961-4637"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="90dd13aa-189e-491c"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== _2a3b75a1" data-webtasks-id="69f3548a-e52f-4b18">1</span><button type="button" aria-label="More project actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="dc309798-2a9c-4e9d"><span data-webtasks-id="b323969a-4f70-4d24"><svg width="15" height="3" data-webtasks-id="62d0fe94-4344-4d14"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="ba259e95-bd37-4890"></path></svg></span></button></div></span></div></div></li><li data-type="project_list_item" data-id="2315448706" project="[object Object]" data-draggable="" draggable="true" class="iydsj+G" style="margin-left: 0px;" data-webtasks-id="3f46ddf0-63a1-4684"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="17dafad0-8f77-4666"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="67d96ebc-9bb6-49ed"><a aria-label="Event Organization, 2 tasks" tabindex="0" href="/app/project/2315448706" data-webtasks-id="cf35310c-2574-466a"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="1906428a-f045-4eb9"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="project_icon" style="color: rgb(128, 128, 128);" data-webtasks-id="b36a47c8-3a62-43f3"><path d="M12 13c3.376 0 5.328 1.187 5.854 3.562A1.181 1.181 0 0116.7 18H7.3a1.182 1.182 0 01-1.154-1.438C6.672 14.187 8.624 13 12 13zm0-7a3 3 0 110 6 3 3 0 010-6z" fill="currentColor" data-webtasks-id="cc573b72-75b4-40c8"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="5de100f4-1af7-43a5">Event Organization</span></a><span data-project-actions="true" data-webtasks-id="237f83b5-f333-4e83"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="0120c7a8-3a59-44fd"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== _2a3b75a1" data-webtasks-id="c9946c22-d2c9-4639">2</span><button type="button" aria-label="More project actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="61c492c3-e51d-4ce7"><span data-webtasks-id="467aaf81-1c0e-4327"><svg width="15" height="3" data-webtasks-id="05b0b33d-0dff-47bd"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="aeccbb05-165d-4dd1"></path></svg></span></button></div></span></div></div></li></ul></div></div></div></div></div></div><div class="_2a3b75a1 _509a57b4 _213145b4 _8e9bf2ee _33dfbd8e c76cb3c7 _1fb9d90e be9bf31a _4a93668a c68f8bf6" data-webtasks-id="a9129d15-9246-4f1e"></div></div></div><div class="ADvfnAf8aQWYfj+wqyIeVQ==" data-webtasks-id="caf743bd-24e6-45ff"></div><div class="resize_handle" style="left: 303px;" data-webtasks-id="b3e254f9-e361-441b"></div><main aria-label="Main Content" id="content" class="main_content" tabindex="-1" style="margin-left: 305px;" data-webtasks-id="a1fb0190-749c-4c3e"><div class="main-view-layout main-view-layout--undefined" data-webtasks-id="713c9f51-418e-42c7"><div role="listbox" aria-multiselectable="true" data-selection-empty="" tabindex="-1" class="oCoNIi6 filter_view" style="--view-header-height: 72px;" data-webtasks-id="ae130290-a7f5-4c07"><header aria-label="Project Header: contains Comments button, Share button, Sort Options button, and More Project Actions button" data-testid="view_header" class="view_header view_header--has_actions _2a3b75a1 _33dfbd8e" data-webtasks-id="fea060db-cff4-44b4"><div class="view_header__content" data-webtasks-id="976c19f3-49a9-408d"><button type="button" aria-label="Back to Filters & Labels" class="icon_button view_header__previous_view" tabindex="0" data-webtasks-id="69914993-9a1c-49eb"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="f1948a52-1db5-427a"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.145 6.148a.5.5 0 11.71.704L6.738 12H17.5a.5.5 0 010 1H6.738l5.117 5.148a.5.5 0 01-.71.704l-5.964-6a.472.472 0 01-.025-.027A.437.437 0 015 12.5c0-.124.059-.238.156-.325a.533.533 0 01.025-.027l5.964-6z" fill="currentColor" data-webtasks-id="fd1d6903-3ce8-4a04"></path></svg></button><h1 role="heading" tabindex="0" aria-describedby="view_header__a11y_helper_text" data-testid="view_header__h1" class="editable" data-webtasks-id="b499f58e-2530-44c0"><span class="simple_content" data-webtasks-id="da608179-6443-4270">Weekend tasks</span></h1><span id="view_header__a11y_helper_text" data-webtasks-id="f4357f84-097a-42e2">Activate to edit name</span><div class="view_header__actions _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="41948caf-df37-4fed"><button type="button" aria-label="View options menu" class="_9Wfxfoc5gMsPy1iegKm8fw==" data-webtasks-id="9cd743a4-ef79-476b"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="2bf816ce-7017-476a"><path d="M15 14.5a2 2 0 011.936 1.498L19.5 16a.5.5 0 010 1l-2.563.001a2.001 2.001 0 01-3.874 0L4.5 17a.5.5 0 010-1l8.564-.002A2 2 0 0115 14.5zm-.982 1.81l.005-.025-.005.026-.003.014-.004.025-.007.061A.897.897 0 0014 16.5l.008.125.007.047-.001.002.003.014.006.024h-.001l.004.018.016.058.007.021.004.013.009.026.013.033.012.027-.011-.026.019.043-.008-.017.029.06-.018-.037.048.09a1 1 0 001.784-.155l.015-.039.006-.018-.015.039.022-.06-.001-.001.016-.057.004-.018.005-.024.001-.006v-.001l.005-.033.008-.06A.877.877 0 0016 16.5l-.008-.124-.007-.051-.001-.001-.003-.014-.01-.047-.004-.016-.007-.024-.01-.034-.004-.012-.01-.03-.006-.013-.007-.017-.01-.026a.998.998 0 00-1.843.043l-.014.034-.007.022-.014.047-.002.009v.001l-.005.016-.01.047zM9 9.5a2 2 0 011.936 1.498L19.5 11a.5.5 0 010 1l-8.563.001a2.001 2.001 0 01-3.874 0L4.5 12a.5.5 0 010-1l2.564-.002A2 2 0 019 9.5zm0 1a.998.998 0 00-.93.634l-.014.034-.007.022-.014.047-.002.009v.001l-.005.016-.01.047.005-.025-.005.026-.003.014-.004.025-.007.061C8 11.441 8 11.471 8 11.5l.008.125.007.047-.001.002.003.014.006.024h-.001l.004.018.016.058.007.021.004.013.009.026.013.033.012.027-.011-.026.019.043-.008-.017.029.06-.018-.037.048.09a1 1 0 001.784-.155l.015-.039.006-.018-.015.039.022-.06-.001-.001.016-.057.004-.018.005-.024.001-.006v-.001l.005-.033.008-.06A.877.877 0 0010 11.5l-.008-.124-.007-.051-.001-.001-.003-.014-.01-.047-.004-.016-.007-.024-.01-.034-.004-.012-.01-.03-.006-.013-.007-.017-.01-.026A1.002 1.002 0 009 10.5zm6-6a2 2 0 011.936 1.498L19.5 6a.5.5 0 010 1l-2.563.001a2.001 2.001 0 01-3.874 0L4.5 7a.5.5 0 010-1l8.564-.002A2 2 0 0115 4.5zm0 1a.998.998 0 00-.93.634l-.014.034-.007.022-.014.047-.002.009v.001l-.005.016-.01.047.005-.025-.005.026-.003.014-.004.025-.007.061C14 6.441 14 6.471 14 6.5l.008.125.007.047-.001.002.003.014.006.024h-.001l.004.018.016.058.007.021.004.013.009.026.013.033.012.027-.011-.026.019.043-.008-.017.029.06-.018-.037.048.09a1 1 0 001.784-.155l.015-.039.006-.018-.015.039.022-.06-.001-.001.016-.057.004-.018.005-.024.001-.006v-.001l.005-.033.008-.06C16 6.557 16 6.528 16 6.5l-.008-.124-.007-.051-.001-.001-.003-.014-.01-.047-.004-.016-.007-.024-.01-.034-.004-.012-.01-.03-.006-.013-.007-.017-.01-.026A1.002 1.002 0 0015 5.5z" fill="currentColor" fill-rule="nonzero" data-webtasks-id="c18d32d2-ce3b-45d8"></path></svg><span class="action_label" data-webtasks-id="c6f04b78-8500-4eeb">View</span></button><button type="button" aria-label="Filter options menu" tabindex="0" data-webtasks-id="722d04f5-3c21-4cf7"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="806b23e6-f55d-4166"><g fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(3 10)" data-webtasks-id="95826d03-f667-4d16"><circle cx="2" cy="2" r="2" data-webtasks-id="e38b5f43-a573-4c11"></circle><circle cx="9" cy="2" r="2" data-webtasks-id="500a5ac3-e583-4845"></circle><circle cx="16" cy="2" r="2" data-webtasks-id="1d40353a-cc18-4d3f"></circle></g></svg></button></div></div></header><div class="view_content" data-webtasks-id="9bc0a830-bc38-4171"><section class="section" aria-label="15 Jul ‧ Saturday" data-webtasks-id="49dafe69-992d-4b12"><header id=":r17:" data-webtasks-id="8b628d7a-7313-4640"><div class="section_head__overflow_actions" data-webtasks-id="70787453-e193-4904"></div><h2 data-webtasks-id="b3bc4abe-0f2d-4b7b"><div class="_2a3b75a1 _509a57b4 e5a9206f _55ef2d4e c68f8bf6" data-webtasks-id="d6cbe236-940a-4185"><a href="/app/search/2023-07-15" data-webtasks-id="eca89205-77ea-4d0b">15 Jul ‧ Saturday</a></div></h2></header><div class="list_holder" data-webtasks-id="aa838037-c5ae-462f"><ul class="items" data-webtasks-id="0effaafb-77fb-439f"><li aria-selected="false" data-selection-id="Sat Jul 15 2023 23:59:59 GMT+0530 (India Standard Time)-0/7016181924" id="task-7016181924" class="task_list_item" data-item-id="7016181924" data-item-indent="1" data-task-navigation-element="7016181924" data-webtasks-id="e50aa3aa-a963-44a5"><div role="button" tabindex="0" data-action-hint="task-root" aria-labelledby="task-7016181924-content" class="task_list_item__body" data-webtasks-id="d0fd657b-d1bf-4415"><button type="button" class="task_checkbox priority_3" role="checkbox" aria-checked="false" aria-label="Mark task as complete" aria-describedby="task-7016181924-content" data-action-hint="task-complete" data-webtasks-id="e7922590-15d8-46ed"><span class="task_checkbox__circle" data-webtasks-id="e0ac76fb-bdb7-45fe"></span><svg width="24" height="24" data-webtasks-id="78df9eb4-eaba-4009"><path fill="currentColor" d="M11.23 13.7l-2.15-2a.55.55 0 0 0-.74-.01l.03-.03a.46.46 0 0 0 0 .68L11.24 15l5.4-5.01a.45.45 0 0 0 0-.68l.02.03a.55.55 0 0 0-.73 0l-4.7 4.35z" data-webtasks-id="bf66e66a-e463-48d6"></path></svg><span class="task_checkbox__border" data-webtasks-id="f272cbf6-a338-49ff"></span></button><div class="task_list_item__content" data-webtasks-id="0e26ce3c-9009-4719"><div id="task-7016181924-content" class="task_list_item__content__wrapper" data-webtasks-id="4884fc91-7c02-4444"><div class="_2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="ef13b890-ad53-4de2"><div class="e3d32437 _2a3b75a1" data-webtasks-id="90afdc82-5f76-40b0"><div class="task_content" data-webtasks-id="23086c63-8ba1-41d9">Sales Presentation Preparation</div></div></div><div class="e3d32437 _2a3b75a1" data-webtasks-id="bda532fd-acd6-47f4"><div class="task_description" data-webtasks-id="47e6eb61-2676-4701">Prepare a sales presentation for an upcoming client meeting. Outline key points, gather relevant data, create compelling slides, and rehearse the delivery to ensure a persuasive and successful presentation.</div></div></div><div class="task_list_item__info_tags" data-layout="list" data-webtasks-id="03edb3de-a8cb-4121"><span class="task_list_item__project" data-webtasks-id="34dd5aa0-a2ce-48df"><a href="/app/project/2315339881#task-7016181924" data-webtasks-id="5f765a8d-2d96-4ed3"><div class="task_list_item__project__label _2a3b75a1 _148492bc" data-webtasks-id="e7d9e45c-ecd3-41b8"><div class="a83bd4e0 _266d6623 _6a3e5ade _2f303ac3 _2a3b75a1 _211eebc7" data-webtasks-id="f9692b71-90ba-452c"><span data-webtasks-id="3f4038a8-5e39-4703">Inbox</span></div></div><svg width="12" height="12" viewBox="0 0 16 16" class="project_icon project_icon_inbox" data-webtasks-id="0e4f0a5f-ad0c-4bda"><g fill="currentColor" data-webtasks-id="688c17fe-6a8b-49a7"><path d="M13.5 9.5V12a1.5 1.5 0 01-1.5 1.5H4A1.5 1.5 0 012.5 12V9.5h3.75a1.75 1.75 0 003.5 0h3.75z" opacity="0.1" data-webtasks-id="426e8159-3102-4b18"></path><path d="M10.491 2a2 2 0 011.923 1.45l1.509 5.28a2 2 0 01.077.55V12a2 2 0 01-2 2H4a2 2 0 01-2-2V9.28a2 2 0 01.077-.55l1.509-5.28A2 2 0 015.509 2h4.982zm0 1H5.51a1 1 0 00-.962.725l-1.509 5.28A1 1 0 003 9.28V12a1 1 0 001 1h8a1 1 0 001-1V9.28a1 1 0 00-.038-.275l-1.51-5.28a1 1 0 00-.96-.725zM6.25 9a.5.5 0 01.5.5 1.25 1.25 0 002.5 0 .5.5 0 01.5-.5h1.75a.5.5 0 110 1h-1.306a2.25 2.25 0 01-4.388 0H4.5a.5.5 0 010-1z" data-webtasks-id="1955dd19-6812-4a5d"></path></g></svg></a></span></div></div><div class="task_list_item__selected_actions" data-webtasks-id="5f6dbff8-4961-4534"></div><div class="task_list_item__actions task_list_item__actions--active" data-webtasks-id="db3fa9d8-32a8-4d08"><button type="button" aria-label="Edit" data-action-hint="task-edit" tabindex="0" data-webtasks-id="10c2bfed-1aa5-42e7"><svg width="24" height="24" data-webtasks-id="7914d0f5-b484-4c5e"><g fill="none" fill-rule="evenodd" data-webtasks-id="7c48727a-6ca4-498c"><path fill="currentColor" d="M9.5 19h10a.5.5 0 110 1h-10a.5.5 0 110-1z" data-webtasks-id="c6cace34-8bee-4063"></path><path stroke="currentColor" d="M4.42 16.03a1.5 1.5 0 00-.43.9l-.22 2.02a.5.5 0 00.55.55l2.02-.21a1.5 1.5 0 00.9-.44L18.7 7.4a1.5 1.5 0 000-2.12l-.7-.7a1.5 1.5 0 00-2.13 0L4.42 16.02z" data-webtasks-id="294496f2-d1ea-4651"></path></g></svg></button><button type="button" aria-expanded="false" data-action-hint="task-scheduler" aria-label="Due date" class="due_date_controls" tabindex="0" data-webtasks-id="bc8c1b85-398f-4591"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="9f2d4c70-319a-42a0"><path fill-rule="evenodd" clip-rule="evenodd" d="M18 4H6a2 2 0 00-2 2v12a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2zM5 6a1 1 0 011-1h12a1 1 0 011 1v12a1 1 0 01-1 1H6a1 1 0 01-1-1V6zm12 10a1 1 0 11-2 0 1 1 0 012 0zM7 8a.5.5 0 000 1h10a.5.5 0 000-1H7z" fill="currentColor" data-webtasks-id="0c9f9272-7b2c-4e17"></path></svg></button><a class="task_list_item__comments_link" aria-label="Comment" data-action-hint="task-comment" tabindex="0" href="/app/filter/2339313276/task/7016181924?intent=reply" data-webtasks-id="c72c720f-6ca7-49e5"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-svgs-path="sm1/comments.svg" data-webtasks-id="ed8ccb96-7279-453c"><path fill="currentColor" fill-rule="nonzero" d="M11.707 20.793A1 1 0 0 1 10 20.086V18H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4.5l-2.793 2.793zM11 20.086L14.086 17H19a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h6v3.086z" data-webtasks-id="70ff3fa8-f88c-4e92"></path></svg></a><button type="button" aria-expanded="false" data-testid="more_menu" data-action-hint="task-overflow-menu" aria-label="More task actions" class="more_actions_button" tabindex="0" data-webtasks-id="480c0623-0ecd-4173"><svg width="15" height="3" data-webtasks-id="456dfd6b-c10e-4d7b"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="50d0657a-6463-4221"></path></svg></button></div></div></li></ul></div></section></div></div></div></main></div></div><div class="AD6ugiP _2a3b75a1 _2286072d" data-webtasks-id="7ee5d41d-cbdc-4541" data-aria-hidden="true" aria-hidden="true"></div><div id="DndDescribedBy-0" style="display: none;" data-webtasks-id="818776e1-d242-4b07" data-aria-hidden="true" aria-hidden="true"> |
|
To pick up a draggable item, press the space bar. |
|
While dragging, use the arrow keys to move the item. |
|
Press space again to drop the item in its new position, or press escape to cancel. |
|
</div><div id="DndLiveRegion-0" role="status" aria-live="assertive" aria-atomic="true" style="position: fixed; width: 1px; height: 1px; margin: -1px; border: 0px; padding: 0px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); clip-path: inset(100%); white-space: nowrap;" data-webtasks-id="e953dc31-34fe-4bdf"></div></div></div><script nonce="" data-webtasks-id="1f6d19b9-975a-46a5" data-aria-hidden="true" aria-hidden="true">cdnLoadScript('body')("/assets/vendor~add~app~authentication~electron-login~253ae210.ec4a036eb951a06dc27d57d59797b047.js"); |
|
|
|
cdnLoadScript('body')("/assets/vendor~add~app~authentication~electron-login~b5906859.05ba931ebac209f7999b443e72ae3280.js"); |
|
|
|
cdnLoadScript('body')("/assets/vendor~add~app~electron-login~253ae210.6d50f66ae22a3fef28a890ded269d2b7.js"); |
|
|
|
cdnLoadScript('body')("/assets/vendor~add~app~electron-login~690b702c.773011852ea4818c3a7819fec150864e.js"); |
|
|
|
cdnLoadScript('body')("/assets/vendor~add~app~authentication~275fb47b.cdc58f7ad4f5564716aa57a108fc9314.js"); |
|
|
|
cdnLoadScript('body')("/assets/vendor~add~app~253ae210.b920a54c73aacfe924ebd4a3ff1244a9.js"); |
|
|
|
cdnLoadScript('body')("/assets/vendor~add~app~f9ca8911.885b0816e84a1903d7ce10be67899880.js"); |
|
|
|
cdnLoadScript('body')("/assets/vendor~app~electron-login~678f84af.4b3d2b486103d5026993534ede5dd05a.js"); |
|
|
|
cdnLoadScript('body')("/assets/vendor~app~authentication~253ae210.c16ea5b2ef8df5a14db5a8209a526ab3.js"); |
|
|
|
cdnLoadScript('body')("/assets/vendor~app~connected-card~bf6881bb.5d0d79922167d69fd4f807545ba2460f.js"); |
|
|
|
cdnLoadScript('body')("/assets/vendor~app~253ae210.b525fef0e454511e0f1ea125ff91c804.js"); |
|
|
|
cdnLoadScript('body')("/assets/app~d0ae3f07.d7db0fa7b7e2ceea9068bc17105014b4.js"); |
|
|
|
cdnLoadScript('body')("/assets/app~5a11b65b.812be39e91f453b8d9bbae15ba908d06.js"); |
|
|
|
cdnLoadScript('body')("/assets/app~c714bc7b.7d341c0da2cba29d7f2ec22109cc3313.js"); |
|
|
|
cdnLoadScript('body')("/assets/app~31e116db.1f18136229e36cf9130d3b5bf309cee2.js"); |
|
|
|
cdnLoadScript('body')("/assets/app~fc66dfb5.26aaa8f8fda8705013bf63cba64f9e18.js"); |
|
|
|
cdnLoadScript('body')("/assets/app~2cb4426d.3c90e017d13b7f0812ad9042487ee9da.js");</script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~authentication~electron-login~253ae210.ec4a036eb951a06dc27d57d59797b047.js" crossorigin="anonymous" data-webtasks-id="f7d6a6d3-9cdd-40f5" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~authentication~electron-login~b5906859.05ba931ebac209f7999b443e72ae3280.js" crossorigin="anonymous" data-webtasks-id="6f466810-fff4-42fe" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~electron-login~253ae210.6d50f66ae22a3fef28a890ded269d2b7.js" crossorigin="anonymous" data-webtasks-id="73dbb6a7-4b41-4695" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~electron-login~690b702c.773011852ea4818c3a7819fec150864e.js" crossorigin="anonymous" data-webtasks-id="39de17d3-b2f1-4966" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~authentication~275fb47b.cdc58f7ad4f5564716aa57a108fc9314.js" crossorigin="anonymous" data-webtasks-id="6dca0a97-d630-4dee" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~253ae210.b920a54c73aacfe924ebd4a3ff1244a9.js" crossorigin="anonymous" data-webtasks-id="6b1a4e3e-11bd-4c54" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~f9ca8911.885b0816e84a1903d7ce10be67899880.js" crossorigin="anonymous" data-webtasks-id="96bd1d2e-c725-4dba" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~app~electron-login~678f84af.4b3d2b486103d5026993534ede5dd05a.js" crossorigin="anonymous" data-webtasks-id="7e164d7d-307b-4035" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~app~authentication~253ae210.c16ea5b2ef8df5a14db5a8209a526ab3.js" crossorigin="anonymous" data-webtasks-id="58cc04ae-d2ab-4e07" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~app~connected-card~bf6881bb.5d0d79922167d69fd4f807545ba2460f.js" crossorigin="anonymous" data-webtasks-id="191be0cc-f15d-4503" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~app~253ae210.b525fef0e454511e0f1ea125ff91c804.js" crossorigin="anonymous" data-webtasks-id="ffe58d56-fa7e-4f3f" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/app~d0ae3f07.d7db0fa7b7e2ceea9068bc17105014b4.js" crossorigin="anonymous" data-webtasks-id="cd029c72-99f7-4ee1" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/app~5a11b65b.812be39e91f453b8d9bbae15ba908d06.js" crossorigin="anonymous" data-webtasks-id="83da483f-24bb-4716" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/app~c714bc7b.7d341c0da2cba29d7f2ec22109cc3313.js" crossorigin="anonymous" data-webtasks-id="c82ac602-7ae1-422c" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/app~31e116db.1f18136229e36cf9130d3b5bf309cee2.js" crossorigin="anonymous" data-webtasks-id="eb5eff33-48fd-46d3" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/app~fc66dfb5.26aaa8f8fda8705013bf63cba64f9e18.js" crossorigin="anonymous" data-webtasks-id="ef068876-ac37-4417" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/app~2cb4426d.3c90e017d13b7f0812ad9042487ee9da.js" crossorigin="anonymous" data-webtasks-id="087be9e1-b7ee-431f" data-aria-hidden="true" aria-hidden="true"></script><div class="ist_tooltip_holder" style="display: none;" data-webtasks-id="0e4ab697-fcfb-4b2b" data-aria-hidden="true" aria-hidden="true"></div><div id="id-z3lmhk" data-webtasks-id="e2285878-1219-40c6" data-aria-hidden="true" aria-hidden="true"><div data-webtasks-id="7b4ca026-d8ae-412c"></div></div><div id="modal_box" data-webtasks-id="e999b34e-799a-47c8" data-aria-hidden="true" aria-hidden="true"></div><div id="id-pwi412" data-webtasks-id="ab7b4dde-873c-45a8"><div data-webtasks-id="679db347-7845-4cd5"><div data-testid="modal-overlay" data-overlay="true" class="_8aa86dd3 _61ffb38f _11d61de3 _2a3b75a1" data-webtasks-id="e88a5e85-485c-4657"><div data-focus-guard="true" tabindex="0" data-webtasks-id="d1c07ac6-2a6f-47d8" style="width: 1px; height: 0px; padding: 0px; overflow: hidden; position: fixed; top: 1px; left: 1px;"></div><div data-focus-lock-disabled="false" data-webtasks-id="f79d39ce-3da6-4ceb"><div id=":r18:" data-dialog="" role="dialog" tabindex="-1" aria-label="Sales Presentation Preparation" data-testid="task-details-modal" class="mC9LTvj _45139719 _2a3b75a1 _509a57b4 _1fb9d90e _4a93668a f6342c26 a83fb2f5 d85cf739 _5fe4d5e3" data-webtasks-id="97891abd-8d20-4f10"><header class="FejMLOm _2a3b75a1 _4e9ab24b ad0ccf15 _9510d053 _078feb3c" data-webtasks-id="d3fc0af3-9cfc-403a"><div class="eae3d34f _1cf15621 _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b _985b733f _966b120f" data-webtasks-id="0f0f2afe-1a28-40b9"><div class="_9dd31975 _2a3b75a1 _68ab48ca _4a93668a a83fb2f5" data-webtasks-id="a22aaa52-af2c-406d"><div data-testid="task-detail-default-header" class="_5i5tzAW _2a3b75a1 _509a57b4 e5a9206f _3692f9c2 _50ba6b6b _985b733f" data-webtasks-id="663ac0eb-3b11-4bbe"><a class="m4WjXkL" title="Inbox" href="/app/project/2315339881#task-7016181924" data-webtasks-id="a64e9625-34c0-4da3"><svg width="16" height="16" viewBox="0 0 16 16" class="project_icon project_icon_inbox" data-webtasks-id="1b553e97-0e59-4101"><g fill="currentColor" data-webtasks-id="538613f7-38a0-43d1"><path d="M13.5 9.5V12a1.5 1.5 0 01-1.5 1.5H4A1.5 1.5 0 012.5 12V9.5h3.75a1.75 1.75 0 003.5 0h3.75z" opacity="0.1" data-webtasks-id="8d081509-2297-409f"></path><path d="M10.491 2a2 2 0 011.923 1.45l1.509 5.28a2 2 0 01.077.55V12a2 2 0 01-2 2H4a2 2 0 01-2-2V9.28a2 2 0 01.077-.55l1.509-5.28A2 2 0 015.509 2h4.982zm0 1H5.51a1 1 0 00-.962.725l-1.509 5.28A1 1 0 003 9.28V12a1 1 0 001 1h8a1 1 0 001-1V9.28a1 1 0 00-.038-.275l-1.51-5.28a1 1 0 00-.96-.725zM6.25 9a.5.5 0 01.5.5 1.25 1.25 0 002.5 0 .5.5 0 01.5-.5h1.75a.5.5 0 110 1h-1.306a2.25 2.25 0 01-4.388 0H4.5a.5.5 0 010-1z" data-webtasks-id="1b032ac1-8d7e-4274"></path></g></svg><div class="a83bd4e0 _266d6623 _2f303ac3 _2a3b75a1 _211eebc7" data-webtasks-id="2c38f81a-56d9-48ee">Inbox</div></a></div></div><div data-testid="button-container" class="_49ffdac0 _4bb9987d _2a3b75a1 _68ab48ca d5d0d34a d8ff7933 a83fb2f5" data-webtasks-id="0a88e924-e8dc-4f95"><div class="_2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="f5b3dbeb-763b-4a35"><button aria-label="Previous task" type="button" aria-disabled="true" tabindex="0" class="_8313bd46 f169a390 _5e45d59f _8644eccb _43792df1 _2a3b75a1" data-webtasks-id="3250ade2-0c71-4518"><svg width="14" height="8" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="137ea042-f4f9-4bc1"><path fill-rule="evenodd" clip-rule="evenodd" d="M13.854 7.604a.5.5 0 01-.708 0L7 1.457.854 7.604a.5.5 0 01-.708-.707l6.5-6.5a.5.5 0 01.708 0l6.5 6.5a.5.5 0 010 .707z" fill="currentColor" data-webtasks-id="d2ab36a3-d0fb-463d"></path></svg></button><button aria-label="Next task" type="button" aria-disabled="true" tabindex="0" class="_8313bd46 f169a390 _5e45d59f _8644eccb _43792df1 _2a3b75a1" data-webtasks-id="9998bb20-ed90-40a3"><svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="fc733377-d464-46b9"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.146 8.397a.5.5 0 01.708 0L12 14.543l6.146-6.146a.5.5 0 01.708.707l-6.5 6.5a.5.5 0 01-.708 0l-6.5-6.5a.5.5 0 010-.707z" fill="currentColor" data-webtasks-id="bd44626d-ebaa-4a13"></path></svg></button><div class="_2a3b75a1 f53218d5" data-webtasks-id="964002d3-682f-452c"><button data-command="" data-disclosure="" aria-expanded="false" id=":r1a:" aria-haspopup="menu" aria-label="More actions" type="button" aria-disabled="false" tabindex="0" class="_8313bd46 f169a390 _5e45d59f _8644eccb _2a3b75a1" data-webtasks-id="0265753d-c692-4394"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="4a5fb352-f2bd-410c"><g fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(3 10)" data-webtasks-id="f9420b63-b28a-4ce0"><circle cx="2" cy="2" r="2" data-webtasks-id="4b422871-6db9-4cfb"></circle><circle cx="9" cy="2" r="2" data-webtasks-id="3bf0d3e1-f3d1-4cb2"></circle><circle cx="16" cy="2" r="2" data-webtasks-id="6e23d1d3-0e36-497d"></circle></g></svg></button></div><div class="_2a3b75a1 f53218d5" data-webtasks-id="8624062f-4929-434b"><button aria-label="Close modal" tabindex="0" type="button" aria-disabled="false" class="_8313bd46 f169a390 _5e45d59f _8644eccb _2a3b75a1" data-webtasks-id="285279a0-b3a4-42ce"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="506cc587-180b-4443"><path fill="currentColor" d="M5.146 5.146a.5.5 0 0 1 .708 0L12 11.293l6.146-6.147a.5.5 0 0 1 .638-.057l.07.057a.5.5 0 0 1 0 .708L12.707 12l6.147 6.146a.5.5 0 0 1 .057.638l-.057.07a.5.5 0 0 1-.708 0L12 12.707l-6.146 6.147a.5.5 0 0 1-.638.057l-.07-.057a.5.5 0 0 1 0-.708L11.293 12 5.146 5.854a.5.5 0 0 1-.057-.638z" data-webtasks-id="fa293502-a4b8-43cf"></path></svg></button></div></div></div></div></header><hr class="b6f67ff8 _2a3b75a1" data-webtasks-id="66858ae2-ac1f-45a5"><div data-item-content="Sales Presentation Preparation" data-item-id="7016181924" data-item-detail-root="" data-item-project-id="2315339881" data-item-project-name="Inbox" class="SDboQs9 _2a3b75a1 _509a57b4 e5a9206f a83fb2f5" data-webtasks-id="427a39cf-ea15-4f88"><div data-testid="task-main-content-container" class="_2a3b75a1 eb6097f1 f0941ead _078feb3c _10a2f952 _8c75067a d85cf739" data-webtasks-id="cf425f85-b71c-4109"><div class="_2a3b75a1 _509a57b4 _1fb9d90e _966b120f _8c75067a" data-webtasks-id="1f5e4f64-4856-44ed"><div class="_2a3b75a1 _509a57b4 _1fb9d90e c68f8bf6 _8c75067a" data-webtasks-id="bdb348a7-ab8e-4799"><div data-testid="task-detail-editor-container" class="task-detail-editor-container _2a3b75a1 a83fb2f5" data-webtasks-id="16d9c41d-f540-4879"><div class="_2a3b75a1 _509a57b4 e5a9206f _4a93668a a83fb2f5" data-webtasks-id="28aac91b-177f-4d45"><button type="button" class="task_checkbox priority_3 disabled" role="checkbox" aria-checked="false" aria-label="Checkbox for Sales Presentation Preparation" disabled="" data-webtasks-id="58834965-418c-499f"><span class="task_checkbox__circle" data-webtasks-id="fef4eb7a-7e31-458e"></span><svg width="24" height="24" data-webtasks-id="4e8e1dbb-a6d4-4491"><path fill="currentColor" d="M11.23 13.7l-2.15-2a.55.55 0 0 0-.74-.01l.03-.03a.46.46 0 0 0 0 .68L11.24 15l5.4-5.01a.45.45 0 0 0 0-.68l.02.03a.55.55 0 0 0-.73 0l-4.7 4.35z" data-webtasks-id="3b748049-9a58-44b5"></path></svg><span class="task_checkbox__border" data-webtasks-id="3c1b02f1-c998-43ee"></span></button><div class="_2a3b75a1 cd4c8183 _4a93668a a83fb2f5" data-webtasks-id="d1b1c705-4e40-46c7"><form class="task_editor focus-marker-enabled-within" data-webtasks-id="6bd3a05b-6495-482d"><div class="task_editor__editing_area" data-webtasks-id="3bc6ad34-f9e1-4587"><div class="task_editor__input_fields" data-webtasks-id="2d360a67-2cc0-49c5"><div class="task_editor__content_field no-focus-marker task_editor__content_field--large-text" data-webtasks-id="bb87559b-22cd-4e2f"><div class="_2a3b75a1 _509a57b4 _1fb9d90e _4a93668a" data-webtasks-id="44ae5f27-5e8f-4e66"><div class="e3d32437 _2a3b75a1" data-webtasks-id="a14ea8be-f47a-4925"><div class="kr2Srm5 no-focus-marker task_editor__content_field--semibold" data-webtasks-id="cdaf049e-bbcf-4905"><div contenteditable="true" data-typist-editor="true" data-rich-text="true" role="textbox" aria-readonly="false" aria-multiline="true" aria-label="Task name" translate="no" class="ProseMirror ProseMirror-focused" tabindex="0" data-webtasks-id="41f14112-53ff-4859"><p data-webtasks-id="53d20e09-26a1-469c">Sales Presentation Preparation</p></div></div></div></div></div><div class="_2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="66e10c51-c71e-4e6a"><div class="_2a3b75a1 _509a57b4 _1fb9d90e _4a93668a" data-webtasks-id="c9af9597-2490-4293"><div class="e3d32437 _2a3b75a1" data-webtasks-id="ca4b70b8-4288-4803"><div class="kr2Srm5 task_editor__description_field no-focus-marker" data-webtasks-id="982be43a-ba3a-4d02"><div contenteditable="true" data-typist-editor="true" data-rich-text="true" role="textbox" aria-readonly="false" aria-multiline="true" aria-label="Description" translate="no" class="ProseMirror" tabindex="0" data-webtasks-id="672fbeb4-f730-43a6"><p data-webtasks-id="b99d904d-c151-4b8b">Prepare a sales presentation for an upcoming client meeting. Outline key points, gather relevant data, create compelling slides, and rehearse the delivery to ensure a persuasive and successful presentation.</p></div></div></div></div></div></div></div><div class="task_editor__footer _2a3b75a1 _509a57b4 d3449da6 e5a9206f _904ef8fe _8c75067a" data-webtasks-id="f6956a41-7069-48b0"><div data-testid="task-editor-action-buttons" class="task_editor__footer__action-buttons _2a3b75a1 _509a57b4 e5a9206f _3692f9c2 _50ba6b6b _985b733f c68f8bf6" data-webtasks-id="504f330f-1cbd-4fe1"><button aria-label="Cancel" type="button" aria-disabled="false" class="_8313bd46 _54d56775 _5e45d59f _2a3b75a1 _56a651f6" data-webtasks-id="dc70391d-c8bf-4f2a"><span class="_0051d171 _2a3b75a1 f973eed0 f6342c26" data-webtasks-id="927620ff-e5c8-4c6d">Cancel</span></button><button data-testid="task-editor-submit-button" aria-label="Save" type="submit" aria-disabled="false" class="_8313bd46 _7a4dbd5f _5e45d59f _2a3b75a1 _56a651f6" data-webtasks-id="eb5b7178-424c-49c8"><span class="_0051d171 _2a3b75a1 f973eed0 f6342c26" data-webtasks-id="f798d10a-da28-413b">Save</span></button></div></div></form></div></div></div></div><div class="_2a3b75a1" data-webtasks-id="ebb20615-59ed-4cb2"><div class="rhBN4zt _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="bf59299e-8cfa-4df8"><div class="_2a3b75a1 _96003c07" data-webtasks-id="c92ecb4e-7692-4e1e"><button type="button" aria-disabled="false" class="_8313bd46 f169a390 _8b7f1a82 _2a3b75a1 _56a651f6" data-webtasks-id="4ba6075d-40f4-4dae"><div aria-hidden="true" class="a44d4350 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="f5260f07-b6aa-4087"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="60740552-70b4-485c"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 6a.462.462 0 00-.461.462v5.077H6.462a.462.462 0 100 .922h5.077v5.077a.461.461 0 10.922 0v-5.077h5.077a.461.461 0 100-.922h-5.077V6.462A.462.462 0 0012 6z" fill="currentColor" data-webtasks-id="637f48ca-db40-47fd"></path></svg></div><span class="_0051d171 _2a3b75a1 f973eed0 f6342c26" data-webtasks-id="9f7e8d06-d1df-4770">Add sub-task</span></button></div></div></div><div class="Qt2esjE _2a3b75a1 _4e9ab24b fbd4ce29" data-webtasks-id="2fbc7de6-0be6-4628"><div data-webtasks-id="54c86672-ffe4-4719"></div><div data-webtasks-id="5b419c05-1b8b-4bb2"><div class="xtmWYbJ _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="82d538dd-7739-4f4e"><div class="_2a3b75a1 _297575f4" data-webtasks-id="21f67d3a-e3c4-435b"><div class="+syWHcL AGpOHKn _2a3b75a1" data-webtasks-id="db6f6d65-d7d5-4b98"><img src="https://dcff1xvirvpfp.cloudfront.net/e0bb2b38dfa4453db86eeebe2f5f504b_small.jpg" alt="webtasks.navigator" data-webtasks-id="c9fb85f5-37a9-4fac"></div></div><div class="_2a3b75a1 _509a57b4 _1fb9d90e _8c75067a" data-webtasks-id="ed8cc3e9-6064-4681"><button type="button" data-testid="open-comment-editor-button" data-webtasks-id="1f404f5b-144c-402a">Comment</button></div></div></div></div></div></div><div class="_2a3b75a1 d5d0d34a" data-webtasks-id="0306e281-fd11-4007"><div data-testid="task-details-sidebar" class="vDN8Sum _2a3b75a1 _509a57b4 _1d226e27 f0941ead b75f86cd _078feb3c _1fb9d90e _904ef8fe _10a2f952 a83fb2f5 _4eb1d749" data-webtasks-id="0bf02d79-a08d-4abc"><div class="IGdnSy+ _2a3b75a1 _509a57b4 ad0ccf15 d70b3c17 _1fb9d90e c68f8bf6 _8c75067a" data-webtasks-id="47fee64f-8492-4397"><div role="group" aria-label="Project" class="_2a3b75a1" data-webtasks-id="366424f8-d194-4cbb"><div aria-hidden="true" class="oHQRp5h a83bd4e0 _6a3e5ade _2a3b75a1" data-webtasks-id="9e10a340-fe94-43d9">Project</div><div class="yy6rPNZ" data-webtasks-id="251357dc-d338-4540"><div class="_2a3b75a1 ae9d1115 _96003c07" data-webtasks-id="ad1c0b23-9bae-4b4c"><button aria-label="Select a project" aria-owns="dropdown-select-16-popup" aria-controls="dropdown-select-16-popup" aria-expanded="false" aria-haspopup="listbox" type="button" aria-disabled="true" class="_9KUWmzz _8313bd46 f169a390 _8b7f1a82 _43792df1 _2a3b75a1 _8c75067a" data-webtasks-id="fa588ea1-fc8f-47f0"><div aria-hidden="true" class="a44d4350 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="e184cbce-f7e7-44aa"><svg width="16" height="16" viewBox="0 0 16 16" class="project_icon project_icon_inbox" data-webtasks-id="cf55dff5-0be1-4f07"><g fill="currentColor" data-webtasks-id="8917edae-cff0-48a0"><path d="M13.5 9.5V12a1.5 1.5 0 01-1.5 1.5H4A1.5 1.5 0 012.5 12V9.5h3.75a1.75 1.75 0 003.5 0h3.75z" opacity="0.1" data-webtasks-id="ab913091-5ed7-4718"></path><path d="M10.491 2a2 2 0 011.923 1.45l1.509 5.28a2 2 0 01.077.55V12a2 2 0 01-2 2H4a2 2 0 01-2-2V9.28a2 2 0 01.077-.55l1.509-5.28A2 2 0 015.509 2h4.982zm0 1H5.51a1 1 0 00-.962.725l-1.509 5.28A1 1 0 003 9.28V12a1 1 0 001 1h8a1 1 0 001-1V9.28a1 1 0 00-.038-.275l-1.51-5.28a1 1 0 00-.96-.725zM6.25 9a.5.5 0 01.5.5 1.25 1.25 0 002.5 0 .5.5 0 01.5-.5h1.75a.5.5 0 110 1h-1.306a2.25 2.25 0 01-4.388 0H4.5a.5.5 0 010-1z" data-webtasks-id="413fc481-84a1-42a0"></path></g></svg></div><span class="_0051d171 _2a3b75a1 fff8bff0 f6342c26 _8c75067a" data-webtasks-id="abd1e7e8-7f87-45de"><div class="Iz3tZqW" data-webtasks-id="4ef95a46-9540-425f"><span class="z3lsAU6" data-webtasks-id="2b96ff57-6a18-4e0e">Inbox</span></div></span><div aria-hidden="true" class="_073e1aa4 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="90263a3b-56d8-4a57"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="3c70d6e0-bdf2-4f58"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M16 10l-4 4-4-4" fill="none" fill-rule="evenodd" data-webtasks-id="79e78111-131e-47d6"></path></svg></div></button></div></div></div><hr class="_03b05b70 _2a3b75a1" data-webtasks-id="c17398bc-a869-4960"><div role="group" aria-label="Due date" class="_2a3b75a1" data-webtasks-id="866e4783-4ff0-4d79"><div aria-hidden="true" class="oHQRp5h a83bd4e0 _6a3e5ade _2a3b75a1" data-webtasks-id="5655206f-c81a-44fc">Due date</div><div class="yy6rPNZ" data-webtasks-id="a6caab4f-6d6a-43ef"><div class="Ya1xiF2 _2a3b75a1 _9015266f ae9d1115 _96003c07" data-webtasks-id="5ac3aae6-5355-42ef"><button aria-expanded="false" type="button" aria-disabled="true" tabindex="0" class="_8313bd46 f169a390 _8b7f1a82 _43792df1 _2a3b75a1 _8c75067a" data-webtasks-id="a358ea80-eb04-499d"><div aria-hidden="true" class="a44d4350 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="27abb487-7634-48d2"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" class="task-due-date-button date_future" data-webtasks-id="75b1a19f-f883-43bc"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 2H4a2 2 0 00-2 2v8a2 2 0 002 2h8a2 2 0 002-2V4a2 2 0 00-2-2zM3 4a1 1 0 011-1h8a1 1 0 011 1v8a1 1 0 01-1 1H4a1 1 0 01-1-1V4zm8.5 6.75a.75.75 0 11-1.5 0 .75.75 0 011.5 0zM4.5 5a.5.5 0 000 1h7a.5.5 0 000-1h-7z" fill="currentColor" data-webtasks-id="7a96533b-1adc-4ce6"></path></svg></div><span class="_0051d171 _2a3b75a1 fff8bff0 f6342c26 _8c75067a" data-webtasks-id="6a8f85b8-8e90-43c0">15 Jul</span></button><button aria-label="No Date" type="button" aria-disabled="false" tabindex="0" class="wIZ6xT5 _8313bd46 f169a390 _8b7f1a82 _8644eccb _2a3b75a1" data-webtasks-id="10ec90fc-ff4e-469d"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" aria-hidden="true" data-webtasks-id="705db036-0fdd-4642"><path d="M8.854 8.146L12 11.293l3.146-3.147a.502.502 0 01.708.708L12.707 12l3.147 3.146a.502.502 0 01-.708.708L12 12.707l-3.146 3.147a.502.502 0 01-.708-.708L11.293 12 8.146 8.854a.502.502 0 01.708-.708z" fill="currentColor" fill-rule="nonzero" data-webtasks-id="9ec70248-710a-4f7e"></path></svg></button></div></div></div><hr class="_03b05b70 _2a3b75a1" data-webtasks-id="81fc8fe5-f356-4d83"><div role="group" aria-label="Priority" class="_2a3b75a1" data-webtasks-id="e3e146cf-3db7-45f3"><div aria-hidden="true" class="oHQRp5h a83bd4e0 _6a3e5ade _2a3b75a1" data-webtasks-id="35745d95-fe64-4c07">Priority</div><div class="yy6rPNZ" data-webtasks-id="bd361dad-b9a8-4146"><div class="_2a3b75a1 ae9d1115 _96003c07" data-webtasks-id="10709322-f200-4f37"><button aria-owns="dropdown-select-17-popup" aria-controls="dropdown-select-17-popup" aria-expanded="false" aria-haspopup="listbox" type="button" aria-disabled="true" class="_9KUWmzz _8313bd46 f169a390 _8b7f1a82 _43792df1 _2a3b75a1 _8c75067a" data-webtasks-id="30c06d13-6281-4eff"><div aria-hidden="true" class="a44d4350 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="59cf77fe-fbf6-4852"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" class="Gw1i-E3" data-icon-name="priority-icon" data-priority="2" data-webtasks-id="3c207d87-1d0d-4e85"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.276 2.553A.5.5 0 002 3v10.5a.5.5 0 001 0V9.829c.585-.216 1.42-.329 2.5-.329.765 0 1.265.115 2.342.474 1.173.391 1.757.526 2.658.526 1.404 0 2.475-.178 3.224-.553A.5.5 0 0014 9.5V3a.5.5 0 00-.724-.447C12.692 2.845 11.763 3 10.5 3c-.765 0-1.265-.115-2.342-.474C6.985 2.135 6.401 2 5.5 2c-1.404 0-2.475.179-3.224.553z" fill="currentColor" data-webtasks-id="2d435fd1-44fe-40a1"></path></svg></div><span class="_0051d171 _2a3b75a1 fff8bff0 f6342c26 _8c75067a" data-webtasks-id="804f27a3-44e8-4aae">P2</span><div aria-hidden="true" class="_073e1aa4 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="a27cc177-a031-426e"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="e3f34ca9-98ea-43e4"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M16 10l-4 4-4-4" fill="none" fill-rule="evenodd" data-webtasks-id="d9a3f380-d7f9-431f"></path></svg></div></button></div></div></div><hr class="_03b05b70 _2a3b75a1" data-webtasks-id="c7d63008-7940-44f5"><div class="_2a3b75a1 _509a57b4 _1fb9d90e _2580a74b _8c75067a" data-webtasks-id="0a8a9a1e-3812-4b46"><div class="_2a3b75a1 ae9d1115 _96003c07" data-webtasks-id="ea75c1f0-0df9-4cc7"><button aria-owns="dropdown-select-18-popup" aria-controls="dropdown-select-18-popup" aria-expanded="false" aria-haspopup="listbox" type="button" aria-disabled="true" class="_8313bd46 f169a390 _8b7f1a82 _43792df1 _2a3b75a1 _8c75067a" data-webtasks-id="5da2a061-fd11-4c84"><span class="_0051d171 _2a3b75a1 fff8bff0 f6342c26 _8c75067a" data-webtasks-id="9fc0134e-e09c-4d06">Labels</span><div aria-hidden="true" class="_073e1aa4 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="598c89a6-964a-4827"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="b92af726-7e51-4bf7"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 6a.462.462 0 00-.461.462v5.077H6.462a.462.462 0 100 .922h5.077v5.077a.461.461 0 10.922 0v-5.077h5.077a.461.461 0 100-.922h-5.077V6.462A.462.462 0 0012 6z" fill="currentColor" data-webtasks-id="6be38770-4936-4398"></path></svg></div></button></div></div><hr class="_03b05b70 _2a3b75a1" data-webtasks-id="f458152b-68b3-4554"><div class="_2a3b75a1" data-webtasks-id="0e8fe52f-a623-4ea6"><div data-webtasks-id="ffcee138-dcdc-41c7"><div class="_2a3b75a1 ae9d1115 _96003c07" data-webtasks-id="8429d4fc-a8cb-4519"><button tabindex="0" type="button" aria-disabled="true" class="_8313bd46 f169a390 _8b7f1a82 _43792df1 _2a3b75a1 _8c75067a" data-webtasks-id="db319b8b-f1b0-4e35"><span class="_0051d171 _2a3b75a1 fff8bff0 f6342c26 _8c75067a" data-webtasks-id="dbcc21e9-6cc1-4312"><div class="_2a3b75a1 _509a57b4 e5a9206f _50ba6b6b _2580a74b" data-webtasks-id="121b2024-b08e-4329"><div class="oHQRp5h a83bd4e0 _6a3e5ade _2a3b75a1" data-webtasks-id="d031cc21-772f-4386">Reminders</div><div class="_2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="371f5e2c-fa93-48d9"><span class="_7957de66 a6d2daa2 _2a3b75a1 _4a786bb9" data-webtasks-id="2fd0a135-2468-40fd">Pro</span></div></div></span><div aria-hidden="true" class="_073e1aa4 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="c7affb63-dff9-4cfd"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="7df5c37e-f14a-4106"><path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M15 6.995V9H9V6.995C9 5.895 9.9 5 11.01 5h1.988C14.102 5 15 5.897 15 6.995zM8 9V6.995A3.003 3.003 0 0111.01 4h1.988A3.002 3.002 0 0116 6.995V9h.994C18.102 9 19 9.887 19 11v6c0 1.105-.897 2-2.006 2H7.006A1.998 1.998 0 015 17v-6c0-1.105.897-2 2.006-2H8zm-2 2v6c0 .556.446 1 1.006 1h9.988c.557 0 1.006-.448 1.006-1v-6c0-.556-.446-1-1.006-1H7.006C6.449 10 6 10.448 6 11zm4 3a2 2 0 104 0 2 2 0 00-4 0zm2 1a1 1 0 100-2 1 1 0 000 2z" data-webtasks-id="ec55cdc3-4411-4cba"></path></svg></div></button></div></div></div><hr class="_03b05b70 _2a3b75a1" data-webtasks-id="20763ae6-44f1-4f8d"><div data-item-actions-root="" data-item-id="7016181924" data-item-content="Sales Presentation Preparation" data-item-project-id="2315339881" data-item-project-name="Inbox" data-webtasks-id="dbc19683-1283-41ec"></div></div></div></div></div></div></div><div data-focus-guard="true" tabindex="0" data-webtasks-id="deac0714-f332-46b1" style="width: 1px; height: 0px; padding: 0px; overflow: hidden; position: fixed; top: 1px; left: 1px;"></div></div></div></div><div data-tippy-root="" id="tippy-17" data-webtasks-id="0bcefe93-ca18-4fe2" style="z-index: 10006; visibility: visible; position: absolute; inset: auto auto 0px 0px; margin: 0px; transform: translate(358px, -559px);"><div class="tippy-box" data-state="visible" tabindex="-1" data-animation="fade" role="tooltip" data-placement="top" data-webtasks-id="6d6f0261-515a-4bc5" style="max-width: 350px; transition-duration: 250ms;"><div class="tippy-content" data-state="visible" style="transition-duration: 250ms;" data-webtasks-id="a33e54be-9df9-49e1"><div data-webtasks-id="58957518-d478-4237"><div data-testid="formattingToolbarPopover" class="eQEgPsq" data-webtasks-id="24cac161-edad-45b2"><button aria-label="Bold" aria-pressed="false" tabindex="0" type="button" aria-disabled="false" class="_8313bd46 _907a61ca _5e45d59f _8644eccb _2a3b75a1" data-webtasks-id="f44914bb-3f3d-4991"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="fa29140d-b904-4ff3"><path d="M8.573 18h3.958c2.561 0 4.117-1.297 4.117-3.41 0-1.588-1.14-2.76-2.77-2.918v-.067c1.231-.2 2.188-1.322 2.188-2.611C16.066 7.173 14.66 6 12.48 6H8.573C7.907 6 7.5 6.416 7.5 7.114v9.772c0 .698.407 1.114 1.073 1.114zm1.073-6.944V7.672h2.295c1.28 0 2.004.59 2.004 1.638 0 1.114-.84 1.746-2.337 1.746H9.646zm0 5.272v-3.75h2.303c1.647 0 2.511.64 2.511 1.863 0 1.23-.84 1.887-2.42 1.887H9.646z" fill="currentColor" data-webtasks-id="f0095cd8-d38f-4bcb"></path></svg></button><button aria-label="Italic" aria-pressed="false" tabindex="0" type="button" aria-disabled="false" class="_8313bd46 _907a61ca _5e45d59f _8644eccb _2a3b75a1" data-webtasks-id="e286bad3-02db-4509"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="39730d26-19d2-4756"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.5 6.5A.5.5 0 0111 6h5a.5.5 0 010 1h-1.717l-3 10H13a.5.5 0 110 1H8a.5.5 0 010-1h1.717l3-10H11a.5.5 0 01-.5-.5z" fill="currentColor" data-webtasks-id="95a5940c-dba0-4b54"></path></svg></button><button aria-label="Code" aria-pressed="false" tabindex="0" type="button" aria-disabled="false" class="_8313bd46 _907a61ca _5e45d59f _8644eccb _2a3b75a1" data-webtasks-id="1e185945-3ca9-41f3"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="0f584d0f-d7c1-4ea5"><path fill-rule="evenodd" clip-rule="evenodd" d="M13.987 5.612a.5.5 0 00-.974-.224l-3 13a.5.5 0 00.974.224l3-13zM8.354 8.146a.5.5 0 010 .708L5.207 12l3.147 3.146a.5.5 0 11-.708.707l-3.5-3.5a.5.5 0 010-.707l3.5-3.5a.5.5 0 01.708 0zm7.292 7.707a.5.5 0 010-.707L18.793 12l-3.147-3.146a.5.5 0 01.708-.708l3.5 3.5a.5.5 0 010 .707l-3.5 3.5a.5.5 0 01-.708 0z" fill="currentColor" data-webtasks-id="bd92a680-63f4-4cf8"></path></svg></button><div class="RlqfWUT _2a3b75a1" data-webtasks-id="d1847ab5-61e7-4ad4"><button aria-label="Add link" aria-pressed="false" tabindex="0" type="button" aria-disabled="false" class="_7z-i0ld _8313bd46 _907a61ca _5e45d59f _2a3b75a1 _56a651f6" data-webtasks-id="6ec53428-6bc5-4732"><div aria-hidden="true" class="a44d4350 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="5ab25d5d-66e1-4abd"><svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="bf36bdb9-6c7c-43bf"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.096 13.046l-.707-.707-1.768 1.768a3 3 0 104.243 4.242l3.535-3.535a3 3 0 000-4.243l-.707.707a2 2 0 010 2.829l-3.535 3.535a2 2 0 11-2.829-2.828l1.768-1.768zm7.425-1.768l.707.707 1.768-1.768a3 3 0 10-4.243-4.242L10.217 9.51a3 3 0 000 4.243l.708-.707a2 2 0 010-2.829l3.535-3.535a2 2 0 112.83 2.828l-1.768 1.768z" data-webtasks-id="45ce98a2-928a-45e0"></path></svg></div><span class="_0051d171 _2a3b75a1 f973eed0 f6342c26" data-webtasks-id="79604286-a6cf-441f">Link</span></button></div></div></div></div><div class="tippy-arrow" style="position: absolute; left: 0px; transform: translate(83px, 0px);" data-webtasks-id="c09b3152-b4b8-41aa"></div></div></div></body> |