|
<head data-webtasks-id="152ba53b-6168-4b42"><title data-webtasks-id="9acd1c0a-61fb-4107">Filters & Labels: 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></head><body data-webtasks-id="164c066c-ba86-48a8" data-dialog-body-scroll=":r9:" style="overflow: hidden; padding-right: 0px;"><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="current"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== DebMdpIqKcFRpFpVm5-wrA== _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="E5xyjgm--WSwuGrfy9fIcw==" data-webtasks-id="b2090502-8276-4a1d" style="--view-header-height: 70px;"><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 _2a3b75a1 _33dfbd8e" data-webtasks-id="bbe8b9f3-62a4-4188"><div class="view_header__content" data-webtasks-id="3f0d89ce-a9a8-42e3"><div class="_2a3b75a1 _9015266f" data-webtasks-id="0e6aae42-c783-4104"><h1 data-webtasks-id="a1d69f50-ff66-4cb3"><span class="simple_content" data-webtasks-id="26ccdb84-3518-4f7c">Filters & Labels</span></h1></div></div></header><div class="view_content" data-webtasks-id="9aae5f12-3d80-45ea"><section class="section Cb0FCGexh25XafKSpWymIg==" aria-label="Filters" data-webtasks-id="426850a0-a9bf-470a"><header id=":r6:" data-webtasks-id="4a2665ae-f2d4-427e"><div class="section_head__overflow_actions" data-webtasks-id="0b76a244-c7cc-4b5b"><div class="collapser collapser_alone" data-testid="section_collapser" data-webtasks-id="05929202-52db-4da8"><svg width="24" height="24" data-webtasks-id="ad345b2d-c96c-43b2"><path fill="none" stroke="currentColor" d="M16 10l-4 4-4-4" data-webtasks-id="518fc7f4-eaf7-4dcd"></path></svg></div></div><h2 data-webtasks-id="0565eb01-f8e9-484d"><div class="_2a3b75a1 _509a57b4 e5a9206f _55ef2d4e c68f8bf6" data-webtasks-id="8af0e147-5f00-4edc"><span data-webtasks-id="61e48dc4-7615-4503">Filters</span><span class="_7957de66 c6106b8c _2a3b75a1 _4a786bb9" data-webtasks-id="3c0cbdd2-8a73-44fa">Used: 2/3</span></div></h2><div class="section_head__actions" data-webtasks-id="e3c38e2b-4cd4-422b"><button aria-label="Add new filter" tabindex="0" type="button" aria-disabled="false" class="section_head_menu _8313bd46 f169a390 _8b7f1a82 _8644eccb _2a3b75a1" data-webtasks-id="49bb2770-623a-4316"><svg width="13" height="13" data-webtasks-id="e9367635-8a9b-4e74"><path d="M6 6V.5a.5.5 0 011 0V6h5.5a.5.5 0 110 1H7v5.5a.5.5 0 11-1 0V7H.5a.5.5 0 010-1H6z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="fde9c38b-4452-4458"></path></svg></button></div></header><ul class="items generic_left_list" aria-label="Filters" data-webtasks-id="e2bff0c9-47f4-4ee5"><li data-focusable="true" class="rvXkDS5xVU90YoI8fpsN8A==" data-draggable="" draggable="true" data-webtasks-id="a19e782f-7ba0-4d70"><a class="SidebarListItem new_sidebar_design" href="/app/filter/2339312997" data-webtasks-id="4223b865-179f-4643"><span class="SidebarListItem__icon" data-webtasks-id="df365b0f-8330-41a7" style="color: rgb(128, 128, 128);"><svg width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="5ef25026-0bf9-4353"><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="8e363c8e-1d52-4745"></path></svg></span><span class="SidebarListItem__content" data-webtasks-id="18f60cb2-f9e9-456f"><span tabindex="0" data-webtasks-id="aa398b03-1f9c-44d0"><span class="simple_content" data-webtasks-id="3950f3f7-cdcb-4cf1">Important Tasks</span></span><div aria-label="7 tasks" class="counter_count" data-webtasks-id="61a02d05-c476-42bf">7</div></span><span class="SidebarListItem__actions" data-webtasks-id="a4761f37-23c2-4733"><button type="button" aria-label="Remove from favorites" tabindex="0" data-webtasks-id="9e79da9d-072b-4930"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="dd2e9e80-5ab7-40fd"><path fill-rule="evenodd" clip-rule="evenodd" d="M20.354 19.854a.5.5 0 000-.708l-16-16a.5.5 0 10-.708.708l16 16a.5.5 0 00.708 0zM20.5 8.75c0 2.344-1.065 4.308-2.86 6.27l-.708-.71c1.891-2.033 2.568-3.615 2.568-5.56A3.75 3.75 0 0015.75 5c-1.019 0-2.008.528-2.997 1.659l-.753.86-.753-.86C10.257 5.527 9.27 5 8.25 5c-.198 0-.393.015-.584.045l-.83-.83C7.281 4.074 7.756 4 8.25 4c1.333 0 2.583.667 3.75 2 1.167-1.333 2.417-2 3.75-2a4.75 4.75 0 014.75 4.75zm-16 0c0-.749.22-1.446.597-2.031l-.72-.72A4.728 4.728 0 003.5 8.75C3.5 13 7 16 12 20c1.27-1.016 2.443-1.968 3.487-2.892l-.718-.718A81.646 81.646 0 0112 18.717C6.253 14.069 4.5 11.88 4.5 8.75z" fill="currentColor" data-webtasks-id="8e21743a-ab7f-4b6c"></path></svg></button><button type="button" aria-label="Edit filter" tabindex="0" data-webtasks-id="fcb0540c-4129-4cec"><svg width="24" height="24" data-webtasks-id="1564db9e-26c9-426e"><g fill="none" fill-rule="evenodd" data-webtasks-id="d9206c93-a92a-4344"><path fill="currentColor" d="M9.5 19h10a.5.5 0 110 1h-10a.5.5 0 110-1z" data-webtasks-id="9f836410-dd9c-48c2"></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="119add7c-21d9-440b"></path></g></svg></button></span><button type="button" aria-label="More filter actions" class="SidebarListItem__button" tabindex="0" data-webtasks-id="8cec3a0d-1ff5-445b"><svg width="15" height="3" data-webtasks-id="68f77a8e-e6d6-4f50"><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="1b25f05b-bf9a-4af7"></path></svg></button></a></li><li data-focusable="true" class="rvXkDS5xVU90YoI8fpsN8A==" data-draggable="" draggable="true" data-webtasks-id="0e545da7-21e9-4046"><a class="SidebarListItem new_sidebar_design" href="/app/filter/2339261184" data-webtasks-id="cbcbdd11-fdb2-4982"><span class="SidebarListItem__icon" data-webtasks-id="6db49f31-1816-4979" style="color: rgb(128, 128, 128);"><svg width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="f6b4ada5-5c98-4d2f"><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="d86caa74-9228-41cb"></path></svg></span><span class="SidebarListItem__content" data-webtasks-id="7ee3680d-fec9-41e5"><span tabindex="0" data-webtasks-id="dc1814fa-dae0-4d37"><span class="simple_content" data-webtasks-id="e9d254c4-8358-499a">Assigned to me</span></span></span><span class="SidebarListItem__actions" data-webtasks-id="c7e59634-be68-45ec"><button type="button" aria-label="Add to favorites" tabindex="0" data-webtasks-id="b0a8da2a-adcd-4cb2"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="b2738ca9-6e7a-451f"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.5 8.75C3.5 13 7 16 12 20c5-4 8.5-7 8.5-11.25A4.75 4.75 0 0015.75 4c-1.333 0-2.583.667-3.75 2-1.167-1.333-2.417-2-3.75-2A4.75 4.75 0 003.5 8.75zM15.75 5a3.75 3.75 0 013.75 3.75c0 3.13-1.753 5.32-7.5 9.967-5.747-4.648-7.5-6.837-7.5-9.967A3.75 3.75 0 018.25 5c1.019 0 2.008.528 2.997 1.659l.753.86.753-.86C13.743 5.527 14.73 5 15.75 5z" fill="currentColor" data-webtasks-id="8732fe75-eea2-4fe4"></path></svg></button><button type="button" aria-label="Edit filter" tabindex="0" data-webtasks-id="d4daf53d-c509-4772"><svg width="24" height="24" data-webtasks-id="a6354092-bbe6-4b5a"><g fill="none" fill-rule="evenodd" data-webtasks-id="32909fe6-6318-454e"><path fill="currentColor" d="M9.5 19h10a.5.5 0 110 1h-10a.5.5 0 110-1z" data-webtasks-id="a7ee589e-f211-4716"></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="81e881bf-256e-4bdf"></path></g></svg></button></span><button type="button" aria-label="More filter actions" class="SidebarListItem__button" tabindex="0" data-webtasks-id="bf6051a5-ac20-4aee"><svg width="15" height="3" data-webtasks-id="35e61996-c573-4690"><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="67f6cadb-3839-4e37"></path></svg></button></a></li></ul></section><section class="section" aria-label="Labels" data-webtasks-id="5c182d9b-e794-40b8"><header id=":r7:" data-webtasks-id="ae1038d7-177b-461e"><div class="section_head__overflow_actions" data-webtasks-id="41e4f9cc-cd6a-4dad"><div class="collapser collapser_alone" data-testid="section_collapser" data-webtasks-id="ae7a6442-449e-4d3d"><svg width="24" height="24" data-webtasks-id="3b3acde2-942f-4fb4"><path fill="none" stroke="currentColor" d="M16 10l-4 4-4-4" data-webtasks-id="1d8433e5-6f2c-4a73"></path></svg></div></div><h2 data-webtasks-id="21512f49-bdb9-4772"><div class="_2a3b75a1 _509a57b4 e5a9206f _55ef2d4e c68f8bf6" data-webtasks-id="88435789-db6b-4043"><span data-webtasks-id="7c672bcb-4c89-4b8d">Labels</span></div></h2><div class="section_head__actions" data-webtasks-id="157605e6-c5db-44e1"><button aria-label="Add new label" tabindex="0" type="button" aria-disabled="false" class="section_head_menu _8313bd46 f169a390 _8b7f1a82 _8644eccb _2a3b75a1" data-webtasks-id="de511c94-6d08-4e91"><svg width="13" height="13" data-webtasks-id="7196d189-993e-46de"><path d="M6 6V.5a.5.5 0 011 0V6h5.5a.5.5 0 110 1H7v5.5a.5.5 0 11-1 0V7H.5a.5.5 0 010-1H6z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="bc16e3cb-04c6-4d34"></path></svg></button></div></header><ul class="items generic_left_list" aria-label="Labels" data-webtasks-id="1065acf7-0b07-4a96"><li data-focusable="true" class="rvXkDS5xVU90YoI8fpsN8A==" data-draggable="" draggable="true" data-webtasks-id="932cd8ed-cb36-47ca"><a class="SidebarListItem new_sidebar_design" href="/app/label/2167512700" data-webtasks-id="76b001fd-81f1-45b7"><span class="SidebarListItem__icon" data-webtasks-id="a97ac696-0726-452d" style="color: rgb(219, 64, 53);"><svg width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="d1da16e2-f71b-45fe"><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="70e9c417-5025-41f5"></path></svg></span><span class="SidebarListItem__content" data-webtasks-id="090668a9-f76b-4ceb"><span tabindex="0" data-webtasks-id="fa81670d-e709-4cef"><span class="simple_content" data-webtasks-id="c55b3da9-9fe8-410a">Department/Team</span></span><div aria-label="3 tasks" class="counter_count" data-webtasks-id="27fa114e-2779-4a57">3</div></span><span class="SidebarListItem__actions" data-webtasks-id="071d4823-c35a-4200"><button type="button" aria-label="Add to favorites" tabindex="0" data-webtasks-id="1edb4b07-9bac-41d3"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="4dd341db-c735-4338"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.5 8.75C3.5 13 7 16 12 20c5-4 8.5-7 8.5-11.25A4.75 4.75 0 0015.75 4c-1.333 0-2.583.667-3.75 2-1.167-1.333-2.417-2-3.75-2A4.75 4.75 0 003.5 8.75zM15.75 5a3.75 3.75 0 013.75 3.75c0 3.13-1.753 5.32-7.5 9.967-5.747-4.648-7.5-6.837-7.5-9.967A3.75 3.75 0 018.25 5c1.019 0 2.008.528 2.997 1.659l.753.86.753-.86C13.743 5.527 14.73 5 15.75 5z" fill="currentColor" data-webtasks-id="7131d10b-bbf8-4ad3"></path></svg></button><button type="button" aria-label="Edit label" tabindex="0" data-webtasks-id="4ab9d80a-6ee2-4387"><svg width="24" height="24" data-webtasks-id="5c8012b4-351e-441c"><g fill="none" fill-rule="evenodd" data-webtasks-id="3768ca16-c7d1-4f0f"><path fill="currentColor" d="M9.5 19h10a.5.5 0 110 1h-10a.5.5 0 110-1z" data-webtasks-id="104383fa-3d14-400d"></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="108e7060-3876-4b19"></path></g></svg></button></span><button type="button" aria-label="More label actions" class="SidebarListItem__button" tabindex="0" data-webtasks-id="08e2e96d-245f-4f90"><svg width="15" height="3" data-webtasks-id="1db6a1fa-79c8-4777"><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="a38f7cdc-495e-4d7e"></path></svg></button></a></li><li data-focusable="true" class="rvXkDS5xVU90YoI8fpsN8A==" data-draggable="" draggable="true" data-webtasks-id="c8751ec0-e2ae-42b8"><a class="SidebarListItem new_sidebar_design" href="/app/label/2167512163" data-webtasks-id="fc927333-0753-46bf"><span class="SidebarListItem__icon" data-webtasks-id="1b9e53b2-1d9b-452e" style="color: rgb(64, 115, 255);"><svg width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="28c78c6c-0381-42af"><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="6543eb28-312e-4b22"></path></svg></span><span class="SidebarListItem__content" data-webtasks-id="5440181e-9672-41e8"><span tabindex="0" data-webtasks-id="a0f74a13-d2d7-4521"><span class="simple_content" data-webtasks-id="63b9cbcb-5eb3-4c6f">Task Type</span></span><div aria-label="4 tasks" class="counter_count" data-webtasks-id="818ecf61-6cec-4ce2">4</div></span><span class="SidebarListItem__actions" data-webtasks-id="e489eec8-6ccb-4b63"><button type="button" aria-label="Remove from favorites" tabindex="0" data-webtasks-id="ebcf87d1-97b8-4693"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="c4284546-f3c0-4159"><path fill-rule="evenodd" clip-rule="evenodd" d="M20.354 19.854a.5.5 0 000-.708l-16-16a.5.5 0 10-.708.708l16 16a.5.5 0 00.708 0zM20.5 8.75c0 2.344-1.065 4.308-2.86 6.27l-.708-.71c1.891-2.033 2.568-3.615 2.568-5.56A3.75 3.75 0 0015.75 5c-1.019 0-2.008.528-2.997 1.659l-.753.86-.753-.86C10.257 5.527 9.27 5 8.25 5c-.198 0-.393.015-.584.045l-.83-.83C7.281 4.074 7.756 4 8.25 4c1.333 0 2.583.667 3.75 2 1.167-1.333 2.417-2 3.75-2a4.75 4.75 0 014.75 4.75zm-16 0c0-.749.22-1.446.597-2.031l-.72-.72A4.728 4.728 0 003.5 8.75C3.5 13 7 16 12 20c1.27-1.016 2.443-1.968 3.487-2.892l-.718-.718A81.646 81.646 0 0112 18.717C6.253 14.069 4.5 11.88 4.5 8.75z" fill="currentColor" data-webtasks-id="9a2f946a-977b-4a37"></path></svg></button><button type="button" aria-label="Edit label" tabindex="0" data-webtasks-id="6ac61233-6917-435a"><svg width="24" height="24" data-webtasks-id="75b151ff-3387-4336"><g fill="none" fill-rule="evenodd" data-webtasks-id="f1ad9bf6-e03d-4ae8"><path fill="currentColor" d="M9.5 19h10a.5.5 0 110 1h-10a.5.5 0 110-1z" data-webtasks-id="e3267392-0ea7-4f19"></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="dc385a60-5bc5-4f4f"></path></g></svg></button></span><button type="button" aria-label="More label actions" class="SidebarListItem__button" tabindex="0" data-webtasks-id="2b3a1b70-7f43-40cc"><svg width="15" height="3" data-webtasks-id="ab430738-eed4-46b4"><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="e41be2c8-2ff7-48d9"></path></svg></button></a></li><li data-focusable="true" class="rvXkDS5xVU90YoI8fpsN8A==" data-draggable="" draggable="true" data-webtasks-id="2dcca6c5-5f25-40e8"><a class="SidebarListItem new_sidebar_design" href="/app/label/2167486659" data-webtasks-id="d0d8799b-e80e-4e50"><span class="SidebarListItem__icon" data-webtasks-id="c85bc93f-1297-41c5" style="color: rgb(64, 115, 255);"><svg width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="e0e157f8-0f2e-4c13"><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="2f1661da-aeb5-4a5e"></path></svg></span><span class="SidebarListItem__content" data-webtasks-id="28b95342-b902-43a5"><span tabindex="0" data-webtasks-id="78a6590d-e6b3-4aea"><span class="simple_content" data-webtasks-id="0d2e7518-1ac7-458d">Status</span></span></span><span class="SidebarListItem__actions" data-webtasks-id="014dcf3b-a339-45fc"><button type="button" aria-label="Remove from favorites" tabindex="0" data-webtasks-id="3c628db3-6245-4c23"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="5bc975b3-10a1-4cdc"><path fill-rule="evenodd" clip-rule="evenodd" d="M20.354 19.854a.5.5 0 000-.708l-16-16a.5.5 0 10-.708.708l16 16a.5.5 0 00.708 0zM20.5 8.75c0 2.344-1.065 4.308-2.86 6.27l-.708-.71c1.891-2.033 2.568-3.615 2.568-5.56A3.75 3.75 0 0015.75 5c-1.019 0-2.008.528-2.997 1.659l-.753.86-.753-.86C10.257 5.527 9.27 5 8.25 5c-.198 0-.393.015-.584.045l-.83-.83C7.281 4.074 7.756 4 8.25 4c1.333 0 2.583.667 3.75 2 1.167-1.333 2.417-2 3.75-2a4.75 4.75 0 014.75 4.75zm-16 0c0-.749.22-1.446.597-2.031l-.72-.72A4.728 4.728 0 003.5 8.75C3.5 13 7 16 12 20c1.27-1.016 2.443-1.968 3.487-2.892l-.718-.718A81.646 81.646 0 0112 18.717C6.253 14.069 4.5 11.88 4.5 8.75z" fill="currentColor" data-webtasks-id="80dd7d4b-1f9f-47ff"></path></svg></button><button type="button" aria-label="Edit label" tabindex="0" data-webtasks-id="341d0d15-d98e-4462"><svg width="24" height="24" data-webtasks-id="5ea7df4e-d188-45f9"><g fill="none" fill-rule="evenodd" data-webtasks-id="31780274-c689-4387"><path fill="currentColor" d="M9.5 19h10a.5.5 0 110 1h-10a.5.5 0 110-1z" data-webtasks-id="a808fea9-74b3-4c46"></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="35c5625a-1559-4b7e"></path></g></svg></button></span><button type="button" aria-label="More label actions" class="SidebarListItem__button" tabindex="0" data-webtasks-id="047503b7-4686-43b7"><svg width="15" height="3" data-webtasks-id="2fc91c94-9e27-47c3"><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="5327cae6-178b-4556"></path></svg></button></a></li></ul></section></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-aria-hidden="true" aria-hidden="true" data-webtasks-id="e999b34e-799a-47c8"></div><div id="id-kanfqn" data-webtasks-id="f3af13d1-3e7b-4126"><div data-webtasks-id="80bc5ee8-c6b3-40b6"><div data-testid="modal-overlay" data-overlay="true" class="_8aa86dd3 _713bc08f aee19643 _2a3b75a1" data-webtasks-id="0ada1d92-2b11-43f4"><div data-focus-guard="true" tabindex="0" data-webtasks-id="db22fc7a-a8f7-404f" 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="8dfd85f6-a78a-4941"><div id=":r9:" data-dialog="" role="dialog" tabindex="-1" class="focus-marker-enabled-within _45139719 _2a3b75a1 _509a57b4 _1fb9d90e d8ff7933 f6342c26 d85cf739 _5fe4d5e3" data-webtasks-id="2f8a12dd-429a-47df"><header class="_2a3b75a1 _4e9ab24b ad0ccf15 _9510d053 _078feb3c" data-webtasks-id="83ba9799-97ee-4fc8"><div class="eae3d34f _1cf15621 _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b _985b733f _966b120f" data-webtasks-id="140e3919-4008-4624"><div class="_9dd31975 _2a3b75a1 _68ab48ca _4a93668a a83fb2f5" data-webtasks-id="114a41ef-3555-494f"><h1 class="_71a1610c _2a3b75a1" data-webtasks-id="e95b233b-e4d4-4cd4">Add filter</h1></div><div data-testid="button-container" class="_49ffdac0 _4bb9987d _2a3b75a1 _68ab48ca d5d0d34a d8ff7933 a83fb2f5" data-webtasks-id="855dc792-0d68-40ff"><a href="https://todoist.com/help/articles/205248842" rel="noopener noreferrer" target="_blank" tabindex="0" data-webtasks-id="07881219-5bc7-4429"><svg width="24" height="24" data-webtasks-id="d8331179-52ef-44d7"><g fill="none" fill-rule="evenodd" data-webtasks-id="284dd101-f749-4536"><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="da9bbd8e-6bed-4e7b"></path><circle cx="12" cy="12" r="7.5" stroke="currentColor" data-webtasks-id="f99ca99d-5c98-41ae"></circle></g></svg></a></div></div></header><form class="edit_project_modal__form" data-testid="form" data-webtasks-id="227b6051-377c-4491"><div class="_2a3b75a1 d8ff7933 _10a2f952" data-webtasks-id="353996d8-48c3-4869"><div class="_2a3b75a1 eb6097f1 f0941ead _33e3ad63 _078feb3c" data-webtasks-id="43a44410-02d7-41ef"><div class="_2a3b75a1 _33dfbd8e" data-webtasks-id="f33f6cf7-ea6d-44e0"><div data-testid="filters-assist-banner" id="+J7rXhE" role="status" aria-labelledby="element-0" aria-describedby="element-1" aria-live="polite" tabindex="0" class="c1dffd60 _9d552538 _2a3b75a1 _34cd2b5e" data-webtasks-id="fae70f8d-234d-495f"><div class="eae3d34f _0703e67f _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b _985b733f _43e5f8e9" data-webtasks-id="4a37317a-b622-4f97"><div aria-hidden="true" class="_4bb9987d _2a3b75a1 _68ab48ca d5d0d34a d8ff7933 a83fb2f5" data-webtasks-id="08e2c1a1-f0dd-40fd" style="line-height: 0;"><svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="48705ff3-906b-43c1"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.522 3.062l-.196.638a2 2 0 01-1.084 1.236l-.24.109a.5.5 0 000 .91l.24.11A2 2 0 018.326 7.3l.196.638a.5.5 0 00.956 0l.196-.638a2 2 0 011.084-1.236l.24-.109a.5.5 0 000-.91l-.24-.11A2 2 0 019.674 3.7l-.196-.638a.5.5 0 00-.956 0zm10.548 8.106a5 5 0 01-2.61-2.79l-.805-2.137a.7.7 0 00-1.31 0l-.804 2.136a5 5 0 01-2.61 2.791l-1.53.695a.7.7 0 000 1.274l1.53.695a5 5 0 012.61 2.79l.804 2.137a.7.7 0 001.31 0l.804-2.136a5 5 0 012.61-2.791l1.529-.695a.7.7 0 000-1.274l-1.528-.695zm-13.01 5.4l.485-1.067a.5.5 0 01.91 0l.485 1.066a2 2 0 00.993.993l1.066.485a.5.5 0 010 .91l-1.066.485a2 2 0 00-.993.993l-.485 1.066a.5.5 0 01-.91 0l-.485-1.066a2 2 0 00-.993-.993l-1.066-.485a.5.5 0 010-.91l1.066-.485a2 2 0 00.993-.993z" fill="#B8255F" data-webtasks-id="0ea06b54-c3ab-4105"></path></svg></div><div class="_9dd31975 _2a3b75a1 _68ab48ca _4a93668a a83fb2f5" data-webtasks-id="6732b9cc-fa58-48ce"><div class="_2a3b75a1 c4803194 b0e6eab4" data-webtasks-id="ae1792c1-d8c7-49d2"><div id="element-0" class="_8cd610da _319c73fa _2a3b75a1" data-webtasks-id="898febb5-d726-4cac">Filter Assist</div><div id="element-1" class="af4bd758 b95a8c07 _2a3b75a1" data-webtasks-id="6a824716-1be8-4da4"><div class="a83bd4e0 _266d6623 _6a3e5ade _2a3b75a1" data-webtasks-id="fbf33b92-abde-4f2f">Create powerful filters using our latest <br data-webtasks-id="6487fe74-c187-4d61"> AI Assistant.</div></div></div></div><div class="_4bb9987d _2a3b75a1 _68ab48ca d5d0d34a d8ff7933 a83fb2f5" data-webtasks-id="26533d8e-58c0-4e6d"><button data-gtm-id="filter-assist-banner" type="button" aria-disabled="false" class="_8313bd46 _7a4dbd5f _5e45d59f _2a3b75a1 _56a651f6" data-webtasks-id="6ad9010c-a667-4adf"><span class="_0051d171 _2a3b75a1 f973eed0 f6342c26" data-webtasks-id="79163f08-af7e-46b4">Try it</span></button></div></div></div></div><div class="p1yHr50 _2a3b75a1 _509a57b4 _1fb9d90e _966b120f _8c75067a" data-webtasks-id="1ffaa25b-c2b3-4d04"><div class="x71J3-G _2a3b75a1" data-webtasks-id="bbcac50b-1b6b-45b5"><div class="_2a3b75a1 _509a57b4 _1fb9d90e c68f8bf6 _8c75067a" data-webtasks-id="a0831b3b-517f-4d8f"><div class="_2e189908 _2a3b75a1" data-webtasks-id="b998f78b-1961-4320"><span class="_2a3b75a1 _509a57b4 e5a9206f _3963f790 _904ef8fe" data-webtasks-id="a8113598-118d-48ff"><label for="element-2" class="a83bd4e0 _2a3b75a1" data-webtasks-id="0a42976a-f9c3-4b71"><span class="_75e0afa0" data-webtasks-id="68e60a10-586e-4c23">Name</span></label><div class="_83051e0a _2a3b75a1 d70b3c17" data-webtasks-id="4efd70cd-a858-4c9e"></div></span><div class="_6c84b26d _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="4e9fb7ca-18f8-42ff"><input name="name" maxlength="60" id="element-2" aria-describedby="element-3" type="text" value="Tomorrow tasks" data-webtasks-id="c9751ca2-5984-4023" data-event-id="7" listener="false"></div></div></div></div><div class="x71J3-G _2a3b75a1" data-webtasks-id="51f51271-7926-4603"><div class="_2a3b75a1 _509a57b4 _1fb9d90e c68f8bf6 _8c75067a" data-webtasks-id="5264529e-27ed-4f49"><div class="_2e189908 _2a3b75a1" data-webtasks-id="9ae5d5f7-1279-4de3"><span class="_2a3b75a1 _509a57b4 e5a9206f _3963f790 _904ef8fe" data-webtasks-id="bf223c4c-ab6e-4ee1"><label for="element-5" class="a83bd4e0 _2a3b75a1" data-webtasks-id="679d16a1-9bf4-4507"><span class="_75e0afa0" data-webtasks-id="d9543f64-b227-40f2">Query</span></label><div class="_83051e0a _2a3b75a1 d70b3c17" data-webtasks-id="0b94e382-16ed-4f3d"></div></span><div class="_6c84b26d _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="3aa143f3-11c8-4c79"><input name="query" maxlength="1024" id="element-5" aria-describedby="element-6" type="text" value="" data-webtasks-id="c5a4b301-e93c-4950"></div></div></div></div><div class="jwGjLpi _2a3b75a1" data-webtasks-id="28816d18-0e27-42d7"><label for="fieldColor" class="a83bd4e0 e214ff2e _2a3b75a1" data-webtasks-id="f683fbb0-c4cb-433a">Color</label><button type="button" id="fieldColor" aria-owns="dropdown-select-0-popup" aria-controls="dropdown-select-0-popup" aria-expanded="false" aria-haspopup="listbox" class="color_dropdown_toggle" data-webtasks-id="2ec3de47-90ee-4c1f"><span class="color_dropdown_select__color" data-webtasks-id="1797d3c2-518b-4252" style="background-color: rgb(128, 128, 128);"></span><span class="color_dropdown_select__name" data-webtasks-id="dc73c2b1-7a6b-475a">Charcoal</span></button></div><div class="_2a3b75a1" data-webtasks-id="a4fafddb-272a-41b8"><div class="_2a3b75a1 _509a57b4 _1fb9d90e c68f8bf6 _8c75067a" data-webtasks-id="2e6b3c0f-076c-4947"><label class="bae487be _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="49a22698-e933-450d"><div class="_5af09fb5 _2a3b75a1 _5d644b40 _9015266f b85e3dfa d5d0d34a f20b8b87" data-webtasks-id="c3bb7a47-9dbf-4228"><div class="_618235b7 _2a3b75a1 _2286072d f6342c26" data-webtasks-id="5cf8162e-8a95-4356"><input name="is_favorite" id="element-8" type="checkbox" data-webtasks-id="feb66c09-d794-434b"></div><span class="_0dcf70ec" data-webtasks-id="5978217a-4dd6-49d6"></span></div><div class="a66e1846 a83bd4e0 _2a3b75a1" data-webtasks-id="b4614fbb-0d31-44cc">Add to favorites</div></label></div></div><div class="_2a3b75a1 _509a57b4 _1fb9d90e c68f8bf6 _8c75067a" data-webtasks-id="1bdf214c-bcf9-47c8"><div class="_2a3b75a1 _509a57b4 e5a9206f _904ef8fe" data-webtasks-id="6f1979d2-8b6d-424e"><label for="fieldColor" class="a83bd4e0 e214ff2e _2a3b75a1" data-webtasks-id="d7597213-4afc-4929">Preview</label><a class="y41CTZy fdc181b3 _2a3b75a1 _4a786bb9" data-webtasks-id="85ac90a4-516b-4cb5"></a></div></div></div></div></div></form><hr class="b6f67ff8 _2a3b75a1" data-webtasks-id="0b5c9e99-2b66-457d"><footer data-testid="footer" class="UrO5eGF _2a3b75a1 eb6097f1 f0941ead b75f86cd _078feb3c" data-webtasks-id="4ae47698-6e5d-4f5a"><div class="_2a3b75a1 _509a57b4 e5a9206f _3692f9c2 _50ba6b6b be9bf31a _966b120f" data-webtasks-id="d7221e41-f8a6-4e12"><button type="button" aria-disabled="false" class="_8313bd46 _54d56775 _5e45d59f _2a3b75a1 _56a651f6" data-webtasks-id="4b896668-7035-442b"><span class="_0051d171 _2a3b75a1 f973eed0 f6342c26" data-webtasks-id="7cb74ce6-d651-4012">Cancel</span></button><button type="submit" aria-disabled="true" class="_8313bd46 _7a4dbd5f _5e45d59f _43792df1 _2a3b75a1 _56a651f6" data-webtasks-id="ec4a34dd-e351-4947"><span class="_0051d171 _2a3b75a1 f973eed0 f6342c26" data-webtasks-id="b4e27185-2698-4c9f">Add</span></button></div></footer></div></div><div data-focus-guard="true" tabindex="0" data-webtasks-id="01c995a2-4598-4f3c" style="width: 1px; height: 0px; padding: 0px; overflow: hidden; position: fixed; top: 1px; left: 1px;"></div></div></div></div></body> |