/*---------------------------------
-----  dimension variables --------
----------------------------------*/
/*------  standard elements padding & margin  -------*/
/**
* mobile first breakpoints based on design specification 
* deprecated variables
*/
/**
* mobile first breakpoints based on design specification 
* $bp-m: >= 768px
* $bp-l: >= 1024px
* $bp-xl: >= 1440px
* @media only screen and (min-width: $bp-m) {}
*/
/**
**  Official Font sizes
------------------------------- */
/**
** Line-heights
------------------------------- */
/*
    Mixin to progressively-enhance :focus-visible, keeping :focus where not supported
    Add an arbitrary list of selectors into the arguments, and the styling in the block.
    I you pass no selectors to the mixin the parent ("ampersand") operator is used instead.

    There are two mixins: 
    - focus-visible: a generic focus-visible, giving you "slots" to decide what to render for :focus, :focus reset, and :focus-visible
    - focus-visible-outline: a focus-visible, which only resets the outline. If you don't need more custom resets, use this one!

    Use focus-visible:
    The key thing here is checking which slot is being rendered.
    For example, you can reset box-shadow here, or anything else.

    @include focus-visible using ($slot) {
        @if $slot == focus {
            outline: 2px solid transparent;
            box-shadow: 0 0 0 4px blue;
        }
        @if $slot == focusReset {
            box-shadow: none;
        }
        @if $slot == focusVisible {
            box-shadow: 0 0 0 4px blue;
        }
    }

    Use focus-visible-outline:
    @include focus-visible-outline("button", "a[href]") {
        outline: 2px solid blue;
    }

    Resulting CSS (compressed):

    button:focus,
    a[href]:focus {
        outline: 2px solid blue;
    }

    button:focus:not(:focus-visible),
    a[href]:focus:not(:focus-visible) {
        outline: none;
    }
    button:focus-visible,
    a[href]:focus-visible {
        outline: 2px solid blue;
    }
*/
/**
* mobile first breakpoints based on design specification 
* deprecated variables
*/
/**
* mobile first breakpoints based on design specification 
* $bp-m: >= 768px
* $bp-l: >= 1024px
* $bp-xl: >= 1440px
* @media only screen and (min-width: $bp-m) {}
*/
.ux-notification-bell {
  background: var(--ux-notification-bell-background);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.ux-notification-bell .ux-notification-bell__content {
  position: relative;
}
.ux-notification-bell .ux-notification-bell__icon {
  font-size: var(--ux-notification-bell-icon-font-size);
  fill: var(--ux-notification-bell-icon-fill);
}
.ux-notification-bell .ux-notification-bell__badge {
  font-size: 0;
  left: var(--ux-notification-bell-badge-left-pos);
  top: var(--ux-notification-bell-badge-top-pos);
  margin-left: var(--ux-notification-bell-badge-margin-left-pos);
  display: inline-flex;
  position: var(--ux-notification-bell-badge-position);
}