CINXE.COM
Ping Identity Support
<!DOCTYPE html><html lang="en-US" dir="ltr"><head><title>Ping Identity Support</title><script> // [START] Setting the correct Site Role for Guests const siteRoleSelectorArray = [ '.forceChatterFeedItemHeader div p .forceChatterEntityLink[data-id^="005"] + span' ,'.forceChatterComment div p .forceChatterEntityLink[data-id^="005"] span.cuf-entityAdditionalLabel' ,'div.cuf-commentBy .forceChatterEntityLink[data-id^="005"] span.cuf-entityAdditionalLabel' ,'.topSection div.slds-no-space div.slds-grid--vertical div.communityRole' ]; const siteRoleSelector = siteRoleSelectorArray.join(', '); const siteRoleMap = { 'Customer': 'Community Member' ,'Partner': 'Ping Identity Partner' ,'Employee': 'Ping Identity' }; let count = 0; let currentUrl = window.location.href; let siteRoleTimerInterval; let previousChatterLabels; function startSiteRoleTimer() { currentUrl = window.location.href; count = 0; if (currentUrl.includes('/s/question/') || currentUrl.includes('/s/profile/') || currentUrl.includes('/s/topic/') || currentUrl.includes('/s/article/') || currentUrl.includes('/s/case/') || currentUrl.includes('/s/feed/')) { siteRoleTimerInterval = setInterval(function() {siteRoleTimer();}, 333); } } window.addEventListener('popstate', function () { startSiteRoleTimer(); }); window.addEventListener("dispatchEventOnLoad", (event) => { startSiteRoleTimer(); }); window.history.pushState = new Proxy(window.history.pushState, { apply: (target, thisArg, argArray) => { startSiteRoleTimer(); return target.apply(thisArg, argArray); }, }); startSiteRoleTimer(); function siteRoleTimer() { if (count >= 100) { clearInterval(siteRoleTimerInterval); } else { let chatterLabels = document.querySelectorAll(siteRoleSelector); let isDifferent = false; //ENER-86 start, this is to remove content sections that are empty from rendered knowledge sections const mainKnowledgeSelector = '.slds-col.slds-grid.slds-has-flexi-truncate.full.forcePageBlockItem.forcePageBlockItemView'; let knowledgeContent = document.querySelectorAll(mainKnowledgeSelector); knowledgeContent.forEach( function(currentKnowledgeItem) { //console.log('item',currentKnowledgeItem) if(currentKnowledgeItem.includes('Solution__c')){ return; } //see if child is present with content let selection = currentKnowledgeItem.querySelector('span span'); if(selection){ //console.log('selection',selection); //console.log('inner html', selection.innerHTML); if(selection.innerHTML === ''){ //console.log('blanking selection'); currentKnowledgeItem.innerHTML = ""; } } }); //ENER-86 end //ENER-300 start let currentUrl = window.location.href; const caseCommentsSelector = '.slds-feed__item-comments' const caseCommentsFooterSelector = '.slds-post__footer' let caseCommentsContent = document.querySelectorAll(caseCommentsSelector); let caseCommentsFooterContent = document.querySelectorAll(caseCommentsFooterSelector); if (currentUrl.includes('/s/case/') || currentUrl.includes('/s/feed/') || currentUrl.includes('/s/profile/') ) { caseCommentsContent.forEach( function(currentCaseCommentItem) { currentCaseCommentItem.innerHTML = ""; } ) caseCommentsFooterContent.forEach( function(currentCaseCommentFooterItem) { currentCaseCommentFooterItem.innerHTML = ""; } ) } //ENER-300 end if(chatterLabels?.length != previousChatterLabels?.length) { isDifferent = true; previousChatterLabels = chatterLabels; } if(chatterLabels && chatterLabels.length > 0 && isDifferent) { chatterLabels.forEach( function(chatterLabel) { chatterLabel.innerHTML = replaceSiteRole(chatterLabel.innerHTML); chatterLabel.classList.add('label_applied'); } ); let showMoreButtonList = document.querySelectorAll('button.cuf-showMore.slds-button'); showMoreButtonList.forEach( function(currButton) { currButton.addEventListener('click', function () { startSiteRoleTimer(); }); } ) // clearInterval(siteRoleTimerInterval); } } // count++; }(count) function replaceSiteRole(siteRoleString) { let responseSiteRole = siteRoleString; console.log('site role string',responseSiteRole); Object.keys(siteRoleMap).every(siteRowOld => { let siteRoleNew = siteRoleMap[siteRowOld]; if(siteRoleString == siteRowOld) { responseSiteRole = siteRoleNew; return false; } if(siteRoleString.includes('(' + siteRowOld + ')')) { responseSiteRole = siteRoleString.replace('(' + siteRowOld + ')', '(' + siteRoleNew + ')'); return false; } return true; }); console.log('site role string after',responseSiteRole); if(responseSiteRole.includes("Ping Identity") || responseSiteRole.includes("Ping Identity Partner") || responseSiteRole.includes("Community Member")){ return responseSiteRole; }else{ return ' ( Ping Community ) '; } } // [END] Setting the correct Site Role for Guests function getCookie(cname) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for(var i = 0; i <ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ''; } function setPISSessionCookie(sessionValue) { const sessionValueJSON = JSON.parse(sessionValue); sessionValueJSON.sidClientCookie = sidClientCookie; sessionValue = btoa(JSON.stringify(sessionValueJSON)); let expires = ''; if(sessionValueJSON.userSessionTimeout) { const expirationDate = new Date(); expirationDate.setTime(sessionValueJSON.userSessionTimeout); expires = ';expires=' + expirationDate.toUTCString(); } sessionValueJSON.sidClientCookie = sidClientCookie; document.cookie = 'pic_sid=' + sessionValue + expires + ';domain=.pingidentity.com;path=/'; document.cookie = 'pic_sid_sfdc=' + sessionValue + expires + ';path=/'; } function getSessionInfo() { const xmlhttp = new XMLHttpRequest(); const url = "/apex/SiteLogin?getUserState=true"; xmlhttp.onreadystatechange = function () { if (this.readyState == 4 && this.status == 200) { setPISSessionCookie(this.responseText); } }; xmlhttp.open("GET", url, true); xmlhttp.withCredentials = true; xmlhttp.send(); } const picSidCookie = getCookie('pic_sid'); const sidClientCookie = getCookie('sid_Client'); if(picSidCookie == '') { getSessionInfo(); }else { const picSidJson = JSON.parse(atob(picSidCookie)); if(sidClientCookie != null && (picSidJson.sidClientCookie != sidClientCookie || !picSidJson.signedOn)) { getSessionInfo(); } } </script> <link href="/resource/1728095617000/Community_PIC_CSS" type="text/css" rel="stylesheet"> <link href="/resource/1728232604000/Community_PIC_Override_CSS" type="text/css" rel="stylesheet"> <link href="https://assets.pingone.com/ux/icons/0.1.0/marketing.css" type="text/css" rel="stylesheet"> <link href="https://assets.pingone.com/ux/icons/0.1.0/ui-library.css" type="text/css" rel="stylesheet"> <meta property="og:title" content="Identity Security for the Digital Enterprise | Ping Identity" /> <meta property="og:type" content="website" /> <meta property="og:image" content="https://support.pingidentity.com/resource/1605706151000/OpenGraphImage" /> <meta name="twitter:title" content="Identity Security for the Digital Enterprise | Ping Identity" /> <meta name="twitter:card" content="summary" /> <meta name="twitter:image" content="https://support.pingidentity.com/resource/1605706151000/OpenGraphImage" /> <meta name="google-site-verification" content="T6Ja3YM-yXzJRJwPZcZTGRjkJ8-J-E9CXLxusmn5zU0" /> <!-- Google Tag Manager --> <script>(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.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-WL4MV68');</script> <!-- End Google Tag Manager --> <!-- SP-2466 --> <script> document.addEventListener('updateGTMdataLayer', function(e) { window.dataLayer = window.dataLayer || []; window.dataLayer.push({ 'gtm.start': new Date().getTime(), 'event': e.detail.event }); }); </script> <script> document.addEventListener('unauthenticated-banner-click', function(e) { window.dataLayer = window.dataLayer || []; window.dataLayer.push({ 'gtm.start': new Date().getTime(), 'type' : 'unauth-banner-click' }); }); document.addEventListener('authenticated-banner-click', function(e) { window.dataLayer = window.dataLayer || []; window.dataLayer.push({ 'gtm.start': new Date().getTime(), 'type' : 'auth-banner-click' }); }); </script> <!-- END SP-2466 --> <!-- Ensure the user is on support.pingidentity.com --> <script> const domainName = window.location.hostname pathName = window.location.pathname searchValue = window.location.search; if(domainName === 'community.pingidentity.com') { window.location.href = 'https://support.pingidentity.com/s/community-home'; } else if(domainName != 'support.pingidentity.com' && domainName != 'support-staging.pingidentity.com' && !domainName.includes('sandbox') && !domainName.includes('-ping.cs') && !domainName.includes('sitestudio') && !domainName.includes('preview')) { window.location.href = 'https://support.pingidentity.com' + pathName + searchValue; //console.log('window.location.href = ', 'https://support.pingidentity.com' + pathName + searchValue); } </script> <!-- If the url contains a courseId, ensure that the correct tab is selected --> <script> const urlParams = new URLSearchParams(searchValue); let hasCourseId = false; let hasTabset = false; urlParams.forEach((value, key) => { if (key === 'courseId') { hasCourseId = true; }else if (key === 'tabset-00cf2') { hasTabset = true; } }); if(hasCourseId && !hasTabset) { window.location = pathName + searchValue + '&tabset-00cf2=b929c'; } </script> <script> //SP-3447 Block Case Feed BEGIN //The FeedAuraWrapper wraps a representation of the Feed component and will fire a 'terminalFeedLoaded' event when //loaded and when the case buttons should be disabled. //We will check if this screen is Case based and will collect all the Comment and Like buttons and set them as disabled and not clickable. //Will also blank out their hfefs and remove 'View more details'. document.addEventListener("terminalFeedLoaded", function(event) { // (1) var myButtons = document.querySelectorAll('.avoidclicks button'); const avoidClicks = document.querySelector('.avoidclicks'); const article = avoidClicks.querySelector('article'); const articleAnchorTags = article.querySelectorAll('a'); const inputs = avoidClicks.querySelectorAll('lightning-input'); if(myButtons.length > 0) { avoidClicks.style.opacity = 1; avoidClicks.style.zIndex = 1; for(var i=0; i<myButtons.length; i++){ myButtons[i].tabIndex = -1; myButtons[i].disabled = true; } for(var i=0; i<articleAnchorTags.length; i++){ let anchorTag = articleAnchorTags[i]; anchorTag.style.border = "none"; anchorTag.style.pointerEvents = "none"; if(anchorTag.innerHTML.indexOf('View more details') > -1) { articleAnchorTags[i].remove(); } if(anchorTag.href.indexOf('/s/feed') > -1) { anchorTag.href = ''; } } for(var i=0; i<inputs.length; i++){ inputs[i].remove(); } } var myComPub = document.querySelectorAll('.avoidclicks .commentInputArea'); if(myComPub.length > 0) { for(var i=0; i<myComPub.length; i++){ myComPub[i].remove(); } } var myRsLink = document.querySelectorAll('.avoidclicks .rsLink'); if(myRsLink.length > 0) { for(var i=0; i<myRsLink.length; i++){ myRsLink[i].remove(); } } }); </script> <!-- End support.pingidentity.com redirect --><meta name="viewport" content="initial-scale=1.0, maximum-scale=5.0, minimum-scale=1.0, minimal-ui"/> <style> .auraMsgMask, #auraErrorMask, body .auraLoadingBox { display: none; } .spaError { padding: 10px; } .spaErrorLink { padding: 10px 0; display: block } </style><style>:root{--SBQQ-paletteIndigo10:rgb(32, 6, 71);--SBQQ-popoverWalkthroughHeaderImage:;--SBQQ-zIndexDialog:6000;--SBQQ-colorPickerSelectorWidth:14rem;--SBQQ-nubbinSizeDefault:1rem;--SBQQ-paletteCloudBlue40:rgb(5, 98, 138);--SBQQ-colorBackgroundContextBarInverseItemHover:rgba(255, 255, 255, 0.2);--SBQQ-dropZoneSlotHeight:0.25rem;--SBQQ-colorTextTabLabelSelected:rgb(1, 118, 211);--SBQQ-colorStrokeBrandActive:rgb(3, 45, 96);--SBQQ-paletteIndigo15:rgb(31, 9, 116);--SBQQ-cardBodyPadding:0 1rem;--SBQQ-varSpacingHorizontalSmall:0.75rem;--SBQQ-tableColorBackgroundHeaderResizableHandle:rgb(174, 174, 174);--SBQQ-colorBackgroundPathActiveHover:rgb(3, 45, 96);--SBQQ-brandPrimaryTransparent:rgba(21, 137, 238, 0.1);--SBQQ-brandPrimaryTransparent40:rgba(21, 137, 238, 0.4);--SBQQ-colorBorderButtonDefault:rgb(201, 201, 201);--SBQQ-paletteIndigo20:rgb(50, 29, 113);--SBQQ-popoverColorText:rgb(201, 201, 201);--SBQQ-paletteCloudBlue30:rgb(8, 73, 104);--SBQQ-colorTextButtonDefaultActive:rgb(1, 118, 211);--SBQQ-colorPickerSliderHeight:1.5rem;--SBQQ-colorTextIconInverse:rgb(255, 255, 255);--SBQQ-heightFooter:3.75rem;--SBQQ-splitViewColorBorder:rgb(201, 201, 201);--SBQQ-colorBorderRowSelectedHover:rgb(27, 150, 255);--SBQQ-fontSizeTextXxSmall:0.625rem;--SBQQ-lineHeightHeading:1.25;--SBQQ-cardHeaderMargin:0 0 0.75rem;--SBQQ-paletteIndigo30:rgb(47, 44, 183);--SBQQ-mqMediumLandscape:only screen and (min-width: 48em) and (min-aspect-ratio: 4/3);--SBQQ-brandBandImageHeightMedium:12.5rem;--SBQQ-illustrationColorSecondary:rgb(207, 233, 254);--SBQQ-zIndexDefault:1;--SBQQ-colorBorderSelectionActive:rgb(243, 243, 243);--SBQQ-paletteCloudBlue20:rgb(2, 50, 72);--SBQQ-utilityBarColorBackgroundNotificationFocus:rgb(201, 201, 201);--SBQQ-colorTextIconDefaultDisabled:rgb(201, 201, 201);--SBQQ-colorTextBrand:rgb(27, 150, 255);--SBQQ-durationToastMedium:9.6s;--SBQQ-colorBackgroundButtonIconActive:rgb(243, 243, 243);--SBQQ-brandHeaderContrastWeak:rgb(145, 145, 145);--SBQQ-colorBackgroundNotificationNew:rgb(243, 243, 243);--SBQQ-brandHeaderContrastInverseActive:rgb(238, 238, 238);--SBQQ-colorBackgroundInputCheckboxSelected:rgb(27, 150, 255);--SBQQ-progressColorBorder:rgb(255, 255, 255);--SBQQ-spacingXxxSmall:0.125rem;--SBQQ-paletteIndigo40:rgb(58, 73, 218);--SBQQ-colorBackgroundProgressRingContent:rgb(255, 255, 255);--SBQQ-lineHeightButtonSmall:1.75rem;--SBQQ-salesforceSansBoldItalicWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-BoldItalic.woff);--SBQQ-brandBackgroundDarkTransparent:rgba(221, 219, 218, 0);--SBQQ-colorPickerThumbWidth:0.375rem;--SBQQ-paletteCloudBlue10:rgb(0, 26, 40);--SBQQ-brandHeaderIconActive:rgb(129, 129, 129);--SBQQ-widthStageLeftCollapsed:4rem;--SBQQ-paletteCloudBlue15:rgb(10, 38, 54);--SBQQ-colorBorderOffline:rgb(68, 68, 68);--SBQQ-colorBackgroundUtilityBarHover:rgb(243, 243, 243);--SBQQ-sliderHandleColorBackgroundHover:rgb(1, 118, 211);--SBQQ-colorTextIconInverseHint:rgba(255, 255, 255, 0.5);--SBQQ-sizeMedium:20rem;--SBQQ-brandPrimaryTransparent10:rgba(21, 137, 238, 0.1);--SBQQ-colorBorderIconInverseHintHover:rgba(255, 255, 255, 0.75);--SBQQ-colorTextDefault:rgb(3, 45, 96);--SBQQ-paletteIndigo50:rgb(88, 103, 232);--SBQQ-progressBarHeight:0.125rem;--SBQQ-colorBackgroundWarning:rgb(254, 147, 57);--SBQQ-colorBackgroundBrandPrimaryActive:rgb(3, 45, 96);--SBQQ-paletteBlue90:rgb(216, 230, 254);--SBQQ-brandHeaderContrastCool:rgb(1, 68, 134);--SBQQ-paletteCloudBlue80:rgb(144, 208, 254);--SBQQ-paletteBlue95:rgb(238, 244, 255);--SBQQ-colorBorderSelectionHover:rgb(27, 150, 255);--SBQQ-zIndexPopup:5000;--SBQQ-borderRadiusLarge:0.5rem;--SBQQ-colorTextIconInverseHintHover:rgba(255, 255, 255, 0.75);--SBQQ-popoverBrandBorderWidth:0.25rem;--SBQQ-fontSizeHeadingXLarge:1.75rem;--SBQQ-typingIconDotColorBackgroundGrayDark:rgb(201, 201, 201);--SBQQ-paletteIndigo65:rgb(142, 155, 239);--SBQQ-varSpacingLarge:1.5rem;--SBQQ-pageHeaderSpacingMargin:0;--SBQQ-fontSizeTextXLarge:1.25rem;--SBQQ-paletteIndigo60:rgb(127, 140, 237);--SBQQ-paletteCloudBlue70:rgb(26, 185, 255);--SBQQ-welcomeMatColorActionShadow:rgba(0, 0, 0, 0.05);--SBQQ-colorTextBrowser:rgb(255, 255, 255);--SBQQ-welcomeMatSpacingInfo:7.75rem;--SBQQ-mqLarge:only screen and (min-width: 64.0625em);--SBQQ-paletteIndigo70:rgb(158, 169, 241);--SBQQ-squareTappableSmall:2rem;--SBQQ-colorTextActionLabel:rgb(116, 116, 116);--SBQQ-paletteCloudBlue60:rgb(13, 157, 218);--SBQQ-paletteBlue70:rgb(120, 176, 253);--SBQQ-colorBorderTabActive:rgb(255, 255, 255);--SBQQ-paletteCloudBlue65:rgb(8, 171, 237);--SBQQ-globalnavigationItemHeightAccentFocus:4px;--SBQQ-colorBorderDestructiveHover:rgb(186, 5, 23);--SBQQ-buttonLineHeightTouch:2.65rem;--SBQQ-colorTextCustomer:rgb(254, 147, 57);--SBQQ-squareIconUtilitySmall:1rem;--SBQQ-colorBackgroundModalButtonActive:rgba(0, 0, 0, 0.16);--SBQQ-colorTextBrandPrimary:rgb(255, 255, 255);--SBQQ-squareIconXSmallBoundary:1.25rem;--SBQQ-widthToggle:3rem;--SBQQ-paletteIndigo80:rgb(190, 199, 246);--SBQQ-welcomeMatMinHeight:25rem;--SBQQ-zIndexDocked:4;--SBQQ-squareIconMediumBoundaryAlt:2.25rem;--SBQQ-colorBorderSelection:rgb(1, 118, 211);--SBQQ-paletteBlue80:rgb(170, 203, 255);--SBQQ-paletteCloudBlue50:rgb(16, 124, 173);--SBQQ-brandHeaderContrastActive:rgb(80, 80, 80);--SBQQ-formLabelFontSize:0.75rem;--SBQQ-colorTextActionLabelActive:rgb(3, 45, 96);--SBQQ-colorBackgroundBackdropTint:rgb(243, 243, 243);--SBQQ-durationSlowly:0.4s;--SBQQ-colorBackgroundRowHover:rgb(243, 243, 243);--SBQQ-popoverWalkthroughAltNubbinColorBackground:rgb(1, 118, 211);--SBQQ-spinnerSizeSmall:1.25rem;--SBQQ-sliderTrackColorBackgroundFill:rgb(27, 150, 255);--SBQQ-welcomeMatWidth:52.0625rem;--SBQQ-paletteIndigo95:rgb(241, 243, 251);--SBQQ-paletteIndigo90:rgb(224, 229, 248);--SBQQ-filesZIndexHover:5;--SBQQ-colorTextPill:rgb(1, 118, 211);--SBQQ-varSpacingSmall:0.75rem;--SBQQ-heightDockedBar:2.5rem;--SBQQ-paletteBlue50:rgb(1, 118, 211);--SBQQ-colorTextTabLabelHover:rgb(1, 68, 134);--SBQQ-fontSizeHeadingXSmall:0.75rem;--SBQQ-colorStrokeDisabled:rgb(243, 243, 243);--SBQQ-widthPathBorderCurrent:0.125rem;--SBQQ-colorBackgroundButtonDefaultHover:rgb(243, 243, 243);--SBQQ-varSpacingVerticalXxSmall:0.25rem;--SBQQ-colorTextButtonDefaultHover:rgb(1, 118, 211);--SBQQ-durationPromptly:0.2s;--SBQQ-colorBorderPathCurrent:rgb(1, 68, 134);--SBQQ-colorBackgroundButtonDefaultActive:rgb(243, 243, 243);--SBQQ-colorTextStageLeft:rgb(243, 243, 243);--SBQQ-colorBorderHint:rgb(3, 45, 96);--SBQQ-colorTextPrimary:rgb(3, 45, 96);--SBQQ-brandBandColorBackgroundSecondaryTransparent:rgba(0, 0, 0, 0);--SBQQ-paletteBlue60:rgb(27, 150, 255);--SBQQ-cardColorBackground:rgb(255, 255, 255);--SBQQ-brandHeaderIcon:rgb(145, 145, 145);--SBQQ-paletteBlue65:rgb(87, 163, 253);--SBQQ-spacingLarge:1.5rem;--SBQQ-pageHeaderColorBorder:rgba(0, 0, 0, 0);--SBQQ-cardFooterMargin:0.75rem;--SBQQ-fontSizeTextSmall:0.8125rem;--SBQQ-colorTextLinkInverseActive:rgba(255, 255, 255, 0.5);--SBQQ-durationToastShort:4.8s;--SBQQ-lineHeightButton:1.875rem;--SBQQ-panelDockedLeftShadow:1px 0 3px rgba(0,0,0,0.25);--SBQQ-panelDockedRightShadow:-1px 0 3px 0 rgba(0,0,0,0.25);--SBQQ-colorTextLinkPrimaryHover:rgb(1, 118, 211);--SBQQ-shadowButton:0 1px 1px 0 rgba(0, 0, 0, 0.05);--SBQQ-welcomeMatMaxHeight:37.5rem;--SBQQ-colorBorderToggleChecked:rgb(255, 255, 255);--SBQQ-shadowHeader:0 2px 4px rgba(0, 0, 0, 0.07);--SBQQ-sizeXxLarge:60rem;--SBQQ-colorBackgroundDockedPanelHeader:rgb(255, 255, 255);--SBQQ-paletteBlue30:rgb(1, 68, 134);--SBQQ-lineHeightSalespath:1.5rem;--SBQQ-shadowDrag:0 2px 4px 0 rgba(0, 0, 0, 0.40);--SBQQ-colorBackgroundPathExpanded:rgb(255, 255, 255);--SBQQ-colorBackground:rgb(243, 243, 243);--SBQQ-colorBackgroundInput:rgb(255, 255, 255);--SBQQ-sizeSmall:15rem;--SBQQ-userDefaultAvatar:url(/_slds/images/profile_avatar_200.png?cache=7bdcafae);--SBQQ-colorTextButtonInverse:rgb(243, 243, 243);--SBQQ-colorBackgroundInputCheckboxDisabled:rgb(201, 201, 201);--SBQQ-tableColorTextHeader:rgb(68, 68, 68);--SBQQ-paletteBlue40:rgb(11, 92, 171);--SBQQ-cardColorBorder:rgb(201, 201, 201);--SBQQ-squareIconUtilityMedium:1.25rem;--SBQQ-colorBackgroundButtonSuccessHover:rgb(46, 132, 74);--SBQQ-colorBorderButtonBrandDisabled:rgba(0, 0, 0, 0);--SBQQ-fontSizeHeadingXxSmall:0.625rem;--SBQQ-colorBackgroundButtonInverseActive:rgba(0, 0, 0, 0.24);--SBQQ-illustrationEmptyStateEvents:url(/_slds/images/illustrations/empty-state-events.svg?cache=985b247a);--SBQQ-colorBackgroundToggle:rgb(174, 174, 174);--SBQQ-colorBackgroundStencil:rgb(243, 243, 243);--SBQQ-welcomeMatCheckSize:0.625rem;--SBQQ-colorTextButtonBrandHover:rgb(255, 255, 255);--SBQQ-buttonColorBackgroundSecondary:rgba(255, 255, 255, 0.8);--SBQQ-paletteBlue10:rgb(0, 22, 57);--SBQQ-varSpacingVerticalLarge:1.5rem;--SBQQ-colorBorderReminder:rgb(243, 243, 243);--SBQQ-colorBrandDark:rgb(1, 118, 211);--SBQQ-paletteBlue15:rgb(3, 35, 77);--SBQQ-colorBorderBrandPrimaryFocus:rgb(1, 118, 211);--SBQQ-salesforceSansItalicWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Italic.woff);--SBQQ-colorBorderBrandPrimaryActive:rgb(3, 45, 96);--SBQQ-datepickerColorTextDayAdjacentMonth:rgb(116, 116, 116);--SBQQ-colorBorderErrorAlt:rgb(254, 143, 125);--SBQQ-shadowReminder:0 2px 3px 0 rgba(0, 0, 0, 0.20);--SBQQ-brandTextLinkActive:rgb(1, 68, 134);--SBQQ-pageHeaderColorBackground:rgb(243, 243, 243);--SBQQ-salesforceSansBoldWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Bold.woff2);--SBQQ-fontSizeHeadingLarge:1.5rem;--SBQQ-colorBackgroundStencilAlt:rgb(243, 243, 243);--SBQQ-paletteBlue20:rgb(3, 45, 96);--SBQQ-elevationInverseShadow3Below:0 -3px 3px 0 rgba(0, 0, 0, 0.16) inset;--SBQQ-varSpacingHorizontalXxSmall:0.25rem;--SBQQ-colorBorderSeparatorAlt:rgb(201, 201, 201);--SBQQ-colorPickerRangeHeight:5rem;--SBQQ-colorBackgroundButtonIcon:rgba(0, 0, 0, 0);--SBQQ-paletteTeal15:rgb(7, 40, 37);--SBQQ-buttonIconColorBorderPrimary:rgb(255, 255, 255);--SBQQ-brandAccessibleActive:rgb(1, 68, 134);--SBQQ-paletteYellow80:rgb(252, 192, 3);--SBQQ-zIndexSpinner:9050;--SBQQ-colorBackgroundContextTabBarItem:rgb(255, 255, 255);--SBQQ-fontWeightBold:700;--SBQQ-paletteTeal10:rgb(7, 27, 18);--SBQQ-colorBackgroundContextBarItemActive:rgb(255, 255, 255);--SBQQ-shadowFocusInset:0 0 2px 2px #1b96ff inset;--SBQQ-colorBackgroundAltInverse:rgb(3, 45, 96);--SBQQ-colorBackgroundPathIncompleteHover:rgb(201, 201, 201);--SBQQ-squareIconMediumContent:1rem;--SBQQ-colorBackgroundContextBar:rgb(255, 255, 255);--SBQQ-colorTextInverseHover:rgb(174, 174, 174);--SBQQ-colorBackgroundInputActive:rgb(255, 255, 255);--SBQQ-brandContrast:rgb(26, 27, 30);--SBQQ-colorTextSecondary:rgb(116, 116, 116);--SBQQ-fillHeaderButtonHover:rgb(1, 68, 134);--SBQQ-fontFamilyText:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--SBQQ-welcomeMatCompleteIconSize:1.25rem;--SBQQ-varSpacingXxLarge:3rem;--SBQQ-paletteYellow95:rgb(251, 243, 224);--SBQQ-paletteYellow90:rgb(249, 227, 182);--SBQQ-brandBackgroundPrimary:rgb(250, 250, 249);--SBQQ-paletteTeal20:rgb(2, 52, 52);--SBQQ-progressRingWidth:0.1875rem;--SBQQ-paletteYellow65:rgb(215, 147, 4);--SBQQ-paletteYellow60:rgb(202, 133, 1);--SBQQ-colorBorderInputCheckboxSelectedCheckmark:rgb(255, 255, 255);--SBQQ-colorBorderCanvasElementSelectionHover:rgb(1, 68, 134);--SBQQ-borderRadiusSmall:0.125rem;--SBQQ-progressBarColorBackground:rgb(201, 201, 201);--SBQQ-durationInstantly:0s;--SBQQ-colorBackgroundToastSuccess:rgb(46, 132, 74);--SBQQ-tabsFontWeight:400;--SBQQ-colorBackgroundPost:rgb(243, 243, 243);--SBQQ-colorTextPlaceholderInverse:rgb(243, 243, 243);--SBQQ-colorTextInputIcon:rgb(174, 174, 174);--SBQQ-sliderHandleShadow:rgba(0, 0, 0, 0.16) 0 2px 3px;--SBQQ-paletteYellow70:rgb(228, 162, 1);--SBQQ-fontWeightLight:300;--SBQQ-colorTextError:rgb(234, 0, 30);--SBQQ-varSpacingXxSmall:0.25rem;--SBQQ-colorBorderInput:rgb(201, 201, 201);--SBQQ-brandAccessible:rgb(1, 118, 211);--SBQQ-pageColorBackgroundPrimary:rgb(255, 255, 255);--SBQQ-cardShadow:none;--SBQQ-lineClamp:3;--SBQQ-welcomeMatWidthProgressBar:12.5rem;--SBQQ-progressColorBackgroundShade:rgb(243, 243, 243);--SBQQ-globalActionFillHover:rgb(1, 68, 134);--SBQQ-illustrationEmptyStateAssistant:url(/_slds/images/illustrations/empty-state-assistant.svg?cache=127a789e);--SBQQ-varSpacingHorizontalXSmall:0.5rem;--SBQQ-colorPickerInputCustomHexFontSize:0.75rem;--SBQQ-varSpacingMedium:1rem;--SBQQ-colorBackgroundShadeDark:rgb(201, 201, 201);--SBQQ-colorPickerSwatchesWidth:13.3rem;--SBQQ-squareIconLargeBoundaryAlt:5rem;--SBQQ-colorBorderInputDisabled:rgb(201, 201, 201);--SBQQ-paletteYellow40:rgb(140, 75, 2);--SBQQ-cardWrapperSpacing:1rem;--SBQQ-colorBackgroundNotificationBadgeActive:rgb(3, 45, 96);--SBQQ-colorBackgroundHighlight:rgb(250, 255, 189);--SBQQ-colorBackgroundRowActive:rgb(243, 243, 243);--SBQQ-componentSpacingMargin:0;--SBQQ-colorBorderButtonFocusInverse:rgb(243, 243, 243);--SBQQ-shadowButtonFocus:0 0 3px #0176d3;--SBQQ-varSpacingVerticalXLarge:2rem;--SBQQ-tableColorBackgroundHeaderHover:rgb(243, 243, 243);--SBQQ-colorBackgroundDockedPanel:rgb(255, 255, 255);--SBQQ-colorTextTertiary:rgb(116, 116, 116);--SBQQ-varSpacingVerticalXxLarge:3rem;--SBQQ-paletteYellow50:rgb(168, 100, 3);--SBQQ-brandContrastActive:rgb(13, 14, 18);--SBQQ-squareIconLargeContent:2rem;--SBQQ-colorPickerSliderThumbColorBackground:rgb(243, 243, 243);--SBQQ-inputStaticFontSize:0.8125rem;--SBQQ-borderWidthThin:1px;--SBQQ-fontWeightRegular:400;--SBQQ-colorBackgroundButtonSuccess:rgb(69, 198, 90);--SBQQ-splitViewColorBackgroundRowHover:rgb(255, 255, 255);--SBQQ-paletteYellow20:rgb(79, 33, 0);--SBQQ-bannerUserDefaultImage:;--SBQQ-elevation8:8;--SBQQ-brandDark:rgb(1, 118, 211);--SBQQ-colorBackgroundPathCurrentHover:rgb(255, 255, 255);--SBQQ-elevation0:0;--SBQQ-elevation2:2;--SBQQ-pageHeaderJoinedColorBorder:rgb(201, 201, 201);--SBQQ-elevation4:4;--SBQQ-durationPaused:3.2s;--SBQQ-colorBrand:rgb(27, 150, 255);--SBQQ-colorBackgroundPathComplete:rgb(59, 167, 85);--SBQQ-progressColorBorderHover:rgb(1, 118, 211);--SBQQ-spacingXxSmall:0.25rem;--SBQQ-tableCellSpacing:0.5rem;--SBQQ-colorBorderContextBarThemeDefault:rgb(13, 157, 218);--SBQQ-colorBackgroundAnchor:rgb(243, 243, 243);--SBQQ-paletteYellow30:rgb(111, 52, 0);--SBQQ-shadowButtonFocusInverse:0 0 3px #f3f3f3;--SBQQ-welcomeMatFontSizeInfoTitle:2.625rem;--SBQQ-colorBorderLinkFocusInverse:rgb(243, 243, 243);--SBQQ-borderRadiusCircle:50%;--SBQQ-buttonColorBorderSecondary:rgba(255, 255, 255, 0.8);--SBQQ-colorTextSuccessInverse:rgb(69, 198, 90);--SBQQ-varSpacingXLarge:2rem;--SBQQ-sizeXLarge:40rem;--SBQQ-varSpacingHorizontalXxxSmall:0.125rem;--SBQQ-elevation3Inset:-3;--SBQQ-lineHeightTab:2.5rem;--SBQQ-colorBackgroundDestructiveActive:rgb(142, 3, 15);--SBQQ-colorTextLinkPrimaryActive:rgb(3, 45, 96);--SBQQ-colorBackgroundPageHeader:rgb(255, 255, 255);--SBQQ-colorBackgroundPill:rgb(255, 255, 255);--SBQQ-fillBrandHover:rgb(1, 68, 134);--SBQQ-colorBorderContextBarItem:rgba(0, 0, 0, 0.2);--SBQQ-borderStrokeWidthThin:1px;--SBQQ-progressColorBorderShade:rgb(243, 243, 243);--SBQQ-heightHeader:2.75rem;--SBQQ-shadowInlineEdit:0 2px 4px 4px rgba(0, 0, 0, 0.16);--SBQQ-colorBackgroundNotificationBadgeHover:rgb(1, 68, 134);--SBQQ-borderRadiusPill:15rem;--SBQQ-colorTextButtonInverseDisabled:rgba(255, 255, 255, 0.5);--SBQQ-sizeXxxSmall:3rem;--SBQQ-colorBackgroundSuccessDarker:rgb(25, 78, 49);--SBQQ-colorBackgroundToggleHover:rgb(147, 147, 147);--SBQQ-paletteYellow15:rgb(46, 34, 4);--SBQQ-paletteYellow10:rgb(40, 18, 2);--SBQQ-cardSpacingSmall:0.75rem;--SBQQ-illustrationEmptyStateTasks:url(/_slds/images/illustrations/empty-state-tasks.svg?cache=dc5e5e5b);--SBQQ-brandBandScrimHeight:3.125rem;--SBQQ-popoverWalkthroughColorBackground:rgb(0, 22, 57);--SBQQ-colorBorderErrorDark:rgb(254, 143, 125);--SBQQ-heightTappableSmall:2rem;--SBQQ-colorBackgroundButtonBrandDisabled:rgb(243, 243, 243);--SBQQ-colorBorderPrimary:rgb(201, 201, 201);--SBQQ-colorGray1:rgb(255, 255, 255);--SBQQ-fontSizeXLarge:1.5rem;--SBQQ-varSquareIconMediumBoundary:2rem;--SBQQ-colorGray5:rgb(221, 219, 218);--SBQQ-colorGray4:rgb(236, 235, 234);--SBQQ-colorGray3:rgb(243, 242, 242);--SBQQ-colorGray2:rgb(250, 250, 249);--SBQQ-opacity8:0.8;--SBQQ-salesforceSansBoldItalicWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-BoldItalic.woff2);--SBQQ-opacity5:0.5;--SBQQ-squareIconGlobalIdentityIcon:1.25rem;--SBQQ-colorBackgroundBrowser:rgb(116, 116, 116);--SBQQ-colorTextIconInverseActive:rgb(255, 255, 255);--SBQQ-shadowDocked:0 -2px 2px 0 rgba(0, 0, 0, 0.16);--SBQQ-colorBackgroundInputError:rgb(253, 221, 227);--SBQQ-colorGray9:rgb(112, 110, 107);--SBQQ-colorGray8:rgb(150, 148, 146);--SBQQ-colorGray7:rgb(176, 173, 171);--SBQQ-colorGray6:rgb(201, 199, 197);--SBQQ-colorTextLinkInverse:rgb(255, 255, 255);--SBQQ-squareIconSmallBoundary:1.5rem;--SBQQ-varSpacingHorizontalXLarge:2rem;--SBQQ-colorBackgroundDark:rgb(243, 243, 243);--SBQQ-colorTextWarningAlt:rgb(140, 75, 2);--SBQQ-elevationInverseShadow2:0 -2px 2px 0 rgba(0, 0, 0, 0.16);--SBQQ-elevationInverseShadow0:none;--SBQQ-colorStrokeBrand:rgb(1, 118, 211);--SBQQ-colorBackgroundToggleActive:rgb(1, 68, 134);--SBQQ-colorBorderContextBarDivider:rgba(255, 255, 255, 0.2);--SBQQ-zIndexToast:10000;--SBQQ-colorBackgroundContextBarActionHighlight:rgba(255, 255, 255, 0.2);--SBQQ-colorBackgroundBrandPrimaryFocus:rgb(1, 68, 134);--SBQQ-buttonColorBackgroundBrandPrimary:rgb(1, 118, 211);--SBQQ-brandHeaderContrastWarm:rgb(186, 5, 23);--SBQQ-buttonColorTextPrimary:rgb(255, 255, 255);--SBQQ-colorBrandDarker:rgb(1, 68, 134);--SBQQ-colorBorderPathCurrentHover:rgb(3, 45, 96);--SBQQ-colorTextButtonDefaultDisabled:rgb(201, 201, 201);--SBQQ-colorBackgroundPathLost:rgb(234, 0, 30);--SBQQ-einsteinHeaderBackground:url(/_slds/images/einstein-headers/einstein-header-background.svg?cache=ff7fa2ff);--SBQQ-brandTextLink:rgb(1, 118, 211);--SBQQ-sliderTrackColorBackground:rgb(243, 243, 243);--SBQQ-colorContrastPrimary:rgb(243, 243, 243);--SBQQ-groupDefaultAvatar:url(/_slds/images/group_avatar_200.png?cache=a0044dae);--SBQQ-templateProfileGutters:0;--SBQQ-sizeXxSmall:6rem;--SBQQ-colorBackgroundPayload:rgb(243, 243, 243);--SBQQ-paletteCloudBlue90:rgb(207, 233, 254);--SBQQ-colorBackgroundPathActive:rgb(1, 68, 134);--SBQQ-colorTextDestructive:rgb(234, 0, 30);--SBQQ-squareIconLargeBoundary:3rem;--SBQQ-colorBorderWarning:rgb(254, 147, 57);--SBQQ-shadowSoftPrimaryHover:none;--SBQQ-paletteCloudBlue95:rgb(234, 245, 254);--SBQQ-spacingSmall:0.75rem;--SBQQ-colorBackgroundErrorDark:rgb(186, 5, 23);--SBQQ-brandHeaderContrastWeakDisabled:rgba(166, 166, 166, 0.25);--SBQQ-squareIconMediumContentAlt:0.875rem;--SBQQ-colorBackgroundButtonInverse:rgba(0, 0, 0, 0);--SBQQ-brandHeader:rgb(255, 255, 255);--SBQQ-lineHeightText:1.5;--SBQQ-widthStageLeftExpanded:15rem;--SBQQ-colorBackgroundError:rgb(254, 92, 76);--SBQQ-colorTextButtonBrandActive:rgb(255, 255, 255);--SBQQ-fontFamily:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--SBQQ-mqMedium:only screen and (min-width: 48em);--SBQQ-brandDarkActive:rgb(37, 48, 69);--SBQQ-colorBackgroundPathStepActionActive:rgb(0, 22, 57);--SBQQ-neutrafaceDisplayWoff2:url(/_slds/fonts/NeutrafaceDisplay.woff2?cache=2.9.0);--SBQQ-spacingMedium:1rem;--SBQQ-colorTextModal:rgb(255, 255, 255);--SBQQ-spinnerSizeLarge:2.75rem;--SBQQ-carouselIndicatorColorBackgroundHover:rgb(243, 243, 243);--SBQQ-shadowActionOverflowFooter:0 -2px 4px #f3f3f3;--SBQQ-popoverWalkthroughHeaderColorBackground:rgb(3, 45, 96);--SBQQ-colorBackgroundPathWon:rgb(46, 132, 74);--SBQQ-lineHeightToggle:1.3rem;--SBQQ-neutrafaceDisplayWoff:url(/_slds/fonts/NeutrafaceDisplay.woff?cache=2.9.0);--SBQQ-cardFooterPadding:0 1rem 0.75rem;--SBQQ-sliderHandleColorBackground:rgb(27, 150, 255);--SBQQ-colorBackgroundErrorAlt:rgb(254, 143, 125);--SBQQ-colorBackgroundIndicatorDot:rgb(3, 45, 96);--SBQQ-chatMessageColorBackgroundInbound:rgb(243, 243, 243);--SBQQ-elevationShadow0:none;--SBQQ-heightPill:1.625rem;--SBQQ-elevationShadow4:0 4px 4px 0 rgba(0, 0, 0, 0.16);--SBQQ-elevationShadow2:0 2px 2px 0 rgba(0, 0, 0, 0.16);--SBQQ-elevationShadow8:0 8px 8px 0 rgba(0, 0, 0, 0.16);--SBQQ-varFontSize8:1.5rem;--SBQQ-colorBackgroundButtonDefaultDisabled:rgb(255, 255, 255);--SBQQ-varFontSize7:1.25rem;--SBQQ-elevationInverseShadow8:0 -8px 8px 0 rgba(0, 0, 0, 0.16);--SBQQ-varFontSize9:1.75rem;--SBQQ-brandBandColorBackgroundPrimary:rgba(0, 0, 0, 0);--SBQQ-colorTextButtonBrand:rgb(255, 255, 255);--SBQQ-elevationInverseShadow4:0 -4px 4px 0 rgba(0, 0, 0, 0.16);--SBQQ-colorBackgroundToggleActiveHover:rgb(1, 68, 134);--SBQQ-welcomeMatBackgroundImageInfo:url(/_slds/images/welcome-mat/bg-info@2x.png?cache=ddb4e82f);--SBQQ-varFontSize2:0.75rem;--SBQQ-varFontSize1:0.625rem;--SBQQ-varFontSize4:0.875rem;--SBQQ-pageHeaderSpacingRow:0.75rem 1rem;--SBQQ-varFontSize3:0.8125rem;--SBQQ-varFontSize6:1.125rem;--SBQQ-varFontSize5:1rem;--SBQQ-varSpacingVerticalMedium:1rem;--SBQQ-pageHeaderSpacingPadding:1rem;--SBQQ-colorTextModalButton:rgb(116, 116, 116);--SBQQ-colorBackgroundPrimary:rgb(255, 255, 255);--SBQQ-colorTextInputFocusInverse:rgb(3, 45, 96);--SBQQ-colorBackgroundScrollbarTrack:rgb(201, 201, 201);--SBQQ-paletteNeutral70:rgb(174, 174, 174);--SBQQ-brandPrimaryActive:rgb(1, 118, 211);--SBQQ-popoverWalkthroughAltImage:;--SBQQ-nubbinTriangleOffset:-0.1875rem;--SBQQ-salesforceSansLightWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Light.woff);--SBQQ-colorBorderSuccessDark:rgb(46, 132, 74);--SBQQ-mqHighRes:only screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2),screen and (min-resolution: 192dpi),screen and (min-resolution: 2dppx);--SBQQ-brandBandColorBackgroundPrimaryTransparent:rgba(0, 0, 0, 0);--SBQQ-colorBackgroundContextBarInverseItemActive:rgba(255, 255, 255, 0.4);--SBQQ-colorTextButtonDefaultHint:rgb(174, 174, 174);--SBQQ-salesforceSansItalicWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Italic.woff2);--SBQQ-paletteGreen60:rgb(59, 167, 85);--SBQQ-heightContextBar:2.5rem;--SBQQ-colorBackgroundOrgSwitcherArrow:rgb(0, 22, 57);--SBQQ-paletteGreen65:rgb(65, 182, 88);--SBQQ-brandHeaderContrastInverse:rgb(255, 255, 255);--SBQQ-notificationColorBackgroundInverse:rgb(116, 116, 116);--SBQQ-colorBackgroundButtonIconDisabled:rgb(255, 255, 255);--SBQQ-paletteNeutral60:rgb(147, 147, 147);--SBQQ-colorBorderContextBarThemeDefaultAlt:rgb(243, 243, 243);--SBQQ-fillBrand:rgb(1, 118, 211);--SBQQ-colorBackgroundInputCheckbox:rgb(255, 255, 255);--SBQQ-colorBorder:rgb(201, 201, 201);--SBQQ-squareIconSmall:1rem;--SBQQ-varSpacingHorizontalMedium:1rem;--SBQQ-illustrationColorPrimary:rgb(144, 208, 254);--SBQQ-varSpacingVerticalXSmall:0.5rem;--SBQQ-colorTextPlaceholder:rgb(116, 116, 116);--SBQQ-einsteinHeaderBackgroundColor:rgb(144, 208, 254);--SBQQ-paletteGreen70:rgb(69, 198, 90);--SBQQ-brandHeaderContrast:rgb(94, 94, 94);--SBQQ-inputStaticColor:rgb(24, 24, 24);--SBQQ-paletteNeutral90:rgb(229, 229, 229);--SBQQ-paletteGreen90:rgb(205, 239, 196);--SBQQ-spacingXxLarge:3rem;--SBQQ-shadowDropDown:0 2px 3px 0 rgba(0, 0, 0, 0.16);--SBQQ-paletteNeutral95:rgb(243, 243, 243);--SBQQ-colorBackgroundModal:rgb(255, 255, 255);--SBQQ-elevationShadow3Below:0 3px 3px 0 rgba(0, 0, 0, 0.16) inset;--SBQQ-paletteRed80:rgb(254, 184, 171);--SBQQ-sliderTrackWidth:100%;--SBQQ-elevation32:32;--SBQQ-globalHeaderColorBackground:rgb(255, 255, 255);--SBQQ-spacingXLarge:2rem;--SBQQ-paletteGreen80:rgb(145, 219, 139);--SBQQ-colorBorderInputActive:rgb(27, 150, 255);--SBQQ-varSpacingXSmall:0.5rem;--SBQQ-paletteNeutral80:rgb(201, 201, 201);--SBQQ-colorBackgroundModalButton:rgba(0, 0, 0, 0.07);--SBQQ-colorBorderPathDivider:rgb(255, 255, 255);--SBQQ-colorTextIconDefault:rgb(116, 116, 116);--SBQQ-zIndexDeepdive:-99999;--SBQQ-elevation16:16;--SBQQ-paletteRed90:rgb(254, 222, 216);--SBQQ-globalnavigationItemHeightAccentActive:3px;--SBQQ-templateGutters:0;--SBQQ-paletteRed95:rgb(254, 241, 238);--SBQQ-buttonColorBorderBrandPrimary:rgb(1, 118, 211);--SBQQ-buttonIconBoundaryTouch:2.75rem;--SBQQ-brandBackgroundPrimaryTransparent:rgba(176, 196, 223, 0);--SBQQ-fillHeaderButtonFocus:rgb(1, 118, 211);--SBQQ-colorBorderError:rgb(234, 0, 30);--SBQQ-colorTextLinkHover:rgb(1, 68, 134);--SBQQ-paletteGreen95:rgb(235, 247, 230);--SBQQ-einsteinHeaderFigure:url(/_slds/images/einstein-headers/einstein-figure.svg?cache=ec975fb1);--SBQQ-colorBorderRowSelected:rgb(1, 118, 211);--SBQQ-colorStrokeBrandHover:rgb(1, 118, 211);--SBQQ-paletteNeutral30:rgb(68, 68, 68);--SBQQ-varSpacingVerticalXxxSmall:0.125rem;--SBQQ-paletteHotOrange10:rgb(40, 18, 2);--SBQQ-colorTextButtonBrandDisabled:rgb(255, 255, 255);--SBQQ-squareIconXSmallContent:0.5rem;--SBQQ-varFontSize10:2rem;--SBQQ-paletteRed60:rgb(254, 92, 76);--SBQQ-varFontSize11:2.625rem;--SBQQ-paletteRed65:rgb(254, 119, 101);--SBQQ-buttonBorderRadius:.25rem;--SBQQ-squareTappableXSmall:1.5rem;--SBQQ-colorBackgroundGuidance:rgb(255, 255, 255);--SBQQ-colorTextContextBarInverse:rgb(255, 255, 255);--SBQQ-paletteNeutral20:rgb(46, 46, 46);--SBQQ-fontFamilyHeading:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--SBQQ-paletteRed70:rgb(254, 143, 125);--SBQQ-brandHeaderContrastCoolActive:rgb(1, 68, 134);--SBQQ-borderWidthThick:2px;--SBQQ-pageHeaderShadow:none;--SBQQ-spinnerSizeXxSmall:0.5rem;--SBQQ-tableColorBackgroundHeader:rgb(255, 255, 255);--SBQQ-pageHeaderColorBackgroundAlt:rgb(255, 255, 255);--SBQQ-colorBorderBrandPrimaryHover:rgb(1, 118, 211);--SBQQ-colorTextTabLabelActive:rgb(3, 45, 96);--SBQQ-paletteNeutral50:rgb(116, 116, 116);--SBQQ-colorBackgroundTempModalTint:rgba(126, 140, 153, 0.8);--SBQQ-fontSizeMedium:1rem;--SBQQ-colorBorderButtonBrand:rgb(1, 118, 211);--SBQQ-paletteHotOrange30:rgb(126, 38, 0);--SBQQ-paletteRed40:rgb(186, 5, 23);--SBQQ-brandBandImageHeightSmall:6rem;--SBQQ-colorTextInverseWeak:rgb(174, 174, 174);--SBQQ-colorTextInverse:rgb(255, 255, 255);--SBQQ-shadowLinkFocusInverse:0 0 3px #f3f3f3;--SBQQ-squareIconXxSmallBoundary:1rem;--SBQQ-lineHeightReset:1;--SBQQ-verticalNavigationColorBackgroundShadeRowActive:rgb(243, 243, 243);--SBQQ-colorBackgroundTempModal:rgba(126, 140, 153, 0.8);--SBQQ-colorBackgroundToggleDisabled:rgb(174, 174, 174);--SBQQ-colorGray13:rgb(8, 7, 7);--SBQQ-colorGray10:rgb(81, 79, 77);--SBQQ-paletteNeutral40:rgb(92, 92, 92);--SBQQ-colorBorderInverse:rgb(0, 22, 57);--SBQQ-carouselIndicatorColorBackgroundActive:rgb(1, 118, 211);--SBQQ-colorBackgroundBackdrop:rgba(255, 255, 255, 0.75);--SBQQ-colorGray12:rgb(43, 40, 38);--SBQQ-colorGray11:rgb(62, 62, 60);--SBQQ-colorTextContextBarActionTrigger:rgba(255, 255, 255, 0.4);--SBQQ-paletteHotOrange20:rgb(74, 36, 19);--SBQQ-colorBackgroundNotification:rgb(255, 255, 255);--SBQQ-colorBackgroundPathStepActionCurrent:rgb(1, 68, 134);--SBQQ-badgeColorBackgroundInverse:rgb(116, 116, 116);--SBQQ-colorBorderSeparatorInverse:rgb(3, 45, 96);--SBQQ-paletteRed50:rgb(234, 0, 30);--SBQQ-colorBackgroundSpinnerDot:rgb(174, 174, 174);--SBQQ-colorBackgroundButtonBrandActive:rgb(3, 45, 96);--SBQQ-paletteHotOrange15:rgb(66, 22, 4);--SBQQ-sliderHandleColorBackgroundFocus:rgb(1, 118, 211);--SBQQ-spinnerSizeMedium:2rem;--SBQQ-brandPrimary:rgb(27, 150, 255);--SBQQ-paletteHotOrange50:rgb(216, 58, 0);--SBQQ-colorTextLinkPrimaryFocus:rgb(1, 118, 211);--SBQQ-colorTextInputDisabled:rgb(116, 116, 116);--SBQQ-brandLogoImage:url(/_slds/images/logo-noname.svg?cache=380754d9);--SBQQ-brandLight:rgb(244, 246, 254);--SBQQ-paletteRed20:rgb(100, 1, 3);--SBQQ-fillHeaderButton:rgb(174, 174, 174);--SBQQ-varLineHeightText:1.5;--SBQQ-colorBackgroundPathCurrent:rgb(255, 255, 255);--SBQQ-colorBackgroundOffline:rgb(68, 68, 68);--SBQQ-colorBorderTabSelected:rgb(1, 118, 211);--SBQQ-colorTextWarning:rgb(254, 147, 57);--SBQQ-salesforceSansRegularWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Regular.woff);--SBQQ-paletteHotOrange40:rgb(170, 48, 1);--SBQQ-cardSpacingLarge:1.5rem;--SBQQ-paletteRed30:rgb(142, 3, 15);--SBQQ-fontSizeMediumA:1.125rem;--SBQQ-borderRadiusMedium:0.25rem;--SBQQ-colorPickerSliderThumbBorderColor:rgb(68, 68, 68);--SBQQ-shadowSoftPrimary:none;--SBQQ-zIndexDropdown:7000;--SBQQ-paletteHotOrange70:rgb(255, 144, 110);--SBQQ-verticalNavigationColorBackgroundShadeRowHover:rgb(243, 243, 243);--SBQQ-squareIconMediumBoundary:2rem;--SBQQ-colorBackgroundButtonDefaultFocus:rgb(243, 243, 243);--SBQQ-heightTappable:2.75rem;--SBQQ-colorBackgroundToastError:rgb(234, 0, 30);--SBQQ-brandBandDefaultImage:;--SBQQ-durationQuickly:0.1s;--SBQQ-colorBackgroundSelection:rgb(216, 230, 254);--SBQQ-paletteHotOrange60:rgb(255, 93, 45);--SBQQ-colorBackgroundActionbarIconUtility:rgb(116, 116, 116);--SBQQ-colorBackgroundNotificationBadgeFocus:rgb(1, 68, 134);--SBQQ-paletteHotOrange65:rgb(255, 120, 79);--SBQQ-cardFooterTextAlign:right;--SBQQ-colorBorderBrandDark:rgb(1, 68, 134);--SBQQ-brandBackgroundDark:rgb(232, 232, 232);--SBQQ-avatarGroupColorBackgroundLightest:rgb(255, 255, 255);--SBQQ-colorTextContextBar:rgb(68, 68, 68);--SBQQ-inputStaticFontWeight:400;--SBQQ-paletteRed10:rgb(48, 12, 1);--SBQQ-colorTextLinkDisabled:rgb(3, 45, 96);--SBQQ-colorTextPathCurrent:rgb(1, 68, 134);--SBQQ-paletteRed15:rgb(74, 12, 4);--SBQQ-zIndexOverlay:8000;--SBQQ-buttonColorBorderPrimary:rgb(243, 243, 243);--SBQQ-paletteHotOrange90:rgb(255, 222, 213);--SBQQ-shadowImage:0 1px 1px rgba(0, 0, 0, 0.16);--SBQQ-paletteHotOrange95:rgb(254, 241, 237);--SBQQ-cardHeaderPadding:0.75rem 1rem 0;--SBQQ-colorBorderSeparatorAlt2:rgb(201, 201, 201);--SBQQ-fillBrandActive:rgb(3, 45, 96);--SBQQ-fontSizeTextMedium:1rem;--SBQQ-spacingXSmall:0.5rem;--SBQQ-chatMessageColorBackgroundOutboundAgent:rgb(116, 116, 116);--SBQQ-colorBackgroundButtonIconHover:rgb(243, 243, 243);--SBQQ-sliderHandleColorBackgroundActive:rgb(1, 118, 211);--SBQQ-colorBorderSuccess:rgb(145, 219, 139);--SBQQ-colorTextIconInverseHover:rgb(255, 255, 255);--SBQQ-componentSpacingPadding:1rem;--SBQQ-colorBorderDestructiveActive:rgb(142, 3, 15);--SBQQ-colorBackgroundButtonInverseDisabled:rgba(0, 0, 0, 0);--SBQQ-colorTextTabLabelFocus:rgb(1, 68, 134);--SBQQ-paletteHotOrange80:rgb(254, 185, 165);--SBQQ-colorBackgroundNotificationBadge:rgb(234, 0, 30);--SBQQ-zIndexReminder:8500;--SBQQ-colorBackgroundImageOverlay:rgba(0, 0, 0, 0.4);--SBQQ-colorBackgroundReminderHover:rgb(255, 255, 255);--SBQQ-colorTextPathCurrentHover:rgb(3, 45, 96);--SBQQ-colorBackgroundCustomer:rgb(254, 147, 57);--SBQQ-colorBackgroundButtonDefault:rgb(255, 255, 255);--SBQQ-colorBackgroundInverseLight:rgb(3, 45, 96);--SBQQ-salesforceSansBoldWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Bold.woff);--SBQQ-progressColorBorderActive:rgb(27, 150, 255);--SBQQ-fontSizeLarge:1.25rem;--SBQQ-brandHeaderContrastWeakActive:rgb(129, 129, 129);--SBQQ-brandHeaderContrastWarmActive:rgb(186, 5, 23);--SBQQ-squareToggleSlider:1.25rem;--SBQQ-progressBarColorBackgroundFillSuccess:rgb(46, 132, 74);--SBQQ-colorBackgroundButtonBrand:rgb(1, 118, 211);--SBQQ-colorBackgroundWarningDark:rgb(254, 147, 57);--SBQQ-colorTextIconUtility:rgb(174, 174, 174);--SBQQ-colorBackgroundScrollbar:rgb(243, 243, 243);--SBQQ-chatMessageColorBackgroundStatus:rgb(255, 255, 255);--SBQQ-colorBackgroundTempModalTintAlt:rgba(255, 255, 255, 0.75);--SBQQ-pageHeaderBorderRadius:0;--SBQQ-palettePink95:rgb(254, 240, 243);--SBQQ-welcomeMatColorIconComplete:rgb(201, 201, 201);--SBQQ-palettePink90:rgb(253, 221, 227);--SBQQ-paletteViolet50:rgb(186, 1, 255);--SBQQ-paletteTeal30:rgb(2, 77, 76);--SBQQ-colorTextIconInverseDisabled:rgba(255, 255, 255, 0.15);--SBQQ-bannerGroupDefaultImage:;--SBQQ-colorBorderBrand:rgb(27, 150, 255);--SBQQ-colorBackgroundInfo:rgb(116, 116, 116);--SBQQ-heightToggle:1.5rem;--SBQQ-badgeColorBackgroundLightest:rgb(255, 255, 255);--SBQQ-brandBandColorBackgroundSecondary:rgba(0, 0, 0, 0);--SBQQ-shadowSoftPrimaryActive:none;--SBQQ-colorTextIconDefaultHint:rgb(174, 174, 174);--SBQQ-colorBackgroundChromeMobile:rgb(1, 118, 211);--SBQQ-colorPickerSwatchSize:1.25rem;--SBQQ-colorBackgroundPathIncomplete:rgb(243, 243, 243);--SBQQ-paletteTeal40:rgb(5, 103, 100);--SBQQ-colorTextToggleDisabled:rgb(201, 201, 201);--SBQQ-paletteViolet40:rgb(150, 2, 199);--SBQQ-colorTextLinkInverseHover:rgba(255, 255, 255, 0.75);--SBQQ-palettePink80:rgb(253, 182, 197);--SBQQ-zIndexModal:9000;--SBQQ-pageHeaderIconSize:2.25rem;--SBQQ-colorTextDestructiveHover:rgb(186, 5, 23);--SBQQ-colorBorderCanvasElementSelection:rgb(26, 185, 255);--SBQQ-colorBackgroundSuccess:rgb(69, 198, 90);--SBQQ-carouselIndicatorColorBackground:rgb(255, 255, 255);--SBQQ-sliderTrackHeight:4px;--SBQQ-squareIconSmallContent:0.75rem;--SBQQ-colorBackgroundInputDisabled:rgb(243, 243, 243);--SBQQ-paletteTeal50:rgb(11, 130, 124);--SBQQ-palettePink70:rgb(254, 138, 167);--SBQQ-paletteViolet30:rgb(115, 3, 148);--SBQQ-mqSmall:only screen and (max-width: 47.9375em);--SBQQ-brandBandImageHeightLarge:18.75rem;--SBQQ-carouselIndicatorWidth:1rem;--SBQQ-colorTextLinkActive:rgb(3, 45, 96);--SBQQ-squareIconXxSmallContent:.875rem;--SBQQ-fontSizeXSmall:0.625rem;--SBQQ-palettePink65:rgb(254, 114, 152);--SBQQ-sliderColorBackgroundDisabled:rgb(243, 243, 243);--SBQQ-colorContrastSecondary:rgb(255, 255, 255);--SBQQ-welcomeMatColorBackgroundProgressBar:rgb(255, 255, 255);--SBQQ-globalActionIconSize:1.5rem;--SBQQ-paletteViolet20:rgb(72, 26, 84);--SBQQ-fontSizeHeadingSmall:0.875rem;--SBQQ-colorPickerRangeIndicatorSize:0.75rem;--SBQQ-paletteOrange15:rgb(55, 30, 3);--SBQQ-sliderHandleSize:1rem;--SBQQ-tableBorderRadius:0;--SBQQ-paletteTeal60:rgb(6, 165, 154);--SBQQ-userDefaultAvatarSmall:url(/_slds/images/profile_avatar_96.png?cache=3c01f25f);--SBQQ-buttonColorBackgroundPrimary:rgb(255, 255, 255);--SBQQ-colorPickerInputCustomHexWidth:4.2rem;--SBQQ-paletteOrange10:rgb(32, 22, 0);--SBQQ-palettePink60:rgb(255, 83, 138);--SBQQ-paletteTeal65:rgb(3, 180, 167);--SBQQ-colorBackgroundRowSelected:rgb(243, 243, 243);--SBQQ-colorBackgroundContextBarBrandAccent:rgb(13, 157, 218);--SBQQ-fontFamilyMonospace:Consolas, Menlo, Monaco, Courier, monospace;--SBQQ-cardFooterColorBorder:rgba(0, 0, 0, 0);--SBQQ-palettePurple80:rgb(215, 191, 242);--SBQQ-varSpacingHorizontalLarge:1.5rem;--SBQQ-colorTextRequired:rgb(234, 0, 30);--SBQQ-elevationShadow16:0 16px 16px 0 rgba(0, 0, 0, 0.16);--SBQQ-paletteViolet10:rgb(46, 0, 57);--SBQQ-shadowHardPrimary:none;--SBQQ-paletteOrange20:rgb(62, 43, 2);--SBQQ-paletteViolet15:rgb(61, 1, 87);--SBQQ-radioButtonGroupLineHeightTouch:2.69rem;--SBQQ-colorBackgroundBrandPrimary:rgb(1, 118, 211);--SBQQ-paletteTeal70:rgb(1, 195, 179);--SBQQ-colorBackgroundUtilityBarActive:rgb(27, 150, 255);--SBQQ-zIndexSticky:100;--SBQQ-colorBackgroundContextBarShadow:linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0, rgba(0, 0, 0, 0) 100%);--SBQQ-paletteTeal80:rgb(4, 225, 203);--SBQQ-palettePurple90:rgb(236, 225, 249);--SBQQ-squareIconUtilityLarge:1.5rem;--SBQQ-fontSize10:2rem;--SBQQ-groupDefaultAvatarMedium:url(/_slds/images/group_avatar_160.png?cache=b8fe8e83);--SBQQ-elevationShadow32:0 32px 32px 0 rgba(0, 0, 0, 0.16);--SBQQ-paletteOrange30:rgb(95, 62, 2);--SBQQ-colorBorderButtonInverseDisabled:rgba(255, 255, 255, 0.15);--SBQQ-fontSize11:2.625rem;--SBQQ-einsteinHeaderTextShadow:#cfe9fe;--SBQQ-palettePurple95:rgb(246, 242, 251);--SBQQ-squareTappableXxSmall:1.25rem;--SBQQ-colorBackgroundDestructiveHover:rgb(142, 3, 15);--SBQQ-fontSize9:1.75rem;--SBQQ-colorBackgroundLight:rgb(255, 255, 255);--SBQQ-fontSize8:1.5rem;--SBQQ-paletteTeal90:rgb(172, 243, 228);--SBQQ-shadowActive:0 0 2px #0176d3;--SBQQ-fontSize1:0.625rem;--SBQQ-paletteNeutral100:rgb(255, 255, 255);--SBQQ-colorTextLink:rgb(1, 118, 211);--SBQQ-pageHeaderTitleFontSize:1.125rem;--SBQQ-fontSize3:0.8125rem;--SBQQ-fontSize2:0.75rem;--SBQQ-colorTextLinkInverseDisabled:rgba(255, 255, 255, 0.15);--SBQQ-fontSize5:1rem;--SBQQ-fontSize4:0.875rem;--SBQQ-fontSize7:1.25rem;--SBQQ-fontSize6:1.125rem;--SBQQ-spacingNone:0;--SBQQ-paletteOrange40:rgb(130, 81, 1);--SBQQ-inputReadonlyFontWeight:400;--SBQQ-palettePurple60:rgb(173, 123, 238);--SBQQ-paletteTeal95:rgb(222, 249, 243);--SBQQ-colorStrokeHeaderButton:rgb(174, 174, 174);--SBQQ-typingIconDotColorBackgroundGray:rgb(201, 201, 201);--SBQQ-palettePurple65:rgb(183, 141, 239);--SBQQ-pageHeaderTitleFontWeight:400;--SBQQ-colorBackgroundButtonIconFocus:rgb(243, 243, 243);--SBQQ-groupDefaultAvatarSmall:url(/_slds/images/group_avatar_96.png?cache=d0659d12);--SBQQ-colorBackgroundModalBrand:rgb(1, 68, 134);--SBQQ-colorTextInverseActive:rgb(26, 185, 255);--SBQQ-colorBackgroundHighlightSearch:rgb(255, 240, 63);--SBQQ-paletteOrange50:rgb(169, 100, 4);--SBQQ-colorBackgroundSuccessDark:rgb(46, 132, 74);--SBQQ-shadowOverlay:0 -2px 4px rgba(0, 0, 0, 0.07);--SBQQ-sizeXSmall:12rem;--SBQQ-colorBackgroundDestructive:rgb(186, 5, 23);--SBQQ-typingIconDotSize:.5rem;--SBQQ-palettePurple70:rgb(194, 158, 241);--SBQQ-colorBorderInfo:rgb(116, 116, 116);--SBQQ-colorTextTabLabel:rgb(3, 45, 96);--SBQQ-palettePink15:rgb(75, 6, 32);--SBQQ-popoverWalkthroughColorBackgroundAlt:rgb(1, 118, 211);--SBQQ-durationImmediately:0.05s;--SBQQ-palettePink10:rgb(55, 1, 20);--SBQQ-elevationInverseShadow16:0 -16px 16px 0 rgba(0, 0, 0, 0.16);--SBQQ-salesforceSansLightWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Light.woff2);--SBQQ-splitViewWidth:25rem;--SBQQ-colorBorderIconInverseHint:rgba(255, 255, 255, 0.5);--SBQQ-brandDisabled:rgb(201, 199, 197);--SBQQ-paletteOrange60:rgb(221, 122, 1);--SBQQ-palettePurple40:rgb(117, 38, 227);--SBQQ-paletteOrange65:rgb(243, 131, 3);--SBQQ-progressColorBackground:rgb(255, 255, 255);--SBQQ-colorBorderContextBarThemeDefaultActive:rgb(243, 243, 243);--SBQQ-avatarGroupColorBackgroundInverse:rgb(116, 116, 116);--SBQQ-colorBackgroundAlt2:rgb(243, 243, 243);--SBQQ-cardFontWeight:400;--SBQQ-colorPickerSwatchShadow:inset 0 0 1px rgba(0,0,0,0.4);--SBQQ-paletteOrange70:rgb(254, 147, 57);--SBQQ-colorTextIconBrand:rgb(1, 118, 211);--SBQQ-colorTextButtonDefault:rgb(1, 118, 211);--SBQQ-palettePurple50:rgb(144, 80, 233);--SBQQ-pathButtonWidthFixed:13rem;--SBQQ-sizeLarge:25rem;--SBQQ-userDefaultAvatarMedium:url(/_slds/images/profile_avatar_160.png?cache=bfba2c9a);--SBQQ-colorBorderDestructive:rgb(234, 0, 30);--SBQQ-colorTextWeak:rgb(116, 116, 116);--SBQQ-fontSizeHeadingMedium:1.125rem;--SBQQ-mqSingleColumnRecordLayout:(max-width: 599px);--SBQQ-colorBackgroundInputSearch:rgba(0, 0, 0, 0.16);--SBQQ-welcomeMatBackgroundColorInfo:rgb(207, 233, 254);--SBQQ-colorBorderBrandPrimary:rgb(27, 150, 255);--SBQQ-colorBackgroundInverse:rgb(0, 22, 57);--SBQQ-maxWidthActionOverflowMenu:512px;--SBQQ-paletteNeutral10:rgb(24, 24, 24);--SBQQ-carouselColorBackground:rgb(255, 255, 255);--SBQQ-colorTextLabel:rgb(116, 116, 116);--SBQQ-colorBackgroundButtonSuccessActive:rgb(46, 132, 74);--SBQQ-squareIconLarge:3.125rem;--SBQQ-spinnerSizeXSmall:1rem;--SBQQ-paletteOrange80:rgb(255, 186, 144);--SBQQ-cardSpacingMargin:1rem;--SBQQ-colorTextBrowserActive:rgba(0, 0, 0, 0.4);--SBQQ-colorBackgroundButtonBrandHover:rgb(1, 68, 134);--SBQQ-chatMessageColorBackgroundOutbound:rgb(1, 68, 134);--SBQQ-colorTextIconDefaultActive:rgb(3, 45, 96);--SBQQ-palettePurple20:rgb(64, 16, 117);--SBQQ-colorTextIconDefaultHover:rgb(1, 118, 211);--SBQQ-colorTextLinkPrimary:rgb(1, 118, 211);--SBQQ-fontSizeTextXSmall:0.75rem;--SBQQ-colorBackgroundToast:rgb(116, 116, 116);--SBQQ-fontSizeXxLarge:2rem;--SBQQ-heightSalesPath:2rem;--SBQQ-colorTextIconDefaultHintBorderless:rgb(243, 243, 243);--SBQQ-paletteOrange95:rgb(255, 241, 234);--SBQQ-colorForegroundPrimary:rgb(255, 255, 255);--SBQQ-paletteOrange90:rgb(254, 223, 208);--SBQQ-colorBackgroundRowNew:rgb(205, 239, 196);--SBQQ-fontSizeTextLarge:1.125rem;--SBQQ-paletteGreen15:rgb(12, 41, 18);--SBQQ-colorBackgroundShade:rgb(243, 243, 243);--SBQQ-paletteGreen10:rgb(7, 27, 18);--SBQQ-palettePurple30:rgb(90, 27, 169);--SBQQ-varSpacingXxxSmall:0.125rem;--SBQQ-brandLightActive:rgb(227, 229, 237);--SBQQ-welcomeMatTextColorInfo:rgb(3, 45, 96);--SBQQ-colorBackgroundIconWaffle:rgb(116, 116, 116);--SBQQ-colorBackgroundContextBarItemHover:rgb(255, 255, 255);--SBQQ-fontSizeXLargeA:1.57rem;--SBQQ-colorBackgroundPathCompleteHover:rgb(46, 132, 74);--SBQQ-palettePink50:rgb(227, 6, 106);--SBQQ-paletteViolet90:rgb(242, 222, 254);--SBQQ-paletteGreen20:rgb(28, 51, 38);--SBQQ-paletteViolet95:rgb(249, 240, 255);--SBQQ-colorBorderContextBarThemeDefaultHover:rgb(50, 29, 113);--SBQQ-squareIconMedium:2.375rem;--SBQQ-textTransform:none;--SBQQ-colorBackgroundBrandPrimaryHover:rgb(1, 68, 134);--SBQQ-colorTextSuccess:rgb(46, 132, 74);--SBQQ-carouselIndicatorColorBackgroundFocus:rgb(1, 68, 134);--SBQQ-colorBackgroundChromeDesktop:rgb(255, 255, 255);--SBQQ-borderStrokeWidthThick:2px;--SBQQ-colorBackgroundReminder:rgb(243, 243, 243);--SBQQ-palettePurple15:rgb(48, 11, 96);--SBQQ-colorTextToast:rgb(243, 243, 243);--SBQQ-paletteViolet80:rgb(229, 185, 254);--SBQQ-colorBackgroundAlt:rgb(255, 255, 255);--SBQQ-palettePink40:rgb(182, 5, 84);--SBQQ-paletteGreen30:rgb(25, 78, 49);--SBQQ-palettePurple10:rgb(36, 6, 67);--SBQQ-elevationInverseShadow32:0 -32px 32px 0 rgba(0, 0, 0, 0.16);--SBQQ-colorBorderCustomer:rgb(254, 147, 57);--SBQQ-tableColorBackgroundStripes:rgb(243, 243, 243);--SBQQ-varSpacingVerticalSmall:0.75rem;--SBQQ-palettePink30:rgb(138, 3, 62);--SBQQ-paletteViolet70:rgb(216, 146, 254);--SBQQ-colorBorderContextBarInverseItem:rgba(255, 255, 255, 0.2);--SBQQ-utilityBarColorBackgroundNotificationBadge:rgb(254, 92, 76);--SBQQ-colorTextTabLabelDisabled:rgb(243, 243, 243);--SBQQ-heightInput:1.875rem;--SBQQ-squareTappable:2.75rem;--SBQQ-fontSizeSmall:0.875rem;--SBQQ-paletteGreen40:rgb(57, 101, 71);--SBQQ-tableColorBackgroundHeaderFocus:rgb(255, 255, 255);--SBQQ-salesforceSansRegularWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Regular.woff2);--SBQQ-varSpacingHorizontalXxLarge:3rem;--SBQQ-paletteViolet65:rgb(209, 125, 254);--SBQQ-progressBarColorBackgroundFill:rgb(26, 185, 255);--SBQQ-colorBorderSeparator:rgb(243, 243, 243);--SBQQ-paletteGreen50:rgb(46, 132, 74);--SBQQ-brandHeaderIconDisabled:rgba(145, 145, 145, 0.25);--SBQQ-palettePink20:rgb(97, 2, 42);--SBQQ-splitViewColorBackground:rgb(243, 243, 243);--SBQQ-colorBackgroundSecondary:rgb(243, 243, 243);--SBQQ-colorTextLinkFocus:rgb(1, 68, 134);--SBQQ-paletteViolet60:rgb(203, 101, 255);--DNBoptimizer-sbcFontColor:#404040;--DNBoptimizer-sbcHeaderFontSize:24px;--DNBoptimizer-sbcFontFace:'Salesforce Sans';--bre-paletteIndigo10:rgb(32, 6, 71);--bre-popoverWalkthroughHeaderImage:;--bre-zIndexDialog:6000;--bre-colorPickerSelectorWidth:14rem;--bre-nubbinSizeDefault:1rem;--bre-paletteCloudBlue40:rgb(5, 98, 138);--bre-colorBackgroundContextBarInverseItemHover:rgba(255, 255, 255, 0.2);--bre-dropZoneSlotHeight:0.25rem;--bre-colorTextTabLabelSelected:rgb(1, 118, 211);--bre-colorStrokeBrandActive:rgb(3, 45, 96);--bre-paletteIndigo15:rgb(31, 9, 116);--bre-cardBodyPadding:0 1rem;--bre-varSpacingHorizontalSmall:0.75rem;--bre-tableColorBackgroundHeaderResizableHandle:rgb(174, 174, 174);--bre-colorBackgroundPathActiveHover:rgb(3, 45, 96);--bre-brandPrimaryTransparent:rgba(21, 137, 238, 0.1);--bre-brandPrimaryTransparent40:rgba(21, 137, 238, 0.4);--bre-colorBorderButtonDefault:rgb(201, 201, 201);--bre-paletteIndigo20:rgb(50, 29, 113);--bre-popoverColorText:rgb(201, 201, 201);--bre-paletteCloudBlue30:rgb(8, 73, 104);--bre-colorTextButtonDefaultActive:rgb(1, 118, 211);--bre-colorPickerSliderHeight:1.5rem;--bre-colorTextIconInverse:rgb(255, 255, 255);--bre-heightFooter:3.75rem;--bre-splitViewColorBorder:rgb(201, 201, 201);--bre-colorBorderRowSelectedHover:rgb(27, 150, 255);--bre-fontSizeTextXxSmall:0.625rem;--bre-lineHeightHeading:1.25;--bre-cardHeaderMargin:0 0 0.75rem;--bre-paletteIndigo30:rgb(47, 44, 183);--bre-mqMediumLandscape:only screen and (min-width: 48em) and (min-aspect-ratio: 4/3);--bre-brandBandImageHeightMedium:12.5rem;--bre-illustrationColorSecondary:rgb(207, 233, 254);--bre-zIndexDefault:1;--bre-colorBorderSelectionActive:rgb(243, 243, 243);--bre-paletteCloudBlue20:rgb(2, 50, 72);--bre-utilityBarColorBackgroundNotificationFocus:rgb(201, 201, 201);--bre-colorTextIconDefaultDisabled:rgb(201, 201, 201);--bre-colorTextBrand:rgb(27, 150, 255);--bre-durationToastMedium:9.6s;--bre-colorBackgroundButtonIconActive:rgb(243, 243, 243);--bre-brandHeaderContrastWeak:rgb(145, 145, 145);--bre-colorBackgroundNotificationNew:rgb(243, 243, 243);--bre-brandHeaderContrastInverseActive:rgb(238, 238, 238);--bre-colorBackgroundInputCheckboxSelected:rgb(27, 150, 255);--bre-progressColorBorder:rgb(255, 255, 255);--bre-spacingXxxSmall:0.125rem;--bre-paletteIndigo40:rgb(58, 73, 218);--bre-colorBackgroundProgressRingContent:rgb(255, 255, 255);--bre-lineHeightButtonSmall:1.75rem;--bre-salesforceSansBoldItalicWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-BoldItalic.woff);--bre-brandBackgroundDarkTransparent:rgba(221, 219, 218, 0);--bre-colorPickerThumbWidth:0.375rem;--bre-paletteCloudBlue10:rgb(0, 26, 40);--bre-brandHeaderIconActive:rgb(129, 129, 129);--bre-widthStageLeftCollapsed:4rem;--bre-paletteCloudBlue15:rgb(10, 38, 54);--bre-colorBorderOffline:rgb(68, 68, 68);--bre-colorBackgroundUtilityBarHover:rgb(243, 243, 243);--bre-sliderHandleColorBackgroundHover:rgb(1, 118, 211);--bre-colorTextIconInverseHint:rgba(255, 255, 255, 0.5);--bre-sizeMedium:20rem;--bre-brandPrimaryTransparent10:rgba(21, 137, 238, 0.1);--bre-colorBorderIconInverseHintHover:rgba(255, 255, 255, 0.75);--bre-colorTextDefault:rgb(3, 45, 96);--bre-paletteIndigo50:rgb(88, 103, 232);--bre-progressBarHeight:0.125rem;--bre-colorBackgroundWarning:rgb(254, 147, 57);--bre-colorBackgroundBrandPrimaryActive:rgb(3, 45, 96);--bre-paletteBlue90:rgb(216, 230, 254);--bre-brandHeaderContrastCool:rgb(1, 68, 134);--bre-paletteCloudBlue80:rgb(144, 208, 254);--bre-paletteBlue95:rgb(238, 244, 255);--bre-colorBorderSelectionHover:rgb(27, 150, 255);--bre-zIndexPopup:5000;--bre-borderRadiusLarge:0.5rem;--bre-colorTextIconInverseHintHover:rgba(255, 255, 255, 0.75);--bre-popoverBrandBorderWidth:0.25rem;--bre-fontSizeHeadingXLarge:1.75rem;--bre-typingIconDotColorBackgroundGrayDark:rgb(201, 201, 201);--bre-paletteIndigo65:rgb(142, 155, 239);--bre-varSpacingLarge:1.5rem;--bre-pageHeaderSpacingMargin:0;--bre-fontSizeTextXLarge:1.25rem;--bre-paletteIndigo60:rgb(127, 140, 237);--bre-paletteCloudBlue70:rgb(26, 185, 255);--bre-welcomeMatColorActionShadow:rgba(0, 0, 0, 0.05);--bre-colorTextBrowser:rgb(255, 255, 255);--bre-welcomeMatSpacingInfo:7.75rem;--bre-mqLarge:only screen and (min-width: 64.0625em);--bre-paletteIndigo70:rgb(158, 169, 241);--bre-squareTappableSmall:2rem;--bre-colorTextActionLabel:rgb(116, 116, 116);--bre-paletteCloudBlue60:rgb(13, 157, 218);--bre-paletteBlue70:rgb(120, 176, 253);--bre-colorBorderTabActive:rgb(255, 255, 255);--bre-paletteCloudBlue65:rgb(8, 171, 237);--bre-globalnavigationItemHeightAccentFocus:4px;--bre-colorBorderDestructiveHover:rgb(186, 5, 23);--bre-buttonLineHeightTouch:2.65rem;--bre-colorTextCustomer:rgb(254, 147, 57);--bre-squareIconUtilitySmall:1rem;--bre-colorBackgroundModalButtonActive:rgba(0, 0, 0, 0.16);--bre-colorTextBrandPrimary:rgb(255, 255, 255);--bre-squareIconXSmallBoundary:1.25rem;--bre-widthToggle:3rem;--bre-paletteIndigo80:rgb(190, 199, 246);--bre-welcomeMatMinHeight:25rem;--bre-zIndexDocked:4;--bre-squareIconMediumBoundaryAlt:2.25rem;--bre-colorBorderSelection:rgb(1, 118, 211);--bre-paletteBlue80:rgb(170, 203, 255);--bre-paletteCloudBlue50:rgb(16, 124, 173);--bre-brandHeaderContrastActive:rgb(80, 80, 80);--bre-formLabelFontSize:0.75rem;--bre-colorTextActionLabelActive:rgb(3, 45, 96);--bre-colorBackgroundBackdropTint:rgb(243, 243, 243);--bre-durationSlowly:0.4s;--bre-colorBackgroundRowHover:rgb(243, 243, 243);--bre-popoverWalkthroughAltNubbinColorBackground:rgb(1, 118, 211);--bre-spinnerSizeSmall:1.25rem;--bre-sliderTrackColorBackgroundFill:rgb(27, 150, 255);--bre-welcomeMatWidth:52.0625rem;--bre-paletteIndigo95:rgb(241, 243, 251);--bre-paletteIndigo90:rgb(224, 229, 248);--bre-filesZIndexHover:5;--bre-colorTextPill:rgb(1, 118, 211);--bre-varSpacingSmall:0.75rem;--bre-heightDockedBar:2.5rem;--bre-paletteBlue50:rgb(1, 118, 211);--bre-colorTextTabLabelHover:rgb(1, 68, 134);--bre-fontSizeHeadingXSmall:0.75rem;--bre-colorStrokeDisabled:rgb(243, 243, 243);--bre-widthPathBorderCurrent:0.125rem;--bre-colorBackgroundButtonDefaultHover:rgb(243, 243, 243);--bre-varSpacingVerticalXxSmall:0.25rem;--bre-colorTextButtonDefaultHover:rgb(1, 118, 211);--bre-durationPromptly:0.2s;--bre-colorBorderPathCurrent:rgb(1, 68, 134);--bre-colorBackgroundButtonDefaultActive:rgb(243, 243, 243);--bre-colorTextStageLeft:rgb(243, 243, 243);--bre-colorBorderHint:rgb(3, 45, 96);--bre-colorTextPrimary:rgb(3, 45, 96);--bre-brandBandColorBackgroundSecondaryTransparent:rgba(0, 0, 0, 0);--bre-paletteBlue60:rgb(27, 150, 255);--bre-cardColorBackground:rgb(255, 255, 255);--bre-brandHeaderIcon:rgb(145, 145, 145);--bre-paletteBlue65:rgb(87, 163, 253);--bre-spacingLarge:1.5rem;--bre-pageHeaderColorBorder:rgba(0, 0, 0, 0);--bre-cardFooterMargin:0.75rem;--bre-fontSizeTextSmall:0.8125rem;--bre-colorTextLinkInverseActive:rgba(255, 255, 255, 0.5);--bre-durationToastShort:4.8s;--bre-lineHeightButton:1.875rem;--bre-panelDockedLeftShadow:1px 0 3px rgba(0,0,0,0.25);--bre-panelDockedRightShadow:-1px 0 3px 0 rgba(0,0,0,0.25);--bre-colorTextLinkPrimaryHover:rgb(1, 118, 211);--bre-shadowButton:0 1px 1px 0 rgba(0, 0, 0, 0.05);--bre-welcomeMatMaxHeight:37.5rem;--bre-colorBorderToggleChecked:rgb(255, 255, 255);--bre-shadowHeader:0 2px 4px rgba(0, 0, 0, 0.07);--bre-sizeXxLarge:60rem;--bre-colorBackgroundDockedPanelHeader:rgb(255, 255, 255);--bre-paletteBlue30:rgb(1, 68, 134);--bre-lineHeightSalespath:1.5rem;--bre-shadowDrag:0 2px 4px 0 rgba(0, 0, 0, 0.40);--bre-colorBackgroundPathExpanded:rgb(255, 255, 255);--bre-colorBackground:rgb(243, 243, 243);--bre-colorBackgroundInput:rgb(255, 255, 255);--bre-sizeSmall:15rem;--bre-userDefaultAvatar:url(/_slds/images/profile_avatar_200.png?cache=7bdcafae);--bre-colorTextButtonInverse:rgb(243, 243, 243);--bre-colorBackgroundInputCheckboxDisabled:rgb(201, 201, 201);--bre-tableColorTextHeader:rgb(68, 68, 68);--bre-paletteBlue40:rgb(11, 92, 171);--bre-cardColorBorder:rgb(201, 201, 201);--bre-squareIconUtilityMedium:1.25rem;--bre-colorBackgroundButtonSuccessHover:rgb(46, 132, 74);--bre-colorBorderButtonBrandDisabled:rgba(0, 0, 0, 0);--bre-fontSizeHeadingXxSmall:0.625rem;--bre-colorBackgroundButtonInverseActive:rgba(0, 0, 0, 0.24);--bre-illustrationEmptyStateEvents:url(/_slds/images/illustrations/empty-state-events.svg?cache=985b247a);--bre-colorBackgroundToggle:rgb(174, 174, 174);--bre-colorBackgroundStencil:rgb(243, 243, 243);--bre-welcomeMatCheckSize:0.625rem;--bre-colorTextButtonBrandHover:rgb(255, 255, 255);--bre-buttonColorBackgroundSecondary:rgba(255, 255, 255, 0.8);--bre-paletteBlue10:rgb(0, 22, 57);--bre-varSpacingVerticalLarge:1.5rem;--bre-colorBorderReminder:rgb(243, 243, 243);--bre-colorBrandDark:rgb(1, 118, 211);--bre-paletteBlue15:rgb(3, 35, 77);--bre-colorBorderBrandPrimaryFocus:rgb(1, 118, 211);--bre-salesforceSansItalicWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Italic.woff);--bre-colorBorderBrandPrimaryActive:rgb(3, 45, 96);--bre-datepickerColorTextDayAdjacentMonth:rgb(116, 116, 116);--bre-colorBorderErrorAlt:rgb(254, 143, 125);--bre-shadowReminder:0 2px 3px 0 rgba(0, 0, 0, 0.20);--bre-brandTextLinkActive:rgb(1, 68, 134);--bre-pageHeaderColorBackground:rgb(243, 243, 243);--bre-salesforceSansBoldWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Bold.woff2);--bre-fontSizeHeadingLarge:1.5rem;--bre-colorBackgroundStencilAlt:rgb(243, 243, 243);--bre-paletteBlue20:rgb(3, 45, 96);--bre-elevationInverseShadow3Below:0 -3px 3px 0 rgba(0, 0, 0, 0.16) inset;--bre-varSpacingHorizontalXxSmall:0.25rem;--bre-colorBorderSeparatorAlt:rgb(201, 201, 201);--bre-colorPickerRangeHeight:5rem;--bre-colorBackgroundButtonIcon:rgba(0, 0, 0, 0);--bre-paletteTeal15:rgb(7, 40, 37);--bre-buttonIconColorBorderPrimary:rgb(255, 255, 255);--bre-brandAccessibleActive:rgb(1, 68, 134);--bre-paletteYellow80:rgb(252, 192, 3);--bre-zIndexSpinner:9050;--bre-colorBackgroundContextTabBarItem:rgb(255, 255, 255);--bre-fontWeightBold:700;--bre-paletteTeal10:rgb(7, 27, 18);--bre-colorBackgroundContextBarItemActive:rgb(255, 255, 255);--bre-shadowFocusInset:0 0 2px 2px #1b96ff inset;--bre-colorBackgroundAltInverse:rgb(3, 45, 96);--bre-colorBackgroundPathIncompleteHover:rgb(201, 201, 201);--bre-squareIconMediumContent:1rem;--bre-colorBackgroundContextBar:rgb(255, 255, 255);--bre-colorTextInverseHover:rgb(174, 174, 174);--bre-colorBackgroundInputActive:rgb(255, 255, 255);--bre-brandContrast:rgb(26, 27, 30);--bre-colorTextSecondary:rgb(116, 116, 116);--bre-fillHeaderButtonHover:rgb(1, 68, 134);--bre-fontFamilyText:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--bre-welcomeMatCompleteIconSize:1.25rem;--bre-varSpacingXxLarge:3rem;--bre-paletteYellow95:rgb(251, 243, 224);--bre-paletteYellow90:rgb(249, 227, 182);--bre-brandBackgroundPrimary:rgb(250, 250, 249);--bre-paletteTeal20:rgb(2, 52, 52);--bre-progressRingWidth:0.1875rem;--bre-paletteYellow65:rgb(215, 147, 4);--bre-paletteYellow60:rgb(202, 133, 1);--bre-colorBorderInputCheckboxSelectedCheckmark:rgb(255, 255, 255);--bre-colorBorderCanvasElementSelectionHover:rgb(1, 68, 134);--bre-borderRadiusSmall:0.125rem;--bre-progressBarColorBackground:rgb(201, 201, 201);--bre-durationInstantly:0s;--bre-colorBackgroundToastSuccess:rgb(46, 132, 74);--bre-tabsFontWeight:400;--bre-colorBackgroundPost:rgb(243, 243, 243);--bre-colorTextPlaceholderInverse:rgb(243, 243, 243);--bre-colorTextInputIcon:rgb(174, 174, 174);--bre-sliderHandleShadow:rgba(0, 0, 0, 0.16) 0 2px 3px;--bre-paletteYellow70:rgb(228, 162, 1);--bre-fontWeightLight:300;--bre-colorTextError:rgb(234, 0, 30);--bre-varSpacingXxSmall:0.25rem;--bre-colorBorderInput:rgb(201, 201, 201);--bre-brandAccessible:rgb(1, 118, 211);--bre-pageColorBackgroundPrimary:rgb(255, 255, 255);--bre-cardShadow:none;--bre-lineClamp:3;--bre-welcomeMatWidthProgressBar:12.5rem;--bre-progressColorBackgroundShade:rgb(243, 243, 243);--bre-globalActionFillHover:rgb(1, 68, 134);--bre-illustrationEmptyStateAssistant:url(/_slds/images/illustrations/empty-state-assistant.svg?cache=127a789e);--bre-varSpacingHorizontalXSmall:0.5rem;--bre-colorPickerInputCustomHexFontSize:0.75rem;--bre-varSpacingMedium:1rem;--bre-colorBackgroundShadeDark:rgb(201, 201, 201);--bre-colorPickerSwatchesWidth:13.3rem;--bre-squareIconLargeBoundaryAlt:5rem;--bre-colorBorderInputDisabled:rgb(201, 201, 201);--bre-paletteYellow40:rgb(140, 75, 2);--bre-cardWrapperSpacing:1rem;--bre-colorBackgroundNotificationBadgeActive:rgb(3, 45, 96);--bre-colorBackgroundHighlight:rgb(250, 255, 189);--bre-colorBackgroundRowActive:rgb(243, 243, 243);--bre-componentSpacingMargin:0;--bre-colorBorderButtonFocusInverse:rgb(243, 243, 243);--bre-shadowButtonFocus:0 0 3px #0176d3;--bre-varSpacingVerticalXLarge:2rem;--bre-tableColorBackgroundHeaderHover:rgb(243, 243, 243);--bre-colorBackgroundDockedPanel:rgb(255, 255, 255);--bre-colorTextTertiary:rgb(116, 116, 116);--bre-varSpacingVerticalXxLarge:3rem;--bre-paletteYellow50:rgb(168, 100, 3);--bre-brandContrastActive:rgb(13, 14, 18);--bre-squareIconLargeContent:2rem;--bre-colorPickerSliderThumbColorBackground:rgb(243, 243, 243);--bre-inputStaticFontSize:0.8125rem;--bre-borderWidthThin:1px;--bre-fontWeightRegular:400;--bre-colorBackgroundButtonSuccess:rgb(69, 198, 90);--bre-splitViewColorBackgroundRowHover:rgb(255, 255, 255);--bre-paletteYellow20:rgb(79, 33, 0);--bre-bannerUserDefaultImage:;--bre-elevation8:8;--bre-brandDark:rgb(1, 118, 211);--bre-colorBackgroundPathCurrentHover:rgb(255, 255, 255);--bre-elevation0:0;--bre-elevation2:2;--bre-pageHeaderJoinedColorBorder:rgb(201, 201, 201);--bre-elevation4:4;--bre-durationPaused:3.2s;--bre-colorBrand:rgb(27, 150, 255);--bre-colorBackgroundPathComplete:rgb(59, 167, 85);--bre-progressColorBorderHover:rgb(1, 118, 211);--bre-spacingXxSmall:0.25rem;--bre-tableCellSpacing:0.5rem;--bre-colorBorderContextBarThemeDefault:rgb(13, 157, 218);--bre-colorBackgroundAnchor:rgb(243, 243, 243);--bre-paletteYellow30:rgb(111, 52, 0);--bre-shadowButtonFocusInverse:0 0 3px #f3f3f3;--bre-welcomeMatFontSizeInfoTitle:2.625rem;--bre-colorBorderLinkFocusInverse:rgb(243, 243, 243);--bre-borderRadiusCircle:50%;--bre-buttonColorBorderSecondary:rgba(255, 255, 255, 0.8);--bre-colorTextSuccessInverse:rgb(69, 198, 90);--bre-varSpacingXLarge:2rem;--bre-sizeXLarge:40rem;--bre-varSpacingHorizontalXxxSmall:0.125rem;--bre-elevation3Inset:-3;--bre-lineHeightTab:2.5rem;--bre-colorBackgroundDestructiveActive:rgb(142, 3, 15);--bre-colorTextLinkPrimaryActive:rgb(3, 45, 96);--bre-colorBackgroundPageHeader:rgb(255, 255, 255);--bre-colorBackgroundPill:rgb(255, 255, 255);--bre-fillBrandHover:rgb(1, 68, 134);--bre-colorBorderContextBarItem:rgba(0, 0, 0, 0.2);--bre-borderStrokeWidthThin:1px;--bre-progressColorBorderShade:rgb(243, 243, 243);--bre-heightHeader:2.75rem;--bre-shadowInlineEdit:0 2px 4px 4px rgba(0, 0, 0, 0.16);--bre-colorBackgroundNotificationBadgeHover:rgb(1, 68, 134);--bre-borderRadiusPill:15rem;--bre-colorTextButtonInverseDisabled:rgba(255, 255, 255, 0.5);--bre-sizeXxxSmall:3rem;--bre-colorBackgroundSuccessDarker:rgb(25, 78, 49);--bre-colorBackgroundToggleHover:rgb(147, 147, 147);--bre-paletteYellow15:rgb(46, 34, 4);--bre-paletteYellow10:rgb(40, 18, 2);--bre-cardSpacingSmall:0.75rem;--bre-illustrationEmptyStateTasks:url(/_slds/images/illustrations/empty-state-tasks.svg?cache=dc5e5e5b);--bre-brandBandScrimHeight:3.125rem;--bre-popoverWalkthroughColorBackground:rgb(0, 22, 57);--bre-colorBorderErrorDark:rgb(254, 143, 125);--bre-heightTappableSmall:2rem;--bre-colorBackgroundButtonBrandDisabled:rgb(243, 243, 243);--bre-colorBorderPrimary:rgb(201, 201, 201);--bre-colorGray1:rgb(255, 255, 255);--bre-fontSizeXLarge:1.5rem;--bre-varSquareIconMediumBoundary:2rem;--bre-colorGray5:rgb(221, 219, 218);--bre-colorGray4:rgb(236, 235, 234);--bre-colorGray3:rgb(243, 242, 242);--bre-colorGray2:rgb(250, 250, 249);--bre-opacity8:0.8;--bre-salesforceSansBoldItalicWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-BoldItalic.woff2);--bre-opacity5:0.5;--bre-squareIconGlobalIdentityIcon:1.25rem;--bre-colorBackgroundBrowser:rgb(116, 116, 116);--bre-colorTextIconInverseActive:rgb(255, 255, 255);--bre-shadowDocked:0 -2px 2px 0 rgba(0, 0, 0, 0.16);--bre-colorBackgroundInputError:rgb(253, 221, 227);--bre-colorGray9:rgb(112, 110, 107);--bre-colorGray8:rgb(150, 148, 146);--bre-colorGray7:rgb(176, 173, 171);--bre-colorGray6:rgb(201, 199, 197);--bre-colorTextLinkInverse:rgb(255, 255, 255);--bre-squareIconSmallBoundary:1.5rem;--bre-varSpacingHorizontalXLarge:2rem;--bre-colorBackgroundDark:rgb(243, 243, 243);--bre-colorTextWarningAlt:rgb(140, 75, 2);--bre-elevationInverseShadow2:0 -2px 2px 0 rgba(0, 0, 0, 0.16);--bre-elevationInverseShadow0:none;--bre-colorStrokeBrand:rgb(1, 118, 211);--bre-colorBackgroundToggleActive:rgb(1, 68, 134);--bre-colorBorderContextBarDivider:rgba(255, 255, 255, 0.2);--bre-zIndexToast:10000;--bre-colorBackgroundContextBarActionHighlight:rgba(255, 255, 255, 0.2);--bre-colorBackgroundBrandPrimaryFocus:rgb(1, 68, 134);--bre-buttonColorBackgroundBrandPrimary:rgb(1, 118, 211);--bre-brandHeaderContrastWarm:rgb(186, 5, 23);--bre-buttonColorTextPrimary:rgb(255, 255, 255);--bre-colorBrandDarker:rgb(1, 68, 134);--bre-colorBorderPathCurrentHover:rgb(3, 45, 96);--bre-colorTextButtonDefaultDisabled:rgb(201, 201, 201);--bre-colorBackgroundPathLost:rgb(234, 0, 30);--bre-einsteinHeaderBackground:url(/_slds/images/einstein-headers/einstein-header-background.svg?cache=ff7fa2ff);--bre-brandTextLink:rgb(1, 118, 211);--bre-sliderTrackColorBackground:rgb(243, 243, 243);--bre-colorContrastPrimary:rgb(243, 243, 243);--bre-groupDefaultAvatar:url(/_slds/images/group_avatar_200.png?cache=a0044dae);--bre-templateProfileGutters:0;--bre-sizeXxSmall:6rem;--bre-colorBackgroundPayload:rgb(243, 243, 243);--bre-paletteCloudBlue90:rgb(207, 233, 254);--bre-colorBackgroundPathActive:rgb(1, 68, 134);--bre-colorTextDestructive:rgb(234, 0, 30);--bre-squareIconLargeBoundary:3rem;--bre-colorBorderWarning:rgb(254, 147, 57);--bre-shadowSoftPrimaryHover:none;--bre-paletteCloudBlue95:rgb(234, 245, 254);--bre-spacingSmall:0.75rem;--bre-colorBackgroundErrorDark:rgb(186, 5, 23);--bre-brandHeaderContrastWeakDisabled:rgba(166, 166, 166, 0.25);--bre-squareIconMediumContentAlt:0.875rem;--bre-colorBackgroundButtonInverse:rgba(0, 0, 0, 0);--bre-brandHeader:rgb(255, 255, 255);--bre-lineHeightText:1.5;--bre-widthStageLeftExpanded:15rem;--bre-colorBackgroundError:rgb(254, 92, 76);--bre-colorTextButtonBrandActive:rgb(255, 255, 255);--bre-fontFamily:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--bre-mqMedium:only screen and (min-width: 48em);--bre-brandDarkActive:rgb(37, 48, 69);--bre-colorBackgroundPathStepActionActive:rgb(0, 22, 57);--bre-neutrafaceDisplayWoff2:url(/_slds/fonts/NeutrafaceDisplay.woff2?cache=2.9.0);--bre-spacingMedium:1rem;--bre-colorTextModal:rgb(255, 255, 255);--bre-spinnerSizeLarge:2.75rem;--bre-carouselIndicatorColorBackgroundHover:rgb(243, 243, 243);--bre-shadowActionOverflowFooter:0 -2px 4px #f3f3f3;--bre-popoverWalkthroughHeaderColorBackground:rgb(3, 45, 96);--bre-colorBackgroundPathWon:rgb(46, 132, 74);--bre-lineHeightToggle:1.3rem;--bre-neutrafaceDisplayWoff:url(/_slds/fonts/NeutrafaceDisplay.woff?cache=2.9.0);--bre-cardFooterPadding:0 1rem 0.75rem;--bre-sliderHandleColorBackground:rgb(27, 150, 255);--bre-colorBackgroundErrorAlt:rgb(254, 143, 125);--bre-colorBackgroundIndicatorDot:rgb(3, 45, 96);--bre-chatMessageColorBackgroundInbound:rgb(243, 243, 243);--bre-elevationShadow0:none;--bre-heightPill:1.625rem;--bre-elevationShadow4:0 4px 4px 0 rgba(0, 0, 0, 0.16);--bre-elevationShadow2:0 2px 2px 0 rgba(0, 0, 0, 0.16);--bre-elevationShadow8:0 8px 8px 0 rgba(0, 0, 0, 0.16);--bre-varFontSize8:1.5rem;--bre-colorBackgroundButtonDefaultDisabled:rgb(255, 255, 255);--bre-varFontSize7:1.25rem;--bre-elevationInverseShadow8:0 -8px 8px 0 rgba(0, 0, 0, 0.16);--bre-varFontSize9:1.75rem;--bre-brandBandColorBackgroundPrimary:rgba(0, 0, 0, 0);--bre-colorTextButtonBrand:rgb(255, 255, 255);--bre-elevationInverseShadow4:0 -4px 4px 0 rgba(0, 0, 0, 0.16);--bre-colorBackgroundToggleActiveHover:rgb(1, 68, 134);--bre-welcomeMatBackgroundImageInfo:url(/_slds/images/welcome-mat/bg-info@2x.png?cache=ddb4e82f);--bre-varFontSize2:0.75rem;--bre-varFontSize1:0.625rem;--bre-varFontSize4:0.875rem;--bre-pageHeaderSpacingRow:0.75rem 1rem;--bre-varFontSize3:0.8125rem;--bre-varFontSize6:1.125rem;--bre-varFontSize5:1rem;--bre-varSpacingVerticalMedium:1rem;--bre-pageHeaderSpacingPadding:1rem;--bre-colorTextModalButton:rgb(116, 116, 116);--bre-colorBackgroundPrimary:rgb(255, 255, 255);--bre-colorTextInputFocusInverse:rgb(3, 45, 96);--bre-colorBackgroundScrollbarTrack:rgb(201, 201, 201);--bre-paletteNeutral70:rgb(174, 174, 174);--bre-brandPrimaryActive:rgb(1, 118, 211);--bre-popoverWalkthroughAltImage:;--bre-nubbinTriangleOffset:-0.1875rem;--bre-salesforceSansLightWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Light.woff);--bre-colorBorderSuccessDark:rgb(46, 132, 74);--bre-mqHighRes:only screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2),screen and (min-resolution: 192dpi),screen and (min-resolution: 2dppx);--bre-brandBandColorBackgroundPrimaryTransparent:rgba(0, 0, 0, 0);--bre-colorBackgroundContextBarInverseItemActive:rgba(255, 255, 255, 0.4);--bre-colorTextButtonDefaultHint:rgb(174, 174, 174);--bre-salesforceSansItalicWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Italic.woff2);--bre-paletteGreen60:rgb(59, 167, 85);--bre-heightContextBar:2.5rem;--bre-colorBackgroundOrgSwitcherArrow:rgb(0, 22, 57);--bre-paletteGreen65:rgb(65, 182, 88);--bre-brandHeaderContrastInverse:rgb(255, 255, 255);--bre-notificationColorBackgroundInverse:rgb(116, 116, 116);--bre-colorBackgroundButtonIconDisabled:rgb(255, 255, 255);--bre-paletteNeutral60:rgb(147, 147, 147);--bre-colorBorderContextBarThemeDefaultAlt:rgb(243, 243, 243);--bre-fillBrand:rgb(1, 118, 211);--bre-colorBackgroundInputCheckbox:rgb(255, 255, 255);--bre-colorBorder:rgb(201, 201, 201);--bre-squareIconSmall:1rem;--bre-varSpacingHorizontalMedium:1rem;--bre-illustrationColorPrimary:rgb(144, 208, 254);--bre-varSpacingVerticalXSmall:0.5rem;--bre-colorTextPlaceholder:rgb(116, 116, 116);--bre-einsteinHeaderBackgroundColor:rgb(144, 208, 254);--bre-paletteGreen70:rgb(69, 198, 90);--bre-brandHeaderContrast:rgb(94, 94, 94);--bre-inputStaticColor:rgb(24, 24, 24);--bre-paletteNeutral90:rgb(229, 229, 229);--bre-paletteGreen90:rgb(205, 239, 196);--bre-spacingXxLarge:3rem;--bre-shadowDropDown:0 2px 3px 0 rgba(0, 0, 0, 0.16);--bre-paletteNeutral95:rgb(243, 243, 243);--bre-colorBackgroundModal:rgb(255, 255, 255);--bre-elevationShadow3Below:0 3px 3px 0 rgba(0, 0, 0, 0.16) inset;--bre-paletteRed80:rgb(254, 184, 171);--bre-sliderTrackWidth:100%;--bre-elevation32:32;--bre-globalHeaderColorBackground:rgb(255, 255, 255);--bre-spacingXLarge:2rem;--bre-paletteGreen80:rgb(145, 219, 139);--bre-colorBorderInputActive:rgb(27, 150, 255);--bre-varSpacingXSmall:0.5rem;--bre-paletteNeutral80:rgb(201, 201, 201);--bre-colorBackgroundModalButton:rgba(0, 0, 0, 0.07);--bre-colorBorderPathDivider:rgb(255, 255, 255);--bre-colorTextIconDefault:rgb(116, 116, 116);--bre-zIndexDeepdive:-99999;--bre-elevation16:16;--bre-paletteRed90:rgb(254, 222, 216);--bre-globalnavigationItemHeightAccentActive:3px;--bre-templateGutters:0;--bre-paletteRed95:rgb(254, 241, 238);--bre-buttonColorBorderBrandPrimary:rgb(1, 118, 211);--bre-buttonIconBoundaryTouch:2.75rem;--bre-brandBackgroundPrimaryTransparent:rgba(176, 196, 223, 0);--bre-fillHeaderButtonFocus:rgb(1, 118, 211);--bre-colorBorderError:rgb(234, 0, 30);--bre-colorTextLinkHover:rgb(1, 68, 134);--bre-paletteGreen95:rgb(235, 247, 230);--bre-einsteinHeaderFigure:url(/_slds/images/einstein-headers/einstein-figure.svg?cache=ec975fb1);--bre-colorBorderRowSelected:rgb(1, 118, 211);--bre-colorStrokeBrandHover:rgb(1, 118, 211);--bre-paletteNeutral30:rgb(68, 68, 68);--bre-varSpacingVerticalXxxSmall:0.125rem;--bre-paletteHotOrange10:rgb(40, 18, 2);--bre-colorTextButtonBrandDisabled:rgb(255, 255, 255);--bre-squareIconXSmallContent:0.5rem;--bre-varFontSize10:2rem;--bre-paletteRed60:rgb(254, 92, 76);--bre-varFontSize11:2.625rem;--bre-paletteRed65:rgb(254, 119, 101);--bre-buttonBorderRadius:.25rem;--bre-squareTappableXSmall:1.5rem;--bre-colorBackgroundGuidance:rgb(255, 255, 255);--bre-colorTextContextBarInverse:rgb(255, 255, 255);--bre-paletteNeutral20:rgb(46, 46, 46);--bre-fontFamilyHeading:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--bre-paletteRed70:rgb(254, 143, 125);--bre-brandHeaderContrastCoolActive:rgb(1, 68, 134);--bre-borderWidthThick:2px;--bre-pageHeaderShadow:none;--bre-spinnerSizeXxSmall:0.5rem;--bre-tableColorBackgroundHeader:rgb(255, 255, 255);--bre-pageHeaderColorBackgroundAlt:rgb(255, 255, 255);--bre-colorBorderBrandPrimaryHover:rgb(1, 118, 211);--bre-colorTextTabLabelActive:rgb(3, 45, 96);--bre-paletteNeutral50:rgb(116, 116, 116);--bre-colorBackgroundTempModalTint:rgba(126, 140, 153, 0.8);--bre-fontSizeMedium:1rem;--bre-colorBorderButtonBrand:rgb(1, 118, 211);--bre-paletteHotOrange30:rgb(126, 38, 0);--bre-paletteRed40:rgb(186, 5, 23);--bre-brandBandImageHeightSmall:6rem;--bre-colorTextInverseWeak:rgb(174, 174, 174);--bre-colorTextInverse:rgb(255, 255, 255);--bre-shadowLinkFocusInverse:0 0 3px #f3f3f3;--bre-squareIconXxSmallBoundary:1rem;--bre-lineHeightReset:1;--bre-verticalNavigationColorBackgroundShadeRowActive:rgb(243, 243, 243);--bre-colorBackgroundTempModal:rgba(126, 140, 153, 0.8);--bre-colorBackgroundToggleDisabled:rgb(174, 174, 174);--bre-colorGray13:rgb(8, 7, 7);--bre-colorGray10:rgb(81, 79, 77);--bre-paletteNeutral40:rgb(92, 92, 92);--bre-colorBorderInverse:rgb(0, 22, 57);--bre-carouselIndicatorColorBackgroundActive:rgb(1, 118, 211);--bre-colorBackgroundBackdrop:rgba(255, 255, 255, 0.75);--bre-colorGray12:rgb(43, 40, 38);--bre-colorGray11:rgb(62, 62, 60);--bre-colorTextContextBarActionTrigger:rgba(255, 255, 255, 0.4);--bre-paletteHotOrange20:rgb(74, 36, 19);--bre-colorBackgroundNotification:rgb(255, 255, 255);--bre-colorBackgroundPathStepActionCurrent:rgb(1, 68, 134);--bre-badgeColorBackgroundInverse:rgb(116, 116, 116);--bre-colorBorderSeparatorInverse:rgb(3, 45, 96);--bre-paletteRed50:rgb(234, 0, 30);--bre-colorBackgroundSpinnerDot:rgb(174, 174, 174);--bre-colorBackgroundButtonBrandActive:rgb(3, 45, 96);--bre-paletteHotOrange15:rgb(66, 22, 4);--bre-sliderHandleColorBackgroundFocus:rgb(1, 118, 211);--bre-spinnerSizeMedium:2rem;--bre-brandPrimary:rgb(27, 150, 255);--bre-paletteHotOrange50:rgb(216, 58, 0);--bre-colorTextLinkPrimaryFocus:rgb(1, 118, 211);--bre-colorTextInputDisabled:rgb(116, 116, 116);--bre-brandLogoImage:url(/_slds/images/logo-noname.svg?cache=380754d9);--bre-brandLight:rgb(244, 246, 254);--bre-paletteRed20:rgb(100, 1, 3);--bre-fillHeaderButton:rgb(174, 174, 174);--bre-varLineHeightText:1.5;--bre-colorBackgroundPathCurrent:rgb(255, 255, 255);--bre-colorBackgroundOffline:rgb(68, 68, 68);--bre-colorBorderTabSelected:rgb(1, 118, 211);--bre-colorTextWarning:rgb(254, 147, 57);--bre-salesforceSansRegularWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Regular.woff);--bre-paletteHotOrange40:rgb(170, 48, 1);--bre-cardSpacingLarge:1.5rem;--bre-paletteRed30:rgb(142, 3, 15);--bre-fontSizeMediumA:1.125rem;--bre-borderRadiusMedium:0.25rem;--bre-colorPickerSliderThumbBorderColor:rgb(68, 68, 68);--bre-shadowSoftPrimary:none;--bre-zIndexDropdown:7000;--bre-paletteHotOrange70:rgb(255, 144, 110);--bre-verticalNavigationColorBackgroundShadeRowHover:rgb(243, 243, 243);--bre-squareIconMediumBoundary:2rem;--bre-colorBackgroundButtonDefaultFocus:rgb(243, 243, 243);--bre-heightTappable:2.75rem;--bre-colorBackgroundToastError:rgb(234, 0, 30);--bre-brandBandDefaultImage:;--bre-durationQuickly:0.1s;--bre-colorBackgroundSelection:rgb(216, 230, 254);--bre-paletteHotOrange60:rgb(255, 93, 45);--bre-colorBackgroundActionbarIconUtility:rgb(116, 116, 116);--bre-colorBackgroundNotificationBadgeFocus:rgb(1, 68, 134);--bre-paletteHotOrange65:rgb(255, 120, 79);--bre-cardFooterTextAlign:right;--bre-colorBorderBrandDark:rgb(1, 68, 134);--bre-brandBackgroundDark:rgb(232, 232, 232);--bre-avatarGroupColorBackgroundLightest:rgb(255, 255, 255);--bre-colorTextContextBar:rgb(68, 68, 68);--bre-inputStaticFontWeight:400;--bre-paletteRed10:rgb(48, 12, 1);--bre-colorTextLinkDisabled:rgb(3, 45, 96);--bre-colorTextPathCurrent:rgb(1, 68, 134);--bre-paletteRed15:rgb(74, 12, 4);--bre-zIndexOverlay:8000;--bre-buttonColorBorderPrimary:rgb(243, 243, 243);--bre-paletteHotOrange90:rgb(255, 222, 213);--bre-shadowImage:0 1px 1px rgba(0, 0, 0, 0.16);--bre-paletteHotOrange95:rgb(254, 241, 237);--bre-cardHeaderPadding:0.75rem 1rem 0;--bre-colorBorderSeparatorAlt2:rgb(201, 201, 201);--bre-fillBrandActive:rgb(3, 45, 96);--bre-fontSizeTextMedium:1rem;--bre-spacingXSmall:0.5rem;--bre-chatMessageColorBackgroundOutboundAgent:rgb(116, 116, 116);--bre-colorBackgroundButtonIconHover:rgb(243, 243, 243);--bre-sliderHandleColorBackgroundActive:rgb(1, 118, 211);--bre-colorBorderSuccess:rgb(145, 219, 139);--bre-colorTextIconInverseHover:rgb(255, 255, 255);--bre-componentSpacingPadding:1rem;--bre-colorBorderDestructiveActive:rgb(142, 3, 15);--bre-colorBackgroundButtonInverseDisabled:rgba(0, 0, 0, 0);--bre-colorTextTabLabelFocus:rgb(1, 68, 134);--bre-paletteHotOrange80:rgb(254, 185, 165);--bre-colorBackgroundNotificationBadge:rgb(234, 0, 30);--bre-zIndexReminder:8500;--bre-colorBackgroundImageOverlay:rgba(0, 0, 0, 0.4);--bre-colorBackgroundReminderHover:rgb(255, 255, 255);--bre-colorTextPathCurrentHover:rgb(3, 45, 96);--bre-colorBackgroundCustomer:rgb(254, 147, 57);--bre-colorBackgroundButtonDefault:rgb(255, 255, 255);--bre-colorBackgroundInverseLight:rgb(3, 45, 96);--bre-salesforceSansBoldWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Bold.woff);--bre-progressColorBorderActive:rgb(27, 150, 255);--bre-fontSizeLarge:1.25rem;--bre-brandHeaderContrastWeakActive:rgb(129, 129, 129);--bre-brandHeaderContrastWarmActive:rgb(186, 5, 23);--bre-squareToggleSlider:1.25rem;--bre-progressBarColorBackgroundFillSuccess:rgb(46, 132, 74);--bre-colorBackgroundButtonBrand:rgb(1, 118, 211);--bre-colorBackgroundWarningDark:rgb(254, 147, 57);--bre-colorTextIconUtility:rgb(174, 174, 174);--bre-colorBackgroundScrollbar:rgb(243, 243, 243);--bre-chatMessageColorBackgroundStatus:rgb(255, 255, 255);--bre-colorBackgroundTempModalTintAlt:rgba(255, 255, 255, 0.75);--bre-pageHeaderBorderRadius:0;--bre-palettePink95:rgb(254, 240, 243);--bre-welcomeMatColorIconComplete:rgb(201, 201, 201);--bre-palettePink90:rgb(253, 221, 227);--bre-paletteViolet50:rgb(186, 1, 255);--bre-paletteTeal30:rgb(2, 77, 76);--bre-colorTextIconInverseDisabled:rgba(255, 255, 255, 0.15);--bre-bannerGroupDefaultImage:;--bre-colorBorderBrand:rgb(27, 150, 255);--bre-colorBackgroundInfo:rgb(116, 116, 116);--bre-heightToggle:1.5rem;--bre-badgeColorBackgroundLightest:rgb(255, 255, 255);--bre-brandBandColorBackgroundSecondary:rgba(0, 0, 0, 0);--bre-shadowSoftPrimaryActive:none;--bre-colorTextIconDefaultHint:rgb(174, 174, 174);--bre-colorBackgroundChromeMobile:rgb(1, 118, 211);--bre-colorPickerSwatchSize:1.25rem;--bre-colorBackgroundPathIncomplete:rgb(243, 243, 243);--bre-paletteTeal40:rgb(5, 103, 100);--bre-colorTextToggleDisabled:rgb(201, 201, 201);--bre-paletteViolet40:rgb(150, 2, 199);--bre-colorTextLinkInverseHover:rgba(255, 255, 255, 0.75);--bre-palettePink80:rgb(253, 182, 197);--bre-zIndexModal:9000;--bre-pageHeaderIconSize:2.25rem;--bre-colorTextDestructiveHover:rgb(186, 5, 23);--bre-colorBorderCanvasElementSelection:rgb(26, 185, 255);--bre-colorBackgroundSuccess:rgb(69, 198, 90);--bre-carouselIndicatorColorBackground:rgb(255, 255, 255);--bre-sliderTrackHeight:4px;--bre-squareIconSmallContent:0.75rem;--bre-colorBackgroundInputDisabled:rgb(243, 243, 243);--bre-paletteTeal50:rgb(11, 130, 124);--bre-palettePink70:rgb(254, 138, 167);--bre-paletteViolet30:rgb(115, 3, 148);--bre-mqSmall:only screen and (max-width: 47.9375em);--bre-brandBandImageHeightLarge:18.75rem;--bre-carouselIndicatorWidth:1rem;--bre-colorTextLinkActive:rgb(3, 45, 96);--bre-squareIconXxSmallContent:.875rem;--bre-fontSizeXSmall:0.625rem;--bre-palettePink65:rgb(254, 114, 152);--bre-sliderColorBackgroundDisabled:rgb(243, 243, 243);--bre-colorContrastSecondary:rgb(255, 255, 255);--bre-welcomeMatColorBackgroundProgressBar:rgb(255, 255, 255);--bre-globalActionIconSize:1.5rem;--bre-paletteViolet20:rgb(72, 26, 84);--bre-fontSizeHeadingSmall:0.875rem;--bre-colorPickerRangeIndicatorSize:0.75rem;--bre-paletteOrange15:rgb(55, 30, 3);--bre-sliderHandleSize:1rem;--bre-tableBorderRadius:0;--bre-paletteTeal60:rgb(6, 165, 154);--bre-userDefaultAvatarSmall:url(/_slds/images/profile_avatar_96.png?cache=3c01f25f);--bre-buttonColorBackgroundPrimary:rgb(255, 255, 255);--bre-colorPickerInputCustomHexWidth:4.2rem;--bre-paletteOrange10:rgb(32, 22, 0);--bre-palettePink60:rgb(255, 83, 138);--bre-paletteTeal65:rgb(3, 180, 167);--bre-colorBackgroundRowSelected:rgb(243, 243, 243);--bre-colorBackgroundContextBarBrandAccent:rgb(13, 157, 218);--bre-fontFamilyMonospace:Consolas, Menlo, Monaco, Courier, monospace;--bre-cardFooterColorBorder:rgba(0, 0, 0, 0);--bre-palettePurple80:rgb(215, 191, 242);--bre-varSpacingHorizontalLarge:1.5rem;--bre-colorTextRequired:rgb(234, 0, 30);--bre-elevationShadow16:0 16px 16px 0 rgba(0, 0, 0, 0.16);--bre-paletteViolet10:rgb(46, 0, 57);--bre-shadowHardPrimary:none;--bre-paletteOrange20:rgb(62, 43, 2);--bre-paletteViolet15:rgb(61, 1, 87);--bre-radioButtonGroupLineHeightTouch:2.69rem;--bre-colorBackgroundBrandPrimary:rgb(1, 118, 211);--bre-paletteTeal70:rgb(1, 195, 179);--bre-colorBackgroundUtilityBarActive:rgb(27, 150, 255);--bre-zIndexSticky:100;--bre-colorBackgroundContextBarShadow:linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0, rgba(0, 0, 0, 0) 100%);--bre-paletteTeal80:rgb(4, 225, 203);--bre-palettePurple90:rgb(236, 225, 249);--bre-squareIconUtilityLarge:1.5rem;--bre-fontSize10:2rem;--bre-groupDefaultAvatarMedium:url(/_slds/images/group_avatar_160.png?cache=b8fe8e83);--bre-elevationShadow32:0 32px 32px 0 rgba(0, 0, 0, 0.16);--bre-paletteOrange30:rgb(95, 62, 2);--bre-colorBorderButtonInverseDisabled:rgba(255, 255, 255, 0.15);--bre-fontSize11:2.625rem;--bre-einsteinHeaderTextShadow:#cfe9fe;--bre-palettePurple95:rgb(246, 242, 251);--bre-squareTappableXxSmall:1.25rem;--bre-colorBackgroundDestructiveHover:rgb(142, 3, 15);--bre-fontSize9:1.75rem;--bre-colorBackgroundLight:rgb(255, 255, 255);--bre-fontSize8:1.5rem;--bre-paletteTeal90:rgb(172, 243, 228);--bre-shadowActive:0 0 2px #0176d3;--bre-fontSize1:0.625rem;--bre-paletteNeutral100:rgb(255, 255, 255);--bre-colorTextLink:rgb(1, 118, 211);--bre-pageHeaderTitleFontSize:1.125rem;--bre-fontSize3:0.8125rem;--bre-fontSize2:0.75rem;--bre-colorTextLinkInverseDisabled:rgba(255, 255, 255, 0.15);--bre-fontSize5:1rem;--bre-fontSize4:0.875rem;--bre-fontSize7:1.25rem;--bre-fontSize6:1.125rem;--bre-spacingNone:0;--bre-paletteOrange40:rgb(130, 81, 1);--bre-inputReadonlyFontWeight:400;--bre-palettePurple60:rgb(173, 123, 238);--bre-paletteTeal95:rgb(222, 249, 243);--bre-colorStrokeHeaderButton:rgb(174, 174, 174);--bre-typingIconDotColorBackgroundGray:rgb(201, 201, 201);--bre-palettePurple65:rgb(183, 141, 239);--bre-pageHeaderTitleFontWeight:400;--bre-colorBackgroundButtonIconFocus:rgb(243, 243, 243);--bre-groupDefaultAvatarSmall:url(/_slds/images/group_avatar_96.png?cache=d0659d12);--bre-colorBackgroundModalBrand:rgb(1, 68, 134);--bre-colorTextInverseActive:rgb(26, 185, 255);--bre-colorBackgroundHighlightSearch:rgb(255, 240, 63);--bre-paletteOrange50:rgb(169, 100, 4);--bre-colorBackgroundSuccessDark:rgb(46, 132, 74);--bre-shadowOverlay:0 -2px 4px rgba(0, 0, 0, 0.07);--bre-sizeXSmall:12rem;--bre-colorBackgroundDestructive:rgb(186, 5, 23);--bre-typingIconDotSize:.5rem;--bre-palettePurple70:rgb(194, 158, 241);--bre-colorBorderInfo:rgb(116, 116, 116);--bre-colorTextTabLabel:rgb(3, 45, 96);--bre-palettePink15:rgb(75, 6, 32);--bre-popoverWalkthroughColorBackgroundAlt:rgb(1, 118, 211);--bre-durationImmediately:0.05s;--bre-palettePink10:rgb(55, 1, 20);--bre-elevationInverseShadow16:0 -16px 16px 0 rgba(0, 0, 0, 0.16);--bre-salesforceSansLightWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Light.woff2);--bre-splitViewWidth:25rem;--bre-colorBorderIconInverseHint:rgba(255, 255, 255, 0.5);--bre-brandDisabled:rgb(201, 199, 197);--bre-paletteOrange60:rgb(221, 122, 1);--bre-palettePurple40:rgb(117, 38, 227);--bre-paletteOrange65:rgb(243, 131, 3);--bre-progressColorBackground:rgb(255, 255, 255);--bre-colorBorderContextBarThemeDefaultActive:rgb(243, 243, 243);--bre-avatarGroupColorBackgroundInverse:rgb(116, 116, 116);--bre-colorBackgroundAlt2:rgb(243, 243, 243);--bre-cardFontWeight:400;--bre-colorPickerSwatchShadow:inset 0 0 1px rgba(0,0,0,0.4);--bre-paletteOrange70:rgb(254, 147, 57);--bre-colorTextIconBrand:rgb(1, 118, 211);--bre-colorTextButtonDefault:rgb(1, 118, 211);--bre-palettePurple50:rgb(144, 80, 233);--bre-pathButtonWidthFixed:13rem;--bre-sizeLarge:25rem;--bre-userDefaultAvatarMedium:url(/_slds/images/profile_avatar_160.png?cache=bfba2c9a);--bre-colorBorderDestructive:rgb(234, 0, 30);--bre-colorTextWeak:rgb(116, 116, 116);--bre-fontSizeHeadingMedium:1.125rem;--bre-mqSingleColumnRecordLayout:(max-width: 599px);--bre-colorBackgroundInputSearch:rgba(0, 0, 0, 0.16);--bre-welcomeMatBackgroundColorInfo:rgb(207, 233, 254);--bre-colorBorderBrandPrimary:rgb(27, 150, 255);--bre-colorBackgroundInverse:rgb(0, 22, 57);--bre-maxWidthActionOverflowMenu:512px;--bre-paletteNeutral10:rgb(24, 24, 24);--bre-carouselColorBackground:rgb(255, 255, 255);--bre-colorTextLabel:rgb(116, 116, 116);--bre-colorBackgroundButtonSuccessActive:rgb(46, 132, 74);--bre-squareIconLarge:3.125rem;--bre-spinnerSizeXSmall:1rem;--bre-paletteOrange80:rgb(255, 186, 144);--bre-cardSpacingMargin:1rem;--bre-colorTextBrowserActive:rgba(0, 0, 0, 0.4);--bre-colorBackgroundButtonBrandHover:rgb(1, 68, 134);--bre-chatMessageColorBackgroundOutbound:rgb(1, 68, 134);--bre-colorTextIconDefaultActive:rgb(3, 45, 96);--bre-palettePurple20:rgb(64, 16, 117);--bre-colorTextIconDefaultHover:rgb(1, 118, 211);--bre-colorTextLinkPrimary:rgb(1, 118, 211);--bre-fontSizeTextXSmall:0.75rem;--bre-colorBackgroundToast:rgb(116, 116, 116);--bre-fontSizeXxLarge:2rem;--bre-heightSalesPath:2rem;--bre-colorTextIconDefaultHintBorderless:rgb(243, 243, 243);--bre-paletteOrange95:rgb(255, 241, 234);--bre-colorForegroundPrimary:rgb(255, 255, 255);--bre-paletteOrange90:rgb(254, 223, 208);--bre-colorBackgroundRowNew:rgb(205, 239, 196);--bre-fontSizeTextLarge:1.125rem;--bre-paletteGreen15:rgb(12, 41, 18);--bre-colorBackgroundShade:rgb(243, 243, 243);--bre-paletteGreen10:rgb(7, 27, 18);--bre-palettePurple30:rgb(90, 27, 169);--bre-varSpacingXxxSmall:0.125rem;--bre-brandLightActive:rgb(227, 229, 237);--bre-welcomeMatTextColorInfo:rgb(3, 45, 96);--bre-colorBackgroundIconWaffle:rgb(116, 116, 116);--bre-colorBackgroundContextBarItemHover:rgb(255, 255, 255);--bre-fontSizeXLargeA:1.57rem;--bre-colorBackgroundPathCompleteHover:rgb(46, 132, 74);--bre-palettePink50:rgb(227, 6, 106);--bre-paletteViolet90:rgb(242, 222, 254);--bre-paletteGreen20:rgb(28, 51, 38);--bre-paletteViolet95:rgb(249, 240, 255);--bre-colorBorderContextBarThemeDefaultHover:rgb(50, 29, 113);--bre-squareIconMedium:2.375rem;--bre-textTransform:none;--bre-colorBackgroundBrandPrimaryHover:rgb(1, 68, 134);--bre-colorTextSuccess:rgb(46, 132, 74);--bre-carouselIndicatorColorBackgroundFocus:rgb(1, 68, 134);--bre-colorBackgroundChromeDesktop:rgb(255, 255, 255);--bre-borderStrokeWidthThick:2px;--bre-colorBackgroundReminder:rgb(243, 243, 243);--bre-palettePurple15:rgb(48, 11, 96);--bre-colorTextToast:rgb(243, 243, 243);--bre-paletteViolet80:rgb(229, 185, 254);--bre-colorBackgroundAlt:rgb(255, 255, 255);--bre-palettePink40:rgb(182, 5, 84);--bre-paletteGreen30:rgb(25, 78, 49);--bre-palettePurple10:rgb(36, 6, 67);--bre-elevationInverseShadow32:0 -32px 32px 0 rgba(0, 0, 0, 0.16);--bre-colorBorderCustomer:rgb(254, 147, 57);--bre-tableColorBackgroundStripes:rgb(243, 243, 243);--bre-varSpacingVerticalSmall:0.75rem;--bre-palettePink30:rgb(138, 3, 62);--bre-paletteViolet70:rgb(216, 146, 254);--bre-colorBorderContextBarInverseItem:rgba(255, 255, 255, 0.2);--bre-utilityBarColorBackgroundNotificationBadge:rgb(254, 92, 76);--bre-colorTextTabLabelDisabled:rgb(243, 243, 243);--bre-heightInput:1.875rem;--bre-squareTappable:2.75rem;--bre-fontSizeSmall:0.875rem;--bre-paletteGreen40:rgb(57, 101, 71);--bre-tableColorBackgroundHeaderFocus:rgb(255, 255, 255);--bre-salesforceSansRegularWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Regular.woff2);--bre-varSpacingHorizontalXxLarge:3rem;--bre-paletteViolet65:rgb(209, 125, 254);--bre-progressBarColorBackgroundFill:rgb(26, 185, 255);--bre-colorBorderSeparator:rgb(243, 243, 243);--bre-paletteGreen50:rgb(46, 132, 74);--bre-brandHeaderIconDisabled:rgba(145, 145, 145, 0.25);--bre-palettePink20:rgb(97, 2, 42);--bre-splitViewColorBackground:rgb(243, 243, 243);--bre-colorBackgroundSecondary:rgb(243, 243, 243);--bre-colorTextLinkFocus:rgb(1, 68, 134);--bre-paletteViolet60:rgb(203, 101, 255);--TSPC-paletteIndigo10:rgb(32, 6, 71);--TSPC-popoverWalkthroughHeaderImage:;--TSPC-zIndexDialog:6000;--TSPC-colorPickerSelectorWidth:14rem;--TSPC-nubbinSizeDefault:1rem;--TSPC-paletteCloudBlue40:rgb(5, 98, 138);--TSPC-colorBackgroundContextBarInverseItemHover:rgba(255, 255, 255, 0.2);--TSPC-dropZoneSlotHeight:0.25rem;--TSPC-colorTextTabLabelSelected:rgb(1, 118, 211);--TSPC-colorStrokeBrandActive:rgb(3, 45, 96);--TSPC-paletteIndigo15:rgb(31, 9, 116);--TSPC-cardBodyPadding:0 1rem;--TSPC-varSpacingHorizontalSmall:0.75rem;--TSPC-tableColorBackgroundHeaderResizableHandle:rgb(174, 174, 174);--TSPC-colorBackgroundPathActiveHover:rgb(3, 45, 96);--TSPC-brandPrimaryTransparent:rgba(21, 137, 238, 0.1);--TSPC-brandPrimaryTransparent40:rgba(21, 137, 238, 0.4);--TSPC-colorBorderButtonDefault:rgb(201, 201, 201);--TSPC-paletteIndigo20:rgb(50, 29, 113);--TSPC-popoverColorText:rgb(201, 201, 201);--TSPC-paletteCloudBlue30:rgb(8, 73, 104);--TSPC-colorTextButtonDefaultActive:rgb(1, 118, 211);--TSPC-colorPickerSliderHeight:1.5rem;--TSPC-colorTextIconInverse:rgb(255, 255, 255);--TSPC-heightFooter:3.75rem;--TSPC-splitViewColorBorder:rgb(201, 201, 201);--TSPC-colorBorderRowSelectedHover:rgb(27, 150, 255);--TSPC-fontSizeTextXxSmall:0.625rem;--TSPC-lineHeightHeading:1.25;--TSPC-cardHeaderMargin:0 0 0.75rem;--TSPC-paletteIndigo30:rgb(47, 44, 183);--TSPC-mqMediumLandscape:only screen and (min-width: 48em) and (min-aspect-ratio: 4/3);--TSPC-brandBandImageHeightMedium:12.5rem;--TSPC-illustrationColorSecondary:rgb(207, 233, 254);--TSPC-zIndexDefault:1;--TSPC-colorBorderSelectionActive:rgb(243, 243, 243);--TSPC-paletteCloudBlue20:rgb(2, 50, 72);--TSPC-utilityBarColorBackgroundNotificationFocus:rgb(201, 201, 201);--TSPC-colorTextIconDefaultDisabled:rgb(201, 201, 201);--TSPC-colorTextBrand:rgb(27, 150, 255);--TSPC-durationToastMedium:9.6s;--TSPC-colorBackgroundButtonIconActive:rgb(243, 243, 243);--TSPC-brandHeaderContrastWeak:rgb(145, 145, 145);--TSPC-colorBackgroundNotificationNew:rgb(243, 243, 243);--TSPC-brandHeaderContrastInverseActive:rgb(238, 238, 238);--TSPC-colorBackgroundInputCheckboxSelected:rgb(27, 150, 255);--TSPC-progressColorBorder:rgb(255, 255, 255);--TSPC-spacingXxxSmall:0.125rem;--TSPC-paletteIndigo40:rgb(58, 73, 218);--TSPC-colorBackgroundProgressRingContent:rgb(255, 255, 255);--TSPC-lineHeightButtonSmall:1.75rem;--TSPC-salesforceSansBoldItalicWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-BoldItalic.woff);--TSPC-brandBackgroundDarkTransparent:rgba(221, 219, 218, 0);--TSPC-colorPickerThumbWidth:0.375rem;--TSPC-paletteCloudBlue10:rgb(0, 26, 40);--TSPC-brandHeaderIconActive:rgb(129, 129, 129);--TSPC-widthStageLeftCollapsed:4rem;--TSPC-paletteCloudBlue15:rgb(10, 38, 54);--TSPC-colorBorderOffline:rgb(68, 68, 68);--TSPC-colorBackgroundUtilityBarHover:rgb(243, 243, 243);--TSPC-sliderHandleColorBackgroundHover:rgb(1, 118, 211);--TSPC-colorTextIconInverseHint:rgba(255, 255, 255, 0.5);--TSPC-sizeMedium:20rem;--TSPC-brandPrimaryTransparent10:rgba(21, 137, 238, 0.1);--TSPC-colorBorderIconInverseHintHover:rgba(255, 255, 255, 0.75);--TSPC-colorTextDefault:rgb(3, 45, 96);--TSPC-paletteIndigo50:rgb(88, 103, 232);--TSPC-progressBarHeight:0.125rem;--TSPC-colorBackgroundWarning:rgb(254, 147, 57);--TSPC-colorBackgroundBrandPrimaryActive:rgb(3, 45, 96);--TSPC-paletteBlue90:rgb(216, 230, 254);--TSPC-brandHeaderContrastCool:rgb(1, 68, 134);--TSPC-paletteCloudBlue80:rgb(144, 208, 254);--TSPC-paletteBlue95:rgb(238, 244, 255);--TSPC-colorBorderSelectionHover:rgb(27, 150, 255);--TSPC-zIndexPopup:5000;--TSPC-borderRadiusLarge:0.5rem;--TSPC-colorTextIconInverseHintHover:rgba(255, 255, 255, 0.75);--TSPC-popoverBrandBorderWidth:0.25rem;--TSPC-fontSizeHeadingXLarge:1.75rem;--TSPC-typingIconDotColorBackgroundGrayDark:rgb(201, 201, 201);--TSPC-paletteIndigo65:rgb(142, 155, 239);--TSPC-varSpacingLarge:1.5rem;--TSPC-pageHeaderSpacingMargin:0;--TSPC-fontSizeTextXLarge:1.25rem;--TSPC-paletteIndigo60:rgb(127, 140, 237);--TSPC-paletteCloudBlue70:rgb(26, 185, 255);--TSPC-welcomeMatColorActionShadow:rgba(0, 0, 0, 0.05);--TSPC-colorTextBrowser:rgb(255, 255, 255);--TSPC-welcomeMatSpacingInfo:7.75rem;--TSPC-mqLarge:only screen and (min-width: 64.0625em);--TSPC-paletteIndigo70:rgb(158, 169, 241);--TSPC-squareTappableSmall:2rem;--TSPC-colorTextActionLabel:rgb(116, 116, 116);--TSPC-paletteCloudBlue60:rgb(13, 157, 218);--TSPC-paletteBlue70:rgb(120, 176, 253);--TSPC-colorBorderTabActive:rgb(255, 255, 255);--TSPC-paletteCloudBlue65:rgb(8, 171, 237);--TSPC-globalnavigationItemHeightAccentFocus:4px;--TSPC-colorBorderDestructiveHover:rgb(186, 5, 23);--TSPC-buttonLineHeightTouch:2.65rem;--TSPC-colorTextCustomer:rgb(254, 147, 57);--TSPC-squareIconUtilitySmall:1rem;--TSPC-colorBackgroundModalButtonActive:rgba(0, 0, 0, 0.16);--TSPC-colorTextBrandPrimary:rgb(255, 255, 255);--TSPC-squareIconXSmallBoundary:1.25rem;--TSPC-widthToggle:3rem;--TSPC-paletteIndigo80:rgb(190, 199, 246);--TSPC-welcomeMatMinHeight:25rem;--TSPC-zIndexDocked:4;--TSPC-squareIconMediumBoundaryAlt:2.25rem;--TSPC-colorBorderSelection:rgb(1, 118, 211);--TSPC-paletteBlue80:rgb(170, 203, 255);--TSPC-paletteCloudBlue50:rgb(16, 124, 173);--TSPC-brandHeaderContrastActive:rgb(80, 80, 80);--TSPC-formLabelFontSize:0.75rem;--TSPC-colorTextActionLabelActive:rgb(3, 45, 96);--TSPC-colorBackgroundBackdropTint:rgb(243, 243, 243);--TSPC-durationSlowly:0.4s;--TSPC-colorBackgroundRowHover:rgb(243, 243, 243);--TSPC-popoverWalkthroughAltNubbinColorBackground:rgb(1, 118, 211);--TSPC-spinnerSizeSmall:1.25rem;--TSPC-sliderTrackColorBackgroundFill:rgb(27, 150, 255);--TSPC-welcomeMatWidth:52.0625rem;--TSPC-paletteIndigo95:rgb(241, 243, 251);--TSPC-paletteIndigo90:rgb(224, 229, 248);--TSPC-filesZIndexHover:5;--TSPC-colorTextPill:rgb(1, 118, 211);--TSPC-varSpacingSmall:0.75rem;--TSPC-heightDockedBar:2.5rem;--TSPC-paletteBlue50:rgb(1, 118, 211);--TSPC-colorTextTabLabelHover:rgb(1, 68, 134);--TSPC-fontSizeHeadingXSmall:0.75rem;--TSPC-colorStrokeDisabled:rgb(243, 243, 243);--TSPC-widthPathBorderCurrent:0.125rem;--TSPC-colorBackgroundButtonDefaultHover:rgb(243, 243, 243);--TSPC-varSpacingVerticalXxSmall:0.25rem;--TSPC-colorTextButtonDefaultHover:rgb(1, 118, 211);--TSPC-durationPromptly:0.2s;--TSPC-colorBorderPathCurrent:rgb(1, 68, 134);--TSPC-colorBackgroundButtonDefaultActive:rgb(243, 243, 243);--TSPC-colorTextStageLeft:rgb(243, 243, 243);--TSPC-colorBorderHint:rgb(3, 45, 96);--TSPC-colorTextPrimary:rgb(3, 45, 96);--TSPC-brandBandColorBackgroundSecondaryTransparent:rgba(0, 0, 0, 0);--TSPC-paletteBlue60:rgb(27, 150, 255);--TSPC-cardColorBackground:rgb(255, 255, 255);--TSPC-brandHeaderIcon:rgb(145, 145, 145);--TSPC-paletteBlue65:rgb(87, 163, 253);--TSPC-spacingLarge:1.5rem;--TSPC-pageHeaderColorBorder:rgba(0, 0, 0, 0);--TSPC-cardFooterMargin:0.75rem;--TSPC-fontSizeTextSmall:0.8125rem;--TSPC-colorTextLinkInverseActive:rgba(255, 255, 255, 0.5);--TSPC-durationToastShort:4.8s;--TSPC-lineHeightButton:1.875rem;--TSPC-panelDockedLeftShadow:1px 0 3px rgba(0,0,0,0.25);--TSPC-panelDockedRightShadow:-1px 0 3px 0 rgba(0,0,0,0.25);--TSPC-colorTextLinkPrimaryHover:rgb(1, 118, 211);--TSPC-shadowButton:0 1px 1px 0 rgba(0, 0, 0, 0.05);--TSPC-welcomeMatMaxHeight:37.5rem;--TSPC-colorBorderToggleChecked:rgb(255, 255, 255);--TSPC-shadowHeader:0 2px 4px rgba(0, 0, 0, 0.07);--TSPC-sizeXxLarge:60rem;--TSPC-colorBackgroundDockedPanelHeader:rgb(255, 255, 255);--TSPC-paletteBlue30:rgb(1, 68, 134);--TSPC-lineHeightSalespath:1.5rem;--TSPC-shadowDrag:0 2px 4px 0 rgba(0, 0, 0, 0.40);--TSPC-colorBackgroundPathExpanded:rgb(255, 255, 255);--TSPC-colorBackground:rgb(243, 243, 243);--TSPC-colorBackgroundInput:rgb(255, 255, 255);--TSPC-sizeSmall:15rem;--TSPC-userDefaultAvatar:url(/_slds/images/profile_avatar_200.png?cache=7bdcafae);--TSPC-colorTextButtonInverse:rgb(243, 243, 243);--TSPC-colorBackgroundInputCheckboxDisabled:rgb(201, 201, 201);--TSPC-tableColorTextHeader:rgb(68, 68, 68);--TSPC-paletteBlue40:rgb(11, 92, 171);--TSPC-cardColorBorder:rgb(201, 201, 201);--TSPC-squareIconUtilityMedium:1.25rem;--TSPC-colorBackgroundButtonSuccessHover:rgb(46, 132, 74);--TSPC-colorBorderButtonBrandDisabled:rgba(0, 0, 0, 0);--TSPC-fontSizeHeadingXxSmall:0.625rem;--TSPC-colorBackgroundButtonInverseActive:rgba(0, 0, 0, 0.24);--TSPC-illustrationEmptyStateEvents:url(/_slds/images/illustrations/empty-state-events.svg?cache=985b247a);--TSPC-colorBackgroundToggle:rgb(174, 174, 174);--TSPC-colorBackgroundStencil:rgb(243, 243, 243);--TSPC-welcomeMatCheckSize:0.625rem;--TSPC-colorTextButtonBrandHover:rgb(255, 255, 255);--TSPC-buttonColorBackgroundSecondary:rgba(255, 255, 255, 0.8);--TSPC-paletteBlue10:rgb(0, 22, 57);--TSPC-varSpacingVerticalLarge:1.5rem;--TSPC-colorBorderReminder:rgb(243, 243, 243);--TSPC-colorBrandDark:rgb(1, 118, 211);--TSPC-paletteBlue15:rgb(3, 35, 77);--TSPC-colorBorderBrandPrimaryFocus:rgb(1, 118, 211);--TSPC-salesforceSansItalicWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Italic.woff);--TSPC-colorBorderBrandPrimaryActive:rgb(3, 45, 96);--TSPC-datepickerColorTextDayAdjacentMonth:rgb(116, 116, 116);--TSPC-colorBorderErrorAlt:rgb(254, 143, 125);--TSPC-shadowReminder:0 2px 3px 0 rgba(0, 0, 0, 0.20);--TSPC-brandTextLinkActive:rgb(1, 68, 134);--TSPC-pageHeaderColorBackground:rgb(243, 243, 243);--TSPC-salesforceSansBoldWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Bold.woff2);--TSPC-fontSizeHeadingLarge:1.5rem;--TSPC-colorBackgroundStencilAlt:rgb(243, 243, 243);--TSPC-paletteBlue20:rgb(3, 45, 96);--TSPC-elevationInverseShadow3Below:0 -3px 3px 0 rgba(0, 0, 0, 0.16) inset;--TSPC-varSpacingHorizontalXxSmall:0.25rem;--TSPC-colorBorderSeparatorAlt:rgb(201, 201, 201);--TSPC-colorPickerRangeHeight:5rem;--TSPC-colorBackgroundButtonIcon:rgba(0, 0, 0, 0);--TSPC-paletteTeal15:rgb(7, 40, 37);--TSPC-buttonIconColorBorderPrimary:rgb(255, 255, 255);--TSPC-brandAccessibleActive:rgb(1, 68, 134);--TSPC-paletteYellow80:rgb(252, 192, 3);--TSPC-zIndexSpinner:9050;--TSPC-colorBackgroundContextTabBarItem:rgb(255, 255, 255);--TSPC-fontWeightBold:700;--TSPC-paletteTeal10:rgb(7, 27, 18);--TSPC-colorBackgroundContextBarItemActive:rgb(255, 255, 255);--TSPC-shadowFocusInset:0 0 2px 2px #1b96ff inset;--TSPC-colorBackgroundAltInverse:rgb(3, 45, 96);--TSPC-colorBackgroundPathIncompleteHover:rgb(201, 201, 201);--TSPC-squareIconMediumContent:1rem;--TSPC-colorBackgroundContextBar:rgb(255, 255, 255);--TSPC-colorTextInverseHover:rgb(174, 174, 174);--TSPC-colorBackgroundInputActive:rgb(255, 255, 255);--TSPC-brandContrast:rgb(26, 27, 30);--TSPC-colorTextSecondary:rgb(116, 116, 116);--TSPC-fillHeaderButtonHover:rgb(1, 68, 134);--TSPC-fontFamilyText:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--TSPC-welcomeMatCompleteIconSize:1.25rem;--TSPC-varSpacingXxLarge:3rem;--TSPC-paletteYellow95:rgb(251, 243, 224);--TSPC-paletteYellow90:rgb(249, 227, 182);--TSPC-brandBackgroundPrimary:rgb(250, 250, 249);--TSPC-paletteTeal20:rgb(2, 52, 52);--TSPC-progressRingWidth:0.1875rem;--TSPC-paletteYellow65:rgb(215, 147, 4);--TSPC-paletteYellow60:rgb(202, 133, 1);--TSPC-colorBorderInputCheckboxSelectedCheckmark:rgb(255, 255, 255);--TSPC-colorBorderCanvasElementSelectionHover:rgb(1, 68, 134);--TSPC-borderRadiusSmall:0.125rem;--TSPC-progressBarColorBackground:rgb(201, 201, 201);--TSPC-durationInstantly:0s;--TSPC-colorBackgroundToastSuccess:rgb(46, 132, 74);--TSPC-tabsFontWeight:400;--TSPC-colorBackgroundPost:rgb(243, 243, 243);--TSPC-colorTextPlaceholderInverse:rgb(243, 243, 243);--TSPC-colorTextInputIcon:rgb(174, 174, 174);--TSPC-sliderHandleShadow:rgba(0, 0, 0, 0.16) 0 2px 3px;--TSPC-paletteYellow70:rgb(228, 162, 1);--TSPC-fontWeightLight:300;--TSPC-colorTextError:rgb(234, 0, 30);--TSPC-varSpacingXxSmall:0.25rem;--TSPC-colorBorderInput:rgb(201, 201, 201);--TSPC-brandAccessible:rgb(1, 118, 211);--TSPC-pageColorBackgroundPrimary:rgb(255, 255, 255);--TSPC-cardShadow:none;--TSPC-lineClamp:3;--TSPC-welcomeMatWidthProgressBar:12.5rem;--TSPC-progressColorBackgroundShade:rgb(243, 243, 243);--TSPC-globalActionFillHover:rgb(1, 68, 134);--TSPC-illustrationEmptyStateAssistant:url(/_slds/images/illustrations/empty-state-assistant.svg?cache=127a789e);--TSPC-varSpacingHorizontalXSmall:0.5rem;--TSPC-colorPickerInputCustomHexFontSize:0.75rem;--TSPC-varSpacingMedium:1rem;--TSPC-colorBackgroundShadeDark:rgb(201, 201, 201);--TSPC-colorPickerSwatchesWidth:13.3rem;--TSPC-squareIconLargeBoundaryAlt:5rem;--TSPC-colorBorderInputDisabled:rgb(201, 201, 201);--TSPC-paletteYellow40:rgb(140, 75, 2);--TSPC-cardWrapperSpacing:1rem;--TSPC-colorBackgroundNotificationBadgeActive:rgb(3, 45, 96);--TSPC-colorBackgroundHighlight:rgb(250, 255, 189);--TSPC-colorBackgroundRowActive:rgb(243, 243, 243);--TSPC-componentSpacingMargin:0;--TSPC-colorBorderButtonFocusInverse:rgb(243, 243, 243);--TSPC-shadowButtonFocus:0 0 3px #0176d3;--TSPC-varSpacingVerticalXLarge:2rem;--TSPC-tableColorBackgroundHeaderHover:rgb(243, 243, 243);--TSPC-colorBackgroundDockedPanel:rgb(255, 255, 255);--TSPC-colorTextTertiary:rgb(116, 116, 116);--TSPC-varSpacingVerticalXxLarge:3rem;--TSPC-paletteYellow50:rgb(168, 100, 3);--TSPC-brandContrastActive:rgb(13, 14, 18);--TSPC-squareIconLargeContent:2rem;--TSPC-colorPickerSliderThumbColorBackground:rgb(243, 243, 243);--TSPC-inputStaticFontSize:0.8125rem;--TSPC-borderWidthThin:1px;--TSPC-fontWeightRegular:400;--TSPC-colorBackgroundButtonSuccess:rgb(69, 198, 90);--TSPC-splitViewColorBackgroundRowHover:rgb(255, 255, 255);--TSPC-paletteYellow20:rgb(79, 33, 0);--TSPC-bannerUserDefaultImage:;--TSPC-elevation8:8;--TSPC-brandDark:rgb(1, 118, 211);--TSPC-colorBackgroundPathCurrentHover:rgb(255, 255, 255);--TSPC-elevation0:0;--TSPC-elevation2:2;--TSPC-pageHeaderJoinedColorBorder:rgb(201, 201, 201);--TSPC-elevation4:4;--TSPC-durationPaused:3.2s;--TSPC-colorBrand:rgb(27, 150, 255);--TSPC-colorBackgroundPathComplete:rgb(59, 167, 85);--TSPC-progressColorBorderHover:rgb(1, 118, 211);--TSPC-spacingXxSmall:0.25rem;--TSPC-tableCellSpacing:0.5rem;--TSPC-colorBorderContextBarThemeDefault:rgb(13, 157, 218);--TSPC-colorBackgroundAnchor:rgb(243, 243, 243);--TSPC-paletteYellow30:rgb(111, 52, 0);--TSPC-shadowButtonFocusInverse:0 0 3px #f3f3f3;--TSPC-welcomeMatFontSizeInfoTitle:2.625rem;--TSPC-colorBorderLinkFocusInverse:rgb(243, 243, 243);--TSPC-borderRadiusCircle:50%;--TSPC-buttonColorBorderSecondary:rgba(255, 255, 255, 0.8);--TSPC-colorTextSuccessInverse:rgb(69, 198, 90);--TSPC-varSpacingXLarge:2rem;--TSPC-sizeXLarge:40rem;--TSPC-varSpacingHorizontalXxxSmall:0.125rem;--TSPC-elevation3Inset:-3;--TSPC-lineHeightTab:2.5rem;--TSPC-colorBackgroundDestructiveActive:rgb(142, 3, 15);--TSPC-colorTextLinkPrimaryActive:rgb(3, 45, 96);--TSPC-colorBackgroundPageHeader:rgb(255, 255, 255);--TSPC-colorBackgroundPill:rgb(255, 255, 255);--TSPC-fillBrandHover:rgb(1, 68, 134);--TSPC-colorBorderContextBarItem:rgba(0, 0, 0, 0.2);--TSPC-borderStrokeWidthThin:1px;--TSPC-progressColorBorderShade:rgb(243, 243, 243);--TSPC-heightHeader:2.75rem;--TSPC-shadowInlineEdit:0 2px 4px 4px rgba(0, 0, 0, 0.16);--TSPC-colorBackgroundNotificationBadgeHover:rgb(1, 68, 134);--TSPC-borderRadiusPill:15rem;--TSPC-colorTextButtonInverseDisabled:rgba(255, 255, 255, 0.5);--TSPC-sizeXxxSmall:3rem;--TSPC-colorBackgroundSuccessDarker:rgb(25, 78, 49);--TSPC-colorBackgroundToggleHover:rgb(147, 147, 147);--TSPC-paletteYellow15:rgb(46, 34, 4);--TSPC-paletteYellow10:rgb(40, 18, 2);--TSPC-cardSpacingSmall:0.75rem;--TSPC-illustrationEmptyStateTasks:url(/_slds/images/illustrations/empty-state-tasks.svg?cache=dc5e5e5b);--TSPC-brandBandScrimHeight:3.125rem;--TSPC-popoverWalkthroughColorBackground:rgb(0, 22, 57);--TSPC-colorBorderErrorDark:rgb(254, 143, 125);--TSPC-heightTappableSmall:2rem;--TSPC-colorBackgroundButtonBrandDisabled:rgb(243, 243, 243);--TSPC-colorBorderPrimary:rgb(201, 201, 201);--TSPC-colorGray1:rgb(255, 255, 255);--TSPC-fontSizeXLarge:1.5rem;--TSPC-varSquareIconMediumBoundary:2rem;--TSPC-colorGray5:rgb(221, 219, 218);--TSPC-colorGray4:rgb(236, 235, 234);--TSPC-colorGray3:rgb(243, 242, 242);--TSPC-colorGray2:rgb(250, 250, 249);--TSPC-opacity8:0.8;--TSPC-salesforceSansBoldItalicWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-BoldItalic.woff2);--TSPC-opacity5:0.5;--TSPC-squareIconGlobalIdentityIcon:1.25rem;--TSPC-colorBackgroundBrowser:rgb(116, 116, 116);--TSPC-colorTextIconInverseActive:rgb(255, 255, 255);--TSPC-shadowDocked:0 -2px 2px 0 rgba(0, 0, 0, 0.16);--TSPC-colorBackgroundInputError:rgb(253, 221, 227);--TSPC-colorGray9:rgb(112, 110, 107);--TSPC-colorGray8:rgb(150, 148, 146);--TSPC-colorGray7:rgb(176, 173, 171);--TSPC-colorGray6:rgb(201, 199, 197);--TSPC-colorTextLinkInverse:rgb(255, 255, 255);--TSPC-squareIconSmallBoundary:1.5rem;--TSPC-varSpacingHorizontalXLarge:2rem;--TSPC-colorBackgroundDark:rgb(243, 243, 243);--TSPC-colorTextWarningAlt:rgb(140, 75, 2);--TSPC-elevationInverseShadow2:0 -2px 2px 0 rgba(0, 0, 0, 0.16);--TSPC-elevationInverseShadow0:none;--TSPC-colorStrokeBrand:rgb(1, 118, 211);--TSPC-colorBackgroundToggleActive:rgb(1, 68, 134);--TSPC-colorBorderContextBarDivider:rgba(255, 255, 255, 0.2);--TSPC-zIndexToast:10000;--TSPC-colorBackgroundContextBarActionHighlight:rgba(255, 255, 255, 0.2);--TSPC-colorBackgroundBrandPrimaryFocus:rgb(1, 68, 134);--TSPC-buttonColorBackgroundBrandPrimary:rgb(1, 118, 211);--TSPC-brandHeaderContrastWarm:rgb(186, 5, 23);--TSPC-buttonColorTextPrimary:rgb(255, 255, 255);--TSPC-colorBrandDarker:rgb(1, 68, 134);--TSPC-colorBorderPathCurrentHover:rgb(3, 45, 96);--TSPC-colorTextButtonDefaultDisabled:rgb(201, 201, 201);--TSPC-colorBackgroundPathLost:rgb(234, 0, 30);--TSPC-einsteinHeaderBackground:url(/_slds/images/einstein-headers/einstein-header-background.svg?cache=ff7fa2ff);--TSPC-brandTextLink:rgb(1, 118, 211);--TSPC-sliderTrackColorBackground:rgb(243, 243, 243);--TSPC-colorContrastPrimary:rgb(243, 243, 243);--TSPC-groupDefaultAvatar:url(/_slds/images/group_avatar_200.png?cache=a0044dae);--TSPC-templateProfileGutters:0;--TSPC-sizeXxSmall:6rem;--TSPC-colorBackgroundPayload:rgb(243, 243, 243);--TSPC-paletteCloudBlue90:rgb(207, 233, 254);--TSPC-colorBackgroundPathActive:rgb(1, 68, 134);--TSPC-colorTextDestructive:rgb(234, 0, 30);--TSPC-squareIconLargeBoundary:3rem;--TSPC-colorBorderWarning:rgb(254, 147, 57);--TSPC-shadowSoftPrimaryHover:none;--TSPC-paletteCloudBlue95:rgb(234, 245, 254);--TSPC-spacingSmall:0.75rem;--TSPC-colorBackgroundErrorDark:rgb(186, 5, 23);--TSPC-brandHeaderContrastWeakDisabled:rgba(166, 166, 166, 0.25);--TSPC-squareIconMediumContentAlt:0.875rem;--TSPC-colorBackgroundButtonInverse:rgba(0, 0, 0, 0);--TSPC-brandHeader:rgb(255, 255, 255);--TSPC-lineHeightText:1.5;--TSPC-widthStageLeftExpanded:15rem;--TSPC-colorBackgroundError:rgb(254, 92, 76);--TSPC-colorTextButtonBrandActive:rgb(255, 255, 255);--TSPC-fontFamily:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--TSPC-mqMedium:only screen and (min-width: 48em);--TSPC-brandDarkActive:rgb(37, 48, 69);--TSPC-colorBackgroundPathStepActionActive:rgb(0, 22, 57);--TSPC-neutrafaceDisplayWoff2:url(/_slds/fonts/NeutrafaceDisplay.woff2?cache=2.9.0);--TSPC-spacingMedium:1rem;--TSPC-colorTextModal:rgb(255, 255, 255);--TSPC-spinnerSizeLarge:2.75rem;--TSPC-carouselIndicatorColorBackgroundHover:rgb(243, 243, 243);--TSPC-shadowActionOverflowFooter:0 -2px 4px #f3f3f3;--TSPC-popoverWalkthroughHeaderColorBackground:rgb(3, 45, 96);--TSPC-colorBackgroundPathWon:rgb(46, 132, 74);--TSPC-lineHeightToggle:1.3rem;--TSPC-neutrafaceDisplayWoff:url(/_slds/fonts/NeutrafaceDisplay.woff?cache=2.9.0);--TSPC-cardFooterPadding:0 1rem 0.75rem;--TSPC-sliderHandleColorBackground:rgb(27, 150, 255);--TSPC-colorBackgroundErrorAlt:rgb(254, 143, 125);--TSPC-colorBackgroundIndicatorDot:rgb(3, 45, 96);--TSPC-chatMessageColorBackgroundInbound:rgb(243, 243, 243);--TSPC-elevationShadow0:none;--TSPC-heightPill:1.625rem;--TSPC-elevationShadow4:0 4px 4px 0 rgba(0, 0, 0, 0.16);--TSPC-elevationShadow2:0 2px 2px 0 rgba(0, 0, 0, 0.16);--TSPC-elevationShadow8:0 8px 8px 0 rgba(0, 0, 0, 0.16);--TSPC-varFontSize8:1.5rem;--TSPC-colorBackgroundButtonDefaultDisabled:rgb(255, 255, 255);--TSPC-varFontSize7:1.25rem;--TSPC-elevationInverseShadow8:0 -8px 8px 0 rgba(0, 0, 0, 0.16);--TSPC-varFontSize9:1.75rem;--TSPC-brandBandColorBackgroundPrimary:rgba(0, 0, 0, 0);--TSPC-colorTextButtonBrand:rgb(255, 255, 255);--TSPC-elevationInverseShadow4:0 -4px 4px 0 rgba(0, 0, 0, 0.16);--TSPC-colorBackgroundToggleActiveHover:rgb(1, 68, 134);--TSPC-welcomeMatBackgroundImageInfo:url(/_slds/images/welcome-mat/bg-info@2x.png?cache=ddb4e82f);--TSPC-varFontSize2:0.75rem;--TSPC-varFontSize1:0.625rem;--TSPC-varFontSize4:0.875rem;--TSPC-pageHeaderSpacingRow:0.75rem 1rem;--TSPC-varFontSize3:0.8125rem;--TSPC-varFontSize6:1.125rem;--TSPC-varFontSize5:1rem;--TSPC-varSpacingVerticalMedium:1rem;--TSPC-pageHeaderSpacingPadding:1rem;--TSPC-colorTextModalButton:rgb(116, 116, 116);--TSPC-colorBackgroundPrimary:rgb(255, 255, 255);--TSPC-colorTextInputFocusInverse:rgb(3, 45, 96);--TSPC-colorBackgroundScrollbarTrack:rgb(201, 201, 201);--TSPC-paletteNeutral70:rgb(174, 174, 174);--TSPC-brandPrimaryActive:rgb(1, 118, 211);--TSPC-popoverWalkthroughAltImage:;--TSPC-nubbinTriangleOffset:-0.1875rem;--TSPC-salesforceSansLightWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Light.woff);--TSPC-colorBorderSuccessDark:rgb(46, 132, 74);--TSPC-mqHighRes:only screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2),screen and (min-resolution: 192dpi),screen and (min-resolution: 2dppx);--TSPC-brandBandColorBackgroundPrimaryTransparent:rgba(0, 0, 0, 0);--TSPC-colorBackgroundContextBarInverseItemActive:rgba(255, 255, 255, 0.4);--TSPC-colorTextButtonDefaultHint:rgb(174, 174, 174);--TSPC-salesforceSansItalicWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Italic.woff2);--TSPC-paletteGreen60:rgb(59, 167, 85);--TSPC-heightContextBar:2.5rem;--TSPC-colorBackgroundOrgSwitcherArrow:rgb(0, 22, 57);--TSPC-paletteGreen65:rgb(65, 182, 88);--TSPC-brandHeaderContrastInverse:rgb(255, 255, 255);--TSPC-notificationColorBackgroundInverse:rgb(116, 116, 116);--TSPC-colorBackgroundButtonIconDisabled:rgb(255, 255, 255);--TSPC-paletteNeutral60:rgb(147, 147, 147);--TSPC-colorBorderContextBarThemeDefaultAlt:rgb(243, 243, 243);--TSPC-fillBrand:rgb(1, 118, 211);--TSPC-colorBackgroundInputCheckbox:rgb(255, 255, 255);--TSPC-colorBorder:rgb(201, 201, 201);--TSPC-squareIconSmall:1rem;--TSPC-varSpacingHorizontalMedium:1rem;--TSPC-illustrationColorPrimary:rgb(144, 208, 254);--TSPC-varSpacingVerticalXSmall:0.5rem;--TSPC-colorTextPlaceholder:rgb(116, 116, 116);--TSPC-einsteinHeaderBackgroundColor:rgb(144, 208, 254);--TSPC-paletteGreen70:rgb(69, 198, 90);--TSPC-brandHeaderContrast:rgb(94, 94, 94);--TSPC-inputStaticColor:rgb(24, 24, 24);--TSPC-paletteNeutral90:rgb(229, 229, 229);--TSPC-paletteGreen90:rgb(205, 239, 196);--TSPC-spacingXxLarge:3rem;--TSPC-shadowDropDown:0 2px 3px 0 rgba(0, 0, 0, 0.16);--TSPC-paletteNeutral95:rgb(243, 243, 243);--TSPC-colorBackgroundModal:rgb(255, 255, 255);--TSPC-elevationShadow3Below:0 3px 3px 0 rgba(0, 0, 0, 0.16) inset;--TSPC-paletteRed80:rgb(254, 184, 171);--TSPC-sliderTrackWidth:100%;--TSPC-elevation32:32;--TSPC-globalHeaderColorBackground:rgb(255, 255, 255);--TSPC-spacingXLarge:2rem;--TSPC-paletteGreen80:rgb(145, 219, 139);--TSPC-colorBorderInputActive:rgb(27, 150, 255);--TSPC-varSpacingXSmall:0.5rem;--TSPC-paletteNeutral80:rgb(201, 201, 201);--TSPC-colorBackgroundModalButton:rgba(0, 0, 0, 0.07);--TSPC-colorBorderPathDivider:rgb(255, 255, 255);--TSPC-colorTextIconDefault:rgb(116, 116, 116);--TSPC-zIndexDeepdive:-99999;--TSPC-elevation16:16;--TSPC-paletteRed90:rgb(254, 222, 216);--TSPC-globalnavigationItemHeightAccentActive:3px;--TSPC-templateGutters:0;--TSPC-paletteRed95:rgb(254, 241, 238);--TSPC-buttonColorBorderBrandPrimary:rgb(1, 118, 211);--TSPC-buttonIconBoundaryTouch:2.75rem;--TSPC-brandBackgroundPrimaryTransparent:rgba(176, 196, 223, 0);--TSPC-fillHeaderButtonFocus:rgb(1, 118, 211);--TSPC-colorBorderError:rgb(234, 0, 30);--TSPC-colorTextLinkHover:rgb(1, 68, 134);--TSPC-paletteGreen95:rgb(235, 247, 230);--TSPC-einsteinHeaderFigure:url(/_slds/images/einstein-headers/einstein-figure.svg?cache=ec975fb1);--TSPC-colorBorderRowSelected:rgb(1, 118, 211);--TSPC-colorStrokeBrandHover:rgb(1, 118, 211);--TSPC-paletteNeutral30:rgb(68, 68, 68);--TSPC-varSpacingVerticalXxxSmall:0.125rem;--TSPC-paletteHotOrange10:rgb(40, 18, 2);--TSPC-colorTextButtonBrandDisabled:rgb(255, 255, 255);--TSPC-squareIconXSmallContent:0.5rem;--TSPC-varFontSize10:2rem;--TSPC-paletteRed60:rgb(254, 92, 76);--TSPC-varFontSize11:2.625rem;--TSPC-paletteRed65:rgb(254, 119, 101);--TSPC-buttonBorderRadius:.25rem;--TSPC-squareTappableXSmall:1.5rem;--TSPC-colorBackgroundGuidance:rgb(255, 255, 255);--TSPC-colorTextContextBarInverse:rgb(255, 255, 255);--TSPC-paletteNeutral20:rgb(46, 46, 46);--TSPC-fontFamilyHeading:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--TSPC-paletteRed70:rgb(254, 143, 125);--TSPC-brandHeaderContrastCoolActive:rgb(1, 68, 134);--TSPC-borderWidthThick:2px;--TSPC-pageHeaderShadow:none;--TSPC-spinnerSizeXxSmall:0.5rem;--TSPC-tableColorBackgroundHeader:rgb(255, 255, 255);--TSPC-pageHeaderColorBackgroundAlt:rgb(255, 255, 255);--TSPC-colorBorderBrandPrimaryHover:rgb(1, 118, 211);--TSPC-colorTextTabLabelActive:rgb(3, 45, 96);--TSPC-paletteNeutral50:rgb(116, 116, 116);--TSPC-colorBackgroundTempModalTint:rgba(126, 140, 153, 0.8);--TSPC-fontSizeMedium:1rem;--TSPC-colorBorderButtonBrand:rgb(1, 118, 211);--TSPC-paletteHotOrange30:rgb(126, 38, 0);--TSPC-paletteRed40:rgb(186, 5, 23);--TSPC-brandBandImageHeightSmall:6rem;--TSPC-colorTextInverseWeak:rgb(174, 174, 174);--TSPC-colorTextInverse:rgb(255, 255, 255);--TSPC-shadowLinkFocusInverse:0 0 3px #f3f3f3;--TSPC-squareIconXxSmallBoundary:1rem;--TSPC-lineHeightReset:1;--TSPC-verticalNavigationColorBackgroundShadeRowActive:rgb(243, 243, 243);--TSPC-colorBackgroundTempModal:rgba(126, 140, 153, 0.8);--TSPC-colorBackgroundToggleDisabled:rgb(174, 174, 174);--TSPC-colorGray13:rgb(8, 7, 7);--TSPC-colorGray10:rgb(81, 79, 77);--TSPC-paletteNeutral40:rgb(92, 92, 92);--TSPC-colorBorderInverse:rgb(0, 22, 57);--TSPC-carouselIndicatorColorBackgroundActive:rgb(1, 118, 211);--TSPC-colorBackgroundBackdrop:rgba(255, 255, 255, 0.75);--TSPC-colorGray12:rgb(43, 40, 38);--TSPC-colorGray11:rgb(62, 62, 60);--TSPC-colorTextContextBarActionTrigger:rgba(255, 255, 255, 0.4);--TSPC-paletteHotOrange20:rgb(74, 36, 19);--TSPC-colorBackgroundNotification:rgb(255, 255, 255);--TSPC-colorBackgroundPathStepActionCurrent:rgb(1, 68, 134);--TSPC-badgeColorBackgroundInverse:rgb(116, 116, 116);--TSPC-colorBorderSeparatorInverse:rgb(3, 45, 96);--TSPC-paletteRed50:rgb(234, 0, 30);--TSPC-colorBackgroundSpinnerDot:rgb(174, 174, 174);--TSPC-colorBackgroundButtonBrandActive:rgb(3, 45, 96);--TSPC-paletteHotOrange15:rgb(66, 22, 4);--TSPC-sliderHandleColorBackgroundFocus:rgb(1, 118, 211);--TSPC-spinnerSizeMedium:2rem;--TSPC-brandPrimary:rgb(27, 150, 255);--TSPC-paletteHotOrange50:rgb(216, 58, 0);--TSPC-colorTextLinkPrimaryFocus:rgb(1, 118, 211);--TSPC-colorTextInputDisabled:rgb(116, 116, 116);--TSPC-brandLogoImage:url(/_slds/images/logo-noname.svg?cache=380754d9);--TSPC-brandLight:rgb(244, 246, 254);--TSPC-paletteRed20:rgb(100, 1, 3);--TSPC-fillHeaderButton:rgb(174, 174, 174);--TSPC-varLineHeightText:1.5;--TSPC-colorBackgroundPathCurrent:rgb(255, 255, 255);--TSPC-colorBackgroundOffline:rgb(68, 68, 68);--TSPC-colorBorderTabSelected:rgb(1, 118, 211);--TSPC-colorTextWarning:rgb(254, 147, 57);--TSPC-salesforceSansRegularWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Regular.woff);--TSPC-paletteHotOrange40:rgb(170, 48, 1);--TSPC-cardSpacingLarge:1.5rem;--TSPC-paletteRed30:rgb(142, 3, 15);--TSPC-fontSizeMediumA:1.125rem;--TSPC-borderRadiusMedium:0.25rem;--TSPC-colorPickerSliderThumbBorderColor:rgb(68, 68, 68);--TSPC-shadowSoftPrimary:none;--TSPC-zIndexDropdown:7000;--TSPC-paletteHotOrange70:rgb(255, 144, 110);--TSPC-verticalNavigationColorBackgroundShadeRowHover:rgb(243, 243, 243);--TSPC-squareIconMediumBoundary:2rem;--TSPC-colorBackgroundButtonDefaultFocus:rgb(243, 243, 243);--TSPC-heightTappable:2.75rem;--TSPC-colorBackgroundToastError:rgb(234, 0, 30);--TSPC-brandBandDefaultImage:;--TSPC-durationQuickly:0.1s;--TSPC-colorBackgroundSelection:rgb(216, 230, 254);--TSPC-paletteHotOrange60:rgb(255, 93, 45);--TSPC-colorBackgroundActionbarIconUtility:rgb(116, 116, 116);--TSPC-colorBackgroundNotificationBadgeFocus:rgb(1, 68, 134);--TSPC-paletteHotOrange65:rgb(255, 120, 79);--TSPC-cardFooterTextAlign:right;--TSPC-colorBorderBrandDark:rgb(1, 68, 134);--TSPC-brandBackgroundDark:rgb(232, 232, 232);--TSPC-avatarGroupColorBackgroundLightest:rgb(255, 255, 255);--TSPC-colorTextContextBar:rgb(68, 68, 68);--TSPC-inputStaticFontWeight:400;--TSPC-paletteRed10:rgb(48, 12, 1);--TSPC-colorTextLinkDisabled:rgb(3, 45, 96);--TSPC-colorTextPathCurrent:rgb(1, 68, 134);--TSPC-paletteRed15:rgb(74, 12, 4);--TSPC-zIndexOverlay:8000;--TSPC-buttonColorBorderPrimary:rgb(243, 243, 243);--TSPC-paletteHotOrange90:rgb(255, 222, 213);--TSPC-shadowImage:0 1px 1px rgba(0, 0, 0, 0.16);--TSPC-paletteHotOrange95:rgb(254, 241, 237);--TSPC-cardHeaderPadding:0.75rem 1rem 0;--TSPC-colorBorderSeparatorAlt2:rgb(201, 201, 201);--TSPC-fillBrandActive:rgb(3, 45, 96);--TSPC-fontSizeTextMedium:1rem;--TSPC-spacingXSmall:0.5rem;--TSPC-chatMessageColorBackgroundOutboundAgent:rgb(116, 116, 116);--TSPC-colorBackgroundButtonIconHover:rgb(243, 243, 243);--TSPC-sliderHandleColorBackgroundActive:rgb(1, 118, 211);--TSPC-colorBorderSuccess:rgb(145, 219, 139);--TSPC-colorTextIconInverseHover:rgb(255, 255, 255);--TSPC-componentSpacingPadding:1rem;--TSPC-colorBorderDestructiveActive:rgb(142, 3, 15);--TSPC-colorBackgroundButtonInverseDisabled:rgba(0, 0, 0, 0);--TSPC-colorTextTabLabelFocus:rgb(1, 68, 134);--TSPC-paletteHotOrange80:rgb(254, 185, 165);--TSPC-colorBackgroundNotificationBadge:rgb(234, 0, 30);--TSPC-zIndexReminder:8500;--TSPC-colorBackgroundImageOverlay:rgba(0, 0, 0, 0.4);--TSPC-colorBackgroundReminderHover:rgb(255, 255, 255);--TSPC-colorTextPathCurrentHover:rgb(3, 45, 96);--TSPC-colorBackgroundCustomer:rgb(254, 147, 57);--TSPC-colorBackgroundButtonDefault:rgb(255, 255, 255);--TSPC-colorBackgroundInverseLight:rgb(3, 45, 96);--TSPC-salesforceSansBoldWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Bold.woff);--TSPC-progressColorBorderActive:rgb(27, 150, 255);--TSPC-fontSizeLarge:1.25rem;--TSPC-brandHeaderContrastWeakActive:rgb(129, 129, 129);--TSPC-brandHeaderContrastWarmActive:rgb(186, 5, 23);--TSPC-squareToggleSlider:1.25rem;--TSPC-progressBarColorBackgroundFillSuccess:rgb(46, 132, 74);--TSPC-colorBackgroundButtonBrand:rgb(1, 118, 211);--TSPC-colorBackgroundWarningDark:rgb(254, 147, 57);--TSPC-colorTextIconUtility:rgb(174, 174, 174);--TSPC-colorBackgroundScrollbar:rgb(243, 243, 243);--TSPC-chatMessageColorBackgroundStatus:rgb(255, 255, 255);--TSPC-colorBackgroundTempModalTintAlt:rgba(255, 255, 255, 0.75);--TSPC-pageHeaderBorderRadius:0;--TSPC-palettePink95:rgb(254, 240, 243);--TSPC-welcomeMatColorIconComplete:rgb(201, 201, 201);--TSPC-palettePink90:rgb(253, 221, 227);--TSPC-paletteViolet50:rgb(186, 1, 255);--TSPC-paletteTeal30:rgb(2, 77, 76);--TSPC-colorTextIconInverseDisabled:rgba(255, 255, 255, 0.15);--TSPC-bannerGroupDefaultImage:;--TSPC-colorBorderBrand:rgb(27, 150, 255);--TSPC-colorBackgroundInfo:rgb(116, 116, 116);--TSPC-heightToggle:1.5rem;--TSPC-badgeColorBackgroundLightest:rgb(255, 255, 255);--TSPC-brandBandColorBackgroundSecondary:rgba(0, 0, 0, 0);--TSPC-shadowSoftPrimaryActive:none;--TSPC-colorTextIconDefaultHint:rgb(174, 174, 174);--TSPC-colorBackgroundChromeMobile:rgb(1, 118, 211);--TSPC-colorPickerSwatchSize:1.25rem;--TSPC-colorBackgroundPathIncomplete:rgb(243, 243, 243);--TSPC-paletteTeal40:rgb(5, 103, 100);--TSPC-colorTextToggleDisabled:rgb(201, 201, 201);--TSPC-paletteViolet40:rgb(150, 2, 199);--TSPC-colorTextLinkInverseHover:rgba(255, 255, 255, 0.75);--TSPC-palettePink80:rgb(253, 182, 197);--TSPC-zIndexModal:9000;--TSPC-pageHeaderIconSize:2.25rem;--TSPC-colorTextDestructiveHover:rgb(186, 5, 23);--TSPC-colorBorderCanvasElementSelection:rgb(26, 185, 255);--TSPC-colorBackgroundSuccess:rgb(69, 198, 90);--TSPC-carouselIndicatorColorBackground:rgb(255, 255, 255);--TSPC-sliderTrackHeight:4px;--TSPC-squareIconSmallContent:0.75rem;--TSPC-colorBackgroundInputDisabled:rgb(243, 243, 243);--TSPC-paletteTeal50:rgb(11, 130, 124);--TSPC-palettePink70:rgb(254, 138, 167);--TSPC-paletteViolet30:rgb(115, 3, 148);--TSPC-mqSmall:only screen and (max-width: 47.9375em);--TSPC-brandBandImageHeightLarge:18.75rem;--TSPC-carouselIndicatorWidth:1rem;--TSPC-colorTextLinkActive:rgb(3, 45, 96);--TSPC-squareIconXxSmallContent:.875rem;--TSPC-fontSizeXSmall:0.625rem;--TSPC-palettePink65:rgb(254, 114, 152);--TSPC-sliderColorBackgroundDisabled:rgb(243, 243, 243);--TSPC-colorContrastSecondary:rgb(255, 255, 255);--TSPC-welcomeMatColorBackgroundProgressBar:rgb(255, 255, 255);--TSPC-globalActionIconSize:1.5rem;--TSPC-paletteViolet20:rgb(72, 26, 84);--TSPC-fontSizeHeadingSmall:0.875rem;--TSPC-colorPickerRangeIndicatorSize:0.75rem;--TSPC-paletteOrange15:rgb(55, 30, 3);--TSPC-sliderHandleSize:1rem;--TSPC-tableBorderRadius:0;--TSPC-paletteTeal60:rgb(6, 165, 154);--TSPC-userDefaultAvatarSmall:url(/_slds/images/profile_avatar_96.png?cache=3c01f25f);--TSPC-buttonColorBackgroundPrimary:rgb(255, 255, 255);--TSPC-colorPickerInputCustomHexWidth:4.2rem;--TSPC-paletteOrange10:rgb(32, 22, 0);--TSPC-palettePink60:rgb(255, 83, 138);--TSPC-paletteTeal65:rgb(3, 180, 167);--TSPC-colorBackgroundRowSelected:rgb(243, 243, 243);--TSPC-colorBackgroundContextBarBrandAccent:rgb(13, 157, 218);--TSPC-fontFamilyMonospace:Consolas, Menlo, Monaco, Courier, monospace;--TSPC-cardFooterColorBorder:rgba(0, 0, 0, 0);--TSPC-palettePurple80:rgb(215, 191, 242);--TSPC-varSpacingHorizontalLarge:1.5rem;--TSPC-colorTextRequired:rgb(234, 0, 30);--TSPC-elevationShadow16:0 16px 16px 0 rgba(0, 0, 0, 0.16);--TSPC-paletteViolet10:rgb(46, 0, 57);--TSPC-shadowHardPrimary:none;--TSPC-paletteOrange20:rgb(62, 43, 2);--TSPC-paletteViolet15:rgb(61, 1, 87);--TSPC-radioButtonGroupLineHeightTouch:2.69rem;--TSPC-colorBackgroundBrandPrimary:rgb(1, 118, 211);--TSPC-paletteTeal70:rgb(1, 195, 179);--TSPC-colorBackgroundUtilityBarActive:rgb(27, 150, 255);--TSPC-zIndexSticky:100;--TSPC-colorBackgroundContextBarShadow:linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0, rgba(0, 0, 0, 0) 100%);--TSPC-paletteTeal80:rgb(4, 225, 203);--TSPC-palettePurple90:rgb(236, 225, 249);--TSPC-squareIconUtilityLarge:1.5rem;--TSPC-fontSize10:2rem;--TSPC-groupDefaultAvatarMedium:url(/_slds/images/group_avatar_160.png?cache=b8fe8e83);--TSPC-elevationShadow32:0 32px 32px 0 rgba(0, 0, 0, 0.16);--TSPC-paletteOrange30:rgb(95, 62, 2);--TSPC-colorBorderButtonInverseDisabled:rgba(255, 255, 255, 0.15);--TSPC-fontSize11:2.625rem;--TSPC-einsteinHeaderTextShadow:#cfe9fe;--TSPC-palettePurple95:rgb(246, 242, 251);--TSPC-squareTappableXxSmall:1.25rem;--TSPC-colorBackgroundDestructiveHover:rgb(142, 3, 15);--TSPC-fontSize9:1.75rem;--TSPC-colorBackgroundLight:rgb(255, 255, 255);--TSPC-fontSize8:1.5rem;--TSPC-paletteTeal90:rgb(172, 243, 228);--TSPC-shadowActive:0 0 2px #0176d3;--TSPC-fontSize1:0.625rem;--TSPC-paletteNeutral100:rgb(255, 255, 255);--TSPC-colorTextLink:rgb(1, 118, 211);--TSPC-pageHeaderTitleFontSize:1.125rem;--TSPC-fontSize3:0.8125rem;--TSPC-fontSize2:0.75rem;--TSPC-colorTextLinkInverseDisabled:rgba(255, 255, 255, 0.15);--TSPC-fontSize5:1rem;--TSPC-fontSize4:0.875rem;--TSPC-fontSize7:1.25rem;--TSPC-fontSize6:1.125rem;--TSPC-spacingNone:0;--TSPC-paletteOrange40:rgb(130, 81, 1);--TSPC-inputReadonlyFontWeight:400;--TSPC-palettePurple60:rgb(173, 123, 238);--TSPC-paletteTeal95:rgb(222, 249, 243);--TSPC-colorStrokeHeaderButton:rgb(174, 174, 174);--TSPC-typingIconDotColorBackgroundGray:rgb(201, 201, 201);--TSPC-palettePurple65:rgb(183, 141, 239);--TSPC-pageHeaderTitleFontWeight:400;--TSPC-colorBackgroundButtonIconFocus:rgb(243, 243, 243);--TSPC-groupDefaultAvatarSmall:url(/_slds/images/group_avatar_96.png?cache=d0659d12);--TSPC-colorBackgroundModalBrand:rgb(1, 68, 134);--TSPC-colorTextInverseActive:rgb(26, 185, 255);--TSPC-colorBackgroundHighlightSearch:rgb(255, 240, 63);--TSPC-paletteOrange50:rgb(169, 100, 4);--TSPC-colorBackgroundSuccessDark:rgb(46, 132, 74);--TSPC-shadowOverlay:0 -2px 4px rgba(0, 0, 0, 0.07);--TSPC-sizeXSmall:12rem;--TSPC-colorBackgroundDestructive:rgb(186, 5, 23);--TSPC-typingIconDotSize:.5rem;--TSPC-palettePurple70:rgb(194, 158, 241);--TSPC-colorBorderInfo:rgb(116, 116, 116);--TSPC-colorTextTabLabel:rgb(3, 45, 96);--TSPC-palettePink15:rgb(75, 6, 32);--TSPC-popoverWalkthroughColorBackgroundAlt:rgb(1, 118, 211);--TSPC-durationImmediately:0.05s;--TSPC-palettePink10:rgb(55, 1, 20);--TSPC-elevationInverseShadow16:0 -16px 16px 0 rgba(0, 0, 0, 0.16);--TSPC-salesforceSansLightWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Light.woff2);--TSPC-splitViewWidth:25rem;--TSPC-colorBorderIconInverseHint:rgba(255, 255, 255, 0.5);--TSPC-brandDisabled:rgb(201, 199, 197);--TSPC-paletteOrange60:rgb(221, 122, 1);--TSPC-palettePurple40:rgb(117, 38, 227);--TSPC-paletteOrange65:rgb(243, 131, 3);--TSPC-progressColorBackground:rgb(255, 255, 255);--TSPC-colorBorderContextBarThemeDefaultActive:rgb(243, 243, 243);--TSPC-avatarGroupColorBackgroundInverse:rgb(116, 116, 116);--TSPC-colorBackgroundAlt2:rgb(243, 243, 243);--TSPC-cardFontWeight:400;--TSPC-colorPickerSwatchShadow:inset 0 0 1px rgba(0,0,0,0.4);--TSPC-paletteOrange70:rgb(254, 147, 57);--TSPC-colorTextIconBrand:rgb(1, 118, 211);--TSPC-colorTextButtonDefault:rgb(1, 118, 211);--TSPC-palettePurple50:rgb(144, 80, 233);--TSPC-pathButtonWidthFixed:13rem;--TSPC-sizeLarge:25rem;--TSPC-userDefaultAvatarMedium:url(/_slds/images/profile_avatar_160.png?cache=bfba2c9a);--TSPC-colorBorderDestructive:rgb(234, 0, 30);--TSPC-colorTextWeak:rgb(116, 116, 116);--TSPC-fontSizeHeadingMedium:1.125rem;--TSPC-mqSingleColumnRecordLayout:(max-width: 599px);--TSPC-colorBackgroundInputSearch:rgba(0, 0, 0, 0.16);--TSPC-welcomeMatBackgroundColorInfo:rgb(207, 233, 254);--TSPC-colorBorderBrandPrimary:rgb(27, 150, 255);--TSPC-colorBackgroundInverse:rgb(0, 22, 57);--TSPC-maxWidthActionOverflowMenu:512px;--TSPC-paletteNeutral10:rgb(24, 24, 24);--TSPC-carouselColorBackground:rgb(255, 255, 255);--TSPC-colorTextLabel:rgb(116, 116, 116);--TSPC-colorBackgroundButtonSuccessActive:rgb(46, 132, 74);--TSPC-squareIconLarge:3.125rem;--TSPC-spinnerSizeXSmall:1rem;--TSPC-paletteOrange80:rgb(255, 186, 144);--TSPC-cardSpacingMargin:1rem;--TSPC-colorTextBrowserActive:rgba(0, 0, 0, 0.4);--TSPC-colorBackgroundButtonBrandHover:rgb(1, 68, 134);--TSPC-chatMessageColorBackgroundOutbound:rgb(1, 68, 134);--TSPC-colorTextIconDefaultActive:rgb(3, 45, 96);--TSPC-palettePurple20:rgb(64, 16, 117);--TSPC-colorTextIconDefaultHover:rgb(1, 118, 211);--TSPC-colorTextLinkPrimary:rgb(1, 118, 211);--TSPC-fontSizeTextXSmall:0.75rem;--TSPC-colorBackgroundToast:rgb(116, 116, 116);--TSPC-fontSizeXxLarge:2rem;--TSPC-heightSalesPath:2rem;--TSPC-colorTextIconDefaultHintBorderless:rgb(243, 243, 243);--TSPC-paletteOrange95:rgb(255, 241, 234);--TSPC-colorForegroundPrimary:rgb(255, 255, 255);--TSPC-paletteOrange90:rgb(254, 223, 208);--TSPC-colorBackgroundRowNew:rgb(205, 239, 196);--TSPC-fontSizeTextLarge:1.125rem;--TSPC-paletteGreen15:rgb(12, 41, 18);--TSPC-colorBackgroundShade:rgb(243, 243, 243);--TSPC-paletteGreen10:rgb(7, 27, 18);--TSPC-palettePurple30:rgb(90, 27, 169);--TSPC-varSpacingXxxSmall:0.125rem;--TSPC-brandLightActive:rgb(227, 229, 237);--TSPC-welcomeMatTextColorInfo:rgb(3, 45, 96);--TSPC-colorBackgroundIconWaffle:rgb(116, 116, 116);--TSPC-colorBackgroundContextBarItemHover:rgb(255, 255, 255);--TSPC-fontSizeXLargeA:1.57rem;--TSPC-colorBackgroundPathCompleteHover:rgb(46, 132, 74);--TSPC-palettePink50:rgb(227, 6, 106);--TSPC-paletteViolet90:rgb(242, 222, 254);--TSPC-paletteGreen20:rgb(28, 51, 38);--TSPC-paletteViolet95:rgb(249, 240, 255);--TSPC-colorBorderContextBarThemeDefaultHover:rgb(50, 29, 113);--TSPC-squareIconMedium:2.375rem;--TSPC-textTransform:none;--TSPC-colorBackgroundBrandPrimaryHover:rgb(1, 68, 134);--TSPC-colorTextSuccess:rgb(46, 132, 74);--TSPC-carouselIndicatorColorBackgroundFocus:rgb(1, 68, 134);--TSPC-colorBackgroundChromeDesktop:rgb(255, 255, 255);--TSPC-borderStrokeWidthThick:2px;--TSPC-colorBackgroundReminder:rgb(243, 243, 243);--TSPC-palettePurple15:rgb(48, 11, 96);--TSPC-colorTextToast:rgb(243, 243, 243);--TSPC-paletteViolet80:rgb(229, 185, 254);--TSPC-colorBackgroundAlt:rgb(255, 255, 255);--TSPC-palettePink40:rgb(182, 5, 84);--TSPC-paletteGreen30:rgb(25, 78, 49);--TSPC-palettePurple10:rgb(36, 6, 67);--TSPC-elevationInverseShadow32:0 -32px 32px 0 rgba(0, 0, 0, 0.16);--TSPC-colorBorderCustomer:rgb(254, 147, 57);--TSPC-tableColorBackgroundStripes:rgb(243, 243, 243);--TSPC-varSpacingVerticalSmall:0.75rem;--TSPC-palettePink30:rgb(138, 3, 62);--TSPC-paletteViolet70:rgb(216, 146, 254);--TSPC-colorBorderContextBarInverseItem:rgba(255, 255, 255, 0.2);--TSPC-utilityBarColorBackgroundNotificationBadge:rgb(254, 92, 76);--TSPC-colorTextTabLabelDisabled:rgb(243, 243, 243);--TSPC-heightInput:1.875rem;--TSPC-squareTappable:2.75rem;--TSPC-fontSizeSmall:0.875rem;--TSPC-paletteGreen40:rgb(57, 101, 71);--TSPC-tableColorBackgroundHeaderFocus:rgb(255, 255, 255);--TSPC-salesforceSansRegularWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Regular.woff2);--TSPC-varSpacingHorizontalXxLarge:3rem;--TSPC-paletteViolet65:rgb(209, 125, 254);--TSPC-progressBarColorBackgroundFill:rgb(26, 185, 255);--TSPC-colorBorderSeparator:rgb(243, 243, 243);--TSPC-paletteGreen50:rgb(46, 132, 74);--TSPC-brandHeaderIconDisabled:rgba(145, 145, 145, 0.25);--TSPC-palettePink20:rgb(97, 2, 42);--TSPC-splitViewColorBackground:rgb(243, 243, 243);--TSPC-colorBackgroundSecondary:rgb(243, 243, 243);--TSPC-colorTextLinkFocus:rgb(1, 68, 134);--TSPC-paletteViolet60:rgb(203, 101, 255);--JCFS-paletteIndigo10:rgb(32, 6, 71);--JCFS-popoverWalkthroughHeaderImage:;--JCFS-zIndexDialog:6000;--JCFS-colorPickerSelectorWidth:14rem;--JCFS-nubbinSizeDefault:1rem;--JCFS-paletteCloudBlue40:rgb(5, 98, 138);--JCFS-colorBackgroundContextBarInverseItemHover:rgba(255, 255, 255, 0.2);--JCFS-dropZoneSlotHeight:0.25rem;--JCFS-colorTextTabLabelSelected:rgb(1, 118, 211);--JCFS-colorStrokeBrandActive:rgb(3, 45, 96);--JCFS-paletteIndigo15:rgb(31, 9, 116);--JCFS-cardBodyPadding:0 1rem;--JCFS-varSpacingHorizontalSmall:0.75rem;--JCFS-tableColorBackgroundHeaderResizableHandle:rgb(174, 174, 174);--JCFS-colorBackgroundPathActiveHover:rgb(3, 45, 96);--JCFS-brandPrimaryTransparent:rgba(21, 137, 238, 0.1);--JCFS-brandPrimaryTransparent40:rgba(21, 137, 238, 0.4);--JCFS-colorBorderButtonDefault:rgb(201, 201, 201);--JCFS-paletteIndigo20:rgb(50, 29, 113);--JCFS-popoverColorText:rgb(201, 201, 201);--JCFS-paletteCloudBlue30:rgb(8, 73, 104);--JCFS-colorTextButtonDefaultActive:rgb(1, 118, 211);--JCFS-colorPickerSliderHeight:1.5rem;--JCFS-colorTextIconInverse:rgb(255, 255, 255);--JCFS-heightFooter:3.75rem;--JCFS-splitViewColorBorder:rgb(201, 201, 201);--JCFS-colorBorderRowSelectedHover:rgb(27, 150, 255);--JCFS-fontSizeTextXxSmall:0.625rem;--JCFS-lineHeightHeading:1.25;--JCFS-cardHeaderMargin:0 0 0.75rem;--JCFS-paletteIndigo30:rgb(47, 44, 183);--JCFS-mqMediumLandscape:only screen and (min-width: 48em) and (min-aspect-ratio: 4/3);--JCFS-brandBandImageHeightMedium:12.5rem;--JCFS-illustrationColorSecondary:rgb(207, 233, 254);--JCFS-zIndexDefault:1;--JCFS-colorBorderSelectionActive:rgb(243, 243, 243);--JCFS-paletteCloudBlue20:rgb(2, 50, 72);--JCFS-utilityBarColorBackgroundNotificationFocus:rgb(201, 201, 201);--JCFS-colorTextIconDefaultDisabled:rgb(201, 201, 201);--JCFS-colorTextBrand:rgb(27, 150, 255);--JCFS-durationToastMedium:9.6s;--JCFS-colorBackgroundButtonIconActive:rgb(243, 243, 243);--JCFS-brandHeaderContrastWeak:rgb(145, 145, 145);--JCFS-colorBackgroundNotificationNew:rgb(243, 243, 243);--JCFS-brandHeaderContrastInverseActive:rgb(238, 238, 238);--JCFS-colorBackgroundInputCheckboxSelected:rgb(27, 150, 255);--JCFS-progressColorBorder:rgb(255, 255, 255);--JCFS-spacingXxxSmall:0.125rem;--JCFS-paletteIndigo40:rgb(58, 73, 218);--JCFS-colorBackgroundProgressRingContent:rgb(255, 255, 255);--JCFS-lineHeightButtonSmall:1.75rem;--JCFS-salesforceSansBoldItalicWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-BoldItalic.woff);--JCFS-brandBackgroundDarkTransparent:rgba(221, 219, 218, 0);--JCFS-colorPickerThumbWidth:0.375rem;--JCFS-paletteCloudBlue10:rgb(0, 26, 40);--JCFS-brandHeaderIconActive:rgb(129, 129, 129);--JCFS-widthStageLeftCollapsed:4rem;--JCFS-paletteCloudBlue15:rgb(10, 38, 54);--JCFS-colorBorderOffline:rgb(68, 68, 68);--JCFS-colorBackgroundUtilityBarHover:rgb(243, 243, 243);--JCFS-sliderHandleColorBackgroundHover:rgb(1, 118, 211);--JCFS-colorTextIconInverseHint:rgba(255, 255, 255, 0.5);--JCFS-sizeMedium:20rem;--JCFS-brandPrimaryTransparent10:rgba(21, 137, 238, 0.1);--JCFS-colorBorderIconInverseHintHover:rgba(255, 255, 255, 0.75);--JCFS-colorTextDefault:rgb(3, 45, 96);--JCFS-paletteIndigo50:rgb(88, 103, 232);--JCFS-progressBarHeight:0.125rem;--JCFS-colorBackgroundWarning:rgb(254, 147, 57);--JCFS-colorBackgroundBrandPrimaryActive:rgb(3, 45, 96);--JCFS-paletteBlue90:rgb(216, 230, 254);--JCFS-brandHeaderContrastCool:rgb(1, 68, 134);--JCFS-paletteCloudBlue80:rgb(144, 208, 254);--JCFS-paletteBlue95:rgb(238, 244, 255);--JCFS-colorBorderSelectionHover:rgb(27, 150, 255);--JCFS-zIndexPopup:5000;--JCFS-borderRadiusLarge:0.5rem;--JCFS-colorTextIconInverseHintHover:rgba(255, 255, 255, 0.75);--JCFS-popoverBrandBorderWidth:0.25rem;--JCFS-fontSizeHeadingXLarge:1.75rem;--JCFS-typingIconDotColorBackgroundGrayDark:rgb(201, 201, 201);--JCFS-paletteIndigo65:rgb(142, 155, 239);--JCFS-varSpacingLarge:1.5rem;--JCFS-pageHeaderSpacingMargin:0;--JCFS-fontSizeTextXLarge:1.25rem;--JCFS-paletteIndigo60:rgb(127, 140, 237);--JCFS-paletteCloudBlue70:rgb(26, 185, 255);--JCFS-welcomeMatColorActionShadow:rgba(0, 0, 0, 0.05);--JCFS-colorTextBrowser:rgb(255, 255, 255);--JCFS-welcomeMatSpacingInfo:7.75rem;--JCFS-mqLarge:only screen and (min-width: 64.0625em);--JCFS-paletteIndigo70:rgb(158, 169, 241);--JCFS-squareTappableSmall:2rem;--JCFS-colorTextActionLabel:rgb(116, 116, 116);--JCFS-paletteCloudBlue60:rgb(13, 157, 218);--JCFS-paletteBlue70:rgb(120, 176, 253);--JCFS-colorBorderTabActive:rgb(255, 255, 255);--JCFS-paletteCloudBlue65:rgb(8, 171, 237);--JCFS-globalnavigationItemHeightAccentFocus:4px;--JCFS-colorBorderDestructiveHover:rgb(186, 5, 23);--JCFS-buttonLineHeightTouch:2.65rem;--JCFS-colorTextCustomer:rgb(254, 147, 57);--JCFS-squareIconUtilitySmall:1rem;--JCFS-colorBackgroundModalButtonActive:rgba(0, 0, 0, 0.16);--JCFS-colorTextBrandPrimary:rgb(255, 255, 255);--JCFS-squareIconXSmallBoundary:1.25rem;--JCFS-widthToggle:3rem;--JCFS-paletteIndigo80:rgb(190, 199, 246);--JCFS-welcomeMatMinHeight:25rem;--JCFS-zIndexDocked:4;--JCFS-squareIconMediumBoundaryAlt:2.25rem;--JCFS-colorBorderSelection:rgb(1, 118, 211);--JCFS-paletteBlue80:rgb(170, 203, 255);--JCFS-paletteCloudBlue50:rgb(16, 124, 173);--JCFS-brandHeaderContrastActive:rgb(80, 80, 80);--JCFS-formLabelFontSize:0.75rem;--JCFS-colorTextActionLabelActive:rgb(3, 45, 96);--JCFS-colorBackgroundBackdropTint:rgb(243, 243, 243);--JCFS-durationSlowly:0.4s;--JCFS-colorBackgroundRowHover:rgb(243, 243, 243);--JCFS-popoverWalkthroughAltNubbinColorBackground:rgb(1, 118, 211);--JCFS-spinnerSizeSmall:1.25rem;--JCFS-sliderTrackColorBackgroundFill:rgb(27, 150, 255);--JCFS-welcomeMatWidth:52.0625rem;--JCFS-paletteIndigo95:rgb(241, 243, 251);--JCFS-paletteIndigo90:rgb(224, 229, 248);--JCFS-filesZIndexHover:5;--JCFS-colorTextPill:rgb(1, 118, 211);--JCFS-varSpacingSmall:0.75rem;--JCFS-heightDockedBar:2.5rem;--JCFS-paletteBlue50:rgb(1, 118, 211);--JCFS-colorTextTabLabelHover:rgb(1, 68, 134);--JCFS-fontSizeHeadingXSmall:0.75rem;--JCFS-colorStrokeDisabled:rgb(243, 243, 243);--JCFS-widthPathBorderCurrent:0.125rem;--JCFS-colorBackgroundButtonDefaultHover:rgb(243, 243, 243);--JCFS-varSpacingVerticalXxSmall:0.25rem;--JCFS-colorTextButtonDefaultHover:rgb(1, 118, 211);--JCFS-durationPromptly:0.2s;--JCFS-colorBorderPathCurrent:rgb(1, 68, 134);--JCFS-colorBackgroundButtonDefaultActive:rgb(243, 243, 243);--JCFS-colorTextStageLeft:rgb(243, 243, 243);--JCFS-colorBorderHint:rgb(3, 45, 96);--JCFS-colorTextPrimary:rgb(3, 45, 96);--JCFS-brandBandColorBackgroundSecondaryTransparent:rgba(0, 0, 0, 0);--JCFS-paletteBlue60:rgb(27, 150, 255);--JCFS-cardColorBackground:rgb(255, 255, 255);--JCFS-brandHeaderIcon:rgb(145, 145, 145);--JCFS-paletteBlue65:rgb(87, 163, 253);--JCFS-spacingLarge:1.5rem;--JCFS-pageHeaderColorBorder:rgba(0, 0, 0, 0);--JCFS-cardFooterMargin:0.75rem;--JCFS-fontSizeTextSmall:0.8125rem;--JCFS-colorTextLinkInverseActive:rgba(255, 255, 255, 0.5);--JCFS-durationToastShort:4.8s;--JCFS-lineHeightButton:1.875rem;--JCFS-panelDockedLeftShadow:1px 0 3px rgba(0,0,0,0.25);--JCFS-panelDockedRightShadow:-1px 0 3px 0 rgba(0,0,0,0.25);--JCFS-colorTextLinkPrimaryHover:rgb(1, 118, 211);--JCFS-shadowButton:0 1px 1px 0 rgba(0, 0, 0, 0.05);--JCFS-welcomeMatMaxHeight:37.5rem;--JCFS-colorBorderToggleChecked:rgb(255, 255, 255);--JCFS-shadowHeader:0 2px 4px rgba(0, 0, 0, 0.07);--JCFS-sizeXxLarge:60rem;--JCFS-colorBackgroundDockedPanelHeader:rgb(255, 255, 255);--JCFS-paletteBlue30:rgb(1, 68, 134);--JCFS-lineHeightSalespath:1.5rem;--JCFS-shadowDrag:0 2px 4px 0 rgba(0, 0, 0, 0.40);--JCFS-colorBackgroundPathExpanded:rgb(255, 255, 255);--JCFS-colorBackground:rgb(243, 243, 243);--JCFS-colorBackgroundInput:rgb(255, 255, 255);--JCFS-sizeSmall:15rem;--JCFS-userDefaultAvatar:url(/_slds/images/profile_avatar_200.png?cache=7bdcafae);--JCFS-colorTextButtonInverse:rgb(243, 243, 243);--JCFS-colorBackgroundInputCheckboxDisabled:rgb(201, 201, 201);--JCFS-tableColorTextHeader:rgb(68, 68, 68);--JCFS-paletteBlue40:rgb(11, 92, 171);--JCFS-cardColorBorder:rgb(201, 201, 201);--JCFS-squareIconUtilityMedium:1.25rem;--JCFS-colorBackgroundButtonSuccessHover:rgb(46, 132, 74);--JCFS-colorBorderButtonBrandDisabled:rgba(0, 0, 0, 0);--JCFS-fontSizeHeadingXxSmall:0.625rem;--JCFS-colorBackgroundButtonInverseActive:rgba(0, 0, 0, 0.24);--JCFS-illustrationEmptyStateEvents:url(/_slds/images/illustrations/empty-state-events.svg?cache=985b247a);--JCFS-colorBackgroundToggle:rgb(174, 174, 174);--JCFS-colorBackgroundStencil:rgb(243, 243, 243);--JCFS-welcomeMatCheckSize:0.625rem;--JCFS-colorTextButtonBrandHover:rgb(255, 255, 255);--JCFS-buttonColorBackgroundSecondary:rgba(255, 255, 255, 0.8);--JCFS-paletteBlue10:rgb(0, 22, 57);--JCFS-varSpacingVerticalLarge:1.5rem;--JCFS-colorBorderReminder:rgb(243, 243, 243);--JCFS-colorBrandDark:rgb(1, 118, 211);--JCFS-paletteBlue15:rgb(3, 35, 77);--JCFS-colorBorderBrandPrimaryFocus:rgb(1, 118, 211);--JCFS-salesforceSansItalicWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Italic.woff);--JCFS-colorBorderBrandPrimaryActive:rgb(3, 45, 96);--JCFS-datepickerColorTextDayAdjacentMonth:rgb(116, 116, 116);--JCFS-colorBorderErrorAlt:rgb(254, 143, 125);--JCFS-shadowReminder:0 2px 3px 0 rgba(0, 0, 0, 0.20);--JCFS-brandTextLinkActive:rgb(1, 68, 134);--JCFS-pageHeaderColorBackground:rgb(243, 243, 243);--JCFS-salesforceSansBoldWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Bold.woff2);--JCFS-fontSizeHeadingLarge:1.5rem;--JCFS-colorBackgroundStencilAlt:rgb(243, 243, 243);--JCFS-paletteBlue20:rgb(3, 45, 96);--JCFS-elevationInverseShadow3Below:0 -3px 3px 0 rgba(0, 0, 0, 0.16) inset;--JCFS-varSpacingHorizontalXxSmall:0.25rem;--JCFS-colorBorderSeparatorAlt:rgb(201, 201, 201);--JCFS-colorPickerRangeHeight:5rem;--JCFS-colorBackgroundButtonIcon:rgba(0, 0, 0, 0);--JCFS-paletteTeal15:rgb(7, 40, 37);--JCFS-buttonIconColorBorderPrimary:rgb(255, 255, 255);--JCFS-brandAccessibleActive:rgb(1, 68, 134);--JCFS-paletteYellow80:rgb(252, 192, 3);--JCFS-zIndexSpinner:9050;--JCFS-colorBackgroundContextTabBarItem:rgb(255, 255, 255);--JCFS-fontWeightBold:700;--JCFS-paletteTeal10:rgb(7, 27, 18);--JCFS-colorBackgroundContextBarItemActive:rgb(255, 255, 255);--JCFS-shadowFocusInset:0 0 2px 2px #1b96ff inset;--JCFS-colorBackgroundAltInverse:rgb(3, 45, 96);--JCFS-colorBackgroundPathIncompleteHover:rgb(201, 201, 201);--JCFS-squareIconMediumContent:1rem;--JCFS-colorBackgroundContextBar:rgb(255, 255, 255);--JCFS-colorTextInverseHover:rgb(174, 174, 174);--JCFS-colorBackgroundInputActive:rgb(255, 255, 255);--JCFS-brandContrast:rgb(26, 27, 30);--JCFS-colorTextSecondary:rgb(116, 116, 116);--JCFS-fillHeaderButtonHover:rgb(1, 68, 134);--JCFS-fontFamilyText:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--JCFS-welcomeMatCompleteIconSize:1.25rem;--JCFS-varSpacingXxLarge:3rem;--JCFS-paletteYellow95:rgb(251, 243, 224);--JCFS-paletteYellow90:rgb(249, 227, 182);--JCFS-brandBackgroundPrimary:rgb(250, 250, 249);--JCFS-paletteTeal20:rgb(2, 52, 52);--JCFS-progressRingWidth:0.1875rem;--JCFS-paletteYellow65:rgb(215, 147, 4);--JCFS-paletteYellow60:rgb(202, 133, 1);--JCFS-colorBorderInputCheckboxSelectedCheckmark:rgb(255, 255, 255);--JCFS-colorBorderCanvasElementSelectionHover:rgb(1, 68, 134);--JCFS-borderRadiusSmall:0.125rem;--JCFS-progressBarColorBackground:rgb(201, 201, 201);--JCFS-durationInstantly:0s;--JCFS-colorBackgroundToastSuccess:rgb(46, 132, 74);--JCFS-tabsFontWeight:400;--JCFS-colorBackgroundPost:rgb(243, 243, 243);--JCFS-colorTextPlaceholderInverse:rgb(243, 243, 243);--JCFS-colorTextInputIcon:rgb(174, 174, 174);--JCFS-sliderHandleShadow:rgba(0, 0, 0, 0.16) 0 2px 3px;--JCFS-paletteYellow70:rgb(228, 162, 1);--JCFS-fontWeightLight:300;--JCFS-colorTextError:rgb(234, 0, 30);--JCFS-varSpacingXxSmall:0.25rem;--JCFS-colorBorderInput:rgb(201, 201, 201);--JCFS-brandAccessible:rgb(1, 118, 211);--JCFS-pageColorBackgroundPrimary:rgb(255, 255, 255);--JCFS-cardShadow:none;--JCFS-lineClamp:3;--JCFS-welcomeMatWidthProgressBar:12.5rem;--JCFS-progressColorBackgroundShade:rgb(243, 243, 243);--JCFS-globalActionFillHover:rgb(1, 68, 134);--JCFS-illustrationEmptyStateAssistant:url(/_slds/images/illustrations/empty-state-assistant.svg?cache=127a789e);--JCFS-varSpacingHorizontalXSmall:0.5rem;--JCFS-colorPickerInputCustomHexFontSize:0.75rem;--JCFS-varSpacingMedium:1rem;--JCFS-colorBackgroundShadeDark:rgb(201, 201, 201);--JCFS-colorPickerSwatchesWidth:13.3rem;--JCFS-squareIconLargeBoundaryAlt:5rem;--JCFS-colorBorderInputDisabled:rgb(201, 201, 201);--JCFS-paletteYellow40:rgb(140, 75, 2);--JCFS-cardWrapperSpacing:1rem;--JCFS-colorBackgroundNotificationBadgeActive:rgb(3, 45, 96);--JCFS-colorBackgroundHighlight:rgb(250, 255, 189);--JCFS-colorBackgroundRowActive:rgb(243, 243, 243);--JCFS-componentSpacingMargin:0;--JCFS-colorBorderButtonFocusInverse:rgb(243, 243, 243);--JCFS-shadowButtonFocus:0 0 3px #0176d3;--JCFS-varSpacingVerticalXLarge:2rem;--JCFS-tableColorBackgroundHeaderHover:rgb(243, 243, 243);--JCFS-colorBackgroundDockedPanel:rgb(255, 255, 255);--JCFS-colorTextTertiary:rgb(116, 116, 116);--JCFS-varSpacingVerticalXxLarge:3rem;--JCFS-paletteYellow50:rgb(168, 100, 3);--JCFS-brandContrastActive:rgb(13, 14, 18);--JCFS-squareIconLargeContent:2rem;--JCFS-colorPickerSliderThumbColorBackground:rgb(243, 243, 243);--JCFS-inputStaticFontSize:0.8125rem;--JCFS-borderWidthThin:1px;--JCFS-fontWeightRegular:400;--JCFS-colorBackgroundButtonSuccess:rgb(69, 198, 90);--JCFS-splitViewColorBackgroundRowHover:rgb(255, 255, 255);--JCFS-paletteYellow20:rgb(79, 33, 0);--JCFS-bannerUserDefaultImage:;--JCFS-elevation8:8;--JCFS-brandDark:rgb(1, 118, 211);--JCFS-colorBackgroundPathCurrentHover:rgb(255, 255, 255);--JCFS-elevation0:0;--JCFS-elevation2:2;--JCFS-pageHeaderJoinedColorBorder:rgb(201, 201, 201);--JCFS-elevation4:4;--JCFS-durationPaused:3.2s;--JCFS-colorBrand:rgb(27, 150, 255);--JCFS-colorBackgroundPathComplete:rgb(59, 167, 85);--JCFS-progressColorBorderHover:rgb(1, 118, 211);--JCFS-spacingXxSmall:0.25rem;--JCFS-tableCellSpacing:0.5rem;--JCFS-colorBorderContextBarThemeDefault:rgb(13, 157, 218);--JCFS-colorBackgroundAnchor:rgb(243, 243, 243);--JCFS-paletteYellow30:rgb(111, 52, 0);--JCFS-shadowButtonFocusInverse:0 0 3px #f3f3f3;--JCFS-welcomeMatFontSizeInfoTitle:2.625rem;--JCFS-colorBorderLinkFocusInverse:rgb(243, 243, 243);--JCFS-borderRadiusCircle:50%;--JCFS-buttonColorBorderSecondary:rgba(255, 255, 255, 0.8);--JCFS-colorTextSuccessInverse:rgb(69, 198, 90);--JCFS-varSpacingXLarge:2rem;--JCFS-sizeXLarge:40rem;--JCFS-varSpacingHorizontalXxxSmall:0.125rem;--JCFS-elevation3Inset:-3;--JCFS-lineHeightTab:2.5rem;--JCFS-colorBackgroundDestructiveActive:rgb(142, 3, 15);--JCFS-colorTextLinkPrimaryActive:rgb(3, 45, 96);--JCFS-colorBackgroundPageHeader:rgb(255, 255, 255);--JCFS-colorBackgroundPill:rgb(255, 255, 255);--JCFS-fillBrandHover:rgb(1, 68, 134);--JCFS-colorBorderContextBarItem:rgba(0, 0, 0, 0.2);--JCFS-borderStrokeWidthThin:1px;--JCFS-progressColorBorderShade:rgb(243, 243, 243);--JCFS-heightHeader:2.75rem;--JCFS-shadowInlineEdit:0 2px 4px 4px rgba(0, 0, 0, 0.16);--JCFS-colorBackgroundNotificationBadgeHover:rgb(1, 68, 134);--JCFS-borderRadiusPill:15rem;--JCFS-colorTextButtonInverseDisabled:rgba(255, 255, 255, 0.5);--JCFS-sizeXxxSmall:3rem;--JCFS-colorBackgroundSuccessDarker:rgb(25, 78, 49);--JCFS-colorBackgroundToggleHover:rgb(147, 147, 147);--JCFS-paletteYellow15:rgb(46, 34, 4);--JCFS-paletteYellow10:rgb(40, 18, 2);--JCFS-cardSpacingSmall:0.75rem;--JCFS-illustrationEmptyStateTasks:url(/_slds/images/illustrations/empty-state-tasks.svg?cache=dc5e5e5b);--JCFS-brandBandScrimHeight:3.125rem;--JCFS-popoverWalkthroughColorBackground:rgb(0, 22, 57);--JCFS-colorBorderErrorDark:rgb(254, 143, 125);--JCFS-heightTappableSmall:2rem;--JCFS-colorBackgroundButtonBrandDisabled:rgb(243, 243, 243);--JCFS-colorBorderPrimary:rgb(201, 201, 201);--JCFS-colorGray1:rgb(255, 255, 255);--JCFS-fontSizeXLarge:1.5rem;--JCFS-varSquareIconMediumBoundary:2rem;--JCFS-colorGray5:rgb(221, 219, 218);--JCFS-colorGray4:rgb(236, 235, 234);--JCFS-colorGray3:rgb(243, 242, 242);--JCFS-colorGray2:rgb(250, 250, 249);--JCFS-opacity8:0.8;--JCFS-salesforceSansBoldItalicWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-BoldItalic.woff2);--JCFS-opacity5:0.5;--JCFS-squareIconGlobalIdentityIcon:1.25rem;--JCFS-colorBackgroundBrowser:rgb(116, 116, 116);--JCFS-colorTextIconInverseActive:rgb(255, 255, 255);--JCFS-shadowDocked:0 -2px 2px 0 rgba(0, 0, 0, 0.16);--JCFS-colorBackgroundInputError:rgb(253, 221, 227);--JCFS-colorGray9:rgb(112, 110, 107);--JCFS-colorGray8:rgb(150, 148, 146);--JCFS-colorGray7:rgb(176, 173, 171);--JCFS-colorGray6:rgb(201, 199, 197);--JCFS-colorTextLinkInverse:rgb(255, 255, 255);--JCFS-squareIconSmallBoundary:1.5rem;--JCFS-varSpacingHorizontalXLarge:2rem;--JCFS-colorBackgroundDark:rgb(243, 243, 243);--JCFS-colorTextWarningAlt:rgb(140, 75, 2);--JCFS-elevationInverseShadow2:0 -2px 2px 0 rgba(0, 0, 0, 0.16);--JCFS-elevationInverseShadow0:none;--JCFS-colorStrokeBrand:rgb(1, 118, 211);--JCFS-colorBackgroundToggleActive:rgb(1, 68, 134);--JCFS-colorBorderContextBarDivider:rgba(255, 255, 255, 0.2);--JCFS-zIndexToast:10000;--JCFS-colorBackgroundContextBarActionHighlight:rgba(255, 255, 255, 0.2);--JCFS-colorBackgroundBrandPrimaryFocus:rgb(1, 68, 134);--JCFS-buttonColorBackgroundBrandPrimary:rgb(1, 118, 211);--JCFS-brandHeaderContrastWarm:rgb(186, 5, 23);--JCFS-buttonColorTextPrimary:rgb(255, 255, 255);--JCFS-colorBrandDarker:rgb(1, 68, 134);--JCFS-colorBorderPathCurrentHover:rgb(3, 45, 96);--JCFS-colorTextButtonDefaultDisabled:rgb(201, 201, 201);--JCFS-colorBackgroundPathLost:rgb(234, 0, 30);--JCFS-einsteinHeaderBackground:url(/_slds/images/einstein-headers/einstein-header-background.svg?cache=ff7fa2ff);--JCFS-brandTextLink:rgb(1, 118, 211);--JCFS-sliderTrackColorBackground:rgb(243, 243, 243);--JCFS-colorContrastPrimary:rgb(243, 243, 243);--JCFS-groupDefaultAvatar:url(/_slds/images/group_avatar_200.png?cache=a0044dae);--JCFS-templateProfileGutters:0;--JCFS-sizeXxSmall:6rem;--JCFS-colorBackgroundPayload:rgb(243, 243, 243);--JCFS-paletteCloudBlue90:rgb(207, 233, 254);--JCFS-colorBackgroundPathActive:rgb(1, 68, 134);--JCFS-colorTextDestructive:rgb(234, 0, 30);--JCFS-squareIconLargeBoundary:3rem;--JCFS-colorBorderWarning:rgb(254, 147, 57);--JCFS-shadowSoftPrimaryHover:none;--JCFS-paletteCloudBlue95:rgb(234, 245, 254);--JCFS-spacingSmall:0.75rem;--JCFS-colorBackgroundErrorDark:rgb(186, 5, 23);--JCFS-brandHeaderContrastWeakDisabled:rgba(166, 166, 166, 0.25);--JCFS-squareIconMediumContentAlt:0.875rem;--JCFS-colorBackgroundButtonInverse:rgba(0, 0, 0, 0);--JCFS-brandHeader:rgb(255, 255, 255);--JCFS-lineHeightText:1.5;--JCFS-widthStageLeftExpanded:15rem;--JCFS-colorBackgroundError:rgb(254, 92, 76);--JCFS-colorTextButtonBrandActive:rgb(255, 255, 255);--JCFS-fontFamily:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--JCFS-mqMedium:only screen and (min-width: 48em);--JCFS-brandDarkActive:rgb(37, 48, 69);--JCFS-colorBackgroundPathStepActionActive:rgb(0, 22, 57);--JCFS-neutrafaceDisplayWoff2:url(/_slds/fonts/NeutrafaceDisplay.woff2?cache=2.9.0);--JCFS-spacingMedium:1rem;--JCFS-colorTextModal:rgb(255, 255, 255);--JCFS-spinnerSizeLarge:2.75rem;--JCFS-carouselIndicatorColorBackgroundHover:rgb(243, 243, 243);--JCFS-shadowActionOverflowFooter:0 -2px 4px #f3f3f3;--JCFS-popoverWalkthroughHeaderColorBackground:rgb(3, 45, 96);--JCFS-colorBackgroundPathWon:rgb(46, 132, 74);--JCFS-lineHeightToggle:1.3rem;--JCFS-neutrafaceDisplayWoff:url(/_slds/fonts/NeutrafaceDisplay.woff?cache=2.9.0);--JCFS-cardFooterPadding:0 1rem 0.75rem;--JCFS-sliderHandleColorBackground:rgb(27, 150, 255);--JCFS-colorBackgroundErrorAlt:rgb(254, 143, 125);--JCFS-colorBackgroundIndicatorDot:rgb(3, 45, 96);--JCFS-chatMessageColorBackgroundInbound:rgb(243, 243, 243);--JCFS-elevationShadow0:none;--JCFS-heightPill:1.625rem;--JCFS-elevationShadow4:0 4px 4px 0 rgba(0, 0, 0, 0.16);--JCFS-elevationShadow2:0 2px 2px 0 rgba(0, 0, 0, 0.16);--JCFS-elevationShadow8:0 8px 8px 0 rgba(0, 0, 0, 0.16);--JCFS-varFontSize8:1.5rem;--JCFS-colorBackgroundButtonDefaultDisabled:rgb(255, 255, 255);--JCFS-varFontSize7:1.25rem;--JCFS-elevationInverseShadow8:0 -8px 8px 0 rgba(0, 0, 0, 0.16);--JCFS-varFontSize9:1.75rem;--JCFS-brandBandColorBackgroundPrimary:rgba(0, 0, 0, 0);--JCFS-colorTextButtonBrand:rgb(255, 255, 255);--JCFS-elevationInverseShadow4:0 -4px 4px 0 rgba(0, 0, 0, 0.16);--JCFS-colorBackgroundToggleActiveHover:rgb(1, 68, 134);--JCFS-welcomeMatBackgroundImageInfo:url(/_slds/images/welcome-mat/bg-info@2x.png?cache=ddb4e82f);--JCFS-varFontSize2:0.75rem;--JCFS-varFontSize1:0.625rem;--JCFS-varFontSize4:0.875rem;--JCFS-pageHeaderSpacingRow:0.75rem 1rem;--JCFS-varFontSize3:0.8125rem;--JCFS-varFontSize6:1.125rem;--JCFS-varFontSize5:1rem;--JCFS-varSpacingVerticalMedium:1rem;--JCFS-pageHeaderSpacingPadding:1rem;--JCFS-colorTextModalButton:rgb(116, 116, 116);--JCFS-colorBackgroundPrimary:rgb(255, 255, 255);--JCFS-colorTextInputFocusInverse:rgb(3, 45, 96);--JCFS-colorBackgroundScrollbarTrack:rgb(201, 201, 201);--JCFS-paletteNeutral70:rgb(174, 174, 174);--JCFS-brandPrimaryActive:rgb(1, 118, 211);--JCFS-popoverWalkthroughAltImage:;--JCFS-nubbinTriangleOffset:-0.1875rem;--JCFS-salesforceSansLightWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Light.woff);--JCFS-colorBorderSuccessDark:rgb(46, 132, 74);--JCFS-mqHighRes:only screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2),screen and (min-resolution: 192dpi),screen and (min-resolution: 2dppx);--JCFS-brandBandColorBackgroundPrimaryTransparent:rgba(0, 0, 0, 0);--JCFS-colorBackgroundContextBarInverseItemActive:rgba(255, 255, 255, 0.4);--JCFS-colorTextButtonDefaultHint:rgb(174, 174, 174);--JCFS-salesforceSansItalicWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Italic.woff2);--JCFS-paletteGreen60:rgb(59, 167, 85);--JCFS-heightContextBar:2.5rem;--JCFS-colorBackgroundOrgSwitcherArrow:rgb(0, 22, 57);--JCFS-paletteGreen65:rgb(65, 182, 88);--JCFS-brandHeaderContrastInverse:rgb(255, 255, 255);--JCFS-notificationColorBackgroundInverse:rgb(116, 116, 116);--JCFS-colorBackgroundButtonIconDisabled:rgb(255, 255, 255);--JCFS-paletteNeutral60:rgb(147, 147, 147);--JCFS-colorBorderContextBarThemeDefaultAlt:rgb(243, 243, 243);--JCFS-fillBrand:rgb(1, 118, 211);--JCFS-colorBackgroundInputCheckbox:rgb(255, 255, 255);--JCFS-colorBorder:rgb(201, 201, 201);--JCFS-squareIconSmall:1rem;--JCFS-varSpacingHorizontalMedium:1rem;--JCFS-illustrationColorPrimary:rgb(144, 208, 254);--JCFS-varSpacingVerticalXSmall:0.5rem;--JCFS-colorTextPlaceholder:rgb(116, 116, 116);--JCFS-einsteinHeaderBackgroundColor:rgb(144, 208, 254);--JCFS-paletteGreen70:rgb(69, 198, 90);--JCFS-brandHeaderContrast:rgb(94, 94, 94);--JCFS-inputStaticColor:rgb(24, 24, 24);--JCFS-paletteNeutral90:rgb(229, 229, 229);--JCFS-paletteGreen90:rgb(205, 239, 196);--JCFS-spacingXxLarge:3rem;--JCFS-shadowDropDown:0 2px 3px 0 rgba(0, 0, 0, 0.16);--JCFS-paletteNeutral95:rgb(243, 243, 243);--JCFS-colorBackgroundModal:rgb(255, 255, 255);--JCFS-elevationShadow3Below:0 3px 3px 0 rgba(0, 0, 0, 0.16) inset;--JCFS-paletteRed80:rgb(254, 184, 171);--JCFS-sliderTrackWidth:100%;--JCFS-elevation32:32;--JCFS-globalHeaderColorBackground:rgb(255, 255, 255);--JCFS-spacingXLarge:2rem;--JCFS-paletteGreen80:rgb(145, 219, 139);--JCFS-colorBorderInputActive:rgb(27, 150, 255);--JCFS-varSpacingXSmall:0.5rem;--JCFS-paletteNeutral80:rgb(201, 201, 201);--JCFS-colorBackgroundModalButton:rgba(0, 0, 0, 0.07);--JCFS-colorBorderPathDivider:rgb(255, 255, 255);--JCFS-colorTextIconDefault:rgb(116, 116, 116);--JCFS-zIndexDeepdive:-99999;--JCFS-elevation16:16;--JCFS-paletteRed90:rgb(254, 222, 216);--JCFS-globalnavigationItemHeightAccentActive:3px;--JCFS-templateGutters:0;--JCFS-paletteRed95:rgb(254, 241, 238);--JCFS-buttonColorBorderBrandPrimary:rgb(1, 118, 211);--JCFS-buttonIconBoundaryTouch:2.75rem;--JCFS-brandBackgroundPrimaryTransparent:rgba(176, 196, 223, 0);--JCFS-fillHeaderButtonFocus:rgb(1, 118, 211);--JCFS-colorBorderError:rgb(234, 0, 30);--JCFS-colorTextLinkHover:rgb(1, 68, 134);--JCFS-paletteGreen95:rgb(235, 247, 230);--JCFS-einsteinHeaderFigure:url(/_slds/images/einstein-headers/einstein-figure.svg?cache=ec975fb1);--JCFS-colorBorderRowSelected:rgb(1, 118, 211);--JCFS-colorStrokeBrandHover:rgb(1, 118, 211);--JCFS-paletteNeutral30:rgb(68, 68, 68);--JCFS-varSpacingVerticalXxxSmall:0.125rem;--JCFS-paletteHotOrange10:rgb(40, 18, 2);--JCFS-colorTextButtonBrandDisabled:rgb(255, 255, 255);--JCFS-squareIconXSmallContent:0.5rem;--JCFS-varFontSize10:2rem;--JCFS-paletteRed60:rgb(254, 92, 76);--JCFS-varFontSize11:2.625rem;--JCFS-paletteRed65:rgb(254, 119, 101);--JCFS-buttonBorderRadius:.25rem;--JCFS-squareTappableXSmall:1.5rem;--JCFS-colorBackgroundGuidance:rgb(255, 255, 255);--JCFS-colorTextContextBarInverse:rgb(255, 255, 255);--JCFS-paletteNeutral20:rgb(46, 46, 46);--JCFS-fontFamilyHeading:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--JCFS-paletteRed70:rgb(254, 143, 125);--JCFS-brandHeaderContrastCoolActive:rgb(1, 68, 134);--JCFS-borderWidthThick:2px;--JCFS-pageHeaderShadow:none;--JCFS-spinnerSizeXxSmall:0.5rem;--JCFS-tableColorBackgroundHeader:rgb(255, 255, 255);--JCFS-pageHeaderColorBackgroundAlt:rgb(255, 255, 255);--JCFS-colorBorderBrandPrimaryHover:rgb(1, 118, 211);--JCFS-colorTextTabLabelActive:rgb(3, 45, 96);--JCFS-paletteNeutral50:rgb(116, 116, 116);--JCFS-colorBackgroundTempModalTint:rgba(126, 140, 153, 0.8);--JCFS-fontSizeMedium:1rem;--JCFS-colorBorderButtonBrand:rgb(1, 118, 211);--JCFS-paletteHotOrange30:rgb(126, 38, 0);--JCFS-paletteRed40:rgb(186, 5, 23);--JCFS-brandBandImageHeightSmall:6rem;--JCFS-colorTextInverseWeak:rgb(174, 174, 174);--JCFS-colorTextInverse:rgb(255, 255, 255);--JCFS-shadowLinkFocusInverse:0 0 3px #f3f3f3;--JCFS-squareIconXxSmallBoundary:1rem;--JCFS-lineHeightReset:1;--JCFS-verticalNavigationColorBackgroundShadeRowActive:rgb(243, 243, 243);--JCFS-colorBackgroundTempModal:rgba(126, 140, 153, 0.8);--JCFS-colorBackgroundToggleDisabled:rgb(174, 174, 174);--JCFS-colorGray13:rgb(8, 7, 7);--JCFS-colorGray10:rgb(81, 79, 77);--JCFS-paletteNeutral40:rgb(92, 92, 92);--JCFS-colorBorderInverse:rgb(0, 22, 57);--JCFS-carouselIndicatorColorBackgroundActive:rgb(1, 118, 211);--JCFS-colorBackgroundBackdrop:rgba(255, 255, 255, 0.75);--JCFS-colorGray12:rgb(43, 40, 38);--JCFS-colorGray11:rgb(62, 62, 60);--JCFS-colorTextContextBarActionTrigger:rgba(255, 255, 255, 0.4);--JCFS-paletteHotOrange20:rgb(74, 36, 19);--JCFS-colorBackgroundNotification:rgb(255, 255, 255);--JCFS-colorBackgroundPathStepActionCurrent:rgb(1, 68, 134);--JCFS-badgeColorBackgroundInverse:rgb(116, 116, 116);--JCFS-colorBorderSeparatorInverse:rgb(3, 45, 96);--JCFS-paletteRed50:rgb(234, 0, 30);--JCFS-colorBackgroundSpinnerDot:rgb(174, 174, 174);--JCFS-colorBackgroundButtonBrandActive:rgb(3, 45, 96);--JCFS-paletteHotOrange15:rgb(66, 22, 4);--JCFS-sliderHandleColorBackgroundFocus:rgb(1, 118, 211);--JCFS-spinnerSizeMedium:2rem;--JCFS-brandPrimary:rgb(27, 150, 255);--JCFS-paletteHotOrange50:rgb(216, 58, 0);--JCFS-colorTextLinkPrimaryFocus:rgb(1, 118, 211);--JCFS-colorTextInputDisabled:rgb(116, 116, 116);--JCFS-brandLogoImage:url(/_slds/images/logo-noname.svg?cache=380754d9);--JCFS-brandLight:rgb(244, 246, 254);--JCFS-paletteRed20:rgb(100, 1, 3);--JCFS-fillHeaderButton:rgb(174, 174, 174);--JCFS-varLineHeightText:1.5;--JCFS-colorBackgroundPathCurrent:rgb(255, 255, 255);--JCFS-colorBackgroundOffline:rgb(68, 68, 68);--JCFS-colorBorderTabSelected:rgb(1, 118, 211);--JCFS-colorTextWarning:rgb(254, 147, 57);--JCFS-salesforceSansRegularWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Regular.woff);--JCFS-paletteHotOrange40:rgb(170, 48, 1);--JCFS-cardSpacingLarge:1.5rem;--JCFS-paletteRed30:rgb(142, 3, 15);--JCFS-fontSizeMediumA:1.125rem;--JCFS-borderRadiusMedium:0.25rem;--JCFS-colorPickerSliderThumbBorderColor:rgb(68, 68, 68);--JCFS-shadowSoftPrimary:none;--JCFS-zIndexDropdown:7000;--JCFS-paletteHotOrange70:rgb(255, 144, 110);--JCFS-verticalNavigationColorBackgroundShadeRowHover:rgb(243, 243, 243);--JCFS-squareIconMediumBoundary:2rem;--JCFS-colorBackgroundButtonDefaultFocus:rgb(243, 243, 243);--JCFS-heightTappable:2.75rem;--JCFS-colorBackgroundToastError:rgb(234, 0, 30);--JCFS-brandBandDefaultImage:;--JCFS-durationQuickly:0.1s;--JCFS-colorBackgroundSelection:rgb(216, 230, 254);--JCFS-paletteHotOrange60:rgb(255, 93, 45);--JCFS-colorBackgroundActionbarIconUtility:rgb(116, 116, 116);--JCFS-colorBackgroundNotificationBadgeFocus:rgb(1, 68, 134);--JCFS-paletteHotOrange65:rgb(255, 120, 79);--JCFS-cardFooterTextAlign:right;--JCFS-colorBorderBrandDark:rgb(1, 68, 134);--JCFS-brandBackgroundDark:rgb(232, 232, 232);--JCFS-avatarGroupColorBackgroundLightest:rgb(255, 255, 255);--JCFS-colorTextContextBar:rgb(68, 68, 68);--JCFS-inputStaticFontWeight:400;--JCFS-paletteRed10:rgb(48, 12, 1);--JCFS-colorTextLinkDisabled:rgb(3, 45, 96);--JCFS-colorTextPathCurrent:rgb(1, 68, 134);--JCFS-paletteRed15:rgb(74, 12, 4);--JCFS-zIndexOverlay:8000;--JCFS-buttonColorBorderPrimary:rgb(243, 243, 243);--JCFS-paletteHotOrange90:rgb(255, 222, 213);--JCFS-shadowImage:0 1px 1px rgba(0, 0, 0, 0.16);--JCFS-paletteHotOrange95:rgb(254, 241, 237);--JCFS-cardHeaderPadding:0.75rem 1rem 0;--JCFS-colorBorderSeparatorAlt2:rgb(201, 201, 201);--JCFS-fillBrandActive:rgb(3, 45, 96);--JCFS-fontSizeTextMedium:1rem;--JCFS-spacingXSmall:0.5rem;--JCFS-chatMessageColorBackgroundOutboundAgent:rgb(116, 116, 116);--JCFS-colorBackgroundButtonIconHover:rgb(243, 243, 243);--JCFS-sliderHandleColorBackgroundActive:rgb(1, 118, 211);--JCFS-colorBorderSuccess:rgb(145, 219, 139);--JCFS-colorTextIconInverseHover:rgb(255, 255, 255);--JCFS-componentSpacingPadding:1rem;--JCFS-colorBorderDestructiveActive:rgb(142, 3, 15);--JCFS-colorBackgroundButtonInverseDisabled:rgba(0, 0, 0, 0);--JCFS-colorTextTabLabelFocus:rgb(1, 68, 134);--JCFS-paletteHotOrange80:rgb(254, 185, 165);--JCFS-colorBackgroundNotificationBadge:rgb(234, 0, 30);--JCFS-zIndexReminder:8500;--JCFS-colorBackgroundImageOverlay:rgba(0, 0, 0, 0.4);--JCFS-colorBackgroundReminderHover:rgb(255, 255, 255);--JCFS-colorTextPathCurrentHover:rgb(3, 45, 96);--JCFS-colorBackgroundCustomer:rgb(254, 147, 57);--JCFS-colorBackgroundButtonDefault:rgb(255, 255, 255);--JCFS-colorBackgroundInverseLight:rgb(3, 45, 96);--JCFS-salesforceSansBoldWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Bold.woff);--JCFS-progressColorBorderActive:rgb(27, 150, 255);--JCFS-fontSizeLarge:1.25rem;--JCFS-brandHeaderContrastWeakActive:rgb(129, 129, 129);--JCFS-brandHeaderContrastWarmActive:rgb(186, 5, 23);--JCFS-squareToggleSlider:1.25rem;--JCFS-progressBarColorBackgroundFillSuccess:rgb(46, 132, 74);--JCFS-colorBackgroundButtonBrand:rgb(1, 118, 211);--JCFS-colorBackgroundWarningDark:rgb(254, 147, 57);--JCFS-colorTextIconUtility:rgb(174, 174, 174);--JCFS-colorBackgroundScrollbar:rgb(243, 243, 243);--JCFS-chatMessageColorBackgroundStatus:rgb(255, 255, 255);--JCFS-colorBackgroundTempModalTintAlt:rgba(255, 255, 255, 0.75);--JCFS-pageHeaderBorderRadius:0;--JCFS-palettePink95:rgb(254, 240, 243);--JCFS-welcomeMatColorIconComplete:rgb(201, 201, 201);--JCFS-palettePink90:rgb(253, 221, 227);--JCFS-paletteViolet50:rgb(186, 1, 255);--JCFS-paletteTeal30:rgb(2, 77, 76);--JCFS-colorTextIconInverseDisabled:rgba(255, 255, 255, 0.15);--JCFS-bannerGroupDefaultImage:;--JCFS-colorBorderBrand:rgb(27, 150, 255);--JCFS-colorBackgroundInfo:rgb(116, 116, 116);--JCFS-heightToggle:1.5rem;--JCFS-badgeColorBackgroundLightest:rgb(255, 255, 255);--JCFS-brandBandColorBackgroundSecondary:rgba(0, 0, 0, 0);--JCFS-shadowSoftPrimaryActive:none;--JCFS-colorTextIconDefaultHint:rgb(174, 174, 174);--JCFS-colorBackgroundChromeMobile:rgb(1, 118, 211);--JCFS-colorPickerSwatchSize:1.25rem;--JCFS-colorBackgroundPathIncomplete:rgb(243, 243, 243);--JCFS-paletteTeal40:rgb(5, 103, 100);--JCFS-colorTextToggleDisabled:rgb(201, 201, 201);--JCFS-paletteViolet40:rgb(150, 2, 199);--JCFS-colorTextLinkInverseHover:rgba(255, 255, 255, 0.75);--JCFS-palettePink80:rgb(253, 182, 197);--JCFS-zIndexModal:9000;--JCFS-pageHeaderIconSize:2.25rem;--JCFS-colorTextDestructiveHover:rgb(186, 5, 23);--JCFS-colorBorderCanvasElementSelection:rgb(26, 185, 255);--JCFS-colorBackgroundSuccess:rgb(69, 198, 90);--JCFS-carouselIndicatorColorBackground:rgb(255, 255, 255);--JCFS-sliderTrackHeight:4px;--JCFS-squareIconSmallContent:0.75rem;--JCFS-colorBackgroundInputDisabled:rgb(243, 243, 243);--JCFS-paletteTeal50:rgb(11, 130, 124);--JCFS-palettePink70:rgb(254, 138, 167);--JCFS-paletteViolet30:rgb(115, 3, 148);--JCFS-mqSmall:only screen and (max-width: 47.9375em);--JCFS-brandBandImageHeightLarge:18.75rem;--JCFS-carouselIndicatorWidth:1rem;--JCFS-colorTextLinkActive:rgb(3, 45, 96);--JCFS-squareIconXxSmallContent:.875rem;--JCFS-fontSizeXSmall:0.625rem;--JCFS-palettePink65:rgb(254, 114, 152);--JCFS-sliderColorBackgroundDisabled:rgb(243, 243, 243);--JCFS-colorContrastSecondary:rgb(255, 255, 255);--JCFS-welcomeMatColorBackgroundProgressBar:rgb(255, 255, 255);--JCFS-globalActionIconSize:1.5rem;--JCFS-paletteViolet20:rgb(72, 26, 84);--JCFS-fontSizeHeadingSmall:0.875rem;--JCFS-colorPickerRangeIndicatorSize:0.75rem;--JCFS-paletteOrange15:rgb(55, 30, 3);--JCFS-sliderHandleSize:1rem;--JCFS-tableBorderRadius:0;--JCFS-paletteTeal60:rgb(6, 165, 154);--JCFS-userDefaultAvatarSmall:url(/_slds/images/profile_avatar_96.png?cache=3c01f25f);--JCFS-buttonColorBackgroundPrimary:rgb(255, 255, 255);--JCFS-colorPickerInputCustomHexWidth:4.2rem;--JCFS-paletteOrange10:rgb(32, 22, 0);--JCFS-palettePink60:rgb(255, 83, 138);--JCFS-paletteTeal65:rgb(3, 180, 167);--JCFS-colorBackgroundRowSelected:rgb(243, 243, 243);--JCFS-colorBackgroundContextBarBrandAccent:rgb(13, 157, 218);--JCFS-fontFamilyMonospace:Consolas, Menlo, Monaco, Courier, monospace;--JCFS-cardFooterColorBorder:rgba(0, 0, 0, 0);--JCFS-palettePurple80:rgb(215, 191, 242);--JCFS-varSpacingHorizontalLarge:1.5rem;--JCFS-colorTextRequired:rgb(234, 0, 30);--JCFS-elevationShadow16:0 16px 16px 0 rgba(0, 0, 0, 0.16);--JCFS-paletteViolet10:rgb(46, 0, 57);--JCFS-shadowHardPrimary:none;--JCFS-paletteOrange20:rgb(62, 43, 2);--JCFS-paletteViolet15:rgb(61, 1, 87);--JCFS-radioButtonGroupLineHeightTouch:2.69rem;--JCFS-colorBackgroundBrandPrimary:rgb(1, 118, 211);--JCFS-paletteTeal70:rgb(1, 195, 179);--JCFS-colorBackgroundUtilityBarActive:rgb(27, 150, 255);--JCFS-zIndexSticky:100;--JCFS-colorBackgroundContextBarShadow:linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0, rgba(0, 0, 0, 0) 100%);--JCFS-paletteTeal80:rgb(4, 225, 203);--JCFS-palettePurple90:rgb(236, 225, 249);--JCFS-squareIconUtilityLarge:1.5rem;--JCFS-fontSize10:2rem;--JCFS-groupDefaultAvatarMedium:url(/_slds/images/group_avatar_160.png?cache=b8fe8e83);--JCFS-elevationShadow32:0 32px 32px 0 rgba(0, 0, 0, 0.16);--JCFS-paletteOrange30:rgb(95, 62, 2);--JCFS-colorBorderButtonInverseDisabled:rgba(255, 255, 255, 0.15);--JCFS-fontSize11:2.625rem;--JCFS-einsteinHeaderTextShadow:#cfe9fe;--JCFS-palettePurple95:rgb(246, 242, 251);--JCFS-squareTappableXxSmall:1.25rem;--JCFS-colorBackgroundDestructiveHover:rgb(142, 3, 15);--JCFS-fontSize9:1.75rem;--JCFS-colorBackgroundLight:rgb(255, 255, 255);--JCFS-fontSize8:1.5rem;--JCFS-paletteTeal90:rgb(172, 243, 228);--JCFS-shadowActive:0 0 2px #0176d3;--JCFS-fontSize1:0.625rem;--JCFS-paletteNeutral100:rgb(255, 255, 255);--JCFS-colorTextLink:rgb(1, 118, 211);--JCFS-pageHeaderTitleFontSize:1.125rem;--JCFS-fontSize3:0.8125rem;--JCFS-fontSize2:0.75rem;--JCFS-colorTextLinkInverseDisabled:rgba(255, 255, 255, 0.15);--JCFS-fontSize5:1rem;--JCFS-fontSize4:0.875rem;--JCFS-fontSize7:1.25rem;--JCFS-fontSize6:1.125rem;--JCFS-spacingNone:0;--JCFS-paletteOrange40:rgb(130, 81, 1);--JCFS-inputReadonlyFontWeight:400;--JCFS-palettePurple60:rgb(173, 123, 238);--JCFS-paletteTeal95:rgb(222, 249, 243);--JCFS-colorStrokeHeaderButton:rgb(174, 174, 174);--JCFS-typingIconDotColorBackgroundGray:rgb(201, 201, 201);--JCFS-palettePurple65:rgb(183, 141, 239);--JCFS-pageHeaderTitleFontWeight:400;--JCFS-colorBackgroundButtonIconFocus:rgb(243, 243, 243);--JCFS-groupDefaultAvatarSmall:url(/_slds/images/group_avatar_96.png?cache=d0659d12);--JCFS-colorBackgroundModalBrand:rgb(1, 68, 134);--JCFS-colorTextInverseActive:rgb(26, 185, 255);--JCFS-colorBackgroundHighlightSearch:rgb(255, 240, 63);--JCFS-paletteOrange50:rgb(169, 100, 4);--JCFS-colorBackgroundSuccessDark:rgb(46, 132, 74);--JCFS-shadowOverlay:0 -2px 4px rgba(0, 0, 0, 0.07);--JCFS-sizeXSmall:12rem;--JCFS-colorBackgroundDestructive:rgb(186, 5, 23);--JCFS-typingIconDotSize:.5rem;--JCFS-palettePurple70:rgb(194, 158, 241);--JCFS-colorBorderInfo:rgb(116, 116, 116);--JCFS-colorTextTabLabel:rgb(3, 45, 96);--JCFS-palettePink15:rgb(75, 6, 32);--JCFS-popoverWalkthroughColorBackgroundAlt:rgb(1, 118, 211);--JCFS-durationImmediately:0.05s;--JCFS-palettePink10:rgb(55, 1, 20);--JCFS-elevationInverseShadow16:0 -16px 16px 0 rgba(0, 0, 0, 0.16);--JCFS-salesforceSansLightWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Light.woff2);--JCFS-splitViewWidth:25rem;--JCFS-colorBorderIconInverseHint:rgba(255, 255, 255, 0.5);--JCFS-brandDisabled:rgb(201, 199, 197);--JCFS-paletteOrange60:rgb(221, 122, 1);--JCFS-palettePurple40:rgb(117, 38, 227);--JCFS-paletteOrange65:rgb(243, 131, 3);--JCFS-progressColorBackground:rgb(255, 255, 255);--JCFS-colorBorderContextBarThemeDefaultActive:rgb(243, 243, 243);--JCFS-avatarGroupColorBackgroundInverse:rgb(116, 116, 116);--JCFS-colorBackgroundAlt2:rgb(243, 243, 243);--JCFS-cardFontWeight:400;--JCFS-colorPickerSwatchShadow:inset 0 0 1px rgba(0,0,0,0.4);--JCFS-paletteOrange70:rgb(254, 147, 57);--JCFS-colorTextIconBrand:rgb(1, 118, 211);--JCFS-colorTextButtonDefault:rgb(1, 118, 211);--JCFS-palettePurple50:rgb(144, 80, 233);--JCFS-pathButtonWidthFixed:13rem;--JCFS-sizeLarge:25rem;--JCFS-userDefaultAvatarMedium:url(/_slds/images/profile_avatar_160.png?cache=bfba2c9a);--JCFS-colorBorderDestructive:rgb(234, 0, 30);--JCFS-colorTextWeak:rgb(116, 116, 116);--JCFS-fontSizeHeadingMedium:1.125rem;--JCFS-mqSingleColumnRecordLayout:(max-width: 599px);--JCFS-colorBackgroundInputSearch:rgba(0, 0, 0, 0.16);--JCFS-welcomeMatBackgroundColorInfo:rgb(207, 233, 254);--JCFS-colorBorderBrandPrimary:rgb(27, 150, 255);--JCFS-colorBackgroundInverse:rgb(0, 22, 57);--JCFS-maxWidthActionOverflowMenu:512px;--JCFS-paletteNeutral10:rgb(24, 24, 24);--JCFS-carouselColorBackground:rgb(255, 255, 255);--JCFS-colorTextLabel:rgb(116, 116, 116);--JCFS-colorBackgroundButtonSuccessActive:rgb(46, 132, 74);--JCFS-squareIconLarge:3.125rem;--JCFS-spinnerSizeXSmall:1rem;--JCFS-paletteOrange80:rgb(255, 186, 144);--JCFS-cardSpacingMargin:1rem;--JCFS-colorTextBrowserActive:rgba(0, 0, 0, 0.4);--JCFS-colorBackgroundButtonBrandHover:rgb(1, 68, 134);--JCFS-chatMessageColorBackgroundOutbound:rgb(1, 68, 134);--JCFS-colorTextIconDefaultActive:rgb(3, 45, 96);--JCFS-palettePurple20:rgb(64, 16, 117);--JCFS-colorTextIconDefaultHover:rgb(1, 118, 211);--JCFS-colorTextLinkPrimary:rgb(1, 118, 211);--JCFS-fontSizeTextXSmall:0.75rem;--JCFS-colorBackgroundToast:rgb(116, 116, 116);--JCFS-fontSizeXxLarge:2rem;--JCFS-heightSalesPath:2rem;--JCFS-colorTextIconDefaultHintBorderless:rgb(243, 243, 243);--JCFS-paletteOrange95:rgb(255, 241, 234);--JCFS-colorForegroundPrimary:rgb(255, 255, 255);--JCFS-paletteOrange90:rgb(254, 223, 208);--JCFS-colorBackgroundRowNew:rgb(205, 239, 196);--JCFS-fontSizeTextLarge:1.125rem;--JCFS-paletteGreen15:rgb(12, 41, 18);--JCFS-colorBackgroundShade:rgb(243, 243, 243);--JCFS-paletteGreen10:rgb(7, 27, 18);--JCFS-palettePurple30:rgb(90, 27, 169);--JCFS-varSpacingXxxSmall:0.125rem;--JCFS-brandLightActive:rgb(227, 229, 237);--JCFS-welcomeMatTextColorInfo:rgb(3, 45, 96);--JCFS-colorBackgroundIconWaffle:rgb(116, 116, 116);--JCFS-colorBackgroundContextBarItemHover:rgb(255, 255, 255);--JCFS-fontSizeXLargeA:1.57rem;--JCFS-colorBackgroundPathCompleteHover:rgb(46, 132, 74);--JCFS-palettePink50:rgb(227, 6, 106);--JCFS-paletteViolet90:rgb(242, 222, 254);--JCFS-paletteGreen20:rgb(28, 51, 38);--JCFS-paletteViolet95:rgb(249, 240, 255);--JCFS-colorBorderContextBarThemeDefaultHover:rgb(50, 29, 113);--JCFS-squareIconMedium:2.375rem;--JCFS-textTransform:none;--JCFS-colorBackgroundBrandPrimaryHover:rgb(1, 68, 134);--JCFS-colorTextSuccess:rgb(46, 132, 74);--JCFS-carouselIndicatorColorBackgroundFocus:rgb(1, 68, 134);--JCFS-colorBackgroundChromeDesktop:rgb(255, 255, 255);--JCFS-borderStrokeWidthThick:2px;--JCFS-colorBackgroundReminder:rgb(243, 243, 243);--JCFS-palettePurple15:rgb(48, 11, 96);--JCFS-colorTextToast:rgb(243, 243, 243);--JCFS-paletteViolet80:rgb(229, 185, 254);--JCFS-colorBackgroundAlt:rgb(255, 255, 255);--JCFS-palettePink40:rgb(182, 5, 84);--JCFS-paletteGreen30:rgb(25, 78, 49);--JCFS-palettePurple10:rgb(36, 6, 67);--JCFS-elevationInverseShadow32:0 -32px 32px 0 rgba(0, 0, 0, 0.16);--JCFS-colorBorderCustomer:rgb(254, 147, 57);--JCFS-tableColorBackgroundStripes:rgb(243, 243, 243);--JCFS-varSpacingVerticalSmall:0.75rem;--JCFS-palettePink30:rgb(138, 3, 62);--JCFS-paletteViolet70:rgb(216, 146, 254);--JCFS-colorBorderContextBarInverseItem:rgba(255, 255, 255, 0.2);--JCFS-utilityBarColorBackgroundNotificationBadge:rgb(254, 92, 76);--JCFS-colorTextTabLabelDisabled:rgb(243, 243, 243);--JCFS-heightInput:1.875rem;--JCFS-squareTappable:2.75rem;--JCFS-fontSizeSmall:0.875rem;--JCFS-paletteGreen40:rgb(57, 101, 71);--JCFS-tableColorBackgroundHeaderFocus:rgb(255, 255, 255);--JCFS-salesforceSansRegularWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Regular.woff2);--JCFS-varSpacingHorizontalXxLarge:3rem;--JCFS-paletteViolet65:rgb(209, 125, 254);--JCFS-progressBarColorBackgroundFill:rgb(26, 185, 255);--JCFS-colorBorderSeparator:rgb(243, 243, 243);--JCFS-paletteGreen50:rgb(46, 132, 74);--JCFS-brandHeaderIconDisabled:rgba(145, 145, 145, 0.25);--JCFS-palettePink20:rgb(97, 2, 42);--JCFS-splitViewColorBackground:rgb(243, 243, 243);--JCFS-colorBackgroundSecondary:rgb(243, 243, 243);--JCFS-colorTextLinkFocus:rgb(1, 68, 134);--JCFS-paletteViolet60:rgb(203, 101, 255);--LID-paletteIndigo10:rgb(32, 6, 71);--LID-popoverWalkthroughHeaderImage:;--LID-zIndexDialog:6000;--LID-colorPickerSelectorWidth:14rem;--LID-nubbinSizeDefault:1rem;--LID-paletteCloudBlue40:rgb(5, 98, 138);--LID-colorBackgroundContextBarInverseItemHover:rgba(255, 255, 255, 0.2);--LID-dropZoneSlotHeight:0.25rem;--LID-colorTextTabLabelSelected:rgb(1, 118, 211);--LID-colorStrokeBrandActive:rgb(3, 45, 96);--LID-paletteIndigo15:rgb(31, 9, 116);--LID-cardBodyPadding:0 1rem;--LID-varSpacingHorizontalSmall:0.75rem;--LID-tableColorBackgroundHeaderResizableHandle:rgb(174, 174, 174);--LID-colorBackgroundPathActiveHover:rgb(3, 45, 96);--LID-brandPrimaryTransparent:rgba(21, 137, 238, 0.1);--LID-brandPrimaryTransparent40:rgba(21, 137, 238, 0.4);--LID-colorBorderButtonDefault:rgb(201, 201, 201);--LID-paletteIndigo20:rgb(50, 29, 113);--LID-popoverColorText:rgb(201, 201, 201);--LID-paletteCloudBlue30:rgb(8, 73, 104);--LID-colorTextButtonDefaultActive:rgb(1, 118, 211);--LID-colorPickerSliderHeight:1.5rem;--LID-colorTextIconInverse:rgb(255, 255, 255);--LID-heightFooter:3.75rem;--LID-splitViewColorBorder:rgb(201, 201, 201);--LID-colorBorderRowSelectedHover:rgb(27, 150, 255);--LID-fontSizeTextXxSmall:.625rem;--LID-lineHeightHeading:1.25;--LID-cardHeaderMargin:0 0 0.75rem;--LID-paletteIndigo30:rgb(47, 44, 183);--LID-mqMediumLandscape:only screen and (min-width: 48em) and (min-aspect-ratio: 4/3);--LID-brandBandImageHeightMedium:12.5rem;--LID-illustrationColorSecondary:rgb(207, 233, 254);--LID-zIndexDefault:1;--LID-colorBorderSelectionActive:rgb(243, 243, 243);--LID-paletteCloudBlue20:rgb(2, 50, 72);--LID-utilityBarColorBackgroundNotificationFocus:rgb(201, 201, 201);--LID-colorTextIconDefaultDisabled:rgb(201, 201, 201);--LID-colorTextBrand:rgb(27, 150, 255);--LID-durationToastMedium:9.6s;--LID-colorBackgroundButtonIconActive:rgb(243, 243, 243);--LID-brandHeaderContrastWeak:rgb(145, 145, 145);--LID-colorBackgroundNotificationNew:rgb(243, 243, 243);--LID-brandHeaderContrastInverseActive:rgb(238, 238, 238);--LID-colorBackgroundInputCheckboxSelected:rgb(27, 150, 255);--LID-progressColorBorder:rgb(255, 255, 255);--LID-spacingXxxSmall:0.125rem;--LID-paletteIndigo40:rgb(58, 73, 218);--LID-colorBackgroundProgressRingContent:rgb(255, 255, 255);--LID-lineHeightButtonSmall:1.75rem;--LID-salesforceSansBoldItalicWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-BoldItalic.woff);--LID-brandBackgroundDarkTransparent:rgba(221, 219, 218, 0);--LID-colorPickerThumbWidth:0.375rem;--LID-paletteCloudBlue10:rgb(0, 26, 40);--LID-brandHeaderIconActive:rgb(129, 129, 129);--LID-widthStageLeftCollapsed:4rem;--LID-paletteCloudBlue15:rgb(10, 38, 54);--LID-colorBorderOffline:rgb(68, 68, 68);--LID-colorBackgroundUtilityBarHover:rgb(243, 243, 243);--LID-sliderHandleColorBackgroundHover:rgb(1, 118, 211);--LID-colorTextIconInverseHint:rgba(255, 255, 255, 0.5);--LID-sizeMedium:20rem;--LID-brandPrimaryTransparent10:rgba(21, 137, 238, 0.1);--LID-colorBorderIconInverseHintHover:rgba(255, 255, 255, 0.75);--LID-colorTextDefault:rgb(3, 45, 96);--LID-paletteIndigo50:rgb(88, 103, 232);--LID-progressBarHeight:0.125rem;--LID-colorBackgroundWarning:#ffb75d;--LID-colorBackgroundBrandPrimaryActive:rgb(3, 45, 96);--LID-paletteBlue90:rgb(216, 230, 254);--LID-brandHeaderContrastCool:rgb(1, 68, 134);--LID-paletteCloudBlue80:rgb(144, 208, 254);--LID-paletteBlue95:rgb(238, 244, 255);--LID-colorBorderSelectionHover:rgb(27, 150, 255);--LID-zIndexPopup:5000;--LID-borderRadiusLarge:0.5rem;--LID-colorTextIconInverseHintHover:rgba(255, 255, 255, 0.75);--LID-popoverBrandBorderWidth:0.25rem;--LID-fontSizeHeadingXLarge:1.75rem;--LID-typingIconDotColorBackgroundGrayDark:rgb(201, 201, 201);--LID-paletteIndigo65:rgb(142, 155, 239);--LID-varSpacingLarge:1.5rem;--LID-pageHeaderSpacingMargin:0;--LID-fontSizeTextXLarge:1.25rem;--LID-paletteIndigo60:rgb(127, 140, 237);--LID-paletteCloudBlue70:rgb(26, 185, 255);--LID-welcomeMatColorActionShadow:rgba(0, 0, 0, 0.05);--LID-colorTextBrowser:rgb(255, 255, 255);--LID-welcomeMatSpacingInfo:7.75rem;--LID-mqLarge:only screen and (min-width: 64.0625em);--LID-paletteIndigo70:rgb(158, 169, 241);--LID-squareTappableSmall:2rem;--LID-colorTextActionLabel:rgb(116, 116, 116);--LID-paletteCloudBlue60:rgb(13, 157, 218);--LID-paletteBlue70:rgb(120, 176, 253);--LID-colorBorderTabActive:rgb(255, 255, 255);--LID-paletteCloudBlue65:rgb(8, 171, 237);--LID-globalnavigationItemHeightAccentFocus:4px;--LID-colorBorderDestructiveHover:rgb(186, 5, 23);--LID-buttonLineHeightTouch:2.65rem;--LID-colorTextCustomer:rgb(254, 147, 57);--LID-squareIconUtilitySmall:1rem;--LID-colorBackgroundModalButtonActive:rgba(0, 0, 0, 0.16);--LID-colorTextBrandPrimary:rgb(255, 255, 255);--LID-squareIconXSmallBoundary:1.25rem;--LID-widthToggle:3rem;--LID-paletteIndigo80:rgb(190, 199, 246);--LID-welcomeMatMinHeight:25rem;--LID-zIndexDocked:4;--LID-squareIconMediumBoundaryAlt:2.25rem;--LID-colorBorderSelection:rgb(1, 118, 211);--LID-paletteBlue80:rgb(170, 203, 255);--LID-paletteCloudBlue50:rgb(16, 124, 173);--LID-brandHeaderContrastActive:rgb(80, 80, 80);--LID-formLabelFontSize:0.75rem;--LID-colorTextActionLabelActive:rgb(3, 45, 96);--LID-colorBackgroundBackdropTint:rgb(243, 243, 243);--LID-durationSlowly:0.4s;--LID-colorBackgroundRowHover:rgb(243, 243, 243);--LID-popoverWalkthroughAltNubbinColorBackground:rgb(1, 118, 211);--LID-spinnerSizeSmall:1.25rem;--LID-sliderTrackColorBackgroundFill:rgb(27, 150, 255);--LID-welcomeMatWidth:52.0625rem;--LID-paletteIndigo95:rgb(241, 243, 251);--LID-paletteIndigo90:rgb(224, 229, 248);--LID-filesZIndexHover:5;--LID-colorTextPill:rgb(1, 118, 211);--LID-varSpacingSmall:0.75rem;--LID-heightDockedBar:2.5rem;--LID-paletteBlue50:rgb(1, 118, 211);--LID-colorTextTabLabelHover:rgb(1, 68, 134);--LID-fontSizeHeadingXSmall:0.75rem;--LID-colorStrokeDisabled:rgb(243, 243, 243);--LID-widthPathBorderCurrent:0.125rem;--LID-colorBackgroundButtonDefaultHover:rgb(243, 243, 243);--LID-varSpacingVerticalXxSmall:0.25rem;--LID-colorTextButtonDefaultHover:rgb(1, 118, 211);--LID-durationPromptly:0.2s;--LID-colorBorderPathCurrent:rgb(1, 68, 134);--LID-colorBackgroundButtonDefaultActive:rgb(243, 243, 243);--LID-colorTextStageLeft:rgb(243, 243, 243);--LID-colorBorderHint:rgb(3, 45, 96);--LID-colorTextPrimary:rgb(3, 45, 96);--LID-brandBandColorBackgroundSecondaryTransparent:rgba(0, 0, 0, 0);--LID-paletteBlue60:rgb(27, 150, 255);--LID-cardColorBackground:rgb(255, 255, 255);--LID-brandHeaderIcon:rgb(145, 145, 145);--LID-paletteBlue65:rgb(87, 163, 253);--LID-spacingLarge:1.5rem;--LID-pageHeaderColorBorder:rgba(0, 0, 0, 0);--LID-cardFooterMargin:0.75rem;--LID-fontSizeTextSmall:0.8125rem;--LID-colorTextLinkInverseActive:rgba(255, 255, 255, 0.5);--LID-durationToastShort:4.8s;--LID-lineHeightButton:1.875rem;--LID-panelDockedLeftShadow:1px 0 3px rgba(0,0,0,0.25);--LID-panelDockedRightShadow:-1px 0 3px 0 rgba(0,0,0,0.25);--LID-colorTextLinkPrimaryHover:rgb(1, 118, 211);--LID-shadowButton:0 1px 1px 0 rgba(0, 0, 0, 0.05);--LID-welcomeMatMaxHeight:37.5rem;--LID-colorBorderToggleChecked:rgb(255, 255, 255);--LID-shadowHeader:0 2px 4px rgba(0, 0, 0, 0.07);--LID-sizeXxLarge:60rem;--LID-colorBackgroundDockedPanelHeader:rgb(255, 255, 255);--LID-paletteBlue30:rgb(1, 68, 134);--LID-lineHeightSalespath:1.5rem;--LID-shadowDrag:0 2px 4px 0 rgba(0, 0, 0, 0.40);--LID-colorBackgroundPathExpanded:rgb(255, 255, 255);--LID-colorBackground:rgb(243, 243, 243);--LID-colorBackgroundInput:rgb(255, 255, 255);--LID-sizeSmall:15rem;--LID-userDefaultAvatar:url(/_slds/images/profile_avatar_200.png?cache=7bdcafae);--LID-colorTextButtonInverse:rgb(243, 243, 243);--LID-colorBackgroundInputCheckboxDisabled:rgb(201, 201, 201);--LID-tableColorTextHeader:rgb(68, 68, 68);--LID-paletteBlue40:rgb(11, 92, 171);--LID-cardColorBorder:rgb(201, 201, 201);--LID-squareIconUtilityMedium:1.25rem;--LID-colorBackgroundButtonSuccessHover:rgb(46, 132, 74);--LID-colorBorderButtonBrandDisabled:rgba(0, 0, 0, 0);--LID-fontSizeHeadingXxSmall:0.625rem;--LID-colorBackgroundButtonInverseActive:rgba(0, 0, 0, 0.24);--LID-illustrationEmptyStateEvents:url(/_slds/images/illustrations/empty-state-events.svg?cache=985b247a);--LID-colorBackgroundToggle:rgb(174, 174, 174);--LID-colorBackgroundStencil:rgb(243, 243, 243);--LID-welcomeMatCheckSize:0.625rem;--LID-colorTextButtonBrandHover:rgb(255, 255, 255);--LID-buttonColorBackgroundSecondary:rgba(255, 255, 255, 0.8);--LID-paletteBlue10:rgb(0, 22, 57);--LID-varSpacingVerticalLarge:1.5rem;--LID-colorBorderReminder:rgb(243, 243, 243);--LID-colorBrandDark:rgb(1, 118, 211);--LID-paletteBlue15:rgb(3, 35, 77);--LID-colorBorderBrandPrimaryFocus:rgb(1, 118, 211);--LID-salesforceSansItalicWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Italic.woff);--LID-colorBorderBrandPrimaryActive:rgb(3, 45, 96);--LID-datepickerColorTextDayAdjacentMonth:rgb(116, 116, 116);--LID-colorBorderErrorAlt:rgb(254, 143, 125);--LID-shadowReminder:0 2px 3px 0 rgba(0, 0, 0, 0.20);--LID-brandTextLinkActive:rgb(1, 68, 134);--LID-pageHeaderColorBackground:rgb(243, 243, 243);--LID-salesforceSansBoldWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Bold.woff2);--LID-fontSizeHeadingLarge:1.5rem;--LID-colorBackgroundStencilAlt:rgb(243, 243, 243);--LID-paletteBlue20:rgb(3, 45, 96);--LID-elevationInverseShadow3Below:0 -3px 3px 0 rgba(0, 0, 0, 0.16) inset;--LID-varSpacingHorizontalXxSmall:0.25rem;--LID-colorBorderSeparatorAlt:rgb(201, 201, 201);--LID-colorPickerRangeHeight:5rem;--LID-colorBackgroundButtonIcon:rgba(0, 0, 0, 0);--LID-paletteTeal15:rgb(7, 40, 37);--LID-buttonIconColorBorderPrimary:rgb(255, 255, 255);--LID-brandAccessibleActive:rgb(1, 68, 134);--LID-paletteYellow80:rgb(252, 192, 3);--LID-zIndexSpinner:9050;--LID-colorBackgroundContextTabBarItem:rgb(255, 255, 255);--LID-fontWeightBold:700;--LID-paletteTeal10:rgb(7, 27, 18);--LID-colorBackgroundContextBarItemActive:rgb(255, 255, 255);--LID-shadowFocusInset:0 0 2px 2px #1b96ff inset;--LID-colorBackgroundAltInverse:rgb(3, 45, 96);--LID-colorBackgroundPathIncompleteHover:rgb(201, 201, 201);--LID-squareIconMediumContent:1rem;--LID-colorBackgroundContextBar:rgb(255, 255, 255);--LID-colorTextInverseHover:rgb(174, 174, 174);--LID-colorBackgroundInputActive:rgb(255, 255, 255);--LID-brandContrast:rgb(26, 27, 30);--LID-colorTextSecondary:rgb(116, 116, 116);--LID-fillHeaderButtonHover:rgb(1, 68, 134);--LID-fontFamilyText:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--LID-welcomeMatCompleteIconSize:1.25rem;--LID-varSpacingXxLarge:3rem;--LID-paletteYellow95:rgb(251, 243, 224);--LID-paletteYellow90:rgb(249, 227, 182);--LID-brandBackgroundPrimary:#fafaf9;--LID-paletteTeal20:rgb(2, 52, 52);--LID-progressRingWidth:0.1875rem;--LID-paletteYellow65:rgb(215, 147, 4);--LID-paletteYellow60:rgb(202, 133, 1);--LID-colorBorderInputCheckboxSelectedCheckmark:rgb(255, 255, 255);--LID-colorBorderCanvasElementSelectionHover:rgb(1, 68, 134);--LID-borderRadiusSmall:0.125rem;--LID-progressBarColorBackground:rgb(201, 201, 201);--LID-durationInstantly:0s;--LID-colorBackgroundToastSuccess:rgb(46, 132, 74);--LID-tabsFontWeight:400;--LID-colorBackgroundPost:rgb(243, 243, 243);--LID-colorTextPlaceholderInverse:rgb(243, 243, 243);--LID-colorTextInputIcon:rgb(174, 174, 174);--LID-sliderHandleShadow:rgba(0, 0, 0, 0.16) 0 2px 3px;--LID-paletteYellow70:rgb(228, 162, 1);--LID-fontWeightLight:300;--LID-colorTextError:#c23934;--LID-varSpacingXxSmall:0.25rem;--LID-colorBorderInput:rgb(201, 201, 201);--LID-brandAccessible:rgb(1, 118, 211);--LID-pageColorBackgroundPrimary:rgb(255, 255, 255);--LID-cardShadow:none;--LID-lineClamp:3;--LID-welcomeMatWidthProgressBar:12.5rem;--LID-progressColorBackgroundShade:rgb(243, 243, 243);--LID-globalActionFillHover:rgb(1, 68, 134);--LID-illustrationEmptyStateAssistant:url(/_slds/images/illustrations/empty-state-assistant.svg?cache=127a789e);--LID-varSpacingHorizontalXSmall:0.5rem;--LID-colorPickerInputCustomHexFontSize:0.75rem;--LID-varSpacingMedium:1rem;--LID-colorBackgroundShadeDark:rgb(201, 201, 201);--LID-colorPickerSwatchesWidth:13.3rem;--LID-squareIconLargeBoundaryAlt:5rem;--LID-colorBorderInputDisabled:rgb(201, 201, 201);--LID-paletteYellow40:rgb(140, 75, 2);--LID-cardWrapperSpacing:1rem;--LID-colorBackgroundNotificationBadgeActive:rgb(3, 45, 96);--LID-colorBackgroundHighlight:rgb(250, 255, 189);--LID-colorBackgroundRowActive:rgb(243, 243, 243);--LID-componentSpacingMargin:0;--LID-colorBorderButtonFocusInverse:rgb(243, 243, 243);--LID-shadowButtonFocus:0 0 3px #0176d3;--LID-varSpacingVerticalXLarge:2rem;--LID-tableColorBackgroundHeaderHover:rgb(243, 243, 243);--LID-colorBackgroundDockedPanel:rgb(255, 255, 255);--LID-colorTextTertiary:rgb(116, 116, 116);--LID-varSpacingVerticalXxLarge:3rem;--LID-paletteYellow50:rgb(168, 100, 3);--LID-brandContrastActive:rgb(13, 14, 18);--LID-squareIconLargeContent:2rem;--LID-colorPickerSliderThumbColorBackground:rgb(243, 243, 243);--LID-inputStaticFontSize:0.8125rem;--LID-borderWidthThin:1px;--LID-fontWeightRegular:400;--LID-colorBackgroundButtonSuccess:rgb(69, 198, 90);--LID-splitViewColorBackgroundRowHover:rgb(255, 255, 255);--LID-paletteYellow20:rgb(79, 33, 0);--LID-bannerUserDefaultImage:;--LID-elevation8:8;--LID-brandDark:rgb(1, 118, 211);--LID-colorBackgroundPathCurrentHover:rgb(255, 255, 255);--LID-elevation0:0;--LID-elevation2:2;--LID-pageHeaderJoinedColorBorder:rgb(201, 201, 201);--LID-elevation4:4;--LID-durationPaused:3.2s;--LID-colorBrand:rgb(27, 150, 255);--LID-colorBackgroundPathComplete:#4bca81;--LID-progressColorBorderHover:rgb(1, 118, 211);--LID-spacingXxSmall:0.25rem;--LID-tableCellSpacing:0.5rem;--LID-colorBorderContextBarThemeDefault:rgb(13, 157, 218);--LID-colorBackgroundAnchor:rgb(243, 243, 243);--LID-paletteYellow30:rgb(111, 52, 0);--LID-shadowButtonFocusInverse:0 0 3px #f3f3f3;--LID-welcomeMatFontSizeInfoTitle:2.625rem;--LID-colorBorderLinkFocusInverse:rgb(243, 243, 243);--LID-borderRadiusCircle:50%;--LID-buttonColorBorderSecondary:rgba(255, 255, 255, 0.8);--LID-colorTextSuccessInverse:#4bca81;--LID-varSpacingXLarge:2rem;--LID-sizeXLarge:40rem;--LID-varSpacingHorizontalXxxSmall:0.125rem;--LID-elevation3Inset:-3;--LID-lineHeightTab:2.5rem;--LID-colorBackgroundDestructiveActive:#870500;--LID-colorTextLinkPrimaryActive:rgb(3, 45, 96);--LID-colorBackgroundPageHeader:rgb(255, 255, 255);--LID-colorBackgroundPill:rgb(255, 255, 255);--LID-fillBrandHover:rgb(1, 68, 134);--LID-colorBorderContextBarItem:rgba(0, 0, 0, 0.2);--LID-borderStrokeWidthThin:1px;--LID-progressColorBorderShade:rgb(243, 243, 243);--LID-heightHeader:2.75rem;--LID-shadowInlineEdit:0 2px 4px 4px rgba(0, 0, 0, 0.16);--LID-colorBackgroundNotificationBadgeHover:rgb(1, 68, 134);--LID-borderRadiusPill:15rem;--LID-colorTextButtonInverseDisabled:rgba(255, 255, 255, 0.5);--LID-sizeXxxSmall:3rem;--LID-colorBackgroundSuccessDarker:rgb(25, 78, 49);--LID-colorBackgroundToggleHover:rgb(147, 147, 147);--LID-paletteYellow15:rgb(46, 34, 4);--LID-paletteYellow10:rgb(40, 18, 2);--LID-cardSpacingSmall:0.75rem;--LID-illustrationEmptyStateTasks:url(/_slds/images/illustrations/empty-state-tasks.svg?cache=dc5e5e5b);--LID-brandBandScrimHeight:3.125rem;--LID-popoverWalkthroughColorBackground:rgb(0, 22, 57);--LID-colorBorderErrorDark:rgb(254, 143, 125);--LID-heightTappableSmall:2rem;--LID-colorBackgroundButtonBrandDisabled:rgb(243, 243, 243);--LID-colorBorderPrimary:rgb(201, 201, 201);--LID-colorGray1:rgb(255, 255, 255);--LID-fontSizeXLarge:1.25rem;--LID-varSquareIconMediumBoundary:2rem;--LID-colorGray5:rgb(221, 219, 218);--LID-colorGray4:rgb(236, 235, 234);--LID-colorGray3:rgb(243, 242, 242);--LID-colorGray2:rgb(250, 250, 249);--LID-opacity8:0.8;--LID-salesforceSansBoldItalicWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-BoldItalic.woff2);--LID-opacity5:0.5;--LID-squareIconGlobalIdentityIcon:1.25rem;--LID-colorBackgroundBrowser:rgb(116, 116, 116);--LID-colorTextIconInverseActive:rgb(255, 255, 255);--LID-shadowDocked:0 -2px 2px 0 rgba(0, 0, 0, 0.16);--LID-colorBackgroundInputError:rgb(253, 221, 227);--LID-colorGray9:rgb(112, 110, 107);--LID-colorGray8:rgb(150, 148, 146);--LID-colorGray7:rgb(176, 173, 171);--LID-colorGray6:rgb(201, 199, 197);--LID-colorTextLinkInverse:rgb(255, 255, 255);--LID-squareIconSmallBoundary:1.5rem;--LID-varSpacingHorizontalXLarge:2rem;--LID-colorBackgroundDark:rgb(243, 243, 243);--LID-colorTextWarningAlt:rgb(140, 75, 2);--LID-elevationInverseShadow2:0 -2px 2px 0 rgba(0, 0, 0, 0.16);--LID-elevationInverseShadow0:none;--LID-colorStrokeBrand:rgb(1, 118, 211);--LID-colorBackgroundToggleActive:rgb(1, 68, 134);--LID-colorBorderContextBarDivider:rgba(255, 255, 255, 0.2);--LID-zIndexToast:10000;--LID-colorBackgroundContextBarActionHighlight:rgba(255, 255, 255, 0.2);--LID-colorBackgroundBrandPrimaryFocus:rgb(1, 68, 134);--LID-buttonColorBackgroundBrandPrimary:rgb(1, 118, 211);--LID-brandHeaderContrastWarm:rgb(186, 5, 23);--LID-buttonColorTextPrimary:rgb(255, 255, 255);--LID-colorBrandDarker:rgb(1, 68, 134);--LID-colorBorderPathCurrentHover:rgb(3, 45, 96);--LID-colorTextButtonDefaultDisabled:rgb(201, 201, 201);--LID-colorBackgroundPathLost:rgb(234, 0, 30);--LID-einsteinHeaderBackground:url(/_slds/images/einstein-headers/einstein-header-background.svg?cache=ff7fa2ff);--LID-brandTextLink:rgb(1, 118, 211);--LID-sliderTrackColorBackground:rgb(243, 243, 243);--LID-colorContrastPrimary:rgb(243, 243, 243);--LID-groupDefaultAvatar:url(/_slds/images/group_avatar_200.png?cache=a0044dae);--LID-templateProfileGutters:0;--LID-sizeXxSmall:6rem;--LID-colorBackgroundPayload:rgb(243, 243, 243);--LID-paletteCloudBlue90:rgb(207, 233, 254);--LID-colorBackgroundPathActive:rgb(1, 68, 134);--LID-colorTextDestructive:rgb(234, 0, 30);--LID-squareIconLargeBoundary:3rem;--LID-colorBorderWarning:rgb(254, 147, 57);--LID-shadowSoftPrimaryHover:none;--LID-paletteCloudBlue95:rgb(234, 245, 254);--LID-spacingSmall:0.75rem;--LID-colorBackgroundErrorDark:rgb(186, 5, 23);--LID-brandHeaderContrastWeakDisabled:rgba(166, 166, 166, 0.25);--LID-squareIconMediumContentAlt:0.875rem;--LID-colorBackgroundButtonInverse:rgba(0, 0, 0, 0);--LID-brandHeader:rgb(255, 255, 255);--LID-lineHeightText:1.5;--LID-widthStageLeftExpanded:15rem;--LID-colorBackgroundError:rgb(254, 92, 76);--LID-colorTextButtonBrandActive:rgb(255, 255, 255);--LID-fontFamily:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--LID-mqMedium:only screen and (min-width: 48em);--LID-brandDarkActive:rgb(37, 48, 69);--LID-colorBackgroundPathStepActionActive:rgb(0, 22, 57);--LID-neutrafaceDisplayWoff2:url(/_slds/fonts/NeutrafaceDisplay.woff2?cache=2.9.0);--LID-spacingMedium:1rem;--LID-colorTextModal:rgb(255, 255, 255);--LID-spinnerSizeLarge:2.75rem;--LID-carouselIndicatorColorBackgroundHover:rgb(243, 243, 243);--LID-shadowActionOverflowFooter:0 -2px 4px #f3f3f3;--LID-popoverWalkthroughHeaderColorBackground:rgb(3, 45, 96);--LID-colorBackgroundPathWon:rgb(46, 132, 74);--LID-lineHeightToggle:1.3rem;--LID-neutrafaceDisplayWoff:url(/_slds/fonts/NeutrafaceDisplay.woff?cache=2.9.0);--LID-cardFooterPadding:0 1rem 0.75rem;--LID-sliderHandleColorBackground:rgb(27, 150, 255);--LID-colorBackgroundErrorAlt:rgb(254, 143, 125);--LID-colorBackgroundIndicatorDot:rgb(3, 45, 96);--LID-chatMessageColorBackgroundInbound:rgb(243, 243, 243);--LID-elevationShadow0:none;--LID-heightPill:1.625rem;--LID-elevationShadow4:0 4px 4px 0 rgba(0, 0, 0, 0.16);--LID-elevationShadow2:0 2px 2px 0 rgba(0, 0, 0, 0.16);--LID-elevationShadow8:0 8px 8px 0 rgba(0, 0, 0, 0.16);--LID-varFontSize8:1.5rem;--LID-colorBackgroundButtonDefaultDisabled:rgb(255, 255, 255);--LID-varFontSize7:1.25rem;--LID-elevationInverseShadow8:0 -8px 8px 0 rgba(0, 0, 0, 0.16);--LID-varFontSize9:1.75rem;--LID-brandBandColorBackgroundPrimary:rgba(0, 0, 0, 0);--LID-colorTextButtonBrand:rgb(255, 255, 255);--LID-elevationInverseShadow4:0 -4px 4px 0 rgba(0, 0, 0, 0.16);--LID-colorBackgroundToggleActiveHover:rgb(1, 68, 134);--LID-welcomeMatBackgroundImageInfo:url(/_slds/images/welcome-mat/bg-info@2x.png?cache=ddb4e82f);--LID-varFontSize2:0.75rem;--LID-varFontSize1:0.625rem;--LID-varFontSize4:0.875rem;--LID-pageHeaderSpacingRow:0.75rem 1rem;--LID-varFontSize3:0.8125rem;--LID-varFontSize6:1.125rem;--LID-varFontSize5:1rem;--LID-varSpacingVerticalMedium:1rem;--LID-pageHeaderSpacingPadding:1rem;--LID-colorTextModalButton:rgb(116, 116, 116);--LID-colorBackgroundPrimary:rgb(255, 255, 255);--LID-colorTextInputFocusInverse:rgb(3, 45, 96);--LID-colorBackgroundScrollbarTrack:rgb(201, 201, 201);--LID-paletteNeutral70:rgb(174, 174, 174);--LID-brandPrimaryActive:rgb(1, 118, 211);--LID-popoverWalkthroughAltImage:;--LID-nubbinTriangleOffset:-0.1875rem;--LID-salesforceSansLightWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Light.woff);--LID-colorBorderSuccessDark:rgb(46, 132, 74);--LID-mqHighRes:only screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2),screen and (min-resolution: 192dpi),screen and (min-resolution: 2dppx);--LID-brandBandColorBackgroundPrimaryTransparent:rgba(0, 0, 0, 0);--LID-colorBackgroundContextBarInverseItemActive:rgba(255, 255, 255, 0.4);--LID-colorTextButtonDefaultHint:rgb(174, 174, 174);--LID-salesforceSansItalicWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Italic.woff2);--LID-paletteGreen60:rgb(59, 167, 85);--LID-heightContextBar:2.5rem;--LID-colorBackgroundOrgSwitcherArrow:rgb(0, 22, 57);--LID-paletteGreen65:rgb(65, 182, 88);--LID-brandHeaderContrastInverse:rgb(255, 255, 255);--LID-notificationColorBackgroundInverse:rgb(116, 116, 116);--LID-colorBackgroundButtonIconDisabled:rgb(255, 255, 255);--LID-paletteNeutral60:rgb(147, 147, 147);--LID-colorBorderContextBarThemeDefaultAlt:rgb(243, 243, 243);--LID-fillBrand:rgb(1, 118, 211);--LID-colorBackgroundInputCheckbox:rgb(255, 255, 255);--LID-colorBorder:rgb(201, 201, 201);--LID-squareIconSmall:1rem;--LID-varSpacingHorizontalMedium:1rem;--LID-illustrationColorPrimary:rgb(144, 208, 254);--LID-varSpacingVerticalXSmall:0.5rem;--LID-colorTextPlaceholder:rgb(116, 116, 116);--LID-einsteinHeaderBackgroundColor:rgb(144, 208, 254);--LID-paletteGreen70:rgb(69, 198, 90);--LID-brandHeaderContrast:rgb(94, 94, 94);--LID-inputStaticColor:rgb(24, 24, 24);--LID-paletteNeutral90:rgb(229, 229, 229);--LID-spacingXxLarge:3rem;--LID-paletteGreen90:rgb(205, 239, 196);--LID-shadowDropDown:0 2px 3px 0 rgba(0, 0, 0, 0.16);--LID-paletteNeutral95:rgb(243, 243, 243);--LID-colorBackgroundModal:rgb(255, 255, 255);--LID-elevationShadow3Below:0 3px 3px 0 rgba(0, 0, 0, 0.16) inset;--LID-paletteRed80:rgb(254, 184, 171);--LID-sliderTrackWidth:100%;--LID-elevation32:32;--LID-globalHeaderColorBackground:rgb(255, 255, 255);--LID-spacingXLarge:2rem;--LID-paletteGreen80:rgb(145, 219, 139);--LID-colorBorderInputActive:rgb(27, 150, 255);--LID-varSpacingXSmall:0.5rem;--LID-paletteNeutral80:rgb(201, 201, 201);--LID-colorBackgroundModalButton:rgba(0, 0, 0, 0.07);--LID-colorBorderPathDivider:rgb(255, 255, 255);--LID-colorTextIconDefault:rgb(116, 116, 116);--LID-zIndexDeepdive:-99999;--LID-elevation16:16;--LID-paletteRed90:rgb(254, 222, 216);--LID-globalnavigationItemHeightAccentActive:3px;--LID-templateGutters:0;--LID-paletteRed95:rgb(254, 241, 238);--LID-buttonColorBorderBrandPrimary:rgb(1, 118, 211);--LID-buttonIconBoundaryTouch:2.75rem;--LID-brandBackgroundPrimaryTransparent:rgba(176, 196, 223, 0);--LID-fillHeaderButtonFocus:rgb(1, 118, 211);--LID-colorBorderError:rgb(234, 0, 30);--LID-colorTextLinkHover:rgb(1, 68, 134);--LID-paletteGreen95:rgb(235, 247, 230);--LID-einsteinHeaderFigure:url(/_slds/images/einstein-headers/einstein-figure.svg?cache=ec975fb1);--LID-colorBorderRowSelected:rgb(1, 118, 211);--LID-colorStrokeBrandHover:rgb(1, 118, 211);--LID-paletteNeutral30:rgb(68, 68, 68);--LID-varSpacingVerticalXxxSmall:0.125rem;--LID-paletteHotOrange10:rgb(40, 18, 2);--LID-colorTextButtonBrandDisabled:rgb(255, 255, 255);--LID-squareIconXSmallContent:0.5rem;--LID-varFontSize10:2rem;--LID-paletteRed60:rgb(254, 92, 76);--LID-varFontSize11:2.625rem;--LID-paletteRed65:rgb(254, 119, 101);--LID-buttonBorderRadius:.25rem;--LID-squareTappableXSmall:1.5rem;--LID-colorBackgroundGuidance:rgb(255, 255, 255);--LID-colorTextContextBarInverse:rgb(255, 255, 255);--LID-paletteNeutral20:rgb(46, 46, 46);--LID-fontFamilyHeading:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--LID-paletteRed70:rgb(254, 143, 125);--LID-brandHeaderContrastCoolActive:rgb(1, 68, 134);--LID-borderWidthThick:2px;--LID-pageHeaderShadow:none;--LID-spinnerSizeXxSmall:0.5rem;--LID-tableColorBackgroundHeader:rgb(255, 255, 255);--LID-pageHeaderColorBackgroundAlt:rgb(255, 255, 255);--LID-colorBorderBrandPrimaryHover:rgb(1, 118, 211);--LID-colorTextTabLabelActive:rgb(3, 45, 96);--LID-paletteNeutral50:rgb(116, 116, 116);--LID-colorBackgroundTempModalTint:rgba(126, 140, 153, 0.8);--LID-fontSizeMedium:1rem;--LID-colorBorderButtonBrand:rgb(1, 118, 211);--LID-paletteHotOrange30:rgb(126, 38, 0);--LID-paletteRed40:rgb(186, 5, 23);--LID-brandBandImageHeightSmall:6rem;--LID-colorTextInverseWeak:rgb(174, 174, 174);--LID-colorTextInverse:rgb(255, 255, 255);--LID-shadowLinkFocusInverse:0 0 3px #f3f3f3;--LID-squareIconXxSmallBoundary:1rem;--LID-lineHeightReset:1;--LID-verticalNavigationColorBackgroundShadeRowActive:rgb(243, 243, 243);--LID-colorBackgroundTempModal:rgba(126, 140, 153, 0.8);--LID-colorBackgroundToggleDisabled:rgb(174, 174, 174);--LID-colorGray13:rgb(8, 7, 7);--LID-colorGray10:rgb(81, 79, 77);--LID-paletteNeutral40:rgb(92, 92, 92);--LID-colorBorderInverse:#061c3f;--LID-carouselIndicatorColorBackgroundActive:rgb(1, 118, 211);--LID-colorBackgroundBackdrop:rgba(255, 255, 255, 0.75);--LID-colorGray12:rgb(43, 40, 38);--LID-colorGray11:rgb(62, 62, 60);--LID-colorTextContextBarActionTrigger:rgba(255, 255, 255, 0.4);--LID-paletteHotOrange20:rgb(74, 36, 19);--LID-colorBackgroundNotification:rgb(255, 255, 255);--LID-colorBackgroundPathStepActionCurrent:rgb(1, 68, 134);--LID-badgeColorBackgroundInverse:rgb(116, 116, 116);--LID-colorBorderSeparatorInverse:rgb(3, 45, 96);--LID-paletteRed50:rgb(234, 0, 30);--LID-colorBackgroundSpinnerDot:rgb(174, 174, 174);--LID-colorBackgroundButtonBrandActive:rgb(3, 45, 96);--LID-paletteHotOrange15:rgb(66, 22, 4);--LID-sliderHandleColorBackgroundFocus:rgb(1, 118, 211);--LID-spinnerSizeMedium:2rem;--LID-brandPrimary:rgb(27, 150, 255);--LID-paletteHotOrange50:rgb(216, 58, 0);--LID-colorTextLinkPrimaryFocus:rgb(1, 118, 211);--LID-colorTextInputDisabled:rgb(116, 116, 116);--LID-brandLogoImage:url(/_slds/images/logo-noname.svg?cache=380754d9);--LID-brandLight:rgb(244, 246, 254);--LID-paletteRed20:rgb(100, 1, 3);--LID-fillHeaderButton:rgb(174, 174, 174);--LID-varLineHeightText:1.5;--LID-colorBackgroundPathCurrent:rgb(255, 255, 255);--LID-colorBackgroundOffline:rgb(68, 68, 68);--LID-colorBorderTabSelected:rgb(1, 118, 211);--LID-colorTextWarning:#ffb75d;--LID-salesforceSansRegularWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Regular.woff);--LID-paletteHotOrange40:rgb(170, 48, 1);--LID-cardSpacingLarge:1.5rem;--LID-paletteRed30:rgb(142, 3, 15);--LID-fontSizeMediumA:1.125rem;--LID-borderRadiusMedium:0.25rem;--LID-colorPickerSliderThumbBorderColor:rgb(68, 68, 68);--LID-shadowSoftPrimary:none;--LID-zIndexDropdown:7000;--LID-paletteHotOrange70:rgb(255, 144, 110);--LID-verticalNavigationColorBackgroundShadeRowHover:rgb(243, 243, 243);--LID-squareIconMediumBoundary:2rem;--LID-colorBorderInpuDisabled:#a8b7c7;--LID-colorBackgroundButtonDefaultFocus:rgb(243, 243, 243);--LID-heightTappable:2.75rem;--LID-colorBackgroundToastError:rgb(234, 0, 30);--LID-brandBandDefaultImage:;--LID-durationQuickly:0.1s;--LID-colorBackgroundSelection:rgb(216, 230, 254);--LID-paletteHotOrange60:rgb(255, 93, 45);--LID-colorBackgroundActionbarIconUtility:rgb(116, 116, 116);--LID-colorBackgroundNotificationBadgeFocus:rgb(1, 68, 134);--LID-paletteHotOrange65:rgb(255, 120, 79);--LID-cardFooterTextAlign:right;--LID-colorBorderBrandDark:rgb(1, 68, 134);--LID-brandBackgroundDark:rgb(232, 232, 232);--LID-avatarGroupColorBackgroundLightest:rgb(255, 255, 255);--LID-colorTextContextBar:rgb(68, 68, 68);--LID-inputStaticFontWeight:400;--LID-paletteRed10:rgb(48, 12, 1);--LID-colorTextLinkDisabled:rgb(3, 45, 96);--LID-colorTextPathCurrent:rgb(1, 68, 134);--LID-paletteRed15:rgb(74, 12, 4);--LID-zIndexOverlay:8000;--LID-buttonColorBorderPrimary:rgb(243, 243, 243);--LID-paletteHotOrange90:rgb(255, 222, 213);--LID-shadowImage:0 1px 1px rgba(0, 0, 0, 0.16);--LID-paletteHotOrange95:rgb(254, 241, 237);--LID-cardHeaderPadding:0.75rem 1rem 0;--LID-colorBorderSeparatorAlt2:rgb(201, 201, 201);--LID-fillBrandActive:rgb(3, 45, 96);--LID-fontSizeTextMedium:1rem;--LID-spacingXSmall:0.5rem;--LID-chatMessageColorBackgroundOutboundAgent:rgb(116, 116, 116);--LID-colorBackgroundButtonIconHover:rgb(243, 243, 243);--LID-sliderHandleColorBackgroundActive:rgb(1, 118, 211);--LID-colorBorderSuccess:rgb(145, 219, 139);--LID-colorTextIconInverseHover:rgb(255, 255, 255);--LID-componentSpacingPadding:1rem;--LID-colorBorderDestructiveActive:rgb(142, 3, 15);--LID-colorBackgroundButtonInverseDisabled:rgba(0, 0, 0, 0);--LID-colorTextTabLabelFocus:rgb(1, 68, 134);--LID-paletteHotOrange80:rgb(254, 185, 165);--LID-colorBackgroundNotificationBadge:rgb(234, 0, 30);--LID-zIndexReminder:8500;--LID-colorBackgroundImageOverlay:rgba(0, 0, 0, 0.4);--LID-colorBackgroundReminderHover:rgb(255, 255, 255);--LID-colorTextPathCurrentHover:rgb(3, 45, 96);--LID-colorBackgroundCustomer:rgb(254, 147, 57);--LID-colorBackgroundButtonDefault:rgb(255, 255, 255);--LID-colorBackgroundInverseLight:rgb(3, 45, 96);--LID-salesforceSansBoldWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Bold.woff);--LID-progressColorBorderActive:rgb(27, 150, 255);--LID-fontSizeLarge:1.25rem;--LID-brandHeaderContrastWeakActive:rgb(129, 129, 129);--LID-brandHeaderContrastWarmActive:rgb(186, 5, 23);--LID-squareToggleSlider:1.25rem;--LID-progressBarColorBackgroundFillSuccess:rgb(46, 132, 74);--LID-colorBackgroundButtonBrand:rgb(1, 118, 211);--LID-colorBackgroundWarningDark:rgb(254, 147, 57);--LID-colorTextIconUtility:rgb(174, 174, 174);--LID-colorBackgroundScrollbar:rgb(243, 243, 243);--LID-chatMessageColorBackgroundStatus:rgb(255, 255, 255);--LID-colorBackgroundTempModalTintAlt:rgba(255, 255, 255, 0.75);--LID-pageHeaderBorderRadius:0;--LID-palettePink95:rgb(254, 240, 243);--LID-welcomeMatColorIconComplete:rgb(201, 201, 201);--LID-palettePink90:rgb(253, 221, 227);--LID-paletteViolet50:rgb(186, 1, 255);--LID-paletteTeal30:rgb(2, 77, 76);--LID-colorTextIconInverseDisabled:rgba(255, 255, 255, 0.15);--LID-bannerGroupDefaultImage:;--LID-colorBorderBrand:rgb(27, 150, 255);--LID-colorBackgroundInfo:#54698d;--LID-heightToggle:1.5rem;--LID-badgeColorBackgroundLightest:rgb(255, 255, 255);--LID-brandBandColorBackgroundSecondary:rgba(0, 0, 0, 0);--LID-shadowSoftPrimaryActive:none;--LID-colorTextIconDefaultHint:rgb(174, 174, 174);--LID-colorBackgroundChromeMobile:rgb(1, 118, 211);--LID-colorPickerSwatchSize:1.25rem;--LID-colorBackgroundPathIncomplete:rgb(243, 243, 243);--LID-paletteTeal40:rgb(5, 103, 100);--LID-colorTextToggleDisabled:rgb(201, 201, 201);--LID-paletteViolet40:rgb(150, 2, 199);--LID-colorTextLinkInverseHover:rgba(255, 255, 255, 0.75);--LID-palettePink80:rgb(253, 182, 197);--LID-zIndexModal:9000;--LID-pageHeaderIconSize:2.25rem;--LID-colorTextDestructiveHover:rgb(186, 5, 23);--LID-colorBorderCanvasElementSelection:rgb(26, 185, 255);--LID-colorBackgroundSuccess:#4bca81;--LID-carouselIndicatorColorBackground:rgb(255, 255, 255);--LID-sliderTrackHeight:4px;--LID-squareIconSmallContent:0.75rem;--LID-colorBackgroundInputDisabled:rgb(243, 243, 243);--LID-paletteTeal50:rgb(11, 130, 124);--LID-palettePink70:rgb(254, 138, 167);--LID-paletteViolet30:rgb(115, 3, 148);--LID-mqSmall:only screen and (max-width: 47.9375em);--LID-brandBandImageHeightLarge:18.75rem;--LID-carouselIndicatorWidth:1rem;--LID-colorTextLinkActive:rgb(3, 45, 96);--LID-squareIconXxSmallContent:.875rem;--LID-fontSizeXSmall:0.625rem;--LID-palettePink65:rgb(254, 114, 152);--LID-sliderColorBackgroundDisabled:rgb(243, 243, 243);--LID-colorContrastSecondary:rgb(255, 255, 255);--LID-welcomeMatColorBackgroundProgressBar:rgb(255, 255, 255);--LID-globalActionIconSize:1.5rem;--LID-paletteViolet20:rgb(72, 26, 84);--LID-fontSizeHeadingSmall:0.875rem;--LID-colorPickerRangeIndicatorSize:0.75rem;--LID-paletteOrange15:rgb(55, 30, 3);--LID-sliderHandleSize:1rem;--LID-tableBorderRadius:0;--LID-paletteTeal60:rgb(6, 165, 154);--LID-userDefaultAvatarSmall:url(/_slds/images/profile_avatar_96.png?cache=3c01f25f);--LID-buttonColorBackgroundPrimary:rgb(255, 255, 255);--LID-colorPickerInputCustomHexWidth:4.2rem;--LID-paletteOrange10:rgb(32, 22, 0);--LID-palettePink60:rgb(255, 83, 138);--LID-paletteTeal65:rgb(3, 180, 167);--LID-colorBackgroundRowSelected:rgb(243, 243, 243);--LID-colorBackgroundContextBarBrandAccent:rgb(13, 157, 218);--LID-fontFamilyMonospace:Consolas, Menlo, Monaco, Courier, monospace;--LID-cardFooterColorBorder:rgba(0, 0, 0, 0);--LID-palettePurple80:rgb(215, 191, 242);--LID-varSpacingHorizontalLarge:1.5rem;--LID-colorTextRequired:rgb(234, 0, 30);--LID-elevationShadow16:0 16px 16px 0 rgba(0, 0, 0, 0.16);--LID-paletteViolet10:rgb(46, 0, 57);--LID-shadowHardPrimary:none;--LID-paletteOrange20:rgb(62, 43, 2);--LID-paletteViolet15:rgb(61, 1, 87);--LID-radioButtonGroupLineHeightTouch:2.69rem;--LID-colorBackgroundBrandPrimary:rgb(1, 118, 211);--LID-paletteTeal70:rgb(1, 195, 179);--LID-colorBackgroundUtilityBarActive:rgb(27, 150, 255);--LID-zIndexSticky:100;--LID-colorBackgroundContextBarShadow:linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0, rgba(0, 0, 0, 0) 100%);--LID-paletteTeal80:rgb(4, 225, 203);--LID-palettePurple90:rgb(236, 225, 249);--LID-squareIconUtilityLarge:1.5rem;--LID-fontSize10:2rem;--LID-groupDefaultAvatarMedium:url(/_slds/images/group_avatar_160.png?cache=b8fe8e83);--LID-elevationShadow32:0 32px 32px 0 rgba(0, 0, 0, 0.16);--LID-paletteOrange30:rgb(95, 62, 2);--LID-colorBorderButtonInverseDisabled:rgba(255, 255, 255, 0.15);--LID-fontSize11:2.625rem;--LID-einsteinHeaderTextShadow:#cfe9fe;--LID-palettePurple95:rgb(246, 242, 251);--LID-squareTappableXxSmall:1.25rem;--LID-colorBackgroundDestructiveHover:rgb(142, 3, 15);--LID-fontSize9:1.75rem;--LID-colorBackgroundLight:rgb(255, 255, 255);--LID-fontSize8:1.5rem;--LID-paletteTeal90:rgb(172, 243, 228);--LID-shadowActive:0 0 2px #0176d3;--LID-fontSize1:0.625rem;--LID-paletteNeutral100:rgb(255, 255, 255);--LID-colorTextLink:rgb(1, 118, 211);--LID-pageHeaderTitleFontSize:1.125rem;--LID-fontSize3:0.8125rem;--LID-fontSize2:0.75rem;--LID-colorTextLinkInverseDisabled:rgba(255, 255, 255, 0.15);--LID-fontSize5:1rem;--LID-fontSize4:0.875rem;--LID-fontSize7:1.25rem;--LID-fontSize6:1.125rem;--LID-spacingNone:0;--LID-paletteOrange40:rgb(130, 81, 1);--LID-inputReadonlyFontWeight:400;--LID-palettePurple60:rgb(173, 123, 238);--LID-paletteTeal95:rgb(222, 249, 243);--LID-colorStrokeHeaderButton:rgb(174, 174, 174);--LID-typingIconDotColorBackgroundGray:rgb(201, 201, 201);--LID-palettePurple65:rgb(183, 141, 239);--LID-pageHeaderTitleFontWeight:400;--LID-colorBackgroundButtonIconFocus:rgb(243, 243, 243);--LID-groupDefaultAvatarSmall:url(/_slds/images/group_avatar_96.png?cache=d0659d12);--LID-colorBackgroundModalBrand:rgb(1, 68, 134);--LID-colorTextInverseActive:rgb(26, 185, 255);--LID-colorBackgroundHighlightSearch:rgb(255, 240, 63);--LID-paletteOrange50:rgb(169, 100, 4);--LID-colorBackgroundSuccessDark:rgb(46, 132, 74);--LID-shadowOverlay:0 -2px 4px rgba(0, 0, 0, 0.07);--LID-sizeXSmall:12rem;--LID-colorBackgroundDestructive:#c23934;--LID-typingIconDotSize:.5rem;--LID-palettePurple70:rgb(194, 158, 241);--LID-colorBorderInfo:rgb(116, 116, 116);--LID-colorTextTabLabel:rgb(3, 45, 96);--LID-palettePink15:rgb(75, 6, 32);--LID-popoverWalkthroughColorBackgroundAlt:rgb(1, 118, 211);--LID-durationImmediately:0.05s;--LID-palettePink10:rgb(55, 1, 20);--LID-elevationInverseShadow16:0 -16px 16px 0 rgba(0, 0, 0, 0.16);--LID-salesforceSansLightWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Light.woff2);--LID-splitViewWidth:25rem;--LID-colorBorderIconInverseHint:rgba(255, 255, 255, 0.5);--LID-brandDisabled:rgb(201, 199, 197);--LID-paletteOrange60:rgb(221, 122, 1);--LID-palettePurple40:rgb(117, 38, 227);--LID-paletteOrange65:rgb(243, 131, 3);--LID-progressColorBackground:rgb(255, 255, 255);--LID-colorBorderContextBarThemeDefaultActive:rgb(243, 243, 243);--LID-avatarGroupColorBackgroundInverse:rgb(116, 116, 116);--LID-colorBackgroundAlt2:rgb(243, 243, 243);--LID-cardFontWeight:400;--LID-colorPickerSwatchShadow:inset 0 0 1px rgba(0,0,0,0.4);--LID-paletteOrange70:rgb(254, 147, 57);--LID-colorTextIconBrand:rgb(1, 118, 211);--LID-colorTextButtonDefault:rgb(1, 118, 211);--LID-palettePurple50:rgb(144, 80, 233);--LID-pathButtonWidthFixed:13rem;--LID-sizeLarge:25rem;--LID-userDefaultAvatarMedium:url(/_slds/images/profile_avatar_160.png?cache=bfba2c9a);--LID-colorBorderDestructive:rgb(234, 0, 30);--LID-colorTextWeak:rgb(116, 116, 116);--LID-fontSizeHeadingMedium:1.125rem;--LID-mqSingleColumnRecordLayout:(max-width: 599px);--LID-colorBackgroundInputSearch:rgba(0, 0, 0, 0.16);--LID-welcomeMatBackgroundColorInfo:rgb(207, 233, 254);--LID-colorBorderBrandPrimary:rgb(27, 150, 255);--LID-colorBackgroundInverse:rgb(0, 22, 57);--LID-maxWidthActionOverflowMenu:512px;--LID-paletteNeutral10:rgb(24, 24, 24);--LID-carouselColorBackground:rgb(255, 255, 255);--LID-colorTextLabel:rgb(116, 116, 116);--LID-colorBackgroundButtonSuccessActive:rgb(46, 132, 74);--LID-squareIconLarge:3.125rem;--LID-spinnerSizeXSmall:1rem;--LID-paletteOrange80:rgb(255, 186, 144);--LID-cardSpacingMargin:1rem;--LID-colorTextBrowserActive:rgba(0, 0, 0, 0.4);--LID-colorBackgroundButtonBrandHover:rgb(1, 68, 134);--LID-chatMessageColorBackgroundOutbound:rgb(1, 68, 134);--LID-colorTextIconDefaultActive:rgb(3, 45, 96);--LID-palettePurple20:rgb(64, 16, 117);--LID-colorTextIconDefaultHover:rgb(1, 118, 211);--LID-colorTextLinkPrimary:rgb(1, 118, 211);--LID-fontSizeTextXSmall:0.75rem;--LID-colorBackgroundToast:rgb(116, 116, 116);--LID-fontSizeXxLarge:1.75rem;--LID-heightSalesPath:2rem;--LID-colorTextIconDefaultHintBorderless:rgb(243, 243, 243);--LID-paletteOrange95:rgb(255, 241, 234);--LID-colorForegroundPrimary:rgb(255, 255, 255);--LID-paletteOrange90:rgb(254, 223, 208);--LID-colorBackgroundRowNew:rgb(205, 239, 196);--LID-fontSizeTextLarge:1.125rem;--LID-paletteGreen15:rgb(12, 41, 18);--LID-colorBackgroundShade:rgb(243, 243, 243);--LID-paletteGreen10:rgb(7, 27, 18);--LID-palettePurple30:rgb(90, 27, 169);--LID-varSpacingXxxSmall:0.125rem;--LID-brandLightActive:rgb(227, 229, 237);--LID-welcomeMatTextColorInfo:rgb(3, 45, 96);--LID-colorBackgroundIconWaffle:rgb(116, 116, 116);--LID-colorBackgroundContextBarItemHover:rgb(255, 255, 255);--LID-fontSizeXLargeA:1.57rem;--LID-colorBackgroundPathCompleteHover:rgba(4,132,75,.95);--LID-palettePink50:rgb(227, 6, 106);--LID-paletteViolet90:rgb(242, 222, 254);--LID-paletteGreen20:rgb(28, 51, 38);--LID-paletteViolet95:rgb(249, 240, 255);--LID-colorBorderContextBarThemeDefaultHover:rgb(50, 29, 113);--LID-squareIconMedium:2.375rem;--LID-textTransform:none;--LID-colorBackgroundBrandPrimaryHover:rgb(1, 68, 134);--LID-colorTextSuccess:rgb(46, 132, 74);--LID-carouselIndicatorColorBackgroundFocus:rgb(1, 68, 134);--LID-colorBackgroundChromeDesktop:rgb(255, 255, 255);--LID-borderStrokeWidthThick:2px;--LID-colorBackgroundReminder:rgb(243, 243, 243);--LID-palettePurple15:rgb(48, 11, 96);--LID-colorTextToast:rgb(243, 243, 243);--LID-paletteViolet80:rgb(229, 185, 254);--LID-colorBackgroundAlt:rgb(255, 255, 255);--LID-palettePink40:rgb(182, 5, 84);--LID-paletteGreen30:rgb(25, 78, 49);--LID-palettePurple10:rgb(36, 6, 67);--LID-elevationInverseShadow32:0 -32px 32px 0 rgba(0, 0, 0, 0.16);--LID-colorBorderCustomer:rgb(254, 147, 57);--LID-tableColorBackgroundStripes:rgb(243, 243, 243);--LID-varSpacingVerticalSmall:0.75rem;--LID-palettePink30:rgb(138, 3, 62);--LID-paletteViolet70:rgb(216, 146, 254);--LID-colorBorderContextBarInverseItem:rgba(255, 255, 255, 0.2);--LID-utilityBarColorBackgroundNotificationBadge:rgb(254, 92, 76);--LID-colorTextTabLabelDisabled:rgb(243, 243, 243);--LID-heightInput:1.875rem;--LID-squareTappable:2.75rem;--LID-fontSizeSmall:0.75rem;--LID-paletteGreen40:rgb(57, 101, 71);--LID-tableColorBackgroundHeaderFocus:rgb(255, 255, 255);--LID-salesforceSansRegularWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Regular.woff2);--LID-varSpacingHorizontalXxLarge:3rem;--LID-paletteViolet65:rgb(209, 125, 254);--LID-progressBarColorBackgroundFill:rgb(26, 185, 255);--LID-colorBorderSeparator:rgb(243, 243, 243);--LID-paletteGreen50:rgb(46, 132, 74);--LID-brandHeaderIconDisabled:rgba(145, 145, 145, 0.25);--LID-palettePink20:rgb(97, 2, 42);--LID-splitViewColorBackground:rgb(243, 243, 243);--LID-colorBackgroundSecondary:rgb(243, 243, 243);--LID-colorTextLinkFocus:rgb(1, 68, 134);--LID-paletteViolet60:rgb(203, 101, 255);--slackv2-paletteIndigo10:rgb(32, 6, 71);--slackv2-popoverWalkthroughHeaderImage:;--slackv2-zIndexDialog:6000;--slackv2-colorPickerSelectorWidth:14rem;--slackv2-nubbinSizeDefault:1rem;--slackv2-paletteCloudBlue40:rgb(5, 98, 138);--slackv2-colorBackgroundContextBarInverseItemHover:rgba(255, 255, 255, 0.2);--slackv2-dropZoneSlotHeight:0.25rem;--slackv2-colorTextTabLabelSelected:rgb(1, 118, 211);--slackv2-colorStrokeBrandActive:rgb(3, 45, 96);--slackv2-paletteIndigo15:rgb(31, 9, 116);--slackv2-cardBodyPadding:0 1rem;--slackv2-varSpacingHorizontalSmall:0.75rem;--slackv2-tableColorBackgroundHeaderResizableHandle:rgb(174, 174, 174);--slackv2-colorBackgroundPathActiveHover:rgb(3, 45, 96);--slackv2-brandPrimaryTransparent:rgba(21, 137, 238, 0.1);--slackv2-brandPrimaryTransparent40:rgba(21, 137, 238, 0.4);--slackv2-colorBorderButtonDefault:rgb(201, 201, 201);--slackv2-paletteIndigo20:rgb(50, 29, 113);--slackv2-popoverColorText:rgb(201, 201, 201);--slackv2-paletteCloudBlue30:rgb(8, 73, 104);--slackv2-colorTextButtonDefaultActive:rgb(1, 118, 211);--slackv2-colorPickerSliderHeight:1.5rem;--slackv2-colorTextIconInverse:rgb(255, 255, 255);--slackv2-heightFooter:3.75rem;--slackv2-splitViewColorBorder:rgb(201, 201, 201);--slackv2-colorBorderRowSelectedHover:rgb(27, 150, 255);--slackv2-fontSizeTextXxSmall:.625rem;--slackv2-lineHeightHeading:1.25;--slackv2-cardHeaderMargin:0 0 0.75rem;--slackv2-paletteIndigo30:rgb(47, 44, 183);--slackv2-mqMediumLandscape:only screen and (min-width: 48em) and (min-aspect-ratio: 4/3);--slackv2-brandBandImageHeightMedium:12.5rem;--slackv2-illustrationColorSecondary:rgb(207, 233, 254);--slackv2-zIndexDefault:1;--slackv2-colorBorderSelectionActive:rgb(243, 243, 243);--slackv2-paletteCloudBlue20:rgb(2, 50, 72);--slackv2-utilityBarColorBackgroundNotificationFocus:rgb(201, 201, 201);--slackv2-colorTextIconDefaultDisabled:rgb(201, 201, 201);--slackv2-colorTextBrand:rgb(27, 150, 255);--slackv2-durationToastMedium:9.6s;--slackv2-colorBackgroundButtonIconActive:rgb(243, 243, 243);--slackv2-brandHeaderContrastWeak:rgb(145, 145, 145);--slackv2-colorBackgroundNotificationNew:rgb(243, 243, 243);--slackv2-brandHeaderContrastInverseActive:rgb(238, 238, 238);--slackv2-colorBackgroundInputCheckboxSelected:rgb(27, 150, 255);--slackv2-progressColorBorder:rgb(255, 255, 255);--slackv2-spacingXxxSmall:0.125rem;--slackv2-paletteIndigo40:rgb(58, 73, 218);--slackv2-colorBackgroundProgressRingContent:rgb(255, 255, 255);--slackv2-lineHeightButtonSmall:1.75rem;--slackv2-salesforceSansBoldItalicWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-BoldItalic.woff);--slackv2-brandBackgroundDarkTransparent:rgba(221, 219, 218, 0);--slackv2-colorPickerThumbWidth:0.375rem;--slackv2-paletteCloudBlue10:rgb(0, 26, 40);--slackv2-brandHeaderIconActive:rgb(129, 129, 129);--slackv2-widthStageLeftCollapsed:4rem;--slackv2-paletteCloudBlue15:rgb(10, 38, 54);--slackv2-colorBorderOffline:rgb(68, 68, 68);--slackv2-colorBackgroundUtilityBarHover:rgb(243, 243, 243);--slackv2-sliderHandleColorBackgroundHover:rgb(1, 118, 211);--slackv2-colorTextIconInverseHint:rgba(255, 255, 255, 0.5);--slackv2-sizeMedium:20rem;--slackv2-brandPrimaryTransparent10:rgba(21, 137, 238, 0.1);--slackv2-colorBorderIconInverseHintHover:rgba(255, 255, 255, 0.75);--slackv2-colorTextDefault:rgb(3, 45, 96);--slackv2-paletteIndigo50:rgb(88, 103, 232);--slackv2-progressBarHeight:0.125rem;--slackv2-colorBackgroundWarning:#ffb75d;--slackv2-colorBackgroundBrandPrimaryActive:rgb(3, 45, 96);--slackv2-paletteBlue90:rgb(216, 230, 254);--slackv2-brandHeaderContrastCool:rgb(1, 68, 134);--slackv2-paletteCloudBlue80:rgb(144, 208, 254);--slackv2-paletteBlue95:rgb(238, 244, 255);--slackv2-colorBorderSelectionHover:rgb(27, 150, 255);--slackv2-zIndexPopup:5000;--slackv2-borderRadiusLarge:0.5rem;--slackv2-colorTextIconInverseHintHover:rgba(255, 255, 255, 0.75);--slackv2-popoverBrandBorderWidth:0.25rem;--slackv2-fontSizeHeadingXLarge:1.75rem;--slackv2-typingIconDotColorBackgroundGrayDark:rgb(201, 201, 201);--slackv2-paletteIndigo65:rgb(142, 155, 239);--slackv2-varSpacingLarge:1.5rem;--slackv2-pageHeaderSpacingMargin:0;--slackv2-fontSizeTextXLarge:1.25rem;--slackv2-paletteIndigo60:rgb(127, 140, 237);--slackv2-paletteCloudBlue70:rgb(26, 185, 255);--slackv2-welcomeMatColorActionShadow:rgba(0, 0, 0, 0.05);--slackv2-colorTextBrowser:rgb(255, 255, 255);--slackv2-welcomeMatSpacingInfo:7.75rem;--slackv2-mqLarge:only screen and (min-width: 64.0625em);--slackv2-paletteIndigo70:rgb(158, 169, 241);--slackv2-squareTappableSmall:2rem;--slackv2-colorTextActionLabel:rgb(116, 116, 116);--slackv2-paletteCloudBlue60:rgb(13, 157, 218);--slackv2-paletteBlue70:rgb(120, 176, 253);--slackv2-colorBorderTabActive:rgb(255, 255, 255);--slackv2-paletteCloudBlue65:rgb(8, 171, 237);--slackv2-globalnavigationItemHeightAccentFocus:4px;--slackv2-colorBorderDestructiveHover:rgb(186, 5, 23);--slackv2-buttonLineHeightTouch:2.65rem;--slackv2-colorTextCustomer:rgb(254, 147, 57);--slackv2-squareIconUtilitySmall:1rem;--slackv2-colorBackgroundModalButtonActive:rgba(0, 0, 0, 0.16);--slackv2-colorTextBrandPrimary:rgb(255, 255, 255);--slackv2-squareIconXSmallBoundary:1.25rem;--slackv2-widthToggle:3rem;--slackv2-paletteIndigo80:rgb(190, 199, 246);--slackv2-welcomeMatMinHeight:25rem;--slackv2-zIndexDocked:4;--slackv2-squareIconMediumBoundaryAlt:2.25rem;--slackv2-colorBorderSelection:rgb(1, 118, 211);--slackv2-paletteBlue80:rgb(170, 203, 255);--slackv2-paletteCloudBlue50:rgb(16, 124, 173);--slackv2-brandHeaderContrastActive:rgb(80, 80, 80);--slackv2-formLabelFontSize:0.75rem;--slackv2-colorTextActionLabelActive:rgb(3, 45, 96);--slackv2-colorBackgroundBackdropTint:rgb(243, 243, 243);--slackv2-durationSlowly:0.4s;--slackv2-colorBackgroundRowHover:rgb(243, 243, 243);--slackv2-popoverWalkthroughAltNubbinColorBackground:rgb(1, 118, 211);--slackv2-spinnerSizeSmall:1.25rem;--slackv2-sliderTrackColorBackgroundFill:rgb(27, 150, 255);--slackv2-welcomeMatWidth:52.0625rem;--slackv2-paletteIndigo95:rgb(241, 243, 251);--slackv2-paletteIndigo90:rgb(224, 229, 248);--slackv2-filesZIndexHover:5;--slackv2-colorTextPill:rgb(1, 118, 211);--slackv2-varSpacingSmall:0.75rem;--slackv2-heightDockedBar:2.5rem;--slackv2-paletteBlue50:rgb(1, 118, 211);--slackv2-colorTextTabLabelHover:rgb(1, 68, 134);--slackv2-fontSizeHeadingXSmall:0.75rem;--slackv2-colorStrokeDisabled:rgb(243, 243, 243);--slackv2-widthPathBorderCurrent:0.125rem;--slackv2-colorBackgroundButtonDefaultHover:rgb(243, 243, 243);--slackv2-varSpacingVerticalXxSmall:0.25rem;--slackv2-colorTextButtonDefaultHover:rgb(1, 118, 211);--slackv2-durationPromptly:0.2s;--slackv2-colorBorderPathCurrent:rgb(1, 68, 134);--slackv2-colorBackgroundButtonDefaultActive:rgb(243, 243, 243);--slackv2-colorTextStageLeft:rgb(243, 243, 243);--slackv2-colorBorderHint:rgb(3, 45, 96);--slackv2-colorTextPrimary:rgb(3, 45, 96);--slackv2-brandBandColorBackgroundSecondaryTransparent:rgba(0, 0, 0, 0);--slackv2-paletteBlue60:rgb(27, 150, 255);--slackv2-cardColorBackground:rgb(255, 255, 255);--slackv2-brandHeaderIcon:rgb(145, 145, 145);--slackv2-paletteBlue65:rgb(87, 163, 253);--slackv2-spacingLarge:1.5rem;--slackv2-pageHeaderColorBorder:rgba(0, 0, 0, 0);--slackv2-cardFooterMargin:0.75rem;--slackv2-fontSizeTextSmall:0.8125rem;--slackv2-colorTextLinkInverseActive:rgba(255, 255, 255, 0.5);--slackv2-durationToastShort:4.8s;--slackv2-lineHeightButton:1.875rem;--slackv2-panelDockedLeftShadow:1px 0 3px rgba(0,0,0,0.25);--slackv2-panelDockedRightShadow:-1px 0 3px 0 rgba(0,0,0,0.25);--slackv2-colorTextLinkPrimaryHover:rgb(1, 118, 211);--slackv2-shadowButton:0 1px 1px 0 rgba(0, 0, 0, 0.05);--slackv2-welcomeMatMaxHeight:37.5rem;--slackv2-colorBorderToggleChecked:rgb(255, 255, 255);--slackv2-shadowHeader:0 2px 4px rgba(0, 0, 0, 0.07);--slackv2-sizeXxLarge:60rem;--slackv2-colorBackgroundDockedPanelHeader:rgb(255, 255, 255);--slackv2-paletteBlue30:rgb(1, 68, 134);--slackv2-lineHeightSalespath:1.5rem;--slackv2-shadowDrag:0 2px 4px 0 rgba(0, 0, 0, 0.40);--slackv2-colorBackgroundPathExpanded:rgb(255, 255, 255);--slackv2-colorBackground:rgb(243, 243, 243);--slackv2-colorBackgroundInput:rgb(255, 255, 255);--slackv2-sizeSmall:15rem;--slackv2-userDefaultAvatar:url(/_slds/images/profile_avatar_200.png?cache=7bdcafae);--slackv2-colorTextButtonInverse:rgb(243, 243, 243);--slackv2-colorBackgroundInputCheckboxDisabled:rgb(201, 201, 201);--slackv2-tableColorTextHeader:rgb(68, 68, 68);--slackv2-paletteBlue40:rgb(11, 92, 171);--slackv2-cardColorBorder:rgb(201, 201, 201);--slackv2-squareIconUtilityMedium:1.25rem;--slackv2-colorBackgroundButtonSuccessHover:rgb(46, 132, 74);--slackv2-colorBorderButtonBrandDisabled:rgba(0, 0, 0, 0);--slackv2-fontSizeHeadingXxSmall:0.625rem;--slackv2-colorBackgroundButtonInverseActive:rgba(0, 0, 0, 0.24);--slackv2-illustrationEmptyStateEvents:url(/_slds/images/illustrations/empty-state-events.svg?cache=985b247a);--slackv2-colorBackgroundToggle:rgb(174, 174, 174);--slackv2-colorBackgroundStencil:rgb(243, 243, 243);--slackv2-welcomeMatCheckSize:0.625rem;--slackv2-colorTextButtonBrandHover:rgb(255, 255, 255);--slackv2-buttonColorBackgroundSecondary:rgba(255, 255, 255, 0.8);--slackv2-paletteBlue10:rgb(0, 22, 57);--slackv2-varSpacingVerticalLarge:1.5rem;--slackv2-colorBorderReminder:rgb(243, 243, 243);--slackv2-colorBrandDark:rgb(1, 118, 211);--slackv2-paletteBlue15:rgb(3, 35, 77);--slackv2-colorBorderBrandPrimaryFocus:rgb(1, 118, 211);--slackv2-salesforceSansItalicWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Italic.woff);--slackv2-colorBorderBrandPrimaryActive:rgb(3, 45, 96);--slackv2-datepickerColorTextDayAdjacentMonth:rgb(116, 116, 116);--slackv2-colorBorderErrorAlt:rgb(254, 143, 125);--slackv2-shadowReminder:0 2px 3px 0 rgba(0, 0, 0, 0.20);--slackv2-brandTextLinkActive:rgb(1, 68, 134);--slackv2-pageHeaderColorBackground:rgb(243, 243, 243);--slackv2-salesforceSansBoldWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Bold.woff2);--slackv2-fontSizeHeadingLarge:1.5rem;--slackv2-colorBackgroundStencilAlt:rgb(243, 243, 243);--slackv2-paletteBlue20:rgb(3, 45, 96);--slackv2-elevationInverseShadow3Below:0 -3px 3px 0 rgba(0, 0, 0, 0.16) inset;--slackv2-varSpacingHorizontalXxSmall:0.25rem;--slackv2-colorBorderSeparatorAlt:rgb(201, 201, 201);--slackv2-colorPickerRangeHeight:5rem;--slackv2-colorBackgroundButtonIcon:rgba(0, 0, 0, 0);--slackv2-paletteTeal15:rgb(7, 40, 37);--slackv2-buttonIconColorBorderPrimary:rgb(255, 255, 255);--slackv2-brandAccessibleActive:rgb(1, 68, 134);--slackv2-paletteYellow80:rgb(252, 192, 3);--slackv2-zIndexSpinner:9050;--slackv2-colorBackgroundContextTabBarItem:rgb(255, 255, 255);--slackv2-fontWeightBold:700;--slackv2-paletteTeal10:rgb(7, 27, 18);--slackv2-colorBackgroundContextBarItemActive:rgb(255, 255, 255);--slackv2-shadowFocusInset:0 0 2px 2px #1b96ff inset;--slackv2-colorBackgroundAltInverse:rgb(3, 45, 96);--slackv2-colorBackgroundPathIncompleteHover:rgb(201, 201, 201);--slackv2-squareIconMediumContent:1rem;--slackv2-colorBackgroundContextBar:rgb(255, 255, 255);--slackv2-colorTextInverseHover:rgb(174, 174, 174);--slackv2-colorBackgroundInputActive:rgb(255, 255, 255);--slackv2-brandContrast:rgb(26, 27, 30);--slackv2-colorTextSecondary:rgb(116, 116, 116);--slackv2-fillHeaderButtonHover:rgb(1, 68, 134);--slackv2-inverseSpacingMedium:-1rem;--slackv2-fontFamilyText:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--slackv2-welcomeMatCompleteIconSize:1.25rem;--slackv2-varSpacingXxLarge:3rem;--slackv2-paletteYellow95:rgb(251, 243, 224);--slackv2-paletteYellow90:rgb(249, 227, 182);--slackv2-brandBackgroundPrimary:#fafaf9;--slackv2-paletteTeal20:rgb(2, 52, 52);--slackv2-progressRingWidth:0.1875rem;--slackv2-paletteYellow65:rgb(215, 147, 4);--slackv2-paletteYellow60:rgb(202, 133, 1);--slackv2-colorBorderInputCheckboxSelectedCheckmark:rgb(255, 255, 255);--slackv2-colorBorderCanvasElementSelectionHover:rgb(1, 68, 134);--slackv2-borderRadiusSmall:0.125rem;--slackv2-progressBarColorBackground:rgb(201, 201, 201);--slackv2-durationInstantly:0s;--slackv2-colorBackgroundToastSuccess:rgb(46, 132, 74);--slackv2-tabsFontWeight:400;--slackv2-colorBackgroundPost:rgb(243, 243, 243);--slackv2-colorTextPlaceholderInverse:rgb(243, 243, 243);--slackv2-colorTextInputIcon:rgb(174, 174, 174);--slackv2-sliderHandleShadow:rgba(0, 0, 0, 0.16) 0 2px 3px;--slackv2-paletteYellow70:rgb(228, 162, 1);--slackv2-fontWeightLight:300;--slackv2-colorTextError:#c23934;--slackv2-varSpacingXxSmall:0.25rem;--slackv2-colorBorderInput:rgb(201, 201, 201);--slackv2-brandAccessible:rgb(1, 118, 211);--slackv2-pageColorBackgroundPrimary:rgb(255, 255, 255);--slackv2-cardShadow:none;--slackv2-lineClamp:3;--slackv2-welcomeMatWidthProgressBar:12.5rem;--slackv2-progressColorBackgroundShade:rgb(243, 243, 243);--slackv2-globalActionFillHover:rgb(1, 68, 134);--slackv2-illustrationEmptyStateAssistant:url(/_slds/images/illustrations/empty-state-assistant.svg?cache=127a789e);--slackv2-varSpacingHorizontalXSmall:0.5rem;--slackv2-colorPickerInputCustomHexFontSize:0.75rem;--slackv2-varSpacingMedium:1rem;--slackv2-colorBackgroundShadeDark:rgb(201, 201, 201);--slackv2-colorPickerSwatchesWidth:13.3rem;--slackv2-squareIconLargeBoundaryAlt:5rem;--slackv2-colorBorderInputDisabled:rgb(201, 201, 201);--slackv2-paletteYellow40:rgb(140, 75, 2);--slackv2-cardWrapperSpacing:1rem;--slackv2-colorBackgroundNotificationBadgeActive:rgb(3, 45, 96);--slackv2-colorBackgroundHighlight:rgb(250, 255, 189);--slackv2-colorBackgroundRowActive:rgb(243, 243, 243);--slackv2-componentSpacingMargin:0;--slackv2-colorBorderButtonFocusInverse:rgb(243, 243, 243);--slackv2-shadowButtonFocus:0 0 3px #0176d3;--slackv2-varSpacingVerticalXLarge:2rem;--slackv2-tableColorBackgroundHeaderHover:rgb(243, 243, 243);--slackv2-colorBackgroundDockedPanel:rgb(255, 255, 255);--slackv2-colorTextTertiary:rgb(116, 116, 116);--slackv2-varSpacingVerticalXxLarge:3rem;--slackv2-paletteYellow50:rgb(168, 100, 3);--slackv2-brandContrastActive:rgb(13, 14, 18);--slackv2-squareIconLargeContent:2rem;--slackv2-colorPickerSliderThumbColorBackground:rgb(243, 243, 243);--slackv2-inputStaticFontSize:0.8125rem;--slackv2-borderWidthThin:1px;--slackv2-fontWeightRegular:400;--slackv2-colorBackgroundButtonSuccess:rgb(69, 198, 90);--slackv2-splitViewColorBackgroundRowHover:rgb(255, 255, 255);--slackv2-paletteYellow20:rgb(79, 33, 0);--slackv2-bannerUserDefaultImage:;--slackv2-elevation8:8;--slackv2-brandDark:rgb(1, 118, 211);--slackv2-colorBackgroundPathCurrentHover:rgb(255, 255, 255);--slackv2-elevation0:0;--slackv2-elevation2:2;--slackv2-pageHeaderJoinedColorBorder:rgb(201, 201, 201);--slackv2-elevation4:4;--slackv2-durationPaused:3.2s;--slackv2-colorBrand:rgb(27, 150, 255);--slackv2-colorBackgroundPathComplete:#4bca81;--slackv2-progressColorBorderHover:rgb(1, 118, 211);--slackv2-spacingXxSmall:0.25rem;--slackv2-tableCellSpacing:0.5rem;--slackv2-colorBorderContextBarThemeDefault:rgb(13, 157, 218);--slackv2-colorBackgroundAnchor:rgb(243, 243, 243);--slackv2-paletteYellow30:rgb(111, 52, 0);--slackv2-shadowButtonFocusInverse:0 0 3px #f3f3f3;--slackv2-welcomeMatFontSizeInfoTitle:2.625rem;--slackv2-colorBorderLinkFocusInverse:rgb(243, 243, 243);--slackv2-borderRadiusCircle:50%;--slackv2-buttonColorBorderSecondary:rgba(255, 255, 255, 0.8);--slackv2-colorTextSuccessInverse:#4bca81;--slackv2-varSpacingXLarge:2rem;--slackv2-sizeXLarge:40rem;--slackv2-varSpacingHorizontalXxxSmall:0.125rem;--slackv2-elevation3Inset:-3;--slackv2-lineHeightTab:2.5rem;--slackv2-colorBackgroundDestructiveActive:#870500;--slackv2-colorTextLinkPrimaryActive:rgb(3, 45, 96);--slackv2-colorBackgroundPageHeader:rgb(255, 255, 255);--slackv2-colorBackgroundPill:rgb(255, 255, 255);--slackv2-fillBrandHover:rgb(1, 68, 134);--slackv2-colorBorderContextBarItem:rgba(0, 0, 0, 0.2);--slackv2-borderStrokeWidthThin:1px;--slackv2-progressColorBorderShade:rgb(243, 243, 243);--slackv2-heightHeader:2.75rem;--slackv2-shadowInlineEdit:0 2px 4px 4px rgba(0, 0, 0, 0.16);--slackv2-colorBackgroundNotificationBadgeHover:rgb(1, 68, 134);--slackv2-borderRadiusPill:15rem;--slackv2-colorTextButtonInverseDisabled:rgba(255, 255, 255, 0.5);--slackv2-sizeXxxSmall:3rem;--slackv2-colorBackgroundSuccessDarker:rgb(25, 78, 49);--slackv2-colorBackgroundToggleHover:rgb(147, 147, 147);--slackv2-paletteYellow15:rgb(46, 34, 4);--slackv2-paletteYellow10:rgb(40, 18, 2);--slackv2-cardSpacingSmall:0.75rem;--slackv2-illustrationEmptyStateTasks:url(/_slds/images/illustrations/empty-state-tasks.svg?cache=dc5e5e5b);--slackv2-brandBandScrimHeight:3.125rem;--slackv2-popoverWalkthroughColorBackground:rgb(0, 22, 57);--slackv2-colorBorderErrorDark:rgb(254, 143, 125);--slackv2-heightTappableSmall:2rem;--slackv2-colorBackgroundButtonBrandDisabled:rgb(243, 243, 243);--slackv2-colorBorderPrimary:rgb(201, 201, 201);--slackv2-colorGray1:rgb(255, 255, 255);--slackv2-fontSizeXLarge:1.25rem;--slackv2-varSquareIconMediumBoundary:2rem;--slackv2-colorGray5:rgb(221, 219, 218);--slackv2-colorGray4:rgb(236, 235, 234);--slackv2-colorGray3:rgb(243, 242, 242);--slackv2-colorGray2:rgb(250, 250, 249);--slackv2-opacity8:0.8;--slackv2-salesforceSansBoldItalicWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-BoldItalic.woff2);--slackv2-opacity5:0.5;--slackv2-squareIconGlobalIdentityIcon:1.25rem;--slackv2-colorBackgroundBrowser:rgb(116, 116, 116);--slackv2-colorTextIconInverseActive:rgb(255, 255, 255);--slackv2-shadowDocked:0 -2px 2px 0 rgba(0, 0, 0, 0.16);--slackv2-colorBackgroundInputError:rgb(253, 221, 227);--slackv2-colorGray9:rgb(112, 110, 107);--slackv2-colorGray8:rgb(150, 148, 146);--slackv2-colorGray7:rgb(176, 173, 171);--slackv2-colorGray6:rgb(201, 199, 197);--slackv2-colorTextLinkInverse:rgb(255, 255, 255);--slackv2-squareIconSmallBoundary:1.5rem;--slackv2-varSpacingHorizontalXLarge:2rem;--slackv2-colorBackgroundDark:rgb(243, 243, 243);--slackv2-colorTextWarningAlt:rgb(140, 75, 2);--slackv2-elevationInverseShadow2:0 -2px 2px 0 rgba(0, 0, 0, 0.16);--slackv2-elevationInverseShadow0:none;--slackv2-colorStrokeBrand:rgb(1, 118, 211);--slackv2-colorBackgroundToggleActive:rgb(1, 68, 134);--slackv2-colorBorderContextBarDivider:rgba(255, 255, 255, 0.2);--slackv2-zIndexToast:10000;--slackv2-colorBackgroundContextBarActionHighlight:rgba(255, 255, 255, 0.2);--slackv2-colorBackgroundBrandPrimaryFocus:rgb(1, 68, 134);--slackv2-buttonColorBackgroundBrandPrimary:rgb(1, 118, 211);--slackv2-brandHeaderContrastWarm:rgb(186, 5, 23);--slackv2-buttonColorTextPrimary:rgb(255, 255, 255);--slackv2-colorBrandDarker:rgb(1, 68, 134);--slackv2-colorBorderPathCurrentHover:rgb(3, 45, 96);--slackv2-colorTextButtonDefaultDisabled:rgb(201, 201, 201);--slackv2-colorBackgroundPathLost:rgb(234, 0, 30);--slackv2-einsteinHeaderBackground:url(/_slds/images/einstein-headers/einstein-header-background.svg?cache=ff7fa2ff);--slackv2-brandTextLink:rgb(1, 118, 211);--slackv2-sliderTrackColorBackground:rgb(243, 243, 243);--slackv2-colorContrastPrimary:rgb(243, 243, 243);--slackv2-groupDefaultAvatar:url(/_slds/images/group_avatar_200.png?cache=a0044dae);--slackv2-templateProfileGutters:0;--slackv2-sizeXxSmall:6rem;--slackv2-colorBackgroundPayload:rgb(243, 243, 243);--slackv2-paletteCloudBlue90:rgb(207, 233, 254);--slackv2-colorBackgroundPathActive:rgb(1, 68, 134);--slackv2-colorTextDestructive:rgb(234, 0, 30);--slackv2-squareIconLargeBoundary:3rem;--slackv2-colorBorderWarning:rgb(254, 147, 57);--slackv2-shadowSoftPrimaryHover:none;--slackv2-paletteCloudBlue95:rgb(234, 245, 254);--slackv2-spacingSmall:0.75rem;--slackv2-colorBackgroundErrorDark:rgb(186, 5, 23);--slackv2-brandHeaderContrastWeakDisabled:rgba(166, 166, 166, 0.25);--slackv2-squareIconMediumContentAlt:0.875rem;--slackv2-colorBackgroundButtonInverse:rgba(0, 0, 0, 0);--slackv2-brandHeader:rgb(255, 255, 255);--slackv2-lineHeightText:1.5;--slackv2-widthStageLeftExpanded:15rem;--slackv2-colorBackgroundError:rgb(254, 92, 76);--slackv2-colorTextButtonBrandActive:rgb(255, 255, 255);--slackv2-fontFamily:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--slackv2-mqMedium:only screen and (min-width: 48em);--slackv2-brandDarkActive:rgb(37, 48, 69);--slackv2-colorBackgroundPathStepActionActive:rgb(0, 22, 57);--slackv2-neutrafaceDisplayWoff2:url(/_slds/fonts/NeutrafaceDisplay.woff2?cache=2.9.0);--slackv2-spacingMedium:1rem;--slackv2-colorTextModal:rgb(255, 255, 255);--slackv2-spinnerSizeLarge:2.75rem;--slackv2-carouselIndicatorColorBackgroundHover:rgb(243, 243, 243);--slackv2-shadowActionOverflowFooter:0 -2px 4px #f3f3f3;--slackv2-popoverWalkthroughHeaderColorBackground:rgb(3, 45, 96);--slackv2-colorBackgroundPathWon:rgb(46, 132, 74);--slackv2-lineHeightToggle:1.3rem;--slackv2-neutrafaceDisplayWoff:url(/_slds/fonts/NeutrafaceDisplay.woff?cache=2.9.0);--slackv2-cardFooterPadding:0 1rem 0.75rem;--slackv2-sliderHandleColorBackground:rgb(27, 150, 255);--slackv2-colorBackgroundErrorAlt:rgb(254, 143, 125);--slackv2-colorBackgroundIndicatorDot:rgb(3, 45, 96);--slackv2-chatMessageColorBackgroundInbound:rgb(243, 243, 243);--slackv2-elevationShadow0:none;--slackv2-heightPill:1.625rem;--slackv2-elevationShadow4:0 4px 4px 0 rgba(0, 0, 0, 0.16);--slackv2-elevationShadow2:0 2px 2px 0 rgba(0, 0, 0, 0.16);--slackv2-elevationShadow8:0 8px 8px 0 rgba(0, 0, 0, 0.16);--slackv2-varFontSize8:1.5rem;--slackv2-colorBackgroundButtonDefaultDisabled:rgb(255, 255, 255);--slackv2-varFontSize7:1.25rem;--slackv2-elevationInverseShadow8:0 -8px 8px 0 rgba(0, 0, 0, 0.16);--slackv2-varFontSize9:1.75rem;--slackv2-brandBandColorBackgroundPrimary:rgba(0, 0, 0, 0);--slackv2-colorTextButtonBrand:rgb(255, 255, 255);--slackv2-elevationInverseShadow4:0 -4px 4px 0 rgba(0, 0, 0, 0.16);--slackv2-colorBackgroundToggleActiveHover:rgb(1, 68, 134);--slackv2-welcomeMatBackgroundImageInfo:url(/_slds/images/welcome-mat/bg-info@2x.png?cache=ddb4e82f);--slackv2-varFontSize2:0.75rem;--slackv2-varFontSize1:0.625rem;--slackv2-varFontSize4:0.875rem;--slackv2-pageHeaderSpacingRow:0.75rem 1rem;--slackv2-varFontSize3:0.8125rem;--slackv2-varFontSize6:1.125rem;--slackv2-varFontSize5:1rem;--slackv2-varSpacingVerticalMedium:1rem;--slackv2-pageHeaderSpacingPadding:1rem;--slackv2-colorTextModalButton:rgb(116, 116, 116);--slackv2-colorBackgroundPrimary:rgb(255, 255, 255);--slackv2-colorTextInputFocusInverse:rgb(3, 45, 96);--slackv2-colorBackgroundScrollbarTrack:rgb(201, 201, 201);--slackv2-paletteNeutral70:rgb(174, 174, 174);--slackv2-brandPrimaryActive:rgb(1, 118, 211);--slackv2-popoverWalkthroughAltImage:;--slackv2-nubbinTriangleOffset:-0.1875rem;--slackv2-salesforceSansLightWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Light.woff);--slackv2-colorBorderSuccessDark:rgb(46, 132, 74);--slackv2-mqHighRes:only screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2),screen and (min-resolution: 192dpi),screen and (min-resolution: 2dppx);--slackv2-brandBandColorBackgroundPrimaryTransparent:rgba(0, 0, 0, 0);--slackv2-colorBackgroundContextBarInverseItemActive:rgba(255, 255, 255, 0.4);--slackv2-colorTextButtonDefaultHint:rgb(174, 174, 174);--slackv2-salesforceSansItalicWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Italic.woff2);--slackv2-paletteGreen60:rgb(59, 167, 85);--slackv2-heightContextBar:2.5rem;--slackv2-colorBackgroundOrgSwitcherArrow:rgb(0, 22, 57);--slackv2-paletteGreen65:rgb(65, 182, 88);--slackv2-brandHeaderContrastInverse:rgb(255, 255, 255);--slackv2-notificationColorBackgroundInverse:rgb(116, 116, 116);--slackv2-colorBackgroundButtonIconDisabled:rgb(255, 255, 255);--slackv2-paletteNeutral60:rgb(147, 147, 147);--slackv2-colorBorderContextBarThemeDefaultAlt:rgb(243, 243, 243);--slackv2-fillBrand:rgb(1, 118, 211);--slackv2-colorBackgroundInputCheckbox:rgb(255, 255, 255);--slackv2-colorBorder:rgb(201, 201, 201);--slackv2-squareIconSmall:1rem;--slackv2-varSpacingHorizontalMedium:1rem;--slackv2-illustrationColorPrimary:rgb(144, 208, 254);--slackv2-varSpacingVerticalXSmall:0.5rem;--slackv2-colorTextPlaceholder:rgb(116, 116, 116);--slackv2-einsteinHeaderBackgroundColor:rgb(144, 208, 254);--slackv2-paletteGreen70:rgb(69, 198, 90);--slackv2-brandHeaderContrast:rgb(94, 94, 94);--slackv2-inputStaticColor:rgb(24, 24, 24);--slackv2-paletteNeutral90:rgb(229, 229, 229);--slackv2-spacingXxLarge:3rem;--slackv2-paletteGreen90:rgb(205, 239, 196);--slackv2-shadowDropDown:0 2px 3px 0 rgba(0, 0, 0, 0.16);--slackv2-paletteNeutral95:rgb(243, 243, 243);--slackv2-colorBackgroundModal:rgb(255, 255, 255);--slackv2-elevationShadow3Below:0 3px 3px 0 rgba(0, 0, 0, 0.16) inset;--slackv2-paletteRed80:rgb(254, 184, 171);--slackv2-sliderTrackWidth:100%;--slackv2-elevation32:32;--slackv2-globalHeaderColorBackground:rgb(255, 255, 255);--slackv2-spacingXLarge:2rem;--slackv2-paletteGreen80:rgb(145, 219, 139);--slackv2-colorBorderInputActive:rgb(27, 150, 255);--slackv2-varSpacingXSmall:0.5rem;--slackv2-paletteNeutral80:rgb(201, 201, 201);--slackv2-colorBackgroundModalButton:rgba(0, 0, 0, 0.07);--slackv2-colorBorderPathDivider:rgb(255, 255, 255);--slackv2-colorTextIconDefault:rgb(116, 116, 116);--slackv2-zIndexDeepdive:-99999;--slackv2-elevation16:16;--slackv2-paletteRed90:rgb(254, 222, 216);--slackv2-globalnavigationItemHeightAccentActive:3px;--slackv2-templateGutters:0;--slackv2-paletteRed95:rgb(254, 241, 238);--slackv2-buttonColorBorderBrandPrimary:rgb(1, 118, 211);--slackv2-buttonIconBoundaryTouch:2.75rem;--slackv2-brandBackgroundPrimaryTransparent:rgba(176, 196, 223, 0);--slackv2-fillHeaderButtonFocus:rgb(1, 118, 211);--slackv2-colorBorderError:rgb(234, 0, 30);--slackv2-colorTextLinkHover:rgb(1, 68, 134);--slackv2-paletteGreen95:rgb(235, 247, 230);--slackv2-einsteinHeaderFigure:url(/_slds/images/einstein-headers/einstein-figure.svg?cache=ec975fb1);--slackv2-colorBorderRowSelected:rgb(1, 118, 211);--slackv2-colorStrokeBrandHover:rgb(1, 118, 211);--slackv2-paletteNeutral30:rgb(68, 68, 68);--slackv2-varSpacingVerticalXxxSmall:0.125rem;--slackv2-paletteHotOrange10:rgb(40, 18, 2);--slackv2-colorTextButtonBrandDisabled:rgb(255, 255, 255);--slackv2-squareIconXSmallContent:0.5rem;--slackv2-varFontSize10:2rem;--slackv2-paletteRed60:rgb(254, 92, 76);--slackv2-varFontSize11:2.625rem;--slackv2-paletteRed65:rgb(254, 119, 101);--slackv2-buttonBorderRadius:.25rem;--slackv2-squareTappableXSmall:1.5rem;--slackv2-colorBackgroundGuidance:rgb(255, 255, 255);--slackv2-colorTextContextBarInverse:rgb(255, 255, 255);--slackv2-paletteNeutral20:rgb(46, 46, 46);--slackv2-fontFamilyHeading:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--slackv2-paletteRed70:rgb(254, 143, 125);--slackv2-brandHeaderContrastCoolActive:rgb(1, 68, 134);--slackv2-borderWidthThick:2px;--slackv2-pageHeaderShadow:none;--slackv2-spinnerSizeXxSmall:0.5rem;--slackv2-tableColorBackgroundHeader:rgb(255, 255, 255);--slackv2-pageHeaderColorBackgroundAlt:rgb(255, 255, 255);--slackv2-colorBorderBrandPrimaryHover:rgb(1, 118, 211);--slackv2-colorTextTabLabelActive:rgb(3, 45, 96);--slackv2-paletteNeutral50:rgb(116, 116, 116);--slackv2-colorBackgroundTempModalTint:rgba(126, 140, 153, 0.8);--slackv2-fontSizeMedium:1rem;--slackv2-colorBorderButtonBrand:rgb(1, 118, 211);--slackv2-paletteHotOrange30:rgb(126, 38, 0);--slackv2-paletteRed40:rgb(186, 5, 23);--slackv2-brandBandImageHeightSmall:6rem;--slackv2-colorTextInverseWeak:rgb(174, 174, 174);--slackv2-colorTextInverse:rgb(255, 255, 255);--slackv2-shadowLinkFocusInverse:0 0 3px #f3f3f3;--slackv2-squareIconXxSmallBoundary:1rem;--slackv2-lineHeightReset:1;--slackv2-verticalNavigationColorBackgroundShadeRowActive:rgb(243, 243, 243);--slackv2-colorBackgroundTempModal:rgba(126, 140, 153, 0.8);--slackv2-colorBackgroundToggleDisabled:rgb(174, 174, 174);--slackv2-colorGray13:rgb(8, 7, 7);--slackv2-colorGray10:rgb(81, 79, 77);--slackv2-paletteNeutral40:rgb(92, 92, 92);--slackv2-colorBorderInverse:#061c3f;--slackv2-carouselIndicatorColorBackgroundActive:rgb(1, 118, 211);--slackv2-colorBackgroundBackdrop:rgba(255, 255, 255, 0.75);--slackv2-colorGray12:rgb(43, 40, 38);--slackv2-colorGray11:rgb(62, 62, 60);--slackv2-colorTextContextBarActionTrigger:rgba(255, 255, 255, 0.4);--slackv2-paletteHotOrange20:rgb(74, 36, 19);--slackv2-colorBackgroundNotification:rgb(255, 255, 255);--slackv2-colorBackgroundPathStepActionCurrent:rgb(1, 68, 134);--slackv2-badgeColorBackgroundInverse:rgb(116, 116, 116);--slackv2-colorBorderSeparatorInverse:rgb(3, 45, 96);--slackv2-paletteRed50:rgb(234, 0, 30);--slackv2-colorBackgroundSpinnerDot:rgb(174, 174, 174);--slackv2-colorBackgroundButtonBrandActive:rgb(3, 45, 96);--slackv2-paletteHotOrange15:rgb(66, 22, 4);--slackv2-sliderHandleColorBackgroundFocus:rgb(1, 118, 211);--slackv2-spinnerSizeMedium:2rem;--slackv2-brandPrimary:rgb(27, 150, 255);--slackv2-paletteHotOrange50:rgb(216, 58, 0);--slackv2-colorTextLinkPrimaryFocus:rgb(1, 118, 211);--slackv2-colorTextInputDisabled:rgb(116, 116, 116);--slackv2-brandLogoImage:url(/_slds/images/logo-noname.svg?cache=380754d9);--slackv2-brandLight:rgb(244, 246, 254);--slackv2-paletteRed20:rgb(100, 1, 3);--slackv2-fillHeaderButton:rgb(174, 174, 174);--slackv2-varLineHeightText:1.5;--slackv2-colorBackgroundPathCurrent:rgb(255, 255, 255);--slackv2-colorBackgroundOffline:rgb(68, 68, 68);--slackv2-colorBorderTabSelected:rgb(1, 118, 211);--slackv2-colorTextWarning:#ffb75d;--slackv2-salesforceSansRegularWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Regular.woff);--slackv2-paletteHotOrange40:rgb(170, 48, 1);--slackv2-cardSpacingLarge:1.5rem;--slackv2-paletteRed30:rgb(142, 3, 15);--slackv2-fontSizeMediumA:1.125rem;--slackv2-borderRadiusMedium:0.25rem;--slackv2-colorPickerSliderThumbBorderColor:rgb(68, 68, 68);--slackv2-shadowSoftPrimary:none;--slackv2-zIndexDropdown:7000;--slackv2-paletteHotOrange70:rgb(255, 144, 110);--slackv2-verticalNavigationColorBackgroundShadeRowHover:rgb(243, 243, 243);--slackv2-squareIconMediumBoundary:2rem;--slackv2-colorBorderInpuDisabled:#a8b7c7;--slackv2-colorBackgroundButtonDefaultFocus:rgb(243, 243, 243);--slackv2-heightTappable:2.75rem;--slackv2-colorBackgroundToastError:rgb(234, 0, 30);--slackv2-brandBandDefaultImage:;--slackv2-durationQuickly:0.1s;--slackv2-colorBackgroundSelection:rgb(216, 230, 254);--slackv2-paletteHotOrange60:rgb(255, 93, 45);--slackv2-colorBackgroundActionbarIconUtility:rgb(116, 116, 116);--slackv2-colorBackgroundNotificationBadgeFocus:rgb(1, 68, 134);--slackv2-paletteHotOrange65:rgb(255, 120, 79);--slackv2-cardFooterTextAlign:right;--slackv2-colorBorderBrandDark:rgb(1, 68, 134);--slackv2-brandBackgroundDark:rgb(232, 232, 232);--slackv2-avatarGroupColorBackgroundLightest:rgb(255, 255, 255);--slackv2-colorTextContextBar:rgb(68, 68, 68);--slackv2-inputStaticFontWeight:400;--slackv2-paletteRed10:rgb(48, 12, 1);--slackv2-colorTextLinkDisabled:rgb(3, 45, 96);--slackv2-colorTextPathCurrent:rgb(1, 68, 134);--slackv2-paletteRed15:rgb(74, 12, 4);--slackv2-zIndexOverlay:8000;--slackv2-buttonColorBorderPrimary:rgb(243, 243, 243);--slackv2-paletteHotOrange90:rgb(255, 222, 213);--slackv2-shadowImage:0 1px 1px rgba(0, 0, 0, 0.16);--slackv2-paletteHotOrange95:rgb(254, 241, 237);--slackv2-cardHeaderPadding:0.75rem 1rem 0;--slackv2-colorBorderSeparatorAlt2:rgb(201, 201, 201);--slackv2-fillBrandActive:rgb(3, 45, 96);--slackv2-fontSizeTextMedium:1rem;--slackv2-spacingXSmall:0.5rem;--slackv2-chatMessageColorBackgroundOutboundAgent:rgb(116, 116, 116);--slackv2-colorBackgroundButtonIconHover:rgb(243, 243, 243);--slackv2-sliderHandleColorBackgroundActive:rgb(1, 118, 211);--slackv2-colorBorderSuccess:rgb(145, 219, 139);--slackv2-colorTextIconInverseHover:rgb(255, 255, 255);--slackv2-componentSpacingPadding:1rem;--slackv2-colorBorderDestructiveActive:rgb(142, 3, 15);--slackv2-colorBackgroundButtonInverseDisabled:rgba(0, 0, 0, 0);--slackv2-colorTextTabLabelFocus:rgb(1, 68, 134);--slackv2-paletteHotOrange80:rgb(254, 185, 165);--slackv2-colorBackgroundNotificationBadge:rgb(234, 0, 30);--slackv2-zIndexReminder:8500;--slackv2-colorBackgroundImageOverlay:rgba(0, 0, 0, 0.4);--slackv2-colorBackgroundReminderHover:rgb(255, 255, 255);--slackv2-colorTextPathCurrentHover:rgb(3, 45, 96);--slackv2-colorBackgroundCustomer:rgb(254, 147, 57);--slackv2-colorBackgroundButtonDefault:rgb(255, 255, 255);--slackv2-colorBackgroundInverseLight:rgb(3, 45, 96);--slackv2-salesforceSansBoldWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Bold.woff);--slackv2-progressColorBorderActive:rgb(27, 150, 255);--slackv2-fontSizeLarge:1.25rem;--slackv2-brandHeaderContrastWeakActive:rgb(129, 129, 129);--slackv2-brandHeaderContrastWarmActive:rgb(186, 5, 23);--slackv2-squareToggleSlider:1.25rem;--slackv2-progressBarColorBackgroundFillSuccess:rgb(46, 132, 74);--slackv2-colorBackgroundButtonBrand:rgb(1, 118, 211);--slackv2-colorBackgroundWarningDark:rgb(254, 147, 57);--slackv2-colorTextIconUtility:rgb(174, 174, 174);--slackv2-colorBackgroundScrollbar:rgb(243, 243, 243);--slackv2-chatMessageColorBackgroundStatus:rgb(255, 255, 255);--slackv2-colorBackgroundTempModalTintAlt:rgba(255, 255, 255, 0.75);--slackv2-pageHeaderBorderRadius:0;--slackv2-palettePink95:rgb(254, 240, 243);--slackv2-welcomeMatColorIconComplete:rgb(201, 201, 201);--slackv2-palettePink90:rgb(253, 221, 227);--slackv2-paletteViolet50:rgb(186, 1, 255);--slackv2-paletteTeal30:rgb(2, 77, 76);--slackv2-colorTextIconInverseDisabled:rgba(255, 255, 255, 0.15);--slackv2-bannerGroupDefaultImage:;--slackv2-colorBorderBrand:rgb(27, 150, 255);--slackv2-colorBackgroundInfo:#54698d;--slackv2-heightToggle:1.5rem;--slackv2-badgeColorBackgroundLightest:rgb(255, 255, 255);--slackv2-brandBandColorBackgroundSecondary:rgba(0, 0, 0, 0);--slackv2-shadowSoftPrimaryActive:none;--slackv2-colorTextIconDefaultHint:rgb(174, 174, 174);--slackv2-colorBackgroundChromeMobile:rgb(1, 118, 211);--slackv2-colorPickerSwatchSize:1.25rem;--slackv2-colorBackgroundPathIncomplete:rgb(243, 243, 243);--slackv2-paletteTeal40:rgb(5, 103, 100);--slackv2-colorTextToggleDisabled:rgb(201, 201, 201);--slackv2-paletteViolet40:rgb(150, 2, 199);--slackv2-colorTextLinkInverseHover:rgba(255, 255, 255, 0.75);--slackv2-palettePink80:rgb(253, 182, 197);--slackv2-zIndexModal:9000;--slackv2-pageHeaderIconSize:2.25rem;--slackv2-colorTextDestructiveHover:rgb(186, 5, 23);--slackv2-colorBorderCanvasElementSelection:rgb(26, 185, 255);--slackv2-colorBackgroundSuccess:#4bca81;--slackv2-carouselIndicatorColorBackground:rgb(255, 255, 255);--slackv2-sliderTrackHeight:4px;--slackv2-squareIconSmallContent:0.75rem;--slackv2-colorBackgroundInputDisabled:rgb(243, 243, 243);--slackv2-paletteTeal50:rgb(11, 130, 124);--slackv2-palettePink70:rgb(254, 138, 167);--slackv2-paletteViolet30:rgb(115, 3, 148);--slackv2-mqSmall:only screen and (max-width: 47.9375em);--slackv2-brandBandImageHeightLarge:18.75rem;--slackv2-carouselIndicatorWidth:1rem;--slackv2-colorTextLinkActive:rgb(3, 45, 96);--slackv2-squareIconXxSmallContent:.875rem;--slackv2-fontSizeXSmall:0.625rem;--slackv2-palettePink65:rgb(254, 114, 152);--slackv2-sliderColorBackgroundDisabled:rgb(243, 243, 243);--slackv2-colorContrastSecondary:rgb(255, 255, 255);--slackv2-welcomeMatColorBackgroundProgressBar:rgb(255, 255, 255);--slackv2-globalActionIconSize:1.5rem;--slackv2-paletteViolet20:rgb(72, 26, 84);--slackv2-fontSizeHeadingSmall:0.875rem;--slackv2-colorPickerRangeIndicatorSize:0.75rem;--slackv2-paletteOrange15:rgb(55, 30, 3);--slackv2-sliderHandleSize:1rem;--slackv2-tableBorderRadius:0;--slackv2-paletteTeal60:rgb(6, 165, 154);--slackv2-userDefaultAvatarSmall:url(/_slds/images/profile_avatar_96.png?cache=3c01f25f);--slackv2-buttonColorBackgroundPrimary:rgb(255, 255, 255);--slackv2-colorPickerInputCustomHexWidth:4.2rem;--slackv2-paletteOrange10:rgb(32, 22, 0);--slackv2-palettePink60:rgb(255, 83, 138);--slackv2-paletteTeal65:rgb(3, 180, 167);--slackv2-colorBackgroundRowSelected:rgb(243, 243, 243);--slackv2-colorBackgroundContextBarBrandAccent:rgb(13, 157, 218);--slackv2-fontFamilyMonospace:Consolas, Menlo, Monaco, Courier, monospace;--slackv2-cardFooterColorBorder:rgba(0, 0, 0, 0);--slackv2-palettePurple80:rgb(215, 191, 242);--slackv2-varSpacingHorizontalLarge:1.5rem;--slackv2-colorTextRequired:rgb(234, 0, 30);--slackv2-elevationShadow16:0 16px 16px 0 rgba(0, 0, 0, 0.16);--slackv2-paletteViolet10:rgb(46, 0, 57);--slackv2-shadowHardPrimary:none;--slackv2-paletteOrange20:rgb(62, 43, 2);--slackv2-paletteViolet15:rgb(61, 1, 87);--slackv2-radioButtonGroupLineHeightTouch:2.69rem;--slackv2-colorBackgroundBrandPrimary:rgb(1, 118, 211);--slackv2-paletteTeal70:rgb(1, 195, 179);--slackv2-colorBackgroundUtilityBarActive:rgb(27, 150, 255);--slackv2-zIndexSticky:100;--slackv2-colorBackgroundContextBarShadow:linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0, rgba(0, 0, 0, 0) 100%);--slackv2-paletteTeal80:rgb(4, 225, 203);--slackv2-palettePurple90:rgb(236, 225, 249);--slackv2-squareIconUtilityLarge:1.5rem;--slackv2-fontSize10:2rem;--slackv2-groupDefaultAvatarMedium:url(/_slds/images/group_avatar_160.png?cache=b8fe8e83);--slackv2-elevationShadow32:0 32px 32px 0 rgba(0, 0, 0, 0.16);--slackv2-paletteOrange30:rgb(95, 62, 2);--slackv2-colorBorderButtonInverseDisabled:rgba(255, 255, 255, 0.15);--slackv2-fontSize11:2.625rem;--slackv2-einsteinHeaderTextShadow:#cfe9fe;--slackv2-palettePurple95:rgb(246, 242, 251);--slackv2-squareTappableXxSmall:1.25rem;--slackv2-colorBackgroundDestructiveHover:rgb(142, 3, 15);--slackv2-fontSize9:1.75rem;--slackv2-colorBackgroundLight:rgb(255, 255, 255);--slackv2-fontSize8:1.5rem;--slackv2-paletteTeal90:rgb(172, 243, 228);--slackv2-shadowActive:0 0 2px #0176d3;--slackv2-fontSize1:0.625rem;--slackv2-paletteNeutral100:rgb(255, 255, 255);--slackv2-colorTextLink:rgb(1, 118, 211);--slackv2-pageHeaderTitleFontSize:1.125rem;--slackv2-fontSize3:0.8125rem;--slackv2-fontSize2:0.75rem;--slackv2-colorTextLinkInverseDisabled:rgba(255, 255, 255, 0.15);--slackv2-fontSize5:1rem;--slackv2-fontSize4:0.875rem;--slackv2-fontSize7:1.25rem;--slackv2-fontSize6:1.125rem;--slackv2-spacingNone:0;--slackv2-paletteOrange40:rgb(130, 81, 1);--slackv2-inputReadonlyFontWeight:400;--slackv2-palettePurple60:rgb(173, 123, 238);--slackv2-paletteTeal95:rgb(222, 249, 243);--slackv2-colorStrokeHeaderButton:rgb(174, 174, 174);--slackv2-typingIconDotColorBackgroundGray:rgb(201, 201, 201);--slackv2-palettePurple65:rgb(183, 141, 239);--slackv2-pageHeaderTitleFontWeight:400;--slackv2-colorBackgroundButtonIconFocus:rgb(243, 243, 243);--slackv2-groupDefaultAvatarSmall:url(/_slds/images/group_avatar_96.png?cache=d0659d12);--slackv2-colorBackgroundModalBrand:rgb(1, 68, 134);--slackv2-colorTextInverseActive:rgb(26, 185, 255);--slackv2-colorBackgroundHighlightSearch:rgb(255, 240, 63);--slackv2-paletteOrange50:rgb(169, 100, 4);--slackv2-colorBackgroundSuccessDark:rgb(46, 132, 74);--slackv2-shadowOverlay:0 -2px 4px rgba(0, 0, 0, 0.07);--slackv2-sizeXSmall:12rem;--slackv2-colorBackgroundDestructive:#c23934;--slackv2-typingIconDotSize:.5rem;--slackv2-palettePurple70:rgb(194, 158, 241);--slackv2-colorBorderInfo:rgb(116, 116, 116);--slackv2-colorTextTabLabel:rgb(3, 45, 96);--slackv2-palettePink15:rgb(75, 6, 32);--slackv2-popoverWalkthroughColorBackgroundAlt:rgb(1, 118, 211);--slackv2-durationImmediately:0.05s;--slackv2-palettePink10:rgb(55, 1, 20);--slackv2-elevationInverseShadow16:0 -16px 16px 0 rgba(0, 0, 0, 0.16);--slackv2-salesforceSansLightWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Light.woff2);--slackv2-splitViewWidth:25rem;--slackv2-colorBorderIconInverseHint:rgba(255, 255, 255, 0.5);--slackv2-brandDisabled:rgb(201, 199, 197);--slackv2-paletteOrange60:rgb(221, 122, 1);--slackv2-palettePurple40:rgb(117, 38, 227);--slackv2-paletteOrange65:rgb(243, 131, 3);--slackv2-progressColorBackground:rgb(255, 255, 255);--slackv2-colorBorderContextBarThemeDefaultActive:rgb(243, 243, 243);--slackv2-avatarGroupColorBackgroundInverse:rgb(116, 116, 116);--slackv2-colorBackgroundAlt2:rgb(243, 243, 243);--slackv2-cardFontWeight:400;--slackv2-colorPickerSwatchShadow:inset 0 0 1px rgba(0,0,0,0.4);--slackv2-paletteOrange70:rgb(254, 147, 57);--slackv2-colorTextIconBrand:rgb(1, 118, 211);--slackv2-colorTextButtonDefault:rgb(1, 118, 211);--slackv2-palettePurple50:rgb(144, 80, 233);--slackv2-pathButtonWidthFixed:13rem;--slackv2-sizeLarge:25rem;--slackv2-userDefaultAvatarMedium:url(/_slds/images/profile_avatar_160.png?cache=bfba2c9a);--slackv2-colorBorderDestructive:rgb(234, 0, 30);--slackv2-colorTextWeak:rgb(116, 116, 116);--slackv2-fontSizeHeadingMedium:1.125rem;--slackv2-mqSingleColumnRecordLayout:(max-width: 599px);--slackv2-colorBackgroundInputSearch:rgba(0, 0, 0, 0.16);--slackv2-welcomeMatBackgroundColorInfo:rgb(207, 233, 254);--slackv2-colorBorderBrandPrimary:rgb(27, 150, 255);--slackv2-colorBackgroundInverse:rgb(0, 22, 57);--slackv2-maxWidthActionOverflowMenu:512px;--slackv2-paletteNeutral10:rgb(24, 24, 24);--slackv2-carouselColorBackground:rgb(255, 255, 255);--slackv2-colorTextLabel:rgb(116, 116, 116);--slackv2-colorBackgroundButtonSuccessActive:rgb(46, 132, 74);--slackv2-squareIconLarge:3.125rem;--slackv2-spinnerSizeXSmall:1rem;--slackv2-paletteOrange80:rgb(255, 186, 144);--slackv2-cardSpacingMargin:1rem;--slackv2-colorTextBrowserActive:rgba(0, 0, 0, 0.4);--slackv2-colorBackgroundButtonBrandHover:rgb(1, 68, 134);--slackv2-chatMessageColorBackgroundOutbound:rgb(1, 68, 134);--slackv2-colorTextIconDefaultActive:rgb(3, 45, 96);--slackv2-palettePurple20:rgb(64, 16, 117);--slackv2-colorTextIconDefaultHover:rgb(1, 118, 211);--slackv2-colorTextLinkPrimary:rgb(1, 118, 211);--slackv2-fontSizeTextXSmall:0.75rem;--slackv2-colorBackgroundToast:rgb(116, 116, 116);--slackv2-fontSizeXxLarge:1.75rem;--slackv2-heightSalesPath:2rem;--slackv2-colorTextIconDefaultHintBorderless:rgb(243, 243, 243);--slackv2-paletteOrange95:rgb(255, 241, 234);--slackv2-colorForegroundPrimary:rgb(255, 255, 255);--slackv2-paletteOrange90:rgb(254, 223, 208);--slackv2-colorBackgroundRowNew:rgb(205, 239, 196);--slackv2-fontSizeTextLarge:1.125rem;--slackv2-paletteGreen15:rgb(12, 41, 18);--slackv2-colorBackgroundShade:rgb(243, 243, 243);--slackv2-paletteGreen10:rgb(7, 27, 18);--slackv2-palettePurple30:rgb(90, 27, 169);--slackv2-varSpacingXxxSmall:0.125rem;--slackv2-brandLightActive:rgb(227, 229, 237);--slackv2-welcomeMatTextColorInfo:rgb(3, 45, 96);--slackv2-colorBackgroundIconWaffle:rgb(116, 116, 116);--slackv2-colorBackgroundContextBarItemHover:rgb(255, 255, 255);--slackv2-fontSizeXLargeA:1.57rem;--slackv2-colorBackgroundPathCompleteHover:rgba(4,132,75,.95);--slackv2-palettePink50:rgb(227, 6, 106);--slackv2-paletteViolet90:rgb(242, 222, 254);--slackv2-paletteGreen20:rgb(28, 51, 38);--slackv2-paletteViolet95:rgb(249, 240, 255);--slackv2-colorBorderContextBarThemeDefaultHover:rgb(50, 29, 113);--slackv2-squareIconMedium:2.375rem;--slackv2-textTransform:none;--slackv2-colorBackgroundBrandPrimaryHover:rgb(1, 68, 134);--slackv2-colorTextSuccess:rgb(46, 132, 74);--slackv2-carouselIndicatorColorBackgroundFocus:rgb(1, 68, 134);--slackv2-colorBackgroundChromeDesktop:rgb(255, 255, 255);--slackv2-borderStrokeWidthThick:2px;--slackv2-colorBackgroundReminder:rgb(243, 243, 243);--slackv2-palettePurple15:rgb(48, 11, 96);--slackv2-colorTextToast:rgb(243, 243, 243);--slackv2-paletteViolet80:rgb(229, 185, 254);--slackv2-colorBackgroundAlt:rgb(255, 255, 255);--slackv2-palettePink40:rgb(182, 5, 84);--slackv2-paletteGreen30:rgb(25, 78, 49);--slackv2-palettePurple10:rgb(36, 6, 67);--slackv2-elevationInverseShadow32:0 -32px 32px 0 rgba(0, 0, 0, 0.16);--slackv2-colorBorderCustomer:rgb(254, 147, 57);--slackv2-tableColorBackgroundStripes:rgb(243, 243, 243);--slackv2-varSpacingVerticalSmall:0.75rem;--slackv2-palettePink30:rgb(138, 3, 62);--slackv2-paletteViolet70:rgb(216, 146, 254);--slackv2-colorBorderContextBarInverseItem:rgba(255, 255, 255, 0.2);--slackv2-utilityBarColorBackgroundNotificationBadge:rgb(254, 92, 76);--slackv2-colorTextTabLabelDisabled:rgb(243, 243, 243);--slackv2-heightInput:1.875rem;--slackv2-squareTappable:2.75rem;--slackv2-fontSizeSmall:0.75rem;--slackv2-paletteGreen40:rgb(57, 101, 71);--slackv2-tableColorBackgroundHeaderFocus:rgb(255, 255, 255);--slackv2-salesforceSansRegularWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Regular.woff2);--slackv2-varSpacingHorizontalXxLarge:3rem;--slackv2-paletteViolet65:rgb(209, 125, 254);--slackv2-progressBarColorBackgroundFill:rgb(26, 185, 255);--slackv2-colorBorderSeparator:rgb(243, 243, 243);--slackv2-paletteGreen50:rgb(46, 132, 74);--slackv2-brandHeaderIconDisabled:rgba(145, 145, 145, 0.25);--slackv2-palettePink20:rgb(97, 2, 42);--slackv2-splitViewColorBackground:rgb(243, 243, 243);--slackv2-colorBackgroundSecondary:rgb(243, 243, 243);--slackv2-colorTextLinkFocus:rgb(1, 68, 134);--slackv2-paletteViolet60:rgb(203, 101, 255);--JSFS-paletteIndigo10:rgb(32, 6, 71);--JSFS-popoverWalkthroughHeaderImage:;--JSFS-zIndexDialog:6000;--JSFS-colorPickerSelectorWidth:14rem;--JSFS-nubbinSizeDefault:1rem;--JSFS-paletteCloudBlue40:rgb(5, 98, 138);--JSFS-colorBackgroundContextBarInverseItemHover:rgba(255, 255, 255, 0.2);--JSFS-dropZoneSlotHeight:0.25rem;--JSFS-colorTextTabLabelSelected:rgb(1, 118, 211);--JSFS-colorStrokeBrandActive:rgb(3, 45, 96);--JSFS-paletteIndigo15:rgb(31, 9, 116);--JSFS-cardBodyPadding:0 1rem;--JSFS-varSpacingHorizontalSmall:0.75rem;--JSFS-tableColorBackgroundHeaderResizableHandle:rgb(174, 174, 174);--JSFS-colorBackgroundPathActiveHover:rgb(3, 45, 96);--JSFS-brandPrimaryTransparent:rgba(21, 137, 238, 0.1);--JSFS-brandPrimaryTransparent40:rgba(21, 137, 238, 0.4);--JSFS-colorBorderButtonDefault:rgb(201, 201, 201);--JSFS-paletteIndigo20:rgb(50, 29, 113);--JSFS-popoverColorText:rgb(201, 201, 201);--JSFS-paletteCloudBlue30:rgb(8, 73, 104);--JSFS-colorTextButtonDefaultActive:rgb(1, 118, 211);--JSFS-colorPickerSliderHeight:1.5rem;--JSFS-colorTextIconInverse:rgb(255, 255, 255);--JSFS-heightFooter:3.75rem;--JSFS-splitViewColorBorder:rgb(201, 201, 201);--JSFS-colorBorderRowSelectedHover:rgb(27, 150, 255);--JSFS-fontSizeTextXxSmall:0.625rem;--JSFS-lineHeightHeading:1.25;--JSFS-cardHeaderMargin:0 0 0.75rem;--JSFS-paletteIndigo30:rgb(47, 44, 183);--JSFS-mqMediumLandscape:only screen and (min-width: 48em) and (min-aspect-ratio: 4/3);--JSFS-brandBandImageHeightMedium:12.5rem;--JSFS-illustrationColorSecondary:rgb(207, 233, 254);--JSFS-zIndexDefault:1;--JSFS-colorBorderSelectionActive:rgb(243, 243, 243);--JSFS-paletteCloudBlue20:rgb(2, 50, 72);--JSFS-utilityBarColorBackgroundNotificationFocus:rgb(201, 201, 201);--JSFS-colorTextIconDefaultDisabled:rgb(201, 201, 201);--JSFS-colorTextBrand:rgb(27, 150, 255);--JSFS-durationToastMedium:9.6s;--JSFS-colorBackgroundButtonIconActive:rgb(243, 243, 243);--JSFS-brandHeaderContrastWeak:rgb(145, 145, 145);--JSFS-colorBackgroundNotificationNew:rgb(243, 243, 243);--JSFS-brandHeaderContrastInverseActive:rgb(238, 238, 238);--JSFS-colorBackgroundInputCheckboxSelected:rgb(27, 150, 255);--JSFS-progressColorBorder:rgb(255, 255, 255);--JSFS-spacingXxxSmall:0.125rem;--JSFS-paletteIndigo40:rgb(58, 73, 218);--JSFS-colorBackgroundProgressRingContent:rgb(255, 255, 255);--JSFS-lineHeightButtonSmall:1.75rem;--JSFS-salesforceSansBoldItalicWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-BoldItalic.woff);--JSFS-brandBackgroundDarkTransparent:rgba(221, 219, 218, 0);--JSFS-colorPickerThumbWidth:0.375rem;--JSFS-paletteCloudBlue10:rgb(0, 26, 40);--JSFS-brandHeaderIconActive:rgb(129, 129, 129);--JSFS-widthStageLeftCollapsed:4rem;--JSFS-paletteCloudBlue15:rgb(10, 38, 54);--JSFS-colorBorderOffline:rgb(68, 68, 68);--JSFS-colorBackgroundUtilityBarHover:rgb(243, 243, 243);--JSFS-sliderHandleColorBackgroundHover:rgb(1, 118, 211);--JSFS-colorTextIconInverseHint:rgba(255, 255, 255, 0.5);--JSFS-sizeMedium:20rem;--JSFS-brandPrimaryTransparent10:rgba(21, 137, 238, 0.1);--JSFS-colorBorderIconInverseHintHover:rgba(255, 255, 255, 0.75);--JSFS-colorTextDefault:rgb(3, 45, 96);--JSFS-paletteIndigo50:rgb(88, 103, 232);--JSFS-progressBarHeight:0.125rem;--JSFS-colorBackgroundWarning:rgb(254, 147, 57);--JSFS-colorBackgroundBrandPrimaryActive:rgb(3, 45, 96);--JSFS-paletteBlue90:rgb(216, 230, 254);--JSFS-brandHeaderContrastCool:rgb(1, 68, 134);--JSFS-paletteCloudBlue80:rgb(144, 208, 254);--JSFS-paletteBlue95:rgb(238, 244, 255);--JSFS-colorBorderSelectionHover:rgb(27, 150, 255);--JSFS-zIndexPopup:5000;--JSFS-borderRadiusLarge:0.5rem;--JSFS-colorTextIconInverseHintHover:rgba(255, 255, 255, 0.75);--JSFS-popoverBrandBorderWidth:0.25rem;--JSFS-fontSizeHeadingXLarge:1.75rem;--JSFS-typingIconDotColorBackgroundGrayDark:rgb(201, 201, 201);--JSFS-paletteIndigo65:rgb(142, 155, 239);--JSFS-varSpacingLarge:1.5rem;--JSFS-pageHeaderSpacingMargin:0;--JSFS-fontSizeTextXLarge:1.25rem;--JSFS-paletteIndigo60:rgb(127, 140, 237);--JSFS-paletteCloudBlue70:rgb(26, 185, 255);--JSFS-welcomeMatColorActionShadow:rgba(0, 0, 0, 0.05);--JSFS-colorTextBrowser:rgb(255, 255, 255);--JSFS-welcomeMatSpacingInfo:7.75rem;--JSFS-mqLarge:only screen and (min-width: 64.0625em);--JSFS-paletteIndigo70:rgb(158, 169, 241);--JSFS-squareTappableSmall:2rem;--JSFS-colorTextActionLabel:rgb(116, 116, 116);--JSFS-paletteCloudBlue60:rgb(13, 157, 218);--JSFS-paletteBlue70:rgb(120, 176, 253);--JSFS-colorBorderTabActive:rgb(255, 255, 255);--JSFS-paletteCloudBlue65:rgb(8, 171, 237);--JSFS-globalnavigationItemHeightAccentFocus:4px;--JSFS-colorBorderDestructiveHover:rgb(186, 5, 23);--JSFS-buttonLineHeightTouch:2.65rem;--JSFS-colorTextCustomer:rgb(254, 147, 57);--JSFS-squareIconUtilitySmall:1rem;--JSFS-colorBackgroundModalButtonActive:rgba(0, 0, 0, 0.16);--JSFS-colorTextBrandPrimary:rgb(255, 255, 255);--JSFS-squareIconXSmallBoundary:1.25rem;--JSFS-widthToggle:3rem;--JSFS-paletteIndigo80:rgb(190, 199, 246);--JSFS-welcomeMatMinHeight:25rem;--JSFS-zIndexDocked:4;--JSFS-squareIconMediumBoundaryAlt:2.25rem;--JSFS-colorBorderSelection:rgb(1, 118, 211);--JSFS-paletteBlue80:rgb(170, 203, 255);--JSFS-paletteCloudBlue50:rgb(16, 124, 173);--JSFS-brandHeaderContrastActive:rgb(80, 80, 80);--JSFS-formLabelFontSize:0.75rem;--JSFS-colorTextActionLabelActive:rgb(3, 45, 96);--JSFS-colorBackgroundBackdropTint:rgb(243, 243, 243);--JSFS-durationSlowly:0.4s;--JSFS-colorBackgroundRowHover:rgb(243, 243, 243);--JSFS-popoverWalkthroughAltNubbinColorBackground:rgb(1, 118, 211);--JSFS-spinnerSizeSmall:1.25rem;--JSFS-sliderTrackColorBackgroundFill:rgb(27, 150, 255);--JSFS-welcomeMatWidth:52.0625rem;--JSFS-paletteIndigo95:rgb(241, 243, 251);--JSFS-paletteIndigo90:rgb(224, 229, 248);--JSFS-filesZIndexHover:5;--JSFS-colorTextPill:rgb(1, 118, 211);--JSFS-varSpacingSmall:0.75rem;--JSFS-heightDockedBar:2.5rem;--JSFS-paletteBlue50:rgb(1, 118, 211);--JSFS-colorTextTabLabelHover:rgb(1, 68, 134);--JSFS-fontSizeHeadingXSmall:0.75rem;--JSFS-colorStrokeDisabled:rgb(243, 243, 243);--JSFS-widthPathBorderCurrent:0.125rem;--JSFS-colorBackgroundButtonDefaultHover:rgb(243, 243, 243);--JSFS-varSpacingVerticalXxSmall:0.25rem;--JSFS-colorTextButtonDefaultHover:rgb(1, 118, 211);--JSFS-durationPromptly:0.2s;--JSFS-colorBorderPathCurrent:rgb(1, 68, 134);--JSFS-colorBackgroundButtonDefaultActive:rgb(243, 243, 243);--JSFS-colorTextStageLeft:rgb(243, 243, 243);--JSFS-colorBorderHint:rgb(3, 45, 96);--JSFS-colorTextPrimary:rgb(3, 45, 96);--JSFS-brandBandColorBackgroundSecondaryTransparent:rgba(0, 0, 0, 0);--JSFS-paletteBlue60:rgb(27, 150, 255);--JSFS-cardColorBackground:rgb(255, 255, 255);--JSFS-brandHeaderIcon:rgb(145, 145, 145);--JSFS-paletteBlue65:rgb(87, 163, 253);--JSFS-spacingLarge:1.5rem;--JSFS-pageHeaderColorBorder:rgba(0, 0, 0, 0);--JSFS-cardFooterMargin:0.75rem;--JSFS-fontSizeTextSmall:0.8125rem;--JSFS-colorTextLinkInverseActive:rgba(255, 255, 255, 0.5);--JSFS-durationToastShort:4.8s;--JSFS-lineHeightButton:1.875rem;--JSFS-panelDockedLeftShadow:1px 0 3px rgba(0,0,0,0.25);--JSFS-panelDockedRightShadow:-1px 0 3px 0 rgba(0,0,0,0.25);--JSFS-colorTextLinkPrimaryHover:rgb(1, 118, 211);--JSFS-shadowButton:0 1px 1px 0 rgba(0, 0, 0, 0.05);--JSFS-welcomeMatMaxHeight:37.5rem;--JSFS-colorBorderToggleChecked:rgb(255, 255, 255);--JSFS-shadowHeader:0 2px 4px rgba(0, 0, 0, 0.07);--JSFS-sizeXxLarge:60rem;--JSFS-colorBackgroundDockedPanelHeader:rgb(255, 255, 255);--JSFS-paletteBlue30:rgb(1, 68, 134);--JSFS-lineHeightSalespath:1.5rem;--JSFS-shadowDrag:0 2px 4px 0 rgba(0, 0, 0, 0.40);--JSFS-colorBackgroundPathExpanded:rgb(255, 255, 255);--JSFS-colorBackground:rgb(243, 243, 243);--JSFS-colorBackgroundInput:rgb(255, 255, 255);--JSFS-sizeSmall:15rem;--JSFS-userDefaultAvatar:url(/_slds/images/profile_avatar_200.png?cache=7bdcafae);--JSFS-colorTextButtonInverse:rgb(243, 243, 243);--JSFS-colorBackgroundInputCheckboxDisabled:rgb(201, 201, 201);--JSFS-tableColorTextHeader:rgb(68, 68, 68);--JSFS-paletteBlue40:rgb(11, 92, 171);--JSFS-cardColorBorder:rgb(201, 201, 201);--JSFS-squareIconUtilityMedium:1.25rem;--JSFS-colorBackgroundButtonSuccessHover:rgb(46, 132, 74);--JSFS-colorBorderButtonBrandDisabled:rgba(0, 0, 0, 0);--JSFS-fontSizeHeadingXxSmall:0.625rem;--JSFS-colorBackgroundButtonInverseActive:rgba(0, 0, 0, 0.24);--JSFS-illustrationEmptyStateEvents:url(/_slds/images/illustrations/empty-state-events.svg?cache=985b247a);--JSFS-colorBackgroundToggle:rgb(174, 174, 174);--JSFS-colorBackgroundStencil:rgb(243, 243, 243);--JSFS-welcomeMatCheckSize:0.625rem;--JSFS-colorTextButtonBrandHover:rgb(255, 255, 255);--JSFS-buttonColorBackgroundSecondary:rgba(255, 255, 255, 0.8);--JSFS-paletteBlue10:rgb(0, 22, 57);--JSFS-varSpacingVerticalLarge:1.5rem;--JSFS-colorBorderReminder:rgb(243, 243, 243);--JSFS-colorBrandDark:rgb(1, 118, 211);--JSFS-paletteBlue15:rgb(3, 35, 77);--JSFS-colorBorderBrandPrimaryFocus:rgb(1, 118, 211);--JSFS-salesforceSansItalicWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Italic.woff);--JSFS-colorBorderBrandPrimaryActive:rgb(3, 45, 96);--JSFS-datepickerColorTextDayAdjacentMonth:rgb(116, 116, 116);--JSFS-colorBorderErrorAlt:rgb(254, 143, 125);--JSFS-shadowReminder:0 2px 3px 0 rgba(0, 0, 0, 0.20);--JSFS-brandTextLinkActive:rgb(1, 68, 134);--JSFS-pageHeaderColorBackground:rgb(243, 243, 243);--JSFS-salesforceSansBoldWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Bold.woff2);--JSFS-fontSizeHeadingLarge:1.5rem;--JSFS-colorBackgroundStencilAlt:rgb(243, 243, 243);--JSFS-paletteBlue20:rgb(3, 45, 96);--JSFS-elevationInverseShadow3Below:0 -3px 3px 0 rgba(0, 0, 0, 0.16) inset;--JSFS-varSpacingHorizontalXxSmall:0.25rem;--JSFS-colorBorderSeparatorAlt:rgb(201, 201, 201);--JSFS-colorPickerRangeHeight:5rem;--JSFS-colorBackgroundButtonIcon:rgba(0, 0, 0, 0);--JSFS-paletteTeal15:rgb(7, 40, 37);--JSFS-buttonIconColorBorderPrimary:rgb(255, 255, 255);--JSFS-brandAccessibleActive:rgb(1, 68, 134);--JSFS-paletteYellow80:rgb(252, 192, 3);--JSFS-zIndexSpinner:9050;--JSFS-colorBackgroundContextTabBarItem:rgb(255, 255, 255);--JSFS-fontWeightBold:700;--JSFS-paletteTeal10:rgb(7, 27, 18);--JSFS-colorBackgroundContextBarItemActive:rgb(255, 255, 255);--JSFS-shadowFocusInset:0 0 2px 2px #1b96ff inset;--JSFS-colorBackgroundAltInverse:rgb(3, 45, 96);--JSFS-colorBackgroundPathIncompleteHover:rgb(201, 201, 201);--JSFS-squareIconMediumContent:1rem;--JSFS-colorBackgroundContextBar:rgb(255, 255, 255);--JSFS-colorTextInverseHover:rgb(174, 174, 174);--JSFS-colorBackgroundInputActive:rgb(255, 255, 255);--JSFS-brandContrast:rgb(26, 27, 30);--JSFS-colorTextSecondary:rgb(116, 116, 116);--JSFS-fillHeaderButtonHover:rgb(1, 68, 134);--JSFS-fontFamilyText:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--JSFS-welcomeMatCompleteIconSize:1.25rem;--JSFS-varSpacingXxLarge:3rem;--JSFS-paletteYellow95:rgb(251, 243, 224);--JSFS-paletteYellow90:rgb(249, 227, 182);--JSFS-brandBackgroundPrimary:rgb(250, 250, 249);--JSFS-paletteTeal20:rgb(2, 52, 52);--JSFS-progressRingWidth:0.1875rem;--JSFS-paletteYellow65:rgb(215, 147, 4);--JSFS-paletteYellow60:rgb(202, 133, 1);--JSFS-colorBorderInputCheckboxSelectedCheckmark:rgb(255, 255, 255);--JSFS-colorBorderCanvasElementSelectionHover:rgb(1, 68, 134);--JSFS-borderRadiusSmall:0.125rem;--JSFS-progressBarColorBackground:rgb(201, 201, 201);--JSFS-durationInstantly:0s;--JSFS-colorBackgroundToastSuccess:rgb(46, 132, 74);--JSFS-tabsFontWeight:400;--JSFS-colorBackgroundPost:rgb(243, 243, 243);--JSFS-colorTextPlaceholderInverse:rgb(243, 243, 243);--JSFS-colorTextInputIcon:rgb(174, 174, 174);--JSFS-sliderHandleShadow:rgba(0, 0, 0, 0.16) 0 2px 3px;--JSFS-paletteYellow70:rgb(228, 162, 1);--JSFS-fontWeightLight:300;--JSFS-colorTextError:rgb(234, 0, 30);--JSFS-varSpacingXxSmall:0.25rem;--JSFS-colorBorderInput:rgb(201, 201, 201);--JSFS-brandAccessible:rgb(1, 118, 211);--JSFS-pageColorBackgroundPrimary:rgb(255, 255, 255);--JSFS-cardShadow:none;--JSFS-lineClamp:3;--JSFS-welcomeMatWidthProgressBar:12.5rem;--JSFS-progressColorBackgroundShade:rgb(243, 243, 243);--JSFS-globalActionFillHover:rgb(1, 68, 134);--JSFS-illustrationEmptyStateAssistant:url(/_slds/images/illustrations/empty-state-assistant.svg?cache=127a789e);--JSFS-varSpacingHorizontalXSmall:0.5rem;--JSFS-colorPickerInputCustomHexFontSize:0.75rem;--JSFS-varSpacingMedium:1rem;--JSFS-colorBackgroundShadeDark:rgb(201, 201, 201);--JSFS-colorPickerSwatchesWidth:13.3rem;--JSFS-squareIconLargeBoundaryAlt:5rem;--JSFS-colorBorderInputDisabled:rgb(201, 201, 201);--JSFS-paletteYellow40:rgb(140, 75, 2);--JSFS-cardWrapperSpacing:1rem;--JSFS-colorBackgroundNotificationBadgeActive:rgb(3, 45, 96);--JSFS-colorBackgroundHighlight:rgb(250, 255, 189);--JSFS-colorBackgroundRowActive:rgb(243, 243, 243);--JSFS-componentSpacingMargin:0;--JSFS-colorBorderButtonFocusInverse:rgb(243, 243, 243);--JSFS-shadowButtonFocus:0 0 3px #0176d3;--JSFS-varSpacingVerticalXLarge:2rem;--JSFS-tableColorBackgroundHeaderHover:rgb(243, 243, 243);--JSFS-colorBackgroundDockedPanel:rgb(255, 255, 255);--JSFS-colorTextTertiary:rgb(116, 116, 116);--JSFS-varSpacingVerticalXxLarge:3rem;--JSFS-paletteYellow50:rgb(168, 100, 3);--JSFS-brandContrastActive:rgb(13, 14, 18);--JSFS-squareIconLargeContent:2rem;--JSFS-colorPickerSliderThumbColorBackground:rgb(243, 243, 243);--JSFS-inputStaticFontSize:0.8125rem;--JSFS-borderWidthThin:1px;--JSFS-fontWeightRegular:400;--JSFS-colorBackgroundButtonSuccess:rgb(69, 198, 90);--JSFS-splitViewColorBackgroundRowHover:rgb(255, 255, 255);--JSFS-paletteYellow20:rgb(79, 33, 0);--JSFS-bannerUserDefaultImage:;--JSFS-elevation8:8;--JSFS-brandDark:rgb(1, 118, 211);--JSFS-colorBackgroundPathCurrentHover:rgb(255, 255, 255);--JSFS-elevation0:0;--JSFS-elevation2:2;--JSFS-pageHeaderJoinedColorBorder:rgb(201, 201, 201);--JSFS-elevation4:4;--JSFS-durationPaused:3.2s;--JSFS-colorBrand:rgb(27, 150, 255);--JSFS-colorBackgroundPathComplete:rgb(59, 167, 85);--JSFS-progressColorBorderHover:rgb(1, 118, 211);--JSFS-spacingXxSmall:0.25rem;--JSFS-tableCellSpacing:0.5rem;--JSFS-colorBorderContextBarThemeDefault:rgb(13, 157, 218);--JSFS-colorBackgroundAnchor:rgb(243, 243, 243);--JSFS-paletteYellow30:rgb(111, 52, 0);--JSFS-shadowButtonFocusInverse:0 0 3px #f3f3f3;--JSFS-welcomeMatFontSizeInfoTitle:2.625rem;--JSFS-colorBorderLinkFocusInverse:rgb(243, 243, 243);--JSFS-borderRadiusCircle:50%;--JSFS-buttonColorBorderSecondary:rgba(255, 255, 255, 0.8);--JSFS-colorTextSuccessInverse:rgb(69, 198, 90);--JSFS-varSpacingXLarge:2rem;--JSFS-sizeXLarge:40rem;--JSFS-varSpacingHorizontalXxxSmall:0.125rem;--JSFS-elevation3Inset:-3;--JSFS-lineHeightTab:2.5rem;--JSFS-colorBackgroundDestructiveActive:rgb(142, 3, 15);--JSFS-colorTextLinkPrimaryActive:rgb(3, 45, 96);--JSFS-colorBackgroundPageHeader:rgb(255, 255, 255);--JSFS-colorBackgroundPill:rgb(255, 255, 255);--JSFS-fillBrandHover:rgb(1, 68, 134);--JSFS-colorBorderContextBarItem:rgba(0, 0, 0, 0.2);--JSFS-borderStrokeWidthThin:1px;--JSFS-progressColorBorderShade:rgb(243, 243, 243);--JSFS-heightHeader:2.75rem;--JSFS-shadowInlineEdit:0 2px 4px 4px rgba(0, 0, 0, 0.16);--JSFS-colorBackgroundNotificationBadgeHover:rgb(1, 68, 134);--JSFS-borderRadiusPill:15rem;--JSFS-colorTextButtonInverseDisabled:rgba(255, 255, 255, 0.5);--JSFS-sizeXxxSmall:3rem;--JSFS-colorBackgroundSuccessDarker:rgb(25, 78, 49);--JSFS-colorBackgroundToggleHover:rgb(147, 147, 147);--JSFS-paletteYellow15:rgb(46, 34, 4);--JSFS-paletteYellow10:rgb(40, 18, 2);--JSFS-cardSpacingSmall:0.75rem;--JSFS-illustrationEmptyStateTasks:url(/_slds/images/illustrations/empty-state-tasks.svg?cache=dc5e5e5b);--JSFS-brandBandScrimHeight:3.125rem;--JSFS-popoverWalkthroughColorBackground:rgb(0, 22, 57);--JSFS-colorBorderErrorDark:rgb(254, 143, 125);--JSFS-heightTappableSmall:2rem;--JSFS-colorBackgroundButtonBrandDisabled:rgb(243, 243, 243);--JSFS-colorBorderPrimary:rgb(201, 201, 201);--JSFS-colorGray1:rgb(255, 255, 255);--JSFS-fontSizeXLarge:1.5rem;--JSFS-varSquareIconMediumBoundary:2rem;--JSFS-colorGray5:rgb(221, 219, 218);--JSFS-colorGray4:rgb(236, 235, 234);--JSFS-colorGray3:rgb(243, 242, 242);--JSFS-colorGray2:rgb(250, 250, 249);--JSFS-opacity8:0.8;--JSFS-salesforceSansBoldItalicWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-BoldItalic.woff2);--JSFS-opacity5:0.5;--JSFS-squareIconGlobalIdentityIcon:1.25rem;--JSFS-colorBackgroundBrowser:rgb(116, 116, 116);--JSFS-colorTextIconInverseActive:rgb(255, 255, 255);--JSFS-shadowDocked:0 -2px 2px 0 rgba(0, 0, 0, 0.16);--JSFS-colorBackgroundInputError:rgb(253, 221, 227);--JSFS-colorGray9:rgb(112, 110, 107);--JSFS-colorGray8:rgb(150, 148, 146);--JSFS-colorGray7:rgb(176, 173, 171);--JSFS-colorGray6:rgb(201, 199, 197);--JSFS-colorTextLinkInverse:rgb(255, 255, 255);--JSFS-squareIconSmallBoundary:1.5rem;--JSFS-varSpacingHorizontalXLarge:2rem;--JSFS-colorBackgroundDark:rgb(243, 243, 243);--JSFS-colorTextWarningAlt:rgb(140, 75, 2);--JSFS-elevationInverseShadow2:0 -2px 2px 0 rgba(0, 0, 0, 0.16);--JSFS-elevationInverseShadow0:none;--JSFS-colorStrokeBrand:rgb(1, 118, 211);--JSFS-colorBackgroundToggleActive:rgb(1, 68, 134);--JSFS-colorBorderContextBarDivider:rgba(255, 255, 255, 0.2);--JSFS-zIndexToast:10000;--JSFS-colorBackgroundContextBarActionHighlight:rgba(255, 255, 255, 0.2);--JSFS-colorBackgroundBrandPrimaryFocus:rgb(1, 68, 134);--JSFS-buttonColorBackgroundBrandPrimary:rgb(1, 118, 211);--JSFS-brandHeaderContrastWarm:rgb(186, 5, 23);--JSFS-buttonColorTextPrimary:rgb(255, 255, 255);--JSFS-colorBrandDarker:rgb(1, 68, 134);--JSFS-colorBorderPathCurrentHover:rgb(3, 45, 96);--JSFS-colorTextButtonDefaultDisabled:rgb(201, 201, 201);--JSFS-colorBackgroundPathLost:rgb(234, 0, 30);--JSFS-einsteinHeaderBackground:url(/_slds/images/einstein-headers/einstein-header-background.svg?cache=ff7fa2ff);--JSFS-brandTextLink:rgb(1, 118, 211);--JSFS-sliderTrackColorBackground:rgb(243, 243, 243);--JSFS-colorContrastPrimary:rgb(243, 243, 243);--JSFS-groupDefaultAvatar:url(/_slds/images/group_avatar_200.png?cache=a0044dae);--JSFS-templateProfileGutters:0;--JSFS-sizeXxSmall:6rem;--JSFS-colorBackgroundPayload:rgb(243, 243, 243);--JSFS-paletteCloudBlue90:rgb(207, 233, 254);--JSFS-colorBackgroundPathActive:rgb(1, 68, 134);--JSFS-colorTextDestructive:rgb(234, 0, 30);--JSFS-squareIconLargeBoundary:3rem;--JSFS-colorBorderWarning:rgb(254, 147, 57);--JSFS-shadowSoftPrimaryHover:none;--JSFS-paletteCloudBlue95:rgb(234, 245, 254);--JSFS-spacingSmall:0.75rem;--JSFS-colorBackgroundErrorDark:rgb(186, 5, 23);--JSFS-brandHeaderContrastWeakDisabled:rgba(166, 166, 166, 0.25);--JSFS-squareIconMediumContentAlt:0.875rem;--JSFS-colorBackgroundButtonInverse:rgba(0, 0, 0, 0);--JSFS-brandHeader:rgb(255, 255, 255);--JSFS-lineHeightText:1.5;--JSFS-widthStageLeftExpanded:15rem;--JSFS-colorBackgroundError:rgb(254, 92, 76);--JSFS-colorTextButtonBrandActive:rgb(255, 255, 255);--JSFS-fontFamily:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--JSFS-mqMedium:only screen and (min-width: 48em);--JSFS-brandDarkActive:rgb(37, 48, 69);--JSFS-colorBackgroundPathStepActionActive:rgb(0, 22, 57);--JSFS-neutrafaceDisplayWoff2:url(/_slds/fonts/NeutrafaceDisplay.woff2?cache=2.9.0);--JSFS-spacingMedium:1rem;--JSFS-colorTextModal:rgb(255, 255, 255);--JSFS-spinnerSizeLarge:2.75rem;--JSFS-carouselIndicatorColorBackgroundHover:rgb(243, 243, 243);--JSFS-shadowActionOverflowFooter:0 -2px 4px #f3f3f3;--JSFS-popoverWalkthroughHeaderColorBackground:rgb(3, 45, 96);--JSFS-colorBackgroundPathWon:rgb(46, 132, 74);--JSFS-lineHeightToggle:1.3rem;--JSFS-neutrafaceDisplayWoff:url(/_slds/fonts/NeutrafaceDisplay.woff?cache=2.9.0);--JSFS-cardFooterPadding:0 1rem 0.75rem;--JSFS-sliderHandleColorBackground:rgb(27, 150, 255);--JSFS-colorBackgroundErrorAlt:rgb(254, 143, 125);--JSFS-colorBackgroundIndicatorDot:rgb(3, 45, 96);--JSFS-chatMessageColorBackgroundInbound:rgb(243, 243, 243);--JSFS-elevationShadow0:none;--JSFS-heightPill:1.625rem;--JSFS-elevationShadow4:0 4px 4px 0 rgba(0, 0, 0, 0.16);--JSFS-elevationShadow2:0 2px 2px 0 rgba(0, 0, 0, 0.16);--JSFS-elevationShadow8:0 8px 8px 0 rgba(0, 0, 0, 0.16);--JSFS-varFontSize8:1.5rem;--JSFS-colorBackgroundButtonDefaultDisabled:rgb(255, 255, 255);--JSFS-varFontSize7:1.25rem;--JSFS-elevationInverseShadow8:0 -8px 8px 0 rgba(0, 0, 0, 0.16);--JSFS-varFontSize9:1.75rem;--JSFS-brandBandColorBackgroundPrimary:rgba(0, 0, 0, 0);--JSFS-colorTextButtonBrand:rgb(255, 255, 255);--JSFS-elevationInverseShadow4:0 -4px 4px 0 rgba(0, 0, 0, 0.16);--JSFS-colorBackgroundToggleActiveHover:rgb(1, 68, 134);--JSFS-welcomeMatBackgroundImageInfo:url(/_slds/images/welcome-mat/bg-info@2x.png?cache=ddb4e82f);--JSFS-varFontSize2:0.75rem;--JSFS-varFontSize1:0.625rem;--JSFS-varFontSize4:0.875rem;--JSFS-pageHeaderSpacingRow:0.75rem 1rem;--JSFS-varFontSize3:0.8125rem;--JSFS-varFontSize6:1.125rem;--JSFS-varFontSize5:1rem;--JSFS-varSpacingVerticalMedium:1rem;--JSFS-pageHeaderSpacingPadding:1rem;--JSFS-colorTextModalButton:rgb(116, 116, 116);--JSFS-colorBackgroundPrimary:rgb(255, 255, 255);--JSFS-colorTextInputFocusInverse:rgb(3, 45, 96);--JSFS-colorBackgroundScrollbarTrack:rgb(201, 201, 201);--JSFS-paletteNeutral70:rgb(174, 174, 174);--JSFS-brandPrimaryActive:rgb(1, 118, 211);--JSFS-popoverWalkthroughAltImage:;--JSFS-nubbinTriangleOffset:-0.1875rem;--JSFS-salesforceSansLightWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Light.woff);--JSFS-colorBorderSuccessDark:rgb(46, 132, 74);--JSFS-mqHighRes:only screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2),screen and (min-resolution: 192dpi),screen and (min-resolution: 2dppx);--JSFS-brandBandColorBackgroundPrimaryTransparent:rgba(0, 0, 0, 0);--JSFS-colorBackgroundContextBarInverseItemActive:rgba(255, 255, 255, 0.4);--JSFS-colorTextButtonDefaultHint:rgb(174, 174, 174);--JSFS-salesforceSansItalicWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Italic.woff2);--JSFS-paletteGreen60:rgb(59, 167, 85);--JSFS-heightContextBar:2.5rem;--JSFS-colorBackgroundOrgSwitcherArrow:rgb(0, 22, 57);--JSFS-paletteGreen65:rgb(65, 182, 88);--JSFS-brandHeaderContrastInverse:rgb(255, 255, 255);--JSFS-notificationColorBackgroundInverse:rgb(116, 116, 116);--JSFS-colorBackgroundButtonIconDisabled:rgb(255, 255, 255);--JSFS-paletteNeutral60:rgb(147, 147, 147);--JSFS-colorBorderContextBarThemeDefaultAlt:rgb(243, 243, 243);--JSFS-fillBrand:rgb(1, 118, 211);--JSFS-colorBackgroundInputCheckbox:rgb(255, 255, 255);--JSFS-colorBorder:rgb(201, 201, 201);--JSFS-squareIconSmall:1rem;--JSFS-varSpacingHorizontalMedium:1rem;--JSFS-illustrationColorPrimary:rgb(144, 208, 254);--JSFS-varSpacingVerticalXSmall:0.5rem;--JSFS-colorTextPlaceholder:rgb(116, 116, 116);--JSFS-einsteinHeaderBackgroundColor:rgb(144, 208, 254);--JSFS-paletteGreen70:rgb(69, 198, 90);--JSFS-brandHeaderContrast:rgb(94, 94, 94);--JSFS-inputStaticColor:rgb(24, 24, 24);--JSFS-paletteNeutral90:rgb(229, 229, 229);--JSFS-paletteGreen90:rgb(205, 239, 196);--JSFS-spacingXxLarge:3rem;--JSFS-shadowDropDown:0 2px 3px 0 rgba(0, 0, 0, 0.16);--JSFS-paletteNeutral95:rgb(243, 243, 243);--JSFS-colorBackgroundModal:rgb(255, 255, 255);--JSFS-elevationShadow3Below:0 3px 3px 0 rgba(0, 0, 0, 0.16) inset;--JSFS-paletteRed80:rgb(254, 184, 171);--JSFS-sliderTrackWidth:100%;--JSFS-elevation32:32;--JSFS-globalHeaderColorBackground:rgb(255, 255, 255);--JSFS-spacingXLarge:2rem;--JSFS-paletteGreen80:rgb(145, 219, 139);--JSFS-colorBorderInputActive:rgb(27, 150, 255);--JSFS-varSpacingXSmall:0.5rem;--JSFS-paletteNeutral80:rgb(201, 201, 201);--JSFS-colorBackgroundModalButton:rgba(0, 0, 0, 0.07);--JSFS-colorBorderPathDivider:rgb(255, 255, 255);--JSFS-colorTextIconDefault:rgb(116, 116, 116);--JSFS-zIndexDeepdive:-99999;--JSFS-elevation16:16;--JSFS-paletteRed90:rgb(254, 222, 216);--JSFS-globalnavigationItemHeightAccentActive:3px;--JSFS-templateGutters:0;--JSFS-paletteRed95:rgb(254, 241, 238);--JSFS-buttonColorBorderBrandPrimary:rgb(1, 118, 211);--JSFS-buttonIconBoundaryTouch:2.75rem;--JSFS-brandBackgroundPrimaryTransparent:rgba(176, 196, 223, 0);--JSFS-fillHeaderButtonFocus:rgb(1, 118, 211);--JSFS-colorBorderError:rgb(234, 0, 30);--JSFS-colorTextLinkHover:rgb(1, 68, 134);--JSFS-paletteGreen95:rgb(235, 247, 230);--JSFS-einsteinHeaderFigure:url(/_slds/images/einstein-headers/einstein-figure.svg?cache=ec975fb1);--JSFS-colorBorderRowSelected:rgb(1, 118, 211);--JSFS-colorStrokeBrandHover:rgb(1, 118, 211);--JSFS-paletteNeutral30:rgb(68, 68, 68);--JSFS-varSpacingVerticalXxxSmall:0.125rem;--JSFS-paletteHotOrange10:rgb(40, 18, 2);--JSFS-colorTextButtonBrandDisabled:rgb(255, 255, 255);--JSFS-squareIconXSmallContent:0.5rem;--JSFS-varFontSize10:2rem;--JSFS-paletteRed60:rgb(254, 92, 76);--JSFS-varFontSize11:2.625rem;--JSFS-paletteRed65:rgb(254, 119, 101);--JSFS-buttonBorderRadius:.25rem;--JSFS-squareTappableXSmall:1.5rem;--JSFS-colorBackgroundGuidance:rgb(255, 255, 255);--JSFS-colorTextContextBarInverse:rgb(255, 255, 255);--JSFS-paletteNeutral20:rgb(46, 46, 46);--JSFS-fontFamilyHeading:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';--JSFS-paletteRed70:rgb(254, 143, 125);--JSFS-brandHeaderContrastCoolActive:rgb(1, 68, 134);--JSFS-borderWidthThick:2px;--JSFS-pageHeaderShadow:none;--JSFS-spinnerSizeXxSmall:0.5rem;--JSFS-tableColorBackgroundHeader:rgb(255, 255, 255);--JSFS-pageHeaderColorBackgroundAlt:rgb(255, 255, 255);--JSFS-colorBorderBrandPrimaryHover:rgb(1, 118, 211);--JSFS-colorTextTabLabelActive:rgb(3, 45, 96);--JSFS-paletteNeutral50:rgb(116, 116, 116);--JSFS-colorBackgroundTempModalTint:rgba(126, 140, 153, 0.8);--JSFS-fontSizeMedium:1rem;--JSFS-colorBorderButtonBrand:rgb(1, 118, 211);--JSFS-paletteHotOrange30:rgb(126, 38, 0);--JSFS-paletteRed40:rgb(186, 5, 23);--JSFS-brandBandImageHeightSmall:6rem;--JSFS-colorTextInverseWeak:rgb(174, 174, 174);--JSFS-colorTextInverse:rgb(255, 255, 255);--JSFS-shadowLinkFocusInverse:0 0 3px #f3f3f3;--JSFS-squareIconXxSmallBoundary:1rem;--JSFS-lineHeightReset:1;--JSFS-verticalNavigationColorBackgroundShadeRowActive:rgb(243, 243, 243);--JSFS-colorBackgroundTempModal:rgba(126, 140, 153, 0.8);--JSFS-colorBackgroundToggleDisabled:rgb(174, 174, 174);--JSFS-colorGray13:rgb(8, 7, 7);--JSFS-colorGray10:rgb(81, 79, 77);--JSFS-paletteNeutral40:rgb(92, 92, 92);--JSFS-colorBorderInverse:rgb(0, 22, 57);--JSFS-carouselIndicatorColorBackgroundActive:rgb(1, 118, 211);--JSFS-colorBackgroundBackdrop:rgba(255, 255, 255, 0.75);--JSFS-colorGray12:rgb(43, 40, 38);--JSFS-colorGray11:rgb(62, 62, 60);--JSFS-colorTextContextBarActionTrigger:rgba(255, 255, 255, 0.4);--JSFS-paletteHotOrange20:rgb(74, 36, 19);--JSFS-colorBackgroundNotification:rgb(255, 255, 255);--JSFS-colorBackgroundPathStepActionCurrent:rgb(1, 68, 134);--JSFS-badgeColorBackgroundInverse:rgb(116, 116, 116);--JSFS-colorBorderSeparatorInverse:rgb(3, 45, 96);--JSFS-paletteRed50:rgb(234, 0, 30);--JSFS-colorBackgroundSpinnerDot:rgb(174, 174, 174);--JSFS-colorBackgroundButtonBrandActive:rgb(3, 45, 96);--JSFS-paletteHotOrange15:rgb(66, 22, 4);--JSFS-sliderHandleColorBackgroundFocus:rgb(1, 118, 211);--JSFS-spinnerSizeMedium:2rem;--JSFS-brandPrimary:rgb(27, 150, 255);--JSFS-paletteHotOrange50:rgb(216, 58, 0);--JSFS-colorTextLinkPrimaryFocus:rgb(1, 118, 211);--JSFS-colorTextInputDisabled:rgb(116, 116, 116);--JSFS-brandLogoImage:url(/_slds/images/logo-noname.svg?cache=380754d9);--JSFS-brandLight:rgb(244, 246, 254);--JSFS-paletteRed20:rgb(100, 1, 3);--JSFS-fillHeaderButton:rgb(174, 174, 174);--JSFS-varLineHeightText:1.5;--JSFS-colorBackgroundPathCurrent:rgb(255, 255, 255);--JSFS-colorBackgroundOffline:rgb(68, 68, 68);--JSFS-colorBorderTabSelected:rgb(1, 118, 211);--JSFS-colorTextWarning:rgb(254, 147, 57);--JSFS-salesforceSansRegularWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Regular.woff);--JSFS-paletteHotOrange40:rgb(170, 48, 1);--JSFS-cardSpacingLarge:1.5rem;--JSFS-paletteRed30:rgb(142, 3, 15);--JSFS-fontSizeMediumA:1.125rem;--JSFS-borderRadiusMedium:0.25rem;--JSFS-colorPickerSliderThumbBorderColor:rgb(68, 68, 68);--JSFS-shadowSoftPrimary:none;--JSFS-zIndexDropdown:7000;--JSFS-paletteHotOrange70:rgb(255, 144, 110);--JSFS-verticalNavigationColorBackgroundShadeRowHover:rgb(243, 243, 243);--JSFS-squareIconMediumBoundary:2rem;--JSFS-colorBackgroundButtonDefaultFocus:rgb(243, 243, 243);--JSFS-heightTappable:2.75rem;--JSFS-colorBackgroundToastError:rgb(234, 0, 30);--JSFS-brandBandDefaultImage:;--JSFS-durationQuickly:0.1s;--JSFS-colorBackgroundSelection:rgb(216, 230, 254);--JSFS-paletteHotOrange60:rgb(255, 93, 45);--JSFS-colorBackgroundActionbarIconUtility:rgb(116, 116, 116);--JSFS-colorBackgroundNotificationBadgeFocus:rgb(1, 68, 134);--JSFS-paletteHotOrange65:rgb(255, 120, 79);--JSFS-cardFooterTextAlign:right;--JSFS-colorBorderBrandDark:rgb(1, 68, 134);--JSFS-brandBackgroundDark:rgb(232, 232, 232);--JSFS-avatarGroupColorBackgroundLightest:rgb(255, 255, 255);--JSFS-colorTextContextBar:rgb(68, 68, 68);--JSFS-inputStaticFontWeight:400;--JSFS-paletteRed10:rgb(48, 12, 1);--JSFS-colorTextLinkDisabled:rgb(3, 45, 96);--JSFS-colorTextPathCurrent:rgb(1, 68, 134);--JSFS-paletteRed15:rgb(74, 12, 4);--JSFS-zIndexOverlay:8000;--JSFS-buttonColorBorderPrimary:rgb(243, 243, 243);--JSFS-paletteHotOrange90:rgb(255, 222, 213);--JSFS-shadowImage:0 1px 1px rgba(0, 0, 0, 0.16);--JSFS-paletteHotOrange95:rgb(254, 241, 237);--JSFS-cardHeaderPadding:0.75rem 1rem 0;--JSFS-colorBorderSeparatorAlt2:rgb(201, 201, 201);--JSFS-fillBrandActive:rgb(3, 45, 96);--JSFS-fontSizeTextMedium:1rem;--JSFS-spacingXSmall:0.5rem;--JSFS-chatMessageColorBackgroundOutboundAgent:rgb(116, 116, 116);--JSFS-colorBackgroundButtonIconHover:rgb(243, 243, 243);--JSFS-sliderHandleColorBackgroundActive:rgb(1, 118, 211);--JSFS-colorBorderSuccess:rgb(145, 219, 139);--JSFS-colorTextIconInverseHover:rgb(255, 255, 255);--JSFS-componentSpacingPadding:1rem;--JSFS-colorBorderDestructiveActive:rgb(142, 3, 15);--JSFS-colorBackgroundButtonInverseDisabled:rgba(0, 0, 0, 0);--JSFS-colorTextTabLabelFocus:rgb(1, 68, 134);--JSFS-paletteHotOrange80:rgb(254, 185, 165);--JSFS-colorBackgroundNotificationBadge:rgb(234, 0, 30);--JSFS-zIndexReminder:8500;--JSFS-colorBackgroundImageOverlay:rgba(0, 0, 0, 0.4);--JSFS-colorBackgroundReminderHover:rgb(255, 255, 255);--JSFS-colorTextPathCurrentHover:rgb(3, 45, 96);--JSFS-colorBackgroundCustomer:rgb(254, 147, 57);--JSFS-colorBackgroundButtonDefault:rgb(255, 255, 255);--JSFS-colorBackgroundInverseLight:rgb(3, 45, 96);--JSFS-salesforceSansBoldWoff:url(/_slds/fonts/v2.3.0/SalesforceSans-Bold.woff);--JSFS-progressColorBorderActive:rgb(27, 150, 255);--JSFS-fontSizeLarge:1.25rem;--JSFS-brandHeaderContrastWeakActive:rgb(129, 129, 129);--JSFS-brandHeaderContrastWarmActive:rgb(186, 5, 23);--JSFS-squareToggleSlider:1.25rem;--JSFS-progressBarColorBackgroundFillSuccess:rgb(46, 132, 74);--JSFS-colorBackgroundButtonBrand:rgb(1, 118, 211);--JSFS-colorBackgroundWarningDark:rgb(254, 147, 57);--JSFS-colorTextIconUtility:rgb(174, 174, 174);--JSFS-colorBackgroundScrollbar:rgb(243, 243, 243);--JSFS-chatMessageColorBackgroundStatus:rgb(255, 255, 255);--JSFS-colorBackgroundTempModalTintAlt:rgba(255, 255, 255, 0.75);--JSFS-pageHeaderBorderRadius:0;--JSFS-palettePink95:rgb(254, 240, 243);--JSFS-welcomeMatColorIconComplete:rgb(201, 201, 201);--JSFS-palettePink90:rgb(253, 221, 227);--JSFS-paletteViolet50:rgb(186, 1, 255);--JSFS-paletteTeal30:rgb(2, 77, 76);--JSFS-colorTextIconInverseDisabled:rgba(255, 255, 255, 0.15);--JSFS-bannerGroupDefaultImage:;--JSFS-colorBorderBrand:rgb(27, 150, 255);--JSFS-colorBackgroundInfo:rgb(116, 116, 116);--JSFS-heightToggle:1.5rem;--JSFS-badgeColorBackgroundLightest:rgb(255, 255, 255);--JSFS-brandBandColorBackgroundSecondary:rgba(0, 0, 0, 0);--JSFS-shadowSoftPrimaryActive:none;--JSFS-colorTextIconDefaultHint:rgb(174, 174, 174);--JSFS-colorBackgroundChromeMobile:rgb(1, 118, 211);--JSFS-colorPickerSwatchSize:1.25rem;--JSFS-colorBackgroundPathIncomplete:rgb(243, 243, 243);--JSFS-paletteTeal40:rgb(5, 103, 100);--JSFS-colorTextToggleDisabled:rgb(201, 201, 201);--JSFS-paletteViolet40:rgb(150, 2, 199);--JSFS-colorTextLinkInverseHover:rgba(255, 255, 255, 0.75);--JSFS-palettePink80:rgb(253, 182, 197);--JSFS-zIndexModal:9000;--JSFS-pageHeaderIconSize:2.25rem;--JSFS-colorTextDestructiveHover:rgb(186, 5, 23);--JSFS-colorBorderCanvasElementSelection:rgb(26, 185, 255);--JSFS-colorBackgroundSuccess:rgb(69, 198, 90);--JSFS-carouselIndicatorColorBackground:rgb(255, 255, 255);--JSFS-sliderTrackHeight:4px;--JSFS-squareIconSmallContent:0.75rem;--JSFS-colorBackgroundInputDisabled:rgb(243, 243, 243);--JSFS-paletteTeal50:rgb(11, 130, 124);--JSFS-palettePink70:rgb(254, 138, 167);--JSFS-paletteViolet30:rgb(115, 3, 148);--JSFS-mqSmall:only screen and (max-width: 47.9375em);--JSFS-brandBandImageHeightLarge:18.75rem;--JSFS-carouselIndicatorWidth:1rem;--JSFS-colorTextLinkActive:rgb(3, 45, 96);--JSFS-squareIconXxSmallContent:.875rem;--JSFS-fontSizeXSmall:0.625rem;--JSFS-palettePink65:rgb(254, 114, 152);--JSFS-sliderColorBackgroundDisabled:rgb(243, 243, 243);--JSFS-colorContrastSecondary:rgb(255, 255, 255);--JSFS-welcomeMatColorBackgroundProgressBar:rgb(255, 255, 255);--JSFS-globalActionIconSize:1.5rem;--JSFS-paletteViolet20:rgb(72, 26, 84);--JSFS-fontSizeHeadingSmall:0.875rem;--JSFS-colorPickerRangeIndicatorSize:0.75rem;--JSFS-paletteOrange15:rgb(55, 30, 3);--JSFS-sliderHandleSize:1rem;--JSFS-tableBorderRadius:0;--JSFS-paletteTeal60:rgb(6, 165, 154);--JSFS-userDefaultAvatarSmall:url(/_slds/images/profile_avatar_96.png?cache=3c01f25f);--JSFS-buttonColorBackgroundPrimary:rgb(255, 255, 255);--JSFS-colorPickerInputCustomHexWidth:4.2rem;--JSFS-paletteOrange10:rgb(32, 22, 0);--JSFS-palettePink60:rgb(255, 83, 138);--JSFS-paletteTeal65:rgb(3, 180, 167);--JSFS-colorBackgroundRowSelected:rgb(243, 243, 243);--JSFS-colorBackgroundContextBarBrandAccent:rgb(13, 157, 218);--JSFS-fontFamilyMonospace:Consolas, Menlo, Monaco, Courier, monospace;--JSFS-cardFooterColorBorder:rgba(0, 0, 0, 0);--JSFS-palettePurple80:rgb(215, 191, 242);--JSFS-varSpacingHorizontalLarge:1.5rem;--JSFS-colorTextRequired:rgb(234, 0, 30);--JSFS-elevationShadow16:0 16px 16px 0 rgba(0, 0, 0, 0.16);--JSFS-paletteViolet10:rgb(46, 0, 57);--JSFS-shadowHardPrimary:none;--JSFS-paletteOrange20:rgb(62, 43, 2);--JSFS-paletteViolet15:rgb(61, 1, 87);--JSFS-radioButtonGroupLineHeightTouch:2.69rem;--JSFS-colorBackgroundBrandPrimary:rgb(1, 118, 211);--JSFS-paletteTeal70:rgb(1, 195, 179);--JSFS-colorBackgroundUtilityBarActive:rgb(27, 150, 255);--JSFS-zIndexSticky:100;--JSFS-colorBackgroundContextBarShadow:linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0, rgba(0, 0, 0, 0) 100%);--JSFS-paletteTeal80:rgb(4, 225, 203);--JSFS-palettePurple90:rgb(236, 225, 249);--JSFS-squareIconUtilityLarge:1.5rem;--JSFS-fontSize10:2rem;--JSFS-groupDefaultAvatarMedium:url(/_slds/images/group_avatar_160.png?cache=b8fe8e83);--JSFS-elevationShadow32:0 32px 32px 0 rgba(0, 0, 0, 0.16);--JSFS-paletteOrange30:rgb(95, 62, 2);--JSFS-colorBorderButtonInverseDisabled:rgba(255, 255, 255, 0.15);--JSFS-fontSize11:2.625rem;--JSFS-einsteinHeaderTextShadow:#cfe9fe;--JSFS-palettePurple95:rgb(246, 242, 251);--JSFS-squareTappableXxSmall:1.25rem;--JSFS-colorBackgroundDestructiveHover:rgb(142, 3, 15);--JSFS-fontSize9:1.75rem;--JSFS-colorBackgroundLight:rgb(255, 255, 255);--JSFS-fontSize8:1.5rem;--JSFS-paletteTeal90:rgb(172, 243, 228);--JSFS-shadowActive:0 0 2px #0176d3;--JSFS-fontSize1:0.625rem;--JSFS-paletteNeutral100:rgb(255, 255, 255);--JSFS-colorTextLink:rgb(1, 118, 211);--JSFS-pageHeaderTitleFontSize:1.125rem;--JSFS-fontSize3:0.8125rem;--JSFS-fontSize2:0.75rem;--JSFS-colorTextLinkInverseDisabled:rgba(255, 255, 255, 0.15);--JSFS-fontSize5:1rem;--JSFS-fontSize4:0.875rem;--JSFS-fontSize7:1.25rem;--JSFS-fontSize6:1.125rem;--JSFS-spacingNone:0;--JSFS-paletteOrange40:rgb(130, 81, 1);--JSFS-inputReadonlyFontWeight:400;--JSFS-palettePurple60:rgb(173, 123, 238);--JSFS-paletteTeal95:rgb(222, 249, 243);--JSFS-colorStrokeHeaderButton:rgb(174, 174, 174);--JSFS-typingIconDotColorBackgroundGray:rgb(201, 201, 201);--JSFS-palettePurple65:rgb(183, 141, 239);--JSFS-pageHeaderTitleFontWeight:400;--JSFS-colorBackgroundButtonIconFocus:rgb(243, 243, 243);--JSFS-groupDefaultAvatarSmall:url(/_slds/images/group_avatar_96.png?cache=d0659d12);--JSFS-colorBackgroundModalBrand:rgb(1, 68, 134);--JSFS-colorTextInverseActive:rgb(26, 185, 255);--JSFS-colorBackgroundHighlightSearch:rgb(255, 240, 63);--JSFS-paletteOrange50:rgb(169, 100, 4);--JSFS-colorBackgroundSuccessDark:rgb(46, 132, 74);--JSFS-shadowOverlay:0 -2px 4px rgba(0, 0, 0, 0.07);--JSFS-sizeXSmall:12rem;--JSFS-colorBackgroundDestructive:rgb(186, 5, 23);--JSFS-typingIconDotSize:.5rem;--JSFS-palettePurple70:rgb(194, 158, 241);--JSFS-colorBorderInfo:rgb(116, 116, 116);--JSFS-colorTextTabLabel:rgb(3, 45, 96);--JSFS-palettePink15:rgb(75, 6, 32);--JSFS-popoverWalkthroughColorBackgroundAlt:rgb(1, 118, 211);--JSFS-durationImmediately:0.05s;--JSFS-palettePink10:rgb(55, 1, 20);--JSFS-elevationInverseShadow16:0 -16px 16px 0 rgba(0, 0, 0, 0.16);--JSFS-salesforceSansLightWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Light.woff2);--JSFS-splitViewWidth:25rem;--JSFS-colorBorderIconInverseHint:rgba(255, 255, 255, 0.5);--JSFS-brandDisabled:rgb(201, 199, 197);--JSFS-paletteOrange60:rgb(221, 122, 1);--JSFS-palettePurple40:rgb(117, 38, 227);--JSFS-paletteOrange65:rgb(243, 131, 3);--JSFS-progressColorBackground:rgb(255, 255, 255);--JSFS-colorBorderContextBarThemeDefaultActive:rgb(243, 243, 243);--JSFS-avatarGroupColorBackgroundInverse:rgb(116, 116, 116);--JSFS-colorBackgroundAlt2:rgb(243, 243, 243);--JSFS-cardFontWeight:400;--JSFS-colorPickerSwatchShadow:inset 0 0 1px rgba(0,0,0,0.4);--JSFS-paletteOrange70:rgb(254, 147, 57);--JSFS-colorTextIconBrand:rgb(1, 118, 211);--JSFS-colorTextButtonDefault:rgb(1, 118, 211);--JSFS-palettePurple50:rgb(144, 80, 233);--JSFS-pathButtonWidthFixed:13rem;--JSFS-sizeLarge:25rem;--JSFS-userDefaultAvatarMedium:url(/_slds/images/profile_avatar_160.png?cache=bfba2c9a);--JSFS-colorBorderDestructive:rgb(234, 0, 30);--JSFS-colorTextWeak:rgb(116, 116, 116);--JSFS-fontSizeHeadingMedium:1.125rem;--JSFS-mqSingleColumnRecordLayout:(max-width: 599px);--JSFS-colorBackgroundInputSearch:rgba(0, 0, 0, 0.16);--JSFS-welcomeMatBackgroundColorInfo:rgb(207, 233, 254);--JSFS-colorBorderBrandPrimary:rgb(27, 150, 255);--JSFS-colorBackgroundInverse:rgb(0, 22, 57);--JSFS-maxWidthActionOverflowMenu:512px;--JSFS-paletteNeutral10:rgb(24, 24, 24);--JSFS-carouselColorBackground:rgb(255, 255, 255);--JSFS-colorTextLabel:rgb(116, 116, 116);--JSFS-colorBackgroundButtonSuccessActive:rgb(46, 132, 74);--JSFS-squareIconLarge:3.125rem;--JSFS-spinnerSizeXSmall:1rem;--JSFS-paletteOrange80:rgb(255, 186, 144);--JSFS-cardSpacingMargin:1rem;--JSFS-colorTextBrowserActive:rgba(0, 0, 0, 0.4);--JSFS-colorBackgroundButtonBrandHover:rgb(1, 68, 134);--JSFS-chatMessageColorBackgroundOutbound:rgb(1, 68, 134);--JSFS-colorTextIconDefaultActive:rgb(3, 45, 96);--JSFS-palettePurple20:rgb(64, 16, 117);--JSFS-colorTextIconDefaultHover:rgb(1, 118, 211);--JSFS-colorTextLinkPrimary:rgb(1, 118, 211);--JSFS-fontSizeTextXSmall:0.75rem;--JSFS-colorBackgroundToast:rgb(116, 116, 116);--JSFS-fontSizeXxLarge:2rem;--JSFS-heightSalesPath:2rem;--JSFS-colorTextIconDefaultHintBorderless:rgb(243, 243, 243);--JSFS-paletteOrange95:rgb(255, 241, 234);--JSFS-colorForegroundPrimary:rgb(255, 255, 255);--JSFS-paletteOrange90:rgb(254, 223, 208);--JSFS-colorBackgroundRowNew:rgb(205, 239, 196);--JSFS-fontSizeTextLarge:1.125rem;--JSFS-paletteGreen15:rgb(12, 41, 18);--JSFS-colorBackgroundShade:rgb(243, 243, 243);--JSFS-paletteGreen10:rgb(7, 27, 18);--JSFS-palettePurple30:rgb(90, 27, 169);--JSFS-varSpacingXxxSmall:0.125rem;--JSFS-brandLightActive:rgb(227, 229, 237);--JSFS-welcomeMatTextColorInfo:rgb(3, 45, 96);--JSFS-colorBackgroundIconWaffle:rgb(116, 116, 116);--JSFS-colorBackgroundContextBarItemHover:rgb(255, 255, 255);--JSFS-fontSizeXLargeA:1.57rem;--JSFS-colorBackgroundPathCompleteHover:rgb(46, 132, 74);--JSFS-palettePink50:rgb(227, 6, 106);--JSFS-paletteViolet90:rgb(242, 222, 254);--JSFS-paletteGreen20:rgb(28, 51, 38);--JSFS-paletteViolet95:rgb(249, 240, 255);--JSFS-colorBorderContextBarThemeDefaultHover:rgb(50, 29, 113);--JSFS-squareIconMedium:2.375rem;--JSFS-textTransform:none;--JSFS-colorBackgroundBrandPrimaryHover:rgb(1, 68, 134);--JSFS-colorTextSuccess:rgb(46, 132, 74);--JSFS-carouselIndicatorColorBackgroundFocus:rgb(1, 68, 134);--JSFS-colorBackgroundChromeDesktop:rgb(255, 255, 255);--JSFS-borderStrokeWidthThick:2px;--JSFS-colorBackgroundReminder:rgb(243, 243, 243);--JSFS-palettePurple15:rgb(48, 11, 96);--JSFS-colorTextToast:rgb(243, 243, 243);--JSFS-paletteViolet80:rgb(229, 185, 254);--JSFS-colorBackgroundAlt:rgb(255, 255, 255);--JSFS-palettePink40:rgb(182, 5, 84);--JSFS-paletteGreen30:rgb(25, 78, 49);--JSFS-palettePurple10:rgb(36, 6, 67);--JSFS-elevationInverseShadow32:0 -32px 32px 0 rgba(0, 0, 0, 0.16);--JSFS-colorBorderCustomer:rgb(254, 147, 57);--JSFS-tableColorBackgroundStripes:rgb(243, 243, 243);--JSFS-varSpacingVerticalSmall:0.75rem;--JSFS-palettePink30:rgb(138, 3, 62);--JSFS-paletteViolet70:rgb(216, 146, 254);--JSFS-colorBorderContextBarInverseItem:rgba(255, 255, 255, 0.2);--JSFS-utilityBarColorBackgroundNotificationBadge:rgb(254, 92, 76);--JSFS-colorTextTabLabelDisabled:rgb(243, 243, 243);--JSFS-heightInput:1.875rem;--JSFS-squareTappable:2.75rem;--JSFS-fontSizeSmall:0.875rem;--JSFS-paletteGreen40:rgb(57, 101, 71);--JSFS-tableColorBackgroundHeaderFocus:rgb(255, 255, 255);--JSFS-salesforceSansRegularWoff2:url(/_slds/fonts/v2.3.0/SalesforceSans-Regular.woff2);--JSFS-varSpacingHorizontalXxLarge:3rem;--JSFS-paletteViolet65:rgb(209, 125, 254);--JSFS-progressBarColorBackgroundFill:rgb(26, 185, 255);--JSFS-colorBorderSeparator:rgb(243, 243, 243);--JSFS-paletteGreen50:rgb(46, 132, 74);--JSFS-brandHeaderIconDisabled:rgba(145, 145, 145, 0.25);--JSFS-palettePink20:rgb(97, 2, 42);--JSFS-splitViewColorBackground:rgb(243, 243, 243);--JSFS-colorBackgroundSecondary:rgb(243, 243, 243);--JSFS-colorTextLinkFocus:rgb(1, 68, 134);--JSFS-paletteViolet60:rgb(203, 101, 255);}</style><link data-href="/s/sfsites/l/%7B%22mode%22%3A%22PROD%22%2C%22dfs%22%3A%228%22%2C%22app%22%3A%22siteforce%3AcommunityApp%22%2C%22loaded%22%3A%7B%22APPLICATION%40markup%3A%2F%2Fsiteforce%3AcommunityApp%22%3A%221232_i1u-juBSAcYeYnyHhRNT-Q%22%7D%2C%22styleContext%22%3A%7B%22c%22%3A%22ie7%22%2C%22x%22%3A%5B%223%22%2C%22SLDS%22%2C%22isDesktop%22%5D%2C%22tokens%22%3A%5B%22markup%3A%2F%2Fsiteforce%3AserializedTokens%22%2C%22markup%3A%2F%2Fforce%3AsldsTokens%22%2C%22markup%3A%2F%2Fsiteforce%3AcommunityTokens%22%2C%22markup%3A%2F%2Fforce%3AformFactorLarge%22%2C%22markup%3A%2F%2Fsiteforce%3AcommunityFormFactorLarge%22%2C%22markup%3A%2F%2Fsiteforce%3AauraDynamicTokens%22%2C%22markup%3A%2F%2Fsiteforce%3AsldsFontOverride%22%5D%2C%22tuid%22%3A%22r6009rgDThNFY1nkqPAQ7A%22%2C%22cuid%22%3A429915803%7D%2C%22pathPrefix%22%3A%22%22%7D/app.css?3=&aura.attributes=%7B%22ac%22%3A%22%22%2C%22authenticated%22%3A%22false%22%2C%22brandingSetId%22%3A%22d2ab287f-14cf-4c09-b84d-1865780c78d0%22%2C%22formFactor%22%3A%22LARGE%22%2C%22isHybrid%22%3A%22false%22%2C%22language%22%3A%22en_US%22%2C%22pageId%22%3A%222b3ae15e-b1f3-45c9-9237-e7ad5a2bed3c%22%2C%22publishedChangelistNum%22%3A%22735%22%2C%22schema%22%3A%22Published%22%2C%22themeLayoutType%22%3A%22Inner%22%2C%22uds%22%3A%22false%22%2C%22viewType%22%3A%22Published%22%7D" class="auraCss" rel="stylesheet" type="text/css"/> <link rel="stylesheet" id="siteforce_fontStyleSheet" href="/s/sfsites/runtimedownload/fonts.css?lastMod=1623768515000&brandSet=d2ab287f-14cf-4c09-b84d-1865780c78d0" type="text/css"/> <style id="themeCSS"></style><style id="customCSS">/*CSS for the Tile Menu*/ /*Reg A, this hides the Articles button on the Article Detail page*/ .slds-pill_container--bare.selfServiceArticleTopicList.selfServiceArticleLayout { display:none; } body { font-family: "Gotham A", "Gotham B", helvetica, arial, sans-serif; } /*CSS for spinner */ .siteforceSpinnerManager.siteforcePanelsContainer .global.siteforceLoadingBalls { right: 0; bottom: 0; left: 0; top: 0; position: fixed; } .global.siteforceLoadingBalls .loadingBall { margin-top: 25%; } /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ /*CSS to Move Tabs to the Left */ /* div.community .forceCommunityTabset { position: relative; left: -7%; } div.community div.uiTabBar { margin-top: -8px; width: 12%; display: inline-block; vertical-align: top; } div.community div.uiTabBar ul.tabs__nav { border-bottom: none; display: inline-block; } div.community div.uiTabBar ul.tabs__nav li.uiTabItem { display: block; margin-left: 0!important; margin-right: 0!important; padding-left: 0; padding-right: 0; max-width: inherit!important; min-width: inherit!important; text-align: left!important; } div.community section.uiTab.active { display: inline-block; width: 88%; } */ /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ /* This is a one-off issue where the record banner for the Contact displays over the "Edit Contact" modal*/ ul.slds-grid.slds-page-header__detail-row ,.slds-page-header .slds-grid.primaryFieldRow { z-index: 1; } /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ /* Allow dropdown menu to expand into the Footer */ .siteforceContentArea { overflow: visible!important; } /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ /* Add padding to the bottom component on the search page*/ .comm-page-global-search .cta_header { padding-top: 24px; } /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ .header-search-icon > lightning-primitive-icon > svg:hover { fill: darkgrey; }</style><style>.siteforceContentArea .comm-layout-column .ui-widget:not(:last-child),.siteforceContentArea .cb-section_column .ui-widget:not(:last-child){margin-bottom:var(--lwc-uiWidgetMarginBottom,1.5rem)}.siteforceContentArea .comm-layout-column:not(:empty){padding-top:var(--lwc-layoutVerticalPadding,0.75rem);padding-bottom:var(--lwc-layoutVerticalPadding,0.75rem)}:root{--dxp-g-root:var(--lwc-dxpGRoot,#FFFFFF);--dxp-g-root-1:var(--lwc-dxpGRoot1,rgb(235, 235, 235));--dxp-g-root-2:var(--lwc-dxpGRoot2,rgb(194, 194, 194));--dxp-g-root-3:var(--lwc-dxpGRoot3,rgb(133, 133, 133));--dxp-g-root-contrast:var(--lwc-dxpGRootContrast,#333);--dxp-g-root-contrast-1:var(--lwc-dxpGRootContrast1,rgb(31, 31, 31));--dxp-g-root-contrast-2:var(--lwc-dxpGRootContrast2,rgb(0, 0, 0));--dxp-g-root-contrast-3:var(--lwc-dxpGRootContrast3,rgb(0, 0, 0));--dxp-g-neutral:var(--lwc-dxpGNeutral,#ecebea);--dxp-g-neutral-1:var(--lwc-dxpGNeutral1,rgb(217, 215, 213));--dxp-g-neutral-2:var(--lwc-dxpGNeutral2,rgb(178, 174, 170));--dxp-g-neutral-3:var(--lwc-dxpGNeutral3,rgb(118, 113, 107));--dxp-g-neutral-contrast:var(--lwc-dxpGNeutralContrast,#000);--dxp-g-neutral-contrast-1:var(--lwc-dxpGNeutralContrast1,#000);--dxp-g-neutral-contrast-2:var(--lwc-dxpGNeutralContrast2,#000);--dxp-g-neutral-contrast-3:var(--lwc-dxpGNeutralContrast3,#fff);--dxp-g-brand:var(--lwc-dxpGBrand,rgb(37, 116, 169));--dxp-g-brand-1:var(--lwc-dxpGBrand1,rgb(30, 93, 136));--dxp-g-brand-2:var(--lwc-dxpGBrand2,rgb(15, 47, 69));--dxp-g-brand-3:var(--lwc-dxpGBrand3,rgb(0, 0, 0));--dxp-g-brand-contrast:var(--lwc-dxpGBrandContrast,#FFFFFF);--dxp-g-brand-contrast-1:var(--lwc-dxpGBrandContrast1,rgb(255, 255, 255));--dxp-g-brand-contrast-2:var(--lwc-dxpGBrandContrast2,rgb(255, 255, 255));--dxp-g-brand-contrast-3:var(--lwc-dxpGBrandContrast3,rgb(255, 255, 255));--dxp-g-success:#4bca81;--dxp-g-success-1:#36b66c;--dxp-g-success-2:#237747;--dxp-g-success-3:#07190f;--dxp-g-success-contrast:#000;--dxp-g-success-contrast-1:#000;--dxp-g-success-contrast-2:#fff;--dxp-g-success-contrast-3:#fff;--dxp-g-destructive:#c23934;--dxp-g-destructive-1:#a2302b;--dxp-g-destructive-2:#611d1a;--dxp-g-destructive-3:#010000;--dxp-g-destructive-contrast:#fff;--dxp-g-destructive-contrast-1:#fff;--dxp-g-destructive-contrast-2:#fff;--dxp-g-destructive-contrast-3:#fff;--dxp-g-warning:#ffb75d;--dxp-g-warning-1:#ffa534;--dxp-g-warning-2:#e27d00;--dxp-g-warning-3:#673900;--dxp-g-warning-contrast:#000;--dxp-g-warning-contrast-1:#000;--dxp-g-warning-contrast-2:#000;--dxp-g-warning-contrast-3:#fff;--dxp-g-info:#16325c;--dxp-g-info-1:#0e203b;--dxp-g-info-2:#000000;--dxp-g-info-3:#000000;--dxp-g-info-contrast:#fff;--dxp-g-info-contrast-1:#fff;--dxp-g-info-contrast-2:#fff;--dxp-g-info-contrast-3:#fff;--dxp-g-offline:#444;--dxp-g-offline-1:#303030;--dxp-g-offline-2:#070707;--dxp-g-offline-3:#000000;--dxp-g-offline-contrast:#fff;--dxp-g-offline-contrast-1:#fff;--dxp-g-offline-contrast-2:#fff;--dxp-g-offline-contrast-3:#fff;--dxp-g-spacing-none:0!important;--dxp-g-spacing-xxxsmall:.125rem;--dxp-g-spacing-xxsmall:.25rem;--dxp-g-spacing-xsmall:.5rem;--dxp-g-spacing-small:.75rem;--dxp-g-spacing-medium:1rem;--dxp-g-spacing-large:1.5rem;--dxp-g-spacing-xlarge:2rem;--dxp-g-spacing-xxlarge:3rem;--dxp-g-root-font-family:var(--lwc-fontFamily,Lato);--dxp-g-heading-font-family:var(--lwc-fontFamilyHeader,Montserrat);--dxp-g-font-size-1:.625rem;--dxp-g-font-size-2:.75rem;--dxp-g-font-size-3:.8125rem;--dxp-g-font-size-4:.875rem;--dxp-g-font-size-5:1rem;--dxp-g-font-size-6:1.125rem;--dxp-g-font-size-7:1.25rem;--dxp-g-font-size-8:1.5rem;--dxp-g-font-size-9:1.75rem;--dxp-g-font-size-10:2rem;--dxp-g-font-size-11:2.625rem;--dxp-s-html-font-size:16px;--dxp-s-text-heading-extra-large-font-family:var(--lwc-fontFamilyHeader,Montserrat);--dxp-s-text-heading-extra-large-font-size:2.5rem;--dxp-s-text-heading-extra-large-font-style:normal;--dxp-s-text-heading-extra-large-font-weight:300;--dxp-s-text-heading-extra-large-text-decoration:none;--dxp-s-text-heading-extra-large-text-transform:var(--lwc-textTransform,uppercase);--dxp-s-text-heading-extra-large-line-height:1.25;--dxp-s-text-heading-extra-large-letter-spacing:0;--dxp-s-text-heading-large-font-family:var(--lwc-fontFamilyHeader,Montserrat);--dxp-s-text-heading-large-font-size:1.75rem;--dxp-s-text-heading-large-font-style:normal;--dxp-s-text-heading-large-font-weight:300;--dxp-s-text-heading-large-text-decoration:none;--dxp-s-text-heading-large-text-transform:var(--lwc-textTransform,uppercase);--dxp-s-text-heading-large-line-height:1.25;--dxp-s-text-heading-large-letter-spacing:0;--dxp-s-text-heading-medium-font-family:var(--lwc-fontFamilyHeader,Montserrat);--dxp-s-text-heading-medium-font-size:1.25rem;--dxp-s-text-heading-medium-font-style:normal;--dxp-s-text-heading-medium-font-weight:300;--dxp-s-text-heading-medium-text-decoration:none;--dxp-s-text-heading-medium-text-transform:var(--lwc-textTransform,uppercase);--dxp-s-text-heading-medium-line-height:1.25;--dxp-s-text-heading-medium-letter-spacing:0;--dxp-s-text-heading-small-font-family:var(--lwc-fontFamilyHeader,Montserrat);--dxp-s-text-heading-small-font-size:1.125rem;--dxp-s-text-heading-small-font-style:normal;--dxp-s-text-heading-small-font-weight:300;--dxp-s-text-heading-small-text-decoration:none;--dxp-s-text-heading-small-text-transform:var(--lwc-textTransform,uppercase);--dxp-s-text-heading-small-line-height:1.25;--dxp-s-text-heading-small-letter-spacing:0;--dxp-s-body-font-family:var(--lwc-fontFamily,Lato);--dxp-s-body-font-size:1rem;--dxp-s-body-font-style:normal;--dxp-s-body-font-weight:400;--dxp-s-body-text-decoration:none;--dxp-s-body-text-transform:none;--dxp-s-body-line-height:1.5;--dxp-s-body-letter-spacing:0;--dxp-s-body-small-font-family:var(--lwc-fontFamily,Lato);--dxp-s-body-small-font-size:.75rem;--dxp-s-body-small-font-style:normal;--dxp-s-body-small-font-weight:400;--dxp-s-body-small-text-decoration:none;--dxp-s-body-small-text-transform:none;--dxp-s-body-small-line-height:1.25;--dxp-s-body-small-letter-spacing:0;--dxp-s-button-font-family:var(--lwc-fontFamily,Lato);--dxp-s-button-font-size:1rem;--dxp-s-button-font-style:normal;--dxp-s-button-font-weight:400;--dxp-s-button-text-transform:var(--lwc-textTransform,uppercase);--dxp-s-button-line-height:2;--dxp-s-button-letter-spacing:0;--dxp-s-link-text-decoration:none;--dxp-s-link-text-decoration-focus:underline;--dxp-s-link-text-decoration-hover:underline;--dxp-s-site-logo-url:var(--lwc-brandLogoImage,url());--dxp-s-section-columns-max-width:1800px;--dxp-s-header-content-max-width:1rem;--dxp-s-footer-content-max-width:1rem;--dxp-s-section-content-spacing-block-start:1rem;--dxp-s-section-content-spacing-block-end:1rem;--dxp-s-column-spacer-size:1rem;--dxp-s-component-wrapper-spacer-size:1.5rem;--dxp-s-section-columns-max-width-mobile:none;--dxp-s-header-content-max-width-mobile:none;--dxp-s-footer-content-max-width-mobile:none;--dxp-s-section-content-spacing-block-start-mobile:.75rem;--dxp-s-section-content-spacing-block-end-mobile:.75rem;--dxp-s-column-spacer-size-mobile:.75rem;--dxp-s-component-wrapper-spacer-size-mobile:1.5rem}</style></head><body class="null loading"><div class="auraMsgBox auraLoadingBox" id="auraLoadingBox"><div class="logo"></div><div class="spinner"></div><span>Loading</span></div><div class="" id="auraErrorMask"><div class="auraErrorBox" id="auraError"><span><a id="dismissError" class="close">脳</a>Sorry to interrupt</span><div id="auraErrorMessage">CSS Error</div><div id="auraErrorStack"></div><div class="auraErrorFooter"><a href="?" id="auraErrorReload">Refresh</a></div></div></div><script data-src="/jslibrary/1739659344000/canvas/CanvasRendering.js"></script><script data-src="/jslibrary/1739659344000/ui-analytics-reporting/EclairNG.js"></script><script src="/s/sfsites/l/%7B%22mode%22%3A%22PROD%22%2C%22dfs%22%3A%228%22%2C%22app%22%3A%22siteforce%3AcommunityApp%22%2C%22fwuid%22%3A%22Zm9LbDZETkxUclI3TmZfamRYSmpzUWg5TGxiTHU3MEQ5RnBMM0VzVXc1cmcxMS4zMjc2OC4w%22%2C%22loaded%22%3A%7B%22APPLICATION%40markup%3A%2F%2Fsiteforce%3AcommunityApp%22%3A%221232_i1u-juBSAcYeYnyHhRNT-Q%22%7D%2C%22apce%22%3A1%2C%22apck%22%3A%22JHt0aW1lc3RhbXB9MDAwMDAwMDA5Nzllbl9VUw%22%2C%22mlr%22%3A1%2C%22pathPrefix%22%3A%22%22%2C%22dns%22%3A%22c%22%2C%22ls%22%3A1%2C%22lrmc%22%3A%22-386269907%22%7D/inline.js?aura.attributes=%7B%22ac%22%3A%22%22%2C%22authenticated%22%3A%22false%22%2C%22brandingSetId%22%3A%22d2ab287f-14cf-4c09-b84d-1865780c78d0%22%2C%22formFactor%22%3A%22LARGE%22%2C%22isHybrid%22%3A%22false%22%2C%22language%22%3A%22en_US%22%2C%22pageId%22%3A%222b3ae15e-b1f3-45c9-9237-e7ad5a2bed3c%22%2C%22publishedChangelistNum%22%3A%22735%22%2C%22schema%22%3A%22Published%22%2C%22themeLayoutType%22%3A%22Inner%22%2C%22uds%22%3A%22false%22%2C%22viewType%22%3A%22Published%22%7D"></script><script src="/s/sfsites/l/%7B%22mode%22%3A%22PROD%22%2C%22dfs%22%3A%228%22%2C%22app%22%3A%22siteforce%3AcommunityApp%22%2C%22fwuid%22%3A%22Zm9LbDZETkxUclI3TmZfamRYSmpzUWg5TGxiTHU3MEQ5RnBMM0VzVXc1cmcxMS4zMjc2OC4w%22%2C%22loaded%22%3A%7B%22APPLICATION%40markup%3A%2F%2Fsiteforce%3AcommunityApp%22%3A%221232_i1u-juBSAcYeYnyHhRNT-Q%22%7D%2C%22apce%22%3A1%2C%22apck%22%3A%22JHt0aW1lc3RhbXB9MDAwMDAwMDA5Nzllbl9VUw%22%2C%22mlr%22%3A1%2C%22pathPrefix%22%3A%22%22%2C%22dns%22%3A%22c%22%2C%22ls%22%3A1%2C%22lrmc%22%3A%22-386269907%22%7D/resources.js?pu=1&pv=1739624365000-75843910&rv=1739774318000"></script><script src="/s/sfsites/auraFW/javascript/Zm9LbDZETkxUclI3TmZfamRYSmpzUWg5TGxiTHU3MEQ5RnBMM0VzVXc1cmcxMS4zMjc2OC4w/aura_prod.js"></script><script src="/s/sfsites/l/%7B%22mode%22%3A%22PROD%22%2C%22dfs%22%3A%228%22%2C%22app%22%3A%22siteforce%3AcommunityApp%22%2C%22serializationVersion%22%3A%221-11.32768.0-b%22%2C%22parts%22%3A%22f%22%2C%22loaded%22%3A%7B%22APPLICATION%40markup%3A%2F%2Fsiteforce%3AcommunityApp%22%3A%221232_i1u-juBSAcYeYnyHhRNT-Q%22%7D%2C%22dns%22%3A%22c%22%2C%22ls%22%3A1%2C%22lrmc%22%3A%22-386269907%22%7D/app.js?3="></script><script src="/s/sfsites/l/%7B%22mode%22%3A%22PROD%22%2C%22dfs%22%3A%228%22%2C%22app%22%3A%22siteforce%3AcommunityApp%22%2C%22fwuid%22%3A%22Zm9LbDZETkxUclI3TmZfamRYSmpzUWg5TGxiTHU3MEQ5RnBMM0VzVXc1cmcxMS4zMjc2OC4w%22%2C%22loaded%22%3A%7B%22APPLICATION%40markup%3A%2F%2Fsiteforce%3AcommunityApp%22%3A%221232_i1u-juBSAcYeYnyHhRNT-Q%22%7D%2C%22apce%22%3A1%2C%22apck%22%3A%22JHt0aW1lc3RhbXB9MDAwMDAwMDA5Nzllbl9VUw%22%2C%22mlr%22%3A1%2C%22pathPrefix%22%3A%22%22%2C%22dns%22%3A%22c%22%2C%22ls%22%3A1%2C%22lrmc%22%3A%22-386269907%22%7D/bootstrap.js?aura.attributes=%7B%22ac%22%3A%22%22%2C%22authenticated%22%3A%22false%22%2C%22brandingSetId%22%3A%22d2ab287f-14cf-4c09-b84d-1865780c78d0%22%2C%22formFactor%22%3A%22LARGE%22%2C%22isHybrid%22%3A%22false%22%2C%22language%22%3A%22en_US%22%2C%22pageId%22%3A%222b3ae15e-b1f3-45c9-9237-e7ad5a2bed3c%22%2C%22publishedChangelistNum%22%3A%22735%22%2C%22schema%22%3A%22Published%22%2C%22themeLayoutType%22%3A%22Inner%22%2C%22uds%22%3A%22false%22%2C%22viewType%22%3A%22Published%22%7D"></script></body></html>