|
<head data-webtasks-id="ce5993df-7095-49c8"><title data-webtasks-id="d266b62f-c95b-41ff">Home Renovation Project: Todoist</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" data-webtasks-id="bdc41c49-34aa-4126"><meta http-equiv="X-UA-Compatible" content="IE=edge" data-webtasks-id="e5d4b2ba-ec12-4ede"><meta property="og:image" content="/assets/images/968d99236e2536919d6d14ca13d25930.jpg" data-webtasks-id="3eda9fd0-ddb0-4f6a"><meta property="og:image:secure_url" content="/assets/images/968d99236e2536919d6d14ca13d25930.jpg" data-webtasks-id="1ea68055-44f5-4c31"><meta name="apple-itunes-app" content="app-id=572688855" data-webtasks-id="0f3bb196-5031-486e"><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1" data-webtasks-id="e50a5a50-37c1-4dad"><meta name="theme-color" content="#db4c3f" data-webtasks-id="de63632f-b094-4688"><script type="text/javascript" async="" src="https://www.googletagmanager.com/gtag/js?id=G-M6V9BEQD2J&l=dataLayer&cx=c" nonce="" data-webtasks-id="6235a778-ed7a-4108"></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="646d286a-d470-481f"></script><script nonce="" data-webtasks-id="8f4e5131-b268-41b6">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="ca2d59e5-4f30-46db">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="00f88984-10d9-4520"></script><script src="https://todoist.b-cdn.net/checkUnsupportedBrowser.c96c50bcdd3a49f39a83b159f26b5b3c.js" crossorigin="anonymous" data-webtasks-id="e25b6147-a171-4549"></script><script src="https://todoist.b-cdn.net/assets/runtime.8ce64929dd0addb55bb5787d1d866de2.js" crossorigin="anonymous" data-webtasks-id="10546550-c541-4686"></script><script nonce="" data-webtasks-id="53365748-05ec-4680">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="fe285e1a-4cc2-4fea"><link href="https://todoist.b-cdn.net/assets/vendor~add~app~253ae210.cecc6c91b0559c218c324a51b600ce1c.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="3e73251d-9d49-4bc7"><link href="https://todoist.b-cdn.net/assets/app~d0ae3f07.2415fea43ce14de494a1bb15c0e0377f.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="3df97913-2434-416b"><link href="https://todoist.b-cdn.net/assets/app~5a11b65b.789955acb2b0d1b96ce54fa7f1bdf022.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="4cbd7597-e91d-4df2"><link href="https://todoist.b-cdn.net/assets/app~c714bc7b.3b9a3320fb1350deb46a6ab033b25dc2.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="43d2c805-9348-424b"><link href="https://todoist.b-cdn.net/assets/app~31e116db.a721f48b197617be0b1fe1f4a501a5f9.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="54b8c0bc-8d19-4666"><link href="https://todoist.b-cdn.net/assets/app~fc66dfb5.801c0ac5f0ac081b675a6e6ffe084595.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="04b0d1d6-298a-487b"><link href="https://todoist.b-cdn.net/assets/app~2cb4426d.f8c583acb830ed5a9238cd39ea4c2b78.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="3211440d-c3a4-40ee"><script async="" src="https://www.google-analytics.com/analytics.js" data-webtasks-id="6cb284d8-3f25-4ef7"></script><style data-webtasks-id="56dfbc63-ef91-427f">.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="632c38a8-73f6-40b0">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="bb55e368-bdcc-4f2a">(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="f4dbbab9-48e3-492c"><meta name="apple-mobile-web-app-capable" content="yes" data-webtasks-id="05006ed6-309e-4778"><meta name="apple-mobile-web-app-status-bar-style" content="default" data-webtasks-id="a64ece55-49a6-4ab1"><meta name="theme-color" content="#C24F3D" data-webtasks-id="ad2b5b02-ec41-439e"><link rel="apple-touch-startup-image" sizes="1024x1024" href="/app/manifest_icons/icon_1024x1024.098d1a14e2f871db82d8a2392d59b587.png" data-webtasks-id="6e32a510-da2a-4de3"><link rel="apple-touch-icon" sizes="1024x1024" href="/app/manifest_icons/icon_1024x1024.098d1a14e2f871db82d8a2392d59b587.png" data-webtasks-id="c1b180e0-b0b7-4d78"><link rel="apple-touch-icon" sizes="180x180" href="/app/manifest_icons/icon_180x180.d0c3ef3c6be29a9ca57ead5171bbebc4.png" data-webtasks-id="4dfc71d2-d06c-4e60"><link rel="apple-touch-icon" sizes="167x167" href="/app/manifest_icons/icon_167x167.3a26fccf02024d9e908aa61a168c04b6.png" data-webtasks-id="99ca58a9-4877-416a"><link rel="apple-touch-icon" sizes="152x152" href="/app/manifest_icons/icon_152x152.749dc17e04c34f6e3ade0c6ec90a827c.png" data-webtasks-id="0e104243-2021-4a74"><link rel="apple-touch-icon" sizes="120x120" href="/app/manifest_icons/icon_120x120.4a19b1dbc4514d6e3e3929c28f912cc8.png" data-webtasks-id="399dd716-e67c-4954"><link rel="manifest" href="/app/manifest.48149c9f0c601e29a9554640f7bf5b4d.json" data-webtasks-id="f9a98fb8-9b16-4715"><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/98.661794586db6155211b62b66452ea5b9.css" data-webtasks-id="5c605cb1-6e9c-4ed0"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/98.9917839217825cf4238394433c7f0e3f.js" data-webtasks-id="e1d0f249-30d6-430a"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/99.8430aacde66c52603a2eb1e096e8bcbd.css" data-webtasks-id="5cee9c80-81ab-43f6"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/99.d7786603923961d6130df5a8fba7274c.js" data-webtasks-id="d0ca5f72-689d-42c0"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/100.b629ea0ccf140d381f747a0a9b43e143.css" data-webtasks-id="12939b8f-f29f-4c19"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/100.6ea9551355fba42b82ff5df17e65853f.js" data-webtasks-id="95dd3683-946f-4e17"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/101.ee8d052d1cae91032335580570810324.css" data-webtasks-id="3c1843d9-a8b5-4da3"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/101.f11d4660ef102f5486e262cb7a74573e.js" data-webtasks-id="de5b81ee-fb21-4698"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/102.9efc7d118af4be1061bd9cfe5b14a62c.css" data-webtasks-id="afdea0cb-d396-4264"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/102.d05d612ec9b832abf472584ac0e1c5ac.js" data-webtasks-id="92796218-3b4e-47fe"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/103.30a8daf0902dd7f54a756bb0aa66bbe8.css" data-webtasks-id="2bcfbdb7-b3fa-4ade"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/103.97ecbf50c381b89d14ac4f2e5c210a28.js" data-webtasks-id="065aed2e-1860-4c92"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/104.37ba6c86f74d760008e69bb9c65e5c86.css" data-webtasks-id="d4f32aee-6f80-4f8b"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/104.b1e7e817baa13c9e657949961368452c.js" data-webtasks-id="022c9448-163b-4e74"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/105.cac76b8228f2c73f9773c36700ed207c.css" data-webtasks-id="372da501-56c5-4da1"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/105.4a014ac94e66889011f326aaf5f6080f.js" data-webtasks-id="9533b6ea-b3f8-4f3e"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/106.2aa7fbe90fd5d34c5dc8e60b594ee385.css" data-webtasks-id="4816bfb3-8ce2-401b"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/106.28e67f981dfb80835d1e0a7a481bd567.js" data-webtasks-id="969a3bb9-c43a-4277"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/107.3068545f246fddc0614457869806de9e.css" data-webtasks-id="008508ed-07e3-4917"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/107.012f4b3a870c0e1638ae35137e9d040e.js" data-webtasks-id="190a9e60-2149-4d5b"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/108.ab835c81ab951809ee09ba2994a4a1ea.css" data-webtasks-id="a7dd3d21-8a15-41e6"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/108.549d9ad9f48b6138ad516c2437205792.js" data-webtasks-id="da01a254-fd39-4319"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/109.9588611b5216e07907250f927acc895c.css" data-webtasks-id="d9bcf9e5-c2b2-452d"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/109.f3d53bb67902a3ccf2c58ea0fd5c8673.js" data-webtasks-id="b0934a96-3ca0-4574"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/110.6fc99b0005bb204116467384c0dc8905.css" data-webtasks-id="e09e4e21-7e95-4d85"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/110.64ddcabfe10bce324fbc0971e99b28cf.js" data-webtasks-id="db07d492-4d6f-430a"></script><style data-tiptap-style="" data-webtasks-id="90dcb7bd-45b0-4856">.ProseMirror { |
|
position: relative; |
|
} |
|
|
|
.ProseMirror { |
|
word-wrap: break-word; |
|
white-space: pre-wrap; |
|
white-space: break-spaces; |
|
-webkit-font-variant-ligatures: none; |
|
font-variant-ligatures: none; |
|
font-feature-settings: "liga" 0; |
|
} |
|
|
|
.ProseMirror [contenteditable="false"] { |
|
white-space: normal; |
|
} |
|
|
|
.ProseMirror [contenteditable="false"] [contenteditable="true"] { |
|
white-space: pre-wrap; |
|
} |
|
|
|
.ProseMirror pre { |
|
white-space: pre-wrap; |
|
} |
|
|
|
img.ProseMirror-separator { |
|
display: inline !important; |
|
border: none !important; |
|
margin: 0 !important; |
|
width: 1px !important; |
|
height: 1px !important; |
|
} |
|
|
|
.ProseMirror-gapcursor { |
|
display: none; |
|
pointer-events: none; |
|
position: absolute; |
|
margin: 0; |
|
} |
|
|
|
.ProseMirror-gapcursor:after { |
|
content: ""; |
|
display: block; |
|
position: absolute; |
|
top: -2px; |
|
width: 20px; |
|
border-top: 1px solid black; |
|
animation: ProseMirror-cursor-blink 1.1s steps(2, start) infinite; |
|
} |
|
|
|
@keyframes ProseMirror-cursor-blink { |
|
to { |
|
visibility: hidden; |
|
} |
|
} |
|
|
|
.ProseMirror-hideselection *::selection { |
|
background: transparent; |
|
} |
|
|
|
.ProseMirror-hideselection *::-moz-selection { |
|
background: transparent; |
|
} |
|
|
|
.ProseMirror-hideselection * { |
|
caret-color: transparent; |
|
} |
|
|
|
.ProseMirror-focused .ProseMirror-gapcursor { |
|
display: block; |
|
} |
|
|
|
.tippy-box[data-animation=fade][data-state=hidden] { |
|
opacity: 0 |
|
}</style></head><body data-webtasks-id="65e0f9f7-e2e2-4424"><div class="cdn-failback-error" data-webtasks-id="52bf2bc4-d7ad-44c4"><svg class="loading_screen--logo" width="64" height="64" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="85cc1bc5-c545-46b2"><g fill="none" fill-rule="evenodd" data-webtasks-id="5d375aab-6ae1-4982"><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="36d3fc9f-1c37-4e8f"></path><g class="logo_stripe" fill="#FFF" data-webtasks-id="11d5cbfd-bafb-4c33"><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="2452471c-100a-4262"></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="b563565d-e536-404b"></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="d2faa1d1-800a-4cb2"></path></g></g></svg><h1 data-webtasks-id="506b2e03-3dad-4959">Todoist couldn't load the required files.</h1><p data-webtasks-id="60775687-801f-4965">Please check your network connection, or <a href="https://todoist.com/contact" data-webtasks-id="2a41087d-e63c-41b5">contact support</a> if the problem persists.</p></div><noscript data-webtasks-id="563cce35-fd64-42d6"><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="6e6da586-f9ce-43b0"><div id="page_background" data-webtasks-id="c7012ae1-a1a5-4eb4"><a class="skiplink" href="#content" data-webtasks-id="b4369694-3329-41ef">Skip to task list</a><div data-testid="top_bar" id="top_bar" data-webtasks-id="5e02f90e-06e7-4f38"><div id="top_bar_inner" role="banner" aria-label="Top Banner: contains Search, Quick Add, Productivity, Help, Notifications, and Settings" data-webtasks-id="7a0c6e79-caa7-4e72"><div class="left_control" data-webtasks-id="46632c51-99d8-4a1e"><div data-webtasks-id="4948104d-2ba0-4c5d"><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="f2367dba-9ed5-4452"><svg viewBox="0 0 24 24" class="close_icon" width="24" height="24" data-webtasks-id="2614ce77-8ccb-46da"><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="c4b57fef-144f-416f"></path></svg><svg class="menu_icon" width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="b0685cb9-f43d-4d15"><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="6ea4e3b4-fd6f-44f9"></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="40cbd665-3b34-4471"><svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="f18836fb-bf9b-4099"><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="0936a38a-2ad6-4447"></path></svg></button><div id="quick_find" data-testid="quick_find_container" class="" style="width: 218px;" data-webtasks-id="2853bb05-beeb-4882"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" aria-hidden="true" class="search_icon" data-webtasks-id="57d12229-6e31-47fc"><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="b85d7f7e-dcf9-48e3"></path></svg><div class="_2a3b75a1 _8c75067a" data-webtasks-id="eac243bd-f22a-4dfc"><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="1fbad29c-7a42-43bd"></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="6f69a9db-450e-40db"><svg width="24" height="24" aria-hidden="true" data-webtasks-id="9dd019c9-c474-41c1"><g fill="none" fill-rule="evenodd" data-webtasks-id="9b41f10d-cc35-473d"><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="9a2c2284-db24-4de7"></path><circle cx="12" cy="12" r="7.5" stroke="currentColor" data-webtasks-id="abd5eed7-e99d-4554"></circle></g></svg></a><button class="close_icon" aria-label="Close Search" data-webtasks-id="f852c726-9e7f-4d0c"><svg viewBox="0 0 24 24" class="" width="18" height="18" aria-hidden="true" data-webtasks-id="b57450aa-ba9e-4322"><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="b4903332-19c5-497f"></path></svg></button><button class="shortcut_hint" aria-label="Quick search" aria-keyshortcuts="/" tabindex="0" data-webtasks-id="a63962ef-8ecb-446f">/</button></div></div><div aria-label="Menu" class="top_right_button_group" role="group" data-webtasks-id="ed0f8cb6-f84e-4101"><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="7229" data-gtm-vis-first-on-screen-39724453_306="7229" data-gtm-vis-total-visible-time-39724453_306="100" data-gtm-vis-has-fired-39724453_306="1" data-webtasks-id="4a99783d-852d-4132"><div aria-hidden="true" class="a44d4350 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="b29e45e0-e281-4db7"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="3fb9f5b6-6cde-4154"><g fill="none" fill-rule="evenodd" data-webtasks-id="4e9b89ad-e368-49d3"><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="feab0f3d-4cff-47a4"></path></g></svg></div><span class="_0051d171 _2a3b75a1 f973eed0 f6342c26" data-webtasks-id="08f32fce-b0c6-4a35">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="a08db449-b259-4f92"><svg width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="d9525baf-edae-4656"><g fill="none" fill-rule="evenodd" transform="translate(4 3)" data-webtasks-id="aaac984e-60db-497e"><mask id="jd4FBg" fill="#fff" data-webtasks-id="a58777a3-a78e-475e"><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="7a0d0623-87a1-4688"></path></mask><g mask="url(#jd4FBg)" data-webtasks-id="28777728-0c0f-4318"><path fill="currentColor" d="M-4-3h24v24H-4z" data-webtasks-id="3181e196-c0cc-455a"></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="9d5a2a1d-5071-42f3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="78072040-8692-4818"><g fill="none" fill-rule="evenodd" data-webtasks-id="2b78b606-8c4c-4cbe"><g fill="currentColor" fill-rule="nonzero" data-webtasks-id="ec98c790-555b-4adc"><g data-webtasks-id="1fffaece-e18c-4fd6"><g data-webtasks-id="97471e05-3ef6-4d62"><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="67f2232e-693d-47b5"></path></g></g></g></g></svg><span class="count" data-webtasks-id="2112ff59-f700-489c">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="4ecef4bd-82b2-4348"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" aria-hidden="true" data-webtasks-id="56065f01-d65e-44e9"><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="1078d897-25e4-4b2b"></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="31ab101a-8fa4-473a"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="71ba0ecf-3e78-4fd6"><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="29ac30cf-1608-4fc4"></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="4b05c3c0-2b28-401c"><div class="+syWHcL _0J7x-Vo settings_avatar _2a3b75a1" data-webtasks-id="996e6fb6-3d62-4b38"><img src="https://dcff1xvirvpfp.cloudfront.net/e0bb2b38dfa4453db86eeebe2f5f504b_big.jpg" alt="webtasks.navigator" data-webtasks-id="d844894b-5721-465c"></div></button></div></div></div><div id="app_holder" data-webtasks-id="41e20e4c-3b50-4071"><div id="content_wrapper" data-webtasks-id="b1e1d8d9-bcc3-4e05"><div class="left_menu_overlay" data-webtasks-id="2bf886e5-48b9-44d7"></div><div id="left_menu" class="_2a3b75a1 _509a57b4 _1fb9d90e" style="width: 305px;" data-webtasks-id="873f71f5-332e-463f"><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="5a1b108c-4f71-4af6"><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="285b3cbb-89d8-443c"><li id="filter_inbox" class="iydsj+G" data-id="2315339881" data-track="navigation|inbox" disabled="" draggable="false" data-webtasks-id="471cbaa5-3fc4-4893"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="7b5eb58d-d757-4142"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="264f29ff-f00f-4a82"><a aria-label="Inbox, 12 tasks" tabindex="0" href="/app/project/2315339881" data-webtasks-id="9014b8d8-94d0-41ef"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="09a3179e-bc50-47ec"><svg width="24" height="24" viewBox="0 0 24 24" class="Dd3PmF2g5h93YIf1bCDdiA==" data-webtasks-id="bd1ab2c7-d2ee-4e6b"><g fill="currentColor" fill-rule="nonzero" data-webtasks-id="fa5cf8f8-c7a4-48e3"><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="a8b49f39-3bee-41a4"></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="b7b2b212-5fc5-490e"></path></g></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="08407ad5-6e78-4b3f">Inbox</span></a><span data-project-actions="true" data-webtasks-id="a34ebf37-abf5-4087"><div class="fgALZGUA6SZg9blSarq2hg== _2a3b75a1 _9015266f" data-webtasks-id="b9ddf75a-d91d-46ca"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== _2a3b75a1" data-webtasks-id="8f3595ad-66e8-43b9">12</span></div></span></div></div></li><li id="filter_today" data-track="navigation|today" class="" data-webtasks-id="8d7d5aa7-dc1c-457d"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="4b767c50-97c7-4331"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="7db71511-5255-4bc4"><a aria-label="Today, 4 tasks" tabindex="0" href="/app/today" data-webtasks-id="a07746d8-89c2-4903"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="c21231d0-2294-4d5a"><svg width="24" height="24" viewBox="0 0 24 24" class="ONBJEQtK++jnfUWJ3V90Dw==" data-webtasks-id="13a9b86f-63ef-40c2"><g fill="currentColor" fill-rule="evenodd" data-webtasks-id="f654cc8e-7200-4bc6"><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="4c7233f5-1bfd-4b5a"></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="b18375bf-47a0-4255"></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="c9e4bb23-c29c-4a63"><tspan x="8" y="15" text-anchor="middle" data-webtasks-id="ad7e4a15-3fb0-4062">03</tspan></text></g></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="d270dad1-dd7b-4f52">Today</span></a><span data-project-actions="true" data-webtasks-id="6845b7a7-a124-4e6e"><div class="fgALZGUA6SZg9blSarq2hg== _2a3b75a1 _9015266f" data-webtasks-id="747e4881-605b-45b1"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== mKhIUVyJYf3pexnRkJu3eA== _2a3b75a1" data-webtasks-id="65977120-fd80-4e56">4</span></div></span></div></div></li><li id="filter_upcoming" data-track="navigation|upcoming" data-webtasks-id="3392c98e-5239-4659"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="cf3ac472-8f53-498f"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="de09f303-e704-4865"><a aria-label="Upcoming" tabindex="0" href="/app/upcoming" data-webtasks-id="641abfb4-7c92-4bae"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="dc007565-455a-4f51"><svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="SWWJ2mDmoJ5jpYGsCY5nBA==" data-webtasks-id="84a5e506-685c-4d93"><g fill="currentColor" fill-rule="nonzero" data-webtasks-id="e443fb06-57dd-47c5"><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="546d09bd-5922-4e3b"></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="c3d8c0ad-46cc-46fe"></path></g></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="15e34f16-17f0-4557">Upcoming</span></a><span data-project-actions="true" data-webtasks-id="97a0ed90-4de9-4371"><div class="_2a3b75a1 _9015266f" data-webtasks-id="72677fa7-6620-444e"></div></span></div></div></li><li id="filters_labels" data-track="navigation|filters-labels" data-webtasks-id="7ffe214f-db56-4a40"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="515f8ed4-c24c-4ac8"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="2b9b3b51-498d-4b32"><a aria-label="Filters & Labels" tabindex="0" href="/app/filters-labels" data-webtasks-id="d22a8a0f-d4b5-40fb"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="bfd14b29-ff40-4117"><svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg" class="yeJ7DFSh0CB61w0UHm64kQ==" data-webtasks-id="d0ce9069-f0b7-455a"><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="cd3144f5-c3aa-4673"></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="2acd82f2-0593-499f"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="b5911586-3a7a-45eb">Filters & Labels</span></a><span data-project-actions="true" data-webtasks-id="e70f809d-eea6-4989"><div class="_2a3b75a1 _9015266f" data-webtasks-id="19018aca-d0ca-4135"></div></span></div></div></li></ul><div class="_2a3b75a1" data-webtasks-id="c59b58e7-3277-4eae"><div data-expansion-panel-header="true" class="_67vYS3K focus-marker-enabled-within _2a3b75a1 _9015266f _4eb1d749" data-webtasks-id="055fded6-c4d4-458e"><div class="_2a3b75a1 _509a57b4 c4803194 b0e6eab4 cad4e2ec e5a9206f _50ba6b6b f6342c26 _34cd2b5e" data-webtasks-id="61bca74a-17db-4f98"><div class="_2a3b75a1 _509a57b4 e5a9206f _50ba6b6b _4a93668a" data-webtasks-id="21cdc752-8b16-458a"><div class="_2a3b75a1 _509a57b4 e5a9206f _55ef2d4e d5d0d34a _2580a74b" data-webtasks-id="b9ec56e0-b634-4f14"><div class="a83bd4e0 _7be5c531 _6a3e5ade _2f303ac3 _2a3b75a1 _211eebc7" data-webtasks-id="7d9b747f-61df-41a0">Favorites</div></div></div><div class="_2a3b75a1 d5d0d34a" data-webtasks-id="b8a96063-106d-4582"></div><div class="_2a3b75a1 d5d0d34a" data-webtasks-id="7f177c1e-83b6-4c47"><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="ce8f8c4e-c3d1-45de"><svg width="16" height="16" viewBox="0 0 16 16" class="aqv2kvH" data-webtasks-id="b1c72d56-c313-45ec"><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="ecd01e10-db24-4570"></path></svg></button></div></div></div><div class="_2a3b75a1" data-webtasks-id="be82da30-80a6-4d13"><div class="VELYhgE ChYSaj4 _2a3b75a1 f6342c26" data-webtasks-id="c1a7d16b-2cd3-4723"><div class="_2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="61366418-b8ab-46ac"><div class="_2a3b75a1 _8c75067a" data-webtasks-id="0b3bb06f-39f4-4f11"><div id="left-menu-favorites-panel" class="_2a3b75a1" data-webtasks-id="8972090c-149d-484f"><ul aria-label="Favorites" class="A-1+3VRDSVrGqFoUjyOVqA== focus-marker-enabled-within _2a3b75a1" data-webtasks-id="fbbf0298-39e4-45f1"><li data-webtasks-id="525a58b3-f9f2-4af1"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="2c312e02-3429-4a7e"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="1abec8dd-23e3-47bd"><a aria-label="Status, 0 tasks" tabindex="0" href="/app/label/2167486659" data-webtasks-id="837715a7-6131-4e1c"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" style="color: rgb(64, 115, 255);" data-webtasks-id="76e5785c-41eb-40bd"><svg width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="e3b7c551-4a39-427a"><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="2662310b-de4a-4a5b"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="528970b8-91cb-4d37">Status</span></a><span data-project-actions="true" data-webtasks-id="9e06d5b2-206b-45bf"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="2b50b6ec-9289-4af9"><button type="button" aria-label="More label actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="c056fc62-4212-46f7"><span data-webtasks-id="c9a3e130-1f16-4f1c"><svg width="15" height="3" data-webtasks-id="fe7316d3-32f5-4515"><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="bd9605ee-08c8-4456"></path></svg></span></button></div></span></div></div></li></ul></div></div></div></div></div></div><div class="_2a3b75a1" data-webtasks-id="43bcd94e-ae43-4b25"><div data-expansion-panel-header="true" class="_67vYS3K focus-marker-enabled-within _2a3b75a1 _9015266f _4eb1d749" data-webtasks-id="99581935-3a5a-455c"><div class="I0d9ZtQ _2a3b75a1 _509a57b4 c4803194 b0e6eab4 cad4e2ec e5a9206f _50ba6b6b f6342c26 _34cd2b5e" data-webtasks-id="8835761a-86e1-4d92"><a class="_2a3b75a1 _509a57b4 e5a9206f _50ba6b6b _4a93668a f6342c26" href="/app/projects" data-webtasks-id="dc4faf42-ec4b-4dce"><div class="_2a3b75a1 _509a57b4 e5a9206f _55ef2d4e d5d0d34a _2580a74b" data-webtasks-id="2791e0d9-e837-484d"><div class="a83bd4e0 _7be5c531 _6a3e5ade _2f303ac3 _2a3b75a1 _211eebc7" data-webtasks-id="433c7351-76ae-4a01">Projects</div><span class="_7957de66 c6106b8c _2a3b75a1 _4a786bb9" data-webtasks-id="aac1ed7e-d0c4-4923">Used: 4/5</span></div></a><div class="_2a3b75a1 d5d0d34a" data-webtasks-id="b1e63260-2a8b-4be6"><button aria-label="Add project" type="button" aria-disabled="false" tabindex="0" class="_8313bd46 f169a390 _8b7f1a82 _8644eccb _2a3b75a1" data-webtasks-id="3de12e90-75d9-4cbd"><svg width="13" height="13" data-webtasks-id="fc73822f-c2f9-4720"><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="eacd7f59-7c9c-427a"></path></svg></button></div><div class="_2a3b75a1 d5d0d34a" data-webtasks-id="4a01117d-72cf-4a5d"><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="22004726-3353-486f"><svg width="16" height="16" viewBox="0 0 16 16" class="aqv2kvH" data-webtasks-id="98a88e95-272f-45f3"><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="eadd225f-0a8d-4b1d"></path></svg></button></div></div></div><div class="_2a3b75a1" data-webtasks-id="b718055f-eba0-4b68"><div class="VELYhgE ChYSaj4 _2a3b75a1 f6342c26" data-webtasks-id="e9a7a1ab-8cbc-4b78"><div class="_2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="6a88ff12-a28a-4ca9"><div class="_2a3b75a1 _8c75067a" data-webtasks-id="7acba81a-8798-44b2"><div id="left-menu-projects-panel" class="_2a3b75a1" data-webtasks-id="cc2373f0-9993-4150"><ul id="projects_list" aria-label="Projects" class="A-1+3VRDSVrGqFoUjyOVqA== focus-marker-enabled-within _2a3b75a1" data-webtasks-id="abd6c024-5d25-487d"><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="6dd6ee9b-ddd7-4093"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== DebMdpIqKcFRpFpVm5-wrA== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="c68a0464-befc-4d9a"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="cb29574f-b919-419f"><a aria-label="Home Renovation Project, 7 tasks" tabindex="0" href="/app/project/2315367588" data-webtasks-id="60ed9a16-401a-4569"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="fbd192c7-a76c-4138"><svg width="24" height="24" viewBox="0 0 24 24" class="project_icon" style="color: rgb(224, 81, 148);" data-webtasks-id="b9f9b8bb-860f-421b"><path d="M12 7a5 5 0 110 10 5 5 0 010-10z" fill="currentColor" data-webtasks-id="1f0f8407-3708-4dbe"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="7a648084-30ea-4dbb">Home Renovation Project</span></a><span data-project-actions="true" data-webtasks-id="74b835be-76f8-42da"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="d3d97174-6c66-42fa"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== _2a3b75a1" data-webtasks-id="d87a5a18-47e2-4a48">7</span><button type="button" aria-label="More project actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="d35800d9-fefa-4b9b"><span data-webtasks-id="f1b46aaa-e6f1-4238"><svg width="15" height="3" data-webtasks-id="42c15260-7908-4b56"><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="378e2de6-b8bd-46cb"></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="63947574-abd5-4146"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="0af0b65c-3f29-46f7"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="edec5d54-1a0d-4c8e"><a aria-label="Website Redesign, 1 task" tabindex="0" href="/app/project/2315444883" data-webtasks-id="f6b5faba-351a-44ed"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="71aecb4c-af3b-4a6c"><svg width="24" height="24" viewBox="0 0 24 24" class="project_icon" style="color: rgb(128, 128, 128);" data-webtasks-id="f039b1c3-2c0f-4509"><path d="M12 7a5 5 0 110 10 5 5 0 010-10z" fill="currentColor" data-webtasks-id="c5434224-8223-40fd"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="5ee3981c-a527-4980">Website Redesign</span></a><span data-project-actions="true" data-webtasks-id="892ed375-eb1e-4e2f"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="0ef1cf90-f10b-41a7"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== _2a3b75a1" data-webtasks-id="502b3fdf-391a-447b">1</span><button type="button" aria-label="More project actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="ad98f53e-c080-4e4e"><span data-webtasks-id="ee6ba5a3-5efc-41f1"><svg width="15" height="3" data-webtasks-id="a5fea471-1e1b-495e"><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="a198b37b-36bc-4e0b"></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="b7473f6b-8fa6-49ad"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="35f88ddc-cf5c-4223"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="780ec39d-b8a6-481c"><a aria-label="Marketing Campaign, 0 tasks" tabindex="0" href="/app/project/2315445490" data-webtasks-id="a2f6fdb4-45ae-41e3"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="f44ef7d7-8417-4c77"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="project_icon" style="color: rgb(136, 77, 255);" data-webtasks-id="41812993-3ffa-4d2d"><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="8140f468-7173-4d44"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="9cd99103-3394-41c3">Marketing Campaign</span></a><span data-project-actions="true" data-webtasks-id="68df6e65-4395-4e1e"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="85bae38f-a37e-4cd6"><button type="button" aria-label="More project actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="32a8a701-5ff0-4651"><span data-webtasks-id="23daee44-ec6d-40ca"><svg width="15" height="3" data-webtasks-id="a00ba3e7-3db5-448d"><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="4d57ebdf-cd68-4b51"></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="a91fec28-f140-4599"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="d437835a-e72e-4514"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="8499489a-d28a-48fd"><a aria-label="Mila Project, 1 task" tabindex="0" href="/app/project/2315446415" data-webtasks-id="7ce08b93-77b6-4e15"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="d99a106c-fa78-4dfb"><svg width="24" height="24" viewBox="0 0 24 24" class="project_icon" style="color: rgb(128, 128, 128);" data-webtasks-id="42426b4f-5536-4ca6"><path d="M12 7a5 5 0 110 10 5 5 0 010-10z" fill="currentColor" data-webtasks-id="11d7589b-1147-4796"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="e60cc29c-9155-4563">Mila Project</span></a><span data-project-actions="true" data-webtasks-id="6207a0ca-3d1d-4b65"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="e9e1ddaa-1b3a-4a57"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== _2a3b75a1" data-webtasks-id="52dd6ee0-a924-43d7">1</span><button type="button" aria-label="More project actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="93b85688-f39d-4e09"><span data-webtasks-id="eb2039f9-6a86-44c1"><svg width="15" height="3" data-webtasks-id="490fe501-4ab2-44f2"><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="5a2e70fe-6630-4ad8"></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="4547328e-8b44-4b00"></div></div></div><div class="ADvfnAf8aQWYfj+wqyIeVQ==" data-webtasks-id="e50a263f-a31c-46c9"></div><div class="resize_handle" style="left: 303px;" data-webtasks-id="2f597a10-e651-4ab1"></div><main aria-label="Main Content" id="content" class="main_content" tabindex="-1" style="margin-left: 305px;" data-webtasks-id="4663f544-6609-47bf"><div class="main-view-layout main-view-layout--wide" data-webtasks-id="647b823e-a1a9-4b6c"><div data-webtasks-id="bdd3caac-dfd0-4859"></div><div class="project_view project_editor_instance current_editor" data-project-id="2315367588" data-webtasks-id="37d6786a-077c-46eb"><header aria-label="Project Header: contains Comments button, Share button, Sort Options button, and More Project Actions button" data-testid="view_header" class="view_header view_header--has_actions _2a3b75a1" data-webtasks-id="e1473d15-0212-4cb6"><div class="view_header__content" data-webtasks-id="9c8df44f-8366-4b2e"><h1 role="heading" tabindex="0" aria-describedby="view_header__a11y_helper_text" data-testid="view_header__h1" class="editable" data-webtasks-id="98d221d2-fc71-4454"><span class="simple_content" data-webtasks-id="f28946c6-4d03-47b1">Home Renovation Project</span></h1><span id="view_header__a11y_helper_text" data-webtasks-id="9f99575e-b830-4d71">Activate to edit name</span><div class="view_header__actions _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="e5bac007-8449-4e27"><button type="button" aria-label="Share options" tabindex="0" data-webtasks-id="cd5dce98-6f02-4d37"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="28821cc1-8cde-421a"><path fill="currentColor" d="M10 13.5c3.323 0 5.803.697 7.427 2.119A2.5 2.5 0 0115.78 20H4.22a2.5 2.5 0 01-1.647-4.381C4.197 14.197 6.677 13.5 10 13.5zm0 1c-3.102 0-5.353.633-6.768 1.871A1.5 1.5 0 004.22 19h11.56a1.502 1.502 0 00.989-2.629C15.352 15.133 13.101 14.5 10 14.5zM19.5 6a.5.5 0 01.5.5V9h2.5a.5.5 0 010 1H20v2.5a.5.5 0 01-1 0V10h-2.5a.5.5 0 010-1H19V6.5a.5.5 0 01.5-.5zM10 4c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4zm0 1a3 3 0 100 6 3 3 0 000-6z" fill-rule="evenodd" data-webtasks-id="b8916cf7-a09a-4695"></path></svg><span class="action_label" data-webtasks-id="a9fb70ed-bcf7-42d8">Share</span></button><button type="button" aria-label="View options menu" class="_9Wfxfoc5gMsPy1iegKm8fw==" data-webtasks-id="1b73d3ba-147d-4751"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="1134802f-e4dd-4762"><path d="M15 14.5a2 2 0 011.936 1.498L19.5 16a.5.5 0 010 1l-2.563.001a2.001 2.001 0 01-3.874 0L4.5 17a.5.5 0 010-1l8.564-.002A2 2 0 0115 14.5zm-.982 1.81l.005-.025-.005.026-.003.014-.004.025-.007.061A.897.897 0 0014 16.5l.008.125.007.047-.001.002.003.014.006.024h-.001l.004.018.016.058.007.021.004.013.009.026.013.033.012.027-.011-.026.019.043-.008-.017.029.06-.018-.037.048.09a1 1 0 001.784-.155l.015-.039.006-.018-.015.039.022-.06-.001-.001.016-.057.004-.018.005-.024.001-.006v-.001l.005-.033.008-.06A.877.877 0 0016 16.5l-.008-.124-.007-.051-.001-.001-.003-.014-.01-.047-.004-.016-.007-.024-.01-.034-.004-.012-.01-.03-.006-.013-.007-.017-.01-.026a.998.998 0 00-1.843.043l-.014.034-.007.022-.014.047-.002.009v.001l-.005.016-.01.047zM9 9.5a2 2 0 011.936 1.498L19.5 11a.5.5 0 010 1l-8.563.001a2.001 2.001 0 01-3.874 0L4.5 12a.5.5 0 010-1l2.564-.002A2 2 0 019 9.5zm0 1a.998.998 0 00-.93.634l-.014.034-.007.022-.014.047-.002.009v.001l-.005.016-.01.047.005-.025-.005.026-.003.014-.004.025-.007.061C8 11.441 8 11.471 8 11.5l.008.125.007.047-.001.002.003.014.006.024h-.001l.004.018.016.058.007.021.004.013.009.026.013.033.012.027-.011-.026.019.043-.008-.017.029.06-.018-.037.048.09a1 1 0 001.784-.155l.015-.039.006-.018-.015.039.022-.06-.001-.001.016-.057.004-.018.005-.024.001-.006v-.001l.005-.033.008-.06A.877.877 0 0010 11.5l-.008-.124-.007-.051-.001-.001-.003-.014-.01-.047-.004-.016-.007-.024-.01-.034-.004-.012-.01-.03-.006-.013-.007-.017-.01-.026A1.002 1.002 0 009 10.5zm6-6a2 2 0 011.936 1.498L19.5 6a.5.5 0 010 1l-2.563.001a2.001 2.001 0 01-3.874 0L4.5 7a.5.5 0 010-1l8.564-.002A2 2 0 0115 4.5zm0 1a.998.998 0 00-.93.634l-.014.034-.007.022-.014.047-.002.009v.001l-.005.016-.01.047.005-.025-.005.026-.003.014-.004.025-.007.061C14 6.441 14 6.471 14 6.5l.008.125.007.047-.001.002.003.014.006.024h-.001l.004.018.016.058.007.021.004.013.009.026.013.033.012.027-.011-.026.019.043-.008-.017.029.06-.018-.037.048.09a1 1 0 001.784-.155l.015-.039.006-.018-.015.039.022-.06-.001-.001.016-.057.004-.018.005-.024.001-.006v-.001l.005-.033.008-.06C16 6.557 16 6.528 16 6.5l-.008-.124-.007-.051-.001-.001-.003-.014-.01-.047-.004-.016-.007-.024-.01-.034-.004-.012-.01-.03-.006-.013-.007-.017-.01-.026A1.002 1.002 0 0015 5.5z" fill="currentColor" fill-rule="nonzero" data-webtasks-id="8c6a691d-7387-4567"></path></svg><span class="action_label" data-webtasks-id="7fe3461e-0cc4-455c">View</span></button><a data-track="project|comments" data-note-type="project_note" data-note-parent-id="2315367588" aria-label="Comments" tabindex="0" href="/app/project/2315367588/comments" data-webtasks-id="fad01630-d37f-48d1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-svgs-path="sm1/comments.svg" data-webtasks-id="320eaede-d146-4f14"><path fill="currentColor" fill-rule="nonzero" d="M11.707 20.793A1 1 0 0 1 10 20.086V18H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4.5l-2.793 2.793zM11 20.086L14.086 17H19a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h6v3.086z" data-webtasks-id="73fd1dea-728e-4f10"></path></svg><span class="action_label" data-webtasks-id="bf87c859-71be-4037">Comments</span></a><button type="button" aria-label="Project options menu" tabindex="0" data-webtasks-id="a7d3c897-96b0-4a48"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="16e4ae65-99e6-427a"><g fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(3 10)" data-webtasks-id="476743a6-47ff-4a68"><circle cx="2" cy="2" r="2" data-webtasks-id="4bdb8d59-a750-4397"></circle><circle cx="9" cy="2" r="2" data-webtasks-id="4e8bd9f5-23bf-4bba"></circle><circle cx="16" cy="2" r="2" data-webtasks-id="50247de4-bb68-4ef8"></circle></g></svg></button></div></div></header><div role="listbox" aria-multiselectable="true" data-selection-empty="" tabindex="-1" class="oCoNIi6" data-webtasks-id="43c6da6f-69d1-4508"><div class="board_view__sections" data-board-dragging="false" data-testid="project-board-view" data-drag-to-scroll="" data-webtasks-id="1390f0f8-d6ea-4b1f"><section data-draggable="" draggable="true" data-is-dropzone="false" data-is-active="false" data-is-combining="false" aria-label="Planning" class="board_section board_view__section_board" data-archived="false" data-column-navigation-element="_1688361922705_e3" data-editing="false" data-is-empty="false" data-testid="board-section" data-webtasks-id="5f698148-f566-40c1"><header class="board_section__header" draggable="true" id="section-127552668" data-webtasks-id="7213993b-6a2c-4a7f"><div class="board_section__section_info" data-webtasks-id="9dc20a84-d02b-4cef"><button class="board_section__title_edit_button" aria-label="Planning section. Click to edit" tabindex="0" data-webtasks-id="8d461331-301a-45f4"><h3 class="board_section__title" data-webtasks-id="1638f832-8c46-430e"><span class="simple_content" data-webtasks-id="55f3c2a4-6ea6-43d3">Planning</span></h3></button><p class="board_section__task_count" data-webtasks-id="8a96ebce-dbbd-4689">2</p></div><div class="board_section__menu_trigger" data-webtasks-id="140a4828-1a2f-4328"><button type="button" aria-label="section menu" class="section_head_menu" data-webtasks-id="721a658c-9e95-4b73"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="ba151bfe-c8f9-4365"><g fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(3 10)" data-webtasks-id="e18c808a-1477-4dcb"><circle cx="2" cy="2" r="2" data-webtasks-id="5d2cbeca-0016-4616"></circle><circle cx="9" cy="2" r="2" data-webtasks-id="8ac9402b-ec4e-401a"></circle><circle cx="16" cy="2" r="2" data-webtasks-id="1c906d83-756e-4614"></circle></g></svg></button></div></header><div id="_1688361922705_e3" itemids="7016042133,7016042386" class="board_section__task_list" data-testid="board-task-list" role="group" aria-labelledby="section-127552668" draggable="true" data-webtasks-id="0270178c-da3a-4948"><div data-draggable="" draggable="true" aria-selected="false" data-selection-id="_1688361922705_e3/7016042133" class="board_task" data-testid="task-card" role="group" aria-labelledby="task-7016042133-title" data-task-navigation-element="7016042133" id="task-7016042133" data-webtasks-id="9b4356d2-2d2c-4dff"><button class="board_task__button" aria-label="Open task details" data-webtasks-id="ed9f94b1-17fb-49f5"></button><div class="board_task__details__checkbox" data-webtasks-id="aa7efd78-ac06-4ace"><button type="button" class="task_checkbox priority_1" role="checkbox" aria-checked="false" aria-label="Checkbox for Research home renovation ideas online" data-webtasks-id="1736bdde-8068-4f9e"><span class="task_checkbox__circle" data-webtasks-id="b1b34b6c-b467-498a"></span><svg width="24" height="24" data-webtasks-id="5dfb192b-7a7a-4fcb"><path fill="currentColor" d="M11.23 13.7l-2.15-2a.55.55 0 0 0-.74-.01l.03-.03a.46.46 0 0 0 0 .68L11.24 15l5.4-5.01a.45.45 0 0 0 0-.68l.02.03a.55.55 0 0 0-.73 0l-4.7 4.35z" data-webtasks-id="e8963447-400e-44b5"></path></svg><span class="task_checkbox__border" data-webtasks-id="5175b960-79a9-4005"></span></button></div><div class="board_task__details_meta" data-webtasks-id="3007dd59-b7dc-403e"><div class="board_task__details" data-webtasks-id="3b409566-335c-41b8"><div id="task-7016042133-title" class="board_task__details__content" data-webtasks-id="140cee42-1de6-4ea9"><div class="e3d32437 _2a3b75a1" data-webtasks-id="7e9b2328-6436-47c8"><div class="task_content board_task__details__content__inner_content" data-webtasks-id="46a23779-3e40-4906">Research home renovation ideas online</div></div></div><div class="board_task__details__menu_assignee" data-webtasks-id="e795e986-becf-4614"></div></div></div></div><div data-draggable="" draggable="true" aria-selected="false" data-selection-id="_1688361922705_e3/7016042386" class="board_task" data-testid="task-card" role="group" aria-labelledby="task-7016042386-title" data-task-navigation-element="7016042386" id="task-7016042386" data-webtasks-id="637c5ef4-58ff-4c5f"><button class="board_task__button" aria-label="Open task details" data-webtasks-id="f4e9ce95-2f6f-41a6"></button><div class="board_task__details__checkbox" data-webtasks-id="e17defed-9750-46fb"><button type="button" class="task_checkbox priority_1" role="checkbox" aria-checked="false" aria-label="Checkbox for Create a mood board for design inspiration" data-webtasks-id="8ff0090b-0350-4018"><span class="task_checkbox__circle" data-webtasks-id="9ea67dab-cd59-4ef3"></span><svg width="24" height="24" data-webtasks-id="82ff92ae-f724-4e81"><path fill="currentColor" d="M11.23 13.7l-2.15-2a.55.55 0 0 0-.74-.01l.03-.03a.46.46 0 0 0 0 .68L11.24 15l5.4-5.01a.45.45 0 0 0 0-.68l.02.03a.55.55 0 0 0-.73 0l-4.7 4.35z" data-webtasks-id="a415c979-869b-415b"></path></svg><span class="task_checkbox__border" data-webtasks-id="0c3471ea-cf16-4e37"></span></button></div><div class="board_task__details_meta" data-webtasks-id="cd01a9a7-24fe-4939"><div class="board_task__details" data-webtasks-id="0cdc627e-21aa-4a7b"><div id="task-7016042386-title" class="board_task__details__content" data-webtasks-id="f6e2d764-8ee4-46d8"><div class="e3d32437 _2a3b75a1" data-webtasks-id="c7bc7568-f33f-4e04"><div class="task_content board_task__details__content__inner_content" data-webtasks-id="e267ca69-00d7-4b29">Create a mood board for design inspiration</div></div></div><div class="board_task__details__menu_assignee" data-webtasks-id="140926a1-7ec0-4936"></div></div></div></div></div><footer class="board_section__footer" data-testid="board-section-footer" aria-labelledby="section-127552668" draggable="true" data-webtasks-id="c6c63cd4-8ac7-43ea"><div class="board_section__footer__add_task" data-webtasks-id="ade6c99c-bbce-40af"><button type="button" data-add-task-navigation-element="true" aria-label="Add task to Planning" class="plus_add_button" data-webtasks-id="3228ace6-a799-45a0"><span class="icon_add" aria-hidden="true" data-webtasks-id="7190d859-a1e7-43b9"><svg width="13" height="13" data-webtasks-id="d345e3d4-b5c3-40b3"><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="70c3d6ec-1142-4a5f"></path></svg></span>Add task</button></div></footer></section><div class="board_add_section_trigger__container" data-webtasks-id="4d96ece9-a1b4-4e83"><button class="board_add_section_trigger" data-webtasks-id="417f20f9-f972-493e"><span class="board_add_section_trigger__label" data-webtasks-id="24edee76-0c3b-4f6b">Add section</span></button></div><section data-draggable="" draggable="true" data-is-dropzone="false" data-is-active="false" data-is-combining="false" aria-label="Budgeting" class="board_section board_view__section_board" data-archived="false" data-column-navigation-element="_1688361922706_e3" data-editing="false" data-is-empty="false" data-testid="board-section" data-webtasks-id="4f0e6c40-c46c-44b6"><header class="board_section__header" draggable="true" id="section-127552669" data-webtasks-id="f8585834-e4de-4f03"><div class="board_section__section_info" data-webtasks-id="9f70631e-1966-4232"><button class="board_section__title_edit_button" aria-label="Budgeting section. Click to edit" tabindex="0" data-webtasks-id="12f7d2ac-e5ac-477f"><h3 class="board_section__title" data-webtasks-id="1bc26c9c-263f-4e14"><span class="simple_content" data-webtasks-id="9bb7e559-871b-436a">Budgeting</span></h3></button><p class="board_section__task_count" data-webtasks-id="bbb724ae-b506-4c0d">2</p></div><div class="board_section__menu_trigger" data-webtasks-id="c76ed7ca-5d52-496f"><button type="button" aria-label="section menu" class="section_head_menu" data-webtasks-id="dc545436-632a-42bd"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="523181ef-1424-447c"><g fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(3 10)" data-webtasks-id="64c1e50a-a45c-429e"><circle cx="2" cy="2" r="2" data-webtasks-id="7b1a5fd2-c308-4a79"></circle><circle cx="9" cy="2" r="2" data-webtasks-id="84ee8300-aeb4-43b3"></circle><circle cx="16" cy="2" r="2" data-webtasks-id="1f2f90f9-fcd8-4f40"></circle></g></svg></button></div></header><div id="_1688361922706_e3" itemids="7016042712,7016042820" class="board_section__task_list" data-testid="board-task-list" role="group" aria-labelledby="section-127552669" draggable="true" data-webtasks-id="36da4b28-7a20-479e"><div data-draggable="" draggable="true" aria-selected="false" data-selection-id="_1688361922706_e3/7016042712" class="board_task" data-testid="task-card" role="group" aria-labelledby="task-7016042712-title" data-task-navigation-element="7016042712" id="task-7016042712" data-webtasks-id="357cfd10-e20e-48e9"><button class="board_task__button" aria-label="Open task details" data-webtasks-id="721f2c06-8a62-4ceb"></button><div class="board_task__details__checkbox" data-webtasks-id="6e6fe1ed-0f9d-4ab7"><button type="button" class="task_checkbox priority_1" role="checkbox" aria-checked="false" aria-label="Checkbox for Estimate renovation costs" data-webtasks-id="8e663ff7-56ed-4647"><span class="task_checkbox__circle" data-webtasks-id="53e53cc4-681b-42d4"></span><svg width="24" height="24" data-webtasks-id="d57fcdd2-6f22-4e4f"><path fill="currentColor" d="M11.23 13.7l-2.15-2a.55.55 0 0 0-.74-.01l.03-.03a.46.46 0 0 0 0 .68L11.24 15l5.4-5.01a.45.45 0 0 0 0-.68l.02.03a.55.55 0 0 0-.73 0l-4.7 4.35z" data-webtasks-id="d9dce27b-28dc-4dd6"></path></svg><span class="task_checkbox__border" data-webtasks-id="e168661b-51cf-4159"></span></button></div><div class="board_task__details_meta" data-webtasks-id="d28566a8-8ec8-4a87"><div class="board_task__details" data-webtasks-id="4a9c4651-7398-43be"><div id="task-7016042712-title" class="board_task__details__content" data-webtasks-id="1e89bce0-d5ae-4fc1"><div class="e3d32437 _2a3b75a1" data-webtasks-id="60aaa5ad-1e2d-44da"><div class="task_content board_task__details__content__inner_content" data-webtasks-id="c87e7686-8512-4ada">Estimate renovation costs</div></div></div><div class="board_task__details__menu_assignee" data-webtasks-id="1d3c5287-504d-43c1"></div></div></div></div><div data-draggable="" draggable="true" aria-selected="false" data-selection-id="_1688361922706_e3/7016042820" class="board_task" data-testid="task-card" role="group" aria-labelledby="task-7016042820-title" data-task-navigation-element="7016042820" id="task-7016042820" data-webtasks-id="2d4b29bf-5029-47e0"><button class="board_task__button" aria-label="Open task details" data-webtasks-id="ac176305-19f5-46d5"></button><div class="board_task__details__checkbox" data-webtasks-id="fdc22082-8873-43b0"><button type="button" class="task_checkbox priority_1" role="checkbox" aria-checked="false" aria-label="Checkbox for Research and compare prices for materials" data-webtasks-id="bb9420b6-10c6-46a7"><span class="task_checkbox__circle" data-webtasks-id="f4df36be-9daa-49b3"></span><svg width="24" height="24" data-webtasks-id="9fd5ff7b-64e3-4e10"><path fill="currentColor" d="M11.23 13.7l-2.15-2a.55.55 0 0 0-.74-.01l.03-.03a.46.46 0 0 0 0 .68L11.24 15l5.4-5.01a.45.45 0 0 0 0-.68l.02.03a.55.55 0 0 0-.73 0l-4.7 4.35z" data-webtasks-id="54151a47-8903-4a44"></path></svg><span class="task_checkbox__border" data-webtasks-id="db019569-be5e-45f3"></span></button></div><div class="board_task__details_meta" data-webtasks-id="6403fc68-ba22-4585"><div class="board_task__details" data-webtasks-id="4abfa115-4265-4e40"><div id="task-7016042820-title" class="board_task__details__content" data-webtasks-id="fc444373-b204-450b"><div class="e3d32437 _2a3b75a1" data-webtasks-id="6860865c-73b5-4c8f"><div class="task_content board_task__details__content__inner_content" data-webtasks-id="7d6efd59-f72e-4092">Research and compare prices for materials</div></div></div><div class="board_task__details__menu_assignee" data-webtasks-id="eb592427-6562-4c5a"></div></div></div></div></div><footer class="board_section__footer" data-testid="board-section-footer" aria-labelledby="section-127552669" draggable="true" data-webtasks-id="5979d9f1-9a5c-4182"><div class="board_section__footer__add_task" data-webtasks-id="648b5b88-a40a-4bd5"><button type="button" data-add-task-navigation-element="true" aria-label="Add task to Budgeting" class="plus_add_button" data-webtasks-id="807f8427-d3ea-4253"><span class="icon_add" aria-hidden="true" data-webtasks-id="22f86a2a-a854-4305"><svg width="13" height="13" data-webtasks-id="4f2d1258-90f2-405f"><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="1c79f005-a103-4d70"></path></svg></span>Add task</button></div></footer></section><div class="board_add_section_trigger__container" data-webtasks-id="6b6ec8a0-4f8d-4d68"><button class="board_add_section_trigger board_add_section_trigger-exit-done" data-webtasks-id="73a4f01b-9702-4bb6"><span class="board_add_section_trigger__label" data-webtasks-id="ed395c46-987e-4669">Add section</span></button></div><section data-draggable="" draggable="true" data-is-dropzone="false" data-is-active="false" data-is-combining="false" aria-label="Research Materials" class="board_section board_view__section_board" data-archived="false" data-column-navigation-element="_1688361922707_e3" data-editing="false" data-is-empty="true" data-testid="board-section" data-webtasks-id="919875e4-111f-4191"><header class="board_section__header" draggable="true" id="section-127552670" data-webtasks-id="daabb245-6853-40f9"><div class="board_section__section_info" data-webtasks-id="457c34be-4a78-410a"><button class="board_section__title_edit_button" aria-label="Research Materials section. Click to edit" tabindex="0" data-webtasks-id="e1808a47-7756-43d8"><h3 class="board_section__title" data-webtasks-id="d2f273a7-20e9-42f4"><span class="simple_content" data-webtasks-id="d3455668-43a5-4297">Research Materials</span></h3></button><p class="board_section__task_count" data-webtasks-id="e85dad01-458f-4b96">0</p></div><div class="board_section__menu_trigger" data-webtasks-id="f630e0ab-9dd8-4b98"><button type="button" aria-label="section menu" class="section_head_menu" data-webtasks-id="378f1586-a4c3-47d2"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="eafc06e9-ad7a-4afe"><g fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(3 10)" data-webtasks-id="263aba76-d5a8-4b0b"><circle cx="2" cy="2" r="2" data-webtasks-id="88f27c25-0ca8-4d63"></circle><circle cx="9" cy="2" r="2" data-webtasks-id="25eef555-16eb-49ae"></circle><circle cx="16" cy="2" r="2" data-webtasks-id="67d96626-3fcd-49de"></circle></g></svg></button></div></header><div id="_1688361922707_e3" itemids="" data-droppable-is-empty="true" class="board_section__task_list" data-testid="board-task-list" role="group" aria-labelledby="section-127552670" draggable="true" data-webtasks-id="0a53d6aa-e311-485a"></div><footer class="board_section__footer" data-testid="board-section-footer" aria-labelledby="section-127552670" draggable="true" data-webtasks-id="bffcd675-a5cd-43da"><div class="board_section__footer__add_task" data-webtasks-id="bf85aee0-e15b-4738"><button type="button" data-add-task-navigation-element="true" aria-label="Add task to Research Materials" class="plus_add_button" data-webtasks-id="5a7ead38-569f-4462"><span class="icon_add" aria-hidden="true" data-webtasks-id="06940042-6a2c-4436"><svg width="13" height="13" data-webtasks-id="b6133c7d-69dc-461c"><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="77230e0d-1ac1-494c"></path></svg></span>Add task</button></div></footer></section><div class="board_add_section_trigger__container" data-webtasks-id="e387577b-e4f3-4b27"><button class="board_add_section_trigger board_add_section_trigger-exit-done" data-webtasks-id="fd5ef9fa-afe5-41ed"><span class="board_add_section_trigger__label" data-webtasks-id="31a90cee-2820-4c3f">Add section</span></button></div><section draggable="true" data-is-dropzone="false" data-is-active="false" data-is-combining="false" aria-label="Hire Contractors" class="board_section board_view__section_board" data-archived="false" data-column-navigation-element="_1688364844090_e3" data-editing="false" data-is-empty="false" data-testid="board-section" data-webtasks-id="f42752fc-6f11-4b3b" data-draggable=""><header class="board_section__header" draggable="true" id="section-127555080" data-webtasks-id="f3511c12-70a7-490f"><div class="board_section__section_info" data-webtasks-id="e3da3feb-1b3b-4ae3"><button class="board_section__title_edit_button" aria-label="Hire Contractors section. Click to edit" tabindex="0" data-webtasks-id="8c56b420-6ec6-40ae"><h3 class="board_section__title" data-webtasks-id="c72f3acb-7ed9-41ec"><span class="simple_content" data-webtasks-id="9c25b732-37fc-41d1">Hire Contractors</span></h3></button><p class="board_section__task_count" data-webtasks-id="59dfad63-5c65-48d0">2</p></div><div class="board_section__menu_trigger" data-webtasks-id="aea29554-986a-41e8"><button type="button" aria-label="section menu" class="section_head_menu" data-webtasks-id="f4457b23-f89d-481e"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="ef02af2c-40b7-457f"><g fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(3 10)" data-webtasks-id="ef369f0d-e32f-4698"><circle cx="2" cy="2" r="2" data-webtasks-id="9ca8e5da-410a-44cf"></circle><circle cx="9" cy="2" r="2" data-webtasks-id="c20fbc30-b83b-4c99"></circle><circle cx="16" cy="2" r="2" data-webtasks-id="079c65d1-a4eb-4346"></circle></g></svg></button></div></header><div id="_1688364844090_e3" itemids="7016137619,7016137876" class="board_section__task_list" data-testid="board-task-list" role="group" aria-labelledby="section-127555080" draggable="true" data-webtasks-id="490ec7a6-021b-40c8"><div data-draggable="" draggable="true" aria-selected="false" data-selection-id="_1688364844090_e3/7016137619" class="board_task" data-testid="task-card" role="group" aria-labelledby="task-7016137619-title" data-task-navigation-element="7016137619" id="task-7016137619" data-webtasks-id="84df87fe-2e2d-4d76"><button class="board_task__button" aria-label="Open task details" data-webtasks-id="e1707318-0e6c-447d"></button><div class="board_task__details__checkbox" data-webtasks-id="a1b9d7ec-666c-41d2"><button type="button" class="task_checkbox priority_1" role="checkbox" aria-checked="false" aria-label="Checkbox for Research and interview potential contractors" data-webtasks-id="5de917fe-b97e-4ec3"><span class="task_checkbox__circle" data-webtasks-id="d211b564-f8d0-40df"></span><svg width="24" height="24" data-webtasks-id="2f8f6e33-dd9c-4673"><path fill="currentColor" d="M11.23 13.7l-2.15-2a.55.55 0 0 0-.74-.01l.03-.03a.46.46 0 0 0 0 .68L11.24 15l5.4-5.01a.45.45 0 0 0 0-.68l.02.03a.55.55 0 0 0-.73 0l-4.7 4.35z" data-webtasks-id="199c3273-1db3-4cea"></path></svg><span class="task_checkbox__border" data-webtasks-id="1cc75e1c-fb1b-4f55"></span></button></div><div class="board_task__details_meta" data-webtasks-id="02149afb-8e68-4cf0"><div class="board_task__details" data-webtasks-id="b249b96a-be5f-409e"><div id="task-7016137619-title" class="board_task__details__content" data-webtasks-id="9b4b73a8-f23d-4bce"><div class="e3d32437 _2a3b75a1" data-webtasks-id="faa350b9-8bcc-4b32"><div class="task_content board_task__details__content__inner_content" data-webtasks-id="02c1fce0-463d-4eb9">Research and interview potential contractors</div></div></div><div class="board_task__details__menu_assignee" data-webtasks-id="7b9d42d1-228e-46c0"><button type="button" aria-expanded="false" data-testid="more_menu" data-action-hint="task-overflow-menu" aria-label="More task actions" class="board_task__details__menu_assignee__menu_button" tabindex="0" data-webtasks-id="6579460e-7fb9-4804"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="89f235a7-051a-449f"><g fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(3 10)" data-webtasks-id="0c1853f0-1345-4e48"><circle cx="2" cy="2" r="2" data-webtasks-id="249d7668-8346-45a7"></circle><circle cx="9" cy="2" r="2" data-webtasks-id="97d53fc0-81cb-4cfd"></circle><circle cx="16" cy="2" r="2" data-webtasks-id="1e03a1b6-5487-439c"></circle></g></svg></button></div></div></div></div><div data-draggable="" draggable="true" aria-selected="false" data-selection-id="_1688364844090_e3/7016137876" class="board_task" data-testid="task-card" role="group" aria-labelledby="task-7016137876-title" data-task-navigation-element="7016137876" id="task-7016137876" data-webtasks-id="3beb8318-f9a0-4a59"><button class="board_task__button" aria-label="Open task details" data-webtasks-id="9b68fbf8-9639-464e"></button><div class="board_task__details__checkbox" data-webtasks-id="79c9068c-e0c6-4570"><button type="button" class="task_checkbox priority_1" role="checkbox" aria-checked="false" aria-label="Checkbox for Obtain quotes for different renovation tasks" data-webtasks-id="4b7cf1ef-b670-4797"><span class="task_checkbox__circle" data-webtasks-id="6a7b6abd-63bb-4fcb"></span><svg width="24" height="24" data-webtasks-id="0ca52711-e18d-4661"><path fill="currentColor" d="M11.23 13.7l-2.15-2a.55.55 0 0 0-.74-.01l.03-.03a.46.46 0 0 0 0 .68L11.24 15l5.4-5.01a.45.45 0 0 0 0-.68l.02.03a.55.55 0 0 0-.73 0l-4.7 4.35z" data-webtasks-id="4cc72418-ab2e-4ddf"></path></svg><span class="task_checkbox__border" data-webtasks-id="d10f0e30-deab-4ff4"></span></button></div><div class="board_task__details_meta" data-webtasks-id="715ba922-19bb-4b7d"><div class="board_task__details" data-webtasks-id="d9a76e43-3098-4738"><div id="task-7016137876-title" class="board_task__details__content" data-webtasks-id="cdecd5eb-ff47-43f3"><div class="e3d32437 _2a3b75a1" data-webtasks-id="17f1e085-1ff0-4bbe"><div class="task_content board_task__details__content__inner_content" data-webtasks-id="e5e7885b-7bc8-4d3e">Obtain quotes for different renovation tasks</div></div></div><div class="board_task__details__menu_assignee" data-webtasks-id="eb594d54-ef78-4e75"><button type="button" aria-expanded="false" data-testid="more_menu" data-action-hint="task-overflow-menu" aria-label="More task actions" class="board_task__details__menu_assignee__menu_button" tabindex="0" data-webtasks-id="a40c6eea-b78e-4f02"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="c87443d0-af85-4637"><g fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(3 10)" data-webtasks-id="342a174e-5af1-469f"><circle cx="2" cy="2" r="2" data-webtasks-id="dee29374-9b5e-4812"></circle><circle cx="9" cy="2" r="2" data-webtasks-id="514aa143-36d3-4ec8"></circle><circle cx="16" cy="2" r="2" data-webtasks-id="b65aa8ee-ff43-45f9"></circle></g></svg></button></div></div></div></div></div><footer class="board_section__footer" data-testid="board-section-footer" aria-labelledby="section-127555080" draggable="true" data-webtasks-id="6f5ecc78-df82-46be"><div class="board_section__footer__add_task" data-webtasks-id="77a946ce-29f1-4917"><button type="button" data-add-task-navigation-element="true" aria-label="Add task to Hire Contractors" class="plus_add_button" data-webtasks-id="e34aaeae-c9d9-4689"><span class="icon_add" aria-hidden="true" data-webtasks-id="36ffda65-d2ff-4db5"><svg width="13" height="13" data-webtasks-id="552c6165-8de7-49b8"><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="9019f63f-d523-4ddd"></path></svg></span>Add task</button></div></footer></section><div class="board_add_section_trigger__container" data-webtasks-id="ba53e7d2-63fe-4240"><button class="board_add_section_trigger board_add_section_trigger-exit-done" data-webtasks-id="b0cb5338-5a04-4803"><span class="board_add_section_trigger__label" data-webtasks-id="5090053d-dc7c-45a1">Add section</span></button></div><section draggable="false" data-is-dropzone="false" data-is-active="false" data-is-combining="false" aria-label="Construction" class="board_section board_view__section_board" data-archived="false" data-column-navigation-element="_1688364844091_e3" data-editing="false" data-is-empty="false" data-testid="board-section" data-webtasks-id="e4072e69-4b43-4f49"><header class="board_section__header" draggable="false" id="section-127555085" data-webtasks-id="44f8205a-6479-47cf"><div class="board_section__section_info" data-webtasks-id="4b5c4f4b-5b69-4d6f"><button class="board_section__title_edit_button" aria-label="Construction section. Click to edit" tabindex="0" data-webtasks-id="79caa2fd-3abb-4f52"><h3 class="board_section__title" data-webtasks-id="6fd475ec-d6ff-4c9d"><span class="simple_content" data-webtasks-id="e300f130-c261-4bcd">Construction</span></h3></button><p class="board_section__task_count" data-webtasks-id="1786e429-ed58-49ce">1</p></div><div class="board_section__menu_trigger" data-webtasks-id="eb5b99f1-8ad3-467d"><button type="button" aria-label="section menu" class="section_head_menu" data-webtasks-id="6d435200-ba2a-4188"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="ecfd7f23-5585-4189"><g fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(3 10)" data-webtasks-id="192d71ab-4515-4d94"><circle cx="2" cy="2" r="2" data-webtasks-id="ebc8c7f6-7934-45a3"></circle><circle cx="9" cy="2" r="2" data-webtasks-id="48933bb5-32d3-4120"></circle><circle cx="16" cy="2" r="2" data-webtasks-id="7f3a771e-e3cf-4a1f"></circle></g></svg></button></div></header><div id="_1688364844091_e3" itemids="7016138513" class="board_section__task_list" data-testid="board-task-list" role="group" aria-labelledby="section-127555085" draggable="false" data-webtasks-id="7662477d-2e86-41d5"><div data-draggable="" draggable="true" aria-selected="false" data-selection-id="_1688364844091_e3/7016138513" class="board_task" data-testid="task-card" role="group" aria-labelledby="task-7016138513-title" data-task-navigation-element="7016138513" id="task-7016138513" data-webtasks-id="c182ae85-85ce-4f7b"><button class="board_task__button" aria-label="Open task details" data-webtasks-id="0e9e96f1-e183-43e0"></button><div class="board_task__details__checkbox" data-webtasks-id="28ad6fb5-350d-4640"><button type="button" class="task_checkbox priority_1" role="checkbox" aria-checked="false" aria-label="Checkbox for Schedule demolition and construction dates" data-webtasks-id="05e178be-dc67-4d21"><span class="task_checkbox__circle" data-webtasks-id="80d87f32-c8f9-47fd"></span><svg width="24" height="24" data-webtasks-id="76fd4477-1952-430e"><path fill="currentColor" d="M11.23 13.7l-2.15-2a.55.55 0 0 0-.74-.01l.03-.03a.46.46 0 0 0 0 .68L11.24 15l5.4-5.01a.45.45 0 0 0 0-.68l.02.03a.55.55 0 0 0-.73 0l-4.7 4.35z" data-webtasks-id="69606b76-1ee9-49f9"></path></svg><span class="task_checkbox__border" data-webtasks-id="ba7a776a-f149-43b0"></span></button></div><div class="board_task__details_meta" data-webtasks-id="5f6921ae-c536-4cab"><div class="board_task__details" data-webtasks-id="77c479ca-62d1-4d8a"><div id="task-7016138513-title" class="board_task__details__content" data-webtasks-id="642df0b5-25db-4f38"><div class="e3d32437 _2a3b75a1" data-webtasks-id="0745719a-7005-4a0f"><div class="task_content board_task__details__content__inner_content" data-webtasks-id="3f864ee0-9c2e-480d">Schedule demolition and construction dates</div></div></div><div class="board_task__details__menu_assignee" data-webtasks-id="911a39b8-a9d3-4307"></div></div></div></div></div><footer class="board_section__footer" data-testid="board-section-footer" aria-labelledby="section-127555085" draggable="false" data-webtasks-id="6408055e-0d61-4177"><div class="board_section__footer__task_editor" data-webtasks-id="9ddc4d05-9bca-488b"><div class="_2a3b75a1" data-webtasks-id="30b1f6cf-ff59-40cb"><form class="task_editor focus-marker-enabled-within customized_inline_wrapper" data-webtasks-id="e7804709-975f-490d"><div class="task_editor__editing_area" data-webtasks-id="3b559f47-4ed6-4ea3"><div class="task_editor__input_fields" data-webtasks-id="55c74d0f-4d52-430e"><div class="task_editor__content_field no-focus-marker" data-webtasks-id="34032f60-f958-4ced"><div class="_2a3b75a1 _509a57b4 _1fb9d90e _4a93668a" data-webtasks-id="6b4dda41-ebcd-4a2d"><div class="e3d32437 _2a3b75a1" data-webtasks-id="217a12b5-b8b4-4ad7"><div class="kr2Srm5 no-focus-marker task_editor__content_field--semibold" data-webtasks-id="9cd1b4fb-633a-4ca9"><div contenteditable="true" data-typist-editor="true" data-rich-text="true" role="textbox" aria-readonly="false" aria-multiline="true" aria-label="Task name" translate="no" class="ProseMirror" tabindex="0" data-webtasks-id="d3d6e9e4-0eb4-4dc8"><p data-placeholder="Task name" class="is-empty is-editor-empty" data-webtasks-id="8733ed81-3ff3-4522"><br class="ProseMirror-trailingBreak" data-webtasks-id="c4520c4d-5a36-46f9"></p></div></div></div></div></div><div class="task_editor__description_container _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="04e61dba-0c2c-4ab3"><div class="_2a3b75a1 _509a57b4 _1fb9d90e _4a93668a" data-webtasks-id="da9b9b03-8632-45c9"><div class="e3d32437 _2a3b75a1" data-webtasks-id="8fc23ba5-b7a6-4b02"><div class="kr2Srm5 task_editor__description_field no-focus-marker" data-webtasks-id="92621aaa-68ef-4860"><div contenteditable="true" data-typist-editor="true" data-rich-text="true" role="textbox" aria-readonly="false" aria-multiline="true" aria-label="Description" translate="no" class="ProseMirror" tabindex="0" data-webtasks-id="f6d25c76-fc50-4c44"><p data-placeholder="Description" class="is-empty is-editor-empty" data-webtasks-id="6a63bb5b-6563-4f06"><br class="ProseMirror-trailingBreak" data-webtasks-id="8301f0da-f9c1-4320"></p></div></div></div></div></div></div><div class="_2a3b75a1 c7313022" data-webtasks-id="16b666d3-55be-4515"><div class="LGR27FZ _2a3b75a1 _509a57b4 e5a9206f _3692f9c2" data-webtasks-id="071352cf-cad1-4fa6"><div class="_2a3b75a1" data-webtasks-id="a2d3452f-4679-4a30"><div data-command="" role="button" data-disclosure="" aria-expanded="false" id=":rd:" aria-haspopup="menu" aria-label="More actions" class="_7mOB4eH _2a3b75a1" tabindex="0" data-webtasks-id="44d3870b-67b8-4a24"><div class="Bk3otk8 _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="7a9b8f0b-a01d-48ef"><div class="_7BwfDu4 a83bd4e0 _6a3e5ade _2a3b75a1" data-webtasks-id="e96913c2-ea83-4b06"><svg width="15" height="3" data-webtasks-id="cf09c221-2f8d-46ff"><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="1fe91ee5-d755-459e"></path></svg></div><div class="_2a3b75a1 _509a57b4 e5a9206f _50ba6b6b _2580a74b" data-webtasks-id="206d46d8-0bf3-4a72"></div></div></div><div class="N6RijzB" data-webtasks-id="398635a2-9016-4fda"></div><div class="N6RijzB" data-webtasks-id="c1b94322-9041-4791"></div></div></div></div></div><div class="task_editor__footer _2a3b75a1 _509a57b4 d3449da6 e5a9206f _904ef8fe _8c75067a" data-webtasks-id="89bde8d3-a40d-4285"><div class="_2a3b75a1 b85e3dfa f6342c26" data-webtasks-id="c573ed1a-e620-4b01"><button aria-label="Select a project" aria-owns="dropdown-select-9-popup" aria-controls="dropdown-select-9-popup" aria-expanded="false" aria-haspopup="listbox" tabindex="0" type="button" aria-disabled="false" class="vTmg+vc _8313bd46 f169a390 _5e45d59f _2a3b75a1 _56a651f6" data-webtasks-id="cf1f012c-3585-48a7"><span class="_0051d171 _2a3b75a1 f973eed0 f6342c26" data-webtasks-id="02acbb8e-c034-4851"><div class="XmT0ACS _2a3b75a1 _509a57b4 e5a9206f _3692f9c2 _50ba6b6b _985b733f _2580a74b" data-webtasks-id="e09e5160-416d-41e5"><svg width="16" height="16" viewBox="0 0 16 16" class="project_icon" style="color: rgb(224, 81, 148);" data-webtasks-id="ad05bb4f-429c-4f7a"><circle cx="8" cy="8" r="3.5" fill="currentColor" data-webtasks-id="328eb276-bea9-46d7"></circle></svg><span class="mWmGP++" data-webtasks-id="5a351f24-493f-49fc">Home Renovation Project</span><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" data-webtasks-id="4f9e74c7-c07d-4113"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.748 2.499a.5.5 0 01.206.644c-.012.026-.025.051-.035.078L5.95 14.14a.335.335 0 01-.038.076.5.5 0 01-.865-.495c.012-.025.025-.051.035-.078l3.97-10.92a.334.334 0 01.038-.076.5.5 0 01.659-.15z" fill="currentColor" data-webtasks-id="c50b9f07-3f8b-49f2"></path></svg><span class="simple_content mWmGP++" data-webtasks-id="8a50822e-4953-4ab1">Construction</span><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" data-webtasks-id="d0f06543-af16-4e63"><path d="M7.646 9.646L4.854 6.854A.5.5 0 015.207 6h5.586a.5.5 0 01.353.854L8.354 9.646a.5.5 0 01-.708 0z" fill="currentColor" data-webtasks-id="d62c47bf-0b77-4e59"></path></svg></div></span></button></div><div data-testid="task-editor-action-buttons" class="task_editor__footer__action-buttons _2a3b75a1 _509a57b4 e5a9206f _3692f9c2 _50ba6b6b _985b733f c68f8bf6" data-webtasks-id="aed28bcd-37a8-43db"><button aria-label="Cancel" type="button" aria-disabled="false" tabindex="0" class="_8313bd46 _54d56775 _5e45d59f _8644eccb _2a3b75a1" data-webtasks-id="274b60df-a000-4695"><svg viewBox="0 0 24 24" class="icon_close" width="24" height="24" data-webtasks-id="d3215af1-f5c9-437a"><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="ecd738c3-6c5b-4676"></path></svg></button><button data-testid="task-editor-submit-button" aria-label="Add task" type="button" aria-disabled="true" tabindex="0" class="_8313bd46 _7a4dbd5f _5e45d59f _8644eccb _43792df1 _2a3b75a1" data-webtasks-id="6e38d481-1ba3-4d93"><svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="0a087ab6-5b0d-4159"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.18 6.396C7 6.642 7 7.054 7 7.878V11l6.715.674c.38.038.38.614 0 .652L7 13v3.122c0 .824 0 1.236.18 1.482.157.214.4.356.669.39.308.041.687-.15 1.444-.531l8.183-4.122c.861-.434 1.292-.651 1.432-.942a.915.915 0 000-.798c-.14-.29-.57-.508-1.433-.942l-8.18-4.122c-.758-.381-1.137-.572-1.445-.532a.986.986 0 00-.67.391z" fill="currentColor" data-webtasks-id="560689f9-e744-4d19"></path></svg></button></div></div></form></div></div></footer></section><div class="board_view__add_section" data-webtasks-id="bc8bf63f-b68f-490a"><button class="board_add_section_button" data-webtasks-id="666fc698-e491-4cae"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="board_add_section_button__icon" data-webtasks-id="f5664fe2-1852-4f3a"><path fill="currentColor" d="M19.5 20a.5.5 0 010 1h-15a.5.5 0 010-1h15zM18 6a2 2 0 012 2v8a2 2 0 01-2 2H6a2 2 0 01-2-2V8a2 2 0 012-2h12zm0 1H6a1 1 0 00-1 1v8a1 1 0 001 1h12a1 1 0 001-1V8a1 1 0 00-1-1zm-6 2a.5.5 0 01.5.5v2h2a.5.5 0 010 1h-2v2a.5.5 0 01-1 0v-2h-2a.5.5 0 010-1h2v-2A.5.5 0 0112 9zm7.5-6a.5.5 0 010 1h-15a.5.5 0 010-1h15z" data-webtasks-id="0d3525af-b3e8-4e84"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="board_add_section_button__icon_filled" data-webtasks-id="150d8777-2db5-4474"><path fill="currentColor" d="M19.5 20a.5.5 0 010 1h-15a.5.5 0 010-1h15zM18 6a2 2 0 012 2v8a2 2 0 01-2 2H6a2 2 0 01-2-2V8a2 2 0 012-2h12zm-6 3a.5.5 0 00-.5.5v2h-2a.5.5 0 00-.492.41L9 12a.5.5 0 00.5.5h2v2a.5.5 0 00.41.492L12 15a.5.5 0 00.5-.5v-2h2a.5.5 0 00.492-.41L15 12a.5.5 0 00-.5-.5h-2v-2a.5.5 0 00-.41-.492zm7.5-6a.5.5 0 010 1h-15a.5.5 0 010-1h15z" data-webtasks-id="e513bf30-5918-4a7d"></path></svg><span class="board_add_section_button__label" data-webtasks-id="47f3670d-d9fb-4681">Add section</span></button></div></div></div></div></div></main></div></div><div class="AD6ugiP _2a3b75a1 _2286072d" data-webtasks-id="1d986d98-1a44-4a7b"></div><div id="DndDescribedBy-0" style="display: none;" data-webtasks-id="d49670f6-2782-4c91"> |
|
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="b334d979-3bb8-4bdc"></div></div></div><script nonce="" data-webtasks-id="a2e98586-e094-42a2">cdnLoadScript('body')("/assets/vendor~add~app~authentication~electron-login~253ae210.c7d1aa55aaaa49d4fa61d87f0a1123ee.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.06d98d8ebd377103bf95291651b3f3c4.js"); |
|
|
|
cdnLoadScript('body')("/assets/app~5a11b65b.812be39e91f453b8d9bbae15ba908d06.js"); |
|
|
|
cdnLoadScript('body')("/assets/app~c714bc7b.1b44bb0708b23dc1cef8397eb928e1f3.js"); |
|
|
|
cdnLoadScript('body')("/assets/app~31e116db.31c4f27b725e451c2b052db0571b64a0.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.c7d1aa55aaaa49d4fa61d87f0a1123ee.js" crossorigin="anonymous" data-webtasks-id="f2967041-ca6e-426f"></script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~authentication~electron-login~b5906859.05ba931ebac209f7999b443e72ae3280.js" crossorigin="anonymous" data-webtasks-id="2f793e02-77fd-44bc"></script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~electron-login~253ae210.6d50f66ae22a3fef28a890ded269d2b7.js" crossorigin="anonymous" data-webtasks-id="ce05066f-b7fb-4b40"></script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~electron-login~690b702c.773011852ea4818c3a7819fec150864e.js" crossorigin="anonymous" data-webtasks-id="f004f9cc-486e-4e2b"></script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~authentication~275fb47b.cdc58f7ad4f5564716aa57a108fc9314.js" crossorigin="anonymous" data-webtasks-id="560cf014-881a-48c7"></script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~253ae210.b920a54c73aacfe924ebd4a3ff1244a9.js" crossorigin="anonymous" data-webtasks-id="868e4905-53bb-4ac9"></script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~f9ca8911.885b0816e84a1903d7ce10be67899880.js" crossorigin="anonymous" data-webtasks-id="122cca1c-3346-4482"></script><script src="https://todoist.b-cdn.net/assets/vendor~app~electron-login~678f84af.4b3d2b486103d5026993534ede5dd05a.js" crossorigin="anonymous" data-webtasks-id="957542d9-8112-47d2"></script><script src="https://todoist.b-cdn.net/assets/vendor~app~authentication~253ae210.c16ea5b2ef8df5a14db5a8209a526ab3.js" crossorigin="anonymous" data-webtasks-id="de340fd6-6378-49df"></script><script src="https://todoist.b-cdn.net/assets/vendor~app~connected-card~bf6881bb.5d0d79922167d69fd4f807545ba2460f.js" crossorigin="anonymous" data-webtasks-id="a733ca20-a8bd-4546"></script><script src="https://todoist.b-cdn.net/assets/vendor~app~253ae210.b525fef0e454511e0f1ea125ff91c804.js" crossorigin="anonymous" data-webtasks-id="591471f5-2fa6-48dc"></script><script src="https://todoist.b-cdn.net/assets/app~d0ae3f07.06d98d8ebd377103bf95291651b3f3c4.js" crossorigin="anonymous" data-webtasks-id="c5b2934d-8a68-41fd"></script><script src="https://todoist.b-cdn.net/assets/app~5a11b65b.812be39e91f453b8d9bbae15ba908d06.js" crossorigin="anonymous" data-webtasks-id="c2a1d228-fb7d-44bc"></script><script src="https://todoist.b-cdn.net/assets/app~c714bc7b.1b44bb0708b23dc1cef8397eb928e1f3.js" crossorigin="anonymous" data-webtasks-id="ff69d29b-e6a1-402a"></script><script src="https://todoist.b-cdn.net/assets/app~31e116db.31c4f27b725e451c2b052db0571b64a0.js" crossorigin="anonymous" data-webtasks-id="21ede939-8824-4eb8"></script><script src="https://todoist.b-cdn.net/assets/app~fc66dfb5.26aaa8f8fda8705013bf63cba64f9e18.js" crossorigin="anonymous" data-webtasks-id="304b5114-f148-4f9c"></script><script src="https://todoist.b-cdn.net/assets/app~2cb4426d.3c90e017d13b7f0812ad9042487ee9da.js" crossorigin="anonymous" data-webtasks-id="8bbd6eaa-075e-4d82"></script><div class="ist_tooltip_holder" style="display: none;" data-webtasks-id="7d87b201-c448-4d1f"></div><div id="id-iu0yg4" data-webtasks-id="7be06f21-38fd-4e39"><div data-webtasks-id="321bf6b3-b66d-48d7"><div class="_616cc3f3 _2a3b75a1 _0847ebf3 f0941ead b75f86cd _078feb3c _8c75067a" data-webtasks-id="cc53aaee-b9ce-4542"><div class="_2a3b75a1 _509a57b4 _1fb9d90e _43e5f8e9 _8c75067a" data-webtasks-id="58413827-f15d-4e84"><div role="alert" aria-live="polite" class="_1b5f8e86 _2a3b75a1 _509a57b4 eb6097f1 f0941ead b75f86cd _078feb3c e5a9206f _50ba6b6b a87016fa _63ba3dfa _5fe4d5e3" data-webtasks-id="e90ff63d-f080-4c56" style=""><div class="_2a3b75a1 bd023b96 _4a93668a" data-webtasks-id="5251a171-7bac-4fb5"><div class="a83bd4e0 _2a3b75a1" data-webtasks-id="d7ba8e61-9319-4936">Task added to <a aria-current="page" class="fdc181b3 _2a3b75a1 _4a786bb9 active" href="/app/project/2315367588" data-webtasks-id="542f2a02-df22-47d7"><span class="simple_content" data-webtasks-id="65379e68-454e-48c8">Home Renovation Project</span></a></div></div><div class="ce2e3476 _2a3b75a1 _509a57b4 _0b927c57 _8e9bf2ee _681f65ff c76cb3c7 e5a9206f _50ba6b6b _95a98d2a" data-webtasks-id="4ad03c88-1051-4525"><button type="button" aria-disabled="false" class="_8313bd46 _907a61ca _8b7f1a82 _2a3b75a1 _56a651f6" data-webtasks-id="b513534c-ad65-4db4"><span class="_0051d171 _2a3b75a1 f973eed0 f6342c26" data-webtasks-id="a90498c4-175f-4b6c">Open</span></button></div><div class="ce2e3476 _2a3b75a1 _509a57b4 _0b927c57 _8e9bf2ee _681f65ff c76cb3c7 e5a9206f _50ba6b6b _95a98d2a" data-webtasks-id="5055459c-6c6c-46dd"><button aria-label="Close" type="button" aria-disabled="false" tabindex="0" class="_8313bd46 f169a390 _8b7f1a82 _8644eccb _2a3b75a1" data-webtasks-id="ca77804e-225e-40e1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="33f6c142-c17b-4631"><path fill="currentColor" d="M5.146 5.146a.5.5 0 0 1 .708 0L12 11.293l6.146-6.147a.5.5 0 0 1 .638-.057l.07.057a.5.5 0 0 1 0 .708L12.707 12l6.147 6.146a.5.5 0 0 1 .057.638l-.057.07a.5.5 0 0 1-.708 0L12 12.707l-6.146 6.147a.5.5 0 0 1-.638.057l-.07-.057a.5.5 0 0 1 0-.708L11.293 12 5.146 5.854a.5.5 0 0 1-.057-.638z" data-webtasks-id="9e0c6b8c-c30f-4dd1"></path></svg></button></div></div></div></div></div></div></body> |