/* module-key = 'com.atlassian.confluence.plugins.confluence-frontend:ajs', location = '/includes/css/aui-overrides.css' */
/*
We are introducing these CSS changes to compensate for changes introduced
in AUI 9.4.0. For more information see the AUI 9.4.0 documentation.
https://bitbucket.org/atlassian/aui/src/9.4.0/CHANGELOG.md

*/

/*CONFSRVDEV-27806: AUI 9.7.1 set z-index: 100 for inline-dialog 1, should remove when migrate all to inline-dialog 2 */
.aui-inline-dialog {
    z-index: 100;
}

.aui-inline-dialog:focus-visible {
    outline-width: 0;
}

/* CONFSRVDEV-27780 AUI 9.7.1 dialog2 display x button */
.aui-dialog2[data-aui-modal=true] .aui-dialog2-header-close {
    display: none;
}

form.aui {
    position: relative;
}

/* TODO: Remove this when AUI-4933 is fixed */
aui-spinner {
    z-index: auto !important;
}

.aui-header a.aui-button {
    line-height: 1.4285714285714;
    display: inline-block;
    padding: 4px 10px;
}
#editPageLink aui-spinner[size="small"] {
    margin-left: 7px;
}

/*
CONFSRVDEV-32043: Override default jQuery disabled spinner image with new, theme friendly, spinner image
 */
.aui-button-primary[aria-disabled="true"] .aui-icon-wait {
    background-image: var(--confluence-icon-spinner-gif) !important;
    opacity: 0.7;
}

/* Hank sez - way too spacey! */
#com-atlassian-confluence .tipsy {
    line-height: 16px;
}

.aui-navgroup-inner > div:first-child > .aui-nav-heading,
.aui-navgroup-inner > div:first-child > div:first-child .aui-nav-heading {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}

/* Prevents nasty buttons on iPad */
.aui-button {
    -webkit-appearance: none;
}

/* File uploads look like garbage (and it's the same on the ADG spec) */
form.aui .field-group .upfile {
    padding: 0;
    position: relative;
    bottom: -4px;
    font-size: 13px;
    margin: 0;
}

/* CONFDEV-13577 Team Calendars portions were covering the Tools menu */
.aui-dropdown2 {
    z-index: 1000;
}

/* CONFDEV-14742: Override aui style because disabled checkboxes are too bright
   and cause very low contrast in pages like viewsecurityconfig.action */
form.aui div.checkbox > .checkbox[disabled] + label {
    color: var(--ds-text, #707070);
}

/* CONF-28482: Allow maximum-width textareas for various pages in the space admin */
form.aui .textarea.max-textarea {
    width: 100%;
    max-width: none;
}

/* The background image is already on the #footer-logo, on mobile having both logos breaks */
#footer .footer-body {
    background-image: none;
}

/* These overides are needed to combat teamcal's jquery-ui datepicker custom styles */
body .aui-datepicker-dialog .ui-datepicker {
    position: static;
}

/* These overides are needed to combat teamcal's jquery-ui datepicker custom styles */
.aui-datepicker-dialog div.ui-datepicker .ui-datepicker-prev,
.aui-datepicker-dialog div.ui-datepicker .ui-datepicker-next {
    background-image: none;
    color: var(--ds-text, #172B4D);
    .ui-state-disabled {
        color: var(--ds-text-disabled, #707070);
    }
}

.aui-datepicker-dialog .ui-widget-header .ui-state-hover {
    background: var(--ds-background-accent-gray-subtler, #EBECF0);
}

/* These overides are needed to combat confluence-business-blueprints ui jquery-ui custom styles
 * Must be removed after CONFDEV-31901 is resolved */
.aui-datepicker-dialog .ui-datepicker td .ui-state-default {
    background: none;
    color: inherit;
}

/* These overides are needed to combat confluence-business-blueprints ui jquery-ui custom styles
 * Must be removed after CONFDEV-31901 is resolved */
.aui-datepicker-dialog .ui-datepicker .ui-datepicker-unselectable {
    opacity: 1;
}

/* These overides are needed to combat atlassian-streams ui jquery-ui datepicker custom styles*/
.aui-datepicker-dialog .ui-icon {
    text-indent: 0;
}

.aui-datepicker-dialog .ui-datepicker .ui-datepicker-prev span,
.aui-datepicker-dialog .ui-datepicker .ui-datepicker-next span {
    background: none;
    height: auto;
    width: auto;
}

.aui-inline-dialog.aui-datepicker-dialog .hasDatepicker .ui-widget-header {
    background: var(--ds-background-input, #f5f5f5);
}

/* Temporary fix until CQ-1199 is complete */
.aui-avatar-big img {
    height: 48px;
    width: 48px;
}
/* Temporary fix for aui-avatar before feature - currently supresses the hover effect */
.aui-avatar:before{
    border: none;
    position: inherit;
    float: left;
}

/* Globally downsize the ADG2.0/AUI5.7+ h1 font size because it was deemed too large for Confluence */
h1 {
    font-size: 28px;
    line-height: 1.25;
}

/* Todo: The headings in the sidebar plugin need to be converted to styled <span>/<div>'s CONFDEV-29899 */
.ia-quick-links-header-title {
    font-size: 12px;
    text-transform: uppercase;
}

/* Override padding on Atlassian Connect edit macro dialog. Should be removed once Connect >= 1.1.15 is in production */
.ap-aui-dialog2 .aui-dialog2-content {
    padding: 0;
}

/* Bring back overflow: hidden property on inline dialog contents that was removed in the latest AUI release
 * Without an overflow: hidden property, some inline dialogs (date picker, create JIRA issue) are showing vertical
 * scrollbars. This override should be examined once AUI-3078 is resolved */
.aui-inline-dialog .aui-inline-dialog-contents, .aui-inline-dialog .contents {
    overflow: hidden;
}

/* ACDEV-1661: This is a hot patch for OD-11 for an issue with chromeless connect dialogs.
 * This code should be removed once ACDEV-1661 is fixed properly by a new version of atlassian-connect */
.aui-dialog2.aui-layer[aria-hidden="true"].ap-aui-dialog2-chromeless > * {
    opacity:0;
    visibility: hidden;
}
.aui-dialog2.aui-layer[aria-hidden="false"].ap-aui-dialog2-chromeless > * {
    opacity: 1;
    transition: visibility 0.2s, opacity 0.2s;
    transition-delay: 0s;
    visibility: visible;
}
.aui-dialog2.aui-layer[aria-hidden="false"].ap-aui-dialog2-chromeless {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: opacity, visibility;
}

/* The date picker dialog has too much padding. This is caused by load ordering issues. Confluence is pulling in
   Inline Dialog styles, Date picker styles and then Inline Dialog2 styles. The date picker resets the inline dialog
   padding to 0px, but the Inline Dialog2 styles reset it back to 20px. Using higher specificity to battle the problem
   This should be removed once https://ecosystem.atlassian.net/browse/AUI-3243 is resolved */
.aui-inline-dialog.aui-datepicker-dialog .aui-inline-dialog-contents,
.aui-inline-dialog.aui-datepicker-dialog .contents {
    padding: 0;
}

/* Disabled styles clone from aui-button for dialog panel.
   Should be deleted when Confluence dialogs are migrated from using AUI Dialog to using AUI Dialog 2 */
.aui-dialog .dialog-button-panel button.button-panel-button {
    background-color: var(--ds-background-brand-bold, var(--ds-background-accent-blue-bolder, #0052CC));
    color: var(--ds-text-inverse, var(--ds-surface, #FFF));
}

.aui-dialog .dialog-button-panel button.button-panel-button:hover {
    background-color: var(--ds-background-brand-bold-hovered, var(--ds-background-accent-blue-bolder, #0065FF));
    color: var(--ds-text-inverse, var(--ds-surface, #FFF));
}

.aui-dialog .dialog-button-panel button.button-panel-button[disabled],
.aui-dialog .dialog-button-panel button.button-panel-button[disabled]:hover,
.aui-dialog .dialog-button-panel button.button-panel-button[disabled]:focus,
.aui-dialog .dialog-button-panel button.button-panel-button[disabled]:active {
    background: var(--ds-background-disabled, var(--ds-background-accent-gray-subtler, #F4F5F7));
    border-color: transparent;
    box-shadow: none;
    color: var(--ds-text-disabled, var(--ds-background-accent-gray-subtle, #A5ADBA));
    cursor: default;
    text-shadow: none;
}

form.aui .aui-select2-container {
    max-width: initial;
}
/**
Adding a 'subtle' styled select2 search choice selection. At the moment this is used for negation selections
in CQL filter fields i.e. selecting '-foo' in a label filter field will find all content with labels != foo

This should be removed once https://ecosystem.atlassian.net/browse/AUI-3502 is resolved */
.aui-select2-container .select2-choices .select2-search-choice.cql-exclude {
    border-color: var(--ds-border, #e9e9e9) !important; /* This is  only  marked !important for now to override styling in current version of UI components */
    color: var(--ds-text, #707070);
    background-color: var(--ds-background-input, #f5f5f5);
}

/*
   The AUI DatePicker version 1 uses an InlineDialog1 and has no way to add classes to inline dialog, or to bind to the
   event of the dialog being shown. In short - there's no hook to set a manual z-index when the thing is shown.
   No z-index means that the picker will be displayed UNDER anything with a z-index, such as the Macro Browser.
   We override to a large value here because the date picker once shown spawns no further elements - there's no danger
   of some other desired page element being obscured by it.
 */
.aui-datepicker-dialog {
    z-index: 40000;
}

/* AUI-3636: AUI Dropdown2 is inheriting styles from aui-layer that shouldn't exist. This is causing layout issues when
   resizing the browser window vertically while dropdowns are opened. This fix should be removed once the styles have
   been removed from aui-layer. This is expected to be introduced in AUI 5.8.14. */
.aui-dropdown2.aui-layer {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
}

/*
   FIXME CONFSRVDEV-10719: We may not be able to remove this but first-party usages should be
   updated to use the newer AUI spinner functionality. Usage of this CSS class is deprecated and
   strongly discouraged for style consistency, resolution and accessibility reasons.
   CONFSRVDEV-32043: Override default jQuery spinner image with new, theme friendly, spinner image (Still should do above note)

 */
.aui-icon-wait {
    background-image: var(--confluence-icon-spinner-gif);
}

/* CONFDEV-18442 Remove extra space next to site logo in AUI9 */
.aui-header {
    .aui-header-logo.aui-header-logo-custom {
        margin-right: 0;

        .aui-header-logo-text {
            padding: 10px 0 10px 10px;
        }
    }
    .aui-header-logo.aui-header-logo-confluence {
        margin-right: 10px;
    }
}

/* CONFSRVDEV-18498: Fixing misaligned checkboxes in AUI 9 */
#macro-browser-dialog.aui-popup form.aui:not(.aui-legacy-forms) .checkbox {
    input:not(:checked) + .aui-form-glyph::before {
        top: 13px;
    }

    input:checked + .aui-form-glyph::before {
        top: 13px;
    }
}

form.aui:not(.aui-legacy-forms) .checkbox input:checked:disabled~label {
    color: var(--ds-text-disabled, var(--aui-form-disabled-field-label-color, #B6C2CF))
}

/* CONFSRVDEV-18740: icons are underlined in AUI 9 which shouldn't happen */
.aui-icon {
    text-decoration: none;
    &:hover {
        text-decoration: none;
    }
}

/* CONFSRVDEV-18504: fix incorrect top nav dropdown behaviours in AUI 9
    - top nav dropdown is overlapped by left side nav
    - CSS bleeding causes menu item colours to be off
 */
header#header nav.aui-header {
    z-index: 11;

    .aui-dropdown2-section {
        a, button {
            color: var(--ds-text, #172B4D);

            &:focus, &:hover {
                color: var(--ds-text, #172B4D);
                background-color: var(--ds-background-neutral-subtle-hovered, #EBECF0);
            }
        }

        a.aui-dropdown2-trigger.active {
            background-color: var(--ds-background-neutral-subtle-pressed, #EBECF0);
        }
    }
}

/* CONFSRVDEV-18451: fix AUI9 issue on Edge 18:
Current selection in <select> is not visible because
background-color of <option> is always var(--aui-form-field-focus-bg-color)
*/
form.aui:not(.aui-legacy-forms) .multi-select:focus > option,
form.aui:not(.aui-legacy-forms) .password:focus > option,
form.aui:not(.aui-legacy-forms) .select:focus > option,
form.aui:not(.aui-legacy-forms) .text:focus > option,
form.aui:not(.aui-legacy-forms) .textarea:focus > option {
    background-color: var(--ds-surface, white);
}

/* CONFSRVDEV-18751: fix CSS interaction between AUI 9 and Atlaskit causing
inputs to have strange blue focus ring around the Atlastkit inputs.
Add ID of container of plugins which utilises Atlaskit here to fix issue.
*/
#audit-root,
#gatekeeper-ui-global-config-root,
#gatekeeper-ui-space-config-root,
#retention-rules-root,
#webhooks-root {
    input:focus-visible {
        box-shadow: none;
    }
}

/*
CONFSRVDEV-18753 - Fixes for tab menu focus rings
:after - AUI 8
:before - AUI 9
*/
#admin-body-content {
    .aui-tabs li.active-tab a:before {
        bottom: -2px;
    }

    .aui-tabs > ul.tabs-menu:before {
        z-index: 0;
    }

    .aui-tabs li {
        z-index: 1;
    }

    .aui-tabs > ul.tabs-menu {
        padding: 2px 0 2px 2px;
    }
}

/*
DCA11Y-964 - Jira cloud
Adding on override so we have a full focus ring on the tab when clicked
*/
#recent-updates.aui-tabs.horizontal-tabs[data-aui-responsive]:not([data-aui-responsive="false"]) > .tabs-menu {
    overflow: visible;
}

/*
CONFSRVDEV-18691 - Fix alignment of nav-links
*/
header#header nav.aui-header .aui-header-before {
    margin-right: 0;
}

/*
CONFSRVDEV-18933 - Fix datepicker in AUI 9
*/
.aui-inline-dialog-contents .ui-datepicker {
    width: inherit;
}

/*
CONFSRVDEV-28194 - Remove the border around the avatar visible in dark theme, which is invisible already in light theme
*/
html[data-theme] .aui-avatar {
    span.aui-avatar-inner {
        box-shadow: none;
    }
    div.aui-avatar-inner {
        box-shadow: none;
    }
}

/*
CONFSRVDEV-28447 - Fix the alignment of the focus ring on form elements
*/
#macro-browser-dialog.aui-popup form.aui:not(.aui-legacy-forms) .checkbox input:focus+.aui-form-glyph:after {
    top: 9px;
}

/*
CONFSRVDEV-31686 - Override font-weight to bold in App Header
CONFSRVDEV-31846 - make header match cloud header
*/
header#header nav.aui-header {
    padding: 7px 10px;
    .aui-nav > li > a,
    .aui-header-logo {
        font-weight: 500;
    }
    .aui-header-logo>a,
    .aui-header-primary>.aui-nav>li>a:not(.aui-button),
    .aui-header-secondary>.aui-nav>li>a:not(.aui-button) {
        height: 32px;
        border-radius: 3px;
    }
}

/*
CONFSRVDEV-28169 - Center the focus ring on the pagination links on people and space directories
*/
#space-search-result,
#peoplelist {
    .aui-nav-pagination>li>a {
        padding: 5px 10px;
    }
}

/*
CONFSRVDEV-31708 - change the sidebar background color to --ds-surface to match the cloud. Override the one from AUI
as that uses --ds-surface-sunken
*/
#nav-sidebar.aui-sidebar .aui-sidebar-wrapper {
    background-color: var(--ds-surface, #f4f5f7);
}

#nav-sidebar.aui-sidebar .aui-sidebar-footer {
    background-color: var(--ds-surface, #f4f5f7);
    /* hiding the border at the top of the footer */
    border-top: 1px solid var(--ds-surface, #f4f5f7);
}

/*
CONFSRVDEV-28177: Override default AUI select2 styles which has a white background
CONFSRVDEV-32043: Override default jQuery spinner image with new, theme friendly, spinner image
*/
.select2-container-multi .select2-choices .select2-search-field input.select2-input.select2-active {
    background-color: var(--ds-background-input, #fff) !important;
    background-image: var(--confluence-icon-spinner-gif) !important;
}

/*
CONFSERVER-94502 - Custom DIV wrapper for AUI table - sticky header and scrollable body
*/
div.aui-table-responsive-wrapper-override {
    max-height: 768px;
    overflow: auto;
    height: 100%;
    border: 1px solid var(--ds-border, var(--aui-table-border-color));

    table {
        thead {
            position: sticky;
            top: 0;
            background: var(--ds-surface, white);

            tr {
                background: var(--ds-background-neutral, #091e420f);

                th:hover {
                    background: var(
                        --ds-background-neutral-hovered,
                        var(--aui-table-sortable-hover-bg-color)
                    );
                }
            }
        }
    }
}

/* CONFSRVDEV-37226 - Fix Focus Ring overlapping adjacent selected element - vertical lists */
/* Remove if AUI fixes this */
ul:is(.aui-nav, .aui-list-truncate, .dialog-page-menu, .acs-nav-list) > li.aui-button:focus,
ul:is(.aui-nav, .aui-list-truncate, .dialog-page-menu, .acs-nav-list) > li > :is(a, button):only-child:focus {
    position: relative;
    z-index: 1;
}

/* module-key = 'com.atlassian.confluence.plugins.confluence-frontend:ajs', location = '/includes/css/aui-legacy/aui-footer.css' */
/* apply for footer body that has no footer logo */
#footer .footer-body:not(:has(> #footer-logo)),
/* or for anchor (<a>) tags within #footer-logo */
#footer-logo a {
  background: url('/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/atlassian/atlassian-horizontal-neutral.svg') center bottom no-repeat;
  background-size: 127px 26px;
}
#footer-logo {
  background: var(--ds-surface, #f5f5f5);
  position: relative;
  margin-top: 21px;
}
#footer-logo a {
  display: block;
  height: 26px;
  margin: 0 auto;
  text-align: left;
  text-indent: -9999em;
  width: 127px;
}
#footer-logo a:focus,
#footer-logo a:hover,
#footer-logo a:active {
  background-image: url('/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/atlassian/atlassian-horizontal-blue.svg');
  background-size: 127px 26px;
}

#footer {
    box-sizing: border-box;
}

#footer .footer-link-underline {
  text-decoration: underline;
}

/* module-key = 'com.atlassian.confluence.plugins.confluence-frontend:ajs', location = '/includes/css/aui-legacy/aui-header.css' */
.aui-header .aui-header-logo:not(.aui-header-logo-textonly).aui-header-logo-atlassian .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/atlassian/atlassian-horizontal-white.svg");
  width: 135px;
}
.aui-header .aui-header-logo-bamboo .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/products/bamboo-white.svg");
  width: 102.75px;
}
.aui-header .aui-header-logo-bitbucket .aui-header-logo-device,
.aui-header .aui-header-logo-stash .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/products/bitbucket-white.svg");
  width: 111.5px;
}
.aui-header .aui-header-logo-clover .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/products/clover-white.svg");
  width: 82.325px;
}
.aui-header .aui-header-logo:not(.aui-header-logo-textonly).aui-header-logo-confluence .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/products/confluence-white.svg");
  width: 128px;
  height: 24px;
  padding: 8px 0;
}
html[data-color-mode="light"][data-theme~="light:light"] .aui-header .aui-header-logo:not(.aui-header-logo-textonly).aui-header-logo-confluence .aui-header-logo-device,
html[data-color-mode="dark"][data-theme~="dark:light"] .aui-header .aui-header-logo:not(.aui-header-logo-textonly).aui-header-logo-confluence .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/products/confluence-light.svg");
}
html[data-color-mode="light"][data-theme~="light:dark"] .aui-header .aui-header-logo:not(.aui-header-logo-textonly).aui-header-logo-confluence .aui-header-logo-device,
html[data-color-mode="dark"][data-theme~="dark:dark"] .aui-header .aui-header-logo:not(.aui-header-logo-textonly).aui-header-logo-confluence .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/products/confluence-dark.svg");
}
.aui-header .aui-header-logo-crowd .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/products/crowd-white.svg");
  width: 83.75px;
}
.aui-header .aui-header-logo-crucible .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/products/crucible-white.svg");
  width: 97.25px;
}
.aui-header .aui-header-logo-fisheye .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/products/fisheye-white.svg");
  width: 94.5px;
}
.aui-header .aui-header-logo-jira .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/products/jira-white.svg");
  width: 53.25px;
}
.aui-header .aui-header-logo-jira.with-core .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/products/jira-with-core-white.svg");
  width: 52px;
}
.aui-header .aui-header-logo-jira.with-software .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/products/jira-with-software-white.svg");
  width: 51.75px;
}
.aui-header .aui-header-logo-jira.with-service-desk .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/products/jira-with-service-desk-white.svg");
  width: 53.25px;
}
.aui-header .aui-header-logo-jira-core .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/products/jira-core-white.svg");
  width: 99.5px;
}
.aui-header .aui-header-logo-jira-software .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/products/jira-software-white.svg");
  width: 146px;
}
.aui-header .aui-header-logo-jira-service-desk .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/products/jira-service-desk-white.svg");
  width: 176.5px;
}
.aui-header .aui-header-logo-answers .aui-header-logo-device,
.aui-header .aui-header-logo-community .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/programs/atlassian-community-white.svg");
  width: 201.5312px;
}
.aui-header .aui-header-logo-developers .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/programs/atlassian-developer-white.svg");
  width: 191.0238px;
}
.aui-header .aui-header-logo-experts .aui-header-logo-device,
.aui-header .aui-header-logo-partner-program .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/programs/atlassian-partner-program-white.svg");
  width: 237.488px;
}
.aui-header .aui-header-logo-marketplace .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/programs/atlassian-marketplace-white.svg");
  width: 207.5506px;
}
.aui-header .aui-header-logo-support .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/programs/atlassian-support-white.svg");
  width: 172.2984px;
}
.aui-header .aui-header-logo-university .aui-header-logo-device {
  background-image: url("/s/-79dtmw/9403/s-672888934/20.1.49/_/download/resources/com.atlassian.confluence.plugins.confluence-frontend:ajs/images/brand-images/programs/atlassian-university-white.svg");
  width: 187.504px;
}
