/*
    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;
    }
*/
:host {
  display: block;
}

@media only screen and (min-width: 1920px) {
  uic-message-list {
    --uic-message-list-item-width: 443px;
    --uic-message-list-header-height: 77px;
  }
}
@media only screen and (max-width: 1919px) {
  uic-message-list {
    --uic-message-list-item-width: 368px;
    --uic-message-list-header-height: 66px;
  }
}
@media only screen and (max-width: 1023px) {
  uic-message-list {
    --uic-message-list-item-width: 305px;
    --uic-message-list-header-height: 54px;
  }
}

.uic-message-list__flyout-head-content-1 {
  height: 20px;
}
.uic-message-list__flyout-head-content-1-container {
  display: flex;
  align-items: center;
}
.uic-message-list__header-spacer {
  width: 100%;
}
.uic-message-list__flyout-head-content-2 {
  margin-top: -4px;
  height: 20px;
  font-family: OpenSans, sans-serif;
  font-weight: var(--uic-font-weight-semibold);
}
.uic-message-list__flyout-min {
  background: var(--uic-color-white);
  box-shadow: 0 2px 4px 0 var(--uic-atom-shadow-color-primary), 0 2px 8px 0 var(--uic-atom-shadow-color-secondary);
  font-family: OpenSans, sans-serif;
  /*OpenSans-Regular*/
  height: 100%;
  width: var(--uic-message-list-item-width);
  position: relative;
}
.uic-message-list__flyout-head-min {
  font-size: var(--uic-font-size-normal);
  color: var(--uic-color-black);
  line-height: 20px;
  padding-top: 13px;
  padding-left: 32px;
  height: var(--uic-message-list-header-height);
}
.uic-message-list__flyout-content-min {
  border-top: 1px solid var(--uic-color-blue4);
}
.uic-message-list__messages-container-min {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  height: 100%;
  border-spacing: inherit;
}
.uic-message-list__flyout-footer-min {
  width: calc(var(--uic-message-list-item-width) / 2);
  padding-left: calc(var(--uic-message-list-item-width) / 2 - 82px);
  padding-top: 19px;
  position: absolute;
  display: flex;
  flex-direction: column;
  padding-bottom: 22px;
}
.uic-message-list__flyout-footer-label-min {
  bottom: 64px !important;
  z-index: var(--uic-message-list-flyout-footer-label-z-index);
  font-size: var(--uic-font-size-normal);
  color: var(--uic-color-blue4);
  line-height: 23px;
  width: 187px;
  height: 23px;
  text-align: center;
  cursor: pointer;
}
.uic-message-list__flyout-footer--label-text-min {
  border-bottom: 1px solid var(--uic-color-blue4);
}
.uic-message-list__flyout-head-max {
  font-size: var(--uic-font-size-normal);
  color: var(--uic-color-black);
  line-height: 20px;
  padding-left: 16px;
  height: var(--uic-message-list-header-height);
}
.uic-message-list__flyout-content-max {
  border-top: 1px solid var(--uic-color-blue4);
  overflow-y: auto;
  height: calc(100% - var(--uic-message-list-header-height) - 2px);
}
.uic-message-list__flyout-max {
  background: var(--uic-color-white);
  font-family: OpenSans, sans-serif;
  /*OpenSans-Regular*/
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  z-index: var(--uic-message-list-flyout-footer-z-index);
}
.uic-message-list__flyout-max ::-webkit-scrollbar {
  width: 8px;
}
.uic-message-list__flyout-max ::-webkit-scrollbar-track {
  background: var(--uic-color-whitea95);
  box-shadow: 0 0 6px 0 var(--uic-color-blue6a20);
}
.uic-message-list__flyout-max ::-webkit-scrollbar-thumb {
  background: var(--uic-color-blue2);
  border: 3px solid var(--uic-color-whitea95);
}
.uic-message-list__output {
  display: flex;
  position: relative;
  flex-direction: column;
}
.uic-message-list__output-content {
  font-size: var(--uic-font-size-normal);
  font-weight: normal;
  line-height: 1.3rem;
  padding-left: 32px;
  padding-top: 10px;
  font-style: italic;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--uic-color-grey2);
}
.uic-message-list__flyout-history {
  width: 100%;
  height: 39px;
  border-bottom: 1px solid #000;
}
.uic-message-list__flyout-history .uic-message-list__flyout-text {
  font-weight: var(--uic-font-weight-extrabold);
  font-size: var(--uic-font-size-normal);
  color: #000;
  letter-spacing: 0;
  line-height: 18px;
  width: 168px;
  height: 18px;
  padding-top: 11px;
  padding-bottom: 22px;
  padding-left: 24px;
}
.uic-message-list__type-filter {
  float: right;
  position: sticky;
  margin-right: 24px;
}
.uic-message-list__dropdown-space {
  margin-right: 8px;
}