/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._root_fzygv_4 {
  display: grid;
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

[data-header] {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  place-items: center;
  column-gap: 37rem;
  padding: 0 16rem;
  user-select: none;
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._root_9ftof_4 {
  display: flex;
  gap: 8rem;
  color: var(--text-layer-1-primary);
  font-size: 16rem;
  line-height: 1;
  font-variant-numeric: proportional-nums;
}

._root_9ftof_4 [data-date] {
  font-weight: var(--font-weight-6);
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._root_j0ro7_4 {
  box-sizing: content-box;
  color: var(--text-layer-1-primary);
  width: 100%;
  height: 100%;
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */
._svg_1te7f_3 {
  fill: currentColor;
  shape-rendering: geometricPrecision;
}/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

[data-dropdownmenu] [data-menu] {
  position: absolute;
  display: grid;
  z-index: var(--z-index-max);
  overflow: hidden;
}
@keyframes _menuFade_8403y_1 {
  from {
    opacity: 0;
    scale: 0.97;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

._menu_8403y_13 [data-menu] {
  --menu-background-color: var(--background-layer-2-accent);
  --menu-item-background-color: var(--background-layer-2);
  --menu-item-background-hover-color: var(--background-layer-2-hover);
  --menu-item-background-selected-color: var(--background-layer-2-accent);
  --menu-item-text-primary-color: var(--text-layer-2-primary);
  --menu-item-text-secondary-color: var(--text-layer-2-secondary);
  --menu-item-text-tertiary-color: var(--text-layer-2-tertiary);
  --menu-item-text-hover-color: var(--text-layer-2-hover);
  --menu-item-text-selected-color: var(--text-layer-2-accent);
  --transition-background-color: background-color var(--transition-duration) var(--transition-easing);
  --transition-border-color: border-color var(--transition-duration) var(--transition-easing);
  --transition-color: color var(--transition-duration) var(--transition-easing);

  top: calc(100% + 8rem);
  left: 50%;
  translate: -50% 0;
  min-width: 100%;
  width: max-content;
  row-gap: 1rem;

  background-color: var(--menu-background-color);
  border: solid 1rem var(--background-layer-2-accent);
  border-radius: var(--radius-10);
  box-shadow: var(--box-shadow-layer-1);
  /* opacity: 0;
  animation: menuFade 150ms forwards; */
  /* will-change: scale; */
}

._menu_8403y_13 [data-menu] [data-menu-item] {
  display: grid;
  background-color: var(--menu-item-background-color);
  color: var(--menu-item-text-primary-color);
}

._menu_8403y_13 [data-menu] [data-menu-item]:hover {
  --menu-item-background-color: var(--menu-item-background-hover-color);
  --menu-item-text-primary-color: var(--menu-item-text-hover-color);
  --menu-item-text-secondary-color: var(--menu-item-text-hover-color);
}

._menu_8403y_13 [data-menu] [data-menu-item][data-selected='true'] {
  --menu-item-background-color: var(--menu-item-background-selected-color);
  --menu-item-text-primary-color: var(--menu-item-text-selected-color);
  --menu-item-text-secondary-color: var(--menu-item-text-selected-color);
}

._menu_8403y_13 [data-menu] > button:first-child [data-menu-item] {
  border-top: none;
}

._menu_8403y_13 [data-menu] > button:last-child [data-menu-item] {
  border-bottom: none;
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._menu_i04wq_4 {
  --trigger-background-color: var(--background-layer-1);
  --trigger-background-hover-color: var(--background-layer-1-hover);
  --trigger-background-active-color: var(--background-layer-1-active);
  --trigger-text-color: var(--text-layer-1-primary);
  --trigger-text-hover-color: var(--text-layer-1-hover);
  --trigger-text-active-color: var(--text-layer-1-active);
  --health-color: var(--color-alarm-unknown);
  --transition-background-color: background-color var(--transition-duration) var(--transition-easing);
  --transition-color: color var(--transition-duration) var(--transition-easing);
  --transition-rotation: rotate calc(var(--transition-duration) * 0.3) var(--transition-easing);

  position: relative;
}

._menu_i04wq_4 [data-trigger] {
  --size: 20rem;

  display: grid;
  place-items: center;
  grid-auto-flow: column;
  column-gap: 8rem;
  background-color: var(--trigger-background-color);
  border-radius: var(--radius-10);
  color: var(--trigger-text-color);
  transition: var(--transition-background-color);
}

._menu_i04wq_4 [data-trigger]:hover {
  --trigger-text-color: var(--trigger-text-hover-color);
}

._menu_i04wq_4[data-is-open='true'] [data-trigger] {
  --trigger-text-color: var(--trigger-text-active-color);

  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: calc(var(--z-index-max) + 1);
}

._menu_i04wq_4[data-is-open='true'] [data-trigger] > [data-trigger-arrow] {
  rotate: 180deg;
}

._menu_i04wq_4 [data-trigger] [data-trigger-name] {
  font-size: var(--size);
  font-weight: var(--font-weight-4);
  transition: var(--transition-color);
  translate: 0 1rem;
}

._menu_i04wq_4 [data-trigger] [data-trigger-arrow] {
  width: calc(var(--size) * 0.6);
  height: calc(var(--size) * 0.6);
  transition: var(--transition-color), var(--transition-rotation);
  translate: 0 1rem;
}

._menu_i04wq_4 [data-menu] [data-menu-item] {
  place-content: start;
}

._menu_i04wq_4 [data-menu] [data-menu-item][data-override='false'] {
  padding: 12rem 15rem;
  font-size: 15rem;
}

._menu_i04wq_4 [data-menu] [data-menu-item]:hover {
  --menu-item-text-primary-color: var(--menu-item-text-hover-color);
  --menu-item-text-secondary-color: var(--menu-item-text-hover-color);
}

._menu_i04wq_4 [data-menu] [data-menu-item][data-selected='true'] {
  --menu-item-text-primary-color: var(--menu-item-text-selected-color);
  --menu-item-text-secondary-color: var(--menu-item-text-selected-color);
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._root_16yuz_4 {
  --background-color: var(--background-layer-1);
  --background-hover-color: var(--background-layer-1-hover);
  --background-active-color: var(--background-layer-1-active);
  --icon-color: var(--color-alarm-unknown);
  --label-color: var(--text-layer-1-accent);
  --label-hover-color: var(--text-layer-1-hover);
  --transition-background-color: background-color var(--transition-duration) var(--transition-easing);
  --transition-color: color var(--transition-duration) var(--transition-easing);

  place-self: center start;
  display: grid;
  column-gap: 60rem;
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._menu_c92dg_4 {
  --trigger-background-color: var(--background-layer-1);
  --trigger-background-hover-color: var(--background-layer-1-hover);
  --trigger-background-active-color: var(--background-layer-1-active);
  --trigger-text-color: var(--text-layer-1-primary);
  --trigger-text-secondary-color: var(--text-layer-1-secondary);
  --trigger-text-hover-color: var(--text-layer-1-hover);
  --trigger-text-active-color: var(--text-layer-1-active);
  --health-color: var(--color-alarm-unknown);
  --transition-background-color: background-color var(--transition-duration) var(--transition-easing);
  --transition-color: color var(--transition-duration) var(--transition-easing);
  --transition-rotation: rotate calc(var(--transition-duration) * 0.3) var(--transition-easing);

  position: relative;
}

._menu_c92dg_4 [data-trigger] {
  --size: 15rem;

  display: grid;
  place-items: center;
  grid-auto-flow: column;
  column-gap: 8rem;
  background-color: var(--trigger-background-color);
  border-radius: var(--radius-10);
  color: var(--trigger-text-color);
  transition: var(--transition-background-color);
}

._menu_c92dg_4 [data-trigger]:hover {
  --trigger-text-color: var(--trigger-text-hover-color);
  --trigger-text-secondary-color: var(--trigger-text-hover-color);
}

._menu_c92dg_4[data-is-open='true'] [data-trigger] {
  --trigger-text-color: var(--trigger-text-active-color);
  --trigger-text-secondary-color: var(--trigger-text-active-color);

  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: calc(var(--z-index-max) + 1);
}

._menu_c92dg_4[data-is-open='true'] [data-trigger] > [data-trigger-arrow] {
  rotate: 180deg;
}

._menu_c92dg_4 [data-trigger] [data-trigger-avatar] {
  --size: 30rem;

  width: var(--size);
  height: var(--size);
  transition: var(--transition-color);
}

._menu_c92dg_4 [data-trigger] [data-trigger-group] {
  display: grid;
  row-gap: 3rem;
  place-items: center start;
  translate: 0 -1rem;
}

._menu_c92dg_4 [data-trigger] [data-trigger-name] {
  font-size: var(--size);
  font-weight: var(--font-weight-6);
  line-height: 1;
  transition: var(--transition-color);
}

._menu_c92dg_4 [data-trigger] [data-trigger-title] {
  color: var(--trigger-text-secondary-color);
  font-size: 13rem;
  line-height: 1;
  transition: var(--transition-color);
}

._menu_c92dg_4 [data-trigger] [data-trigger-arrow] {
  --size: 20rem;
  
  width: calc(var(--size) * 0.6);
  height: calc(var(--size) * 0.6);
  transition: var(--transition-color), var(--transition-rotation);
}

._menu_c92dg_4 [data-menu] [data-menu-item] {
  place-content: start;
  padding: 12rem 15rem;
  font-size: 15rem;
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

[data-applayout] {
  --background-color: var(--background-layer-1);

  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 16rem;
  padding: 16rem 40rem 40rem;
  background-color: var(--background-color);
  user-select: none;
}
.vjs-modal-dialog .vjs-modal-dialog-content, .video-js .vjs-modal-dialog, .vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  text-align: center;
}

@font-face {
  font-family: VideoJS;
  src: url(data:application/font-woff;charset=utf-8;base64,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) format("woff");
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play, .video-js .vjs-play-control .vjs-icon-placeholder, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play:before, .video-js .vjs-play-control .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "\f101";
}

.vjs-icon-play-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play-circle:before {
  content: "\f102";
}

.vjs-icon-pause, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-pause:before, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before {
  content: "\f103";
}

.vjs-icon-volume-mute, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-mute:before, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {
  content: "\f104";
}

.vjs-icon-volume-low, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-low:before, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before {
  content: "\f105";
}

.vjs-icon-volume-mid, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-mid:before, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before {
  content: "\f106";
}

.vjs-icon-volume-high, .video-js .vjs-mute-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-high:before, .video-js .vjs-mute-control .vjs-icon-placeholder:before {
  content: "\f107";
}

.vjs-icon-fullscreen-enter, .video-js .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-fullscreen-enter:before, .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f108";
}

.vjs-icon-fullscreen-exit, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-fullscreen-exit:before, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f109";
}

.vjs-icon-spinner {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-spinner:before {
  content: "\f10a";
}

.vjs-icon-subtitles, .video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-subtitles-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-subtitles:before, .video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before {
  content: "\f10b";
}

.vjs-icon-captions, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-captions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-captions:before, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-captions-button .vjs-icon-placeholder:before {
  content: "\f10c";
}

.vjs-icon-hd {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-hd:before {
  content: "\f10d";
}

.vjs-icon-chapters, .video-js .vjs-chapters-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-chapters:before, .video-js .vjs-chapters-button .vjs-icon-placeholder:before {
  content: "\f10e";
}

.vjs-icon-downloading {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-downloading:before {
  content: "\f10f";
}

.vjs-icon-file-download {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-file-download:before {
  content: "\f110";
}

.vjs-icon-file-download-done {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-file-download-done:before {
  content: "\f111";
}

.vjs-icon-file-download-off {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-file-download-off:before {
  content: "\f112";
}

.vjs-icon-share {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-share:before {
  content: "\f113";
}

.vjs-icon-cog {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-cog:before {
  content: "\f114";
}

.vjs-icon-square {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-square:before {
  content: "\f115";
}

.vjs-icon-circle, .vjs-seek-to-live-control .vjs-icon-placeholder, .video-js .vjs-volume-level, .video-js .vjs-play-progress {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-circle:before, .vjs-seek-to-live-control .vjs-icon-placeholder:before, .video-js .vjs-volume-level:before, .video-js .vjs-play-progress:before {
  content: "\f116";
}

.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-circle-outline:before {
  content: "\f117";
}

.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-circle-inner-circle:before {
  content: "\f118";
}

.vjs-icon-cancel, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-cancel:before, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before {
  content: "\f119";
}

.vjs-icon-repeat {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-repeat:before {
  content: "\f11a";
}

.vjs-icon-replay, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-replay:before, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before {
  content: "\f11b";
}

.vjs-icon-replay-5, .video-js .vjs-skip-backward-5 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-replay-5:before, .video-js .vjs-skip-backward-5 .vjs-icon-placeholder:before {
  content: "\f11c";
}

.vjs-icon-replay-10, .video-js .vjs-skip-backward-10 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-replay-10:before, .video-js .vjs-skip-backward-10 .vjs-icon-placeholder:before {
  content: "\f11d";
}

.vjs-icon-replay-30, .video-js .vjs-skip-backward-30 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-replay-30:before, .video-js .vjs-skip-backward-30 .vjs-icon-placeholder:before {
  content: "\f11e";
}

.vjs-icon-forward-5, .video-js .vjs-skip-forward-5 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-forward-5:before, .video-js .vjs-skip-forward-5 .vjs-icon-placeholder:before {
  content: "\f11f";
}

.vjs-icon-forward-10, .video-js .vjs-skip-forward-10 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-forward-10:before, .video-js .vjs-skip-forward-10 .vjs-icon-placeholder:before {
  content: "\f120";
}

.vjs-icon-forward-30, .video-js .vjs-skip-forward-30 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-forward-30:before, .video-js .vjs-skip-forward-30 .vjs-icon-placeholder:before {
  content: "\f121";
}

.vjs-icon-audio, .video-js .vjs-audio-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-audio:before, .video-js .vjs-audio-button .vjs-icon-placeholder:before {
  content: "\f122";
}

.vjs-icon-next-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-next-item:before {
  content: "\f123";
}

.vjs-icon-previous-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-previous-item:before {
  content: "\f124";
}

.vjs-icon-shuffle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-shuffle:before {
  content: "\f125";
}

.vjs-icon-cast {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-cast:before {
  content: "\f126";
}

.vjs-icon-picture-in-picture-enter, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-picture-in-picture-enter:before, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f127";
}

.vjs-icon-picture-in-picture-exit, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-picture-in-picture-exit:before, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f128";
}

.vjs-icon-facebook {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-facebook:before {
  content: "\f129";
}

.vjs-icon-linkedin {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-linkedin:before {
  content: "\f12a";
}

.vjs-icon-twitter {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-twitter:before {
  content: "\f12b";
}

.vjs-icon-tumblr {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-tumblr:before {
  content: "\f12c";
}

.vjs-icon-pinterest {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-pinterest:before {
  content: "\f12d";
}

.vjs-icon-audio-description, .video-js .vjs-descriptions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-audio-description:before, .video-js .vjs-descriptions-button .vjs-icon-placeholder:before {
  content: "\f12e";
}

.video-js {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  position: relative;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  word-break: initial;
}
.video-js:-moz-full-screen {
  position: absolute;
}
.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}

.video-js[tabindex="-1"] {
  outline: none;
}

.video-js *,
.video-js *:before,
.video-js *:after {
  box-sizing: inherit;
}

.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3,
.video-js.vjs-9-16,
.video-js.vjs-1-1 {
  width: 100%;
  max-width: 100%;
}

.video-js.vjs-fluid:not(.vjs-audio-only-mode),
.video-js.vjs-16-9:not(.vjs-audio-only-mode),
.video-js.vjs-4-3:not(.vjs-audio-only-mode),
.video-js.vjs-9-16:not(.vjs-audio-only-mode),
.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
  height: 0;
}

.video-js.vjs-16-9:not(.vjs-audio-only-mode) {
  padding-top: 56.25%;
}

.video-js.vjs-4-3:not(.vjs-audio-only-mode) {
  padding-top: 75%;
}

.video-js.vjs-9-16:not(.vjs-audio-only-mode) {
  padding-top: 177.7777777778%;
}

.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
  padding-top: 100%;
}

.video-js.vjs-fill:not(.vjs-audio-only-mode) {
  width: 100%;
  height: 100%;
}

.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-js.vjs-audio-only-mode .vjs-tech {
  display: none;
}

body.vjs-full-window,
body.vjs-pip-window {
  padding: 0;
  margin: 0;
  height: 100%;
}

.vjs-full-window .video-js.vjs-fullscreen,
body.vjs-pip-window .video-js {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.video-js.vjs-fullscreen:not(.vjs-ios-native-fs),
body.vjs-pip-window .video-js {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
}

.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}

.vjs-pip-container .vjs-pip-text {
  position: absolute;
  bottom: 10%;
  font-size: 2em;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.5em;
  text-align: center;
  width: 100%;
}

.vjs-layout-tiny.vjs-pip-container .vjs-pip-text,
.vjs-layout-x-small.vjs-pip-container .vjs-pip-text,
.vjs-layout-small.vjs-pip-container .vjs-pip-text {
  bottom: 0;
  font-size: 1.4em;
}

.vjs-hidden {
  display: none !important;
}

.vjs-disabled {
  opacity: 0.5;
  cursor: default;
}

.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px;
}

.vjs-lock-showing {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.vjs-no-js {
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0px auto;
}

.vjs-no-js a,
.vjs-no-js a:visited {
  color: #66A8CC;
}

.video-js .vjs-big-play-button {
  font-size: 3em;
  line-height: 1.5em;
  height: 1.63332em;
  width: 3em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  margin-top: -0.81666em;
  margin-left: -1.5em;
  cursor: pointer;
  opacity: 1;
  border: 0.06666em solid #fff;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  border-radius: 0.3em;
  transition: all 0.4s;
}
.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
  border-color: #fff;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
  transition: all 0s;
}

.vjs-controls-disabled .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button,
.vjs-error .vjs-big-play-button {
  display: none;
}

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
  display: block;
}

.video-js button {
  background: none;
  border: none;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
  text-decoration: none;
  transition: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.vjs-control .vjs-button {
  width: 100%;
  height: 100%;
}

.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: 0.5em;
  z-index: 2;
}
.video-js .vjs-modal-dialog {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
  overflow: auto;
}

.video-js .vjs-modal-dialog > * {
  box-sizing: border-box;
}

.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1;
}

.vjs-menu-button {
  cursor: pointer;
}

.vjs-menu-button.vjs-disabled {
  cursor: default;
}

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
  display: none;
}

.vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: auto;
}

.vjs-menu .vjs-menu-content > * {
  box-sizing: border-box;
}

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
  display: none;
}

.vjs-menu li {
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}

.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover,
.js-focus-visible .vjs-menu li.vjs-menu-item:hover {
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}

.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover,
.js-focus-visible .vjs-menu li.vjs-selected:hover {
  background-color: #fff;
  color: #2B333F;
}

.video-js .vjs-menu *:not(.vjs-selected):focus:not(:focus-visible),
.js-focus-visible .vjs-menu *:not(.vjs-selected):focus:not(.focus-visible) {
  background: none;
}

.vjs-menu li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}

.vjs-menu-button-popup .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  width: 10em;
  left: -3em;
  height: 0em;
  margin-bottom: 1.5em;
  border-top-color: rgba(43, 51, 63, 0.7);
}

.vjs-pip-window .vjs-menu-button-popup .vjs-menu {
  left: unset;
  right: 1em;
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  max-height: 15em;
}

.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 5em;
}

.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 10em;
}

.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 14em;
}

.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 25em;
}

.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu,
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
  display: block;
}

.video-js .vjs-menu-button-inline {
  transition: all 0.4s;
  overflow: hidden;
}

.video-js .vjs-menu-button-inline:before {
  width: 2.222222222em;
}

.video-js .vjs-menu-button-inline:hover,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline.vjs-slider-active {
  width: 12em;
}

.vjs-menu-button-inline .vjs-menu {
  opacity: 0;
  height: 100%;
  width: auto;
  position: absolute;
  left: 4em;
  top: 0;
  padding: 0;
  margin: 0;
  transition: all 0.4s;
}

.vjs-menu-button-inline:hover .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  display: block;
  opacity: 1;
}

.vjs-menu-button-inline .vjs-menu-content {
  width: auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.video-js .vjs-control-bar {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}

.vjs-has-started .vjs-control-bar,
.vjs-audio-only-mode .vjs-control-bar {
  display: flex;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.1s, opacity 0.1s;
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  visibility: visible;
  opacity: 0;
  pointer-events: none;
  transition: visibility 1s, opacity 1s;
}

.vjs-controls-disabled .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar,
.vjs-error .vjs-control-bar {
  display: none !important;
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar,
.vjs-audio-only-mode.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-js .vjs-control {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 4em;
  flex: none;
}

.video-js .vjs-control.vjs-visible-text {
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-button > .vjs-icon-placeholder:before {
  font-size: 1.8em;
  line-height: 1.67;
}

.vjs-button > .vjs-icon-placeholder {
  display: block;
}

.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before,
.video-js .vjs-control:focus {
  text-shadow: 0em 0em 1em white;
}

.video-js *:not(.vjs-visible-text) > .vjs-control-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.video-js .vjs-custom-control-spacer {
  display: none;
}

.video-js .vjs-progress-control {
  cursor: pointer;
  flex: auto;
  display: flex;
  align-items: center;
  min-width: 4em;
  touch-action: none;
}

.video-js .vjs-progress-control.disabled {
  cursor: default;
}

.vjs-live .vjs-progress-control {
  display: none;
}

.vjs-liveui .vjs-progress-control {
  display: flex;
  align-items: center;
}

.video-js .vjs-progress-holder {
  flex: auto;
  transition: all 0.2s;
  height: 0.3em;
}

.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 0 10px;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder {
  font-size: 1.6666666667em;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
  font-size: 1em;
}

.video-js .vjs-progress-holder .vjs-play-progress,
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 0;
}

.video-js .vjs-play-progress {
  background-color: #fff;
}
.video-js .vjs-play-progress:before {
  font-size: 0.9em;
  position: absolute;
  right: -0.5em;
  line-height: 0.35em;
  z-index: 1;
}

.video-js .vjs-load-progress {
  background: rgba(115, 133, 159, 0.5);
}

.video-js .vjs-load-progress div {
  background: rgba(115, 133, 159, 0.75);
}

.video-js .vjs-time-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
  display: none;
}

.video-js .vjs-progress-control:hover .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip {
  display: block;
  font-size: 0.6em;
  visibility: visible;
}

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
  font-size: 1em;
}

.video-js .vjs-progress-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  z-index: 1;
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.vjs-mouse-display .vjs-time-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.video-js .vjs-slider {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 0.45em 0 0.45em;
  /* iOS Safari */
  -webkit-touch-callout: none;
  /* Safari */
  -webkit-user-select: none;
  /* Konqueror HTML */
  /* Firefox */
  -moz-user-select: none;
  /* Internet Explorer/Edge */
  /* Non-prefixed version, currently supported by Chrome and Opera */
  user-select: none;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}

.video-js .vjs-slider.disabled {
  cursor: default;
}

.video-js .vjs-slider:focus {
  text-shadow: 0em 0em 1em white;
  box-shadow: 0 0 1em #fff;
}

.video-js .vjs-mute-control {
  cursor: pointer;
  flex: none;
}
.video-js .vjs-volume-control {
  cursor: pointer;
  margin-right: 1em;
  display: flex;
}

.video-js .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
}

.video-js .vjs-volume-panel .vjs-volume-control {
  visibility: visible;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin-left: -1px;
}

.video-js .vjs-volume-panel {
  transition: width 1s;
}
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control, .video-js .vjs-volume-panel:active .vjs-volume-control, .video-js .vjs-volume-panel:focus .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control:active, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active {
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;
}
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  margin-right: 0;
}
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical {
  left: -3.5em;
  transition: left 0s;
}
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
  width: 10em;
  transition: width 0.1s;
}
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
  width: 4em;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  height: 8em;
  width: 3em;
  left: -3000em;
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;
}

.video-js .vjs-volume-panel {
  display: flex;
}

.video-js .vjs-volume-bar {
  margin: 1.35em 0.45em;
}

.vjs-volume-bar.vjs-slider-horizontal {
  width: 5em;
  height: 0.3em;
}

.vjs-volume-bar.vjs-slider-vertical {
  width: 0.3em;
  height: 5em;
  margin: 1.35em auto;
}

.video-js .vjs-volume-level {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
}
.video-js .vjs-volume-level:before {
  position: absolute;
  font-size: 0.9em;
  z-index: 1;
}

.vjs-slider-vertical .vjs-volume-level {
  width: 0.3em;
}
.vjs-slider-vertical .vjs-volume-level:before {
  top: -0.5em;
  left: -0.3em;
  z-index: 1;
}

.vjs-slider-horizontal .vjs-volume-level {
  height: 0.3em;
}
.vjs-slider-horizontal .vjs-volume-level:before {
  line-height: 0.35em;
  right: -0.5em;
}

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
  width: 4em;
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%;
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%;
}

.video-js .vjs-volume-vertical {
  width: 3em;
  height: 8em;
  bottom: 8em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}

.video-js .vjs-volume-horizontal .vjs-menu {
  left: -2em;
}

.video-js .vjs-volume-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-volume-control:hover .vjs-volume-tooltip,
.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
  display: block;
  font-size: 1em;
  visibility: visible;
}

.video-js .vjs-volume-vertical:hover .vjs-volume-tooltip,
.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
  left: 1em;
  top: -12px;
}

.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip {
  font-size: 1em;
}

.video-js .vjs-volume-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  z-index: 1;
}

.video-js .vjs-volume-horizontal .vjs-mouse-display {
  width: 1px;
  height: 100%;
}

.video-js .vjs-volume-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.vjs-mouse-display .vjs-volume-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.vjs-poster {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}

.vjs-has-started .vjs-poster,
.vjs-using-native-controls .vjs-poster {
  display: none;
}

.vjs-audio.vjs-has-started .vjs-poster,
.vjs-has-started.vjs-audio-poster-mode .vjs-poster,
.vjs-pip-container.vjs-has-started .vjs-poster {
  display: block;
}

.vjs-poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.video-js .vjs-live-control {
  display: flex;
  align-items: flex-start;
  flex: auto;
  font-size: 1em;
  line-height: 3em;
}

.video-js:not(.vjs-live) .vjs-live-control,
.video-js.vjs-liveui .vjs-live-control {
  display: none;
}

.video-js .vjs-seek-to-live-control {
  align-items: center;
  cursor: pointer;
  flex: none;
  display: inline-flex;
  height: 100%;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 1em;
  line-height: 3em;
  width: auto;
  min-width: 4em;
}

.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
  display: none;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
  cursor: auto;
}

.vjs-seek-to-live-control .vjs-icon-placeholder {
  margin-right: 0.5em;
  color: #888;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
  color: red;
}

.video-js .vjs-time-control {
  flex: none;
  font-size: 1em;
  line-height: 3em;
  min-width: 2em;
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-live .vjs-time-control,
.vjs-live .vjs-time-divider,
.video-js .vjs-current-time,
.video-js .vjs-duration {
  display: none;
}

.vjs-time-divider {
  display: none;
  line-height: 3em;
}

.video-js .vjs-play-control {
  cursor: pointer;
}

.video-js .vjs-play-control .vjs-icon-placeholder {
  flex: none;
}

.vjs-text-track-display {
  position: absolute;
  bottom: 3em;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}

.video-js.vjs-controls-disabled .vjs-text-track-display,
.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}

.video-js .vjs-text-track {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em;
}

.vjs-subtitles {
  color: #fff;
}

.vjs-captions {
  color: #fc6;
}

.vjs-tt-cue {
  display: block;
}

video::-webkit-media-text-track-display {
  transform: translateY(-3em);
}

.video-js.vjs-controls-disabled video::-webkit-media-text-track-display,
.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
  transform: translateY(-1.5em);
}

.video-js .vjs-picture-in-picture-control {
  cursor: pointer;
  flex: none;
}
.video-js.vjs-audio-only-mode .vjs-picture-in-picture-control,
.vjs-pip-window .vjs-picture-in-picture-control {
  display: none;
}

.video-js .vjs-fullscreen-control {
  cursor: pointer;
  flex: none;
}
.video-js.vjs-audio-only-mode .vjs-fullscreen-control,
.vjs-pip-window .vjs-fullscreen-control {
  display: none;
}

.vjs-playback-rate > .vjs-menu-button,
.vjs-playback-rate .vjs-playback-rate-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-playback-rate .vjs-playback-rate-value {
  pointer-events: none;
  font-size: 1.5em;
  line-height: 2;
  text-align: center;
}

.vjs-playback-rate .vjs-menu {
  width: 4em;
  left: 0em;
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center;
}

.vjs-error .vjs-error-display:before {
  color: #fff;
  content: "X";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4em;
  left: 0;
  line-height: 1;
  margin-top: -0.5em;
  position: absolute;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center;
  top: 50%;
  vertical-align: middle;
  width: 100%;
}

.vjs-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.85;
  text-align: left;
  border: 6px solid rgba(43, 51, 63, 0.7);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  visibility: hidden;
}

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
  display: block;
  animation: vjs-spinner-show 0s linear 0.3s forwards;
}

.vjs-loading-spinner:before,
.vjs-loading-spinner:after {
  content: "";
  position: absolute;
  margin: -6px;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after {
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
  border-top-color: rgb(255, 255, 255);
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
  border-top-color: rgb(255, 255, 255);
  animation-delay: 0.44s;
}

@keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}
@keyframes vjs-spinner-spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f;
  }
  20% {
    border-top-color: #73859f;
  }
  35% {
    border-top-color: white;
  }
  60% {
    border-top-color: #73859f;
  }
  100% {
    border-top-color: #73859f;
  }
}
.video-js.vjs-audio-only-mode .vjs-captions-button {
  display: none;
}

.vjs-chapters-button .vjs-menu ul {
  width: 24em;
}

.video-js.vjs-audio-only-mode .vjs-descriptions-button {
  display: none;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: "\f10c";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-audio-only-mode .vjs-subs-caps-button {
  display: none;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: " \f12e";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-layout-small .vjs-current-time,
.video-js.vjs-layout-small .vjs-time-divider,
.video-js.vjs-layout-small .vjs-duration,
.video-js.vjs-layout-small .vjs-remaining-time,
.video-js.vjs-layout-small .vjs-playback-rate,
.video-js.vjs-layout-small .vjs-volume-control, .video-js.vjs-layout-x-small .vjs-current-time,
.video-js.vjs-layout-x-small .vjs-time-divider,
.video-js.vjs-layout-x-small .vjs-duration,
.video-js.vjs-layout-x-small .vjs-remaining-time,
.video-js.vjs-layout-x-small .vjs-playback-rate,
.video-js.vjs-layout-x-small .vjs-volume-control, .video-js.vjs-layout-tiny .vjs-current-time,
.video-js.vjs-layout-tiny .vjs-time-divider,
.video-js.vjs-layout-tiny .vjs-duration,
.video-js.vjs-layout-tiny .vjs-remaining-time,
.video-js.vjs-layout-tiny .vjs-playback-rate,
.video-js.vjs-layout-tiny .vjs-volume-control {
  display: none;
}
.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover {
  width: auto;
  width: initial;
}
.video-js.vjs-layout-x-small .vjs-progress-control, .video-js.vjs-layout-tiny .vjs-progress-control {
  display: none;
}
.video-js.vjs-layout-x-small .vjs-custom-control-spacer {
  flex: auto;
  display: block;
}

.vjs-modal-dialog.vjs-text-track-settings {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.75);
  color: #fff;
  height: 70%;
}

.vjs-text-track-settings .vjs-modal-dialog-content {
  display: table;
}

.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-font,
.vjs-text-track-settings .vjs-track-settings-controls {
  display: table-cell;
}

.vjs-text-track-settings .vjs-track-settings-controls {
  text-align: right;
  vertical-align: bottom;
}

@supports (display: grid) {
  .vjs-text-track-settings .vjs-modal-dialog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding: 20px 24px 0px 24px;
  }
  .vjs-track-settings-controls .vjs-default-button {
    margin-bottom: 20px;
  }
  .vjs-text-track-settings .vjs-track-settings-controls {
    grid-column: 1/-1;
  }
  .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content {
    grid-template-columns: 1fr;
  }
}
.vjs-track-setting > select {
  margin-right: 1em;
  margin-bottom: 0.5em;
}

.vjs-text-track-settings fieldset {
  margin: 10px;
  border: none;
}

.vjs-text-track-settings fieldset span {
  display: inline-block;
  padding: 0 6px 8px;
}

.vjs-text-track-settings fieldset span > select {
  max-width: 7.3em;
}

.vjs-text-track-settings legend {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

.vjs-text-track-settings .vjs-label {
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  margin: 0 5px 5px 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.vjs-track-settings-controls button:focus,
.vjs-track-settings-controls button:active {
  outline-style: solid;
  outline-width: medium;
  background-image: linear-gradient(0deg, #fff 88%, #73859f 100%);
}

.vjs-track-settings-controls button:hover {
  color: rgba(43, 51, 63, 0.75);
}

.vjs-track-settings-controls button {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff 88%, #73859f 100%);
  color: #2B333F;
  cursor: pointer;
  border-radius: 2px;
}

.vjs-track-settings-controls .vjs-default-button {
  margin-right: 1em;
}

.vjs-title-bar {
  background: rgba(0, 0, 0, 0.9);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0) 100%);
  font-size: 1.2em;
  line-height: 1.5;
  transition: opacity 0.1s;
  padding: 0.666em 1.333em 4em;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.vjs-title-bar-title,
.vjs-title-bar-description {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vjs-title-bar-title {
  font-weight: bold;
  margin-bottom: 0.333em;
}

.vjs-playing.vjs-user-inactive .vjs-title-bar {
  opacity: 0;
  transition: opacity 1s;
}

.video-js .vjs-skip-forward-5 {
  cursor: pointer;
}
.video-js .vjs-skip-forward-10 {
  cursor: pointer;
}
.video-js .vjs-skip-forward-30 {
  cursor: pointer;
}
.video-js .vjs-skip-backward-5 {
  cursor: pointer;
}
.video-js .vjs-skip-backward-10 {
  cursor: pointer;
}
.video-js .vjs-skip-backward-30 {
  cursor: pointer;
}
@media print {
  .video-js > *:not(.vjs-tech):not(.vjs-poster) {
    visibility: hidden;
  }
}
.vjs-resize-manager {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1000;
}

.js-focus-visible .video-js *:focus:not(.focus-visible) {
  outline: none;
}

.video-js *:focus:not(:focus-visible) {
  outline: none;
}
.awsui-dark-mode .iot-app-kit-graph {
  /* Background Colors */
  --iot-app-kit-graph-color-background-node: var(--awsui-color-grey-600);
  --iot-app-kit-graph-color-background-node-selected: var(--awsui-color-grey-700);
  --iot-app-kit-graph-color-background-edge: var(--awsui-color-grey-400);
  --iot-app-kit-graph-color-background-edge-selected: var(--awsui-color-grey-700);
  /* Foreground Colors */
  --iot-app-kit-graph-color-node: var(--awsui-color-grey-200);
  --iot-app-kit-graph-color-node-selected: var(--awsui-color-blue-500);
  --iot-app-kit-graph-color-edge: var(--awsui-color-grey-800);
  --iot-app-kit-graph-color-edge-selected: var(--awsui-color-blue-500);
  /* Border Colors */
  --iot-app-kit-graph-color-border-node: var(--awsui-color-grey-400);
  --iot-app-kit-graph-color-border-node-selected: var(--awsui-color-blue-500);
  --iot-app-kit-graph-color-border-edge: var(--awsui-color-grey-400);
  --iot-app-kit-graph-color-border-edge-selected: var(--awsui-color-blue-500);
  /* Line Colors */
  --iot-app-kit-graph-color-edge-line: var(--awsui-color-grey-400);
  --iot-app-kit-graph-color-edge-line-selected: var(--awsui-color-blue-500);
  background-color: var(--awsui-color-grey-800);
}
.awsui-dark-mode .iot-app-kit-graph .iot-app-kit-graph-controls {
  background-color: var(--awsui-color-grey-650);
  box-shadow: none;
}

.iot-app-kit-graph {
  /* Background Colors */
  --iot-app-kit-graph-color-background-node: #FFF;
  --iot-app-kit-graph-color-background-node-selected: var(--awsui-color-blue-100);
  --iot-app-kit-graph-color-background-edge: var(--awsui-color-grey-600);
  --iot-app-kit-graph-color-background-edge-selected: var(--awsui-color-blue-100);
  /* Foreground Colors */
  --iot-app-kit-graph-color-node: #000;
  --iot-app-kit-graph-color-node-selected: var(--awsui-color-blue-600);
  --iot-app-kit-graph-color-edge: #FFF;
  --iot-app-kit-graph-color-edge-selected: var(--awsui-color-blue-600);
  /* Border Colors */
  --iot-app-kit-graph-color-border-node: var(--awsui-color-grey-600);
  --iot-app-kit-graph-color-border-node-selected: var(--awsui-color-blue-600);
  --iot-app-kit-graph-color-border-edge: var(--awsui-color-grey-600);
  --iot-app-kit-graph-color-border-edge-selected: var(--awsui-color-blue-600);
  /* Line Colors */
  --iot-app-kit-graph-color-edge-line: var(--awsui-color-grey-600);
  --iot-app-kit-graph-color-edge-line-selected: var(--awsui-color-blue-600);
  display: flex;
  margin: 10px;
  flex: 1;
  font-size: 1px;
  text-rendering: geometricPrecision;
  width: 100%;
  height: 100%;
  min-width: 500px;
  min-height: 600px;
  position: relative;
  background-color: #FFF;
}
.iot-app-kit-graph .iot-app-kit-graph-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.iot-app-kit-graph .iot-app-kit-graph-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  border-top: solid 2px grey;
  border-bottom: solid 2px grey;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 0;
}
.iot-app-kit-graph .iot-app-kit-graph-controls {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  top: 1rem;
  left: 1rem;
  right: 5rem;
  z-index: 1;
  pointer-events: none;
  padding: 0;
  box-shadow: 2px 5px 8px var(--awsui-color-grey-600);
}
.iot-app-kit-graph .iot-app-kit-graph-control-item {
  border-bottom: 1px solid var(--awsui-color-grey-300);
  padding: 0 4px;
  justify-content: center;
  align-items: center;
}
.iot-app-kit-graph .iot-app-kit-graph-button {
  pointer-events: all;
}.knowledgeGraph-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.search-bar {
  min-width: 500px;
  flex: 0;
  margin: 10px;
}

.action-buttons {
  min-width: 300px;
  flex: 0;
  margin: 10px;
}.base-chart-legend-table-container {
  padding: 0 16px;
  height: 99%;
  overflow-y: auto;
}

/* this is make sure that the table header does not have any rounded border */
.base-chart-legend-table-container > div:first-of-type > div:first-of-type {
  border-radius: 0 !important;
}

.base-chart-legend-col-header {
  /* hardcoded to align with the trend name next to the color line */
  margin-left: 52px;
}

.base-chart-legend-row-data-container {
  display: grid;
  grid-template-columns: max-content 1fr;
}

.base-chart-legend-row-line-ind {
  height: 4px;
  width: 20px;
  border-radius: 2px;
  margin-inline: 12px;
  transition: transform 250ms;
}

.base-chart-legend-row-line-ind-highlighted {
  transform: scale(1.5);
}

.base-chart-legend-row-line-container {
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-right: 8px;
}

.base-chart-legend-tc-header-color-marker {
  height: 4px;
  width: 100px;
  border-radius: 2px;
}

.base-chart-legend-tc-header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-option {
  cursor: pointer;
  display: flex;
  grid-gap: 1rem;
  z-index: 1;
}

.menu-option-label {
  flex-grow: 1;
  overflow: hidden;
}
.menu-shadow {
  /*
    adding hardcoded shadow because cloudscape does not
    have drop shadow tokens
  */
  box-shadow: rgba(0 7 22 10%) 0 4px 20px 1px;
}

.menu-placement {
  position: absolute;
}

.iot-context-list-container {
  padding: 0;
}

.menu > ul {
  margin: 0;
  padding: 0;
}

.menu > ul > li:last-of-type {
  /*
    using important because the corresponding border
    is configured in JS using a cloudscape token.
    We don't have access to the sass tokens.
  */
  border-bottom: 0 !important;
}
.color-icon-container {
  height: 100%;
  display: flex;
  align-items: center;
}

.color-icon {
  height: 4px;
  border-radius: 6px;
  width: 15px;
}
.axis-menu {
  box-sizing: border-box;
  overflow-y: auto;
}

.axis-menu-option-value {
  text-overflow: ellipsis;
  overflow: hidden;
}
.multi-y-axis-legend {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.react-resizable {
  position: relative;
}

.react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 90%;
  background-repeat: no-repeat;
  background-origin: content-box;
  box-sizing: border-box;
  background-position: right;
}

.react-resizable-handle-se {
  bottom: 5%;
  right: 0;
  cursor: ew-resize;
  border-right: 2px solid #d6dbdb;
}

.base-chart-element {
  border: 1px solid  #d6dbdb;
  box-sizing: border-box;
}

.base-chart-container {
  display: flex;
}

.base-chart-left-legend {
  display: flex;
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */
._line_10p0c_3 {
  fill: none;
  stroke: currentColor;
  stroke-width: 40;
}/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._svg_zs3x1_4 > path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 60;
  shape-rendering: geometricPrecision;
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._root_ew9bt_4 {
  --border-color: var(--background-layer-2-secondary);
  --foreground-color: var(--text-layer-2-primary);
  --foreground-secondary-color: var(--text-layer-2-secondary);
  --foreground-tertiary-color: var(--text-layer-2-tertiary);
  --foreground-hover-color: var(--text-layer-2-hover);
  --foreground-accent-color: var(--text-layer-2-accent);
  --foreground-active-color: var(--text-layer-2-active);
  --transition-color: color var(--transition-duration) var(--transition-easing);
  --border: solid 1rem var(--border-color);

  position: relative;
}

._root_ew9bt_4[data-layer] {
  position: absolute;
  padding: calc(var(--padding-y) * 1.8) var(--padding-x) var(--padding-y);
  width: min-content;
  z-index: var(--z-index-max);

  background-color: var(--background-layer-2);
  border: solid 1rem var(--background-layer-2-accent);
  border-radius: var(--radius-10);
  box-shadow: var(--box-shadow-layer-1);
}

._root_ew9bt_4[data-layer='tl'] {
  inset: var(--padding-y) auto auto var(--padding-x);
}

._root_ew9bt_4[data-layer='tr'] {
  inset: var(--padding-y) var(--padding-x) auto auto;
}

._root_ew9bt_4[data-layer='br'] {
  inset: auto var(--padding-x) var(--padding-y) auto;
}

._root_ew9bt_4[data-layer='bl'] {
  inset: auto auto var(--padding-y) var(--padding-x);
}

._root_ew9bt_4[data-collapse-control-bar='true'] ._head_ew9bt_46 {
  --inset: 6rem;

  inset: var(--inset) var(--inset) auto var(--inset);
  padding: 0;
  /* mix-blend-mode: luminosity; */
}

._root_ew9bt_4[data-collapse-control-bar='true'] ._head_ew9bt_46 ._label_ew9bt_54,
._root_ew9bt_4[data-collapse-control-bar='true'] ._head_ew9bt_46 ._controls_ew9bt_55 {
  position: relative;
  padding: calc(var(--size) - var(--inset)) calc(var(--size));
  background-color: var(--background-layer-2);
  border: solid 1rem var(--background-layer-2-accent);
  border-radius: var(--radius-4);
}

._head_ew9bt_46 {
  --size: 14rem;
  isolation: isolate;
  position: absolute;
  inset: 0 0 auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(var(--padding-y) / 2) calc(var(--padding-x) / 2);
  color: var(--foreground-secondary-color);
  pointer-events: none;
  z-index: var(--z-index-1);
}

._label_ew9bt_54 {
  font-size: var(--size);
  letter-spacing: 0.2rem;
}

._controls_ew9bt_55 {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: var(--size);
  pointer-events: all;
}

._controlIcon_ew9bt_90 {
  width: var(--size);
  transition: var(--transition-color);
}

._controlIcon_ew9bt_90:hover {
  color: var(--foreground-hover-color);
}

._closeIcon_ew9bt_99 {
  width: calc(var(--size) * 1.1);
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */
._circle_1a5ze_3 {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._main_pgnx1_4 {
  /* public vars */
  --color-property-normal: var(--text-layer-2-primary);
  --color-property-active: var(--text-layer-2-active);
  --color-value-normal: var(--text-layer-2-primary);
  --color-value-active: var(--text-layer-2-active);
  --color-unit-normal: var(--text-layer-2-primary);
  --color-unit-active: var(--text-layer-2-active);
  --color-trend-normal: var(--text-layer-2-primary);
  --color-time: var(--text-layer-2-secondary);

  /* private */
  --transition-background-color: background-color var(--transition-duration) var(--transition-easing);
  --transition-border-color: border-color var(--transition-duration) var(--transition-easing);
  --transition-color: color var(--transition-duration) var(--transition-easing);
  --transition-opacity: opacity var(--transition-duration) var(--transition-easing);
  --transition-rotation: rotate calc(var(--transition-duration) * 0.3) var(--transition-easing);
  --alarm-indicator-height: 4rem;

  --color-property: var(--color-property-active);
  --color-value: var(--color-value-active);
  --color-unit: var(--color-unit-active);
  --color-trend: var(--color-alarm-normal);

  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15rem;
  padding: 0 0 20rem;
  width: 220rem;
  height: 160rem;
  border-bottom: solid var(--alarm-indicator-height) transparent;
  transition: var(--transition-border-color);
}

._main_pgnx1_4::after {
  content: '';
  position: absolute;
  inset: auto 0 calc(-1 * var(--alarm-indicator-height)) 0;
  height: var(--alarm-indicator-height);
  background-color: var(--color-alarm);
  border-radius: var(--alarm-indicator-height);
}

._propertyName_pgnx1_50 {
  color: var(--color-property);
  font-size: 20rem;
  font-weight: var(--font-weight-5);
  letter-spacing: 0.2rem;
  transition: var(--transition-color);
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._valueSection_pgnx1_61 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

._valueGroup_pgnx1_68 {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 5rem;
}

._value_pgnx1_61 {
  color: var(--color-value);
  font-size: 70rem;
  font-weight: var(--font-weight-6);
  line-height: 1;
  font-variant-numeric: proportional-nums;
  transition: var(--transition-color);
}

._unit_pgnx1_84 {
  color: var(--color-unit);
  font-size: 26rem;
  transition: var(--transition-color);
}

._trendSection_pgnx1_90 {
  --size: 46rem;

  position: relative;
  width: var(--size);
  height: var(--size);
  color: var(--color-trend);
}

._trendSection_pgnx1_90._thresholdBreached_pgnx1_99 {
  --color-trend: var(--color-alarm);
}

._trendIcon_pgnx1_103 {
  width: var(--size);
  color: currentColor;
  transition: var(--transition-color), var(--transition-rotation);
}

._trendIconUp_pgnx1_109 {
  rotate: -45deg;
}

._trendIconDown_pgnx1_113 {
  rotate: 45deg;
}

._thresholdIndicator_pgnx1_117 {
  position: absolute;
  color: currentColor;
  font-size: 12rem;
  font-variant-numeric: proportional-nums;
  line-height: 1;
  opacity: 0;
  text-align: center;
  transition: var(--transition-color), var(--transition-opacity);
  width: 100%;
}

._thresholdIndicator_pgnx1_117._isActive_pgnx1_129 {
  opacity: 1;
}

._thresholdIndicatorLimitUpper_pgnx1_133 {
  border-top: dotted 2px currentColor;
  padding-top: 6rem;
  bottom: calc(var(--size) / -2) - 6rem;
}

._thresholdIndicatorLimitLower_pgnx1_139 {
  border-bottom: dotted 2px currentColor;
  padding-bottom: 6rem;
  top: calc(var(--size) / -2 - 6rem);
}

._timeSection_pgnx1_145 {
  display: flex;
  gap: 6rem;
  font-size: 13rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-time);
}

._timeSection_pgnx1_145:before {
  content: attr(data-label) ' ';
}

._high_pgnx1_158 {
  --color-alarm: var(--color-alarm-high);
}

._medium_pgnx1_162 {
  --color-alarm: var(--color-alarm-medium);
}

._low_pgnx1_166 {
  --color-alarm: var(--color-alarm-low);
}

._normal_pgnx1_170 {
  --color-alarm: var(--color-alarm-normal);
}

._normalDark_pgnx1_174 {
  --color-alarm: var(--color-alarm-normaldark);
}

._unknown_pgnx1_178 {
  --icon-color: var(--color-alarm-unknown);
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */
@keyframes _showOverlay_v6klk_1 {
  from {
    opacity: 0;
    scale: .95;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

._root_v6klk_15 {
  --gap: 0;
  display: none;
  position: absolute;
  pointer-events: none;
  z-index: var(--z-max);
  will-change: scale;
}

._isVisible_v6klk_24 {
  display: block;
  animation-name: _showOverlay_v6klk_1;
  animation-duration: 350ms;
}

._top_v6klk_30 {
  translate: -50% calc((100% + var(--gap)) * -1);
}

._bottom_v6klk_34 {
  translate: -50% var(--gap);
}

._left_v6klk_38 {
  translate: calc((100% + var(--gap)) * -1) -50%;
}

._right_v6klk_42 {
  translate: var(--gap) -50%;
}/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._root_oop5u_4 {
  --button-background-color: var(--background-layer-3);
  --button-background-hover-color: var(--background-layer-3-hover);
  --button-icon-color: var(--text-layer-3-secondary);
  --button-icon-hover-color: var(--text-layer-3-hover);
  --transition-background-color: background-color var(--transition-duration) var(--transition-easing);
  --transition-color: color var(--transition-duration) var(--transition-easing);

  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}

._canvasContainer_oop5u_18 {
  position: relative;
}

._canvas_oop5u_18 {
  position: absolute;
  inset: 0;
  z-index: 0;
}

._controls_oop5u_28 {
  position: absolute;
  inset: 0 auto 0 var(--padding-x);
  display: grid;
  place-content: center;
  gap: 8rem;
  z-index: var(--z-index-1);
  pointer-events: none;
}

._button_oop5u_38 {
  --size: 36rem;
  box-sizing: content-box;
  width: var(--size);
  height: var(--size);
  background-color: var(--button-background-color);
  border-radius: var(--radius-5);
  box-shadow: var(--box-shadow-layer-3);
  transition: var(--transition-background-color), var(--transition-color);
  pointer-events: all;
}

._button_oop5u_38:hover {
  --button-background-color: var(--button-background-hover-color);
  --button-icon-color: var(--button-icon-hover-color);
}

._buttonCenterIcon_oop5u_55 {
  width: 20rem;
  color: var(--button-icon-color);
  transition: var(--transition-color);
}

._buttonFitIcon_oop5u_61 {
  width: 18rem;
  color: var(--button-icon-color);
  transition: var(--transition-color);
}

._buttonZoomInIcon_oop5u_67 {
  width: 16rem;
  color: var(--button-icon-color);
  transition: var(--transition-color);
}

._buttonZoomOutIcon_oop5u_73 {
  width: 16rem;
  color: var(--button-icon-color);
  transition: var(--transition-color);
}

._overlay_oop5u_79 {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: var(--z-index-2);
}

._kpis_oop5u_87 {
  display: grid;
  grid-auto-flow: column;
  place-content: center start;
  gap: 60rem;
  padding: 40rem;
  height: 241rem;
  pointer-events: none;
  border-top: solid 1px var(--background-layer-2-secondary);
  z-index: var(--z-index-1);
}

._kpis_oop5u_87[data-kpi-count='0'] {
  place-content: center;
  color: var(--foreground-tertiary-color);
  font-size: 34rem;
  font-weight: var(--font-weight-2);
  text-align: center;
}

._kpi_oop5u_87 {
  position: relative;
}
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_content_vjswe_1t37q_97:not(#\9) {
  /* used in test-utils */
}

.awsui_button_vjswe_1t37q_101:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  min-width: 0;
  -ms-word-break: break-all;
  word-break: break-word;
  font-weight: var(--font-button-weight-jfejp1, 700);
  -webkit-font-smoothing: var(--font-smoothing-webkit-rg3jdt, auto);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-58s982, auto);
  letter-spacing: var(--font-button-letter-spacing-ahp09k, 0.25px);
  border-radius: var(--border-radius-button-lbgihl, 2px);
  border: var(--border-field-width-2vpp5j, 1px) solid;
  padding: var(--space-scaled-xxs-ugy2pw, 4px) var(--space-button-horizontal-kqt1zg, 20px);
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126:not(#\9) {
  background: var(--color-background-button-normal-default-r433m6, #ffffff);
  color: var(--color-text-button-normal-default-eqebde, #545b64);
  border-color: var(--color-border-button-normal-default-a1f0ud, #545b64);
  position: relative;
  text-decoration: none;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126:not(#\9):hover {
  background: var(--color-background-button-normal-hover-afg7z9, #fafafa);
  color: var(--color-text-button-normal-hover-bk2x1u, #16191f);
  border-color: var(--color-border-button-normal-hover-j7d6r6, #16191f);
  text-decoration: none;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126:not(#\9):active, .awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126.awsui_is-activated_vjswe_1t37q_139:not(#\9) {
  background: var(--color-background-button-normal-active-czecy2, #eaeded);
  color: var(--color-text-button-normal-active-v6nfdh, #16191f);
  border-color: var(--color-border-button-normal-active-zrx2x0, #545b64);
}
.awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126:not(#\9):focus {
  outline: none;
  text-decoration: none;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  top: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  width: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  height: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_button_vjswe_1t37q_101.awsui_variant-normal_vjswe_1t37q_126.awsui_disabled_vjswe_1t37q_202:not(#\9) {
  background: var(--color-background-button-normal-disabled-ejdxb1, #ffffff);
  border-color: var(--color-border-button-normal-disabled-2z1mk8, #d5dbdb);
  color: var(--color-text-interactive-disabled-k4q23b, #aab7b8);
  text-decoration: none;
  pointer-events: none;
  cursor: auto;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210:not(#\9) {
  background: var(--color-background-button-primary-default-zz5irg, #0073bb);
  color: var(--color-text-button-primary-default-6dta4b, #ffffff);
  border-color: var(--color-background-button-primary-default-zz5irg, #0073bb);
  position: relative;
  text-decoration: none;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210:not(#\9):hover {
  background: var(--color-background-button-primary-hover-c6t12k, #0a4a74);
  color: var(--color-text-button-primary-hover-fk4ryc, #ffffff);
  border-color: var(--color-background-button-primary-hover-c6t12k, #0a4a74);
  text-decoration: none;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210:not(#\9):active, .awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210.awsui_is-activated_vjswe_1t37q_139:not(#\9) {
  background: var(--color-background-button-primary-active-qjb1np, #12293b);
  color: var(--color-text-button-primary-active-0k4v93, #ffffff);
  border-color: var(--color-background-button-primary-active-qjb1np, #12293b);
}
.awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210:not(#\9):focus {
  outline: none;
  text-decoration: none;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  top: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  width: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  height: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_button_vjswe_1t37q_101.awsui_variant-primary_vjswe_1t37q_210.awsui_disabled_vjswe_1t37q_202:not(#\9) {
  background: var(--color-background-button-primary-disabled-2w63xd, #ffffff);
  border-color: var(--color-border-button-primary-disabled-oe36ny, #d5dbdb);
  color: var(--color-text-interactive-disabled-k4q23b, #aab7b8);
  text-decoration: none;
  pointer-events: none;
  cursor: auto;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294:not(#\9) {
  background: transparent;
  color: var(--color-text-button-normal-default-eqebde, #545b64);
  border-color: transparent;
  position: relative;
  text-decoration: none;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294:not(#\9):hover {
  background: var(--color-background-button-link-hover-jv3f2k, #fafafa);
  color: var(--color-text-button-normal-hover-bk2x1u, #16191f);
  border-color: var(--color-background-button-link-hover-jv3f2k, #fafafa);
  text-decoration: none;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294:not(#\9):active, .awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294.awsui_is-activated_vjswe_1t37q_139:not(#\9) {
  background: var(--color-background-button-link-active-34rko8, #eaeded);
  color: var(--color-text-button-normal-active-v6nfdh, #16191f);
  border-color: var(--color-background-button-link-active-34rko8, #eaeded);
}
.awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294:not(#\9):focus {
  outline: none;
  text-decoration: none;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  top: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  width: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  height: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_button_vjswe_1t37q_101.awsui_variant-link_vjswe_1t37q_294.awsui_disabled_vjswe_1t37q_202:not(#\9) {
  background: transparent;
  border-color: transparent;
  color: var(--color-text-interactive-disabled-k4q23b, #aab7b8);
  text-decoration: none;
  pointer-events: none;
  cursor: auto;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166:not(#\9) {
  background: transparent;
  color: var(--color-text-interactive-default-djvtmz, #545b64);
  border-color: transparent;
  position: relative;
  text-decoration: none;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166:not(#\9):hover {
  background: transparent;
  color: var(--color-text-interactive-hover-55cagk, #16191f);
  border-color: transparent;
  text-decoration: none;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166:not(#\9):active, .awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166.awsui_is-activated_vjswe_1t37q_139:not(#\9) {
  background: transparent;
  color: var(--color-text-interactive-default-djvtmz, #545b64);
  border-color: transparent;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus {
  outline: none;
  text-decoration: none;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  top: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  width: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  height: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166.awsui_disabled_vjswe_1t37q_202:not(#\9) {
  background: transparent;
  border-color: transparent;
  color: var(--color-text-interactive-disabled-k4q23b, #aab7b8);
  text-decoration: none;
  pointer-events: none;
  cursor: auto;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9) {
  background: transparent;
  color: var(--color-text-button-inline-icon-default-buw7w7, #545b64);
  border-color: transparent;
  position: relative;
  text-decoration: none;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):hover {
  background: transparent;
  color: var(--color-text-button-inline-icon-hover-0pwsg2, #16191f);
  border-color: transparent;
  text-decoration: none;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):active, .awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184.awsui_is-activated_vjswe_1t37q_139:not(#\9) {
  background: transparent;
  color: var(--color-text-button-inline-icon-default-buw7w7, #545b64);
  border-color: transparent;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  outline: none;
  text-decoration: none;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  top: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  width: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  height: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184.awsui_disabled_vjswe_1t37q_202:not(#\9) {
  background: transparent;
  border-color: transparent;
  color: var(--color-text-button-inline-icon-disabled-phk84s, #aab7b8);
  text-decoration: none;
  pointer-events: none;
  cursor: auto;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546:not(#\9) {
  background: transparent;
  color: var(--color-text-button-normal-default-eqebde, #545b64);
  border-color: transparent;
  border-width: 0;
  position: relative;
  text-decoration: none;
  padding: 0;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546:not(#\9):hover {
  background: transparent;
  color: var(--color-text-button-normal-hover-bk2x1u, #16191f);
  border-color: transparent;
  text-decoration: none;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546:not(#\9):active, .awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546.awsui_is-activated_vjswe_1t37q_139:not(#\9) {
  background: transparent;
  color: var(--color-text-button-normal-active-v6nfdh, #16191f);
  border-color: transparent;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546:not(#\9):focus {
  outline: none;
  text-decoration: none;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  top: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  width: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  height: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_button_vjswe_1t37q_101.awsui_variant-inline-link_vjswe_1t37q_546.awsui_disabled_vjswe_1t37q_202:not(#\9) {
  background: transparent;
  border-color: transparent;
  color: var(--color-text-interactive-disabled-k4q23b, #aab7b8);
  text-decoration: none;
  pointer-events: none;
  cursor: auto;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9) {
  background: transparent;
  color: var(--color-text-interactive-default-djvtmz, #545b64);
  border-color: transparent;
  position: relative;
  text-decoration: none;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):hover {
  background: transparent;
  color: var(--color-text-interactive-hover-55cagk, #16191f);
  border-color: transparent;
  text-decoration: none;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):active, .awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166.awsui_is-activated_vjswe_1t37q_139:not(#\9) {
  background: transparent;
  color: var(--color-text-interactive-default-djvtmz, #545b64);
  border-color: transparent;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus {
  outline: none;
  text-decoration: none;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  top: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  width: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  height: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166.awsui_disabled_vjswe_1t37q_202:not(#\9) {
  background: transparent;
  border-color: transparent;
  color: var(--color-text-interactive-disabled-k4q23b, #aab7b8);
  text-decoration: none;
  pointer-events: none;
  cursor: auto;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9) {
  background: transparent;
  color: var(--color-text-interactive-inverted-default-mrgn6e, #d5dbdb);
  border-color: transparent;
  position: relative;
  text-decoration: none;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):hover {
  background: transparent;
  color: var(--color-text-interactive-inverted-hover-qliijo, #fafafa);
  border-color: transparent;
  text-decoration: none;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):active, .awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166.awsui_is-activated_vjswe_1t37q_139:not(#\9) {
  background: transparent;
  color: var(--color-text-interactive-inverted-default-mrgn6e, #d5dbdb);
  border-color: transparent;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  outline: none;
  text-decoration: none;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  top: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  width: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  height: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166.awsui_disabled_vjswe_1t37q_202:not(#\9) {
  background: transparent;
  border-color: transparent;
  color: var(--color-text-interactive-disabled-k4q23b, #aab7b8);
  text-decoration: none;
  pointer-events: none;
  cursor: auto;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800:not(#\9) {
  background: transparent;
  color: var(--color-text-link-default-lwrgyu, #0073bb);
  border-color: transparent;
  border-width: 0;
  position: relative;
  text-decoration: none;
  padding: 0;
  font-weight: normal;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800:not(#\9):hover {
  background: transparent;
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
  border-color: transparent;
  text-decoration: none;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800:not(#\9):active, .awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800.awsui_is-activated_vjswe_1t37q_139:not(#\9) {
  background: transparent;
  color: var(--color-text-link-default-lwrgyu, #0073bb);
  border-color: transparent;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800:not(#\9):focus {
  outline: none;
  text-decoration: none;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  top: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  width: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  height: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_button_vjswe_1t37q_101.awsui_variant-breadcrumb-group_vjswe_1t37q_800.awsui_disabled_vjswe_1t37q_202:not(#\9) {
  background: transparent;
  border-color: transparent;
  color: var(--color-text-interactive-disabled-k4q23b, #aab7b8);
  text-decoration: none;
  pointer-events: none;
  cursor: auto;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887:not(#\9) {
  background: transparent;
  color: var(--color-text-button-normal-default-eqebde, #545b64);
  border-color: transparent;
  position: relative;
  text-decoration: none;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887:not(#\9):hover {
  background: transparent;
  color: var(--color-text-button-normal-hover-bk2x1u, #16191f);
  border-color: transparent;
  text-decoration: none;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887:not(#\9):active, .awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887.awsui_is-activated_vjswe_1t37q_139:not(#\9) {
  background: transparent;
  color: var(--color-text-button-normal-active-v6nfdh, #16191f);
  border-color: transparent;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887:not(#\9):focus {
  outline: none;
  text-decoration: none;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-2g5ia0, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887.awsui_variant-icon_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  top: calc(-1 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  width: calc(100% + 2 * var(--space-button-focus-outline-gutter-2g5ia0, 3px));
  height: calc(100% + 2 * var(--space-button-icon-focus-outline-gutter-vertical-atye4f, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  top: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  width: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  height: calc(100% + 2 * var(--space-button-inline-icon-focus-outline-gutter-747equ, 3px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_button_vjswe_1t37q_101.awsui_variant-menu-trigger_vjswe_1t37q_887.awsui_disabled_vjswe_1t37q_202:not(#\9) {
  background: transparent;
  border-color: transparent;
  color: var(--color-text-interactive-disabled-k4q23b, #aab7b8);
  text-decoration: none;
  pointer-events: none;
  cursor: auto;
}
.awsui_button_vjswe_1t37q_101.awsui_button-no-text_vjswe_1t37q_971:not(#\9) {
  padding-left: var(--space-button-icon-only-horizontal-5iqrhy, 16px);
  padding-right: var(--space-button-icon-only-horizontal-5iqrhy, 16px);
}
.awsui_button_vjswe_1t37q_101.awsui_button-no-wrap_vjswe_1t37q_975:not(#\9) {
  white-space: nowrap;
}
.awsui_button_vjswe_1t37q_101.awsui_full-width_vjswe_1t37q_978:not(#\9) {
  width: 100%;
  text-align: center;
}
.awsui_button_vjswe_1t37q_101.awsui_variant-icon_vjswe_1t37q_166:not(#\9), .awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9), .awsui_button_vjswe_1t37q_101.awsui_variant-flashbar-icon_vjswe_1t37q_166:not(#\9) {
  padding-left: var(--space-xxs-a6783b, 4px);
  padding-right: var(--space-xxs-a6783b, 4px);
}
.awsui_button_vjswe_1t37q_101.awsui_variant-modal-dismiss_vjswe_1t37q_166:not(#\9) {
  padding: var(--space-button-modal-dismiss-vertical-17om1h, 4px) var(--space-xxs-a6783b, 4px);
  margin-right: calc(-1 * var(--space-xxs-a6783b, 4px));
}
.awsui_button_vjswe_1t37q_101.awsui_variant-inline-icon_vjswe_1t37q_184:not(#\9) {
  padding-top: 0;
  padding-bottom: 0;
  border: 0;
}
.awsui_button_vjswe_1t37q_101 > .awsui_icon-left_vjswe_1t37q_995:not(#\9) {
  position: relative;
  left: calc(-1 * var(--space-xxs-a6783b, 4px));
  margin-right: var(--space-xxs-a6783b, 4px);
}
.awsui_button_vjswe_1t37q_101 > .awsui_icon-right_vjswe_1t37q_1000:not(#\9) {
  position: relative;
  right: calc(-1 * var(--space-xxs-a6783b, 4px));
  margin-left: var(--space-xxs-a6783b, 4px);
}
.awsui_button_vjswe_1t37q_101.awsui_button-no-text_vjswe_1t37q_971 > .awsui_icon_vjswe_1t37q_995:not(#\9) {
  margin-right: auto;
  margin-left: auto;
  right: 0;
  left: 0;
}:root {
  --color-transparent-wsdzc0:transparent;
  --color-charts-red-300-v8pqah:#ea7158;
  --color-charts-red-400-0ycrl8:#dc5032;
  --color-charts-red-500-jo79ux:#d13313;
  --color-charts-red-600-2ymghb:#ba2e0f;
  --color-charts-red-700-c3rnal:#a82a0c;
  --color-charts-red-800-lgald1:#972709;
  --color-charts-red-900-y3eemg:#892407;
  --color-charts-red-1000-yyqzp1:#7d2105;
  --color-charts-red-1100-0wecq8:#721e03;
  --color-charts-red-1200-hmkpnx:#671c00;
  --color-charts-orange-300-jcenox:#e07941;
  --color-charts-orange-400-nev5rq:#cc5f21;
  --color-charts-orange-500-48gu0y:#bc4d01;
  --color-charts-orange-600-yv1nii:#a84401;
  --color-charts-orange-700-rxl6xd:#983c02;
  --color-charts-orange-800-ce4xic:#8a3603;
  --color-charts-orange-900-0tbeoy:#7e3103;
  --color-charts-orange-1000-ex4m37:#732c02;
  --color-charts-orange-1100-4ch1cj:#692801;
  --color-charts-orange-1200-qa2la0:#602400;
  --color-charts-yellow-300-qcjduj:#b2911c;
  --color-charts-yellow-400-baglyr:#9c7b0b;
  --color-charts-yellow-500-9t08lz:#8a6b05;
  --color-charts-yellow-600-mh3u9i:#7b5f04;
  --color-charts-yellow-700-le1hth:#6f5504;
  --color-charts-yellow-800-4aztx5:#654d03;
  --color-charts-yellow-900-12my7v:#5d4503;
  --color-charts-yellow-1000-5wr65g:#553f03;
  --color-charts-yellow-1100-oprwqp:#4d3901;
  --color-charts-yellow-1200-5z19hy:#483300;
  --color-charts-green-300-885xbr:#67a353;
  --color-charts-green-400-9jzy7f:#41902c;
  --color-charts-green-500-9ejswg:#1f8104;
  --color-charts-green-600-j06vr3:#1a7302;
  --color-charts-green-700-dxtver:#176702;
  --color-charts-green-800-c9mg6a:#145d02;
  --color-charts-green-900-hu961o:#125502;
  --color-charts-green-1000-rgvlm5:#104d01;
  --color-charts-green-1100-g032j3:#0f4601;
  --color-charts-green-1200-fffr8z:#0d4000;
  --color-charts-teal-300-pdwqwl:#2ea597;
  --color-charts-teal-400-87xyxa:#1c8e81;
  --color-charts-teal-500-4ih4dj:#0d7d70;
  --color-charts-teal-600-nsdkdk:#096f64;
  --color-charts-teal-700-89s4th:#06645a;
  --color-charts-teal-800-pj7d71:#045b52;
  --color-charts-teal-900-0u0vgk:#03524a;
  --color-charts-teal-1000-qt39rn:#014b44;
  --color-charts-teal-1100-jjpoec:#01443e;
  --color-charts-teal-1200-fz7ds6:#003e38;
  --color-charts-blue-1-300-mvslh1:#529ccb;
  --color-charts-blue-1-400-vfffdq:#3184c2;
  --color-charts-blue-1-500-5qq8ll:#0273bb;
  --color-charts-blue-1-600-1jjw30:#0166ab;
  --color-charts-blue-1-700-7e7h6g:#015b9d;
  --color-charts-blue-1-800-6ew8r4:#015292;
  --color-charts-blue-1-900-ejk9n2:#014a87;
  --color-charts-blue-1-1000-47wlti:#01437d;
  --color-charts-blue-1-1100-iwkugu:#003c75;
  --color-charts-blue-1-1200-s6xraf:#00366d;
  --color-charts-blue-2-300-iy07jw:#688ae8;
  --color-charts-blue-2-400-hy6jpz:#5978e3;
  --color-charts-blue-2-500-hmxwyv:#4066df;
  --color-charts-blue-2-600-o0wevj:#3759ce;
  --color-charts-blue-2-700-cmchf6:#314fbf;
  --color-charts-blue-2-800-bpld4x:#2c46b1;
  --color-charts-blue-2-900-3xlmt8:#273ea5;
  --color-charts-blue-2-1000-f5iopd:#23379b;
  --color-charts-blue-2-1100-c3tt87:#1f3191;
  --color-charts-blue-2-1200-4qi1dr:#1b2b88;
  --color-charts-purple-300-960s4o:#a783e1;
  --color-charts-purple-400-1xajzn:#9469d6;
  --color-charts-purple-500-tdtd0d:#8456ce;
  --color-charts-purple-600-4796yr:#7749bf;
  --color-charts-purple-700-xj79jn:#6b40b2;
  --color-charts-purple-800-yvd90z:#6237a7;
  --color-charts-purple-900-h50lkc:#59309d;
  --color-charts-purple-1000-iuih7d:#512994;
  --color-charts-purple-1100-asapzo:#4a238b;
  --color-charts-purple-1200-2w5zbu:#431d84;
  --color-charts-pink-300-g5b3l1:#da7596;
  --color-charts-pink-400-z1x9dh:#ce567c;
  --color-charts-pink-500-rhmtrw:#c33d69;
  --color-charts-pink-600-dr25sz:#b1325c;
  --color-charts-pink-700-q6nx7n:#a32952;
  --color-charts-pink-800-2taysn:#962249;
  --color-charts-pink-900-w0oqu6:#8b1b42;
  --color-charts-pink-1000-i1lck3:#81143b;
  --color-charts-pink-1100-8of6pv:#780d35;
  --color-charts-pink-1200-s5fsms:#6f062f;
  --color-charts-status-critical-26qhog:#7d2105;
  --color-charts-status-high-am1khe:#ba2e0f;
  --color-charts-status-medium-mlf4vh:#cc5f21;
  --color-charts-status-low-xd6yyp:#b2911c;
  --color-charts-status-positive-si8nxj:#67a353;
  --color-charts-status-info-978qj9:#3184c2;
  --color-charts-status-neutral-lupxsj:#879596;
  --color-charts-threshold-negative-4peb4g:#d13212;
  --color-charts-threshold-positive-mi3mwk:#1d8102;
  --color-charts-threshold-info-lldfpx:#0073bb;
  --color-charts-threshold-neutral-mt9ytx:#687078;
  --color-charts-line-grid-8ig2w3:#d5dbdb;
  --color-charts-line-tick-o06ewi:#d5dbdb;
  --color-charts-line-axis-ah4nkd:#d5dbdb;
  --color-charts-palette-categorical-1-8b4eoo:#688ae8;
  --color-charts-palette-categorical-2-7k6x03:#c33d69;
  --color-charts-palette-categorical-3-t6ajxf:#2ea597;
  --color-charts-palette-categorical-4-aths19:#8456ce;
  --color-charts-palette-categorical-5-p0nlbd:#e07941;
  --color-charts-palette-categorical-6-c7u7pv:#3759ce;
  --color-charts-palette-categorical-7-z8w12m:#962249;
  --color-charts-palette-categorical-8-d3flyi:#096f64;
  --color-charts-palette-categorical-9-1l76ah:#6237a7;
  --color-charts-palette-categorical-10-ecf5xi:#a84401;
  --color-charts-palette-categorical-11-1mok8v:#273ea5;
  --color-charts-palette-categorical-12-dtnap1:#780d35;
  --color-charts-palette-categorical-13-6uykyg:#03524a;
  --color-charts-palette-categorical-14-8ew2g1:#4a238b;
  --color-charts-palette-categorical-15-basy54:#7e3103;
  --color-charts-palette-categorical-16-ss1voi:#1b2b88;
  --color-charts-palette-categorical-17-5bmruj:#ce567c;
  --color-charts-palette-categorical-18-j5i5wm:#003e38;
  --color-charts-palette-categorical-19-4moj4n:#9469d6;
  --color-charts-palette-categorical-20-tqrwxf:#602400;
  --color-charts-palette-categorical-21-apb1sz:#4066df;
  --color-charts-palette-categorical-22-ljfqak:#a32952;
  --color-charts-palette-categorical-23-p85q7b:#0d7d70;
  --color-charts-palette-categorical-24-vn32ho:#6b40b2;
  --color-charts-palette-categorical-25-v2ek2u:#bc4d01;
  --color-charts-palette-categorical-26-e2ms6a:#2c46b1;
  --color-charts-palette-categorical-27-mtylhv:#81143b;
  --color-charts-palette-categorical-28-0hiaor:#045b52;
  --color-charts-palette-categorical-29-ktyv4f:#512994;
  --color-charts-palette-categorical-30-db1785:#8a3603;
  --color-charts-palette-categorical-31-l7yf28:#1f3191;
  --color-charts-palette-categorical-32-lzfh57:#da7596;
  --color-charts-palette-categorical-33-kaanp8:#01443e;
  --color-charts-palette-categorical-34-m2v68i:#a783e1;
  --color-charts-palette-categorical-35-rayjg3:#692801;
  --color-charts-palette-categorical-36-uiqmsn:#5978e3;
  --color-charts-palette-categorical-37-ygqr3y:#b1325c;
  --color-charts-palette-categorical-38-d67rfy:#1c8e81;
  --color-charts-palette-categorical-39-ceut5m:#7749bf;
  --color-charts-palette-categorical-40-fzhfxp:#cc5f21;
  --color-charts-palette-categorical-41-6i1l8r:#314fbf;
  --color-charts-palette-categorical-42-9ud2pl:#8b1b42;
  --color-charts-palette-categorical-43-wxf6os:#06645a;
  --color-charts-palette-categorical-44-ovegri:#59309d;
  --color-charts-palette-categorical-45-g4rnlt:#983c02;
  --color-charts-palette-categorical-46-m8gaer:#23379b;
  --color-charts-palette-categorical-47-g2w96d:#6f062f;
  --color-charts-palette-categorical-48-k8kiz7:#014b44;
  --color-charts-palette-categorical-49-sw40c5:#431d84;
  --color-charts-palette-categorical-50-w2luek:#732c02;
  --color-background-badge-icon-4mo0wt:#d13212;
  --color-background-button-link-active-34rko8:#eaeded;
  --color-background-button-link-hover-jv3f2k:#fafafa;
  --color-background-button-normal-active-czecy2:#eaeded;
  --color-background-button-normal-default-r433m6:#ffffff;
  --color-background-button-normal-disabled-ejdxb1:#ffffff;
  --color-background-button-normal-hover-afg7z9:#fafafa;
  --color-background-button-primary-active-qjb1np:#12293b;
  --color-background-button-primary-default-zz5irg:#0073bb;
  --color-background-button-primary-disabled-2w63xd:#ffffff;
  --color-background-button-primary-hover-c6t12k:#0a4a74;
  --color-background-calendar-today-x6vg6n:#f2f3f3;
  --color-background-cell-shaded-gppcg5:#f2f3f3;
  --color-background-code-editor-gutter-active-line-default-52tgix:#687078;
  --color-background-code-editor-gutter-active-line-error-kbld3k:#d13212;
  --color-background-code-editor-gutter-default-ria8z9:#f2f3f3;
  --color-background-code-editor-loading-fmqmbg:#f2f3f3;
  --color-background-code-editor-pane-item-hover-uw1s87:#eaeded;
  --color-background-code-editor-status-bar-8oe90a:#f2f3f3;
  --color-background-container-content-pb0lp5:#ffffff;
  --color-background-container-header-pmlnr3:#fafafa;
  --color-background-control-checked-q75knx:#0073bb;
  --color-background-control-default-x4w3j0:#ffffff;
  --color-background-control-disabled-vkotqk:#d5dbdb;
  --color-background-dropdown-item-default-2p2g22:#ffffff;
  --color-background-dropdown-item-dimmed-ta7f22:transparent;
  --color-background-dropdown-item-filter-match-ugvt1w:#f1faff;
  --color-background-dropdown-item-hover-6qhcjz:#f2f3f3;
  --color-background-dropdown-item-selected-pz82cn:#f1faff;
  --color-background-home-header-r8d99o:#000000;
  --color-background-input-default-66bx4w:#ffffff;
  --color-background-input-disabled-0azib6:#eaeded;
  --color-background-item-selected-8e1q8b:#f1faff;
  --color-background-layout-main-okygtx:#f2f3f3;
  --color-background-layout-mobile-panel-1g9iiz:#ffffff;
  --color-background-layout-panel-content-qv5yhf:#ffffff;
  --color-background-layout-panel-hover-mcickn:#eaeded;
  --color-background-layout-toggle-active-1uhv1w:#2a2e33;
  --color-background-layout-toggle-default-gp69as:transparent;
  --color-background-layout-toggle-hover-wwbsq6:#545b64;
  --color-background-layout-toggle-selected-active-3nl5wx:#0073bb;
  --color-background-layout-toggle-selected-default-rx4hqe:#0073bb;
  --color-background-layout-toggle-selected-hover-9gel8c:#0a4a74;
  --color-background-modal-overlay-rsidw7:rgba(242, 243, 243, 0.9);
  --color-background-notification-blue-xlzco3:#0073bb;
  --color-background-notification-green-jo2m1l:#1d8102;
  --color-background-notification-grey-iechs6:#545b64;
  --color-background-notification-red-5io73r:#d13212;
  --color-background-notification-yellow-8mfjgu:#ffe457;
  --color-background-notification-stack-bar-985j8p:#2a2e33;
  --color-background-notification-stack-bar-active-n8furo:#2a2e33;
  --color-background-notification-stack-bar-hover-cao0p2:#545b64;
  --color-background-popover-ft56xl:#ffffff;
  --color-background-progress-bar-content-default-hbebrl:#0073bb;
  --color-background-progress-bar-content-in-flash-v3roh6:rgba(255, 255, 255, 0.7);
  --color-background-progress-bar-layout-default-n7v8t0:#eaeded;
  --color-background-progress-bar-layout-in-flash-7vdtbb:rgba(255, 255, 255, 0.25);
  --color-background-segment-active-d8q9iy:#0073bb;
  --color-background-segment-default-9ooxg1:#ffffff;
  --color-background-segment-disabled-log6bm:#ffffff;
  --color-background-segment-hover-tvysh8:#ffffff;
  --color-background-status-error-zzlt4q:#fdf3f1;
  --color-background-status-info-nlr7o9:#f1faff;
  --color-background-status-success-97x61g:#f2f8f0;
  --color-background-status-warning-iv51lc:#fffce9;
  --color-background-table-header-d4x481:#fafafa;
  --color-background-tiles-disabled-f3fyva:#eaeded;
  --color-background-toggle-checked-disabled-o63zu0:#99cbe4;
  --color-background-toggle-default-six3cw:#545b64;
  --color-border-button-normal-active-zrx2x0:#545b64;
  --color-border-button-normal-default-a1f0ud:#545b64;
  --color-border-button-normal-disabled-2z1mk8:#d5dbdb;
  --color-border-button-normal-hover-j7d6r6:#16191f;
  --color-border-button-primary-disabled-oe36ny:#d5dbdb;
  --color-border-calendar-grid-bl278b:#eaeded;
  --color-border-calendar-grid-selected-focus-ring-9q7e5h:#0073bb;
  --color-border-code-editor-ace-active-line-light-theme-1qhjfw:#d5dbdb;
  --color-border-code-editor-ace-active-line-dark-theme-52wu88:#687078;
  --color-border-code-editor-default-ovjs83:#d5dbdb;
  --color-border-code-editor-pane-item-hover-gk4v4i:#687078;
  --color-border-container-divider-4z4y7u:#eaeded;
  --color-border-container-top-ige66g:#eaeded;
  --color-border-control-checked-tl007y:#0073bb;
  --color-border-control-default-1igjc0:#687078;
  --color-border-control-disabled-n4rl6j:#d5dbdb;
  --color-border-divider-active-vdhfnx:#687078;
  --color-border-divider-default-1mmknt:#eaeded;
  --color-border-divider-panel-bottom-r9jdco:rgba(0, 28, 36, 0.15);
  --color-border-divider-panel-side-cmx3ak:transparent;
  --color-border-dropdown-container-5izm18:transparent;
  --color-border-dropdown-group-u3qa6a:#eaeded;
  --color-border-dropdown-item-default-062h8i:#eaeded;
  --color-border-dropdown-item-hover-5oku75:#879596;
  --color-border-dropdown-item-dimmed-hover-t0ewzv:#879596;
  --color-border-dropdown-item-top-l8o9uk:#eaeded;
  --color-border-editable-cell-hover-kuz17r:#879596;
  --color-border-input-default-sm4mjn:#687078;
  --color-border-input-disabled-73z8co:#eaeded;
  --color-border-item-focused-t884ih:#0073bb;
  --color-border-item-placeholder-kd6njx:transparent;
  --color-border-item-selected-bmiwgz:#0073bb;
  --color-border-layout-6apkl4:#d5dbdb;
  --color-border-notification-stack-bar-xsjsc8:#2a2e33;
  --color-border-popover-p8haek:#d5dbdb;
  --color-border-segment-active-w8feiw:#16191f;
  --color-border-segment-default-yqxei2:#687078;
  --color-border-segment-disabled-6zsba4:#d5dbdb;
  --color-border-segment-hover-0dlw9k:#16191f;
  --color-border-status-error-pwclyd:#d13212;
  --color-border-status-info-uwhmay:#0073bb;
  --color-border-status-success-xorqjf:#1d8102;
  --color-border-status-warning-p1qx7d:#906806;
  --color-border-divider-interactive-default-x2thzf:#687078;
  --color-border-tabs-divider-ol648v:#aab7b8;
  --color-border-tabs-shadow-k1zhjd:#eaeded;
  --color-border-tabs-underline-uahgcp:#16191f;
  --color-border-tiles-disabled-10gnrm:transparent;
  --color-border-tutorial-d7429l:#aab7b8;
  --color-foreground-control-default-5f7j2k:#ffffff;
  --color-foreground-control-disabled-4rcx89:#ffffff;
  --color-shadow-default-4md8jt:rgba(0, 28, 36, 0.5);
  --color-stroke-chart-line-7l0ljd:#879596;
  --color-text-accent-qe8oro:#0073bb;
  --color-text-body-default-rlujvh:#16191f;
  --color-text-body-secondary-bgqgd0:#545b64;
  --color-text-breadcrumb-current-nu3iko:#687078;
  --color-text-breadcrumb-icon-mdeyh2:#687078;
  --color-text-button-inline-icon-default-buw7w7:#545b64;
  --color-text-button-inline-icon-disabled-phk84s:#aab7b8;
  --color-text-button-inline-icon-hover-0pwsg2:#16191f;
  --color-text-button-normal-active-v6nfdh:#16191f;
  --color-text-button-normal-default-eqebde:#545b64;
  --color-text-button-normal-hover-bk2x1u:#16191f;
  --color-text-link-button-normal-default-x8uncu:#545b64;
  --color-text-link-button-normal-hover-hm6g27:#16191f;
  --color-text-link-button-normal-active-8cfe84:#16191f;
  --color-text-button-primary-active-0k4v93:#ffffff;
  --color-text-button-primary-default-6dta4b:#ffffff;
  --color-text-button-primary-hover-fk4ryc:#ffffff;
  --color-text-calendar-day-hover-06fz50:#16191f;
  --color-text-calendar-month-axtdn0:#545b64;
  --color-text-code-editor-gutter-active-line-qjn6d7:#ffffff;
  --color-text-code-editor-gutter-default-ml5ea9:#16191f;
  --color-text-code-editor-status-bar-disabled-izcnps:#879596;
  --color-text-code-editor-tab-button-error-el5pk3:#ffffff;
  --color-text-column-header-nhdjo5:#545b64;
  --color-text-column-sorting-icon-jjivph:#687078;
  --color-text-control-disabled-9r7x35:#aab7b8;
  --color-text-counter-001jjm:#687078;
  --color-text-disabled-tmkonv:#aab7b8;
  --color-text-dropdown-footer-349c2x:#687078;
  --color-text-dropdown-group-label-ihg7kk:#545b64;
  --color-text-dropdown-header-90kv5m:#16191f;
  --color-text-dropdown-item-default-wx27oj:#16191f;
  --color-text-dropdown-item-dimmed-94uait:#aab7b8;
  --color-text-dropdown-item-disabled-g9c04k:#aab7b8;
  --color-text-dropdown-item-filter-match-qs8rft:#0073bb;
  --color-text-dropdown-item-highlighted-t48eqn:#16191f;
  --color-text-dropdown-item-secondary-tbkgco:#687078;
  --color-text-dropdown-item-secondary-hover-91iztt:#687078;
  --color-text-empty-79ttcu:#687078;
  --color-text-expandable-section-default-yax29s:#545b64;
  --color-text-expandable-section-hover-th9u3f:#16191f;
  --color-text-expandable-section-navigation-icon-default-bniq5i:#879596;
  --color-text-form-default-agajwv:#16191f;
  --color-text-form-label-ug2d1t:#16191f;
  --color-text-form-secondary-wh2xkx:#687078;
  --color-text-group-label-3l0dih:#545b64;
  --color-text-heading-default-p5akhh:#16191f;
  --color-text-heading-secondary-jkk2pc:#545b64;
  --color-text-home-header-default-4ixpxi:#ffffff;
  --color-text-home-header-secondary-pimdc4:#d5dbdb;
  --color-text-icon-subtle-fzoo43:#687078;
  --color-text-input-disabled-26hyji:#879596;
  --color-text-input-placeholder-vi9sh8:#687078;
  --color-text-input-placeholder-disabled-1lvfii:#687078;
  --color-text-interactive-active-j3cxbp:#16191f;
  --color-text-interactive-default-djvtmz:#545b64;
  --color-text-interactive-disabled-k4q23b:#aab7b8;
  --color-text-interactive-hover-55cagk:#16191f;
  --color-text-interactive-inverted-default-mrgn6e:#d5dbdb;
  --color-text-interactive-inverted-hover-qliijo:#fafafa;
  --color-text-inverted-obwu99:#ffffff;
  --color-text-label-ezn36c:#545b64;
  --color-text-layout-toggle-gxpm7t:#545b64;
  --color-text-layout-toggle-active-9lot34:#ffffff;
  --color-text-layout-toggle-hover-pyp0b8:#0073bb;
  --color-text-layout-toggle-selected-gjgi5r:#ffffff;
  --color-text-link-default-lwrgyu:#0073bb;
  --color-text-link-hover-kmrtvm:#0a4a74;
  --color-text-link-inverted-hover-o3xt6o:#fafafa;
  --color-text-link-button-underline-vw7ht0:currentColor;
  --color-text-link-button-underline-hover-mp175e:currentColor;
  --color-text-notification-default-d9f7z3:#fafafa;
  --color-text-notification-stack-bar-3tz2wm:#ffffff;
  --color-text-notification-yellow-13otoi:#16191f;
  --color-text-pagination-page-number-active-disabled-wuw3oo:#545b64;
  --color-text-pagination-page-number-default-qvdjdy:#545b64;
  --color-text-segment-active-j9wjrk:#ffffff;
  --color-text-segment-default-uylum7:#545b64;
  --color-text-segment-hover-7mglzi:#0073bb;
  --color-text-small-bbucjz:#687078;
  --color-text-status-error-a5tqz1:#d13212;
  --color-text-status-inactive-8fmnw5:#687078;
  --color-text-status-info-lfbxn4:#0073bb;
  --color-text-status-success-a6oxaq:#1d8102;
  --color-text-status-warning-g3wln0:#906806;
  --color-text-top-navigation-title-bo5eb6:#16191f;
  --color-board-placeholder-active-r0ywv2:#d5dbdb;
  --color-board-placeholder-hover-hbn672:#99cbe4;
  --color-drag-placeholder-active-tcno63:#d5dbdb;
  --color-drag-placeholder-hover-8lb5mf:#99cbe4;
  --color-dropzone-background-active-2eefhd:#d5dbdb;
  --color-dropzone-background-hover-022hgn:#99cbe4;
  --color-dropzone-text-active-j474oi:#545b64;
  --color-dropzone-text-hover-rfgx5p:#12293b;
  --font-box-value-large-weight-wtv0yd:300;
  --font-button-letter-spacing-ahp09k:0.25px;
  --font-button-weight-jfejp1:700;
  --font-chart-detail-size-ns6b0n:14px;
  --font-display-label-weight-w2bkol:400;
  --font-expandable-heading-size-lj02xx:14px;
  --font-family-base-b4eaqi:"Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif;
  --font-family-monospace-sera44:Monaco, Menlo, Consolas, "Courier Prime", Courier, "Courier New", monospace;
  --font-header-h2-description-line-height-jj9arc:16px;
  --font-header-h2-description-size-8avpy1:12px;
  --font-link-button-letter-spacing-y4oyax:normal;
  --font-link-button-weight-gsuhhv:400;
  --font-panel-header-line-height-2yn36j:22px;
  --font-panel-header-size-r7jlin:18px;
  --font-size-body-m-jirw9u:14px;
  --font-size-body-s-ucr7d6:12px;
  --font-size-display-l-ij3zok:44px;
  --font-size-heading-xl-z8h967:28px;
  --font-size-heading-l-u89ro8:18px;
  --font-size-heading-m-ulervk:18px;
  --font-size-heading-s-hwcx2q:16px;
  --font-size-heading-xs-4u3wan:16px;
  --font-smoothing-moz-osx-58s982:auto;
  --font-smoothing-webkit-rg3jdt:auto;
  --font-tabs-disabled-weight-istqzx:400;
  --font-tabs-line-height-gsriti:22px;
  --font-tabs-size-647go8:14px;
  --font-wayfinding-link-active-weight-3yc06k:700;
  --font-weight-heading-xl-2jbc8j:400;
  --font-weight-heading-l-jlzyui:700;
  --font-weight-heading-m-ra39kx:400;
  --font-weight-heading-s-hg02sg:700;
  --font-weight-heading-xs-yzr1e0:400;
  --font-weight-heavy-8h6pk1:700;
  --letter-spacing-body-s-rksemx:normal;
  --letter-spacing-display-l-frfij1:normal;
  --letter-spacing-heading-xl-y4tqgw:normal;
  --letter-spacing-heading-l-v8uzhr:normal;
  --letter-spacing-heading-m-9g78ia:normal;
  --letter-spacing-heading-s-2369b0:normal;
  --line-height-body-m-4ax85e:22px;
  --line-height-body-s-lnbzsa:16px;
  --line-height-display-l-aqze16:56px;
  --line-height-heading-xl-44izce:36px;
  --line-height-heading-l-z752l3:22px;
  --line-height-heading-m-88a3m6:22px;
  --line-height-heading-s-m093oq:20px;
  --line-height-heading-xs-au4jub:20px;
  --border-active-width-sbv7bd:2px;
  --border-code-editor-status-divider-width-y1gbin:0px;
  --border-container-sticky-width-z1hq8m:1px;
  --border-container-top-width-qyo5h4:1px;
  --border-control-focus-ring-shadow-spread-oufv0y:1px;
  --border-control-invalid-focus-ring-shadow-spread-mejja6:1px;
  --border-divider-list-width-fsy9j8:1px;
  --border-divider-section-width-9dl636:1px;
  --border-dropdown-virtual-offset-width-fgy998:0px;
  --border-field-width-2vpp5j:1px;
  --border-invalid-width-5eyrjt:4px;
  --border-item-width-f0bcsu:1px;
  --border-line-chart-dash-array-ayiln3:3 5;
  --border-line-chart-line-join-wyxdg2:miter;
  --border-line-chart-width-2yp0z7:2px;
  --border-panel-header-width-g9tf1j:0px;
  --border-panel-top-width-56unkv:0px;
  --border-radius-alert-d41lte:2px;
  --border-radius-badge-8ouvml:16px;
  --border-radius-button-lbgihl:2px;
  --border-radius-calendar-day-focus-ring-jo6kg0:2px;
  --border-radius-code-editor-11706l:0px;
  --border-radius-container-y85mnh:0px;
  --border-radius-control-circular-focus-ring-71or2m:50%;
  --border-radius-control-default-focus-ring-fc6z2l:2px;
  --border-radius-dropdown-ewtx9q:0px;
  --border-radius-dropzone-2kbkl3:0px;
  --border-radius-flashbar-y72uhk:0px;
  --border-radius-item-fcd5og:0px;
  --border-radius-input-jnmu21:2px;
  --border-radius-popover-yu74or:2px;
  --border-radius-tabs-focus-ring-bf34o9:0px;
  --border-radius-tiles-6xhybc:2px;
  --border-radius-token-17x9l6:2px;
  --border-radius-tutorial-panel-item-cq5rw9:2px;
  --border-table-sticky-width-r7cax4:0px;
  --border-link-focus-ring-outline-x5z0d3:5px auto Highlight;
  --border-link-focus-ring-shadow-spread-1nkh7a:0px;
  --motion-duration-extra-slow-vamr5b:270ms;
  --motion-duration-fast-pml190:90ms;
  --motion-duration-moderate-bggcsm:135ms;
  --motion-duration-refresh-only-fast-n43vlu:115ms;
  --motion-duration-refresh-only-medium-af0v35:165ms;
  --motion-duration-refresh-only-slow-uid2xp:250ms;
  --motion-duration-rotate-180-i3ygzg:135ms;
  --motion-duration-rotate-90-1zdthq:135ms;
  --motion-duration-show-paced-1a355f:180ms;
  --motion-duration-show-quick-b6n9lb:135ms;
  --motion-duration-slow-mz6oyq:180ms;
  --motion-duration-transition-quick-dm1zcq:90ms;
  --motion-duration-transition-show-paced-qcfnau:180ms;
  --motion-duration-transition-show-quick-6dpisk:90ms;
  --motion-easing-ease-out-quart-x76njy:cubic-bezier(0.165, 0.84, 0.44, 1);
  --motion-easing-refresh-only-a-yzzzm8:cubic-bezier(0, 0, 0, 1);
  --motion-easing-refresh-only-b-wb1nw6:cubic-bezier(1, 0, 0.83, 1);
  --motion-easing-refresh-only-c-lo9udz:cubic-bezier(0.84, 0, 0.16, 1);
  --motion-easing-rotate-180-qx5hdf:cubic-bezier(0.165, 0.84, 0.44, 1);
  --motion-easing-rotate-90-acpifo:cubic-bezier(0.165, 0.84, 0.44, 1);
  --motion-easing-show-paced-uosx37:ease-out;
  --motion-easing-show-quick-vlcbqf:ease-out;
  --motion-easing-transition-quick-74hmmw:linear;
  --motion-easing-transition-show-paced-qe3gc9:ease-out;
  --motion-easing-responsive-uaq9t7:ease-out;
  --motion-easing-sticky-z6h8g6:ease-out;
  --motion-easing-expressive-j0sm5d:ease-out;
  --motion-duration-responsive-omyop9:135ms;
  --motion-duration-expressive-ocxint:180ms;
  --motion-duration-complex-rkf59l:270ms;
  --motion-keyframes-fade-in-2pgjq5:awsui-fade-in-35003c;
  --motion-keyframes-fade-out-dpw9hm:awsui-fade-out-35003c;
  --motion-keyframes-status-icon-error-xptwgn:awsui-none-35003c;
  --motion-keyframes-scale-popup-mdhdi4:awsui-none-35003c;
  --size-calendar-grid-width-tzf7xv:234px;
  --size-control-q9uk7g:14px;
  --size-icon-big-rl4tdi:32px;
  --size-icon-large-x6jwev:48px;
  --size-icon-medium-d9rdun:16px;
  --size-icon-normal-as5jb3:16px;
  --size-table-selection-horizontal-6yz3cl:54px;
  --size-vertical-input-18ku63:32px;
  --size-vertical-panel-icon-offset-47mfcv:15px;
  --space-alert-action-left-3z1yjb:20px;
  --space-alert-horizontal-oyqx05:20px;
  --space-alert-message-right-svow5j:0px;
  --space-alert-vertical-8r7n6v:12px;
  --space-button-focus-outline-gutter-2g5ia0:3px;
  --space-button-horizontal-kqt1zg:20px;
  --space-button-icon-focus-outline-gutter-vertical-atye4f:3px;
  --space-button-icon-only-horizontal-5iqrhy:16px;
  --space-button-inline-icon-focus-outline-gutter-747equ:3px;
  --space-button-modal-dismiss-vertical-17om1h:4px;
  --space-calendar-grid-focus-outline-gutter-qirwc5:0px;
  --space-calendar-grid-selected-focus-outline-gutter-11qiv4:2px;
  --space-card-horizontal-ai1anx:20px;
  --space-card-vertical-k85wjn:20px;
  --space-code-editor-status-focus-outline-gutter-txw0hu:3px;
  --space-container-content-top-smfayu:16px;
  --space-container-header-top-isuu42:12px;
  --space-container-header-bottom-7poudk:12px;
  --space-container-horizontal-6u2610:20px;
  --space-content-header-padding-bottom-lycl1l:16px;
  --space-dark-header-overlap-distance-g6mtzl:0px;
  --space-expandable-section-icon-offset-top-om84w8:8px;
  --space-field-horizontal-wfaq0d:8px;
  --space-field-icon-offset-uc4al5:32px;
  --space-filtering-token-dismiss-button-focus-outline-gutter-s0rper:0px;
  --space-filtering-token-operation-select-focus-outline-gutter-kjeacy:0px;
  --space-flashbar-action-left-cntuo6:16px;
  --space-flashbar-dismiss-right-qskwhk:4px;
  --space-flashbar-horizontal-eamqqp:12px;
  --space-grid-gutter-pfst95:20px;
  --space-key-value-gap-xmtv08:2px;
  --space-layout-content-bottom-6h9urw:20px;
  --space-layout-toggle-diameter-e6hjiu:40px;
  --space-layout-toggle-padding-mgz0u7:20px;
  --space-modal-content-bottom-jf04k3:20px;
  --space-modal-horizontal-plzmda:20px;
  --space-option-icon-big-top-6g0v28:2px;
  --space-panel-nav-left-6b3r3r:32px;
  --space-panel-side-left-f4trxi:32px;
  --space-panel-side-right-5u66nh:32px;
  --space-panel-split-top-w0vp0o:0px;
  --space-segmented-control-focus-outline-gutter-c956dm:3px;
  --space-tabs-content-top-qqb5pb:16px;
  --space-tabs-focus-outline-gutter-eftd59:0px;
  --space-table-content-bottom-4wzfhv:0px;
  --space-table-embedded-header-top-hxr64p:12px;
  --space-table-footer-horizontal-kvgjs1:20px;
  --space-table-header-focus-outline-gutter-7em6qj:0px;
  --space-table-header-horizontal-icvlet:20px;
  --space-table-header-tools-bottom-quuidt:4px;
  --space-table-header-tools-full-page-bottom-6xklb5:4px;
  --space-table-horizontal-4gmq7g:0px;
  --space-scaled-2x-xxs-mfdb10:4px;
  --space-scaled-2x-m-rh97jh:16px;
  --space-scaled-2x-l-ik0kek:20px;
  --space-scaled-2x-xl-g1o31j:24px;
  --space-scaled-2x-xxxl-4usad4:40px;
  --space-scaled-none-98elrj:0px;
  --space-scaled-xxxs-emyscj:2px;
  --space-scaled-xxs-ugy2pw:4px;
  --space-scaled-xs-u0e7ft:8px;
  --space-scaled-s-gczsk7:12px;
  --space-scaled-m-9q5ipc:16px;
  --space-scaled-l-x5pubp:20px;
  --space-scaled-xl-ozgbvg:24px;
  --space-scaled-xxl-v4jc9u:32px;
  --space-scaled-xxxl-kyg1bf:40px;
  --space-static-xxxs-lv75px:2px;
  --space-static-xxs-k9hlp3:4px;
  --space-static-xs-lb1zri:8px;
  --space-static-s-ftfmal:12px;
  --space-static-m-jb7duq:16px;
  --space-static-l-63ezv6:20px;
  --space-static-xl-cd6u05:24px;
  --space-static-xxl-q0k852:32px;
  --space-static-xxxl-m9wxgy:40px;
  --space-none-63da7t:0px;
  --space-xxxs-rq3iss:2px;
  --space-xxs-a6783b:4px;
  --space-xs-inub5w:8px;
  --space-s-rd607g:12px;
  --space-m-sptmsg:16px;
  --space-l-ds615y:20px;
  --space-xl-7jca1b:24px;
  --space-xxl-eiq7g3:32px;
  --space-xxxl-rhml9p:40px;
  --shadow-container-jwc36p:0 1px 1px 0 rgba(0, 28, 36, 0.3), 1px 1px 1px 0 rgba(0, 28, 36, 0.15), -1px 1px 1px 0 rgba(0, 28, 36, 0.15);
  --shadow-container-stacked-q43z60:0 1px 1px 0 rgba(0, 28, 36, 0.3), 1px 1px 1px 0 rgba(0, 28, 36, 0.15), -1px 1px 1px 0 rgba(0, 28, 36, 0.15);
  --shadow-container-active-1gt28y:0px 4px 8px rgba(0, 28, 36, 0.45);
  --shadow-dropdown-ixmllj:0 1px 1px 0 rgba(0, 28, 36, 0.3), 1px 1px 1px 0 rgba(0, 28, 36, 0.15), -1px 1px 1px 0 rgba(0, 28, 36, 0.15);
  --shadow-dropup-uhb2zg:0 -1px 1px 0 rgba(0, 28, 36, 0.3), 1px -1px 1px 0 rgba(0, 28, 36, 0.15), -1px -1px 1px 0 rgba(0, 28, 36, 0.15);
  --shadow-flash-collapsed-ngw0jk:0px 2px 2px rgba(0, 0, 0, 0.15);
  --shadow-flash-sticky-6z04cw:0 1px 1px 0 rgba(0, 28, 36, 0.3), 1px 1px 1px 0 rgba(0, 28, 36, 0.15), -1px 1px 1px 0 rgba(0, 28, 36, 0.15);
  --shadow-modal-cavj11:0 1px 1px 0 rgba(0, 28, 36, 0.3), 1px 1px 1px 0 rgba(0, 28, 36, 0.15), -1px 1px 1px 0 rgba(0, 28, 36, 0.15);
  --shadow-panel-qf38d8:0 1px 1px 0 rgba(0, 28, 36, 0.3), 1px 1px 1px 0 rgba(0, 28, 36, 0.15), -1px 1px 1px 0 rgba(0, 28, 36, 0.15);
  --shadow-panel-toggle-joszwo:0 1px 1px 0 rgba(0, 28, 36, 0.3), 1px 1px 1px 0 rgba(0, 28, 36, 0.15), -1px 1px 1px 0 rgba(0, 28, 36, 0.15);
  --shadow-popover-atdz1j:0px 1px 4px -2px rgba(0, 28, 36, 0.5);
  --shadow-split-bottom-igu10s:0 -2px 1px -1px rgba(0, 28, 36, 0.15), 0 -1px 1px -1px rgba(0, 28, 36, 0.3);
  --shadow-split-side-hj3xha:0 1px 1px 0 rgba(0, 28, 36, 0.3), 1px 1px 1px 0 rgba(0, 28, 36, 0.15), -1px 1px 1px 0 rgba(0, 28, 36, 0.15);
  --shadow-sticky-fftr9t:0px 1px 4px -2px rgba(0, 28, 36, 0.5);
  --shadow-sticky-embedded-2khilm:0px 1px 4px -2px rgba(0, 28, 36, 0.5);
  --shadow-sticky-column-first-wkhcx1:4px 0 8px 0 rgba(0, 28, 36, 0.1);
  --shadow-sticky-column-last-4qhui6:-4px 0 8px 0 rgba(0, 28, 36, 0.1);
}

@media not print {
  .awsui-dark-mode:not(#\9) {
    --color-charts-red-300-v8pqah:#d63f38;
    --color-charts-red-400-0ycrl8:#ed5958;
    --color-charts-red-500-jo79ux:#fe6e73;
    --color-charts-red-600-2ymghb:#ff8a8a;
    --color-charts-red-700-c3rnal:#ffa09e;
    --color-charts-red-800-lgald1:#ffb3b0;
    --color-charts-red-900-y3eemg:#ffc4c0;
    --color-charts-red-1000-yyqzp1:#ffd2cf;
    --color-charts-red-1100-0wecq8:#ffe0dd;
    --color-charts-red-1200-hmkpnx:#ffecea;
    --color-charts-orange-300-jcenox:#c55305;
    --color-charts-orange-400-nev5rq:#de6923;
    --color-charts-orange-500-48gu0y:#f27c36;
    --color-charts-orange-600-yv1nii:#f89256;
    --color-charts-orange-700-rxl6xd:#fca572;
    --color-charts-orange-800-ce4xic:#ffb68b;
    --color-charts-orange-900-0tbeoy:#ffc6a4;
    --color-charts-orange-1000-ex4m37:#ffd4bb;
    --color-charts-orange-1100-4ch1cj:#ffe1cf;
    --color-charts-orange-1200-qa2la0:#ffede2;
    --color-charts-yellow-300-qcjduj:#977001;
    --color-charts-yellow-400-baglyr:#b08400;
    --color-charts-yellow-500-9t08lz:#c59600;
    --color-charts-yellow-600-mh3u9i:#d3a61c;
    --color-charts-yellow-700-le1hth:#dfb52c;
    --color-charts-yellow-800-4aztx5:#eac33a;
    --color-charts-yellow-900-12my7v:#f1cf65;
    --color-charts-yellow-1000-5wr65g:#f7db8a;
    --color-charts-yellow-1100-oprwqp:#fce5a8;
    --color-charts-yellow-1200-5z19hy:#ffefc9;
    --color-charts-green-300-885xbr:#48851a;
    --color-charts-green-400-9jzy7f:#5a9b29;
    --color-charts-green-500-9ejswg:#69ae34;
    --color-charts-green-600-j06vr3:#7dbd4c;
    --color-charts-green-700-dxtver:#8fca61;
    --color-charts-green-800-c9mg6a:#9fd673;
    --color-charts-green-900-hu961o:#b2df8d;
    --color-charts-green-1000-rgvlm5:#c5e7a8;
    --color-charts-green-1100-g032j3:#d5efbe;
    --color-charts-green-1200-fffr8z:#e4f7d5;
    --color-charts-teal-300-pdwqwl:#018977;
    --color-charts-teal-400-87xyxa:#009d89;
    --color-charts-teal-500-4ih4dj:#00b09b;
    --color-charts-teal-600-nsdkdk:#40bfa9;
    --color-charts-teal-700-89s4th:#5fccb7;
    --color-charts-teal-800-pj7d71:#77d7c3;
    --color-charts-teal-900-0u0vgk:#94e0d0;
    --color-charts-teal-1000-qt39rn:#ace9db;
    --color-charts-teal-1100-jjpoec:#c2f0e6;
    --color-charts-teal-1200-fz7ds6:#d7f7f0;
    --color-charts-blue-1-300-mvslh1:#00819c;
    --color-charts-blue-1-400-vfffdq:#0497ba;
    --color-charts-blue-1-500-5qq8ll:#08aad2;
    --color-charts-blue-1-600-1jjw30:#44b9dd;
    --color-charts-blue-1-700-7e7h6g:#63c6e7;
    --color-charts-blue-1-800-6ew8r4:#79d2f0;
    --color-charts-blue-1-900-ejk9n2:#98dcf5;
    --color-charts-blue-1-1000-47wlti:#b3e4f8;
    --color-charts-blue-1-1100-iwkugu:#caedfc;
    --color-charts-blue-1-1200-s6xraf:#ddf4ff;
    --color-charts-blue-2-300-iy07jw:#486de8;
    --color-charts-blue-2-400-hy6jpz:#6384f5;
    --color-charts-blue-2-500-hmxwyv:#7698fe;
    --color-charts-blue-2-600-o0wevj:#8ea9ff;
    --color-charts-blue-2-700-cmchf6:#a2b8ff;
    --color-charts-blue-2-800-bpld4x:#b1c5ff;
    --color-charts-blue-2-900-3xlmt8:#c3d1ff;
    --color-charts-blue-2-1000-f5iopd:#d2dcff;
    --color-charts-blue-2-1100-c3tt87:#dfe6ff;
    --color-charts-blue-2-1200-4qi1dr:#ecf0ff;
    --color-charts-purple-300-960s4o:#8d59de;
    --color-charts-purple-400-1xajzn:#a173ea;
    --color-charts-purple-500-tdtd0d:#b088f5;
    --color-charts-purple-600-4796yr:#bf9bf9;
    --color-charts-purple-700-xj79jn:#cbabfc;
    --color-charts-purple-800-yvd90z:#d6baff;
    --color-charts-purple-900-h50lkc:#dfc8ff;
    --color-charts-purple-1000-iuih7d:#e8d5ff;
    --color-charts-purple-1100-asapzo:#efe2ff;
    --color-charts-purple-1200-2w5zbu:#f5edff;
    --color-charts-pink-300-g5b3l1:#c64a70;
    --color-charts-pink-400-z1x9dh:#d56889;
    --color-charts-pink-500-rhmtrw:#e07f9d;
    --color-charts-pink-600-dr25sz:#eb92ad;
    --color-charts-pink-700-q6nx7n:#f5a2bb;
    --color-charts-pink-800-2taysn:#ffb0c8;
    --color-charts-pink-900-w0oqu6:#ffc1d4;
    --color-charts-pink-1000-i1lck3:#ffd1de;
    --color-charts-pink-1100-8of6pv:#ffdfe8;
    --color-charts-pink-1200-s5fsms:#ffecf1;
    --color-charts-status-critical-26qhog:#d63f38;
    --color-charts-status-high-am1khe:#fe6e73;
    --color-charts-status-medium-mlf4vh:#f89256;
    --color-charts-status-low-xd6yyp:#dfb52c;
    --color-charts-status-positive-si8nxj:#69ae34;
    --color-charts-status-info-978qj9:#08aad2;
    --color-charts-threshold-negative-4peb4g:#ff5d64;
    --color-charts-threshold-positive-mi3mwk:#6aaf35;
    --color-charts-threshold-info-lldfpx:#44b9d6;
    --color-charts-threshold-neutral-mt9ytx:#95a5a6;
    --color-charts-line-grid-8ig2w3:#414750;
    --color-charts-line-tick-o06ewi:#414750;
    --color-charts-line-axis-ah4nkd:#414750;
    --color-charts-palette-categorical-1-8b4eoo:#486de8;
    --color-charts-palette-categorical-2-7k6x03:#e07f9d;
    --color-charts-palette-categorical-3-t6ajxf:#018977;
    --color-charts-palette-categorical-4-aths19:#b088f5;
    --color-charts-palette-categorical-5-p0nlbd:#c55305;
    --color-charts-palette-categorical-6-c7u7pv:#8ea9ff;
    --color-charts-palette-categorical-7-z8w12m:#ffb0c8;
    --color-charts-palette-categorical-8-d3flyi:#40bfa9;
    --color-charts-palette-categorical-9-1l76ah:#d6baff;
    --color-charts-palette-categorical-10-ecf5xi:#f89256;
    --color-charts-palette-categorical-11-1mok8v:#c3d1ff;
    --color-charts-palette-categorical-12-dtnap1:#ffdfe8;
    --color-charts-palette-categorical-13-6uykyg:#94e0d0;
    --color-charts-palette-categorical-14-8ew2g1:#efe2ff;
    --color-charts-palette-categorical-15-basy54:#ffc6a4;
    --color-charts-palette-categorical-16-ss1voi:#ecf0ff;
    --color-charts-palette-categorical-17-5bmruj:#d56889;
    --color-charts-palette-categorical-18-j5i5wm:#d7f7f0;
    --color-charts-palette-categorical-19-4moj4n:#a173ea;
    --color-charts-palette-categorical-20-tqrwxf:#ffede2;
    --color-charts-palette-categorical-21-apb1sz:#7698fe;
    --color-charts-palette-categorical-22-ljfqak:#f5a2bb;
    --color-charts-palette-categorical-23-p85q7b:#00b09b;
    --color-charts-palette-categorical-24-vn32ho:#cbabfc;
    --color-charts-palette-categorical-25-v2ek2u:#f27c36;
    --color-charts-palette-categorical-26-e2ms6a:#b1c5ff;
    --color-charts-palette-categorical-27-mtylhv:#ffd1de;
    --color-charts-palette-categorical-28-0hiaor:#77d7c3;
    --color-charts-palette-categorical-29-ktyv4f:#e8d5ff;
    --color-charts-palette-categorical-30-db1785:#ffb68b;
    --color-charts-palette-categorical-31-l7yf28:#dfe6ff;
    --color-charts-palette-categorical-32-lzfh57:#c64a70;
    --color-charts-palette-categorical-33-kaanp8:#c2f0e6;
    --color-charts-palette-categorical-34-m2v68i:#8d59de;
    --color-charts-palette-categorical-35-rayjg3:#ffe1cf;
    --color-charts-palette-categorical-36-uiqmsn:#6384f5;
    --color-charts-palette-categorical-37-ygqr3y:#eb92ad;
    --color-charts-palette-categorical-38-d67rfy:#009d89;
    --color-charts-palette-categorical-39-ceut5m:#bf9bf9;
    --color-charts-palette-categorical-40-fzhfxp:#de6923;
    --color-charts-palette-categorical-41-6i1l8r:#a2b8ff;
    --color-charts-palette-categorical-42-9ud2pl:#ffc1d4;
    --color-charts-palette-categorical-43-wxf6os:#5fccb7;
    --color-charts-palette-categorical-44-ovegri:#dfc8ff;
    --color-charts-palette-categorical-45-g4rnlt:#fca572;
    --color-charts-palette-categorical-46-m8gaer:#d2dcff;
    --color-charts-palette-categorical-47-g2w96d:#ffecf1;
    --color-charts-palette-categorical-48-k8kiz7:#ace9db;
    --color-charts-palette-categorical-49-sw40c5:#f5edff;
    --color-charts-palette-categorical-50-w2luek:#ffd4bb;
    --color-background-badge-icon-4mo0wt:#ff5d64;
    --color-background-button-link-active-34rko8:#16191f;
    --color-background-button-link-hover-jv3f2k:#21252c;
    --color-background-button-normal-active-czecy2:#16191f;
    --color-background-button-normal-default-r433m6:#2a2e33;
    --color-background-button-normal-disabled-ejdxb1:#2a2e33;
    --color-background-button-normal-hover-afg7z9:#21252c;
    --color-background-button-primary-active-qjb1np:#44b9d6;
    --color-background-button-primary-default-zz5irg:#44b9d6;
    --color-background-button-primary-disabled-2w63xd:#2a2e33;
    --color-background-button-primary-hover-c6t12k:#00a1c9;
    --color-background-calendar-today-x6vg6n:#16191f;
    --color-background-cell-shaded-gppcg5:#16191f;
    --color-background-code-editor-gutter-active-line-default-52tgix:#879596;
    --color-background-code-editor-gutter-active-line-error-kbld3k:#ff5d64;
    --color-background-code-editor-gutter-default-ria8z9:#21252c;
    --color-background-code-editor-loading-fmqmbg:#21252c;
    --color-background-code-editor-pane-item-hover-uw1s87:#414750;
    --color-background-code-editor-status-bar-8oe90a:#21252c;
    --color-background-container-content-pb0lp5:#2a2e33;
    --color-background-container-header-pmlnr3:#21252c;
    --color-background-control-checked-q75knx:#00a1c9;
    --color-background-control-default-x4w3j0:#1a2029;
    --color-background-control-disabled-vkotqk:#414750;
    --color-background-dropdown-item-default-2p2g22:#2a2e33;
    --color-background-dropdown-item-filter-match-ugvt1w:#12293b;
    --color-background-dropdown-item-hover-6qhcjz:#414750;
    --color-background-dropdown-item-selected-pz82cn:#12293b;
    --color-background-input-default-66bx4w:#1a2029;
    --color-background-input-disabled-0azib6:#414750;
    --color-background-item-selected-8e1q8b:#12293b;
    --color-background-layout-main-okygtx:#16191f;
    --color-background-layout-mobile-panel-1g9iiz:#2a2e33;
    --color-background-layout-panel-content-qv5yhf:#2a2e33;
    --color-background-layout-panel-hover-mcickn:#414750;
    --color-background-layout-toggle-selected-active-3nl5wx:#00a1c9;
    --color-background-layout-toggle-selected-default-rx4hqe:#44b9d6;
    --color-background-layout-toggle-selected-hover-9gel8c:#44b9d6;
    --color-background-modal-overlay-rsidw7:rgba(22, 25, 31, 0.8);
    --color-background-notification-grey-iechs6:#687078;
    --color-background-popover-ft56xl:#21252c;
    --color-background-progress-bar-content-default-hbebrl:#00a1c9;
    --color-background-progress-bar-content-in-flash-v3roh6:#fafafa;
    --color-background-progress-bar-layout-default-n7v8t0:#414750;
    --color-background-segment-active-d8q9iy:#00a1c9;
    --color-background-segment-default-9ooxg1:#2a2e33;
    --color-background-segment-disabled-log6bm:#2a2e33;
    --color-background-segment-hover-tvysh8:#2a2e33;
    --color-background-status-error-zzlt4q:#270a11;
    --color-background-status-info-nlr7o9:#12293b;
    --color-background-status-success-97x61g:#172211;
    --color-background-status-warning-iv51lc:#1d1906;
    --color-background-table-header-d4x481:#21252c;
    --color-background-tiles-disabled-f3fyva:#2a2e33;
    --color-background-toggle-checked-disabled-o63zu0:#0a4a74;
    --color-background-toggle-default-six3cw:#879596;
    --color-border-button-normal-active-zrx2x0:#879596;
    --color-border-button-normal-default-a1f0ud:#879596;
    --color-border-button-normal-disabled-2z1mk8:#414750;
    --color-border-button-normal-hover-j7d6r6:#aab7b8;
    --color-border-button-primary-disabled-oe36ny:#414750;
    --color-border-calendar-grid-bl278b:#414750;
    --color-border-calendar-grid-selected-focus-ring-9q7e5h:#00a1c9;
    --color-border-code-editor-default-ovjs83:#687078;
    --color-border-code-editor-pane-item-hover-gk4v4i:#879596;
    --color-border-container-divider-4z4y7u:#414750;
    --color-border-container-top-ige66g:#2a2e33;
    --color-border-control-checked-tl007y:#00a1c9;
    --color-border-control-default-1igjc0:#879596;
    --color-border-control-disabled-n4rl6j:#414750;
    --color-border-divider-default-1mmknt:#414750;
    --color-border-divider-panel-bottom-r9jdco:rgba(0, 0, 0, 0.3);
    --color-border-dropdown-group-u3qa6a:#414750;
    --color-border-dropdown-item-default-062h8i:#414750;
    --color-border-dropdown-item-top-l8o9uk:#414750;
    --color-border-input-default-sm4mjn:#879596;
    --color-border-input-disabled-73z8co:#414750;
    --color-border-item-focused-t884ih:#00a1c9;
    --color-border-item-selected-bmiwgz:#00a1c9;
    --color-border-layout-6apkl4:#414750;
    --color-border-popover-p8haek:#545b64;
    --color-border-segment-active-w8feiw:#ffffff;
    --color-border-segment-default-yqxei2:#879596;
    --color-border-segment-disabled-6zsba4:#414750;
    --color-border-segment-hover-0dlw9k:#ffffff;
    --color-border-status-info-uwhmay:#00a1c9;
    --color-border-status-warning-p1qx7d:#e0ca57;
    --color-border-tabs-divider-ol648v:#414750;
    --color-border-tabs-shadow-k1zhjd:rgba(0, 0, 0, 0.3);
    --color-border-tabs-underline-uahgcp:#fafafa;
    --color-border-tiles-disabled-10gnrm:#414750;
    --color-border-tutorial-d7429l:#879596;
    --color-foreground-control-disabled-4rcx89:#687078;
    --color-shadow-default-4md8jt:rgba(0, 0, 0, 0.5);
    --color-text-accent-qe8oro:#44b9d6;
    --color-text-body-default-rlujvh:#d5dbdb;
    --color-text-body-secondary-bgqgd0:#d5dbdb;
    --color-text-breadcrumb-current-nu3iko:#d5dbdb;
    --color-text-button-inline-icon-default-buw7w7:#d5dbdb;
    --color-text-button-inline-icon-disabled-phk84s:#687078;
    --color-text-button-inline-icon-hover-0pwsg2:#fafafa;
    --color-text-button-normal-active-v6nfdh:#fafafa;
    --color-text-button-normal-default-eqebde:#d5dbdb;
    --color-text-button-normal-hover-bk2x1u:#fafafa;
    --color-text-link-button-normal-default-x8uncu:#d5dbdb;
    --color-text-link-button-normal-hover-hm6g27:#fafafa;
    --color-text-link-button-normal-active-8cfe84:#fafafa;
    --color-text-button-primary-active-0k4v93:#16191f;
    --color-text-button-primary-default-6dta4b:#16191f;
    --color-text-button-primary-hover-fk4ryc:#16191f;
    --color-text-calendar-day-hover-06fz50:#eaeded;
    --color-text-calendar-month-axtdn0:#d5dbdb;
    --color-text-code-editor-gutter-active-line-qjn6d7:#16191f;
    --color-text-code-editor-gutter-default-ml5ea9:#d5dbdb;
    --color-text-code-editor-status-bar-disabled-izcnps:#687078;
    --color-text-code-editor-tab-button-error-el5pk3:#16191f;
    --color-text-column-header-nhdjo5:#95a5a6;
    --color-text-column-sorting-icon-jjivph:#95a5a6;
    --color-text-control-disabled-9r7x35:#687078;
    --color-text-counter-001jjm:#95a5a6;
    --color-text-disabled-tmkonv:#687078;
    --color-text-dropdown-footer-349c2x:#95a5a6;
    --color-text-dropdown-group-label-ihg7kk:#95a5a6;
    --color-text-dropdown-header-90kv5m:#fafafa;
    --color-text-dropdown-item-default-wx27oj:#d5dbdb;
    --color-text-dropdown-item-dimmed-94uait:#687078;
    --color-text-dropdown-item-disabled-g9c04k:#687078;
    --color-text-dropdown-item-filter-match-qs8rft:#44b9d6;
    --color-text-dropdown-item-highlighted-t48eqn:#eaeded;
    --color-text-dropdown-item-secondary-tbkgco:#95a5a6;
    --color-text-dropdown-item-secondary-hover-91iztt:#d5dbdb;
    --color-text-empty-79ttcu:#d5dbdb;
    --color-text-expandable-section-default-yax29s:#d5dbdb;
    --color-text-expandable-section-hover-th9u3f:#fafafa;
    --color-text-expandable-section-navigation-icon-default-bniq5i:#95a5a6;
    --color-text-form-default-agajwv:#d5dbdb;
    --color-text-form-label-ug2d1t:#d5dbdb;
    --color-text-form-secondary-wh2xkx:#95a5a6;
    --color-text-group-label-3l0dih:#95a5a6;
    --color-text-heading-default-p5akhh:#eaeded;
    --color-text-heading-secondary-jkk2pc:#d5dbdb;
    --color-text-home-header-default-4ixpxi:#eaeded;
    --color-text-icon-subtle-fzoo43:#aab7b8;
    --color-text-input-disabled-26hyji:#687078;
    --color-text-input-placeholder-vi9sh8:#879596;
    --color-text-input-placeholder-disabled-1lvfii:#879596;
    --color-text-interactive-active-j3cxbp:#fafafa;
    --color-text-interactive-default-djvtmz:#d5dbdb;
    --color-text-interactive-disabled-k4q23b:#687078;
    --color-text-interactive-hover-55cagk:#fafafa;
    --color-text-inverted-obwu99:#16191f;
    --color-text-label-ezn36c:#95a5a6;
    --color-text-layout-toggle-gxpm7t:#d5dbdb;
    --color-text-layout-toggle-active-9lot34:#1a2029;
    --color-text-layout-toggle-hover-pyp0b8:#00a1c9;
    --color-text-layout-toggle-selected-gjgi5r:#16191f;
    --color-text-link-default-lwrgyu:#44b9d6;
    --color-text-link-hover-kmrtvm:#99cbe4;
    --color-text-pagination-page-number-active-disabled-wuw3oo:#d5dbdb;
    --color-text-pagination-page-number-default-qvdjdy:#d5dbdb;
    --color-text-segment-active-j9wjrk:#1a2029;
    --color-text-segment-default-uylum7:#d5dbdb;
    --color-text-segment-hover-7mglzi:#00a1c9;
    --color-text-small-bbucjz:#95a5a6;
    --color-text-status-error-a5tqz1:#ff5d64;
    --color-text-status-inactive-8fmnw5:#95a5a6;
    --color-text-status-info-lfbxn4:#44b9d6;
    --color-text-status-success-a6oxaq:#6aaf35;
    --color-text-status-warning-g3wln0:#e0ca57;
    --color-text-top-navigation-title-bo5eb6:#fafafa;
    --color-board-placeholder-active-r0ywv2:#687078;
    --color-board-placeholder-hover-hbn672:#0073bb;
    --color-drag-placeholder-active-tcno63:#687078;
    --color-drag-placeholder-hover-8lb5mf:#0073bb;
    --color-dropzone-background-active-2eefhd:#687078;
    --color-dropzone-background-hover-022hgn:#0073bb;
    --color-dropzone-text-active-j474oi:#16191f;
    --color-dropzone-text-hover-rfgx5p:#ffffff;
    --shadow-container-jwc36p:0 1px 1px 0 rgba(0, 0, 0, 0.3), 1px 1px 1px 0 rgba(0, 0, 0, 0.3), -1px 1px 1px 0 rgba(0, 0, 0, 0.3);
    --shadow-container-stacked-q43z60:0 1px 1px 0 rgba(0, 0, 0, 0.3), 1px 1px 1px 0 rgba(0, 0, 0, 0.3), -1px 1px 1px 0 rgba(0, 0, 0, 0.3);
    --shadow-dropdown-ixmllj:0 1px 1px 0 rgba(0, 0, 0, 0.3), 1px 1px 1px 0 rgba(0, 0, 0, 0.3), -1px 1px 1px 0 rgba(0, 0, 0, 0.3);
    --shadow-dropup-uhb2zg:0 -1px 1px 0 rgba(0, 0, 0, 0.3), 1px -1px 1px 0 rgba(0, 0, 0, 0.3), -1px -1px 1px 0 rgba(0, 0, 0, 0.3);
    --shadow-flash-sticky-6z04cw:0 1px 1px 0 rgba(0, 0, 0, 0.3), 1px 1px 1px 0 rgba(0, 0, 0, 0.3), -1px 1px 1px 0 rgba(0, 0, 0, 0.3);
    --shadow-modal-cavj11:0 1px 1px 0 rgba(0, 0, 0, 0.3), 1px 1px 1px 0 rgba(0, 0, 0, 0.3), -1px 1px 1px 0 rgba(0, 0, 0, 0.3);
    --shadow-panel-qf38d8:0 1px 1px 0 rgba(0, 0, 0, 0.3), 1px 1px 1px 0 rgba(0, 0, 0, 0.3), -1px 1px 1px 0 rgba(0, 0, 0, 0.3);
    --shadow-panel-toggle-joszwo:0 1px 1px 0 rgba(0, 0, 0, 0.3), 1px 1px 1px 0 rgba(0, 0, 0, 0.3), -1px 1px 1px 0 rgba(0, 0, 0, 0.3);
    --shadow-popover-atdz1j:0px 1px 4px -2px rgba(0, 0, 0, 0.5);
    --shadow-split-bottom-igu10s:0 -2px 1px -1px rgba(0, 0, 0, 0.3), 0 -1px 1px -1px rgba(0, 0, 0, 0.3);
    --shadow-split-side-hj3xha:0 1px 1px 0 rgba(0, 0, 0, 0.3), 1px 1px 1px 0 rgba(0, 0, 0, 0.3), -1px 1px 1px 0 rgba(0, 0, 0, 0.3);
    --shadow-sticky-fftr9t:0px 1px 4px -2px rgba(0, 0, 0, 0.5);
    --shadow-sticky-embedded-2khilm:0px 1px 4px -2px rgba(0, 0, 0, 0.5);
    --shadow-sticky-column-first-wkhcx1:4px 0 8px 0 rgba(0, 0, 0, 0.5);
    --shadow-sticky-column-last-4qhui6:-4px 0 8px 0 rgba(0, 0, 0, 0.5);
  }
}
.awsui-compact-mode:not(#\9) {
  --size-vertical-input-18ku63:28px;
  --size-vertical-panel-icon-offset-47mfcv:13px;
  --space-alert-vertical-8r7n6v:8px;
  --space-button-modal-dismiss-vertical-17om1h:2px;
  --space-card-vertical-k85wjn:16px;
  --space-container-content-top-smfayu:12px;
  --space-container-header-top-isuu42:8px;
  --space-container-header-bottom-7poudk:8px;
  --space-content-header-padding-bottom-lycl1l:12px;
  --space-expandable-section-icon-offset-top-om84w8:4px;
  --space-grid-gutter-pfst95:16px;
  --space-key-value-gap-xmtv08:0px;
  --space-layout-content-bottom-6h9urw:16px;
  --space-layout-toggle-padding-mgz0u7:16px;
  --space-modal-content-bottom-jf04k3:16px;
  --space-panel-side-left-f4trxi:24px;
  --space-panel-side-right-5u66nh:24px;
  --space-tabs-content-top-qqb5pb:12px;
  --space-table-embedded-header-top-hxr64p:8px;
  --space-table-header-tools-bottom-quuidt:2px;
  --space-scaled-2x-xxs-mfdb10:0px;
  --space-scaled-2x-m-rh97jh:8px;
  --space-scaled-2x-l-ik0kek:12px;
  --space-scaled-2x-xl-g1o31j:16px;
  --space-scaled-2x-xxxl-4usad4:24px;
  --space-scaled-xxxs-emyscj:0px;
  --space-scaled-xxs-ugy2pw:2px;
  --space-scaled-xs-u0e7ft:4px;
  --space-scaled-s-gczsk7:8px;
  --space-scaled-m-9q5ipc:12px;
  --space-scaled-l-x5pubp:16px;
  --space-scaled-xl-ozgbvg:20px;
  --space-scaled-xxl-v4jc9u:24px;
  --space-scaled-xxxl-kyg1bf:32px;
}

.awsui-motion-disabled:not(#\9) {
  --motion-duration-extra-slow-vamr5b:0ms;
  --motion-duration-fast-pml190:0ms;
  --motion-duration-moderate-bggcsm:0ms;
  --motion-duration-refresh-only-fast-n43vlu:0ms;
  --motion-duration-refresh-only-medium-af0v35:0ms;
  --motion-duration-refresh-only-slow-uid2xp:0ms;
  --motion-duration-rotate-180-i3ygzg:0ms;
  --motion-duration-rotate-90-1zdthq:0ms;
  --motion-duration-show-paced-1a355f:0ms;
  --motion-duration-show-quick-b6n9lb:0ms;
  --motion-duration-slow-mz6oyq:0ms;
  --motion-duration-transition-quick-dm1zcq:0ms;
  --motion-duration-transition-show-paced-qcfnau:0ms;
  --motion-duration-transition-show-quick-6dpisk:0ms;
  --motion-duration-responsive-omyop9:0ms;
  --motion-duration-expressive-ocxint:0ms;
  --motion-duration-complex-rkf59l:0ms;
}

.awsui-context-compact-table:not(#\9) {
  --size-vertical-input-18ku63:28px;
  --space-alert-vertical-8r7n6v:8px;
  --space-button-modal-dismiss-vertical-17om1h:2px;
  --space-card-vertical-k85wjn:16px;
  --space-container-content-top-smfayu:12px;
  --space-container-header-top-isuu42:8px;
  --space-container-header-bottom-7poudk:8px;
  --space-content-header-padding-bottom-lycl1l:12px;
  --space-expandable-section-icon-offset-top-om84w8:4px;
  --space-key-value-gap-xmtv08:0px;
  --space-layout-content-bottom-6h9urw:16px;
  --space-layout-toggle-padding-mgz0u7:16px;
  --space-modal-content-bottom-jf04k3:16px;
  --space-panel-side-left-f4trxi:24px;
  --space-panel-side-right-5u66nh:24px;
  --space-tabs-content-top-qqb5pb:12px;
  --space-table-embedded-header-top-hxr64p:8px;
  --space-table-header-tools-bottom-quuidt:2px;
  --space-scaled-xxxs-emyscj:0px;
  --space-scaled-xxs-ugy2pw:2px;
  --space-scaled-xs-u0e7ft:4px;
  --space-scaled-s-gczsk7:8px;
  --space-scaled-m-9q5ipc:12px;
  --space-scaled-l-x5pubp:16px;
  --space-scaled-xl-ozgbvg:20px;
  --space-scaled-xxl-v4jc9u:24px;
  --space-scaled-xxxl-kyg1bf:32px;
}

.awsui-context-top-navigation:not(#\9) {
  --color-background-badge-icon-4mo0wt:#ff5d64;
  --color-background-button-link-active-34rko8:#16191f;
  --color-background-button-link-hover-jv3f2k:#21252c;
  --color-background-button-normal-active-czecy2:#16191f;
  --color-background-button-normal-default-r433m6:#2a2e33;
  --color-background-button-normal-disabled-ejdxb1:#2a2e33;
  --color-background-button-normal-hover-afg7z9:#21252c;
  --color-background-button-primary-active-qjb1np:#44b9d6;
  --color-background-button-primary-default-zz5irg:#44b9d6;
  --color-background-button-primary-disabled-2w63xd:#2a2e33;
  --color-background-button-primary-hover-c6t12k:#00a1c9;
  --color-background-calendar-today-x6vg6n:#16191f;
  --color-background-cell-shaded-gppcg5:#16191f;
  --color-background-code-editor-gutter-active-line-default-52tgix:#879596;
  --color-background-code-editor-gutter-active-line-error-kbld3k:#ff5d64;
  --color-background-code-editor-gutter-default-ria8z9:#21252c;
  --color-background-code-editor-loading-fmqmbg:#21252c;
  --color-background-code-editor-pane-item-hover-uw1s87:#414750;
  --color-background-code-editor-status-bar-8oe90a:#21252c;
  --color-background-container-content-pb0lp5:#232f3e;
  --color-background-container-header-pmlnr3:#21252c;
  --color-background-control-checked-q75knx:#00a1c9;
  --color-background-control-default-x4w3j0:#1a2029;
  --color-background-control-disabled-vkotqk:#414750;
  --color-background-dropdown-item-default-2p2g22:#232f3e;
  --color-background-dropdown-item-filter-match-ugvt1w:#12293b;
  --color-background-dropdown-item-hover-6qhcjz:#414750;
  --color-background-dropdown-item-selected-pz82cn:#12293b;
  --color-background-input-default-66bx4w:#1a2029;
  --color-background-input-disabled-0azib6:#414750;
  --color-background-item-selected-8e1q8b:#12293b;
  --color-background-layout-main-okygtx:#16191f;
  --color-background-layout-mobile-panel-1g9iiz:#232f3e;
  --color-background-layout-panel-content-qv5yhf:#232f3e;
  --color-background-layout-panel-hover-mcickn:#414750;
  --color-background-layout-toggle-selected-active-3nl5wx:#00a1c9;
  --color-background-layout-toggle-selected-default-rx4hqe:#44b9d6;
  --color-background-layout-toggle-selected-hover-9gel8c:#44b9d6;
  --color-background-modal-overlay-rsidw7:rgba(22, 25, 31, 0.8);
  --color-background-notification-grey-iechs6:#687078;
  --color-background-popover-ft56xl:#21252c;
  --color-background-progress-bar-content-default-hbebrl:#00a1c9;
  --color-background-progress-bar-content-in-flash-v3roh6:#fafafa;
  --color-background-progress-bar-layout-default-n7v8t0:#414750;
  --color-background-segment-active-d8q9iy:#00a1c9;
  --color-background-segment-default-9ooxg1:#2a2e33;
  --color-background-segment-disabled-log6bm:#2a2e33;
  --color-background-segment-hover-tvysh8:#2a2e33;
  --color-background-status-error-zzlt4q:#270a11;
  --color-background-status-info-nlr7o9:#12293b;
  --color-background-status-success-97x61g:#172211;
  --color-background-status-warning-iv51lc:#1d1906;
  --color-background-table-header-d4x481:#21252c;
  --color-background-tiles-disabled-f3fyva:#2a2e33;
  --color-background-toggle-checked-disabled-o63zu0:#0a4a74;
  --color-background-toggle-default-six3cw:#879596;
  --color-border-button-normal-active-zrx2x0:#879596;
  --color-border-button-normal-default-a1f0ud:#879596;
  --color-border-button-normal-disabled-2z1mk8:#414750;
  --color-border-button-normal-hover-j7d6r6:#aab7b8;
  --color-border-button-primary-disabled-oe36ny:#414750;
  --color-border-calendar-grid-bl278b:#414750;
  --color-border-calendar-grid-selected-focus-ring-9q7e5h:#00a1c9;
  --color-border-code-editor-default-ovjs83:#687078;
  --color-border-code-editor-pane-item-hover-gk4v4i:#879596;
  --color-border-container-divider-4z4y7u:#414750;
  --color-border-container-top-ige66g:#2a2e33;
  --color-border-control-checked-tl007y:#00a1c9;
  --color-border-control-default-1igjc0:#879596;
  --color-border-control-disabled-n4rl6j:#414750;
  --color-border-divider-default-1mmknt:#414750;
  --color-border-divider-panel-bottom-r9jdco:rgba(0, 0, 0, 0.3);
  --color-border-dropdown-group-u3qa6a:#414750;
  --color-border-dropdown-item-default-062h8i:#414750;
  --color-border-dropdown-item-top-l8o9uk:#414750;
  --color-border-input-default-sm4mjn:#879596;
  --color-border-input-disabled-73z8co:#414750;
  --color-border-item-focused-t884ih:#00a1c9;
  --color-border-item-selected-bmiwgz:#00a1c9;
  --color-border-layout-6apkl4:#414750;
  --color-border-popover-p8haek:#545b64;
  --color-border-segment-active-w8feiw:#ffffff;
  --color-border-segment-default-yqxei2:#879596;
  --color-border-segment-disabled-6zsba4:#414750;
  --color-border-segment-hover-0dlw9k:#ffffff;
  --color-border-status-info-uwhmay:#00a1c9;
  --color-border-status-warning-p1qx7d:#e0ca57;
  --color-border-tabs-divider-ol648v:#414750;
  --color-border-tabs-shadow-k1zhjd:rgba(0, 0, 0, 0.3);
  --color-border-tabs-underline-uahgcp:#fafafa;
  --color-border-tiles-disabled-10gnrm:#414750;
  --color-border-tutorial-d7429l:#879596;
  --color-foreground-control-disabled-4rcx89:#687078;
  --color-shadow-default-4md8jt:rgba(0, 0, 0, 0.5);
  --color-text-accent-qe8oro:#44b9d6;
  --color-text-body-default-rlujvh:#d5dbdb;
  --color-text-body-secondary-bgqgd0:#d5dbdb;
  --color-text-breadcrumb-current-nu3iko:#d5dbdb;
  --color-text-button-inline-icon-default-buw7w7:#d5dbdb;
  --color-text-button-inline-icon-disabled-phk84s:#687078;
  --color-text-button-inline-icon-hover-0pwsg2:#fafafa;
  --color-text-button-normal-active-v6nfdh:#fafafa;
  --color-text-button-normal-default-eqebde:#d5dbdb;
  --color-text-button-normal-hover-bk2x1u:#fafafa;
  --color-text-link-button-normal-default-x8uncu:#d5dbdb;
  --color-text-link-button-normal-hover-hm6g27:#fafafa;
  --color-text-link-button-normal-active-8cfe84:#fafafa;
  --color-text-button-primary-active-0k4v93:#16191f;
  --color-text-button-primary-default-6dta4b:#16191f;
  --color-text-button-primary-hover-fk4ryc:#16191f;
  --color-text-calendar-day-hover-06fz50:#eaeded;
  --color-text-calendar-month-axtdn0:#d5dbdb;
  --color-text-code-editor-gutter-active-line-qjn6d7:#16191f;
  --color-text-code-editor-gutter-default-ml5ea9:#d5dbdb;
  --color-text-code-editor-status-bar-disabled-izcnps:#687078;
  --color-text-code-editor-tab-button-error-el5pk3:#16191f;
  --color-text-column-header-nhdjo5:#95a5a6;
  --color-text-column-sorting-icon-jjivph:#95a5a6;
  --color-text-control-disabled-9r7x35:#687078;
  --color-text-counter-001jjm:#95a5a6;
  --color-text-disabled-tmkonv:#687078;
  --color-text-dropdown-footer-349c2x:#95a5a6;
  --color-text-dropdown-group-label-ihg7kk:#95a5a6;
  --color-text-dropdown-header-90kv5m:#fafafa;
  --color-text-dropdown-item-default-wx27oj:#d5dbdb;
  --color-text-dropdown-item-dimmed-94uait:#687078;
  --color-text-dropdown-item-disabled-g9c04k:#687078;
  --color-text-dropdown-item-filter-match-qs8rft:#44b9d6;
  --color-text-dropdown-item-highlighted-t48eqn:#eaeded;
  --color-text-dropdown-item-secondary-tbkgco:#95a5a6;
  --color-text-dropdown-item-secondary-hover-91iztt:#d5dbdb;
  --color-text-empty-79ttcu:#d5dbdb;
  --color-text-expandable-section-default-yax29s:#d5dbdb;
  --color-text-expandable-section-hover-th9u3f:#fafafa;
  --color-text-expandable-section-navigation-icon-default-bniq5i:#95a5a6;
  --color-text-form-default-agajwv:#d5dbdb;
  --color-text-form-label-ug2d1t:#d5dbdb;
  --color-text-form-secondary-wh2xkx:#95a5a6;
  --color-text-group-label-3l0dih:#95a5a6;
  --color-text-heading-default-p5akhh:#eaeded;
  --color-text-heading-secondary-jkk2pc:#d5dbdb;
  --color-text-home-header-default-4ixpxi:#eaeded;
  --color-text-icon-subtle-fzoo43:#aab7b8;
  --color-text-input-disabled-26hyji:#687078;
  --color-text-input-placeholder-vi9sh8:#879596;
  --color-text-input-placeholder-disabled-1lvfii:#879596;
  --color-text-interactive-active-j3cxbp:#fafafa;
  --color-text-interactive-default-djvtmz:#d5dbdb;
  --color-text-interactive-disabled-k4q23b:#687078;
  --color-text-interactive-hover-55cagk:#fafafa;
  --color-text-inverted-obwu99:#16191f;
  --color-text-label-ezn36c:#95a5a6;
  --color-text-layout-toggle-gxpm7t:#d5dbdb;
  --color-text-layout-toggle-active-9lot34:#1a2029;
  --color-text-layout-toggle-hover-pyp0b8:#00a1c9;
  --color-text-layout-toggle-selected-gjgi5r:#16191f;
  --color-text-link-default-lwrgyu:#44b9d6;
  --color-text-link-hover-kmrtvm:#99cbe4;
  --color-text-pagination-page-number-active-disabled-wuw3oo:#d5dbdb;
  --color-text-pagination-page-number-default-qvdjdy:#d5dbdb;
  --color-text-segment-active-j9wjrk:#1a2029;
  --color-text-segment-default-uylum7:#d5dbdb;
  --color-text-segment-hover-7mglzi:#00a1c9;
  --color-text-small-bbucjz:#95a5a6;
  --color-text-status-error-a5tqz1:#ff5d64;
  --color-text-status-inactive-8fmnw5:#95a5a6;
  --color-text-status-info-lfbxn4:#44b9d6;
  --color-text-status-success-a6oxaq:#6aaf35;
  --color-text-status-warning-g3wln0:#e0ca57;
  --color-text-top-navigation-title-bo5eb6:#fafafa;
  --color-board-placeholder-active-r0ywv2:#687078;
  --color-board-placeholder-hover-hbn672:#0073bb;
  --color-drag-placeholder-active-tcno63:#687078;
  --color-drag-placeholder-hover-8lb5mf:#0073bb;
  --color-dropzone-background-active-2eefhd:#687078;
  --color-dropzone-background-hover-022hgn:#0073bb;
  --color-dropzone-text-active-j474oi:#16191f;
  --color-dropzone-text-hover-rfgx5p:#ffffff;
}

.awsui-context-flashbar:not(#\9) {
  --color-border-calendar-grid-bl278b:#fafafa;
  --color-border-calendar-grid-selected-focus-ring-9q7e5h:#fafafa;
  --color-border-container-divider-4z4y7u:#fafafa;
  --color-border-divider-default-1mmknt:#fafafa;
  --color-border-dropdown-group-u3qa6a:#fafafa;
  --color-border-dropdown-item-default-062h8i:#fafafa;
  --color-border-dropdown-item-top-l8o9uk:#fafafa;
  --color-border-item-focused-t884ih:#fafafa;
  --color-border-tabs-shadow-k1zhjd:#fafafa;
  --color-text-body-default-rlujvh:#fafafa;
  --color-text-expandable-section-default-yax29s:#fafafa;
  --color-text-expandable-section-hover-th9u3f:#fafafa;
  --color-text-heading-secondary-jkk2pc:#fafafa;
}

.awsui-context-flashbar-warning:not(#\9) {
  --color-border-calendar-grid-bl278b:#16191f;
  --color-border-calendar-grid-selected-focus-ring-9q7e5h:#16191f;
  --color-border-container-divider-4z4y7u:#16191f;
  --color-border-divider-default-1mmknt:#16191f;
  --color-border-dropdown-group-u3qa6a:#16191f;
  --color-border-dropdown-item-default-062h8i:#16191f;
  --color-border-dropdown-item-top-l8o9uk:#16191f;
  --color-border-item-focused-t884ih:#16191f;
  --color-border-tabs-shadow-k1zhjd:#16191f;
  --color-text-expandable-section-default-yax29s:#16191f;
  --color-text-heading-secondary-jkk2pc:#16191f;
  --color-text-interactive-inverted-default-mrgn6e:#545b64;
  --color-text-interactive-inverted-hover-qliijo:#16191f;
  --color-text-link-inverted-hover-o3xt6o:#16191f;
  --color-text-notification-default-d9f7z3:#16191f;
}

.awsui-context-alert:not(#\9) {
  --color-border-calendar-grid-bl278b:#545b64;
  --color-border-container-divider-4z4y7u:#545b64;
  --color-border-divider-default-1mmknt:#545b64;
  --color-border-dropdown-group-u3qa6a:#545b64;
  --color-border-dropdown-item-default-062h8i:#545b64;
  --color-border-dropdown-item-top-l8o9uk:#545b64;
  --color-border-tabs-shadow-k1zhjd:#545b64;
}

@media not print {
  .awsui-dark-mode .awsui-context-flashbar:not(#\9) {
    --color-border-tabs-shadow-k1zhjd:rgba(0, 0, 0, 0.3);
  }
}
@media not print {
  .awsui-context-flashbar.awsui-dark-mode:not(#\9) {
    --color-border-tabs-shadow-k1zhjd:rgba(0, 0, 0, 0.3);
  }
}
@media not print {
  .awsui-dark-mode .awsui-context-flashbar-warning:not(#\9) {
    --color-border-tabs-shadow-k1zhjd:rgba(0, 0, 0, 0.3);
    --color-text-body-default-rlujvh:#16191f;
    --color-text-expandable-section-hover-th9u3f:#16191f;
  }
}
@media not print {
  .awsui-context-flashbar-warning.awsui-dark-mode:not(#\9) {
    --color-border-tabs-shadow-k1zhjd:rgba(0, 0, 0, 0.3);
    --color-text-body-default-rlujvh:#16191f;
    --color-text-expandable-section-hover-th9u3f:#16191f;
  }
}
@media not print {
  .awsui-dark-mode .awsui-context-alert:not(#\9) {
    --color-border-calendar-grid-bl278b:#d5dbdb;
    --color-border-container-divider-4z4y7u:#d5dbdb;
    --color-border-divider-default-1mmknt:#d5dbdb;
    --color-border-dropdown-group-u3qa6a:#d5dbdb;
    --color-border-dropdown-item-default-062h8i:#d5dbdb;
    --color-border-dropdown-item-top-l8o9uk:#d5dbdb;
    --color-border-tabs-shadow-k1zhjd:rgba(0, 0, 0, 0.3);
  }
}
@media not print {
  .awsui-context-alert.awsui-dark-mode:not(#\9) {
    --color-border-calendar-grid-bl278b:#d5dbdb;
    --color-border-container-divider-4z4y7u:#d5dbdb;
    --color-border-divider-default-1mmknt:#d5dbdb;
    --color-border-dropdown-group-u3qa6a:#d5dbdb;
    --color-border-dropdown-item-default-062h8i:#d5dbdb;
    --color-border-dropdown-item-top-l8o9uk:#d5dbdb;
    --color-border-tabs-shadow-k1zhjd:rgba(0, 0, 0, 0.3);
  }
}
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
@keyframes awsui-fade-in-35003c {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes awsui-fade-out-35003c {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*//*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable selector-max-universal, selector-max-type */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_icon_h11ix_15s3k_98:not(#\9) {
  position: relative;
  display: inline-block;
  vertical-align: top;
  /* stylelint-disable-next-line selector-max-type */
}
.awsui_icon-flex-height_h11ix_15s3k_104:not(#\9) {
  display: inline-flex;
  align-items: center;
}
.awsui_icon_h11ix_15s3k_98 > svg:not(#\9) {
  pointer-events: none;
}
.awsui_icon_h11ix_15s3k_98 > svg:not(#\9) {
  fill: none;
}
.awsui_icon_h11ix_15s3k_98 > svg *:not(#\9) {
  stroke: currentColor;
}
.awsui_icon_h11ix_15s3k_98 > svg .stroke-linejoin-round:not(#\9) {
  stroke-linejoin: round;
}
.awsui_icon_h11ix_15s3k_98 > svg .stroke-linecap-square:not(#\9) {
  stroke-linecap: square;
}
.awsui_icon_h11ix_15s3k_98 > svg .stroke-linecap-round:not(#\9) {
  stroke-linecap: round;
}
.awsui_icon_h11ix_15s3k_98 > svg .filled:not(#\9) {
  fill: currentColor;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-small_h11ix_15s3k_129:not(#\9) {
  width: var(--size-icon-normal-as5jb3, 16px);
  box-sizing: border-box;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-small-mapped-height_h11ix_15s3k_133:not(#\9) {
  height: var(--line-height-body-s-lnbzsa, 16px);
  padding: calc((var(--line-height-body-s-lnbzsa, 16px) - var(--size-icon-normal-as5jb3, 16px)) / 2) 0;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-small_h11ix_15s3k_129 > svg:not(#\9),
.awsui_icon_h11ix_15s3k_98.awsui_size-small_h11ix_15s3k_129 > img:not(#\9) {
  width: var(--size-icon-normal-as5jb3, 16px);
  height: var(--size-icon-normal-as5jb3, 16px);
  vertical-align: top;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-small_h11ix_15s3k_129 > svg:not(#\9),
.awsui_icon_h11ix_15s3k_98.awsui_size-small_h11ix_15s3k_129 > svg *:not(#\9) {
  stroke-width: 2px;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-normal_h11ix_15s3k_147:not(#\9) {
  width: var(--size-icon-normal-as5jb3, 16px);
  box-sizing: border-box;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-normal-mapped-height_h11ix_15s3k_151:not(#\9) {
  height: var(--line-height-body-m-4ax85e, 22px);
  padding: calc((var(--line-height-body-m-4ax85e, 22px) - var(--size-icon-normal-as5jb3, 16px)) / 2) 0;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-normal_h11ix_15s3k_147 > svg:not(#\9),
.awsui_icon_h11ix_15s3k_98.awsui_size-normal_h11ix_15s3k_147 > img:not(#\9) {
  width: var(--size-icon-normal-as5jb3, 16px);
  height: var(--size-icon-normal-as5jb3, 16px);
  vertical-align: top;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-normal_h11ix_15s3k_147 > svg:not(#\9),
.awsui_icon_h11ix_15s3k_98.awsui_size-normal_h11ix_15s3k_147 > svg *:not(#\9) {
  stroke-width: 2px;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-medium_h11ix_15s3k_165:not(#\9) {
  width: var(--size-icon-medium-d9rdun, 16px);
  box-sizing: border-box;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-medium-mapped-height_h11ix_15s3k_169:not(#\9) {
  height: var(--line-height-heading-l-z752l3, 22px);
  padding: calc((var(--line-height-heading-l-z752l3, 22px) - var(--size-icon-medium-d9rdun, 16px)) / 2) 0;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-medium_h11ix_15s3k_165 > svg:not(#\9),
.awsui_icon_h11ix_15s3k_98.awsui_size-medium_h11ix_15s3k_165 > img:not(#\9) {
  width: var(--size-icon-medium-d9rdun, 16px);
  height: var(--size-icon-medium-d9rdun, 16px);
  vertical-align: top;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-medium_h11ix_15s3k_165 > svg:not(#\9),
.awsui_icon_h11ix_15s3k_98.awsui_size-medium_h11ix_15s3k_165 > svg *:not(#\9) {
  stroke-width: 2px;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-big_h11ix_15s3k_183:not(#\9) {
  width: var(--size-icon-big-rl4tdi, 32px);
  box-sizing: border-box;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-big-mapped-height_h11ix_15s3k_187:not(#\9) {
  height: var(--line-height-heading-xl-44izce, 36px);
  padding: calc((var(--line-height-heading-xl-44izce, 36px) - var(--size-icon-big-rl4tdi, 32px)) / 2) 0;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-big_h11ix_15s3k_183 > svg:not(#\9),
.awsui_icon_h11ix_15s3k_98.awsui_size-big_h11ix_15s3k_183 > img:not(#\9) {
  width: var(--size-icon-big-rl4tdi, 32px);
  height: var(--size-icon-big-rl4tdi, 32px);
  vertical-align: top;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-big_h11ix_15s3k_183 > svg:not(#\9),
.awsui_icon_h11ix_15s3k_98.awsui_size-big_h11ix_15s3k_183 > svg *:not(#\9) {
  stroke-width: 2px;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-large_h11ix_15s3k_201:not(#\9) {
  width: var(--size-icon-large-x6jwev, 48px);
  box-sizing: border-box;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-large-mapped-height_h11ix_15s3k_205:not(#\9) {
  height: var(--line-height-display-l-aqze16, 56px);
  padding: calc((var(--line-height-display-l-aqze16, 56px) - var(--size-icon-large-x6jwev, 48px)) / 2) 0;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-large_h11ix_15s3k_201 > svg:not(#\9),
.awsui_icon_h11ix_15s3k_98.awsui_size-large_h11ix_15s3k_201 > img:not(#\9) {
  width: var(--size-icon-large-x6jwev, 48px);
  height: var(--size-icon-large-x6jwev, 48px);
  vertical-align: top;
}
.awsui_icon_h11ix_15s3k_98.awsui_size-large_h11ix_15s3k_201 > svg:not(#\9),
.awsui_icon_h11ix_15s3k_98.awsui_size-large_h11ix_15s3k_201 > svg *:not(#\9) {
  stroke-width: 1.2px;
}
.awsui_icon_h11ix_15s3k_98.awsui_variant-normal_h11ix_15s3k_219:not(#\9) {
  color: currentColor;
}
.awsui_icon_h11ix_15s3k_98.awsui_variant-disabled_h11ix_15s3k_222:not(#\9) {
  color: var(--color-text-interactive-disabled-k4q23b, #aab7b8);
}
.awsui_icon_h11ix_15s3k_98.awsui_variant-inverted_h11ix_15s3k_225:not(#\9) {
  color: var(--color-text-inverted-obwu99, #ffffff);
}
.awsui_icon_h11ix_15s3k_98.awsui_variant-subtle_h11ix_15s3k_228:not(#\9) {
  color: var(--color-text-icon-subtle-fzoo43, #687078);
}
.awsui_icon_h11ix_15s3k_98.awsui_variant-warning_h11ix_15s3k_231:not(#\9) {
  color: var(--color-text-status-warning-g3wln0, #906806);
}
.awsui_icon_h11ix_15s3k_98.awsui_variant-error_h11ix_15s3k_234:not(#\9) {
  color: var(--color-text-status-error-a5tqz1, #d13212);
}
.awsui_icon_h11ix_15s3k_98.awsui_variant-success_h11ix_15s3k_237:not(#\9) {
  color: var(--color-text-status-success-a6oxaq, #1d8102);
}
.awsui_icon_h11ix_15s3k_98.awsui_variant-link_h11ix_15s3k_240:not(#\9) {
  color: var(--color-text-link-default-lwrgyu, #0073bb);
}

.awsui_badge_h11ix_15s3k_244:not(#\9)::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 4px;
  background-color: var(--color-background-badge-icon-4mo0wt, #d13212);
  top: 0px;
  right: -3px;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
@keyframes awsui_spinner-rotator_1612d_z0eew_1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes awsui_spinner-line-left_1612d_z0eew_1 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(120deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes awsui_spinner-line-right_1612d_z0eew_1 {
  0% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(-30deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
.awsui_root_1612d_z0eew_127:not(#\9) {
  display: inline-block;
  vertical-align: top;
  /*stylelint-disable-next-line @awsui/no-motion-outside-of-mixin */
  animation: awsui_spinner-rotator_1612d_z0eew_1 0.7s linear infinite;
  box-sizing: border-box;
  line-height: 0;
}
.awsui_root_1612d_z0eew_127.awsui_size-normal_1612d_z0eew_135:not(#\9) {
  width: var(--size-icon-normal-as5jb3, 16px);
  height: var(--size-icon-normal-as5jb3, 16px);
  padding: calc((var(--size-icon-normal-as5jb3, 16px) - 12px) / 2);
  margin-top: calc((var(--line-height-body-m-4ax85e, 22px) - var(--size-icon-normal-as5jb3, 16px)) / 2);
  margin-bottom: calc((var(--line-height-body-m-4ax85e, 22px) - var(--size-icon-normal-as5jb3, 16px)) / 2);
  box-sizing: border-box;
}
.awsui_root_1612d_z0eew_127.awsui_size-big_1612d_z0eew_143:not(#\9) {
  width: var(--size-icon-big-rl4tdi, 32px);
  height: var(--size-icon-big-rl4tdi, 32px);
  padding: calc((var(--size-icon-big-rl4tdi, 32px) - 24px) / 2);
  margin-top: calc((var(--line-height-heading-xl-44izce, 36px) - var(--size-icon-big-rl4tdi, 32px)) / 2);
  margin-bottom: calc((var(--line-height-heading-xl-44izce, 36px) - var(--size-icon-big-rl4tdi, 32px)) / 2);
  box-sizing: border-box;
}
.awsui_root_1612d_z0eew_127.awsui_size-large_1612d_z0eew_151:not(#\9) {
  width: var(--size-icon-large-x6jwev, 48px);
  height: var(--size-icon-large-x6jwev, 48px);
  padding: calc((var(--size-icon-large-x6jwev, 48px) - 36px) / 2);
  margin-top: calc((var(--line-height-display-l-aqze16, 56px) - var(--size-icon-large-x6jwev, 48px)) / 2);
  margin-bottom: calc((var(--line-height-display-l-aqze16, 56px) - var(--size-icon-large-x6jwev, 48px)) / 2);
  box-sizing: border-box;
}
.awsui_root_1612d_z0eew_127.awsui_variant-normal_1612d_z0eew_159:not(#\9) {
  color: currentColor;
}
.awsui_root_1612d_z0eew_127.awsui_variant-disabled_1612d_z0eew_162:not(#\9) {
  color: var(--color-text-interactive-disabled-k4q23b, #aab7b8);
}
.awsui_root_1612d_z0eew_127.awsui_variant-inverted_1612d_z0eew_165:not(#\9) {
  color: var(--color-text-inverted-obwu99, #ffffff);
}

.awsui_circle_1612d_z0eew_169:not(#\9) {
  display: inline-block;
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.awsui_circle_1612d_z0eew_169:not(#\9):after {
  position: absolute;
  box-sizing: border-box;
  content: "";
  border-radius: 50%;
  border: 2px solid;
  border-right-color: transparent;
  border-bottom-color: transparent;
}
.awsui_circle_1612d_z0eew_169:not(#\9):after {
  /*stylelint-disable-next-line @awsui/no-motion-outside-of-mixin */
  animation: 1.5s ease-in-out infinite;
  top: 0;
  left: 0;
  height: 100%;
  width: 200%;
}
.awsui_circle_1612d_z0eew_169.awsui_circle-left_1612d_z0eew_193:not(#\9):after {
  left: 0;
  /*stylelint-disable-next-line @awsui/no-motion-outside-of-mixin */
  animation-name: awsui_spinner-line-left_1612d_z0eew_1;
}
.awsui_circle_1612d_z0eew_169.awsui_circle-right_1612d_z0eew_198:not(#\9):after {
  left: -100%;
  /*stylelint-disable-next-line @awsui/no-motion-outside-of-mixin */
  animation-name: awsui_spinner-line-right_1612d_z0eew_1;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_xttbq_1i4dh_93:not(#\9) {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_3bgfn_im8v7_5:not(#\9) {
  /* used in test-utils */
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_18wu0_1nckn_93:not(#\9) {
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

/* stylelint-disable no-invalid-position-at-import-rule */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-implicit-descendant */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-implicit-descendant */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-implicit-descendant */
.awsui_box_18wu0_1nckn_207.awsui_p-variant_18wu0_1nckn_207.awsui_color-default_18wu0_1nckn_207:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_b-variant_18wu0_1nckn_207.awsui_color-default_18wu0_1nckn_207:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_strong-variant_18wu0_1nckn_207.awsui_color-default_18wu0_1nckn_207:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_code-variant_18wu0_1nckn_207.awsui_color-default_18wu0_1nckn_207:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_pre-variant_18wu0_1nckn_207.awsui_color-default_18wu0_1nckn_207:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_samp-variant_18wu0_1nckn_207.awsui_color-default_18wu0_1nckn_207:not(#\9) {
  color: var(--color-text-body-default-rlujvh, #16191f);
}

.awsui_box_18wu0_1nckn_207.awsui_h1-variant_18wu0_1nckn_211.awsui_color-default_18wu0_1nckn_207:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_h2-variant_18wu0_1nckn_211.awsui_color-default_18wu0_1nckn_207:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_h3-variant_18wu0_1nckn_211.awsui_color-default_18wu0_1nckn_207:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_h4-variant_18wu0_1nckn_211.awsui_color-default_18wu0_1nckn_207:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_h5-variant_18wu0_1nckn_211.awsui_color-default_18wu0_1nckn_207:not(#\9) {
  color: var(--color-text-heading-default-p5akhh, #16191f);
}

.awsui_box_18wu0_1nckn_207.awsui_small-variant_18wu0_1nckn_215.awsui_color-default_18wu0_1nckn_207:not(#\9) {
  color: var(--color-text-small-bbucjz, #687078);
}

.awsui_box_18wu0_1nckn_207.awsui_a-variant_18wu0_1nckn_219.awsui_color-default_18wu0_1nckn_207:not(#\9) {
  color: var(--color-text-link-default-lwrgyu, #0073bb);
}

.awsui_box_18wu0_1nckn_207.awsui_small-variant_18wu0_1nckn_215.awsui_font-size-default_18wu0_1nckn_223:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_code-variant_18wu0_1nckn_207.awsui_font-size-default_18wu0_1nckn_223:not(#\9) {
  font-size: var(--font-size-body-s-ucr7d6, 12px);
  line-height: var(--line-height-body-s-lnbzsa, 16px);
  letter-spacing: var(--letter-spacing-body-s-rksemx, normal);
}

.awsui_box_18wu0_1nckn_207.awsui_p-variant_18wu0_1nckn_207.awsui_font-size-default_18wu0_1nckn_223:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_b-variant_18wu0_1nckn_207.awsui_font-size-default_18wu0_1nckn_223:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_strong-variant_18wu0_1nckn_207.awsui_font-size-default_18wu0_1nckn_223:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_pre-variant_18wu0_1nckn_207.awsui_font-size-default_18wu0_1nckn_223:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_samp-variant_18wu0_1nckn_207.awsui_font-size-default_18wu0_1nckn_223:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_a-variant_18wu0_1nckn_219.awsui_font-size-default_18wu0_1nckn_223:not(#\9) {
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
}

.awsui_box_18wu0_1nckn_207.awsui_h5-variant_18wu0_1nckn_211.awsui_font-size-default_18wu0_1nckn_223:not(#\9) {
  font-size: var(--font-size-heading-xs-4u3wan, 16px);
  line-height: var(--line-height-heading-xs-au4jub, 20px);
}

.awsui_box_18wu0_1nckn_207.awsui_h4-variant_18wu0_1nckn_211.awsui_font-size-default_18wu0_1nckn_223:not(#\9) {
  font-size: var(--font-size-heading-s-hwcx2q, 16px);
  line-height: var(--line-height-heading-s-m093oq, 20px);
  letter-spacing: var(--letter-spacing-heading-s-2369b0, normal);
}

.awsui_box_18wu0_1nckn_207.awsui_h3-variant_18wu0_1nckn_211.awsui_font-size-default_18wu0_1nckn_223:not(#\9) {
  font-size: var(--font-size-heading-m-ulervk, 18px);
  line-height: var(--line-height-heading-m-88a3m6, 22px);
  letter-spacing: var(--letter-spacing-heading-m-9g78ia, normal);
}

.awsui_box_18wu0_1nckn_207.awsui_h2-variant_18wu0_1nckn_211.awsui_font-size-default_18wu0_1nckn_223:not(#\9) {
  font-size: var(--font-size-heading-l-u89ro8, 18px);
  line-height: var(--line-height-heading-l-z752l3, 22px);
  letter-spacing: var(--letter-spacing-heading-l-v8uzhr, normal);
}

.awsui_box_18wu0_1nckn_207.awsui_h1-variant_18wu0_1nckn_211.awsui_font-size-default_18wu0_1nckn_223:not(#\9) {
  font-size: var(--font-size-heading-xl-z8h967, 28px);
  line-height: var(--line-height-heading-xl-44izce, 36px);
  letter-spacing: var(--letter-spacing-heading-xl-y4tqgw, normal);
}

.awsui_box_18wu0_1nckn_207.awsui_p-variant_18wu0_1nckn_207.awsui_font-weight-default_18wu0_1nckn_263:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_code-variant_18wu0_1nckn_207.awsui_font-weight-default_18wu0_1nckn_263:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_pre-variant_18wu0_1nckn_207.awsui_font-weight-default_18wu0_1nckn_263:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_samp-variant_18wu0_1nckn_207.awsui_font-weight-default_18wu0_1nckn_263:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_small-variant_18wu0_1nckn_215.awsui_font-weight-default_18wu0_1nckn_263:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_a-variant_18wu0_1nckn_219.awsui_font-weight-default_18wu0_1nckn_263:not(#\9) {
  font-weight: 400;
}

.awsui_box_18wu0_1nckn_207.awsui_strong-variant_18wu0_1nckn_207.awsui_font-weight-default_18wu0_1nckn_263:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_b-variant_18wu0_1nckn_207.awsui_font-weight-default_18wu0_1nckn_263:not(#\9) {
  font-weight: 700;
}

.awsui_box_18wu0_1nckn_207.awsui_h5-variant_18wu0_1nckn_211.awsui_font-weight-default_18wu0_1nckn_263:not(#\9) {
  font-weight: var(--font-weight-heading-xs-yzr1e0, 400);
}

.awsui_box_18wu0_1nckn_207.awsui_h4-variant_18wu0_1nckn_211.awsui_font-weight-default_18wu0_1nckn_263:not(#\9) {
  font-weight: var(--font-weight-heading-s-hg02sg, 700);
}

.awsui_box_18wu0_1nckn_207.awsui_h3-variant_18wu0_1nckn_211.awsui_font-weight-default_18wu0_1nckn_263:not(#\9) {
  font-weight: var(--font-weight-heading-m-ra39kx, 400);
}

.awsui_box_18wu0_1nckn_207.awsui_h2-variant_18wu0_1nckn_211.awsui_font-weight-default_18wu0_1nckn_263:not(#\9) {
  font-weight: var(--font-weight-heading-l-jlzyui, 700);
}

.awsui_box_18wu0_1nckn_207.awsui_h1-variant_18wu0_1nckn_211.awsui_font-weight-default_18wu0_1nckn_263:not(#\9) {
  font-weight: var(--font-weight-heading-xl-2jbc8j, 400);
}

.awsui_box_18wu0_1nckn_207.awsui_h1-variant_18wu0_1nckn_211:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_h2-variant_18wu0_1nckn_211:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_h3-variant_18wu0_1nckn_211:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_h4-variant_18wu0_1nckn_211:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_h5-variant_18wu0_1nckn_211:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_p-variant_18wu0_1nckn_207:not(#\9) {
  margin: 0;
  text-decoration: none;
  padding: var(--space-xxs-a6783b, 4px) 0;
}
.awsui_box_18wu0_1nckn_207.awsui_small-variant_18wu0_1nckn_215:not(#\9) {
  display: inline-block;
}
.awsui_box_18wu0_1nckn_207.awsui_code-variant_18wu0_1nckn_207:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_pre-variant_18wu0_1nckn_207:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_samp-variant_18wu0_1nckn_207:not(#\9) {
  font-family: var(--font-family-monospace-sera44, Monaco, Menlo, Consolas, "Courier Prime", Courier, "Courier New", monospace);
  background: transparent;
}
.awsui_box_18wu0_1nckn_207.awsui_key-label-variant_18wu0_1nckn_303:not(#\9) {
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  font-weight: var(--font-display-label-weight-w2bkol, 400);
  color: var(--color-text-label-ezn36c, #545b64);
  margin-bottom: var(--space-key-value-gap-xmtv08, 2px);
}
.awsui_box_18wu0_1nckn_207.awsui_value-large-variant_18wu0_1nckn_310:not(#\9) {
  font-size: var(--font-size-display-l-ij3zok, 44px);
  line-height: var(--line-height-display-l-aqze16, 56px);
  letter-spacing: var(--letter-spacing-display-l-frfij1, normal);
  font-weight: var(--font-box-value-large-weight-wtv0yd, 300);
  color: inherit;
}
.awsui_box_18wu0_1nckn_207.awsui_h1-variant_18wu0_1nckn_211.awsui_font-weight-default_18wu0_1nckn_263:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_h2-variant_18wu0_1nckn_211.awsui_font-weight-default_18wu0_1nckn_263:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_h3-variant_18wu0_1nckn_211.awsui_font-weight-default_18wu0_1nckn_263:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_h4-variant_18wu0_1nckn_211.awsui_font-weight-default_18wu0_1nckn_263:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_h5-variant_18wu0_1nckn_211.awsui_font-weight-default_18wu0_1nckn_263:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_value-large-variant_18wu0_1nckn_310.awsui_font-weight-default_18wu0_1nckn_263:not(#\9), .awsui_box_18wu0_1nckn_207.awsui_font-weight-heavy_18wu0_1nckn_317:not(#\9) {
  -webkit-font-smoothing: var(--font-smoothing-webkit-rg3jdt, auto);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-58s982, auto);
}

.awsui_box_18wu0_1nckn_207.awsui_color-inverted_18wu0_1nckn_322:not(#\9) {
  color: var(--color-text-notification-default-d9f7z3, #fafafa);
}
.awsui_box_18wu0_1nckn_207.awsui_color-text-label_18wu0_1nckn_325:not(#\9) {
  color: var(--color-text-label-ezn36c, #545b64);
}
.awsui_box_18wu0_1nckn_207.awsui_color-text-body-secondary_18wu0_1nckn_328:not(#\9) {
  color: var(--color-text-body-secondary-bgqgd0, #545b64);
}
.awsui_box_18wu0_1nckn_207.awsui_color-text-status-error_18wu0_1nckn_331:not(#\9) {
  color: var(--color-text-status-error-a5tqz1, #d13212);
}
.awsui_box_18wu0_1nckn_207.awsui_color-text-status-success_18wu0_1nckn_334:not(#\9) {
  color: var(--color-text-status-success-a6oxaq, #1d8102);
}
.awsui_box_18wu0_1nckn_207.awsui_color-text-status-info_18wu0_1nckn_337:not(#\9) {
  color: var(--color-text-status-info-lfbxn4, #0073bb);
}
.awsui_box_18wu0_1nckn_207.awsui_color-text-status-inactive_18wu0_1nckn_340:not(#\9) {
  color: var(--color-text-status-inactive-8fmnw5, #687078);
}
.awsui_box_18wu0_1nckn_207.awsui_color-text-status-warning_18wu0_1nckn_343:not(#\9) {
  color: var(--color-text-status-warning-g3wln0, #906806);
}
.awsui_box_18wu0_1nckn_207.awsui_color-inherit_18wu0_1nckn_346:not(#\9) {
  color: inherit;
}
.awsui_box_18wu0_1nckn_207.awsui_font-size-body-s_18wu0_1nckn_349:not(#\9) {
  font-size: var(--font-size-body-s-ucr7d6, 12px);
  line-height: var(--line-height-body-s-lnbzsa, 16px);
  letter-spacing: var(--letter-spacing-body-s-rksemx, normal);
}
.awsui_box_18wu0_1nckn_207.awsui_font-size-body-m_18wu0_1nckn_354:not(#\9) {
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
}
.awsui_box_18wu0_1nckn_207.awsui_font-size-heading-xs_18wu0_1nckn_358:not(#\9) {
  font-size: var(--font-size-heading-xs-4u3wan, 16px);
  line-height: var(--line-height-heading-xs-au4jub, 20px);
}
.awsui_box_18wu0_1nckn_207.awsui_font-size-heading-s_18wu0_1nckn_362:not(#\9) {
  font-size: var(--font-size-heading-s-hwcx2q, 16px);
  line-height: var(--line-height-heading-s-m093oq, 20px);
  letter-spacing: var(--letter-spacing-heading-s-2369b0, normal);
}
.awsui_box_18wu0_1nckn_207.awsui_font-size-heading-m_18wu0_1nckn_367:not(#\9) {
  font-size: var(--font-size-heading-m-ulervk, 18px);
  line-height: var(--line-height-heading-m-88a3m6, 22px);
  letter-spacing: var(--letter-spacing-heading-m-9g78ia, normal);
}
.awsui_box_18wu0_1nckn_207.awsui_font-size-heading-l_18wu0_1nckn_372:not(#\9) {
  font-size: var(--font-size-heading-l-u89ro8, 18px);
  line-height: var(--line-height-heading-l-z752l3, 22px);
  letter-spacing: var(--letter-spacing-heading-l-v8uzhr, normal);
}
.awsui_box_18wu0_1nckn_207.awsui_font-size-heading-xl_18wu0_1nckn_377:not(#\9) {
  font-size: var(--font-size-heading-xl-z8h967, 28px);
  line-height: var(--line-height-heading-xl-44izce, 36px);
  letter-spacing: var(--letter-spacing-heading-xl-y4tqgw, normal);
}
.awsui_box_18wu0_1nckn_207.awsui_font-size-display-l_18wu0_1nckn_382:not(#\9) {
  font-size: var(--font-size-display-l-ij3zok, 44px);
  line-height: var(--line-height-display-l-aqze16, 56px);
  letter-spacing: var(--letter-spacing-display-l-frfij1, normal);
}
.awsui_box_18wu0_1nckn_207.awsui_font-weight-light_18wu0_1nckn_387:not(#\9) {
  font-weight: 300;
}
.awsui_box_18wu0_1nckn_207.awsui_font-weight-normal_18wu0_1nckn_390:not(#\9) {
  font-weight: 400;
}
.awsui_box_18wu0_1nckn_207.awsui_font-weight-bold_18wu0_1nckn_393:not(#\9) {
  font-weight: 700;
}
.awsui_box_18wu0_1nckn_207.awsui_font-weight-heavy_18wu0_1nckn_317:not(#\9) {
  font-weight: var(--font-weight-heavy-8h6pk1, 700);
}

.awsui_t-left_18wu0_1nckn_400:not(#\9) {
  text-align: left;
}

.awsui_t-right_18wu0_1nckn_404:not(#\9) {
  text-align: right;
}

.awsui_t-center_18wu0_1nckn_408:not(#\9) {
  text-align: center;
}

/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-implicit-descendant */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_box_18wu0_1nckn_207.awsui_p-n_18wu0_1nckn_509:not(#\9) {
  padding: var(--space-scaled-none-98elrj, 0px) var(--space-none-63da7t, 0px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-top-n_18wu0_1nckn_513:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-n_18wu0_1nckn_514:not(#\9) {
  padding-top: var(--space-scaled-none-98elrj, 0px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-right-n_18wu0_1nckn_518:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-n_18wu0_1nckn_519:not(#\9) {
  padding-right: var(--space-none-63da7t, 0px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-bottom-n_18wu0_1nckn_523:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-n_18wu0_1nckn_514:not(#\9) {
  padding-bottom: var(--space-scaled-none-98elrj, 0px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-left-n_18wu0_1nckn_528:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-n_18wu0_1nckn_519:not(#\9) {
  padding-left: var(--space-none-63da7t, 0px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-xxxs_18wu0_1nckn_533:not(#\9) {
  padding: var(--space-scaled-xxxs-emyscj, 2px) var(--space-xxxs-rq3iss, 2px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-top-xxxs_18wu0_1nckn_537:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-xxxs_18wu0_1nckn_538:not(#\9) {
  padding-top: var(--space-scaled-xxxs-emyscj, 2px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-right-xxxs_18wu0_1nckn_542:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-xxxs_18wu0_1nckn_543:not(#\9) {
  padding-right: var(--space-xxxs-rq3iss, 2px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-bottom-xxxs_18wu0_1nckn_547:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-xxxs_18wu0_1nckn_538:not(#\9) {
  padding-bottom: var(--space-scaled-xxxs-emyscj, 2px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-left-xxxs_18wu0_1nckn_552:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-xxxs_18wu0_1nckn_543:not(#\9) {
  padding-left: var(--space-xxxs-rq3iss, 2px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-xxs_18wu0_1nckn_557:not(#\9) {
  padding: var(--space-scaled-xxs-ugy2pw, 4px) var(--space-xxs-a6783b, 4px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-top-xxs_18wu0_1nckn_561:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-xxs_18wu0_1nckn_562:not(#\9) {
  padding-top: var(--space-scaled-xxs-ugy2pw, 4px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-right-xxs_18wu0_1nckn_566:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-xxs_18wu0_1nckn_567:not(#\9) {
  padding-right: var(--space-xxs-a6783b, 4px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-bottom-xxs_18wu0_1nckn_571:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-xxs_18wu0_1nckn_562:not(#\9) {
  padding-bottom: var(--space-scaled-xxs-ugy2pw, 4px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-left-xxs_18wu0_1nckn_576:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-xxs_18wu0_1nckn_567:not(#\9) {
  padding-left: var(--space-xxs-a6783b, 4px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-xs_18wu0_1nckn_581:not(#\9) {
  padding: var(--space-scaled-xs-u0e7ft, 8px) var(--space-xs-inub5w, 8px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-top-xs_18wu0_1nckn_585:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-xs_18wu0_1nckn_586:not(#\9) {
  padding-top: var(--space-scaled-xs-u0e7ft, 8px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-right-xs_18wu0_1nckn_590:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-xs_18wu0_1nckn_591:not(#\9) {
  padding-right: var(--space-xs-inub5w, 8px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-bottom-xs_18wu0_1nckn_595:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-xs_18wu0_1nckn_586:not(#\9) {
  padding-bottom: var(--space-scaled-xs-u0e7ft, 8px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-left-xs_18wu0_1nckn_600:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-xs_18wu0_1nckn_591:not(#\9) {
  padding-left: var(--space-xs-inub5w, 8px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-s_18wu0_1nckn_605:not(#\9) {
  padding: var(--space-scaled-s-gczsk7, 12px) var(--space-s-rd607g, 12px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-top-s_18wu0_1nckn_609:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-s_18wu0_1nckn_610:not(#\9) {
  padding-top: var(--space-scaled-s-gczsk7, 12px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-right-s_18wu0_1nckn_614:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-s_18wu0_1nckn_615:not(#\9) {
  padding-right: var(--space-s-rd607g, 12px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-bottom-s_18wu0_1nckn_619:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-s_18wu0_1nckn_610:not(#\9) {
  padding-bottom: var(--space-scaled-s-gczsk7, 12px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-left-s_18wu0_1nckn_624:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-s_18wu0_1nckn_615:not(#\9) {
  padding-left: var(--space-s-rd607g, 12px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-m_18wu0_1nckn_629:not(#\9) {
  padding: var(--space-scaled-m-9q5ipc, 16px) var(--space-m-sptmsg, 16px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-top-m_18wu0_1nckn_633:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-m_18wu0_1nckn_634:not(#\9) {
  padding-top: var(--space-scaled-m-9q5ipc, 16px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-right-m_18wu0_1nckn_638:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-m_18wu0_1nckn_639:not(#\9) {
  padding-right: var(--space-m-sptmsg, 16px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-bottom-m_18wu0_1nckn_643:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-m_18wu0_1nckn_634:not(#\9) {
  padding-bottom: var(--space-scaled-m-9q5ipc, 16px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-left-m_18wu0_1nckn_648:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-m_18wu0_1nckn_639:not(#\9) {
  padding-left: var(--space-m-sptmsg, 16px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-l_18wu0_1nckn_528:not(#\9) {
  padding: var(--space-scaled-l-x5pubp, 20px) var(--space-l-ds615y, 20px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-top-l_18wu0_1nckn_657:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-l_18wu0_1nckn_658:not(#\9) {
  padding-top: var(--space-scaled-l-x5pubp, 20px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-right-l_18wu0_1nckn_662:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-l_18wu0_1nckn_663:not(#\9) {
  padding-right: var(--space-l-ds615y, 20px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-bottom-l_18wu0_1nckn_667:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-l_18wu0_1nckn_658:not(#\9) {
  padding-bottom: var(--space-scaled-l-x5pubp, 20px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-left-l_18wu0_1nckn_672:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-l_18wu0_1nckn_663:not(#\9) {
  padding-left: var(--space-l-ds615y, 20px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-xl_18wu0_1nckn_677:not(#\9) {
  padding: var(--space-scaled-xl-ozgbvg, 24px) var(--space-xl-7jca1b, 24px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-top-xl_18wu0_1nckn_681:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-xl_18wu0_1nckn_682:not(#\9) {
  padding-top: var(--space-scaled-xl-ozgbvg, 24px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-right-xl_18wu0_1nckn_686:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-xl_18wu0_1nckn_687:not(#\9) {
  padding-right: var(--space-xl-7jca1b, 24px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-bottom-xl_18wu0_1nckn_691:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-xl_18wu0_1nckn_682:not(#\9) {
  padding-bottom: var(--space-scaled-xl-ozgbvg, 24px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-left-xl_18wu0_1nckn_696:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-xl_18wu0_1nckn_687:not(#\9) {
  padding-left: var(--space-xl-7jca1b, 24px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-xxl_18wu0_1nckn_701:not(#\9) {
  padding: var(--space-scaled-xxl-v4jc9u, 32px) var(--space-xxl-eiq7g3, 32px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-top-xxl_18wu0_1nckn_705:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-xxl_18wu0_1nckn_706:not(#\9) {
  padding-top: var(--space-scaled-xxl-v4jc9u, 32px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-right-xxl_18wu0_1nckn_710:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-xxl_18wu0_1nckn_711:not(#\9) {
  padding-right: var(--space-xxl-eiq7g3, 32px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-bottom-xxl_18wu0_1nckn_715:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-xxl_18wu0_1nckn_706:not(#\9) {
  padding-bottom: var(--space-scaled-xxl-v4jc9u, 32px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-left-xxl_18wu0_1nckn_720:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-xxl_18wu0_1nckn_711:not(#\9) {
  padding-left: var(--space-xxl-eiq7g3, 32px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-xxxl_18wu0_1nckn_725:not(#\9) {
  padding: var(--space-scaled-xxxl-kyg1bf, 40px) var(--space-xxxl-rhml9p, 40px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-top-xxxl_18wu0_1nckn_729:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-xxxl_18wu0_1nckn_730:not(#\9) {
  padding-top: var(--space-scaled-xxxl-kyg1bf, 40px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-right-xxxl_18wu0_1nckn_734:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-xxxl_18wu0_1nckn_735:not(#\9) {
  padding-right: var(--space-xxxl-rhml9p, 40px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-bottom-xxxl_18wu0_1nckn_739:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-vertical-xxxl_18wu0_1nckn_730:not(#\9) {
  padding-bottom: var(--space-scaled-xxxl-kyg1bf, 40px);
}

.awsui_box_18wu0_1nckn_207.awsui_p-left-xxxl_18wu0_1nckn_744:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_p-horizontal-xxxl_18wu0_1nckn_735:not(#\9) {
  padding-left: var(--space-xxxl-rhml9p, 40px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-n_18wu0_1nckn_749:not(#\9) {
  margin: var(--space-scaled-none-98elrj, 0px) var(--space-none-63da7t, 0px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-top-n_18wu0_1nckn_753:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-n_18wu0_1nckn_754:not(#\9) {
  margin-top: var(--space-scaled-none-98elrj, 0px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-right-n_18wu0_1nckn_758:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-n_18wu0_1nckn_759:not(#\9) {
  margin-right: var(--space-none-63da7t, 0px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-bottom-n_18wu0_1nckn_763:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-n_18wu0_1nckn_754:not(#\9) {
  margin-bottom: var(--space-scaled-none-98elrj, 0px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-left-n_18wu0_1nckn_768:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-n_18wu0_1nckn_759:not(#\9) {
  margin-left: var(--space-none-63da7t, 0px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-xxxs_18wu0_1nckn_773:not(#\9) {
  margin: var(--space-scaled-xxxs-emyscj, 2px) var(--space-xxxs-rq3iss, 2px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-top-xxxs_18wu0_1nckn_777:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-xxxs_18wu0_1nckn_778:not(#\9) {
  margin-top: var(--space-scaled-xxxs-emyscj, 2px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-right-xxxs_18wu0_1nckn_782:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-xxxs_18wu0_1nckn_783:not(#\9) {
  margin-right: var(--space-xxxs-rq3iss, 2px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-bottom-xxxs_18wu0_1nckn_787:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-xxxs_18wu0_1nckn_778:not(#\9) {
  margin-bottom: var(--space-scaled-xxxs-emyscj, 2px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-left-xxxs_18wu0_1nckn_792:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-xxxs_18wu0_1nckn_783:not(#\9) {
  margin-left: var(--space-xxxs-rq3iss, 2px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-xxs_18wu0_1nckn_797:not(#\9) {
  margin: var(--space-scaled-xxs-ugy2pw, 4px) var(--space-xxs-a6783b, 4px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-top-xxs_18wu0_1nckn_801:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-xxs_18wu0_1nckn_802:not(#\9) {
  margin-top: var(--space-scaled-xxs-ugy2pw, 4px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-right-xxs_18wu0_1nckn_806:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-xxs_18wu0_1nckn_807:not(#\9) {
  margin-right: var(--space-xxs-a6783b, 4px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-bottom-xxs_18wu0_1nckn_811:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-xxs_18wu0_1nckn_802:not(#\9) {
  margin-bottom: var(--space-scaled-xxs-ugy2pw, 4px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-left-xxs_18wu0_1nckn_816:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-xxs_18wu0_1nckn_807:not(#\9) {
  margin-left: var(--space-xxs-a6783b, 4px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-xs_18wu0_1nckn_821:not(#\9) {
  margin: var(--space-scaled-xs-u0e7ft, 8px) var(--space-xs-inub5w, 8px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-top-xs_18wu0_1nckn_825:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-xs_18wu0_1nckn_826:not(#\9) {
  margin-top: var(--space-scaled-xs-u0e7ft, 8px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-right-xs_18wu0_1nckn_830:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-xs_18wu0_1nckn_831:not(#\9) {
  margin-right: var(--space-xs-inub5w, 8px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-bottom-xs_18wu0_1nckn_835:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-xs_18wu0_1nckn_826:not(#\9) {
  margin-bottom: var(--space-scaled-xs-u0e7ft, 8px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-left-xs_18wu0_1nckn_840:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-xs_18wu0_1nckn_831:not(#\9) {
  margin-left: var(--space-xs-inub5w, 8px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-s_18wu0_1nckn_845:not(#\9) {
  margin: var(--space-scaled-s-gczsk7, 12px) var(--space-s-rd607g, 12px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-top-s_18wu0_1nckn_849:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-s_18wu0_1nckn_850:not(#\9) {
  margin-top: var(--space-scaled-s-gczsk7, 12px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-right-s_18wu0_1nckn_854:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-s_18wu0_1nckn_855:not(#\9) {
  margin-right: var(--space-s-rd607g, 12px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-bottom-s_18wu0_1nckn_859:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-s_18wu0_1nckn_850:not(#\9) {
  margin-bottom: var(--space-scaled-s-gczsk7, 12px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-left-s_18wu0_1nckn_864:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-s_18wu0_1nckn_855:not(#\9) {
  margin-left: var(--space-s-rd607g, 12px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-m_18wu0_1nckn_869:not(#\9) {
  margin: var(--space-scaled-m-9q5ipc, 16px) var(--space-m-sptmsg, 16px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-top-m_18wu0_1nckn_873:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-m_18wu0_1nckn_874:not(#\9) {
  margin-top: var(--space-scaled-m-9q5ipc, 16px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-right-m_18wu0_1nckn_878:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-m_18wu0_1nckn_879:not(#\9) {
  margin-right: var(--space-m-sptmsg, 16px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-bottom-m_18wu0_1nckn_883:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-m_18wu0_1nckn_874:not(#\9) {
  margin-bottom: var(--space-scaled-m-9q5ipc, 16px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-left-m_18wu0_1nckn_888:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-m_18wu0_1nckn_879:not(#\9) {
  margin-left: var(--space-m-sptmsg, 16px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-l_18wu0_1nckn_768:not(#\9) {
  margin: var(--space-scaled-l-x5pubp, 20px) var(--space-l-ds615y, 20px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-top-l_18wu0_1nckn_897:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-l_18wu0_1nckn_898:not(#\9) {
  margin-top: var(--space-scaled-l-x5pubp, 20px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-right-l_18wu0_1nckn_902:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-l_18wu0_1nckn_903:not(#\9) {
  margin-right: var(--space-l-ds615y, 20px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-bottom-l_18wu0_1nckn_907:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-l_18wu0_1nckn_898:not(#\9) {
  margin-bottom: var(--space-scaled-l-x5pubp, 20px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-left-l_18wu0_1nckn_912:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-l_18wu0_1nckn_903:not(#\9) {
  margin-left: var(--space-l-ds615y, 20px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-xl_18wu0_1nckn_917:not(#\9) {
  margin: var(--space-scaled-xl-ozgbvg, 24px) var(--space-xl-7jca1b, 24px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-top-xl_18wu0_1nckn_921:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-xl_18wu0_1nckn_922:not(#\9) {
  margin-top: var(--space-scaled-xl-ozgbvg, 24px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-right-xl_18wu0_1nckn_926:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-xl_18wu0_1nckn_927:not(#\9) {
  margin-right: var(--space-xl-7jca1b, 24px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-bottom-xl_18wu0_1nckn_931:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-xl_18wu0_1nckn_922:not(#\9) {
  margin-bottom: var(--space-scaled-xl-ozgbvg, 24px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-left-xl_18wu0_1nckn_936:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-xl_18wu0_1nckn_927:not(#\9) {
  margin-left: var(--space-xl-7jca1b, 24px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-xxl_18wu0_1nckn_941:not(#\9) {
  margin: var(--space-scaled-xxl-v4jc9u, 32px) var(--space-xxl-eiq7g3, 32px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-top-xxl_18wu0_1nckn_945:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-xxl_18wu0_1nckn_946:not(#\9) {
  margin-top: var(--space-scaled-xxl-v4jc9u, 32px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-right-xxl_18wu0_1nckn_950:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-xxl_18wu0_1nckn_951:not(#\9) {
  margin-right: var(--space-xxl-eiq7g3, 32px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-bottom-xxl_18wu0_1nckn_955:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-xxl_18wu0_1nckn_946:not(#\9) {
  margin-bottom: var(--space-scaled-xxl-v4jc9u, 32px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-left-xxl_18wu0_1nckn_960:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-xxl_18wu0_1nckn_951:not(#\9) {
  margin-left: var(--space-xxl-eiq7g3, 32px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-xxxl_18wu0_1nckn_965:not(#\9) {
  margin: var(--space-scaled-xxxl-kyg1bf, 40px) var(--space-xxxl-rhml9p, 40px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-top-xxxl_18wu0_1nckn_969:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-xxxl_18wu0_1nckn_970:not(#\9) {
  margin-top: var(--space-scaled-xxxl-kyg1bf, 40px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-right-xxxl_18wu0_1nckn_974:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-xxxl_18wu0_1nckn_975:not(#\9) {
  margin-right: var(--space-xxxl-rhml9p, 40px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-bottom-xxxl_18wu0_1nckn_979:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-vertical-xxxl_18wu0_1nckn_970:not(#\9) {
  margin-bottom: var(--space-scaled-xxxl-kyg1bf, 40px);
}

.awsui_box_18wu0_1nckn_207.awsui_m-left-xxxl_18wu0_1nckn_984:not(#\9),
.awsui_box_18wu0_1nckn_207.awsui_m-horizontal-xxxl_18wu0_1nckn_975:not(#\9) {
  margin-left: var(--space-xxxl-rhml9p, 40px);
}

.awsui_box_18wu0_1nckn_207.awsui_d-block_18wu0_1nckn_989:not(#\9) {
  display: block;
}
.awsui_box_18wu0_1nckn_207.awsui_d-inline_18wu0_1nckn_992:not(#\9) {
  display: inline;
}
.awsui_box_18wu0_1nckn_207.awsui_d-inline-block_18wu0_1nckn_995:not(#\9) {
  display: inline-block;
}
.awsui_box_18wu0_1nckn_207.awsui_d-none_18wu0_1nckn_998:not(#\9) {
  display: none;
}

.awsui_f-left_18wu0_1nckn_1002:not(#\9) {
  float: left;
}

.awsui_f-right_18wu0_1nckn_1006:not(#\9) {
  float: right;
}

/* stylelint-enable no-invalid-position-at-import-rule *//*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_18582_cbbsj_93:not(#\9) {
  display: flex;
}

.awsui_child_18582_cbbsj_97:not(#\9) {
  /* used in test-utils */
}

.awsui_child_18582_cbbsj_97:not(#\9):empty {
  display: none;
}

/*
 * Horizontal variant
 */
.awsui_horizontal_18582_cbbsj_108:not(#\9) {
  flex-direction: row;
  flex-wrap: wrap;
}
.awsui_horizontal-xxxs_18582_cbbsj_112:not(#\9) {
  gap: var(--space-xxxs-rq3iss, 2px);
}
.awsui_horizontal-xxs_18582_cbbsj_115:not(#\9) {
  gap: var(--space-xxs-a6783b, 4px);
}
.awsui_horizontal-xs_18582_cbbsj_118:not(#\9) {
  gap: var(--space-xs-inub5w, 8px);
}
.awsui_horizontal-s_18582_cbbsj_121:not(#\9) {
  gap: var(--space-s-rd607g, 12px);
}
.awsui_horizontal-m_18582_cbbsj_124:not(#\9) {
  gap: var(--space-m-sptmsg, 16px);
}
.awsui_horizontal-l_18582_cbbsj_127:not(#\9) {
  gap: var(--space-l-ds615y, 20px);
}
.awsui_horizontal-xl_18582_cbbsj_130:not(#\9) {
  gap: var(--space-xl-7jca1b, 24px);
}
.awsui_horizontal-xxl_18582_cbbsj_133:not(#\9) {
  gap: var(--space-xxl-eiq7g3, 32px);
}

/*
 * Vertical variant
 */
.awsui_vertical_18582_cbbsj_140:not(#\9) {
  flex-direction: column;
}
.awsui_vertical-xxxs_18582_cbbsj_143:not(#\9) {
  row-gap: var(--space-xxxs-rq3iss, 2px);
}
.awsui_vertical-xxs_18582_cbbsj_146:not(#\9) {
  row-gap: var(--space-xxs-a6783b, 4px);
}
.awsui_vertical-xs_18582_cbbsj_149:not(#\9) {
  row-gap: var(--space-xs-inub5w, 8px);
}
.awsui_vertical-s_18582_cbbsj_152:not(#\9) {
  row-gap: var(--space-scaled-s-gczsk7, 12px);
}
.awsui_vertical-m_18582_cbbsj_155:not(#\9) {
  row-gap: var(--space-scaled-m-9q5ipc, 16px);
}
.awsui_vertical-l_18582_cbbsj_158:not(#\9) {
  row-gap: var(--space-scaled-l-x5pubp, 20px);
}
.awsui_vertical-xl_18582_cbbsj_161:not(#\9) {
  row-gap: var(--space-scaled-xl-ozgbvg, 24px);
}
.awsui_vertical-xxl_18582_cbbsj_164:not(#\9) {
  row-gap: var(--space-scaled-xxl-v4jc9u, 32px);
}

.awsui_align-center_18582_cbbsj_168:not(#\9) {
  align-items: center;
}

.awsui_align-start_18582_cbbsj_172:not(#\9) {
  align-items: start;
}

.awsui_align-end_18582_cbbsj_176:not(#\9) {
  align-items: end;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_arrow_xjuzf_1k73l_185:not(#\9) {
  width: 20px;
  height: 10px;
}
.awsui_arrow-outer_xjuzf_1k73l_189:not(#\9), .awsui_arrow-inner_xjuzf_1k73l_189:not(#\9) {
  position: absolute;
  overflow: hidden;
  width: 20px;
  height: 10px;
  top: 0;
  left: 0;
}
.awsui_arrow-outer_xjuzf_1k73l_189:not(#\9)::after, .awsui_arrow-inner_xjuzf_1k73l_189:not(#\9)::after {
  content: "";
  box-sizing: border-box;
  display: inline-block;
  position: absolute;
  border-radius: 2px 0 0 0;
  bottom: 0;
  left: 0;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  transform-origin: 0 100%;
}
.awsui_arrow-outer_xjuzf_1k73l_189:not(#\9)::after {
  background-color: var(--color-border-popover-p8haek, #d5dbdb);
}
.awsui_arrow-inner_xjuzf_1k73l_189:not(#\9) {
  top: 2px;
}
.awsui_arrow-inner_xjuzf_1k73l_189:not(#\9)::after {
  border-radius: 1px 0 0 0;
  background-color: var(--color-background-popover-ft56xl, #ffffff);
}
.awsui_arrow-position-right-top_xjuzf_1k73l_220 > .awsui_arrow-outer_xjuzf_1k73l_189:not(#\9)::after, .awsui_arrow-position-right-bottom_xjuzf_1k73l_220 > .awsui_arrow-outer_xjuzf_1k73l_189:not(#\9)::after {
  box-shadow: -0.71px 0.71px 4px -2px var(--color-shadow-default-4md8jt, rgba(0, 28, 36, 0.5));
}
.awsui_arrow-position-left-top_xjuzf_1k73l_223 > .awsui_arrow-outer_xjuzf_1k73l_189:not(#\9)::after, .awsui_arrow-position-left-bottom_xjuzf_1k73l_223 > .awsui_arrow-outer_xjuzf_1k73l_189:not(#\9)::after {
  box-shadow: 0.71px -0.71px 4px -2px var(--color-shadow-default-4md8jt, rgba(0, 28, 36, 0.5));
}
.awsui_arrow-position-top-center_xjuzf_1k73l_226 > .awsui_arrow-outer_xjuzf_1k73l_189:not(#\9)::after, .awsui_arrow-position-top-right_xjuzf_1k73l_226 > .awsui_arrow-outer_xjuzf_1k73l_189:not(#\9)::after, .awsui_arrow-position-top-left_xjuzf_1k73l_226 > .awsui_arrow-outer_xjuzf_1k73l_189:not(#\9)::after, .awsui_arrow-position-top-responsive_xjuzf_1k73l_226 > .awsui_arrow-outer_xjuzf_1k73l_189:not(#\9)::after {
  box-shadow: -0.71px -0.71px 4px -2px var(--color-shadow-default-4md8jt, rgba(0, 28, 36, 0.5));
}
.awsui_arrow-position-bottom-center_xjuzf_1k73l_229 > .awsui_arrow-outer_xjuzf_1k73l_189:not(#\9)::after, .awsui_arrow-position-bottom-right_xjuzf_1k73l_229 > .awsui_arrow-outer_xjuzf_1k73l_189:not(#\9)::after, .awsui_arrow-position-bottom-left_xjuzf_1k73l_229 > .awsui_arrow-outer_xjuzf_1k73l_189:not(#\9)::after, .awsui_arrow-position-bottom-responsive_xjuzf_1k73l_229 > .awsui_arrow-outer_xjuzf_1k73l_189:not(#\9)::after {
  box-shadow: 0.71px 0.71px 4px -2px var(--color-shadow-default-4md8jt, rgba(0, 28, 36, 0.5));
}

/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_body_xjuzf_1k73l_325:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  word-wrap: break-word;
  max-width: 100%;
  overflow: hidden;
  padding: var(--space-s-rd607g, 12px) var(--space-m-sptmsg, 16px);
}
.awsui_body-overflow-visible_xjuzf_1k73l_341:not(#\9) {
  overflow: visible;
}

.awsui_has-dismiss_xjuzf_1k73l_345:not(#\9) {
  display: flex;
  align-items: baseline;
}

.awsui_dismiss_xjuzf_1k73l_350:not(#\9) {
  margin: calc(-1 * (var(--space-scaled-xxs-ugy2pw, 4px) + var(--border-field-width-2vpp5j, 1px))) calc(-1 * (var(--space-xxs-a6783b, 4px) + var(--border-field-width-2vpp5j, 1px)));
  margin-left: 0;
  flex: 0 0 auto;
  order: 1;
}

.awsui_dismiss-control_xjuzf_1k73l_357:not(#\9) {
  /* used in test-utils */
}

.awsui_header-row_xjuzf_1k73l_361:not(#\9) {
  margin-bottom: var(--space-xs-inub5w, 8px);
}

.awsui_header_xjuzf_1k73l_361:not(#\9) {
  word-wrap: break-word;
  max-width: 100%;
  overflow: hidden;
  font-size: var(--font-size-heading-xs-4u3wan, 16px);
  line-height: var(--line-height-heading-xs-au4jub, 20px);
  font-weight: var(--font-weight-heading-xs-yzr1e0, 400);
  -webkit-font-smoothing: var(--font-smoothing-webkit-rg3jdt, auto);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-58s982, auto);
  flex: 1 1 auto;
  /* stylelint-disable selector-max-type */
  /* stylelint-enable selector-max-type */
}
.awsui_header_xjuzf_1k73l_361 > h2:not(#\9) {
  font-size: var(--font-size-heading-xs-4u3wan, 16px);
  line-height: var(--line-height-heading-xs-au4jub, 20px);
  font-weight: var(--font-weight-heading-xs-yzr1e0, 400);
  -webkit-font-smoothing: var(--font-smoothing-webkit-rg3jdt, auto);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-58s982, auto);
  display: inline;
}

.awsui_content_xjuzf_1k73l_387:not(#\9) {
  word-wrap: break-word;
  max-width: 100%;
  overflow: hidden;
  color: var(--color-text-body-secondary-bgqgd0, #545b64);
  flex: 1 1 auto;
  min-width: 0;
}
.awsui_content-overflow-visible_xjuzf_1k73l_395:not(#\9) {
  overflow: visible;
}

/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_container_xjuzf_1k73l_491:not(#\9) {
  display: inline-block;
  position: fixed;
  top: -9999px;
  left: -9999px;
  z-index: 2000;
}

.awsui_container-body_xjuzf_1k73l_499:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  border-radius: var(--border-radius-popover-yu74or, 2px);
  background-color: var(--color-background-popover-ft56xl, #ffffff);
  box-shadow: var(--shadow-popover-atdz1j, 0px 1px 4px -2px rgba(0, 28, 36, 0.5));
  border: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-popover-p8haek, #d5dbdb);
}

.awsui_container-body-variant-annotation_xjuzf_1k73l_516:not(#\9) {
  background-color: var(--color-background-status-info-nlr7o9, #f1faff);
  border-color: var(--color-border-status-info-uwhmay, #0073bb);
}

.awsui_container-body-size-small_xjuzf_1k73l_521:not(#\9) {
  max-width: 210px;
}
.awsui_container-body-size-small_xjuzf_1k73l_521.awsui_fixed-width_xjuzf_1k73l_524:not(#\9) {
  width: 210px;
}

.awsui_container-body-size-medium_xjuzf_1k73l_528:not(#\9) {
  max-width: 310px;
}
.awsui_container-body-size-medium_xjuzf_1k73l_528.awsui_fixed-width_xjuzf_1k73l_524:not(#\9) {
  width: 310px;
}

.awsui_container-body-size-large_xjuzf_1k73l_535:not(#\9) {
  max-width: 480px;
}
@media (max-width: 480px) {
  .awsui_container-body-size-large_xjuzf_1k73l_535:not(#\9) {
    max-width: 310px;
  }
}
.awsui_container-body-size-large_xjuzf_1k73l_535.awsui_fixed-width_xjuzf_1k73l_524:not(#\9) {
  width: 480px;
}

.awsui_container-arrow_xjuzf_1k73l_547:not(#\9) {
  position: absolute;
  display: inline-block;
}
.awsui_container-arrow-position-right-top_xjuzf_1k73l_551:not(#\9), .awsui_container-arrow-position-right-bottom_xjuzf_1k73l_551:not(#\9) {
  transform: rotate(-90deg);
  transform-origin: 0 100%;
}
.awsui_container-arrow-position-right-top_xjuzf_1k73l_551:not(#\9) {
  top: calc(12px + 10px);
  left: 0;
}
.awsui_container-arrow-position-right-bottom_xjuzf_1k73l_551:not(#\9) {
  bottom: 12px;
  left: 0;
}
.awsui_container-arrow-position-left-top_xjuzf_1k73l_563:not(#\9), .awsui_container-arrow-position-left-bottom_xjuzf_1k73l_563:not(#\9) {
  transform: rotate(90deg);
  transform-origin: 100% 100%;
}
.awsui_container-arrow-position-left-top_xjuzf_1k73l_563:not(#\9) {
  top: calc(12px + 10px);
  right: 0;
}
.awsui_container-arrow-position-left-bottom_xjuzf_1k73l_563:not(#\9) {
  bottom: 12px;
  right: 0;
}
.awsui_container-arrow-position-top-center_xjuzf_1k73l_575:not(#\9), .awsui_container-arrow-position-top-right_xjuzf_1k73l_575:not(#\9), .awsui_container-arrow-position-top-left_xjuzf_1k73l_575:not(#\9), .awsui_container-arrow-position-top-responsive_xjuzf_1k73l_575:not(#\9) {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}
.awsui_container-arrow-position-top-center_xjuzf_1k73l_575:not(#\9) {
  bottom: -10px;
  left: calc(50% - 10px);
}
.awsui_container-arrow-position-top-right_xjuzf_1k73l_575:not(#\9) {
  bottom: -10px;
  left: 12px;
}
.awsui_container-arrow-position-top-left_xjuzf_1k73l_575:not(#\9) {
  bottom: -10px;
  left: calc(100% - 20px - 12px);
}
.awsui_container-arrow-position-bottom-center_xjuzf_1k73l_591:not(#\9) {
  top: -10px;
  left: calc(50% - 10px);
}
.awsui_container-arrow-position-bottom-right_xjuzf_1k73l_595:not(#\9) {
  top: -10px;
  left: 12px;
}
.awsui_container-arrow-position-bottom-left_xjuzf_1k73l_599:not(#\9) {
  top: -10px;
  left: calc(100% - 20px - 12px);
}

/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_container_xjuzf_1k73l_491:not(#\9) {
  animation: awsui_awsui-motion-fade-in_xjuzf_1k73l_1 var(--motion-duration-show-paced-1a355f, 180ms) var(--motion-easing-show-paced-uosx37, ease-out);
}
@keyframes awsui_awsui-motion-fade-in_xjuzf_1k73l_1 {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_container_xjuzf_1k73l_491:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_container_xjuzf_1k73l_491:not(#\9), .awsui-mode-entering .awsui_container_xjuzf_1k73l_491:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_container_xjuzf_1k73l_491.awsui_refresh_xjuzf_1k73l_717:not(#\9) {
  animation: awsui_awsui-motion-fade-in_xjuzf_1k73l_1 var(--motion-duration-refresh-only-fast-n43vlu, 115ms) var(--motion-easing-refresh-only-a-yzzzm8, cubic-bezier(0, 0, 0, 1));
}
@keyframes awsui_awsui-motion-fade-in_xjuzf_1k73l_1 {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_container_xjuzf_1k73l_491.awsui_refresh_xjuzf_1k73l_717:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_container_xjuzf_1k73l_491.awsui_refresh_xjuzf_1k73l_717:not(#\9), .awsui-mode-entering .awsui_container_xjuzf_1k73l_491.awsui_refresh_xjuzf_1k73l_717:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_root_xjuzf_1k73l_739:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  color: inherit;
}

.awsui_trigger_xjuzf_1k73l_753:not(#\9) {
  display: inline-block;
  max-width: 100%;
  color: inherit;
  text-align: inherit;
}

.awsui_trigger-type-text_xjuzf_1k73l_760:not(#\9) {
  border: 0;
  margin: 0;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  border-bottom: var(--border-divider-list-width-fsy9j8, 1px) dashed currentColor;
}
.awsui_trigger-type-text_xjuzf_1k73l_760:not(#\9):focus {
  outline: none;
}
body[data-awsui-focus-visible=true] .awsui_trigger-type-text_xjuzf_1k73l_760:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_trigger-type-text_xjuzf_1k73l_760:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(1px - 1px);
}
body[data-awsui-focus-visible=true] .awsui_trigger-type-text_xjuzf_1k73l_760:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * 1px);
  top: calc(-1 * 1px);
  width: calc(100% + 2 * 1px);
  height: calc(100% + 2 * 1px);
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_trigger-type-text_xjuzf_1k73l_760 > .awsui_trigger-inner-text_xjuzf_1k73l_789:not(#\9) {
  position: relative;
}

.awsui_popover-content_xjuzf_1k73l_793:not(#\9) {
  display: inline;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_button-dropdown_sne0l_107af_93:not(#\9) {
  display: inline-block;
}

.awsui_items-list-container_sne0l_107af_97:not(#\9) {
  padding: 0;
  margin: 0;
  animation: awsui_awsui-motion-fade-in-0_sne0l_107af_1 500ms var(--motion-easing-show-quick-vlcbqf, ease-out);
  animation-fill-mode: none;
}
@media (prefers-reduced-motion: reduce) {
  .awsui_items-list-container_sne0l_107af_97:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_items-list-container_sne0l_107af_97:not(#\9), .awsui-mode-entering .awsui_items-list-container_sne0l_107af_97:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_rotate-up_sne0l_107af_114:not(#\9) {
  transform: rotate(-180deg);
  transition: transform var(--motion-duration-rotate-180-i3ygzg, 135ms) var(--motion-easing-rotate-180-qx5hdf, cubic-bezier(0.165, 0.84, 0.44, 1));
}
@media (prefers-reduced-motion: reduce) {
  .awsui_rotate-up_sne0l_107af_114:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_rotate-up_sne0l_107af_114:not(#\9), .awsui-mode-entering .awsui_rotate-up_sne0l_107af_114:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_rotate-down_sne0l_107af_129:not(#\9) {
  transform: rotate(0deg);
  transition: transform var(--motion-duration-rotate-180-i3ygzg, 135ms) var(--motion-easing-rotate-180-qx5hdf, cubic-bezier(0.165, 0.84, 0.44, 1));
}
@media (prefers-reduced-motion: reduce) {
  .awsui_rotate-down_sne0l_107af_129:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_rotate-down_sne0l_107af_129:not(#\9), .awsui-mode-entering .awsui_rotate-down_sne0l_107af_129:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_header_sne0l_107af_144:not(#\9) {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: var(--space-s-rd607g, 12px) var(--space-l-ds615y, 20px);
  border: var(--border-field-width-2vpp5j, 1px) solid transparent;
  border-bottom: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-dropdown-group-u3qa6a, #eaeded);
}

.awsui_title_sne0l_107af_153:not(#\9),
.awsui_description_sne0l_107af_154:not(#\9) {
  color: var(--color-text-dropdown-header-90kv5m, #16191f);
}

.awsui_split-trigger-wrapper_sne0l_107af_158:not(#\9) {
  display: flex;
}
.awsui_split-trigger-wrapper_sne0l_107af_158 > .awsui_trigger-item_sne0l_107af_161 > button:not(#\9):focus {
  z-index: 1;
}
.awsui_split-trigger-wrapper_sne0l_107af_158 > .awsui_trigger-item_sne0l_107af_161:not(#\9):not(:last-child) > .awsui_trigger-button_sne0l_107af_164 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-right: var(--space-xs-inub5w, 8px);
  margin-right: var(--space-xxxs-rq3iss, 2px);
}
.awsui_split-trigger-wrapper_sne0l_107af_158 > .awsui_trigger-item_sne0l_107af_161:not(#\9):not(:first-child) > .awsui_trigger-button_sne0l_107af_164 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: calc(var(--space-xs-inub5w, 8px) - 2px);
  padding-right: calc(var(--space-xs-inub5w, 8px) - 2px);
}
.awsui_split-trigger-wrapper_sne0l_107af_158 > .awsui_trigger-item_sne0l_107af_161:not(#\9):not(:first-child).awsui_visual-refresh_sne0l_107af_176 > .awsui_trigger-button_sne0l_107af_164 {
  padding-right: calc(var(--space-s-rd607g, 12px) - 2px);
}

.awsui_split-trigger_sne0l_107af_158:not(#\9) {
  display: contents;
}

.awsui_dropdown-trigger_sne0l_107af_184:not(#\9) {
  display: contents;
}

.awsui_test-utils-button-trigger_sne0l_107af_188:not(#\9) {
  /* used in test-utils */
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_dropdown-content-wrapper_qwoo0_fqsrz_93:not(#\9) {
  animation: awsui_awsui-motion-fade-in-dropdown_qwoo0_fqsrz_1 var(--motion-duration-show-quick-b6n9lb, 135ms) var(--motion-easing-show-quick-vlcbqf, ease-out);
}
@keyframes awsui_awsui-motion-fade-in-dropdown_qwoo0_fqsrz_1 {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_dropdown-content-wrapper_qwoo0_fqsrz_93:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_dropdown-content-wrapper_qwoo0_fqsrz_93:not(#\9), .awsui-mode-entering .awsui_dropdown-content-wrapper_qwoo0_fqsrz_93:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_dropdown-content-wrapper_qwoo0_fqsrz_93.awsui_refresh_qwoo0_fqsrz_114:not(#\9) {
  transform-origin: top;
  animation-name: awsui_awsui-motion-fade-in-0_qwoo0_fqsrz_1;
  animation-duration: var(--motion-duration-show-quick-b6n9lb, 135ms);
  animation-timing-function: var(--motion-easing-show-quick-vlcbqf, ease-out);
}
@keyframes awsui_awsui-motion-fade-in-0_qwoo0_fqsrz_1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_dropdown-content-wrapper_qwoo0_fqsrz_93.awsui_refresh_qwoo0_fqsrz_114:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_dropdown-content-wrapper_qwoo0_fqsrz_93.awsui_refresh_qwoo0_fqsrz_114:not(#\9), .awsui-mode-entering .awsui_dropdown-content-wrapper_qwoo0_fqsrz_93.awsui_refresh_qwoo0_fqsrz_114:not(#\9) {
  animation: none;
  transition: none;
}

/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_qwoo0_fqsrz_143:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  position: relative;
  white-space: inherit;
}
.awsui_root_qwoo0_fqsrz_143.awsui_interior_qwoo0_fqsrz_157:not(#\9) {
  position: static;
}

.awsui_dropdown_qwoo0_fqsrz_93:not(#\9) {
  position: absolute;
  display: none;
  z-index: 2000;
  -webkit-user-select: none;
          user-select: none;
  transform-origin: top;
}
.awsui_dropdown_qwoo0_fqsrz_93.awsui_use-portal_qwoo0_fqsrz_168:not(#\9) {
  z-index: 7000;
}
.awsui_dropdown_qwoo0_fqsrz_93:not(#\9):not(.awsui_interior_qwoo0_fqsrz_157) {
  transform: translateY(0px);
  transition: transform var(--motion-duration-show-quick-b6n9lb, 135ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_dropdown_qwoo0_fqsrz_93:not(#\9):not(.awsui_interior_qwoo0_fqsrz_157) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_dropdown_qwoo0_fqsrz_93:not(#\9):not(.awsui_interior_qwoo0_fqsrz_157), .awsui-mode-entering .awsui_dropdown_qwoo0_fqsrz_93:not(#\9):not(.awsui_interior_qwoo0_fqsrz_157) {
  animation: none;
  transition: none;
}
.awsui_dropdown-content-wrapper_qwoo0_fqsrz_93:not(#\9) {
  position: relative;
  background-color: var(--color-background-dropdown-item-default-2p2g22, #ffffff);
  outline: none;
  box-shadow: var(--shadow-dropdown-ixmllj, 0 1px 1px 0 rgba(0, 28, 36, 0.3), 1px 1px 1px 0 rgba(0, 28, 36, 0.15), -1px 1px 1px 0 rgba(0, 28, 36, 0.15));
  border-radius: var(--border-radius-dropdown-ewtx9q, 0px);
  border-top: var(--border-divider-list-width-fsy9j8, 1px) solid var(--color-border-container-top-ige66g, #eaeded);
  box-sizing: border-box;
  border-bottom: none;
}
.awsui_dropdown-content-wrapper_qwoo0_fqsrz_93:not(#\9)::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -1px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background-color: transparent;
  border: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-dropdown-container-5izm18, transparent);
  border-radius: var(--border-radius-dropdown-ewtx9q, 0px);
  pointer-events: none;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .awsui_dropdown-content-wrapper_qwoo0_fqsrz_93:not(#\9) {
    border: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-container-top-ige66g, #eaeded);
  }
}
.awsui_dropdown-drop-up_qwoo0_fqsrz_213 > .awsui_dropdown-content-wrapper_qwoo0_fqsrz_93:not(#\9) {
  transform-origin: bottom;
  box-shadow: var(--shadow-dropup-uhb2zg, 0 -1px 1px 0 rgba(0, 28, 36, 0.3), 1px -1px 1px 0 rgba(0, 28, 36, 0.15), -1px -1px 1px 0 rgba(0, 28, 36, 0.15));
}
.awsui_dropdown-drop-up_qwoo0_fqsrz_213.awsui_with-limited-width_qwoo0_fqsrz_217 > .awsui_dropdown-content-wrapper_qwoo0_fqsrz_93:not(#\9) {
  border-top: none;
}
.awsui_dropdown-drop-left_qwoo0_fqsrz_220:not(#\9) {
  right: 0;
}
.awsui_dropdown-drop-right_qwoo0_fqsrz_223:not(#\9) {
  left: 0;
}
.awsui_dropdown_qwoo0_fqsrz_93.awsui_occupy-entire-width_qwoo0_fqsrz_226:not(#\9) {
  min-width: 100%;
}
.awsui_dropdown_qwoo0_fqsrz_93.awsui_stretch-beyond-trigger-width_qwoo0_fqsrz_229:not(#\9) {
  width: max-content;
}
.awsui_dropdown_qwoo0_fqsrz_93.awsui_hide-upper-border_qwoo0_fqsrz_232 > .awsui_dropdown-content-wrapper_qwoo0_fqsrz_93:not(#\9) {
  border-top: none;
}
.awsui_dropdown_qwoo0_fqsrz_93.awsui_interior_qwoo0_fqsrz_157 > .awsui_dropdown-content-wrapper_qwoo0_fqsrz_93:not(#\9) {
  margin-top: -1px;
  border-top: var(--border-divider-list-width-fsy9j8, 1px) solid var(--color-border-container-top-ige66g, #eaeded);
}
.awsui_dropdown_qwoo0_fqsrz_93.awsui_open_qwoo0_fqsrz_239:not(#\9) {
  display: block;
}
.awsui_dropdown_qwoo0_fqsrz_93.awsui_open_qwoo0_fqsrz_239:not(#\9):not(.awsui_interior_qwoo0_fqsrz_157).awsui_refresh_qwoo0_fqsrz_114[data-animating=true] {
  transform: translateY(4px);
}
.awsui_dropdown_qwoo0_fqsrz_93.awsui_open_qwoo0_fqsrz_239:not(#\9):not(.awsui_interior_qwoo0_fqsrz_157).awsui_refresh_qwoo0_fqsrz_114[data-animating=true].awsui_dropdown-drop-up_qwoo0_fqsrz_213 {
  transform: translateY(-4px);
}
.awsui_dropdown_qwoo0_fqsrz_93.awsui_open_qwoo0_fqsrz_239.awsui_nowrap_qwoo0_fqsrz_248:not(#\9) {
  white-space: nowrap;
  overflow: scroll;
}
.awsui_dropdown_qwoo0_fqsrz_93.awsui_is-empty_qwoo0_fqsrz_252:not(#\9)::after {
  display: none;
}

.awsui_dropdown-content_qwoo0_fqsrz_93:not(#\9) {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.awsui_ie11-wrapper_qwoo0_fqsrz_262:not(#\9) {
  display: flex;
}

.awsui_stretch-trigger-height_qwoo0_fqsrz_266:not(#\9) {
  height: 100%;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_item-element_93a1u_1f879_93:not(#\9) {
  position: relative;
  z-index: 1;
  border: var(--border-item-width-f0bcsu, 1px) solid transparent;
  list-style: none;
  padding: 0;
  color: var(--color-text-dropdown-item-default-wx27oj, #16191f);
  margin-top: calc(-1 * var(--border-field-width-2vpp5j, 1px));
  cursor: pointer;
}
.awsui_item-element_93a1u_1f879_93.awsui_disabled_93a1u_1f879_103:not(#\9) {
  cursor: default;
  color: var(--color-text-dropdown-item-disabled-g9c04k, #aab7b8);
}
.awsui_item-element_93a1u_1f879_93:not(#\9):first-child {
  margin-top: 0;
}
.awsui_item-element_93a1u_1f879_93.awsui_last_93a1u_1f879_110:not(#\9) {
  border-bottom: var(--border-item-width-f0bcsu, 1px) solid var(--color-border-dropdown-group-u3qa6a, #eaeded);
}
.awsui_item-element_93a1u_1f879_93.awsui_highlighted_93a1u_1f879_113:not(#\9) {
  color: var(--color-text-dropdown-item-highlighted-t48eqn, #16191f);
  z-index: 2;
}
.awsui_item-element_93a1u_1f879_93.awsui_highlighted_93a1u_1f879_113.awsui_variant-icon_93a1u_1f879_117:not(#\9), .awsui_item-element_93a1u_1f879_93.awsui_highlighted_93a1u_1f879_113.awsui_variant-inline-icon_93a1u_1f879_117:not(#\9), .awsui_item-element_93a1u_1f879_93.awsui_highlighted_93a1u_1f879_113.awsui_variant-normal_93a1u_1f879_117:not(#\9), .awsui_item-element_93a1u_1f879_93.awsui_highlighted_93a1u_1f879_113.awsui_variant-primary_93a1u_1f879_117:not(#\9) {
  background-color: var(--color-background-dropdown-item-hover-6qhcjz, #f2f3f3);
  border-color: var(--color-border-dropdown-item-hover-5oku75, #879596);
  border-radius: var(--border-radius-item-fcd5og, 0px);
}
.awsui_item-element_93a1u_1f879_93.awsui_highlighted_93a1u_1f879_113.awsui_variant-icon_93a1u_1f879_117.awsui_disabled_93a1u_1f879_103:not(#\9), .awsui_item-element_93a1u_1f879_93.awsui_highlighted_93a1u_1f879_113.awsui_variant-inline-icon_93a1u_1f879_117.awsui_disabled_93a1u_1f879_103:not(#\9), .awsui_item-element_93a1u_1f879_93.awsui_highlighted_93a1u_1f879_113.awsui_variant-normal_93a1u_1f879_117.awsui_disabled_93a1u_1f879_103:not(#\9), .awsui_item-element_93a1u_1f879_93.awsui_highlighted_93a1u_1f879_113.awsui_variant-primary_93a1u_1f879_117.awsui_disabled_93a1u_1f879_103:not(#\9) {
  color: var(--color-text-dropdown-item-dimmed-94uait, #aab7b8);
  border-color: var(--color-border-dropdown-item-dimmed-hover-t0ewzv, #879596);
  background-color: var(--color-background-dropdown-item-dimmed-ta7f22, transparent);
}
.awsui_item-element_93a1u_1f879_93.awsui_highlighted_93a1u_1f879_113.awsui_variant-icon_93a1u_1f879_117.awsui_is-focused_93a1u_1f879_127:not(#\9), .awsui_item-element_93a1u_1f879_93.awsui_highlighted_93a1u_1f879_113.awsui_variant-inline-icon_93a1u_1f879_117.awsui_is-focused_93a1u_1f879_127:not(#\9), .awsui_item-element_93a1u_1f879_93.awsui_highlighted_93a1u_1f879_113.awsui_variant-normal_93a1u_1f879_117.awsui_is-focused_93a1u_1f879_127:not(#\9), .awsui_item-element_93a1u_1f879_93.awsui_highlighted_93a1u_1f879_113.awsui_variant-primary_93a1u_1f879_117.awsui_is-focused_93a1u_1f879_127:not(#\9) {
  border-color: var(--color-border-item-focused-t884ih, #0073bb);
  box-shadow: inset 0 0 0 var(--border-control-focus-ring-shadow-spread-oufv0y, 1px) var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_item-element_93a1u_1f879_93.awsui_variant-navigation_93a1u_1f879_131.awsui_highlighted_93a1u_1f879_113:not(#\9) {
  color: var(--color-text-accent-qe8oro, #0073bb);
}
.awsui_item-element_93a1u_1f879_93.awsui_variant-navigation_93a1u_1f879_131.awsui_first_93a1u_1f879_134:not(#\9):not(.awsui_has-category-header_93a1u_1f879_134) {
  padding-top: var(--space-xxs-a6783b, 4px);
}
.awsui_item-element_93a1u_1f879_93.awsui_variant-navigation_93a1u_1f879_131.awsui_last_93a1u_1f879_110:not(#\9) {
  padding-bottom: var(--space-xxs-a6783b, 4px);
}
.awsui_item-element_93a1u_1f879_93.awsui_variant-navigation_93a1u_1f879_131.awsui_first_93a1u_1f879_134.awsui_last_93a1u_1f879_110:not(#\9) {
  padding-bottom: var(--space-xxs-a6783b, 4px);
  padding-top: var(--space-xxs-a6783b, 4px);
}
.awsui_item-element_93a1u_1f879_93.awsui_variant-navigation_93a1u_1f879_131.awsui_last_93a1u_1f879_110:not(#\9):last-child {
  padding-bottom: var(--space-xxs-a6783b, 4px);
}

.awsui_menu-item_93a1u_1f879_148:not(#\9) {
  min-width: 0;
  -ms-word-break: break-all;
  word-break: break-word;
  display: flex;
  align-items: flex-start;
  padding: var(--space-xxs-a6783b, 4px) var(--space-button-horizontal-kqt1zg, 20px);
  color: inherit;
  text-decoration: none;
  /* stylelint-disable-next-line selector-max-type */
}
.awsui_menu-item_93a1u_1f879_148:not(#\9):focus {
  outline: none;
}
.awsui_has-category-header_93a1u_1f879_134 > .awsui_menu-item_93a1u_1f879_148:not(#\9), .awsui_has-category-header_93a1u_1f879_134 > span > .awsui_menu-item_93a1u_1f879_148:not(#\9) {
  padding-left: calc(var(--space-s-rd607g, 12px) + var(--space-button-horizontal-kqt1zg, 20px));
}

.awsui_icon_93a1u_1f879_166:not(#\9) {
  padding-right: var(--space-xs-inub5w, 8px);
  flex-shrink: 0;
}

.awsui_external-icon_93a1u_1f879_171:not(#\9) {
  margin-left: var(--space-xxs-a6783b, 4px);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_header_16mm3_fan6x_93:not(#\9) {
  position: relative;
  margin: 0;
  color: var(--color-text-dropdown-group-label-ihg7kk, #545b64);
  border: var(--border-divider-list-width-fsy9j8, 1px) solid transparent;
  border-left: 0;
  border-right: 0;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  padding: calc(
  var(--space-xxs-a6783b, 4px) + (var(--border-item-width-f0bcsu, 1px) - var(--border-divider-list-width-fsy9j8, 1px))
) calc(var(--space-button-horizontal-kqt1zg, 20px) + var(--border-item-width-f0bcsu, 1px));
  z-index: 1;
}
.awsui_header_16mm3_fan6x_93.awsui_disabled_16mm3_fan6x_108:not(#\9) {
  color: var(--color-text-dropdown-item-disabled-g9c04k, #aab7b8);
  cursor: default;
}
.awsui_header_16mm3_fan6x_93.awsui_expandable-header_16mm3_fan6x_112:not(#\9) {
  border-top-color: var(--color-border-dropdown-group-u3qa6a, #eaeded);
  border-bottom-color: var(--color-border-dropdown-group-u3qa6a, #eaeded);
  cursor: pointer;
}
.awsui_header_16mm3_fan6x_93.awsui_expandable-header_16mm3_fan6x_112.awsui_disabled_16mm3_fan6x_108:not(#\9) {
  cursor: default;
}
.awsui_header_16mm3_fan6x_93.awsui_expandable-header_16mm3_fan6x_112:not(#\9):focus {
  outline: none;
}
.awsui_header_16mm3_fan6x_93.awsui_expandable-header_16mm3_fan6x_112.awsui_rolled-down_16mm3_fan6x_123:not(#\9) {
  border-bottom-color: transparent;
}
.awsui_header_16mm3_fan6x_93.awsui_expandable-header_16mm3_fan6x_112.awsui_highlighted_16mm3_fan6x_126:not(#\9) {
  background-color: var(--color-background-dropdown-item-hover-6qhcjz, #f2f3f3);
  color: var(--color-text-dropdown-item-highlighted-t48eqn, #16191f);
  padding: var(--space-xxs-a6783b, 4px) var(--space-button-horizontal-kqt1zg, 20px);
  border: var(--border-item-width-f0bcsu, 1px) solid var(--color-border-dropdown-item-hover-5oku75, #879596);
  border-radius: var(--border-radius-item-fcd5og, 0px);
  z-index: 2;
}
.awsui_header_16mm3_fan6x_93.awsui_expandable-header_16mm3_fan6x_112.awsui_highlighted_16mm3_fan6x_126.awsui_disabled_16mm3_fan6x_108:not(#\9) {
  background-color: var(--color-background-dropdown-item-dimmed-ta7f22, transparent);
  border-color: var(--color-border-dropdown-item-dimmed-hover-t0ewzv, #879596);
  color: var(--color-text-dropdown-item-dimmed-94uait, #aab7b8);
}
.awsui_header_16mm3_fan6x_93.awsui_expandable-header_16mm3_fan6x_112.awsui_highlighted_16mm3_fan6x_126.awsui_is-focused_16mm3_fan6x_139:not(#\9) {
  border-color: var(--color-border-item-focused-t884ih, #0073bb);
  box-shadow: inset 0 0 0 var(--border-control-focus-ring-shadow-spread-oufv0y, 1px) var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_header_16mm3_fan6x_93.awsui_expandable-header_16mm3_fan6x_112.awsui_variant-navigation_16mm3_fan6x_143:not(#\9) {
  padding-top: var(--space-xs-inub5w, 8px);
  padding-bottom: var(--space-xs-inub5w, 8px);
}
.awsui_header_16mm3_fan6x_93.awsui_expandable-header_16mm3_fan6x_112.awsui_variant-navigation_16mm3_fan6x_143.awsui_highlighted_16mm3_fan6x_126:not(#\9) {
  border-color: transparent;
  border-top-color: var(--color-border-dropdown-group-u3qa6a, #eaeded);
  border-bottom-color: var(--color-border-dropdown-group-u3qa6a, #eaeded);
  background-color: transparent;
  color: var(--color-text-accent-qe8oro, #0073bb);
}

.awsui_category_16mm3_fan6x_155:not(#\9) {
  list-style: none;
  margin-top: calc(-1 * var(--border-divider-list-width-fsy9j8, 1px));
  padding: 0;
}
.awsui_category_16mm3_fan6x_155:not(#\9):first-child {
  margin-top: 0;
}
.awsui_category_16mm3_fan6x_155.awsui_expandable_16mm3_fan6x_112:not(#\9) {
  border-top: 0;
}
.awsui_category_16mm3_fan6x_155:not(#\9):last-child {
  border-bottom: none;
}
.awsui_category_16mm3_fan6x_155.awsui_variant-navigation_16mm3_fan6x_143:not(#\9) {
  padding-top: var(--space-xxs-a6783b, 4px);
}
.awsui_category_16mm3_fan6x_155.awsui_variant-navigation_16mm3_fan6x_143.awsui_expandable_16mm3_fan6x_112:not(#\9) {
  padding-top: 0;
}

.awsui_expand-icon_16mm3_fan6x_176:not(#\9) {
  position: relative;
  left: var(--space-s-rd607g, 12px);
  width: var(--space-m-sptmsg, 16px);
  display: inline-block;
  transition: transform var(--motion-duration-rotate-180-i3ygzg, 135ms) var(--motion-easing-rotate-180-qx5hdf, cubic-bezier(0.165, 0.84, 0.44, 1));
}
.awsui_expand-icon-up_16mm3_fan6x_183:not(#\9) {
  transform: rotate(-180deg);
}
.awsui_expand-icon-right_16mm3_fan6x_186:not(#\9) {
  transform: rotate(-90deg);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_expand-icon_16mm3_fan6x_176:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_expand-icon_16mm3_fan6x_176:not(#\9), .awsui-mode-entering .awsui_expand-icon_16mm3_fan6x_176:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_items-list-container_16mm3_fan6x_200:not(#\9) {
  padding: 0;
  margin: -1px 0 0 0;
  overflow-y: auto;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_14cnr_ulspv_93:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  position: static;
  white-space: inherit;
  display: inline;
}
.awsui_root_14cnr_ulspv_93 > .awsui_trigger_14cnr_ulspv_108:not(#\9) {
  display: inline;
}
.awsui_root_14cnr_ulspv_93 > .awsui_dropdown_14cnr_ulspv_111:not(#\9) {
  position: static;
  -webkit-user-select: none;
          user-select: none;
  background-color: var(--color-background-dropdown-item-default-2p2g22, #ffffff);
  outline: none;
  border-top: none;
  border-bottom: none;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.awsui_root_14cnr_ulspv_93 > .awsui_dropdown_14cnr_ulspv_111.awsui_nowrap_14cnr_ulspv_122:not(#\9) {
  white-space: nowrap;
}
.awsui_root_14cnr_ulspv_93 > .awsui_dropdown_14cnr_ulspv_111.awsui_open_14cnr_ulspv_125:not(#\9) {
  display: flex;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_options-list_19gcf_1bx3f_93:not(#\9) {
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  white-space: inherit;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
  border-radius: var(--border-radius-dropdown-ewtx9q, 0px);
}

.awsui_decrease-top-margin_19gcf_1bx3f_115:not(#\9) {
  margin-top: -1px;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_icon-shake_1cbgc_148i4_97:not(#\9) {
  display: inline-block;
  animation: awsui_awsui-motion-shake-horizontally_1cbgc_148i4_1 var(--motion-duration-refresh-only-medium-af0v35, 165ms);
}
@keyframes awsui_awsui-motion-shake-horizontally_1cbgc_148i4_1 {
  0% {
    transform: translateX(-5px);
    animation-timing-function: linear;
  }
  50% {
    transform: translateX(5px);
    animation-timing-function: var(--motion-easing-refresh-only-a-yzzzm8, cubic-bezier(0, 0, 0, 1));
  }
  100% {
    transform: translateX(0px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_icon-shake_1cbgc_148i4_97:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_icon-shake_1cbgc_148i4_97:not(#\9), .awsui-mode-entering .awsui_icon-shake_1cbgc_148i4_97:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_container-fade-in_1cbgc_148i4_125:not(#\9) {
  animation: awsui_awsui-motion-fade-in-0_1cbgc_148i4_1 var(--motion-duration-refresh-only-medium-af0v35, 165ms) var(--motion-easing-refresh-only-a-yzzzm8, cubic-bezier(0, 0, 0, 1));
}
@keyframes awsui_awsui-motion-fade-in-0_1cbgc_148i4_1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_container-fade-in_1cbgc_148i4_125:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_container-fade-in_1cbgc_148i4_125:not(#\9), .awsui-mode-entering .awsui_container-fade-in_1cbgc_148i4_125:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_root_1cbgc_148i4_147:not(#\9) {
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
.awsui_root_1cbgc_148i4_147.awsui_status-error_1cbgc_148i4_156:not(#\9) {
  color: var(--color-text-status-error-a5tqz1, #d13212);
}
.awsui_root_1cbgc_148i4_147.awsui_status-warning_1cbgc_148i4_159:not(#\9) {
  color: var(--color-text-status-warning-g3wln0, #906806);
}
.awsui_root_1cbgc_148i4_147.awsui_status-success_1cbgc_148i4_162:not(#\9) {
  color: var(--color-text-status-success-a6oxaq, #1d8102);
}
.awsui_root_1cbgc_148i4_147.awsui_status-info_1cbgc_148i4_165:not(#\9) {
  color: var(--color-text-status-info-lfbxn4, #0073bb);
}
.awsui_root_1cbgc_148i4_147.awsui_status-stopped_1cbgc_148i4_168:not(#\9) {
  color: var(--color-text-status-inactive-8fmnw5, #687078);
}
.awsui_root_1cbgc_148i4_147.awsui_status-pending_1cbgc_148i4_171:not(#\9) {
  color: var(--color-text-status-inactive-8fmnw5, #687078);
}
.awsui_root_1cbgc_148i4_147.awsui_status-in-progress_1cbgc_148i4_174:not(#\9) {
  color: var(--color-text-status-inactive-8fmnw5, #687078);
}
.awsui_root_1cbgc_148i4_147.awsui_status-loading_1cbgc_148i4_177:not(#\9) {
  color: var(--color-text-status-inactive-8fmnw5, #687078);
}
.awsui_root_1cbgc_148i4_147.awsui_color-override-red_1cbgc_148i4_180:not(#\9) {
  color: var(--color-text-status-error-a5tqz1, #d13212);
}
.awsui_root_1cbgc_148i4_147.awsui_color-override-grey_1cbgc_148i4_183:not(#\9) {
  color: var(--color-text-status-inactive-8fmnw5, #687078);
}
.awsui_root_1cbgc_148i4_147.awsui_color-override-blue_1cbgc_148i4_186:not(#\9) {
  color: var(--color-text-status-info-lfbxn4, #0073bb);
}
.awsui_root_1cbgc_148i4_147.awsui_color-override-green_1cbgc_148i4_189:not(#\9) {
  color: var(--color-text-status-success-a6oxaq, #1d8102);
}

.awsui_icon_1cbgc_148i4_97:not(#\9) {
  padding-right: var(--space-xxs-a6783b, 4px);
}

.awsui_container_1cbgc_148i4_125:not(#\9) {
  word-break: break-all;
  word-wrap: break-word;
}
.awsui_container_1cbgc_148i4_125.awsui_display-inline_1cbgc_148i4_201:not(#\9) {
  display: inline;
}
.awsui_container_1cbgc_148i4_125.awsui_display-inline-block_1cbgc_148i4_204:not(#\9) {
  display: inline-block;
}

.awsui_overflow-ellipsis_1cbgc_148i4_208:not(#\9) {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: text-bottom;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_link_4c84z_xzhnr_93:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  display: inline;
  white-space: inherit;
  color: var(--color-text-link-default-lwrgyu, #0073bb);
  font-weight: inherit;
  letter-spacing: normal;
  text-decoration: none;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: transparent;
  transition-property: color, -webkit-text-decoration;
  transition-property: color, text-decoration;
  transition-property: color, text-decoration, -webkit-text-decoration;
  transition-duration: var(--motion-duration-refresh-only-medium-af0v35, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_link_4c84z_xzhnr_93:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_link_4c84z_xzhnr_93:not(#\9), .awsui-mode-entering .awsui_link_4c84z_xzhnr_93:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_link_4c84z_xzhnr_93:not(#\9):hover {
  cursor: pointer;
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
}
.awsui_link_4c84z_xzhnr_93:not(#\9):focus {
  outline: none;
}
.awsui_link_4c84z_xzhnr_93:not(#\9):active {
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
}
.awsui_link_4c84z_xzhnr_93:not(#\9):active, .awsui_link_4c84z_xzhnr_93:not(#\9):focus, .awsui_link_4c84z_xzhnr_93:not(#\9):hover {
  text-decoration: underline;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: currentColor;
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-secondary_4c84z_xzhnr_140:not(#\9) {
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  color: var(--color-text-link-default-lwrgyu, #0073bb);
  font-weight: inherit;
  letter-spacing: normal;
  text-decoration: none;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: transparent;
  transition-property: color, -webkit-text-decoration;
  transition-property: color, text-decoration;
  transition-property: color, text-decoration, -webkit-text-decoration;
  transition-duration: var(--motion-duration-refresh-only-medium-af0v35, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_link_4c84z_xzhnr_93.awsui_variant-secondary_4c84z_xzhnr_140:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_link_4c84z_xzhnr_93.awsui_variant-secondary_4c84z_xzhnr_140:not(#\9), .awsui-mode-entering .awsui_link_4c84z_xzhnr_93.awsui_variant-secondary_4c84z_xzhnr_140:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-secondary_4c84z_xzhnr_140:not(#\9):hover {
  cursor: pointer;
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-secondary_4c84z_xzhnr_140:not(#\9):focus {
  outline: none;
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-secondary_4c84z_xzhnr_140:not(#\9):active {
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-secondary_4c84z_xzhnr_140:not(#\9):active, .awsui_link_4c84z_xzhnr_93.awsui_variant-secondary_4c84z_xzhnr_140:not(#\9):focus, .awsui_link_4c84z_xzhnr_93.awsui_variant-secondary_4c84z_xzhnr_140:not(#\9):hover {
  text-decoration: underline;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: currentColor;
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-primary_4c84z_xzhnr_177:not(#\9) {
  color: var(--color-text-link-default-lwrgyu, #0073bb);
  font-weight: inherit;
  letter-spacing: normal;
  text-decoration: underline;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: currentColor;
  transition-property: color, -webkit-text-decoration;
  transition-property: color, text-decoration;
  transition-property: color, text-decoration, -webkit-text-decoration;
  transition-duration: var(--motion-duration-refresh-only-medium-af0v35, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_link_4c84z_xzhnr_93.awsui_variant-primary_4c84z_xzhnr_177:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_link_4c84z_xzhnr_93.awsui_variant-primary_4c84z_xzhnr_177:not(#\9), .awsui-mode-entering .awsui_link_4c84z_xzhnr_93.awsui_variant-primary_4c84z_xzhnr_177:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-primary_4c84z_xzhnr_177:not(#\9):hover {
  cursor: pointer;
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-primary_4c84z_xzhnr_177:not(#\9):focus {
  outline: none;
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-primary_4c84z_xzhnr_177:not(#\9):active {
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-primary_4c84z_xzhnr_177:not(#\9):active, .awsui_link_4c84z_xzhnr_93.awsui_variant-primary_4c84z_xzhnr_177:not(#\9):focus, .awsui_link_4c84z_xzhnr_93.awsui_variant-primary_4c84z_xzhnr_177:not(#\9):hover {
  text-decoration: underline;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: currentColor;
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-info_4c84z_xzhnr_212:not(#\9) {
  -webkit-font-smoothing: var(--font-smoothing-webkit-rg3jdt, auto);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-58s982, auto);
  color: var(--color-text-link-default-lwrgyu, #0073bb);
  font-weight: var(--font-button-weight-jfejp1, 700);
  letter-spacing: 0.005em;
  text-decoration: none;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: transparent;
  transition-property: color, -webkit-text-decoration;
  transition-property: color, text-decoration;
  transition-property: color, text-decoration, -webkit-text-decoration;
  transition-duration: var(--motion-duration-refresh-only-medium-af0v35, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_link_4c84z_xzhnr_93.awsui_variant-info_4c84z_xzhnr_212:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_link_4c84z_xzhnr_93.awsui_variant-info_4c84z_xzhnr_212:not(#\9), .awsui-mode-entering .awsui_link_4c84z_xzhnr_93.awsui_variant-info_4c84z_xzhnr_212:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-info_4c84z_xzhnr_212:not(#\9):hover {
  cursor: pointer;
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-info_4c84z_xzhnr_212:not(#\9):focus {
  outline: none;
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-info_4c84z_xzhnr_212:not(#\9):active {
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-info_4c84z_xzhnr_212:not(#\9):active, .awsui_link_4c84z_xzhnr_93.awsui_variant-info_4c84z_xzhnr_212:not(#\9):focus, .awsui_link_4c84z_xzhnr_93.awsui_variant-info_4c84z_xzhnr_212:not(#\9):hover {
  text-decoration: underline;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: var(--color-text-link-button-underline-hover-mp175e, currentColor);
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-value-large_4c84z_xzhnr_249:not(#\9) {
  color: var(--color-text-link-default-lwrgyu, #0073bb);
  font-weight: var(--font-box-value-large-weight-wtv0yd, 300);
  text-decoration: underline;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: currentColor;
  text-decoration-thickness: 0.3rem;
  transition-property: color, -webkit-text-decoration;
  transition-property: color, text-decoration;
  transition-property: color, text-decoration, -webkit-text-decoration;
  transition-duration: var(--motion-duration-refresh-only-medium-af0v35, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_link_4c84z_xzhnr_93.awsui_variant-value-large_4c84z_xzhnr_249:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_link_4c84z_xzhnr_93.awsui_variant-value-large_4c84z_xzhnr_249:not(#\9), .awsui-mode-entering .awsui_link_4c84z_xzhnr_93.awsui_variant-value-large_4c84z_xzhnr_249:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-value-large_4c84z_xzhnr_249:not(#\9):hover {
  cursor: pointer;
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-value-large_4c84z_xzhnr_249:not(#\9):focus {
  outline: none;
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-value-large_4c84z_xzhnr_249:not(#\9):active {
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-value-large_4c84z_xzhnr_249:not(#\9):active, .awsui_link_4c84z_xzhnr_93.awsui_variant-value-large_4c84z_xzhnr_249:not(#\9):focus, .awsui_link_4c84z_xzhnr_93.awsui_variant-value-large_4c84z_xzhnr_249:not(#\9):hover {
  text-decoration: underline;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: currentColor;
  text-decoration-thickness: 0.3rem;
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-top-navigation_4c84z_xzhnr_285:not(#\9) {
  color: var(--color-text-interactive-default-djvtmz, #545b64);
  font-weight: 700;
  letter-spacing: 0.005em;
  text-decoration: none;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: transparent;
  transition-property: color, -webkit-text-decoration;
  transition-property: color, text-decoration;
  transition-property: color, text-decoration, -webkit-text-decoration;
  transition-duration: var(--motion-duration-refresh-only-medium-af0v35, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_link_4c84z_xzhnr_93.awsui_variant-top-navigation_4c84z_xzhnr_285:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_link_4c84z_xzhnr_93.awsui_variant-top-navigation_4c84z_xzhnr_285:not(#\9), .awsui-mode-entering .awsui_link_4c84z_xzhnr_93.awsui_variant-top-navigation_4c84z_xzhnr_285:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-top-navigation_4c84z_xzhnr_285:not(#\9):hover {
  cursor: pointer;
  color: var(--color-text-interactive-hover-55cagk, #16191f);
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-top-navigation_4c84z_xzhnr_285:not(#\9):focus {
  outline: none;
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-top-navigation_4c84z_xzhnr_285:not(#\9):active {
  color: var(--color-text-interactive-active-j3cxbp, #16191f);
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-top-navigation_4c84z_xzhnr_285:not(#\9):active, .awsui_link_4c84z_xzhnr_93.awsui_variant-top-navigation_4c84z_xzhnr_285:not(#\9):focus, .awsui_link_4c84z_xzhnr_93.awsui_variant-top-navigation_4c84z_xzhnr_285:not(#\9):hover {
  text-decoration: underline;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: transparent;
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-recovery_4c84z_xzhnr_320:not(#\9) {
  color: var(--color-text-link-default-lwrgyu, #0073bb);
  font-weight: var(--font-link-button-weight-gsuhhv, 400);
  letter-spacing: var(--font-link-button-letter-spacing-y4oyax, normal);
  text-decoration: underline;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: var(--color-text-link-button-underline-vw7ht0, currentColor);
  transition-property: color, -webkit-text-decoration;
  transition-property: color, text-decoration;
  transition-property: color, text-decoration, -webkit-text-decoration;
  transition-duration: var(--motion-duration-refresh-only-medium-af0v35, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_link_4c84z_xzhnr_93.awsui_variant-recovery_4c84z_xzhnr_320:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_link_4c84z_xzhnr_93.awsui_variant-recovery_4c84z_xzhnr_320:not(#\9), .awsui-mode-entering .awsui_link_4c84z_xzhnr_93.awsui_variant-recovery_4c84z_xzhnr_320:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-recovery_4c84z_xzhnr_320:not(#\9):hover {
  cursor: pointer;
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-recovery_4c84z_xzhnr_320:not(#\9):focus {
  outline: none;
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-recovery_4c84z_xzhnr_320:not(#\9):active {
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
}
.awsui_link_4c84z_xzhnr_93.awsui_variant-recovery_4c84z_xzhnr_320:not(#\9):active, .awsui_link_4c84z_xzhnr_93.awsui_variant-recovery_4c84z_xzhnr_320:not(#\9):focus, .awsui_link_4c84z_xzhnr_93.awsui_variant-recovery_4c84z_xzhnr_320:not(#\9):hover {
  text-decoration: underline;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: var(--color-text-link-button-underline-hover-mp175e, currentColor);
}
.awsui_link_4c84z_xzhnr_93.awsui_button_4c84z_xzhnr_355:not(#\9) {
  -webkit-font-smoothing: var(--font-smoothing-webkit-rg3jdt, auto);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-58s982, auto);
  color: var(--color-text-link-button-normal-default-x8uncu, #545b64);
  font-weight: var(--font-button-weight-jfejp1, 700);
  letter-spacing: var(--font-button-letter-spacing-ahp09k, 0.25px);
  text-decoration: none;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: transparent;
  transition-property: color, -webkit-text-decoration;
  transition-property: color, text-decoration;
  transition-property: color, text-decoration, -webkit-text-decoration;
  transition-duration: var(--motion-duration-refresh-only-medium-af0v35, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_link_4c84z_xzhnr_93.awsui_button_4c84z_xzhnr_355:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_link_4c84z_xzhnr_93.awsui_button_4c84z_xzhnr_355:not(#\9), .awsui-mode-entering .awsui_link_4c84z_xzhnr_93.awsui_button_4c84z_xzhnr_355:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_link_4c84z_xzhnr_93.awsui_button_4c84z_xzhnr_355:not(#\9):hover {
  cursor: pointer;
  color: var(--color-text-link-button-normal-hover-hm6g27, #16191f);
}
.awsui_link_4c84z_xzhnr_93.awsui_button_4c84z_xzhnr_355:not(#\9):focus {
  outline: none;
}
.awsui_link_4c84z_xzhnr_93.awsui_button_4c84z_xzhnr_355:not(#\9):active {
  color: var(--color-text-link-button-normal-active-8cfe84, #16191f);
}
.awsui_link_4c84z_xzhnr_93.awsui_button_4c84z_xzhnr_355:not(#\9):active, .awsui_link_4c84z_xzhnr_93.awsui_button_4c84z_xzhnr_355:not(#\9):focus, .awsui_link_4c84z_xzhnr_93.awsui_button_4c84z_xzhnr_355:not(#\9):hover {
  text-decoration: underline;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: transparent;
}
.awsui_link_4c84z_xzhnr_93.awsui_color-inverted_4c84z_xzhnr_392:not(#\9) {
  color: var(--color-text-notification-default-d9f7z3, #fafafa);
}
.awsui_link_4c84z_xzhnr_93.awsui_color-inverted_4c84z_xzhnr_392:not(#\9):not(.awsui_button_4c84z_xzhnr_355) {
  text-decoration: underline;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: currentColor;
}
.awsui_link_4c84z_xzhnr_93.awsui_color-inverted_4c84z_xzhnr_392:not(#\9):hover {
  color: var(--color-text-link-inverted-hover-o3xt6o, #fafafa);
}
body[data-awsui-focus-visible=true] .awsui_link_4c84z_xzhnr_93:not(#\9):focus {
  outline: thin dotted;
  outline: var(--border-link-focus-ring-outline-x5z0d3, 5px auto Highlight);
  outline-offset: 2px;
  outline-color: var(--color-border-item-focused-t884ih, #0073bb);
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 var(--border-link-focus-ring-shadow-spread-1nkh7a, 0px) var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_link_4c84z_xzhnr_93.awsui_font-size-body-s_4c84z_xzhnr_411:not(#\9) {
  font-size: var(--font-size-body-s-ucr7d6, 12px);
  line-height: var(--line-height-body-s-lnbzsa, 16px);
  letter-spacing: var(--letter-spacing-body-s-rksemx, normal);
}
.awsui_link_4c84z_xzhnr_93.awsui_font-size-body-m_4c84z_xzhnr_416:not(#\9) {
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
}
.awsui_link_4c84z_xzhnr_93.awsui_font-size-heading-xs_4c84z_xzhnr_420:not(#\9) {
  font-size: var(--font-size-heading-xs-4u3wan, 16px);
  line-height: var(--line-height-heading-xs-au4jub, 20px);
}
.awsui_link_4c84z_xzhnr_93.awsui_font-size-heading-s_4c84z_xzhnr_424:not(#\9) {
  font-size: var(--font-size-heading-s-hwcx2q, 16px);
  line-height: var(--line-height-heading-s-m093oq, 20px);
  letter-spacing: var(--letter-spacing-heading-s-2369b0, normal);
}
.awsui_link_4c84z_xzhnr_93.awsui_font-size-heading-m_4c84z_xzhnr_429:not(#\9) {
  font-size: var(--font-size-heading-m-ulervk, 18px);
  line-height: var(--line-height-heading-m-88a3m6, 22px);
  letter-spacing: var(--letter-spacing-heading-m-9g78ia, normal);
}
.awsui_link_4c84z_xzhnr_93.awsui_font-size-heading-l_4c84z_xzhnr_434:not(#\9) {
  font-size: var(--font-size-heading-l-u89ro8, 18px);
  line-height: var(--line-height-heading-l-z752l3, 22px);
  letter-spacing: var(--letter-spacing-heading-l-v8uzhr, normal);
}
.awsui_link_4c84z_xzhnr_93.awsui_font-size-heading-xl_4c84z_xzhnr_439:not(#\9) {
  font-size: var(--font-size-heading-xl-z8h967, 28px);
  line-height: var(--line-height-heading-xl-44izce, 36px);
  letter-spacing: var(--letter-spacing-heading-xl-y4tqgw, normal);
}
.awsui_link_4c84z_xzhnr_93.awsui_font-size-display-l_4c84z_xzhnr_444:not(#\9) {
  font-size: var(--font-size-display-l-ij3zok, 44px);
  line-height: var(--line-height-display-l-aqze16, 56px);
  letter-spacing: var(--letter-spacing-display-l-frfij1, normal);
}
.awsui_link_4c84z_xzhnr_93.awsui_font-size-inherit_4c84z_xzhnr_449:not(#\9) {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.awsui_icon-wrapper_4c84z_xzhnr_455:not(#\9) {
  white-space: nowrap;
}

.awsui_icon_4c84z_xzhnr_455:not(#\9) {
  display: inline-block;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_grid_14yj0_mvice_93:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  display: flex;
  flex-wrap: wrap;
  margin: calc(var(--space-grid-gutter-pfst95, 20px) / -2);
  pointer-events: none;
}
.awsui_grid_14yj0_mvice_93.awsui_no-gutters_14yj0_mvice_109:not(#\9) {
  margin: 0;
}

.awsui_grid-column_14yj0_mvice_113:not(#\9) {
  box-sizing: border-box;
  position: relative;
  padding: calc(var(--space-grid-gutter-pfst95, 20px) / 2);
  display: flex;
}
.awsui_grid_14yj0_mvice_93.awsui_no-gutters_14yj0_mvice_109 > .awsui_grid-column_14yj0_mvice_113:not(#\9) {
  padding: 0;
}
.awsui_grid-column_14yj0_mvice_113.awsui_colspan-1_14yj0_mvice_122:not(#\9) {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_push-1_14yj0_mvice_126:not(#\9) {
  left: 8.3333333333%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_pull-1_14yj0_mvice_129:not(#\9) {
  right: 8.3333333333%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_colspan-2_14yj0_mvice_132:not(#\9) {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_push-2_14yj0_mvice_136:not(#\9) {
  left: 16.6666666667%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_pull-2_14yj0_mvice_139:not(#\9) {
  right: 16.6666666667%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_colspan-3_14yj0_mvice_142:not(#\9) {
  flex: 0 0 25%;
  max-width: 25%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_push-3_14yj0_mvice_146:not(#\9) {
  left: 25%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_pull-3_14yj0_mvice_149:not(#\9) {
  right: 25%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_colspan-4_14yj0_mvice_152:not(#\9) {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_push-4_14yj0_mvice_156:not(#\9) {
  left: 33.3333333333%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_pull-4_14yj0_mvice_159:not(#\9) {
  right: 33.3333333333%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_colspan-5_14yj0_mvice_162:not(#\9) {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_push-5_14yj0_mvice_166:not(#\9) {
  left: 41.6666666667%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_pull-5_14yj0_mvice_169:not(#\9) {
  right: 41.6666666667%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_colspan-6_14yj0_mvice_172:not(#\9) {
  flex: 0 0 50%;
  max-width: 50%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_push-6_14yj0_mvice_176:not(#\9) {
  left: 50%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_pull-6_14yj0_mvice_179:not(#\9) {
  right: 50%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_colspan-7_14yj0_mvice_182:not(#\9) {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_push-7_14yj0_mvice_186:not(#\9) {
  left: 58.3333333333%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_pull-7_14yj0_mvice_189:not(#\9) {
  right: 58.3333333333%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_colspan-8_14yj0_mvice_192:not(#\9) {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_push-8_14yj0_mvice_196:not(#\9) {
  left: 66.6666666667%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_pull-8_14yj0_mvice_199:not(#\9) {
  right: 66.6666666667%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_colspan-9_14yj0_mvice_202:not(#\9) {
  flex: 0 0 75%;
  max-width: 75%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_push-9_14yj0_mvice_206:not(#\9) {
  left: 75%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_pull-9_14yj0_mvice_209:not(#\9) {
  right: 75%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_colspan-10_14yj0_mvice_212:not(#\9) {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_push-10_14yj0_mvice_216:not(#\9) {
  left: 83.3333333333%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_pull-10_14yj0_mvice_219:not(#\9) {
  right: 83.3333333333%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_colspan-11_14yj0_mvice_222:not(#\9) {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_push-11_14yj0_mvice_226:not(#\9) {
  left: 91.6666666667%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_pull-11_14yj0_mvice_229:not(#\9) {
  right: 91.6666666667%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_colspan-12_14yj0_mvice_232:not(#\9) {
  flex: 0 0 100%;
  max-width: 100%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_push-12_14yj0_mvice_236:not(#\9) {
  left: 100%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_pull-12_14yj0_mvice_239:not(#\9) {
  right: 100%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_push-0_14yj0_mvice_242:not(#\9) {
  left: auto;
}
.awsui_grid-column_14yj0_mvice_113.awsui_pull-0_14yj0_mvice_245:not(#\9) {
  right: auto;
}
.awsui_grid-column_14yj0_mvice_113.awsui_offset-1_14yj0_mvice_248:not(#\9) {
  margin-left: 8.3333333333%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_offset-2_14yj0_mvice_251:not(#\9) {
  margin-left: 16.6666666667%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_offset-3_14yj0_mvice_254:not(#\9) {
  margin-left: 25%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_offset-4_14yj0_mvice_257:not(#\9) {
  margin-left: 33.3333333333%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_offset-5_14yj0_mvice_260:not(#\9) {
  margin-left: 41.6666666667%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_offset-6_14yj0_mvice_263:not(#\9) {
  margin-left: 50%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_offset-7_14yj0_mvice_266:not(#\9) {
  margin-left: 58.3333333333%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_offset-8_14yj0_mvice_269:not(#\9) {
  margin-left: 66.6666666667%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_offset-9_14yj0_mvice_272:not(#\9) {
  margin-left: 75%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_offset-10_14yj0_mvice_275:not(#\9) {
  margin-left: 83.3333333333%;
}
.awsui_grid-column_14yj0_mvice_113.awsui_offset-11_14yj0_mvice_278:not(#\9) {
  margin-left: 91.6666666667%;
}

.awsui_restore-pointer-events_14yj0_mvice_282:not(#\9) {
  pointer-events: auto;
  width: 100%;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_error-icon-shake-wrapper_14mhv_vu9uh_97:not(#\9) {
  animation: awsui_awsui-motion-shake-horizontally_14mhv_vu9uh_1 var(--motion-duration-refresh-only-medium-af0v35, 165ms);
}
@keyframes awsui_awsui-motion-shake-horizontally_14mhv_vu9uh_1 {
  0% {
    transform: translateX(-5px);
    animation-timing-function: linear;
  }
  50% {
    transform: translateX(5px);
    animation-timing-function: var(--motion-easing-refresh-only-a-yzzzm8, cubic-bezier(0, 0, 0, 1));
  }
  100% {
    transform: translateX(0px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_error-icon-shake-wrapper_14mhv_vu9uh_97:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_error-icon-shake-wrapper_14mhv_vu9uh_97:not(#\9), .awsui-mode-entering .awsui_error-icon-shake-wrapper_14mhv_vu9uh_97:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_error-icon-scale-wrapper_14mhv_vu9uh_124:not(#\9) {
  animation: awsui_awsui-motion-scale-popup_14mhv_vu9uh_1 var(--motion-duration-refresh-only-medium-af0v35, 165ms) var(--motion-easing-refresh-only-a-yzzzm8, cubic-bezier(0, 0, 0, 1));
}
@keyframes awsui_awsui-motion-scale-popup_14mhv_vu9uh_1 {
  0% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_error-icon-scale-wrapper_14mhv_vu9uh_124:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_error-icon-scale-wrapper_14mhv_vu9uh_124:not(#\9), .awsui-mode-entering .awsui_error-icon-scale-wrapper_14mhv_vu9uh_124:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_error_14mhv_vu9uh_97:not(#\9) {
  animation: awsui_awsui-motion-fade-in-0_14mhv_vu9uh_1 var(--motion-duration-refresh-only-medium-af0v35, 165ms) var(--motion-easing-refresh-only-a-yzzzm8, cubic-bezier(0, 0, 0, 1));
}
@keyframes awsui_awsui-motion-fade-in-0_14mhv_vu9uh_1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_error_14mhv_vu9uh_97:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_error_14mhv_vu9uh_97:not(#\9), .awsui-mode-entering .awsui_error_14mhv_vu9uh_97:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_root_14mhv_vu9uh_168:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  box-sizing: border-box;
}

.awsui_label_14mhv_vu9uh_182:not(#\9) {
  box-sizing: border-box;
  color: var(--color-text-form-label-ug2d1t, #16191f);
  display: inline;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  font-weight: var(--font-display-label-weight-w2bkol, 400);
  margin-right: var(--space-xs-inub5w, 8px);
}
.awsui_label_14mhv_vu9uh_182:not(#\9):only-child {
  margin: 0;
}

.awsui_info_14mhv_vu9uh_195:not(#\9) {
  padding-left: var(--space-xs-inub5w, 8px);
  border-left: var(--border-divider-section-width-9dl636, 1px) solid var(--color-border-divider-default-1mmknt, #eaeded);
}

.awsui_description_14mhv_vu9uh_200:not(#\9),
.awsui_constraint_14mhv_vu9uh_201:not(#\9) {
  color: var(--color-text-form-secondary-wh2xkx, #687078);
  font-size: var(--font-size-body-s-ucr7d6, 12px);
  line-height: var(--line-height-body-s-lnbzsa, 16px);
  letter-spacing: var(--letter-spacing-body-s-rksemx, normal);
}

.awsui_hints_14mhv_vu9uh_208:not(#\9),
.awsui_constraint-has-error_14mhv_vu9uh_209:not(#\9) {
  padding-top: var(--space-xxs-a6783b, 4px);
}

.awsui_secondary-control_14mhv_vu9uh_213:not(#\9) {
  /* used in test-utils */
}

.awsui_controls_14mhv_vu9uh_217:not(#\9):not(.awsui_label-hidden_14mhv_vu9uh_217) {
  padding-top: var(--space-xxs-a6783b, 4px);
}

.awsui_control_14mhv_vu9uh_217:not(#\9) {
  min-width: 0;
  -ms-word-break: break-all;
  word-break: break-word;
}

.awsui_error_14mhv_vu9uh_97:not(#\9) {
  color: var(--color-text-status-error-a5tqz1, #d13212);
  font-size: var(--font-size-body-s-ucr7d6, 12px);
  line-height: var(--line-height-body-s-lnbzsa, 16px);
  letter-spacing: var(--letter-spacing-body-s-rksemx, normal);
  display: flex;
  align-items: flex-start;
}

.awsui_error__message_14mhv_vu9uh_236:not(#\9) {
  margin-left: var(--space-xxs-a6783b, 4px);
}

.awsui_visually-hidden_14mhv_vu9uh_240:not(#\9) {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_1afi9_aq1fm_93:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
.awsui_root_1afi9_aq1fm_93:not(#\9):not(.awsui_hidden_1afi9_aq1fm_105) {
  border-top: var(--border-divider-list-width-fsy9j8, 1px) solid var(--color-border-dropdown-item-default-062h8i, #eaeded);
}
.awsui_root_1afi9_aq1fm_93:not(#\9):not(.awsui_hidden_1afi9_aq1fm_105).awsui_no-items_1afi9_aq1fm_108 {
  border-top: var(--border-divider-list-width-fsy9j8, 1px) solid var(--color-border-dropdown-item-top-l8o9uk, #eaeded);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_vrgzu_caucr_93:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  padding: var(--space-xxs-a6783b, 4px) var(--space-field-horizontal-wfaq0d, 8px) calc(var(--space-xxs-a6783b, 4px) + var(--space-xxxs-rq3iss, 2px));
  color: var(--color-text-dropdown-footer-349c2x, #687078);
}
.awsui_root_vrgzu_caucr_93 > .awsui_recovery_vrgzu_caucr_107:not(#\9) {
  /* used in test-utils */
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_placeholder_dwuol_1m0xs_93:not(#\9) {
  color: var(--color-text-input-placeholder-vi9sh8, #687078);
  font-style: italic;
}

.awsui_item_dwuol_1m0xs_98:not(#\9) {
  display: flex;
  align-items: center;
}
.awsui_item_dwuol_1m0xs_98 > .awsui_checkbox_dwuol_1m0xs_102:not(#\9) {
  position: relative;
  min-height: var(--size-control-q9uk7g, 14px);
  min-width: var(--size-control-q9uk7g, 14px);
  height: var(--size-control-q9uk7g, 14px);
  width: var(--size-control-q9uk7g, 14px);
  margin-right: var(--space-field-horizontal-wfaq0d, 8px);
}

.awsui_filter_dwuol_1m0xs_111:not(#\9) {
  z-index: 4;
  flex-shrink: 0;
}

.awsui_trigger_dwuol_1m0xs_116:not(#\9) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.awsui_layout-strut_dwuol_1m0xs_122:not(#\9) {
  width: 100%;
  position: relative;
  transform: translate3d(0, 0, 0);
}

.awsui_list-bottom_dwuol_1m0xs_128:not(#\9) {
  /* used in unit-tests */
}

.awsui_selected-icon_dwuol_1m0xs_132:not(#\9) {
  color: var(--color-border-item-focused-t884ih, #0073bb);
}

.awsui_show-label-tag_dwuol_1m0xs_136 > .awsui_selected-icon_dwuol_1m0xs_132:not(#\9) {
  padding-left: var(--space-scaled-s-gczsk7, 12px);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_option_1p2cx_1v740_97:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  display: flex;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  color: inherit;
}
.awsui_option_1p2cx_1v740_97:not(#\9):not(.awsui_disabled_1p2cx_1v740_115) {
  cursor: inherit;
}
.awsui_option_1p2cx_1v740_97.awsui_parent_1p2cx_1v740_118:not(#\9) {
  font-weight: bold;
}
.awsui_option_1p2cx_1v740_97.awsui_parent_1p2cx_1v740_118:not(#\9):not(.awsui_disabled_1p2cx_1v740_115):not(.awsui_highlighted_1p2cx_1v740_121) {
  color: var(--color-text-dropdown-group-label-ihg7kk, #545b64);
}

.awsui_content_1p2cx_1v740_125:not(#\9) {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.awsui_label-content_1p2cx_1v740_132:not(#\9) {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.awsui_label_1p2cx_1v740_132:not(#\9),
.awsui_tag_1p2cx_1v740_139:not(#\9),
.awsui_label-tag_1p2cx_1v740_140:not(#\9) {
  min-width: 0;
  -ms-word-break: break-all;
  word-break: break-word;
}

.awsui_label_1p2cx_1v740_132:not(#\9),
.awsui_tag_1p2cx_1v740_139:not(#\9) {
  flex-wrap: wrap;
}

.awsui_label-prefix_1p2cx_1v740_151:not(#\9) {
  font-weight: 700;
}

.awsui_label-tag_1p2cx_1v740_140:not(#\9) {
  padding-left: var(--space-s-rd607g, 12px);
  flex: auto;
  text-align: right;
}
.awsui_label-tag_1p2cx_1v740_140:not(#\9):empty {
  display: none;
}

.awsui_tags_1p2cx_1v740_164:not(#\9),
.awsui_description_1p2cx_1v740_165:not(#\9) {
  font-size: var(--font-size-body-s-ucr7d6, 12px);
  line-height: var(--line-height-body-s-lnbzsa, 16px);
  letter-spacing: var(--letter-spacing-body-s-rksemx, normal);
  color: var(--color-text-dropdown-item-secondary-tbkgco, #687078);
  flex-wrap: wrap;
}
.awsui_tags_1p2cx_1v740_164.awsui_highlighted_1p2cx_1v740_121:not(#\9),
.awsui_description_1p2cx_1v740_165.awsui_highlighted_1p2cx_1v740_121:not(#\9) {
  color: var(--color-text-dropdown-item-secondary-hover-91iztt, #687078);
}
.awsui_tags_1p2cx_1v740_164.awsui_selected_1p2cx_1v740_176:not(#\9),
.awsui_description_1p2cx_1v740_165.awsui_selected_1p2cx_1v740_176:not(#\9) {
  color: var(--color-text-dropdown-item-secondary-tbkgco, #687078);
}

.awsui_tags_1p2cx_1v740_164:not(#\9) {
  display: flex;
  align-items: stretch;
}

.awsui_tag_1p2cx_1v740_139:not(#\9):not(:last-child) {
  padding-right: var(--space-m-sptmsg, 16px);
}

.awsui_icon_1p2cx_1v740_190:not(#\9) {
  padding-right: var(--space-xs-inub5w, 8px);
  align-content: center;
  display: flex;
  flex-shrink: 0;
}

.awsui_icon-size-big_1p2cx_1v740_197:not(#\9) {
  padding-top: var(--space-option-icon-big-top-6g0v28, 2px);
}

.awsui_filtering-match-highlight_1p2cx_1v740_201:not(#\9) {
  background-color: var(--color-background-dropdown-item-filter-match-ugvt1w, #f1faff);
  color: var(--color-text-dropdown-item-filter-match-qs8rft, #0073bb);
  font-weight: bold;
}

.awsui_disabled_1p2cx_1v740_115:not(#\9) {
  color: var(--color-text-dropdown-item-disabled-g9c04k, #aab7b8);
  pointer-events: none;
}
.awsui_disabled_1p2cx_1v740_115 > .awsui_content_1p2cx_1v740_125 > .awsui_tags_1p2cx_1v740_164:not(#\9),
.awsui_disabled_1p2cx_1v740_115 > .awsui_content_1p2cx_1v740_125 > .awsui_description_1p2cx_1v740_165:not(#\9) {
  color: currentColor;
}

.awsui_trigger-variant_1p2cx_1v740_216:not(#\9) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_selectable-item_15o6u_2dgzl_93:not(#\9) {
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  position: relative;
  list-style: none;
  z-index: 1;
  border: var(--border-divider-list-width-fsy9j8, 1px) solid transparent;
  border-top-color: var(--color-border-dropdown-item-default-062h8i, #eaeded);
  border-bottom-color: var(--color-border-dropdown-item-default-062h8i, #eaeded);
  background-color: var(--color-background-dropdown-item-default-2p2g22, #ffffff);
  color: var(--color-text-dropdown-item-default-wx27oj, #16191f);
  border-left-width: 0;
  border-right-width: 0;
  padding: calc(
  var(--space-xxs-a6783b, 4px) + (var(--border-item-width-f0bcsu, 1px) - var(--border-divider-list-width-fsy9j8, 1px))
) calc(var(--space-field-horizontal-wfaq0d, 8px) + var(--border-item-width-f0bcsu, 1px));
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_pad-bottom_15o6u_2dgzl_115:not(#\9) {
  padding-bottom: calc(calc(
  var(--space-xxs-a6783b, 4px) + (var(--border-item-width-f0bcsu, 1px) - var(--border-divider-list-width-fsy9j8, 1px))
) + var(--space-xxxs-rq3iss, 2px));
  border-bottom-color: transparent;
}
.awsui_selectable-item_15o6u_2dgzl_93:not(#\9):not(:first-child) {
  margin-top: calc(-1 * var(--border-item-width-f0bcsu, 1px));
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_has-background_15o6u_2dgzl_124:not(#\9) {
  background-color: var(--color-background-dropdown-item-hover-6qhcjz, #f2f3f3);
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_highlighted_15o6u_2dgzl_127:not(#\9), .awsui_selectable-item_15o6u_2dgzl_93.awsui_selected_15o6u_2dgzl_127:not(#\9) {
  color: var(--color-text-dropdown-item-highlighted-t48eqn, #16191f);
  border-width: var(--border-item-width-f0bcsu, 1px);
  border-radius: var(--border-radius-item-fcd5og, 0px);
  padding: var(--space-xxs-a6783b, 4px) var(--space-field-horizontal-wfaq0d, 8px);
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_highlighted_15o6u_2dgzl_127.awsui_pad-bottom_15o6u_2dgzl_115:not(#\9), .awsui_selectable-item_15o6u_2dgzl_93.awsui_selected_15o6u_2dgzl_127.awsui_pad-bottom_15o6u_2dgzl_115:not(#\9) {
  padding-bottom: calc(var(--space-xxs-a6783b, 4px) + var(--space-xxxs-rq3iss, 2px));
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_highlighted_15o6u_2dgzl_127:not(#\9) {
  z-index: 2;
  background-color: var(--color-background-dropdown-item-hover-6qhcjz, #f2f3f3);
  border-color: var(--color-border-dropdown-item-hover-5oku75, #879596);
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_highlighted_15o6u_2dgzl_127.awsui_disabled_15o6u_2dgzl_141:not(#\9) {
  color: var(--color-text-dropdown-item-dimmed-94uait, #aab7b8);
  border-color: var(--color-border-dropdown-item-dimmed-hover-t0ewzv, #879596);
  background-color: var(--color-background-dropdown-item-dimmed-ta7f22, transparent);
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_selected_15o6u_2dgzl_127:not(#\9) {
  background-color: var(--color-background-dropdown-item-selected-pz82cn, #f1faff);
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_selected_15o6u_2dgzl_127.awsui_next-item-selected_15o6u_2dgzl_149:not(#\9) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_selected_15o6u_2dgzl_127 + .awsui_selectable-item_15o6u_2dgzl_93.awsui_selected_15o6u_2dgzl_127:not(#\9) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_highlighted_15o6u_2dgzl_127.awsui_is-keyboard_15o6u_2dgzl_157:not(#\9) {
  border-color: var(--color-border-item-focused-t884ih, #0073bb);
  box-shadow: inset 0 0 0 var(--border-control-focus-ring-shadow-spread-oufv0y, 1px) var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_parent_15o6u_2dgzl_161:not(#\9) {
  font-weight: bold;
  color: var(--color-text-dropdown-group-label-ihg7kk, #545b64);
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_parent_15o6u_2dgzl_161:not(#\9):not(.awsui_interactiveGroups_15o6u_2dgzl_165) {
  border-top-color: var(--color-border-dropdown-group-u3qa6a, #eaeded);
  padding: var(--space-xs-inub5w, 8px);
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_parent_15o6u_2dgzl_161.awsui_interactiveGroups_15o6u_2dgzl_165:not(#\9) {
  padding: calc(
  var(--space-xs-inub5w, 8px) + (var(--border-item-width-f0bcsu, 1px) - var(--border-divider-list-width-fsy9j8, 1px))
) calc(var(--space-field-horizontal-wfaq0d, 8px) + var(--border-item-width-f0bcsu, 1px));
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_parent_15o6u_2dgzl_161.awsui_interactiveGroups_15o6u_2dgzl_165.awsui_highlighted_15o6u_2dgzl_127:not(#\9) {
  color: var(--color-text-dropdown-item-highlighted-t48eqn, #16191f);
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_parent_15o6u_2dgzl_161.awsui_interactiveGroups_15o6u_2dgzl_165.awsui_highlighted_15o6u_2dgzl_127:not(#\9), .awsui_selectable-item_15o6u_2dgzl_93.awsui_parent_15o6u_2dgzl_161.awsui_interactiveGroups_15o6u_2dgzl_165.awsui_selected_15o6u_2dgzl_127:not(#\9) {
  padding: var(--space-xs-inub5w, 8px) var(--space-field-horizontal-wfaq0d, 8px);
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_child_15o6u_2dgzl_180:not(#\9) {
  padding-left: calc(var(--space-xxl-eiq7g3, 32px) + var(--border-item-width-f0bcsu, 1px));
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_child_15o6u_2dgzl_180.awsui_highlighted_15o6u_2dgzl_127:not(#\9), .awsui_selectable-item_15o6u_2dgzl_93.awsui_child_15o6u_2dgzl_180.awsui_selected_15o6u_2dgzl_127:not(#\9) {
  padding-left: var(--space-xxl-eiq7g3, 32px);
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_disabled_15o6u_2dgzl_141:not(#\9) {
  color: var(--color-text-dropdown-item-disabled-g9c04k, #aab7b8);
}
.awsui_selectable-item_15o6u_2dgzl_93:not(#\9):not(.awsui_disabled_15o6u_2dgzl_141):not(.awsui_parent_15o6u_2dgzl_161) {
  cursor: pointer;
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_interactiveGroups_15o6u_2dgzl_165:not(#\9):not(.awsui_disabled_15o6u_2dgzl_141) {
  cursor: pointer;
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_virtual_15o6u_2dgzl_195:not(#\9) {
  position: absolute;
  top: var(--border-dropdown-virtual-offset-width-fgy998, 0px);
  left: 0;
  width: 100%;
  box-sizing: border-box;
}
.awsui_selectable-item_15o6u_2dgzl_93.awsui_virtual_15o6u_2dgzl_195:not(#\9):first-of-type:not(.awsui_selected_15o6u_2dgzl_127, .awsui_highlighted_15o6u_2dgzl_127) {
  border-top-color: var(--color-border-dropdown-item-top-l8o9uk, #eaeded);
}

.awsui_measure-strut_15o6u_2dgzl_206:not(#\9) {
  position: absolute;
  pointer-events: none;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  padding-top: var(--border-divider-list-width-fsy9j8, 1px);
}
.awsui_measure-strut-first_15o6u_2dgzl_215:not(#\9) {
  padding-bottom: var(--border-divider-list-width-fsy9j8, 1px);
}

.awsui_screenreader-content_15o6u_2dgzl_219:not(#\9) {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

.awsui_option-content_15o6u_2dgzl_225:not(#\9) {
  /* used in test-utils */
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_1fn7j_o7h6o_93:not(#\9) {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.awsui_root_1fn7j_o7h6o_93 > .awsui_styled-box_1fn7j_o7h6o_100:not(#\9) {
  fill: var(--color-background-control-default-x4w3j0, #ffffff);
  stroke: var(--color-border-control-default-1igjc0, #687078);
  stroke-width: var(--border-field-width-2vpp5j, 1px);
  transition: fill var(--motion-duration-transition-quick-dm1zcq, 90ms) var(--motion-easing-transition-quick-74hmmw, linear), stroke var(--motion-duration-transition-quick-dm1zcq, 90ms) var(--motion-easing-transition-quick-74hmmw, linear);
}
.awsui_root_1fn7j_o7h6o_93 > .awsui_styled-box-checked_1fn7j_o7h6o_106:not(#\9), .awsui_root_1fn7j_o7h6o_93 > .awsui_styled-box-indeterminate_1fn7j_o7h6o_106:not(#\9) {
  fill: var(--color-background-control-checked-q75knx, #0073bb);
  stroke: var(--color-border-control-checked-tl007y, #0073bb);
}
.awsui_root_1fn7j_o7h6o_93 > .awsui_styled-box-disabled_1fn7j_o7h6o_110:not(#\9) {
  fill: var(--color-background-control-disabled-vkotqk, #d5dbdb);
  stroke: var(--color-border-control-disabled-n4rl6j, #d5dbdb);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_root_1fn7j_o7h6o_93 > .awsui_styled-box_1fn7j_o7h6o_100:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_root_1fn7j_o7h6o_93 > .awsui_styled-box_1fn7j_o7h6o_100:not(#\9), .awsui-mode-entering .awsui_root_1fn7j_o7h6o_93 > .awsui_styled-box_1fn7j_o7h6o_100:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_root_1fn7j_o7h6o_93 > .awsui_styled-line_1fn7j_o7h6o_124:not(#\9) {
  stroke: var(--color-foreground-control-default-5f7j2k, #ffffff);
  stroke-width: 2;
  fill: none;
}
.awsui_root_1fn7j_o7h6o_93 > .awsui_styled-line-disabled_1fn7j_o7h6o_129:not(#\9) {
  stroke: var(--color-foreground-control-disabled-4rcx89, #ffffff);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_2rhyz_1dbxw_93:not(#\9) {
  /* used in test-utils for component to distinguish input from other input-like components, for example autosuggest */
}

.awsui_input_2rhyz_1dbxw_97:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  padding: var(--space-scaled-xxs-ugy2pw, 4px) var(--space-field-horizontal-wfaq0d, 8px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  width: 100%;
  cursor: text;
  box-sizing: border-box;
  background-color: var(--color-background-input-default-66bx4w, #ffffff);
  border-radius: var(--border-radius-input-jnmu21, 2px);
  border: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-input-default-sm4mjn, #687078);
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  height: var(--size-vertical-input-18ku63, 32px);
}
.awsui_input_2rhyz_1dbxw_97.awsui_input-readonly_2rhyz_1dbxw_120:not(#\9) {
  background-color: var(--color-background-input-default-66bx4w, #ffffff);
  border: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-input-disabled-73z8co, #eaeded);
}
.awsui_input_2rhyz_1dbxw_97:not(#\9)::-webkit-input-placeholder {
  color: var(--color-text-input-placeholder-vi9sh8, #687078);
  font-style: italic;
  -webkit-user-select: none;
          user-select: none;
}
.awsui_input_2rhyz_1dbxw_97:not(#\9)::-ms-input-placeholder {
  color: var(--color-text-input-placeholder-vi9sh8, #687078);
  font-style: italic;
}
.awsui_input_2rhyz_1dbxw_97:not(#\9)::-moz-placeholder {
  color: var(--color-text-input-placeholder-vi9sh8, #687078);
  font-style: italic;
  opacity: 1;
}
.awsui_input_2rhyz_1dbxw_97:not(#\9):-ms-input-placeholder {
  color: var(--color-text-input-placeholder-vi9sh8, #687078);
  font-style: italic;
}
.awsui_input_2rhyz_1dbxw_97:not(#\9):-moz-placeholder {
  color: var(--color-text-input-placeholder-vi9sh8, #687078);
  font-style: italic;
  opacity: 1;
}
.awsui_input_2rhyz_1dbxw_97:not(#\9):focus {
  outline: 2px dotted transparent;
  border: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-item-focused-t884ih, #0073bb);
  border-radius: var(--border-radius-input-jnmu21, 2px);
  box-shadow: 0 0 0 var(--border-control-focus-ring-shadow-spread-oufv0y, 1px) var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_input_2rhyz_1dbxw_97:not(#\9):disabled {
  background-color: var(--color-background-input-disabled-0azib6, #eaeded);
  border: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-input-disabled-73z8co, #eaeded);
  color: var(--color-text-input-disabled-26hyji, #879596);
  cursor: auto;
  cursor: default;
}
.awsui_input_2rhyz_1dbxw_97:not(#\9):disabled::-webkit-input-placeholder {
  color: var(--color-text-input-placeholder-disabled-1lvfii, #687078);
  -webkit-user-select: none;
          user-select: none;
}
.awsui_input_2rhyz_1dbxw_97:not(#\9):disabled::-ms-input-placeholder {
  color: var(--color-text-input-placeholder-disabled-1lvfii, #687078);
}
.awsui_input_2rhyz_1dbxw_97:not(#\9):disabled::-moz-placeholder {
  color: var(--color-text-input-placeholder-disabled-1lvfii, #687078);
  opacity: 1;
}
.awsui_input_2rhyz_1dbxw_97:not(#\9):disabled:-ms-input-placeholder {
  color: var(--color-text-input-placeholder-disabled-1lvfii, #687078);
}
.awsui_input_2rhyz_1dbxw_97:not(#\9):disabled:-moz-placeholder {
  color: var(--color-text-input-placeholder-disabled-1lvfii, #687078);
  opacity: 1;
}
.awsui_input_2rhyz_1dbxw_97:not(#\9):invalid {
  box-shadow: none;
}
.awsui_input_2rhyz_1dbxw_97.awsui_input-invalid_2rhyz_1dbxw_181:not(#\9) {
  color: var(--color-text-status-error-a5tqz1, #d13212);
  border-color: var(--color-text-status-error-a5tqz1, #d13212);
  padding-left: calc(
  var(--space-field-horizontal-wfaq0d, 8px) - (var(--border-invalid-width-5eyrjt, 4px) - var(--border-field-width-2vpp5j, 1px))
);
  border-left-width: var(--border-invalid-width-5eyrjt, 4px);
}
.awsui_input_2rhyz_1dbxw_97.awsui_input-invalid_2rhyz_1dbxw_181:not(#\9):focus {
  box-shadow: 0 0 0 var(--border-control-invalid-focus-ring-shadow-spread-mejja6, 1px) var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_input_2rhyz_1dbxw_97.awsui_input-invalid_2rhyz_1dbxw_181.awsui_input-has-icon-left_2rhyz_1dbxw_192:not(#\9) {
  padding-left: calc(
        var(--space-field-icon-offset-uc4al5, 32px) - (var(--border-invalid-width-5eyrjt, 4px) - var(--border-field-width-2vpp5j, 1px))
      );
}
.awsui_input_2rhyz_1dbxw_97.awsui_input-type-search_2rhyz_1dbxw_197:not(#\9) {
  box-sizing: border-box;
  -webkit-appearance: none; /* stylelint-disable-line plugin/no-unsupported-browser-features */
}
.awsui_input_2rhyz_1dbxw_97.awsui_input-type-search_2rhyz_1dbxw_197:not(#\9)::-ms-clear {
  display: none;
}
.awsui_input_2rhyz_1dbxw_97.awsui_input-type-search_2rhyz_1dbxw_197:not(#\9)::-webkit-search-decoration {
  -webkit-appearance: none; /* stylelint-disable-line plugin/no-unsupported-browser-features */
}
.awsui_input_2rhyz_1dbxw_97.awsui_input-type-search_2rhyz_1dbxw_197:not(#\9)::-webkit-search-cancel-button {
  display: none;
}
.awsui_input_2rhyz_1dbxw_97.awsui_input-has-icon-left_2rhyz_1dbxw_192:not(#\9) {
  padding-left: var(--space-field-icon-offset-uc4al5, 32px);
}
.awsui_input_2rhyz_1dbxw_97.awsui_input-has-icon-right_2rhyz_1dbxw_213:not(#\9) {
  padding-right: var(--space-field-icon-offset-uc4al5, 32px);
}
.awsui_input_2rhyz_1dbxw_97.awsui_input-has-no-border-radius_2rhyz_1dbxw_216:not(#\9) {
  border-radius: var(--border-radius-dropdown-ewtx9q, 0px);
}

.awsui_input-container_2rhyz_1dbxw_220:not(#\9) {
  display: flex;
  position: relative;
}

.awsui_input-icon-left_2rhyz_1dbxw_225:not(#\9) {
  position: absolute;
  pointer-events: none;
  left: var(--space-field-horizontal-wfaq0d, 8px);
  top: calc(50% - var(--line-height-body-m-4ax85e, 22px) / 2);
}

.awsui_input-icon-right_2rhyz_1dbxw_232:not(#\9) {
  position: absolute;
  top: calc(50% - var(--line-height-body-m-4ax85e, 22px) / 2);
  right: calc(var(--space-field-horizontal-wfaq0d, 8px) - var(--space-xxs-a6783b, 4px));
}

.awsui_input-button-right_2rhyz_1dbxw_238:not(#\9) {
  /* used in test-utils */
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_button-trigger_18eso_10oja_97 > .awsui_arrow_18eso_10oja_97:not(#\9) {
  transition: transform var(--motion-duration-rotate-180-i3ygzg, 135ms) var(--motion-easing-rotate-180-qx5hdf, cubic-bezier(0.165, 0.84, 0.44, 1));
}
@media (prefers-reduced-motion: reduce) {
  .awsui_button-trigger_18eso_10oja_97 > .awsui_arrow_18eso_10oja_97:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_button-trigger_18eso_10oja_97 > .awsui_arrow_18eso_10oja_97:not(#\9), .awsui-mode-entering .awsui_button-trigger_18eso_10oja_97 > .awsui_arrow_18eso_10oja_97:not(#\9) {
  animation: none;
  transition: none;
}

/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_button-trigger_18eso_10oja_97:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-scaled-xxs-ugy2pw, 4px) var(--space-field-horizontal-wfaq0d, 8px);
  background-color: var(--color-background-input-default-66bx4w, #ffffff);
  border-radius: var(--border-radius-input-jnmu21, 2px);
  border: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-input-default-sm4mjn, #687078);
  min-height: var(--size-vertical-input-18ku63, 32px);
}
.awsui_button-trigger_18eso_10oja_97.awsui_has-caret_18eso_10oja_137:not(#\9) {
  padding-right: var(--space-field-icon-offset-uc4al5, 32px);
}
.awsui_button-trigger_18eso_10oja_97 > .awsui_placeholder_18eso_10oja_140:not(#\9) {
  color: var(--color-text-input-placeholder-vi9sh8, #687078);
  font-style: italic;
}
.awsui_button-trigger_18eso_10oja_97 > .awsui_arrow_18eso_10oja_97:not(#\9) {
  position: absolute;
  right: var(--space-field-horizontal-wfaq0d, 8px);
  top: calc(50% - var(--line-height-body-m-4ax85e, 22px) / 2);
  color: var(--color-text-button-inline-icon-default-buw7w7, #545b64);
}
.awsui_button-trigger_18eso_10oja_97:not(#\9):hover > .awsui_arrow_18eso_10oja_97 {
  color: var(--color-text-button-inline-icon-hover-0pwsg2, #16191f);
}
.awsui_button-trigger_18eso_10oja_97.awsui_pressed_18eso_10oja_153 > .awsui_arrow_18eso_10oja_97:not(#\9) {
  transform: rotate(-180deg);
}
.awsui_button-trigger_18eso_10oja_97.awsui_disabled_18eso_10oja_156:not(#\9) {
  background-color: var(--color-background-input-disabled-0azib6, #eaeded);
  border: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-input-disabled-73z8co, #eaeded);
  color: var(--color-text-input-disabled-26hyji, #879596);
  cursor: auto;
}
.awsui_button-trigger_18eso_10oja_97.awsui_disabled_18eso_10oja_156 > .awsui_arrow_18eso_10oja_97:not(#\9) {
  color: var(--color-text-button-inline-icon-disabled-phk84s, #aab7b8);
}
.awsui_button-trigger_18eso_10oja_97.awsui_disabled_18eso_10oja_156.awsui_in-filtering-token_18eso_10oja_165:not(#\9) {
  border-color: var(--color-border-control-disabled-n4rl6j, #d5dbdb);
}
.awsui_button-trigger_18eso_10oja_97.awsui_disabled_18eso_10oja_156 > .awsui_placeholder_18eso_10oja_140:not(#\9) {
  color: var(--color-text-input-placeholder-disabled-1lvfii, #687078);
}
.awsui_button-trigger_18eso_10oja_97.awsui_read-only_18eso_10oja_171:not(#\9) {
  background-color: var(--color-background-input-default-66bx4w, #ffffff);
  border: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-input-disabled-73z8co, #eaeded);
}
.awsui_button-trigger_18eso_10oja_97:not(#\9):focus {
  outline: none;
  text-decoration: none;
}
body[data-awsui-focus-visible=true] .awsui_button-trigger_18eso_10oja_97:not(#\9):not(.awsui_in-filtering-token_18eso_10oja_165):focus {
  outline: 2px dotted transparent;
  border: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-item-focused-t884ih, #0073bb);
  border-radius: var(--border-radius-input-jnmu21, 2px);
  box-shadow: 0 0 0 var(--border-control-focus-ring-shadow-spread-oufv0y, 1px) var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_button-trigger_18eso_10oja_97:not(#\9):not(.awsui_in-filtering-token_18eso_10oja_165):invalid {
  box-shadow: none;
}
.awsui_button-trigger_18eso_10oja_97:not(#\9):not(.awsui_in-filtering-token_18eso_10oja_165).awsui_invalid_18eso_10oja_188, .awsui_button-trigger_18eso_10oja_97:not(#\9):not(.awsui_in-filtering-token_18eso_10oja_165).awsui_invalid_18eso_10oja_188:focus {
  color: var(--color-text-status-error-a5tqz1, #d13212);
  border-color: var(--color-text-status-error-a5tqz1, #d13212);
  padding-left: calc(
  var(--space-field-horizontal-wfaq0d, 8px) - (var(--border-invalid-width-5eyrjt, 4px) - var(--border-field-width-2vpp5j, 1px))
);
  border-left-width: var(--border-invalid-width-5eyrjt, 4px);
}
.awsui_button-trigger_18eso_10oja_97:not(#\9):not(.awsui_in-filtering-token_18eso_10oja_165).awsui_invalid_18eso_10oja_188:focus, .awsui_button-trigger_18eso_10oja_97:not(#\9):not(.awsui_in-filtering-token_18eso_10oja_165).awsui_invalid_18eso_10oja_188:focus:focus {
  box-shadow: 0 0 0 var(--border-control-invalid-focus-ring-shadow-spread-mejja6, 1px) var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_button-trigger_18eso_10oja_97.awsui_in-filtering-token_18eso_10oja_165:not(#\9) {
  border-color: var(--color-border-item-selected-bmiwgz, #0073bb);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  height: 100%;
}
body[data-awsui-focus-visible=true] .awsui_button-trigger_18eso_10oja_97.awsui_in-filtering-token_18eso_10oja_165:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button-trigger_18eso_10oja_97.awsui_in-filtering-token_18eso_10oja_165:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-filtering-token-operation-select-focus-outline-gutter-kjeacy, 0px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button-trigger_18eso_10oja_97.awsui_in-filtering-token_18eso_10oja_165:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-filtering-token-operation-select-focus-outline-gutter-kjeacy, 0px));
  top: calc(-1 * var(--space-filtering-token-operation-select-focus-outline-gutter-kjeacy, 0px));
  width: calc(100% + 2 * var(--space-filtering-token-operation-select-focus-outline-gutter-kjeacy, 0px));
  height: calc(100% + 2 * var(--space-filtering-token-operation-select-focus-outline-gutter-kjeacy, 0px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_empty-appear_n4qlp_1f8ow_93:not(#\9) {
  animation: awsui_awsui-motion-fade-in_n4qlp_1f8ow_1 var(--motion-duration-transition-show-paced-qcfnau, 180ms) var(--motion-easing-transition-show-paced-qe3gc9, ease-out);
}
@keyframes awsui_awsui-motion-fade-in_n4qlp_1f8ow_1 {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_empty-appear_n4qlp_1f8ow_93:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_empty-appear_n4qlp_1f8ow_93:not(#\9), .awsui-mode-entering .awsui_empty-appear_n4qlp_1f8ow_93:not(#\9) {
  animation: none;
  transition: none;
}

/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_n4qlp_1f8ow_119:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  display: block;
}

.awsui_empty_n4qlp_1f8ow_93:not(#\9) {
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-empty-79ttcu, #687078);
}

.awsui_row_n4qlp_1f8ow_139:not(#\9) {
  /* used in test-utils */
}

.awsui_row-control_n4qlp_1f8ow_143:not(#\9) {
  /* used in test-utils */
}

.awsui_field_n4qlp_1f8ow_147:not(#\9) {
  /* used in test-utils */
}

.awsui_add-button_n4qlp_1f8ow_151:not(#\9) {
  /* used in test-utils */
}

.awsui_remove-button_n4qlp_1f8ow_155:not(#\9) {
  /* used in test-utils */
}

.awsui_button-container-haslabel_n4qlp_1f8ow_159:not(#\9) {
  padding-top: calc(var(--space-xxs-a6783b, 4px) + var(--line-height-body-m-4ax85e, 22px));
}

.awsui_button-container-nolabel_n4qlp_1f8ow_163:not(#\9) {
  padding-top: var(--space-xxs-a6783b, 4px);
}

.awsui_divider_n4qlp_1f8ow_167:not(#\9) {
  border-bottom: var(--border-divider-section-width-9dl636, 1px) solid var(--color-border-divider-default-1mmknt, #eaeded);
}

.awsui_additional-info_n4qlp_1f8ow_171:not(#\9) {
  color: var(--color-text-form-secondary-wh2xkx, #687078);
  font-size: var(--font-size-body-s-ucr7d6, 12px);
  line-height: var(--line-height-body-s-lnbzsa, 16px);
  letter-spacing: var(--letter-spacing-body-s-rksemx, normal);
  display: block;
  word-wrap: break-word;
  margin-top: var(--space-xxs-a6783b, 4px);
  /* stylelint-disable-next-line selector-max-type */
}
.awsui_additional-info_n4qlp_1f8ow_171 > a:not(#\9) {
  color: var(--color-text-link-default-lwrgyu, #0073bb);
  font-weight: inherit;
  letter-spacing: normal;
  text-decoration: underline;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: currentColor;
  transition-property: color, -webkit-text-decoration;
  transition-property: color, text-decoration;
  transition-property: color, text-decoration, -webkit-text-decoration;
  transition-duration: var(--motion-duration-refresh-only-medium-af0v35, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_additional-info_n4qlp_1f8ow_171 > a:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_additional-info_n4qlp_1f8ow_171 > a:not(#\9), .awsui-mode-entering .awsui_additional-info_n4qlp_1f8ow_171 > a:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_additional-info_n4qlp_1f8ow_171 > a:not(#\9):hover {
  cursor: pointer;
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
}
.awsui_additional-info_n4qlp_1f8ow_171 > a:not(#\9):focus {
  outline: none;
}
.awsui_additional-info_n4qlp_1f8ow_171 > a:not(#\9):active {
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
}
.awsui_additional-info_n4qlp_1f8ow_171 > a:not(#\9):active, .awsui_additional-info_n4qlp_1f8ow_171 > a:not(#\9):focus, .awsui_additional-info_n4qlp_1f8ow_171 > a:not(#\9):hover {
  text-decoration: underline;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: currentColor;
}

.awsui_right-align_n4qlp_1f8ow_217:not(#\9) {
  float: right;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_css-grid_zqq3x_q14ia_9:not(#\9) {
  display: grid;
  gap: var(--space-grid-gutter-pfst95, 20px);
}
.awsui_css-grid_zqq3x_q14ia_9.awsui_grid-no-gutters_zqq3x_q14ia_13:not(#\9) {
  gap: 0;
}
.awsui_css-grid_zqq3x_q14ia_9.awsui_grid-variant-text-grid_zqq3x_q14ia_16 > .awsui_item_zqq3x_q14ia_16:not(#\9) {
  border-left: var(--border-divider-section-width-9dl636, 1px) solid var(--color-border-divider-default-1mmknt, #eaeded);
  padding-left: var(--space-grid-gutter-pfst95, 20px);
  padding-right: var(--space-grid-gutter-pfst95, 20px);
}
.awsui_css-grid_zqq3x_q14ia_9.awsui_grid-variant-text-grid_zqq3x_q14ia_16 > .awsui_item_zqq3x_q14ia_16.awsui_first-column_zqq3x_q14ia_21:not(#\9) {
  border-left: 0;
  padding-left: 0;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
div.awsui_column-layout_vvxn7_75n2g_93:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  word-wrap: break-word;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106:not(#\9) {
  margin: calc(var(--space-grid-gutter-pfst95, 20px) / -2);
  /* stylelint-disable-next-line selector-max-universal */
  /* stylelint-disable-next-line selector-max-universal */
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-no-gutters_vvxn7_75n2g_111:not(#\9) {
  margin: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-variant-text-grid_vvxn7_75n2g_114:not(#\9) {
  /* stylelint-disable-next-line selector-max-universal */
  margin: calc(-1 * var(--space-grid-gutter-pfst95, 20px) / 2) calc(-1 * var(--space-grid-gutter-pfst95, 20px));
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-variant-text-grid_vvxn7_75n2g_114 > *:not(#\9) {
  border-left: var(--border-divider-section-width-9dl636, 1px) solid var(--color-border-divider-default-1mmknt, #eaeded);
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-variant-text-grid_vvxn7_75n2g_114.awsui_grid-breakpoint-default_vvxn7_75n2g_121 > *:not(#\9):nth-child(1n+1) {
  border-left-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-variant-text-grid_vvxn7_75n2g_114.awsui_grid-columns-1_vvxn7_75n2g_124.awsui_grid-breakpoint-xxs_vvxn7_75n2g_124 > *:not(#\9):nth-child(1n+1) {
  border-left-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-variant-text-grid_vvxn7_75n2g_114.awsui_grid-columns-1_vvxn7_75n2g_124.awsui_grid-breakpoint-xs_vvxn7_75n2g_127 > *:not(#\9):nth-child(1n+1) {
  border-left-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-variant-text-grid_vvxn7_75n2g_114.awsui_grid-columns-2_vvxn7_75n2g_130.awsui_grid-breakpoint-xxs_vvxn7_75n2g_124 > *:not(#\9):nth-child(2n+1) {
  border-left-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-variant-text-grid_vvxn7_75n2g_114.awsui_grid-columns-2_vvxn7_75n2g_130.awsui_grid-breakpoint-xs_vvxn7_75n2g_127 > *:not(#\9):nth-child(2n+1) {
  border-left-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-variant-text-grid_vvxn7_75n2g_114.awsui_grid-columns-3_vvxn7_75n2g_136.awsui_grid-breakpoint-xxs_vvxn7_75n2g_124 > *:not(#\9):nth-child(2n+1) {
  border-left-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-variant-text-grid_vvxn7_75n2g_114.awsui_grid-columns-3_vvxn7_75n2g_136.awsui_grid-breakpoint-xs_vvxn7_75n2g_127 > *:not(#\9):nth-child(3n+1) {
  border-left-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-variant-text-grid_vvxn7_75n2g_114.awsui_grid-columns-4_vvxn7_75n2g_142.awsui_grid-breakpoint-xxs_vvxn7_75n2g_124 > *:not(#\9):nth-child(2n+1) {
  border-left-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-variant-text-grid_vvxn7_75n2g_114.awsui_grid-columns-4_vvxn7_75n2g_142.awsui_grid-breakpoint-xs_vvxn7_75n2g_127 > *:not(#\9):nth-child(4n+1) {
  border-left-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106:not(#\9):not(.awsui_grid-no-gutters_vvxn7_75n2g_111) > * {
  padding: calc(var(--space-grid-gutter-pfst95, 20px) / 2);
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106:not(#\9):not(.awsui_grid-no-gutters_vvxn7_75n2g_111).awsui_grid-variant-text-grid_vvxn7_75n2g_114 > * {
  padding: 0 var(--space-grid-gutter-pfst95, 20px);
  margin: calc(var(--space-grid-gutter-pfst95, 20px) / 2) 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-vertical-borders_vvxn7_75n2g_155:not(#\9) {
  /* stylelint-disable-next-line selector-max-universal */
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-vertical-borders_vvxn7_75n2g_155 > *:not(#\9) {
  border-right: var(--border-divider-section-width-9dl636, 1px) solid var(--color-border-divider-default-1mmknt, #eaeded);
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-vertical-borders_vvxn7_75n2g_155.awsui_grid-breakpoint-default_vvxn7_75n2g_121 > *:not(#\9):nth-child(1n) {
  border-right-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-vertical-borders_vvxn7_75n2g_155.awsui_grid-columns-1_vvxn7_75n2g_124.awsui_grid-breakpoint-xxs_vvxn7_75n2g_124 > *:not(#\9):nth-child(1n) {
  border-right-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-vertical-borders_vvxn7_75n2g_155.awsui_grid-columns-1_vvxn7_75n2g_124.awsui_grid-breakpoint-xs_vvxn7_75n2g_127 > *:not(#\9):nth-child(1n) {
  border-right-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-vertical-borders_vvxn7_75n2g_155.awsui_grid-columns-2_vvxn7_75n2g_130.awsui_grid-breakpoint-xxs_vvxn7_75n2g_124 > *:not(#\9):nth-child(2n) {
  border-right-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-vertical-borders_vvxn7_75n2g_155.awsui_grid-columns-2_vvxn7_75n2g_130.awsui_grid-breakpoint-xs_vvxn7_75n2g_127 > *:not(#\9):nth-child(2n) {
  border-right-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-vertical-borders_vvxn7_75n2g_155.awsui_grid-columns-3_vvxn7_75n2g_136.awsui_grid-breakpoint-xxs_vvxn7_75n2g_124 > *:not(#\9):nth-child(2n) {
  border-right-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-vertical-borders_vvxn7_75n2g_155.awsui_grid-columns-3_vvxn7_75n2g_136.awsui_grid-breakpoint-xs_vvxn7_75n2g_127 > *:not(#\9):nth-child(3n) {
  border-right-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-vertical-borders_vvxn7_75n2g_155.awsui_grid-columns-4_vvxn7_75n2g_142.awsui_grid-breakpoint-xxs_vvxn7_75n2g_124 > *:not(#\9):nth-child(2n) {
  border-right-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-vertical-borders_vvxn7_75n2g_155.awsui_grid-columns-4_vvxn7_75n2g_142.awsui_grid-breakpoint-xs_vvxn7_75n2g_127 > *:not(#\9):nth-child(4n) {
  border-right-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-horizontal-borders_vvxn7_75n2g_188:not(#\9) {
  /* stylelint-disable selector-max-universal */
  /* stylelint-enable selector-max-universal */
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-horizontal-borders_vvxn7_75n2g_188 > *:not(#\9) {
  border-bottom: var(--border-divider-section-width-9dl636, 1px) solid var(--color-border-divider-default-1mmknt, #eaeded);
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-horizontal-borders_vvxn7_75n2g_188 > *:not(#\9):last-child {
  border-bottom-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-horizontal-borders_vvxn7_75n2g_188.awsui_grid-columns-2_vvxn7_75n2g_130.awsui_grid-breakpoint-xxs_vvxn7_75n2g_124 > *:not(#\9):nth-last-child(2):nth-child(2n+1) {
  border-bottom-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-horizontal-borders_vvxn7_75n2g_188.awsui_grid-columns-2_vvxn7_75n2g_130.awsui_grid-breakpoint-xs_vvxn7_75n2g_127 > *:not(#\9):nth-last-child(2):nth-child(2n+1) {
  border-bottom-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-horizontal-borders_vvxn7_75n2g_188.awsui_grid-columns-3_vvxn7_75n2g_136.awsui_grid-breakpoint-xxs_vvxn7_75n2g_124 > *:not(#\9):nth-last-child(2):nth-child(2n+1) {
  border-bottom-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-horizontal-borders_vvxn7_75n2g_188.awsui_grid-columns-3_vvxn7_75n2g_136.awsui_grid-breakpoint-xs_vvxn7_75n2g_127 > *:not(#\9):nth-last-child(2):nth-child(3n+1) {
  border-bottom-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-horizontal-borders_vvxn7_75n2g_188.awsui_grid-columns-3_vvxn7_75n2g_136.awsui_grid-breakpoint-xs_vvxn7_75n2g_127 > *:not(#\9):nth-last-child(2):nth-child(3n+2) {
  border-bottom-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-horizontal-borders_vvxn7_75n2g_188.awsui_grid-columns-3_vvxn7_75n2g_136.awsui_grid-breakpoint-xs_vvxn7_75n2g_127 > *:not(#\9):nth-last-child(3):nth-child(3n+1) {
  border-bottom-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-horizontal-borders_vvxn7_75n2g_188.awsui_grid-columns-4_vvxn7_75n2g_142.awsui_grid-breakpoint-xxs_vvxn7_75n2g_124 > *:not(#\9):nth-last-child(2):nth-child(2n+1) {
  border-bottom-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-horizontal-borders_vvxn7_75n2g_188.awsui_grid-columns-4_vvxn7_75n2g_142.awsui_grid-breakpoint-xs_vvxn7_75n2g_127 > *:not(#\9):nth-last-child(2):nth-child(4n+1) {
  border-bottom-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-horizontal-borders_vvxn7_75n2g_188.awsui_grid-columns-4_vvxn7_75n2g_142.awsui_grid-breakpoint-xs_vvxn7_75n2g_127 > *:not(#\9):nth-last-child(2):nth-child(4n+2) {
  border-bottom-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-horizontal-borders_vvxn7_75n2g_188.awsui_grid-columns-4_vvxn7_75n2g_142.awsui_grid-breakpoint-xs_vvxn7_75n2g_127 > *:not(#\9):nth-last-child(2):nth-child(4n+3) {
  border-bottom-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-horizontal-borders_vvxn7_75n2g_188.awsui_grid-columns-4_vvxn7_75n2g_142.awsui_grid-breakpoint-xs_vvxn7_75n2g_127 > *:not(#\9):nth-last-child(3):nth-child(4n+1) {
  border-bottom-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-horizontal-borders_vvxn7_75n2g_188.awsui_grid-columns-4_vvxn7_75n2g_142.awsui_grid-breakpoint-xs_vvxn7_75n2g_127 > *:not(#\9):nth-last-child(3):nth-child(4n+2) {
  border-bottom-width: 0;
}
div.awsui_column-layout_vvxn7_75n2g_93 > .awsui_grid_vvxn7_75n2g_106.awsui_grid-horizontal-borders_vvxn7_75n2g_188.awsui_grid-columns-4_vvxn7_75n2g_142.awsui_grid-breakpoint-xs_vvxn7_75n2g_127 > *:not(#\9):nth-last-child(4):nth-child(4n+1) {
  border-bottom-width: 0;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_12hwc_12ujv_5:not(#\9) {
  width: 100%;
}

.awsui_layout-strut_12hwc_12ujv_9:not(#\9) {
  width: 100%;
  position: relative;
  transform: translate3d(0, 0, 0);
}

.awsui_list-bottom_12hwc_12ujv_15:not(#\9) {
  /* used in unit-tests */
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_dropdown-footer_vm8qf_jxdvh_5:not(#\9) {
  overflow: hidden;
  flex-shrink: 0;
}

.awsui_dropdown-content_vm8qf_jxdvh_10:not(#\9) {
  display: contents;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_content_1wepg_17ecv_93:not(#\9),
.awsui_description_1wepg_17ecv_94:not(#\9),
.awsui_label_1wepg_17ecv_95:not(#\9) {
  display: block;
}

.awsui_outline_1wepg_17ecv_99:not(#\9) {
  display: none;
}
.awsui_outline_1wepg_17ecv_99.awsui_show-outline_1wepg_17ecv_102:not(#\9) {
  display: block;
}

body[data-awsui-focus-visible=true] .awsui_native-input_1wepg_17ecv_106:not(#\9):focus + .awsui_outline_1wepg_17ecv_99 {
  display: block;
}

.awsui_wrapper_1wepg_17ecv_110:not(#\9) {
  min-width: 0;
  -ms-word-break: break-all;
  word-break: break-word;
  display: flex;
}

.awsui_label-wrapper_1wepg_17ecv_117:not(#\9) {
  position: relative;
  display: flex;
  cursor: default;
}

.awsui_content_1wepg_17ecv_93:not(#\9) {
  min-width: 0;
  -ms-word-break: break-all;
  word-break: break-word;
}

.awsui_empty-content_1wepg_17ecv_129:not(#\9) {
  width: 0px;
}

.awsui_description_1wepg_17ecv_94:not(#\9) {
  color: var(--color-text-form-secondary-wh2xkx, #687078);
  font-size: var(--font-size-body-s-ucr7d6, 12px);
  line-height: var(--line-height-body-s-lnbzsa, 16px);
  letter-spacing: var(--letter-spacing-body-s-rksemx, normal);
}
.awsui_description-bottom-padding_1wepg_17ecv_139:not(#\9) {
  padding-bottom: var(--space-scaled-xxs-ugy2pw, 4px);
}

.awsui_label_1wepg_17ecv_95:not(#\9),
.awsui_description_1wepg_17ecv_94:not(#\9) {
  padding-left: var(--space-xs-inub5w, 8px);
}
.awsui_label-disabled_1wepg_17ecv_147:not(#\9),
.awsui_description-disabled_1wepg_17ecv_148:not(#\9) {
  color: var(--color-text-control-disabled-9r7x35, #aab7b8);
}

/* stylelint-disable selector-max-type */
.awsui_control_1wepg_17ecv_153:not(#\9) {
  position: relative;
}
.awsui_control_1wepg_17ecv_153 > input:not(#\9), .awsui_control_1wepg_17ecv_153 > svg:not(#\9), .awsui_control_1wepg_17ecv_153 > .awsui_outline_1wepg_17ecv_99:not(#\9) {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.awsui_control_1wepg_17ecv_153 > input:not(#\9) {
  opacity: 0;
  z-index: 1;
  -webkit-user-select: none;
          user-select: none;
  cursor: default;
  margin: 0;
}

/* stylelint-enable selector-max-type *//*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_k2y2q_1ongl_93.awsui_root_k2y2q_1ongl_93:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  display: flex;
}

.awsui_checkbox-control_k2y2q_1ongl_107:not(#\9) {
  margin-top: calc((var(--line-height-body-m-4ax85e, 22px) - var(--size-control-q9uk7g, 14px)) / 2);
  min-height: var(--size-control-q9uk7g, 14px);
  min-width: var(--size-control-q9uk7g, 14px);
  height: var(--size-control-q9uk7g, 14px);
  width: var(--size-control-q9uk7g, 14px);
}

.awsui_outline_k2y2q_1ongl_115:not(#\9) {
  position: relative;
}
.awsui_outline_k2y2q_1ongl_115:not(#\9) {
  outline: 2px dotted transparent;
  outline-offset: calc(2px - 1px);
}
.awsui_outline_k2y2q_1ongl_115:not(#\9)::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * 2px);
  top: calc(-1 * 2px);
  width: calc(100% + 2 * 2px);
  height: calc(100% + 2 * 2px);
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_14iqq_164sr_97:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  word-wrap: break-word;
  position: relative;
}
.awsui_root_14iqq_164sr_97.awsui_fit-height_14iqq_164sr_111:not(#\9) {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.awsui_root_14iqq_164sr_97.awsui_fit-height_14iqq_164sr_111.awsui_with-side-media_14iqq_164sr_116:not(#\9) {
  flex-direction: row;
}
.awsui_root_14iqq_164sr_97.awsui_variant-default_14iqq_164sr_119:not(#\9), .awsui_root_14iqq_164sr_97.awsui_variant-stacked_14iqq_164sr_119:not(#\9) {
  border-radius: var(--border-radius-container-y85mnh, 0px);
  box-sizing: border-box;
  background-color: var(--color-background-container-content-pb0lp5, #ffffff);
}
.awsui_root_14iqq_164sr_97.awsui_variant-default_14iqq_164sr_119:not(#\9)::before, .awsui_root_14iqq_164sr_97.awsui_variant-stacked_14iqq_164sr_119:not(#\9)::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: transparent;
  box-sizing: border-box;
  border-color: transparent;
  border-top: var(--border-container-top-width-qyo5h4, 1px) solid var(--color-border-container-top-ige66g, #eaeded);
  border-radius: var(--border-radius-container-y85mnh, 0px);
  z-index: 1;
}
.awsui_root_14iqq_164sr_97.awsui_variant-default_14iqq_164sr_119:not(#\9)::after, .awsui_root_14iqq_164sr_97.awsui_variant-stacked_14iqq_164sr_119:not(#\9)::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: transparent;
  box-sizing: border-box;
  box-shadow: var(--shadow-container-jwc36p, 0 1px 1px 0 rgba(0, 28, 36, 0.3), 1px 1px 1px 0 rgba(0, 28, 36, 0.15), -1px 1px 1px 0 rgba(0, 28, 36, 0.15));
  border-radius: var(--border-radius-container-y85mnh, 0px);
  mix-blend-mode: multiply;
}
@media screen and (-ms-high-contrast: active) {
  .awsui_root_14iqq_164sr_97.awsui_variant-default_14iqq_164sr_119:not(#\9), .awsui_root_14iqq_164sr_97.awsui_variant-stacked_14iqq_164sr_119:not(#\9) {
    border: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-container-top-ige66g, #eaeded);
  }
}
.awsui_root_14iqq_164sr_97.awsui_variant-stacked_14iqq_164sr_119:not(#\9):not(:last-child), .awsui_root_14iqq_164sr_97.awsui_variant-stacked_14iqq_164sr_119:not(#\9):not(:last-child)::before, .awsui_root_14iqq_164sr_97.awsui_variant-stacked_14iqq_164sr_119:not(#\9):not(:last-child)::after {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.awsui_root_14iqq_164sr_97.awsui_variant-stacked_14iqq_164sr_119 + .awsui_root_14iqq_164sr_97.awsui_variant-stacked_14iqq_164sr_119:not(#\9), .awsui_root_14iqq_164sr_97.awsui_variant-stacked_14iqq_164sr_119 + .awsui_root_14iqq_164sr_97.awsui_variant-stacked_14iqq_164sr_119:not(#\9)::before, .awsui_root_14iqq_164sr_97.awsui_variant-stacked_14iqq_164sr_119 + .awsui_root_14iqq_164sr_97.awsui_variant-stacked_14iqq_164sr_119:not(#\9)::after {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.awsui_root_14iqq_164sr_97.awsui_variant-stacked_14iqq_164sr_119 + .awsui_root_14iqq_164sr_97.awsui_variant-stacked_14iqq_164sr_119:not(#\9)::before {
  border-top: var(--border-divider-section-width-9dl636, 1px) solid var(--color-border-divider-default-1mmknt, #eaeded);
}
.awsui_root_14iqq_164sr_97.awsui_variant-stacked_14iqq_164sr_119 + .awsui_root_14iqq_164sr_97.awsui_variant-stacked_14iqq_164sr_119:not(#\9)::after {
  box-shadow: var(--shadow-container-stacked-q43z60, 0 1px 1px 0 rgba(0, 28, 36, 0.3), 1px 1px 1px 0 rgba(0, 28, 36, 0.15), -1px 1px 1px 0 rgba(0, 28, 36, 0.15));
}
.awsui_root_14iqq_164sr_97.awsui_sticky-enabled_14iqq_164sr_172:not(#\9)::before {
  top: calc(-1 * var(--border-container-top-width-qyo5h4, 1px));
}
.awsui_root_14iqq_164sr_97.awsui_sticky-enabled_14iqq_164sr_172.awsui_variant-stacked_14iqq_164sr_119:not(#\9)::before {
  top: calc(-1 * var(--border-divider-section-width-9dl636, 1px));
}

.awsui_with-side-media_14iqq_164sr_116:not(#\9) {
  display: flex;
  flex-direction: row;
}

.awsui_with-top-media_14iqq_164sr_184:not(#\9) {
  display: flex;
  flex-direction: column;
}

.awsui_content-wrapper_14iqq_164sr_189:not(#\9) {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.awsui_content-wrapper-fit-height_14iqq_164sr_194:not(#\9) {
  height: 100%;
  overflow: hidden;
}

.awsui_media_14iqq_164sr_199:not(#\9) {
  overflow: hidden;
  flex-shrink: 0;
}
.awsui_media_14iqq_164sr_199 img:not(#\9),
.awsui_media_14iqq_164sr_199 video:not(#\9),
.awsui_media_14iqq_164sr_199 picture:not(#\9) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.awsui_media_14iqq_164sr_199 iframe:not(#\9) {
  width: 100%;
  height: 100%;
  border: 0;
}
.awsui_media-top_14iqq_164sr_216:not(#\9) {
  max-height: 66%;
  border-top-left-radius: var(--border-radius-container-y85mnh, 0px);
  border-top-right-radius: var(--border-radius-container-y85mnh, 0px);
}
.awsui_media-side_14iqq_164sr_221:not(#\9) {
  max-width: 66%;
  border-top-left-radius: var(--border-radius-container-y85mnh, 0px);
  border-bottom-left-radius: var(--border-radius-container-y85mnh, 0px);
}

.awsui_header_14iqq_164sr_227:not(#\9) {
  background-color: var(--color-background-container-header-pmlnr3, #fafafa);
  border-top-left-radius: var(--border-radius-container-y85mnh, 0px);
  border-top-right-radius: var(--border-radius-container-y85mnh, 0px);
}
.awsui_header_14iqq_164sr_227.awsui_header-with-media_14iqq_164sr_232:not(#\9) {
  background: none;
}
.awsui_header_14iqq_164sr_227.awsui_header-with-media_14iqq_164sr_232:not(#\9):not(:empty) {
  border-bottom: none;
}
.awsui_header-sticky-disabled_14iqq_164sr_238:not(#\9) {
  position: relative;
  z-index: 1;
}
.awsui_header-sticky-enabled_14iqq_164sr_242:not(#\9) {
  top: 0;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  position: sticky;
  z-index: 800;
}
.awsui_header-stuck_14iqq_164sr_248:not(#\9) {
  border-radius: 0;
}
.awsui_header-stuck_14iqq_164sr_248:not(#\9)::before {
  border: 0;
}
.awsui_header-stuck_14iqq_164sr_248:not(#\9):not(.awsui_header-variant-cards_14iqq_164sr_254) {
  box-shadow: var(--shadow-sticky-embedded-2khilm, 0px 1px 4px -2px rgba(0, 28, 36, 0.5));
}
.awsui_header-dynamic-height_14iqq_164sr_257.awsui_header-stuck_14iqq_164sr_248:not(#\9) {
  margin-bottom: calc(var(--line-height-heading-xl-44izce, 36px) - var(--line-height-heading-l-z752l3, 22px));
}
.awsui_header_14iqq_164sr_227:not(#\9):not(:empty) {
  border-bottom: var(--border-container-sticky-width-z1hq8m, 1px) solid var(--color-border-container-divider-4z4y7u, #eaeded);
}
.awsui_header_14iqq_164sr_227.awsui_with-paddings_14iqq_164sr_263:not(#\9) {
  padding: var(--space-container-header-top-isuu42, 12px) var(--space-container-horizontal-6u2610, 20px) var(--space-container-header-bottom-7poudk, 12px);
}
.awsui_header_14iqq_164sr_227.awsui_with-paddings_14iqq_164sr_263.awsui_header-variant-cards_14iqq_164sr_254:not(#\9) {
  padding: var(--space-container-header-top-isuu42, 12px) var(--space-container-horizontal-6u2610, 20px);
}
.awsui_header_14iqq_164sr_227.awsui_with-hidden-content_14iqq_164sr_269:not(#\9) {
  border-bottom-left-radius: var(--border-radius-container-y85mnh, 0px);
  border-bottom-right-radius: var(--border-radius-container-y85mnh, 0px);
}
.awsui_header-variant-cards_14iqq_164sr_254:not(#\9) {
  border-radius: var(--border-radius-container-y85mnh, 0px);
  box-sizing: border-box;
}
.awsui_header-variant-cards_14iqq_164sr_254:not(#\9):not(.awsui_header-sticky-enabled_14iqq_164sr_242) {
  position: relative;
}
.awsui_header-variant-cards_14iqq_164sr_254:not(#\9)::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: transparent;
  box-sizing: border-box;
  border-color: transparent;
  border-top: var(--border-container-top-width-qyo5h4, 1px) solid var(--color-border-container-top-ige66g, #eaeded);
  border-radius: var(--border-radius-container-y85mnh, 0px);
  z-index: 1;
}
.awsui_header-variant-cards_14iqq_164sr_254:not(#\9)::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: transparent;
  box-sizing: border-box;
  box-shadow: var(--shadow-container-jwc36p, 0 1px 1px 0 rgba(0, 28, 36, 0.3), 1px 1px 1px 0 rgba(0, 28, 36, 0.15), -1px 1px 1px 0 rgba(0, 28, 36, 0.15));
  border-radius: var(--border-radius-container-y85mnh, 0px);
  mix-blend-mode: multiply;
}
@media screen and (-ms-high-contrast: active) {
  .awsui_header-variant-cards_14iqq_164sr_254:not(#\9) {
    border: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-container-top-ige66g, #eaeded);
  }
}
.awsui_header-variant-cards_14iqq_164sr_254.awsui_header-stuck_14iqq_164sr_248:not(#\9)::after, .awsui_header-variant-cards_14iqq_164sr_254.awsui_header-stuck_14iqq_164sr_248:not(#\9)::before {
  border: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.awsui_header-variant-full-page_14iqq_164sr_319.awsui_header-stuck_14iqq_164sr_248:not(#\9) {
  box-shadow: none;
}
.awsui_header-variant-full-page_14iqq_164sr_319.awsui_header-stuck_14iqq_164sr_248:not(#\9)::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  box-shadow: var(--shadow-sticky-fftr9t, 0px 1px 4px -2px rgba(0, 28, 36, 0.5));
  clip-path: polygon(-999% 100%, 999% 100%, 999% 999%, -999% 999%);
}

/*
The dynamic height dark header needs a background that will cover
the default white background of the container component.
*/
.awsui_dark-header_14iqq_164sr_337:not(#\9) {
  background-color: var(--color-background-layout-main-okygtx, #f2f3f3);
  color: var(--color-text-body-default-rlujvh, #16191f);
}

.awsui_content_14iqq_164sr_189:not(#\9) {
  flex: 1;
}
.awsui_content-fit-height_14iqq_164sr_345:not(#\9) {
  overflow: auto;
}
.awsui_content_14iqq_164sr_189.awsui_with-paddings_14iqq_164sr_263:not(#\9) {
  padding: var(--space-scaled-l-x5pubp, 20px) var(--space-container-horizontal-6u2610, 20px);
}
.awsui_header_14iqq_164sr_227 + .awsui_content_14iqq_164sr_189.awsui_with-paddings_14iqq_164sr_263:not(#\9) {
  padding-top: var(--space-container-content-top-smfayu, 16px);
}
.awsui_header_14iqq_164sr_227 + .awsui_content_14iqq_164sr_189.awsui_with-paddings_14iqq_164sr_263.awsui_content-with-media_14iqq_164sr_354:not(#\9) {
  padding-top: 0;
}

.awsui_footer_14iqq_164sr_358.awsui_with-paddings_14iqq_164sr_263:not(#\9) {
  padding: var(--space-scaled-s-gczsk7, 12px) var(--space-container-horizontal-6u2610, 20px);
}
.awsui_footer_14iqq_164sr_358.awsui_with-divider_14iqq_164sr_361:not(#\9) {
  border-top: var(--border-divider-section-width-9dl636, 1px) solid var(--color-border-divider-default-1mmknt, #eaeded);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_2qdw9_ruuxs_93:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  cursor: inherit;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.awsui_root_2qdw9_ruuxs_93.awsui_refresh_2qdw9_ruuxs_110:not(#\9), .awsui_root_2qdw9_ruuxs_93:not(#\9):not(.awsui_root-no-actions_2qdw9_ruuxs_110) {
  row-gap: var(--space-scaled-xxs-ugy2pw, 4px);
}
.awsui_root-no-actions_2qdw9_ruuxs_110.awsui_root-variant-h2_2qdw9_ruuxs_113:not(#\9):not(.awsui_refresh_2qdw9_ruuxs_110), .awsui_root-no-actions_2qdw9_ruuxs_110.awsui_root-variant-h3_2qdw9_ruuxs_113:not(#\9):not(.awsui_refresh_2qdw9_ruuxs_110), .awsui_root-has-description_2qdw9_ruuxs_113.awsui_root-variant-h2_2qdw9_ruuxs_113:not(#\9):not(.awsui_refresh_2qdw9_ruuxs_110), .awsui_root-has-description_2qdw9_ruuxs_113.awsui_root-variant-h3_2qdw9_ruuxs_113:not(#\9):not(.awsui_refresh_2qdw9_ruuxs_110) {
  padding-bottom: var(--space-scaled-xxs-ugy2pw, 4px);
}
.awsui_root-no-actions_2qdw9_ruuxs_110:not(#\9):not(.awsui_root-has-description_2qdw9_ruuxs_113):not(.awsui_refresh_2qdw9_ruuxs_110) {
  padding-bottom: calc(var(--space-scaled-xs-u0e7ft, 8px) + var(--space-xxxs-rq3iss, 2px));
}
.awsui_root-no-actions_2qdw9_ruuxs_110.awsui_refresh_2qdw9_ruuxs_110.awsui_root-variant-h2_2qdw9_ruuxs_113:not(#\9), .awsui_root-no-actions_2qdw9_ruuxs_110.awsui_refresh_2qdw9_ruuxs_110.awsui_root-variant-h3_2qdw9_ruuxs_113:not(#\9) {
  row-gap: var(--space-scaled-xxxs-emyscj, 2px);
}
.awsui_root_2qdw9_ruuxs_93.awsui_root-variant-h1_2qdw9_ruuxs_122:not(#\9):not(.awsui_refresh_2qdw9_ruuxs_110) {
  row-gap: var(--space-scaled-xxs-ugy2pw, 4px);
}
.awsui_root-no-actions_2qdw9_ruuxs_110:not(#\9):not(.awsui_root-has-description_2qdw9_ruuxs_113).awsui_refresh_2qdw9_ruuxs_110.awsui_root-variant-h3_2qdw9_ruuxs_113 {
  padding-bottom: var(--space-scaled-xs-u0e7ft, 8px);
}
.awsui_root_2qdw9_ruuxs_93.awsui_root-variant-h1_2qdw9_ruuxs_122.awsui_root-has-description_2qdw9_ruuxs_113:not(#\9):not(.awsui_refresh_2qdw9_ruuxs_110) {
  padding-bottom: var(--space-scaled-2x-xxs-mfdb10, 4px);
}

.awsui_main_2qdw9_ruuxs_132:not(#\9) {
  word-wrap: break-word;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  column-gap: var(--space-xs-inub5w, 8px);
  row-gap: calc(var(--space-scaled-xxs-ugy2pw, 4px) + var(--space-scaled-xxxs-emyscj, 2px));
}
.awsui_main_2qdw9_ruuxs_132.awsui_no-wrap_2qdw9_ruuxs_142:not(#\9) {
  flex-wrap: nowrap;
}
.awsui_main_2qdw9_ruuxs_132.awsui_refresh_2qdw9_ruuxs_110:not(#\9) {
  row-gap: var(--space-xxs-a6783b, 4px);
}
.awsui_main-variant-h1_2qdw9_ruuxs_148:not(#\9) {
  row-gap: var(--space-scaled-2x-xxs-mfdb10, 4px);
}

.awsui_root-has-description_2qdw9_ruuxs_113 > .awsui_main_2qdw9_ruuxs_132:not(#\9) {
  row-gap: var(--space-scaled-2x-xxs-mfdb10, 4px);
}

.awsui_actions_2qdw9_ruuxs_156:not(#\9) {
  display: flex;
  align-items: flex-start;
}
.awsui_actions-variant-h1_2qdw9_ruuxs_160.awsui_refresh_2qdw9_ruuxs_110:not(#\9) {
  padding: calc((var(--line-height-heading-xl-44izce, 36px) - var(--size-vertical-input-18ku63, 32px)) / 2) 0;
}
.awsui_actions-variant-h2_2qdw9_ruuxs_163.awsui_refresh_2qdw9_ruuxs_110:not(#\9) {
  padding: calc((var(--line-height-heading-l-z752l3, 22px) - var(--size-vertical-input-18ku63, 32px)) / 2) 0;
}
.awsui_actions-variant-h3_2qdw9_ruuxs_166.awsui_refresh_2qdw9_ruuxs_110:not(#\9) {
  padding: calc((var(--line-height-heading-m-88a3m6, 22px) - var(--size-vertical-input-18ku63, 32px)) / 2) 0;
}
.awsui_actions-variant-h1_2qdw9_ruuxs_160:not(#\9):not(.awsui_refresh_2qdw9_ruuxs_110) {
  padding: var(--space-scaled-xs-u0e7ft, 8px) 0;
}
.awsui_actions-variant-h2_2qdw9_ruuxs_163:not(#\9):not(.awsui_refresh_2qdw9_ruuxs_110), .awsui_actions-variant-h3_2qdw9_ruuxs_166:not(#\9):not(.awsui_refresh_2qdw9_ruuxs_110) {
  padding: var(--space-scaled-xxs-ugy2pw, 4px) 0;
}
.awsui_root-has-description_2qdw9_ruuxs_113 > .awsui_main_2qdw9_ruuxs_132 > .awsui_actions_2qdw9_ruuxs_156:not(#\9) {
  padding-bottom: 0;
}

.awsui_title_2qdw9_ruuxs_179:not(#\9) {
  min-width: 0;
  -ms-word-break: break-all;
  word-break: break-word;
  color: var(--color-text-heading-default-p5akhh, #16191f);
}
.awsui_title-variant-h1_2qdw9_ruuxs_185:not(#\9) {
  font-size: var(--font-size-heading-xl-z8h967, 28px);
  padding-top: var(--space-scaled-2x-xxs-mfdb10, 4px);
}
.awsui_title-variant-h1_2qdw9_ruuxs_185.awsui_refresh_2qdw9_ruuxs_110:not(#\9) {
  padding-top: calc((var(--size-vertical-input-18ku63, 32px) - var(--line-height-heading-xl-44izce, 36px)) / 2);
}
.awsui_title-variant-h2_2qdw9_ruuxs_192:not(#\9) {
  font-size: var(--font-size-heading-l-u89ro8, 18px);
}
.awsui_title-variant-h2_2qdw9_ruuxs_192.awsui_refresh_2qdw9_ruuxs_110:not(#\9) {
  padding-top: calc((var(--size-vertical-input-18ku63, 32px) - var(--line-height-heading-l-z752l3, 22px)) / 2);
}
.awsui_title-variant-h3_2qdw9_ruuxs_198:not(#\9) {
  font-size: var(--font-size-heading-m-ulervk, 18px);
}
.awsui_title-variant-h3_2qdw9_ruuxs_198.awsui_refresh_2qdw9_ruuxs_110:not(#\9) {
  padding-top: calc((var(--size-vertical-input-18ku63, 32px) - var(--line-height-heading-m-88a3m6, 22px)) / 2);
}
.awsui_title-variant-h2_2qdw9_ruuxs_192:not(#\9):not(.awsui_refresh_2qdw9_ruuxs_110), .awsui_title-variant-h3_2qdw9_ruuxs_198:not(#\9):not(.awsui_refresh_2qdw9_ruuxs_110) {
  padding-top: var(--space-scaled-xs-u0e7ft, 8px);
}
.awsui_no-wrap_2qdw9_ruuxs_142 > .awsui_title_2qdw9_ruuxs_179:not(#\9):not(.awsui_refresh_2qdw9_ruuxs_110) {
  padding-bottom: calc(var(--space-scaled-xxs-ugy2pw, 4px) + var(--space-scaled-xxxs-emyscj, 2px));
}

.awsui_root-no-actions_2qdw9_ruuxs_110.awsui_root-has-description_2qdw9_ruuxs_113 > .awsui_main_2qdw9_ruuxs_132 > :not(#\9):not(.awsui_refresh_2qdw9_ruuxs_110).awsui_title-variant-h2_2qdw9_ruuxs_192, .awsui_root-no-actions_2qdw9_ruuxs_110.awsui_root-has-description_2qdw9_ruuxs_113 > .awsui_main_2qdw9_ruuxs_132 > :not(#\9):not(.awsui_refresh_2qdw9_ruuxs_110).awsui_title-variant-h3_2qdw9_ruuxs_198 {
  padding-bottom: var(--space-scaled-xxs-ugy2pw, 4px);
}

.awsui_root-variant-h1_2qdw9_ruuxs_122.awsui_root-no-actions_2qdw9_ruuxs_110:not(#\9):not(.awsui_root-has-description_2qdw9_ruuxs_113):not(.awsui_refresh_2qdw9_ruuxs_110) {
  padding-bottom: var(--space-scaled-2x-xxs-mfdb10, 4px);
}

.awsui_info_2qdw9_ruuxs_219:not(#\9) {
  padding-right: var(--space-s-rd607g, 12px);
}

.awsui_description_2qdw9_ruuxs_223:not(#\9) {
  margin: 0;
  padding: 0;
  color: var(--color-text-heading-secondary-jkk2pc, #545b64);
}
.awsui_description-variant-h1_2qdw9_ruuxs_228:not(#\9) {
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
}
.awsui_description-variant-h2_2qdw9_ruuxs_232:not(#\9) {
  font-size: var(--font-header-h2-description-size-8avpy1, 12px);
  line-height: var(--font-header-h2-description-line-height-jj9arc, 16px);
}
.awsui_description-variant-h2_2qdw9_ruuxs_232:not(#\9):not(.awsui_refresh_2qdw9_ruuxs_110) {
  padding-bottom: var(--space-scaled-xxs-ugy2pw, 4px);
}
.awsui_description-variant-h3_2qdw9_ruuxs_239:not(#\9) {
  font-size: var(--font-size-body-s-ucr7d6, 12px);
  line-height: var(--line-height-body-s-lnbzsa, 16px);
  letter-spacing: var(--letter-spacing-body-s-rksemx, normal);
}
.awsui_description-variant-h3_2qdw9_ruuxs_239:not(#\9):not(.awsui_refresh_2qdw9_ruuxs_110) {
  padding-bottom: var(--space-scaled-xxs-ugy2pw, 4px);
}

.awsui_heading_2qdw9_ruuxs_248:not(#\9) {
  margin: 0;
  display: inline;
  font-size: inherit;
  margin-right: var(--space-xs-inub5w, 8px);
}
.awsui_heading_2qdw9_ruuxs_248:not(#\9):only-child {
  margin: 0;
}
.awsui_heading-variant-h1_2qdw9_ruuxs_257:not(#\9) {
  font-size: var(--font-size-heading-xl-z8h967, 28px);
  line-height: var(--line-height-heading-xl-44izce, 36px);
  letter-spacing: var(--letter-spacing-heading-xl-y4tqgw, normal);
}
.awsui_heading-variant-h2_2qdw9_ruuxs_262:not(#\9) {
  font-size: var(--font-size-heading-l-u89ro8, 18px);
  line-height: var(--line-height-heading-l-z752l3, 22px);
  letter-spacing: var(--letter-spacing-heading-l-v8uzhr, normal);
}
.awsui_heading-variant-h3_2qdw9_ruuxs_267:not(#\9) {
  font-size: var(--font-size-heading-m-ulervk, 18px);
  line-height: var(--line-height-heading-m-88a3m6, 22px);
  letter-spacing: var(--letter-spacing-heading-m-9g78ia, normal);
}

.awsui_heading-text_2qdw9_ruuxs_273:not(#\9) {
  /* used in test-utils */
}
.awsui_heading-text-variant-h1_2qdw9_ruuxs_276:not(#\9) {
  font-size: var(--font-size-heading-xl-z8h967, 28px);
  line-height: var(--line-height-heading-xl-44izce, 36px);
  letter-spacing: var(--letter-spacing-heading-xl-y4tqgw, normal);
  font-weight: var(--font-weight-heading-xl-2jbc8j, 400);
  -webkit-font-smoothing: var(--font-smoothing-webkit-rg3jdt, auto);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-58s982, auto);
}
.awsui_heading-text-variant-h2_2qdw9_ruuxs_284:not(#\9) {
  font-size: var(--font-size-heading-l-u89ro8, 18px);
  line-height: var(--line-height-heading-l-z752l3, 22px);
  letter-spacing: var(--letter-spacing-heading-l-v8uzhr, normal);
  font-weight: var(--font-weight-heading-l-jlzyui, 700);
  -webkit-font-smoothing: var(--font-smoothing-webkit-rg3jdt, auto);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-58s982, auto);
}
.awsui_heading-text-variant-h3_2qdw9_ruuxs_292:not(#\9) {
  font-size: var(--font-size-heading-m-ulervk, 18px);
  line-height: var(--line-height-heading-m-88a3m6, 22px);
  letter-spacing: var(--letter-spacing-heading-m-9g78ia, normal);
  font-weight: var(--font-weight-heading-m-ra39kx, 400);
  -webkit-font-smoothing: var(--font-smoothing-webkit-rg3jdt, auto);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-58s982, auto);
}

.awsui_counter_2qdw9_ruuxs_301:not(#\9) {
  color: var(--color-text-counter-001jjm, #687078);
  font-weight: 400;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_r2vco_1pfj0_93:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_4yi2u_1w9vz_93:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  display: flex;
}

.awsui_outline_4yi2u_1w9vz_107:not(#\9) {
  position: relative;
}
.awsui_outline_4yi2u_1w9vz_107:not(#\9) {
  outline: 2px dotted transparent;
  outline-offset: calc(2px - 1px);
}
.awsui_outline_4yi2u_1w9vz_107:not(#\9)::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * 2px);
  top: calc(-1 * 2px);
  width: calc(100% + 2 * 2px);
  height: calc(100% + 2 * 2px);
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}

.awsui_toggle-control_4yi2u_1w9vz_126:not(#\9) {
  margin-top: calc((var(--line-height-body-m-4ax85e, 22px) - 16px) / 2);
  min-height: 16px;
  min-width: 24px;
  height: 16px;
  width: 24px;
  background: var(--color-background-toggle-default-six3cw, #545b64);
  border-radius: 8px;
}
.awsui_toggle-control-checked_4yi2u_1w9vz_135:not(#\9) {
  background: var(--color-background-control-checked-q75knx, #0073bb);
}
.awsui_toggle-control-disabled_4yi2u_1w9vz_138:not(#\9) {
  background: var(--color-background-control-disabled-vkotqk, #d5dbdb);
}
.awsui_toggle-control-disabled_4yi2u_1w9vz_138.awsui_toggle-control-checked_4yi2u_1w9vz_135:not(#\9) {
  background: var(--color-background-toggle-checked-disabled-o63zu0, #99cbe4);
}

.awsui_toggle-handle_4yi2u_1w9vz_145:not(#\9) {
  display: block;
  position: absolute;
  border-radius: 6px;
  background: var(--color-foreground-control-default-5f7j2k, #ffffff);
  box-shadow: 1px 1px rgba(0, 0, 0, 0.25);
  width: 12px;
  height: 12px;
  top: 2px;
  left: 2px;
  transition: transform var(--motion-duration-fast-pml190, 90ms) var(--motion-easing-ease-out-quart-x76njy, cubic-bezier(0.165, 0.84, 0.44, 1)), background-color var(--motion-duration-fast-pml190, 90ms) var(--motion-easing-ease-out-quart-x76njy, cubic-bezier(0.165, 0.84, 0.44, 1));
}
.awsui_toggle-handle-checked_4yi2u_1w9vz_157:not(#\9) {
  transform: translateX(8px);
}
.awsui_toggle-handle-disabled_4yi2u_1w9vz_160:not(#\9) {
  background: var(--color-foreground-control-disabled-4rcx89, #ffffff);
  box-shadow: none;
}
@media (prefers-reduced-motion: reduce) {
  .awsui_toggle-handle_4yi2u_1w9vz_145:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_toggle-handle_4yi2u_1w9vz_145:not(#\9), .awsui-mode-entering .awsui_toggle-handle_4yi2u_1w9vz_145:not(#\9) {
  animation: none;
  transition: none;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_content-enter_gwq0h_ff93m_97:not(#\9) {
  animation: awsui_awsui-motion-fade-in_gwq0h_ff93m_1 var(--motion-duration-show-paced-1a355f, 180ms) var(--motion-easing-show-paced-uosx37, ease-out);
}
@keyframes awsui_awsui-motion-fade-in_gwq0h_ff93m_1 {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_content-enter_gwq0h_ff93m_97:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_content-enter_gwq0h_ff93m_97:not(#\9), .awsui-mode-entering .awsui_content-enter_gwq0h_ff93m_97:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_trigger-expanded_gwq0h_ff93m_119:not(#\9) {
  transition: border-bottom-color var(--motion-duration-show-paced-1a355f, 180ms) var(--motion-easing-show-paced-uosx37, ease-out);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_trigger-expanded_gwq0h_ff93m_119:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_trigger-expanded_gwq0h_ff93m_119:not(#\9), .awsui-mode-entering .awsui_trigger-expanded_gwq0h_ff93m_119:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_icon_gwq0h_ff93m_133:not(#\9) {
  transition: transform var(--motion-duration-rotate-90-1zdthq, 135ms) var(--motion-easing-rotate-90-acpifo, cubic-bezier(0.165, 0.84, 0.44, 1));
}
@media (prefers-reduced-motion: reduce) {
  .awsui_icon_gwq0h_ff93m_133:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_icon_gwq0h_ff93m_133:not(#\9), .awsui-mode-entering .awsui_icon_gwq0h_ff93m_133:not(#\9) {
  animation: none;
  transition: none;
}

/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_gwq0h_ff93m_151:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  min-width: 0;
  -ms-word-break: break-all;
  word-break: break-word;
  display: block;
}

.awsui_expand-button_gwq0h_ff93m_168:not(#\9) {
  /* used in test-utils */
}

.awsui_icon_gwq0h_ff93m_133:not(#\9) {
  transform: rotate(-90deg);
}
.awsui_icon_gwq0h_ff93m_133.awsui_expanded_gwq0h_ff93m_175:not(#\9) {
  transform: rotate(0deg);
}

.awsui_icon-container_gwq0h_ff93m_179:not(#\9) {
  position: relative;
  margin-left: calc((var(--line-height-body-m-4ax85e, 22px) - var(--size-icon-normal-as5jb3, 16px)) / -2);
  margin-right: calc(var(--space-xxs-a6783b, 4px) + var(--border-divider-list-width-fsy9j8, 1px));
}
.awsui_icon-container-container_gwq0h_ff93m_184:not(#\9) {
  margin-right: var(--space-xs-inub5w, 8px);
}

.awsui_wrapper_gwq0h_ff93m_188:not(#\9) {
  box-sizing: border-box;
  border: none;
  width: 100%;
  line-height: var(--line-height-body-m-4ax85e, 22px);
  text-align: left;
}
.awsui_wrapper-default_gwq0h_ff93m_195:not(#\9), .awsui_wrapper-footer_gwq0h_ff93m_195:not(#\9) {
  border: var(--border-divider-section-width-9dl636, 1px) solid transparent;
}
.awsui_wrapper-navigation_gwq0h_ff93m_198:not(#\9) {
  border-left: var(--border-divider-section-width-9dl636, 1px) solid transparent;
}
.awsui_wrapper-navigation_gwq0h_ff93m_198:not(#\9), .awsui_wrapper-container_gwq0h_ff93m_201:not(#\9) {
  display: flex;
  font-weight: var(--font-weight-heading-s-hg02sg, 700);
}
.awsui_wrapper-default_gwq0h_ff93m_195:not(#\9), .awsui_wrapper-navigation_gwq0h_ff93m_198:not(#\9), .awsui_wrapper-footer_gwq0h_ff93m_195:not(#\9) {
  color: var(--color-text-expandable-section-default-yax29s, #545b64);
  -webkit-font-smoothing: var(--font-smoothing-webkit-rg3jdt, auto);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-58s982, auto);
  font-size: var(--font-expandable-heading-size-lj02xx, 14px);
  letter-spacing: var(--letter-spacing-heading-s-2369b0, normal);
}
.awsui_wrapper-default_gwq0h_ff93m_195:not(#\9) {
  padding-top: var(--space-scaled-xxs-ugy2pw, 4px);
  padding-bottom: var(--space-scaled-xxs-ugy2pw, 4px);
  padding-right: var(--space-xxs-a6783b, 4px);
}
.awsui_wrapper-default_gwq0h_ff93m_195.awsui_header-deprecated_gwq0h_ff93m_217:not(#\9) {
  padding-left: var(--space-xxs-a6783b, 4px);
}
.awsui_wrapper-default_gwq0h_ff93m_195:not(#\9):not(.awsui_header-deprecated_gwq0h_ff93m_217) {
  padding-left: calc(var(--space-xxs-a6783b, 4px) + calc(var(--size-icon-normal-as5jb3, 16px) + (var(--line-height-body-m-4ax85e, 22px) - var(--size-icon-normal-as5jb3, 16px)) / -2 + var(--space-xxs-a6783b, 4px) + var(--border-divider-list-width-fsy9j8, 1px)));
}
.awsui_wrapper-footer_gwq0h_ff93m_195:not(#\9) {
  padding-top: var(--space-scaled-xxs-ugy2pw, 4px);
  padding-bottom: var(--space-scaled-xxs-ugy2pw, 4px);
  padding-right: 0;
}
.awsui_wrapper-footer_gwq0h_ff93m_195.awsui_header-deprecated_gwq0h_ff93m_217:not(#\9) {
  padding-left: 0;
}
.awsui_wrapper-footer_gwq0h_ff93m_195:not(#\9):not(.awsui_header-deprecated_gwq0h_ff93m_217) {
  padding-left: calc(var(--size-icon-normal-as5jb3, 16px) + (var(--line-height-body-m-4ax85e, 22px) - var(--size-icon-normal-as5jb3, 16px)) / -2 + var(--space-xxs-a6783b, 4px) + var(--border-divider-list-width-fsy9j8, 1px));
}
.awsui_wrapper-container_gwq0h_ff93m_201:not(#\9) {
  padding-top: var(--space-container-header-top-isuu42, 12px);
  padding-bottom: var(--space-container-header-bottom-7poudk, 12px);
  padding-right: var(--space-container-horizontal-6u2610, 20px);
}
.awsui_wrapper-container_gwq0h_ff93m_201:not(#\9):not(.awsui_wrapper-expanded_gwq0h_ff93m_239) {
  padding-bottom: var(--space-container-header-top-isuu42, 12px);
}
.awsui_wrapper-container_gwq0h_ff93m_201.awsui_header-deprecated_gwq0h_ff93m_217:not(#\9) {
  padding-left: var(--space-container-horizontal-6u2610, 20px);
}
.awsui_wrapper-container_gwq0h_ff93m_201:not(#\9):not(.awsui_header-deprecated_gwq0h_ff93m_217) {
  padding-left: calc(var(--space-container-horizontal-6u2610, 20px) + calc(var(--size-icon-medium-d9rdun, 16px) + (var(--line-height-body-m-4ax85e, 22px) - var(--size-icon-normal-as5jb3, 16px)) / -2 + var(--space-xs-inub5w, 8px)));
}
body[data-awsui-focus-visible=true] .awsui_wrapper-container_gwq0h_ff93m_201:not(#\9):focus {
  padding: calc(var(--space-scaled-s-gczsk7, 12px) - var(--border-divider-section-width-9dl636, 1px)) calc(var(--space-l-ds615y, 20px) - var(--border-divider-section-width-9dl636, 1px));
}
.awsui_wrapper-default_gwq0h_ff93m_195.awsui_wrapper-expanded_gwq0h_ff93m_239:not(#\9) {
  border-bottom-color: var(--color-border-divider-default-1mmknt, #eaeded);
}

.awsui_header_gwq0h_ff93m_217:not(#\9) {
  /* used in test-utils */
}
.awsui_header-wrapper_gwq0h_ff93m_258:not(#\9), .awsui_header-deprecated_gwq0h_ff93m_217:not(#\9) {
  display: flex;
  font-weight: var(--font-weight-heading-s-hg02sg, 700);
}
.awsui_header-wrapper_gwq0h_ff93m_258:not(#\9) {
  font-size: inherit;
  letter-spacing: inherit;
  margin: 0;
  padding: 0;
}
body[data-awsui-focus-visible=true] .awsui_header-button_gwq0h_ff93m_268:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_header-container-button_gwq0h_ff93m_268:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_header-button_gwq0h_ff93m_268:not(#\9):focus, body[data-awsui-focus-visible=true] .awsui_header-container-button_gwq0h_ff93m_268:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(0px - 1px);
}
body[data-awsui-focus-visible=true] .awsui_header-button_gwq0h_ff93m_268:not(#\9):focus::before, body[data-awsui-focus-visible=true] .awsui_header-container-button_gwq0h_ff93m_268:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * 0px);
  top: calc(-1 * 0px);
  width: calc(100% + 2 * 0px);
  height: calc(100% + 2 * 0px);
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_header-button_gwq0h_ff93m_268:not(#\9) {
  box-sizing: border-box;
  display: flex;
  margin-left: calc(-1 * calc(var(--size-icon-normal-as5jb3, 16px) + (var(--line-height-body-m-4ax85e, 22px) - var(--size-icon-normal-as5jb3, 16px)) / -2 + var(--space-xxs-a6783b, 4px) + var(--border-divider-list-width-fsy9j8, 1px)));
}
.awsui_header-container-button_gwq0h_ff93m_268:not(#\9) {
  margin-left: calc(-1 * calc(var(--size-icon-medium-d9rdun, 16px) + (var(--line-height-body-m-4ax85e, 22px) - var(--size-icon-normal-as5jb3, 16px)) / -2 + var(--space-xs-inub5w, 8px)));
}
.awsui_header-container_gwq0h_ff93m_268:not(#\9) {
  width: 100%;
}
.awsui_header-container_gwq0h_ff93m_268 > .awsui_icon-container_gwq0h_ff93m_179:not(#\9) {
  margin-top: var(--space-expandable-section-icon-offset-top-om84w8, 8px);
}
.awsui_header-navigation_gwq0h_ff93m_300 > .awsui_icon-container_gwq0h_ff93m_179:not(#\9) {
  display: inline-flex;
  cursor: pointer;
  color: var(--color-text-expandable-section-navigation-icon-default-bniq5i, #879596);
  border: 0;
  padding: 0;
  background: transparent;
  outline: none;
  text-decoration: none;
  flex-direction: column;
}
.awsui_header-navigation_gwq0h_ff93m_300 > .awsui_icon-container_gwq0h_ff93m_179:not(#\9):hover {
  color: var(--color-text-expandable-section-hover-th9u3f, #16191f);
}
body[data-awsui-focus-visible=true] .awsui_header-navigation_gwq0h_ff93m_300 > .awsui_icon-container_gwq0h_ff93m_179:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_header-navigation_gwq0h_ff93m_300 > .awsui_icon-container_gwq0h_ff93m_179:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(2px - 1px);
}
body[data-awsui-focus-visible=true] .awsui_header-navigation_gwq0h_ff93m_300 > .awsui_icon-container_gwq0h_ff93m_179:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * 2px);
  top: calc(-1 * 2px);
  width: calc(100% + 2 * 2px);
  height: calc(100% + 2 * 2px);
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_header-text_gwq0h_ff93m_332:not(#\9) {
  /* used in test-utils */
}

.awsui_content_gwq0h_ff93m_97:not(#\9) {
  display: none;
}
.awsui_content-default_gwq0h_ff93m_339:not(#\9) {
  padding: var(--space-scaled-xs-u0e7ft, 8px) 0;
}
.awsui_content-footer_gwq0h_ff93m_342:not(#\9) {
  padding: var(--space-xs-inub5w, 8px) 0;
}
.awsui_content-expanded_gwq0h_ff93m_345:not(#\9) {
  display: block;
}

.awsui_focusable_gwq0h_ff93m_349:not(#\9):focus {
  outline: none;
  text-decoration: none;
}
body[data-awsui-focus-visible=true] .awsui_focusable_gwq0h_ff93m_349:not(#\9):focus {
  outline: 2px dotted transparent;
  border: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-item-focused-t884ih, #0073bb);
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 var(--border-control-focus-ring-shadow-spread-oufv0y, 1px) var(--color-border-item-focused-t884ih, #0073bb);
}

.awsui_click-target_gwq0h_ff93m_360:not(#\9) {
  cursor: pointer;
}
.awsui_click-target_gwq0h_ff93m_360:not(#\9):not(.awsui_wrapper-container_gwq0h_ff93m_201):not(.awsui_header-container-button_gwq0h_ff93m_268):hover {
  color: var(--color-text-expandable-section-hover-th9u3f, #16191f);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_progress_11huc_1e5at_185:not(#\9)::-webkit-progress-value {
  -webkit-transition: width var(--motion-duration-moderate-bggcsm, 135ms) linear;
  transition: width var(--motion-duration-moderate-bggcsm, 135ms) linear;
}
@media (prefers-reduced-motion: reduce) {
  .awsui_progress_11huc_1e5at_185:not(#\9)::-webkit-progress-value {
    animation: none;
    -webkit-transition: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_progress_11huc_1e5at_185:not(#\9)::-webkit-progress-value, .awsui-mode-entering .awsui_progress_11huc_1e5at_185:not(#\9)::-webkit-progress-value {
  animation: none;
  -webkit-transition: none;
  transition: none;
}

.awsui_result-state_11huc_1e5at_199:not(#\9) {
  animation: awsui_awsui-motion-fade-in_11huc_1e5at_1 var(--motion-duration-transition-show-paced-qcfnau, 180ms) var(--motion-easing-transition-show-paced-qe3gc9, ease-out);
}
@keyframes awsui_awsui-motion-fade-in_11huc_1e5at_1 {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_result-state_11huc_1e5at_199:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_result-state_11huc_1e5at_199:not(#\9), .awsui-mode-entering .awsui_result-state_11huc_1e5at_199:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_root_11huc_1e5at_221:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.awsui_with-result-button_11huc_1e5at_234:not(#\9) {
  padding-right: var(--space-m-sptmsg, 16px);
}

.awsui_result-text_11huc_1e5at_238:not(#\9) {
  /* used in test-utils */
}

.awsui_result-container-error_11huc_1e5at_242:not(#\9), .awsui_result-container-success_11huc_1e5at_242:not(#\9) {
  /* used in test-utils */
}

.awsui_result-button_11huc_1e5at_246:not(#\9) {
  display: inline-block;
  margin: var(--space-scaled-xxs-ugy2pw, 4px) 0;
}

.awsui_word-wrap_11huc_1e5at_251:not(#\9) {
  min-width: 0;
  -ms-word-break: break-all;
  word-break: break-word;
}

.awsui_label-flash_11huc_1e5at_257:not(#\9) {
  color: "inherit";
  font-weight: 700;
}
.awsui_label-key-value_11huc_1e5at_261:not(#\9) {
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  font-weight: var(--font-display-label-weight-w2bkol, 400);
  color: var(--color-text-label-ezn36c, #545b64);
  margin-bottom: var(--space-scaled-xxxs-emyscj, 2px);
}

.awsui_flash_11huc_1e5at_269:not(#\9) {
  color: inherit;
}

.awsui_progress-container_11huc_1e5at_273:not(#\9) {
  display: flex;
  align-items: center;
  max-width: 800px;
  height: var(--line-height-body-m-4ax85e, 22px);
}

.awsui_percentage-container_11huc_1e5at_280:not(#\9) {
  width: 33px;
  flex-shrink: 0;
  white-space: nowrap;
  text-align: right;
  font-size: var(--font-size-body-s-ucr7d6, 12px);
  line-height: var(--line-height-body-s-lnbzsa, 16px);
  letter-spacing: var(--letter-spacing-body-s-rksemx, normal);
}

.awsui_percentage_11huc_1e5at_280:not(#\9) {
  /* used in test-utils */
}

.awsui_progress_11huc_1e5at_185:not(#\9) {
  width: 100%;
  margin-right: var(--space-s-rd607g, 12px);
  min-width: 0;
  height: 4px;
  border: 0 none;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: var(--color-background-progress-bar-layout-default-n7v8t0, #eaeded);
}
.awsui_progress_11huc_1e5at_185:not(#\9)::-webkit-progress-bar {
  height: 4px;
  border: 0 none;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: var(--color-background-progress-bar-layout-default-n7v8t0, #eaeded);
}
.awsui_progress_11huc_1e5at_185:not(#\9)::-webkit-progress-value {
  border-radius: 10px 0px 0px 10px;
  background-color: var(--color-background-progress-bar-content-default-hbebrl, #0073bb);
}
.awsui_progress_11huc_1e5at_185.awsui_complete_11huc_1e5at_315:not(#\9)::-webkit-progress-value {
  border-radius: 10px;
}
.awsui_progress_11huc_1e5at_185:not(#\9)::-moz-progress-bar {
  border-radius: 10px 0px 0px 10px;
  background-color: var(--color-background-progress-bar-content-default-hbebrl, #0073bb);
}
.awsui_progress_11huc_1e5at_185:not(#\9)::-ms-fill {
  border-radius: 10px 0px 0px 10px;
  background-color: #0073bb;
  border: none;
}
.awsui_progress_11huc_1e5at_185.awsui_complete_11huc_1e5at_315:not(#\9)::-ms-fill {
  border-radius: 10px;
}
.awsui_progress_11huc_1e5at_185.awsui_progress-in-flash_11huc_1e5at_330:not(#\9) {
  background-color: var(--color-background-progress-bar-layout-in-flash-7vdtbb, rgba(255, 255, 255, 0.25));
}
.awsui_progress_11huc_1e5at_185.awsui_progress-in-flash_11huc_1e5at_330:not(#\9)::-webkit-progress-bar {
  background-color: var(--color-background-progress-bar-layout-in-flash-7vdtbb, rgba(255, 255, 255, 0.25));
}
.awsui_progress_11huc_1e5at_185.awsui_progress-in-flash_11huc_1e5at_330:not(#\9)::-webkit-progress-value {
  background-color: var(--color-background-progress-bar-content-in-flash-v3roh6, rgba(255, 255, 255, 0.7));
}
.awsui_progress_11huc_1e5at_185.awsui_progress-in-flash_11huc_1e5at_330:not(#\9)::-moz-progress-bar {
  background-color: var(--color-background-progress-bar-content-in-flash-v3roh6, rgba(255, 255, 255, 0.7));
}
.awsui_progress_11huc_1e5at_185.awsui_progress-in-flash_11huc_1e5at_330:not(#\9)::-ms-fill {
  background-color: rgba(255, 255, 255, 0.7);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable selector-max-type */
.awsui_tabs-header_14rmt_1o7ji_186:not(#\9) {
  margin: 0;
  padding: 0;
  display: flex;
}

.awsui_tabs-header-list_14rmt_1o7ji_192:not(#\9) {
  margin: 0;
  padding: 0;
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  position: relative;
  width: 100%;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
.awsui_tabs-header-list_14rmt_1o7ji_192:not(#\9)::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.awsui_pagination-button_14rmt_1o7ji_207:not(#\9) {
  margin: var(--space-scaled-s-gczsk7, 12px) 0;
  padding: 0 var(--space-xxs-a6783b, 4px);
  display: flex;
}
.awsui_pagination-button-left_14rmt_1o7ji_212:not(#\9) {
  border-right: var(--border-divider-section-width-9dl636, 1px) solid var(--color-border-control-disabled-n4rl6j, #d5dbdb);
}
.awsui_pagination-button-left-scrollable_14rmt_1o7ji_215:not(#\9) {
  z-index: 1;
  box-shadow: 5px 0px 4px -3px var(--color-border-tabs-shadow-k1zhjd, #eaeded), 1px 0px 0px 0px var(--color-border-tabs-shadow-k1zhjd, #eaeded);
}
.awsui_pagination-button-right_14rmt_1o7ji_219:not(#\9) {
  border-left: var(--border-divider-section-width-9dl636, 1px) solid var(--color-border-control-disabled-n4rl6j, #d5dbdb);
}
.awsui_pagination-button-right-scrollable_14rmt_1o7ji_222:not(#\9) {
  z-index: 1;
  box-shadow: -5px 0px 4px -3px var(--color-border-tabs-shadow-k1zhjd, #eaeded), -1px 0px 0px 0 var(--color-border-tabs-shadow-k1zhjd, #eaeded);
}

.awsui_tabs-tab_14rmt_1o7ji_227:not(#\9) {
  list-style: none;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  max-width: calc(90% - var(--space-l-ds615y, 20px));
}
.awsui_tabs-tab_14rmt_1o7ji_227 > button:not(#\9) {
  background-color: transparent;
}

.awsui_tabs-tab-label_14rmt_1o7ji_238:not(#\9) {
  display: flex;
  align-items: center;
  padding: var(--space-scaled-2x-xxs-mfdb10, 4px) var(--space-l-ds615y, 20px);
  text-align: left;
  position: relative;
  min-width: 0;
  -ms-word-break: break-all;
  word-break: break-word;
}

.awsui_tabs-tab_14rmt_1o7ji_227:not(#\9):not(:last-child) > a > .awsui_tabs-tab-label_14rmt_1o7ji_238, .awsui_tabs-tab_14rmt_1o7ji_227:not(#\9):not(:last-child) > button > .awsui_tabs-tab-label_14rmt_1o7ji_238 {
  margin-right: calc(-1 * var(--border-divider-section-width-9dl636, 1px));
  border-right: var(--border-divider-section-width-9dl636, 1px) solid var(--color-border-tabs-divider-ol648v, #aab7b8);
}

.awsui_tabs-tab-link_14rmt_1o7ji_254:not(#\9) {
  position: relative;
  display: flex;
  align-items: stretch;
  text-decoration: none;
  cursor: pointer;
  padding: calc(var(--space-scaled-s-gczsk7, 12px) - 1px) 0 var(--space-scaled-s-gczsk7, 12px) 0;
  margin-top: 1px;
  border: var(--border-divider-section-width-9dl636, 1px) solid transparent;
  font-size: var(--font-tabs-size-647go8, 14px);
  line-height: var(--font-tabs-line-height-gsriti, 22px);
  font-weight: var(--font-wayfinding-link-active-weight-3yc06k, 700);
  color: var(--color-text-interactive-default-djvtmz, #545b64);
  -webkit-font-smoothing: var(--font-smoothing-webkit-rg3jdt, auto);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-58s982, auto);
}
.awsui_tabs-tab-link_14rmt_1o7ji_254.awsui_refresh_14rmt_1o7ji_270:not(#\9) {
  padding: calc(var(--space-static-xs-lb1zri, 8px) - 1px) 0 var(--space-static-xs-lb1zri, 8px) 0;
}
.awsui_tabs-tab-link_14rmt_1o7ji_254:not(#\9):hover {
  color: var(--color-text-accent-qe8oro, #0073bb);
}
.awsui_tabs-tab-link_14rmt_1o7ji_254:not(#\9):focus {
  outline: none;
}
body[data-awsui-focus-visible=true] .awsui_tabs-tab-link_14rmt_1o7ji_254:not(#\9):focus {
  z-index: 1;
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_tabs-tab-link_14rmt_1o7ji_254:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-tabs-focus-outline-gutter-eftd59, 0px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_tabs-tab-link_14rmt_1o7ji_254:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  left: calc(-1 * var(--space-tabs-focus-outline-gutter-eftd59, 0px));
  top: calc(-1 * var(--space-tabs-focus-outline-gutter-eftd59, 0px));
  width: calc(100% + 2 * var(--space-tabs-focus-outline-gutter-eftd59, 0px));
  height: calc(100% + 2 * var(--space-tabs-focus-outline-gutter-eftd59, 0px));
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}
body[data-awsui-focus-visible=true] .awsui_tabs-tab-link_14rmt_1o7ji_254:not(#\9):focus > a > .awsui_tabs-tab-label_14rmt_1o7ji_238, body[data-awsui-focus-visible=true] .awsui_tabs-tab-link_14rmt_1o7ji_254:not(#\9):focus > button > .awsui_tabs-tab-label_14rmt_1o7ji_238 {
  border-right-color: transparent;
}

.awsui_tabs-tab_14rmt_1o7ji_227:not(#\9):first-child {
  margin-left: 1px;
}
.awsui_tabs-tab_14rmt_1o7ji_227:not(#\9):first-child > a > .awsui_tabs-tab-label_14rmt_1o7ji_238, .awsui_tabs-tab_14rmt_1o7ji_227:not(#\9):first-child > button > .awsui_tabs-tab-label_14rmt_1o7ji_238 {
  padding-left: calc(var(--space-l-ds615y, 20px) - 1px);
}

.awsui_tabs-tab_14rmt_1o7ji_227:not(#\9):last-child {
  margin-right: 1px;
}
.awsui_tabs-tab_14rmt_1o7ji_227:not(#\9):last-child > a > .awsui_tabs-tab-label_14rmt_1o7ji_238, .awsui_tabs-tab_14rmt_1o7ji_227:not(#\9):last-child > button > .awsui_tabs-tab-label_14rmt_1o7ji_238 {
  padding-right: calc(var(--space-l-ds615y, 20px) - 1px);
}

.awsui_tabs-tab-disabled_14rmt_1o7ji_316:not(#\9), .awsui_tabs-tab-disabled_14rmt_1o7ji_316:not(#\9):hover {
  pointer-events: none;
  cursor: default;
  color: var(--color-text-interactive-disabled-k4q23b, #aab7b8);
  font-weight: var(--font-tabs-disabled-weight-istqzx, 400);
}

.awsui_tabs-tab-link_14rmt_1o7ji_254:not(#\9):not(.awsui_tabs-tab-disabled_14rmt_1o7ji_316):after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: calc(-1 * var(--border-divider-section-width-9dl636, 1px));
  height: var(--border-active-width-sbv7bd, 2px);
  border-radius: var(--border-radius-tabs-focus-ring-bf34o9, 0px);
  background: var(--color-border-tabs-underline-uahgcp, #16191f);
  opacity: 0;
}
.awsui_tabs-tab-link_14rmt_1o7ji_254:not(#\9):not(.awsui_tabs-tab-disabled_14rmt_1o7ji_316).awsui_refresh_14rmt_1o7ji_270:after {
  transition: opacity var(--motion-duration-refresh-only-medium-af0v35, 165ms) var(--motion-easing-refresh-only-c-lo9udz, cubic-bezier(0.84, 0, 0.16, 1));
}
@media (prefers-reduced-motion: reduce) {
  .awsui_tabs-tab-link_14rmt_1o7ji_254:not(#\9):not(.awsui_tabs-tab-disabled_14rmt_1o7ji_316).awsui_refresh_14rmt_1o7ji_270:after {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_tabs-tab-link_14rmt_1o7ji_254:not(#\9):not(.awsui_tabs-tab-disabled_14rmt_1o7ji_316).awsui_refresh_14rmt_1o7ji_270:after, .awsui-mode-entering .awsui_tabs-tab-link_14rmt_1o7ji_254:not(#\9):not(.awsui_tabs-tab-disabled_14rmt_1o7ji_316).awsui_refresh_14rmt_1o7ji_270:after {
  animation: none;
  transition: none;
}

.awsui_tabs-tab-active_14rmt_1o7ji_348:not(#\9):not(.awsui_tabs-tab-disabled_14rmt_1o7ji_316) {
  color: var(--color-text-accent-qe8oro, #0073bb);
}
.awsui_tabs-tab-active_14rmt_1o7ji_348:not(#\9):not(.awsui_tabs-tab-disabled_14rmt_1o7ji_316):after {
  opacity: 1;
}

.awsui_tabs-header-with-divider_14rmt_1o7ji_355:not(#\9) {
  border-bottom: var(--border-divider-section-width-9dl636, 1px) solid var(--color-border-tabs-divider-ol648v, #aab7b8);
}

.awsui_root_14rmt_1o7ji_359:not(#\9) {
  /* used in test-utils or tests */
}

.awsui_tabs_14rmt_1o7ji_186:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  display: block;
  width: 100%;
}

.awsui_tabs-content_14rmt_1o7ji_378:not(#\9) {
  display: none;
}

.awsui_tabs-content-active_14rmt_1o7ji_382:not(#\9) {
  display: block;
}
body[data-awsui-focus-visible=true] .awsui_tabs-content-active_14rmt_1o7ji_382:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: 2px;
  border-radius: var(--border-radius-container-y85mnh, 0px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-t884ih, #0073bb);
}

.awsui_tabs-content-wrapper_14rmt_1o7ji_392.awsui_with-paddings_14rmt_1o7ji_392 > .awsui_tabs-content_14rmt_1o7ji_378:not(#\9) {
  padding: var(--space-scaled-m-9q5ipc, 16px) 0;
}

.awsui_tabs-container-content-wrapper_14rmt_1o7ji_396.awsui_with-paddings_14rmt_1o7ji_392 > .awsui_tabs-content_14rmt_1o7ji_378:not(#\9) {
  padding: var(--space-tabs-content-top-qqb5pb, 16px) var(--space-container-horizontal-6u2610, 20px) var(--space-scaled-l-x5pubp, 20px);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-implicit-descendant, selector-max-type */
.awsui_text-content_6absk_7xl79_94:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  /* stylelint-disable no-descending-specificity */
  /* stylelint-enable no-descending-specificity */
}
.awsui_text-content_6absk_7xl79_94 h1:not(#\9),
.awsui_text-content_6absk_7xl79_94 h2:not(#\9),
.awsui_text-content_6absk_7xl79_94 h3:not(#\9),
.awsui_text-content_6absk_7xl79_94 h4:not(#\9),
.awsui_text-content_6absk_7xl79_94 h5:not(#\9),
.awsui_text-content_6absk_7xl79_94 p:not(#\9) {
  font-family: inherit;
  font-weight: normal;
  text-decoration: none;
  margin: 0;
  padding: var(--space-xxs-a6783b, 4px) 0;
}
.awsui_text-content_6absk_7xl79_94 h1:not(#\9),
.awsui_text-content_6absk_7xl79_94 h2:not(#\9),
.awsui_text-content_6absk_7xl79_94 h3:not(#\9),
.awsui_text-content_6absk_7xl79_94 h4:not(#\9),
.awsui_text-content_6absk_7xl79_94 h5:not(#\9) {
  color: var(--color-text-heading-default-p5akhh, #16191f);
}
.awsui_text-content_6absk_7xl79_94 h1:not(#\9) {
  font-size: var(--font-size-heading-xl-z8h967, 28px);
  line-height: var(--line-height-heading-xl-44izce, 36px);
  letter-spacing: var(--letter-spacing-heading-xl-y4tqgw, normal);
  font-weight: var(--font-weight-heading-xl-2jbc8j, 400);
  -webkit-font-smoothing: var(--font-smoothing-webkit-rg3jdt, auto);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-58s982, auto);
}
.awsui_text-content_6absk_7xl79_94 h2:not(#\9) {
  font-size: var(--font-size-heading-l-u89ro8, 18px);
  line-height: var(--line-height-heading-l-z752l3, 22px);
  letter-spacing: var(--letter-spacing-heading-l-v8uzhr, normal);
  font-weight: var(--font-weight-heading-l-jlzyui, 700);
  -webkit-font-smoothing: var(--font-smoothing-webkit-rg3jdt, auto);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-58s982, auto);
}
.awsui_text-content_6absk_7xl79_94 h3:not(#\9) {
  font-size: var(--font-size-heading-m-ulervk, 18px);
  line-height: var(--line-height-heading-m-88a3m6, 22px);
  letter-spacing: var(--letter-spacing-heading-m-9g78ia, normal);
  font-weight: var(--font-weight-heading-m-ra39kx, 400);
  -webkit-font-smoothing: var(--font-smoothing-webkit-rg3jdt, auto);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-58s982, auto);
}
.awsui_text-content_6absk_7xl79_94 h4:not(#\9) {
  font-size: var(--font-size-heading-s-hwcx2q, 16px);
  line-height: var(--line-height-heading-s-m093oq, 20px);
  letter-spacing: var(--letter-spacing-heading-s-2369b0, normal);
  font-weight: var(--font-weight-heading-s-hg02sg, 700);
  -webkit-font-smoothing: var(--font-smoothing-webkit-rg3jdt, auto);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-58s982, auto);
}
.awsui_text-content_6absk_7xl79_94 h5:not(#\9) {
  font-size: var(--font-size-heading-xs-4u3wan, 16px);
  line-height: var(--line-height-heading-xs-au4jub, 20px);
  font-weight: var(--font-weight-heading-xs-yzr1e0, 400);
  -webkit-font-smoothing: var(--font-smoothing-webkit-rg3jdt, auto);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-58s982, auto);
}
.awsui_text-content_6absk_7xl79_94 b:not(#\9),
.awsui_text-content_6absk_7xl79_94 strong:not(#\9) {
  font-weight: 700;
}
.awsui_text-content_6absk_7xl79_94 p:not(#\9) {
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: inherit;
}
.awsui_text-content_6absk_7xl79_94 small:not(#\9) {
  display: inline-block;
  font-size: var(--font-size-body-s-ucr7d6, 12px);
  line-height: var(--line-height-body-s-lnbzsa, 16px);
  letter-spacing: var(--letter-spacing-body-s-rksemx, normal);
  color: var(--color-text-small-bbucjz, #687078);
}
.awsui_text-content_6absk_7xl79_94 small a:not(#\9) {
  font-size: inherit;
  color: var(--color-text-link-default-lwrgyu, #0073bb);
  font-weight: inherit;
  letter-spacing: normal;
  text-decoration: underline;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: currentColor;
  transition-property: color, -webkit-text-decoration;
  transition-property: color, text-decoration;
  transition-property: color, text-decoration, -webkit-text-decoration;
  transition-duration: var(--motion-duration-refresh-only-medium-af0v35, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_text-content_6absk_7xl79_94 small a:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_text-content_6absk_7xl79_94 small a:not(#\9), .awsui-mode-entering .awsui_text-content_6absk_7xl79_94 small a:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_text-content_6absk_7xl79_94 small a:not(#\9):hover {
  cursor: pointer;
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
}
.awsui_text-content_6absk_7xl79_94 small a:not(#\9):focus {
  outline: none;
}
.awsui_text-content_6absk_7xl79_94 small a:not(#\9):active {
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
}
.awsui_text-content_6absk_7xl79_94 small a:not(#\9):active, .awsui_text-content_6absk_7xl79_94 small a:not(#\9):focus, .awsui_text-content_6absk_7xl79_94 small a:not(#\9):hover {
  text-decoration: underline;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: currentColor;
}
.awsui_text-content_6absk_7xl79_94 code:not(#\9),
.awsui_text-content_6absk_7xl79_94 pre:not(#\9),
.awsui_text-content_6absk_7xl79_94 samp:not(#\9) {
  font-family: var(--font-family-monospace-sera44, Monaco, Menlo, Consolas, "Courier Prime", Courier, "Courier New", monospace);
  background: transparent;
}
.awsui_text-content_6absk_7xl79_94 code:not(#\9) {
  font-size: var(--font-size-body-s-ucr7d6, 12px);
  line-height: var(--line-height-body-s-lnbzsa, 16px);
  letter-spacing: var(--letter-spacing-body-s-rksemx, normal);
}
.awsui_text-content_6absk_7xl79_94 a:not(#\9) {
  color: var(--color-text-link-default-lwrgyu, #0073bb);
  font-weight: inherit;
  letter-spacing: normal;
  text-decoration: underline;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: currentColor;
  transition-property: color, -webkit-text-decoration;
  transition-property: color, text-decoration;
  transition-property: color, text-decoration, -webkit-text-decoration;
  transition-duration: var(--motion-duration-refresh-only-medium-af0v35, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_text-content_6absk_7xl79_94 a:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_text-content_6absk_7xl79_94 a:not(#\9), .awsui-mode-entering .awsui_text-content_6absk_7xl79_94 a:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_text-content_6absk_7xl79_94 a:not(#\9):hover {
  cursor: pointer;
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
}
.awsui_text-content_6absk_7xl79_94 a:not(#\9):focus {
  outline: none;
}
.awsui_text-content_6absk_7xl79_94 a:not(#\9):active {
  color: var(--color-text-link-hover-kmrtvm, #0a4a74);
}
.awsui_text-content_6absk_7xl79_94 a:not(#\9):active, .awsui_text-content_6absk_7xl79_94 a:not(#\9):focus, .awsui_text-content_6absk_7xl79_94 a:not(#\9):hover {
  text-decoration: underline;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  text-decoration-color: currentColor;
}
.awsui_text-content_6absk_7xl79_94 a:not(#\9):focus {
  outline: thin dotted;
  outline: var(--border-link-focus-ring-outline-x5z0d3, 5px auto Highlight);
  outline-offset: 2px;
  outline-color: var(--color-border-item-focused-t884ih, #0073bb);
  border-radius: var(--border-radius-control-default-focus-ring-fc6z2l, 2px);
  box-shadow: 0 0 0 var(--border-link-focus-ring-shadow-spread-1nkh7a, 0px) var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_text-content_6absk_7xl79_94 ul:not(#\9),
.awsui_text-content_6absk_7xl79_94 ol:not(#\9) {
  padding-left: var(--space-l-ds615y, 20px);
  margin: var(--space-scaled-xs-u0e7ft, 8px) 0;
  list-style-position: outside;
}
.awsui_text-content_6absk_7xl79_94 ul + ul:not(#\9),
.awsui_text-content_6absk_7xl79_94 ul + ol:not(#\9),
.awsui_text-content_6absk_7xl79_94 ul > li + ul:not(#\9),
.awsui_text-content_6absk_7xl79_94 ul > li + li:not(#\9),
.awsui_text-content_6absk_7xl79_94 ul > li + ol:not(#\9),
.awsui_text-content_6absk_7xl79_94 ul > li > ul:not(#\9),
.awsui_text-content_6absk_7xl79_94 ul > li > ol:not(#\9),
.awsui_text-content_6absk_7xl79_94 ol + ul:not(#\9),
.awsui_text-content_6absk_7xl79_94 ol + ol:not(#\9),
.awsui_text-content_6absk_7xl79_94 ol > li + ul:not(#\9),
.awsui_text-content_6absk_7xl79_94 ol > li + li:not(#\9),
.awsui_text-content_6absk_7xl79_94 ol > li + ol:not(#\9),
.awsui_text-content_6absk_7xl79_94 ol > li > ul:not(#\9),
.awsui_text-content_6absk_7xl79_94 ol > li > ol:not(#\9) {
  padding-top: var(--space-scaled-xxs-ugy2pw, 4px);
}
.awsui_text-content_6absk_7xl79_94 ul > li > ul:not(#\9),
.awsui_text-content_6absk_7xl79_94 ul > li > ol:not(#\9),
.awsui_text-content_6absk_7xl79_94 ol > li > ul:not(#\9),
.awsui_text-content_6absk_7xl79_94 ol > li > ol:not(#\9) {
  margin: 0;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @awsui/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/* Style used for links in slots/components that are text heavy, to help links stand out among 
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_qk1j1_1yyt1_93:not(#\9) {
  /* used for test-utils */
}

.awsui_textarea_qk1j1_1yyt1_97:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  border-collapse: separate;
  border-spacing: 0;
  caption-side: top;
  cursor: auto;
  direction: ltr;
  empty-cells: show;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: normal;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: left;
  text-align-last: auto;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  widows: 2;
  word-spacing: normal;
  box-sizing: border-box;
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  font-weight: 400;
  font-family: var(--font-family-base-b4eaqi, "Noto Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  resize: auto; /* stylelint-disable-line plugin/no-unsupported-browser-features */
  cursor: text;
  white-space: pre-wrap;
  padding: var(--space-scaled-xxs-ugy2pw, 4px) var(--space-field-horizontal-wfaq0d, 8px);
  color: var(--color-text-body-default-rlujvh, #16191f);
  max-width: 100%;
  width: 100%;
  display: block;
  box-sizing: border-box;
  background-color: var(--color-background-input-default-66bx4w, #ffffff);
  border-radius: var(--border-radius-input-jnmu21, 2px);
  border: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-input-default-sm4mjn, #687078);
  font-size: var(--font-size-body-m-jirw9u, 14px);
  line-height: var(--line-height-body-m-4ax85e, 22px);
}
.awsui_textarea_qk1j1_1yyt1_97.awsui_textarea-readonly_qk1j1_1yyt1_123:not(#\9) {
  background-color: var(--color-background-input-default-66bx4w, #ffffff);
  border: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-input-disabled-73z8co, #eaeded);
}
.awsui_textarea_qk1j1_1yyt1_97:not(#\9)::placeholder {
  color: var(--color-text-input-placeholder-vi9sh8, #687078);
  font-style: italic;
  opacity: 1;
}
.awsui_textarea_qk1j1_1yyt1_97:not(#\9):-ms-input-placeholder {
  color: var(--color-text-input-placeholder-vi9sh8, #687078);
  font-style: italic;
}
.awsui_textarea_qk1j1_1yyt1_97:not(#\9):focus {
  outline: 2px dotted transparent;
  border: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-item-focused-t884ih, #0073bb);
  border-radius: var(--border-radius-input-jnmu21, 2px);
  box-shadow: 0 0 0 var(--border-control-focus-ring-shadow-spread-oufv0y, 1px) var(--color-border-item-focused-t884ih, #0073bb);
}
.awsui_textarea_qk1j1_1yyt1_97:not(#\9):invalid {
  box-shadow: none;
}
.awsui_textarea_qk1j1_1yyt1_97:not(#\9):disabled {
  background-color: var(--color-background-input-disabled-0azib6, #eaeded);
  border: var(--border-field-width-2vpp5j, 1px) solid var(--color-border-input-disabled-73z8co, #eaeded);
  color: var(--color-text-input-disabled-26hyji, #879596);
  cursor: auto;
  cursor: default;
}
.awsui_textarea_qk1j1_1yyt1_97:not(#\9):disabled::placeholder {
  color: var(--color-text-input-placeholder-disabled-1lvfii, #687078);
  opacity: 1;
}
.awsui_textarea_qk1j1_1yyt1_97:not(#\9):disabled:-ms-input-placeholder {
  color: var(--color-text-input-placeholder-disabled-1lvfii, #687078);
}
.awsui_textarea_qk1j1_1yyt1_97.awsui_textarea-invalid_qk1j1_1yyt1_159:not(#\9) {
  color: var(--color-text-status-error-a5tqz1, #d13212);
  border-color: var(--color-text-status-error-a5tqz1, #d13212);
  padding-left: calc(
  var(--space-field-horizontal-wfaq0d, 8px) - (var(--border-invalid-width-5eyrjt, 4px) - var(--border-field-width-2vpp5j, 1px))
);
  border-left-width: var(--border-invalid-width-5eyrjt, 4px);
}
.awsui_textarea_qk1j1_1yyt1_97.awsui_textarea-invalid_qk1j1_1yyt1_159:not(#\9):focus {
  box-shadow: 0 0 0 var(--border-control-invalid-focus-ring-shadow-spread-mejja6, 1px) var(--color-border-item-focused-t884ih, #0073bb);
}.tm-wrapper-left,
.tm-wrapper-right {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.tm-wrapper-left {
  flex-direction: row;
}

.tm-wrapper-right {
  flex-direction: row-reverse;
}

.tm-content {
  flex: 1;
}

.tm-handle {
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-left: 1px solid var(--color-border-divider-default-1mmknt, #eaeded);
  border-right: 1px solid var(--color-border-divider-default-1mmknt, #eaeded);
}
.tm-handle:hover {
  background-color: var(--color-background-dropdown-item-hover-6qhcjz, #f2f3f3);
}.tm-collapse-panel {
  height: 100%;
  overflow-y: auto;
  width: 0;
  max-width: 400px;
}
.tm-collapse-panel.open {
  width: 40vw;
}
@media screen and (max-width: 480px) {
  .tm-collapse-panel.open {
    width: 85vw;
  }
}.tm-hierarchy-panel .tm-toolbar {
  padding: 15px;
}.tm-draggable[draggable=true] {
  cursor: grab;
}
.tm-draggable[draggable=true]::before {
  content: url("data:image/svg+xml,%3Csvg width='4' height='19' viewBox='0 0 4 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0.5' y1='0.5' x2='0.499999' y2='18.5' stroke='%23879596'/%3E%3Cline x1='2.96094' y1='0.5' x2='2.96094' y2='18.5' stroke='%23879596'/%3E%3C/svg%3E");
  position: absolute;
  left: 0;
  margin: 1.6rem 1rem 1rem 0.75rem;
}#tm-main {
  margin-bottom: 5px;
}
#tm-main p {
  line-height: 2rem;
}
#tm-main .tm-tree {
  border-top: 1px solid #2a2e33;
  list-style-position: outside;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
  user-select: none;
}
#tm-main .tm-tree:first-child {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#tm-main .tm-tree.drop,
#tm-main .tm-tree .drop {
  border-bottom: 3px solid #fff;
}
#tm-main .tm-tree .tm-tree-item {
  padding-left: 2rem;
  padding-top: 0;
}
#tm-main .tm-tree .tm-tree-item .tm-tree-item-inner {
  cursor: pointer;
  margin-left: -2rem;
  padding-left: 2rem;
  align-items: center;
  display: flex;
}
#tm-main .tm-tree .tm-tree-item .tm-tree-item-inner .tm-tree-item-expand-btn {
  min-width: unset;
}
#tm-main .tm-tree .tm-tree-item .tm-tree-item-inner .tm-scene-node-label {
  border-top: 1px solid #414750;
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  align-items: center;
}
#tm-main .tm-tree .tm-tree-item .tm-tree-item-inner .tm-scene-node-label .tm-scene-node-label-inner {
  flex: 0 0 100%;
  padding: 13px 50px 14px 20px;
  width: 100vw;
  margin: 0;
  white-space: nowrap;
}
#tm-main .tm-tree .tm-tree-item .tm-tree-item-inner .tm-scene-node-label .actions {
  background-color: var(--color-background-container-content-o88wxm, #ffffff);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(42, 46, 51) 38%, rgb(42, 46, 51) 100%);
  position: sticky;
  right: 0;
  padding-right: 12px;
  color: #ec7211;
}
#tm-main .tm-tree .tm-tree-item .tm-tree-item-inner:hover {
  margin-top: -1px;
  margin-bottom: 0px;
  border-top: 1px solid #00a1c9;
  border-bottom: 1px solid #00a1c9;
  background: #12293b;
  color: #ec7211;
}
#tm-main .tm-tree .tm-tree-item .tm-tree-item-inner:hover .tm-scene-node-label-inner {
  border: none;
  border-top: 1px solid #00a1c9;
  border-bottom: 1px solid #00a1c9;
  background: #12293b;
  margin-bottom: -1px;
  margin-top: -2px;
}
#tm-main .tm-tree .tm-tree-item .tm-tree-item-inner:hover .actions {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(18, 41, 59) 38%, rgb(18, 41, 59) 100%);
  margin-top: -1px;
  margin-bottom: -1px;
  margin-top: -3px;
  margin-bottom: -1px;
  padding: 12px 12px 13px 50px;
}
#tm-main .tm-tree .tm-tree-item .tm-tree-item-inner:hover .tm-visibility-toggle svg,
#tm-main .tm-tree .tm-tree-item .tm-tree-item-inner:hover .tm-tree-item-expand-btn svg {
  color: #ec7211;
}
#tm-main .tm-tree .tm-tree-item .tm-tree-item-inner.selected {
  border-top: 1px solid #00a1c9;
  border-bottom: 1px solid #00a1c9;
  background: #12293b;
}
#tm-main .tm-tree .tm-tree-item .tm-tree-item-inner.selected .tm-scene-node-label-inner {
  border: none;
  border-top: 1px solid #00a1c9;
  border-bottom: 1px solid #00a1c9;
  background: #12293b;
  margin-bottom: -1px;
  margin-top: -2px;
  margin-right: -30px;
}
#tm-main .tm-tree .tm-tree-item .tm-tree-item-inner.selected .actions {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(18, 41, 59) 38%, rgb(18, 41, 59) 100%);
  margin-top: -1px;
  margin-bottom: -1px;
  margin-top: -3px;
  margin-bottom: -1px;
  padding-bottom: 13px;
  padding: 12px 12px 13px 50px;
}
#tm-main .tm-tree .tm-tree {
  border-top: none;
  position: initial;
  padding-left: 0;
  padding-bottom: 0;
}input[type=radio] {
  margin-right: 1rem;
}
input[type=radio]:checked {
  appearance: none;
  background-color: #fff;
  color: #fff;
  border: 4px solid #00a1c9;
  border-radius: 50%;
  padding: 3px;
}

.sceneViewer input[type=radio] {
  appearance: none;
  background-color: #fff;
  color: #fff;
  border: 4px solid #00a1c9;
  border-radius: 50%;
  padding: 3px;
  background-color: #2a2e33;
  border: 1px solid #fff;
  padding: 5px;
}
.sceneViewer input[type=radio]:checked, .sceneViewer input[type=radio]:focus {
  appearance: none;
  background-color: #fff;
  color: #fff;
  border: 4px solid #00a1c9;
  border-radius: 50%;
  padding: 3px;
  outline: none;
}.tm-hierarchy-panel #tm-main .tm-tree .tm-tree-item.tm-sub-model {
  background-color: #414750;
}
.tm-hierarchy-panel #tm-main .tm-tree .tm-tree-item.tm-sub-model .tm-tree-item-inner .tm-scene-node-label .tm-scene-node-label-inner {
  border-bottom: 1px solid #2a2e33;
  background-color: #414750;
}
.tm-hierarchy-panel #tm-main .tm-tree .tm-tree-item.tm-sub-model .tm-tree-item-inner .actions {
  background-color: #414750;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(65, 71, 80) 29%, rgb(65, 71, 80) 100%);
  display: flex;
  margin-top: -3px;
  margin-bottom: -1px;
  padding: 12px 12px 13px 50px;
  margin-left: -30px;
}
.tm-hierarchy-panel #tm-main .tm-tree .tm-tree-item.tm-sub-model .tm-tree-item-inner:hover {
  margin-top: 0;
}
.tm-hierarchy-panel #tm-main .tm-tree .tm-tree-item.tm-sub-model .tm-tree-item-inner:hover .tm-scene-node-label .tm-scene-node-label-inner {
  border: none;
  border-top: 1px solid #00a1c9;
  border-bottom: 1px solid #00a1c9;
  background: #12293b;
  margin-bottom: -1px;
  margin-top: -2px;
}
.tm-hierarchy-panel #tm-main .tm-tree .tm-tree-item.tm-sub-model .tm-tree-item-inner:hover button {
  color: #ec7211;
}
.tm-hierarchy-panel #tm-main .tm-tree .tm-tree-item.tm-sub-model .tm-tree-item-inner:hover .actions {
  background-color: #12293b;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(18, 41, 59) 38%, rgb(18, 41, 59) 100%);
}.tm-visibility-toggle svg {
  stroke-width: 1px !important;
}
.tm-visibility-toggle.visible .show_svg__center-dot {
  display: block;
}
.tm-visibility-toggle .show_svg__center-dot {
  display: none;
}.tm-scene-node-label .actions {
  float: right;
}
.tm-scene-node-label .actions svg {
  cursor: pointer;
}

.error {
  color: red;
}.tm-preview-arrow {
  border: 1px solid rgb(135, 149, 150);
}
.tm-preview-arrow svg {
  width: 32px;
  height: 32px;
}
.tm-preview-arrow svg path {
  stroke: currentColor;
}.tm-camera-sub-form-label {
  padding: 10px 0px 0px 0px;
}.tm-display-title {
  position: relative;
  width: calc(100% - 10px);
  height: 20px;
  border: 1px solid #414750;
  background-color: #21252c;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 5px;
  color: #95a5a6;
}

.tm-display-area {
  position: relative;
  height: calc(100% - 30px);
}

.tm-display-container {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 20%;
  height: calc(30px + 20%);
  z-index: 99;
  border: 1px solid #414750;
}/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._root_bwdxb_4 {
  position: relative;
  overflow: hidden;
}

/* move top out of view to obscure SceneViewer chrome */
._container_bwdxb_10 {
  position: absolute;
  inset: -50rem -80rem;
  z-index: 0;
}

._cameraSelector_bwdxb_16[data-dropdownmenu] {
  --text-color: var(--foreground-secondary-color);
  --hover-color: var(--foreground-hover-color);
  --active-color: var(--foreground-active-color);

  position: relative;
  place-self: center;
}

._cameraSelector_bwdxb_16[data-dropdownmenu] [data-trigger] {
  display: grid;
  place-items: center;
  grid-auto-flow: column;
  column-gap: 6rem;
  color: var(--text-color);
  font-size: var(--size);
  line-height: 1;
  transition: var(--transition-color);
  white-space: nowrap;
}

._cameraSelector_bwdxb_16[data-dropdownmenu] [data-trigger] [data-trigger-icon] {
  --size: 16rem;

  width: var(--size);
  height: var(--size);
}

._cameraSelector_bwdxb_16[data-dropdownmenu] [data-trigger] [data-trigger-arrow] {
  width: calc(var(--size) * 0.7);
  height: calc(var(--size) * 0.7);
  transition: var(--transition-rotation);
}

._cameraSelector_bwdxb_16[data-dropdownmenu] [data-trigger]:hover {
  --text-color: var(--hover-color);
}

._cameraSelector_bwdxb_16[data-dropdownmenu][data-is-open='true'] [data-trigger] {
  --text-color: var(--active-color);
}

._cameraSelector_bwdxb_16[data-dropdownmenu][data-is-open='true'] [data-trigger] > [data-trigger-arrow] {
  rotate: 180deg;
}

._cameraSelector_bwdxb_16[data-dropdownmenu] > [data-menu] {
  --menu-background-color: var(--background-layer-2-accent);
  --menu-item-background-color: var(--background-layer-2);
  --menu-item-background-hover-color: var(--background-layer-2-hover);
  --menu-item-background-selected-color: var(--background-layer-2-accent);
  --menu-item-text-primary-color: var(--text-layer-2-primary);
  --menu-item-text-secondary-color: var(--text-layer-2-secondary);
  --menu-item-text-hover-color: var(--text-layer-2-hover);
  --menu-item-text-selected-color: var(--text-layer-2-accent);
  --transition-background-color: background-color var(--transition-duration) var(--transition-easing);
  --transition-border-color: border-color var(--transition-duration) var(--transition-easing);
  --transition-color: color var(--transition-duration) var(--transition-easing);

  top: calc(100% + 4rem);
  right: -8rem;

  width: max-content;
  max-height: 300rem;
  height: auto;
  overflow-y: auto;

  row-gap: 1rem;

  background-color: var(--menu-background-color);
  border: solid 1rem var(--background-layer-2-accent);
  border-radius: var(--radius-10);
  box-shadow: var(--box-shadow-layer-1);
}

._cameraSelector_bwdxb_16[data-dropdownmenu] > [data-menu] [data-menu-item] {
  --size: 15rem;

  display: flex;
  align-items: center;
  gap: 6rem;
  padding: 12rem 15rem;
  background-color: var(--menu-item-background-color);
  color: var(--menu-item-text-primary-color);
  font-size: var(--size);
  font-weight: var(--font-weight-4);
  text-align: left;
}

._cameraSelector_bwdxb_16[data-dropdownmenu] > [data-menu] [data-menu-item] [data-placeholder-label] {
  font-weight: var(--font-weight-3);
}

._cameraSelector_bwdxb_16[data-dropdownmenu] > [data-menu] [data-menu-item] [data-menu-item-icon] {
  width: var(--size);
  height: var(--size);
}

._cameraSelector_bwdxb_16[data-dropdownmenu] > [data-menu] [data-menu-item]:hover {
  --menu-item-background-color: var(--menu-item-background-hover-color);
  --menu-item-text-primary-color: var(--menu-item-text-hover-color);
  --menu-item-text-secondary-color: var(--menu-item-text-hover-color);
}

._cameraSelector_bwdxb_16[data-dropdownmenu] > [data-menu] [data-menu-item][data-selected='true'] {
  --menu-item-background-color: var(--menu-item-background-selected-color);
  --menu-item-text-primary-color: var(--menu-item-text-selected-color);
  --menu-item-text-secondary-color: var(--menu-item-text-selected-color);
}

._cameraSelector_bwdxb_16[data-dropdownmenu] > [data-menu] > button:first-child [data-menu-item] {
  border-top: none;
}

._cameraSelector_bwdxb_16[data-dropdownmenu] > [data-menu] > button:last-child [data-menu-item] {
  border-bottom: none;
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._svg_olkq9_4 > path {
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  shape-rendering: geometricPrecision;
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

@keyframes _fadeIn_1y08w_1 {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

._root_1y08w_14 {
  --background-color: var(--background-layer-2);
  --border-color: var(--background-layer-2-secondary);
  --foreground-color: var(--text-layer-2-primary);
  --foreground-secondary-color: var(--text-layer-2-secondary);
  --foreground-tertiary-color: var(--text-layer-2-tertiary);
  --foreground-hover-color: var(--text-layer-2-hover);
  --foreground-accent-color: var(--text-layer-2-accent);
  --foreground-active-color: var(--text-layer-2-active);
  --health-color: var(--color-alarm-unknown);
  --transition-background-color: background-color var(--transition-duration) var(--transition-easing);
  --transition-color: color var(--transition-duration) var(--transition-easing);
  --transition-rotation: rotate calc(var(--transition-duration) * 0.25) var(--transition-easing);
  --border: solid 1rem var(--border-color);
  --padding-x: 28rem;
  --padding-y: 28rem;

  position: relative;
  display: grid;
  background-color: var(--background-color);
  border-radius: var(--radius-10);
  opacity: 0;
  animation: _fadeIn_1y08w_1 500ms ease forwards;
  animation-delay: 300ms;
}

._root_1y08w_14[data-has-panels='true'] {
  grid-template-rows: auto auto 1fr auto;
}

._root_1y08w_14[data-has-panels='true'] ._controls_1y08w_44 {
  border-top: var(--border);
}

._chrome_1y08w_48 {
  --text-color: var(--foreground-secondary-color);
  --hover-color: var(--foreground-hover-color);
  --active-color: var(--foreground-active-color);

  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: calc(var(--padding-y) / 2) calc(var(--padding-x) / 2) 0;
  z-index: var(--z-index-1);
}

._closeAllIcon_1y08w_60 {
  --size: 18rem;

  grid-column: 3;
  place-self: center end;
  width: var(--size);
  height: var(--size);
  color: var(--text-color);
  transition: var(--transition-color);
}

._closeAllIcon_1y08w_60:hover {
  color: var(--hover-color);
}

._head_1y08w_75 {
  position: relative;
  display: grid;
  place-content: center;
  padding: calc(var(--padding-y) / 2) var(--padding-x);
  color: var(--foreground-color);
  font-size: 38rem;
  font-weight: var(--font-weight-5);
  letter-spacing: -0.2rem;
  translate: 0 -6rem;
}

._panels_1y08w_87 {
  --column-width: 100%;

  position: relative;
  display: flex;
  justify-content: space-evenly;
  border-top: var(--border);
  isolation: isolate;
}

._panels_1y08w_87 > * {
  width: var(--column-width);
  border-right: var(--border);
}

._panels_1y08w_87 > *:last-child {
  border: none;
}

/* .panels[data-count='1'] > * {
  width: 100%;
}

.panels[data-count='2'] > *:first-child {
  width: 65%;
}

.panels[data-count='2'] > *:last-child {
  width: 35%;
} */

._canvasHidden_1y08w_118 {
  visibility: hidden;
}

._isHidden_1y08w_122 {
  position: absolute;
  visibility: hidden;
}

._controls_1y08w_44 {
  width: 100%;
  place-self: end center;
  display: flex;
  justify-content: center;
  align-items: bottom;
  gap: 30rem;
  padding: var(--padding-y) var(--padding-x);
  z-index: var(--z-index-1);
}

._controlGroup_1y08w_138 {
  display: flex;
  gap: 30rem;
}

._entitySelector_1y08w_143[data-dropdownmenu] {
  grid-column: 2;
  position: relative;
  place-self: center;
}

._entitySelector_1y08w_143[data-dropdownmenu] [data-trigger] {
  --size: 14rem;

  display: grid;
  place-items: center;
  grid-auto-flow: column;
  column-gap: 6rem;
  height: 18rem;
  color: var(--text-color);
  font-size: var(--size);
  transition: var(--transition-color);
  white-space: nowrap;
}

._entitySelector_1y08w_143[data-dropdownmenu] [data-trigger] [data-trigger-icon] {
  --size: 18rem;

  width: var(--size);
  height: var(--size);
}

._entitySelector_1y08w_143[data-dropdownmenu] [data-trigger] [data-trigger-icon][data-globe] {
  --size: 14rem;
}

._entitySelector_1y08w_143[data-dropdownmenu] [data-trigger] [data-trigger-arrow] {
  width: calc(var(--size) * 0.6);
  height: calc(var(--size) * 0.6);
  transition: var(--transition-rotation);
}

._entitySelector_1y08w_143[data-dropdownmenu] [data-trigger]:hover {
  --text-color: var(--hover-color);
}

._entitySelector_1y08w_143[data-dropdownmenu][data-is-open='true'] [data-trigger] {
  --text-color: var(--active-color);
}

._entitySelector_1y08w_143[data-dropdownmenu][data-is-open='true'] [data-trigger] > [data-trigger-arrow] {
  rotate: 180deg;
}

._videoPlayer_1y08w_192 {
  --width: 500rem;

  position: absolute;
  inset: auto var(--padding-x) var(--padding-y) auto;

  padding: calc(var(--padding-y) * 1.5) var(--padding-x) var(--padding-y);
  width: max-content;
  background-color: var(--background-color);
  border: solid 1rem var(--background-layer-2-accent);
  border-radius: var(--radius-10);
  box-shadow: var(--box-shadow-layer-1);
  z-index: var(--z-index-1);
}

._videoPlayer_1y08w_192 [data-inner] {
  display: grid;
  row-gap: 15rem;
}

._videoPlayer_1y08w_192 [data-head] {
  color: var(--foreground-color);
  font-size: 24rem;
  font-weight: var(--font-weight-5);
  line-height: 1;
}

._videoPlayer_1y08w_192 [data-player] {
  width: 500rem;
  border-radius: var(--radius-6);
  overflow: hidden;
}

@keyframes _menuFade_1y08w_1 {
  from {
    opacity: 0;
    scale: 0.97;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

._root_1y08w_14 [data-panel-button] {
  --foreground-color: var(--text-layer-2-primary);
  --foreground-secondary-color: var(--text-layer-2-secondary);
  --foreground-tertiary-color: var(--text-layer-2-tertiary);
  --foreground-accent-color: var(--text-layer-2-accent);
  --foreground-hover-color: var(--text-layer-2-hover);
  --foreground-active-color: var(--text-layer-2-active);
  --transition-color: color var(--transition-duration) var(--transition-easing);

  display: grid;
  place-content: center;
  place-items: center;
  row-gap: 6rem;
  color: var(--foreground-secondary-color);
}

._root_1y08w_14 [data-panel-button][data-is-selected='true'] {
  color: var(--foreground-active-color);
}

._root_1y08w_14 [data-panel-button]:hover {
  color: var(--foreground-hover-color);
}

._root_1y08w_14 [data-panel-button] [data-icon] {
  width: 30rem;
  height: 30rem;
  transition: var(--transition-color);
}

._root_1y08w_14 [data-panel-button] [data-icon] > svg {
  width: 100%;
  height: 100%;
}

._root_1y08w_14 [data-panel-button] [data-label] {
  font-size: 14rem;
  font-weight: var(--font-weight-5);
  letter-spacing: 0.2rem;
  transition: var(--transition-color);
}

._entitySelector_1y08w_143[data-dropdownmenu] > [data-menu] {
  --menu-background-color: var(--background-layer-2-accent);
  --menu-item-background-color: var(--background-layer-2);
  --menu-item-background-hover-color: var(--background-layer-2-hover);
  --menu-item-background-selected-color: var(--background-layer-2-accent);
  --menu-item-text-primary-color: var(--text-layer-2-primary);
  --menu-item-text-secondary-color: var(--text-layer-2-secondary);
  --menu-item-text-hover-color: var(--text-layer-2-hover);
  --menu-item-text-selected-color: var(--text-layer-2-accent);
  --transition-background-color: background-color var(--transition-duration) var(--transition-easing);
  --transition-border-color: border-color var(--transition-duration) var(--transition-easing);
  --transition-color: color var(--transition-duration) var(--transition-easing);

  top: calc(100% + 8rem);
  left: 50%;
  translate: -50% 0;
  min-width: 100%;
  width: max-content;

  max-height: 300rem;
  height: auto;
  overflow-y: auto;

  row-gap: 1rem;

  background-color: var(--menu-background-color);
  border: solid 1rem var(--background-layer-2-accent);
  border-radius: var(--radius-10);
  box-shadow: var(--box-shadow-layer-1);
}

._entitySelector_1y08w_143[data-dropdownmenu] > [data-menu] [data-menu-item] {
  --size: 20rem;

  display: grid;
  grid-template-columns: var(--size) 1fr;
  place-items: center start;
  column-gap: 6rem;
  padding: 12rem 15rem;
  background-color: var(--menu-item-background-color);
  color: var(--menu-item-text-primary-color);
  font-size: 15rem;
  font-weight: var(--font-weight-4);
}

._entitySelector_1y08w_143[data-dropdownmenu] > [data-menu] [data-menu-item] [data-menu-item-logo] {
  place-self: center;
  width: var(--size);
  height: var(--size);
}

._entitySelector_1y08w_143[data-dropdownmenu] > [data-menu] [data-menu-item] [data-menu-item-logo][data-globe] {
  --size: 15rem;
}

._entitySelector_1y08w_143[data-dropdownmenu] > [data-menu] [data-menu-item]:hover {
  --menu-item-background-color: var(--menu-item-background-hover-color);
  --menu-item-text-primary-color: var(--menu-item-text-hover-color);
  --menu-item-text-secondary-color: var(--menu-item-text-hover-color);
}

._entitySelector_1y08w_143[data-dropdownmenu] > [data-menu] [data-menu-item][data-selected='true'] {
  --menu-item-background-color: var(--menu-item-background-selected-color);
  --menu-item-text-primary-color: var(--menu-item-text-selected-color);
  --menu-item-text-secondary-color: var(--menu-item-text-selected-color);
}

._entitySelector_1y08w_143[data-dropdownmenu] > [data-menu] > button:first-child [data-menu-item] {
  border-top: none;
}

._entitySelector_1y08w_143[data-dropdownmenu] > [data-menu] > button:last-child [data-menu-item] {
  border-bottom: none;
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */
._root_kw7wj_3 {
  position: relative;
}/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */
._root_fa6er_3 {
  position: relative
}

/** Below are @iot-app-kit overrides to fix styling issues **/
/* iot-app-kit-vis-line-chart [class=iot-app-kit-vis-size-provider-container] {
  margin-left: -10rem;
} */
iot-app-kit-vis-line-chart [class=y-axis-label] {
  fill: var(--text-layer-2-tertiary) !important;
}

iot-app-kit-vis-line-chart [class=axis] [class=tick] line {
  stroke: var(--background-layer-2-accent) !important;
}

iot-app-kit-vis-line-chart [class=axis] [class=tick] text {
  fill: var(--text-layer-2-secondary) !important;
}

iot-app-kit-vis-line-chart [class=axis] [class=x-axis-separator] {
  stroke: var(--background-layer-2-accent) !important;
  stroke-width: 2;
}

iot-app-kit-vis-line-chart iot-app-kit-vis-error-badge {
  margin-top: -15rem;
}

iot-app-kit-vis-line-chart iot-app-kit-vis-error-badge div {
  color: var(--text-layer-2-primary);
}

iot-app-kit-vis-line-chart iot-app-kit-vis-error-badge [class=warning-symbol] {
  color: var(--color-health-critical);
  font-size: 12rem;
}

iot-app-kit-vis-line-chart iot-app-kit-vis-legend-row span {
  color: var(--text-layer-2-primary) !important;
  font-size: 14rem;
  font-weight: var(--font-weight-5);
  letter-spacing: .2rem;
}

iot-app-kit-vis-line-chart iot-app-kit-vis-legend-row [class=legend-value] h4 {
  margin-top: 5rem;
  color: var(--text-layer-2-primary) !important;
  font-size: 20rem;
  font-weight: var(--font-weight-6);
  letter-spacing: .2rem;
}

iot-app-kit-vis-line-chart [class=legend-value] small {
  margin-top: 5rem;
  color: var(--text-layer-2-secondary) !important;
  font-size: 14rem;
  font-weight: var(--font-weight-5);
  letter-spacing: .2rem;
}/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */
._root_1adqo_3 {
  position: relative;
}

/** Below are @iot-app-kit overrides to fix styling issues **/
/* iot-app-kit-vis-status-timeline [class*=iot-app-kit-vis-size-provider-container] {
  position: relative;
  top: -17rem;
} */
iot-app-kit-vis-status-timeline iot-app-kit-vis-data-stream-name {
  margin: 0 0 3rem;
  color: var(--text-layer-2-accent) !important;
  font-size: 114rem;
  font-weight: var(--font-weight-5);
  letter-spacing: 0.2rem;
}

iot-app-kit-vis-status-timeline [class='no-data-visualization'] {
  background: repeating-linear-gradient(45deg, #555555, #555555 10px, #353535 10px, #353535 20px) !important;
}

iot-app-kit-vis-status-timeline [class='x-axis-separator'] {
  display: none;
}

iot-app-kit-vis-status-timeline [class='axis'] [class='tick'] line {
  stroke: var(--background-layer-2-accent) !important;
}

iot-app-kit-vis-status-timeline [class='axis'] [class='tick'] text {
  fill: var(--text-layer-2-secondary) !important;
}

iot-app-kit-vis-status-timeline iot-app-kit-vis-threshold-legend {
  gap: 20rem;
}

iot-app-kit-vis-status-timeline iot-app-kit-vis-threshold-legend iot-app-kit-vis-threshold-legend-row {
  padding: 0;
}

iot-app-kit-vis-status-timeline iot-app-kit-vis-threshold-legend iot-app-kit-vis-threshold-legend-row div {
  display: flex;
  align-items: center;
  gap: 5rem;
  color: var(--text-layer-2-secondary) !important;
  font-size: 14rem;
  font-weight: var(--font-weight-5);
  letter-spacing: 0.2rem;
}

iot-app-kit-vis-status-timeline iot-app-kit-vis-threshold-legend iot-app-kit-vis-threshold-legend-row [class='box'] {
  margin: 0 !important;
}

iot-app-kit-vis-status-timeline [class='x-axis-separator'] {
  stroke: none;
}

iot-app-kit-vis-status-timeline iot-app-kit-vis-status-timeline-overlay-row [class='value'] {
  visibility: hidden !important;
}
:root{--border-width:1px;--margin-small:5px;--margin-medium:10px;--margin-large:15px;--drop-shadow-base:drop-shadow(1px 1px 4px rgba(68, 68, 68, 0.25));--box-shadow-base:1px 1px 4px rgba(68, 68, 68, 0.25);--border-color-base:rgba(68, 68, 68, 0.15);--border-base:1px solid var(--border-color-base);--editable-label-bottom-border:1px dashed #505050;--primary-font-family:'Amazon Ember', Helvetica, Arial, sans-serif;--font-weight-light:300;--font-weight-regular:400;--font-weight-normal:500;--font-weight-bold:700;--font-size-base:10px;--font-size-6:calc(var(--font-size-base) * 4.4);--font-size-5:calc(var(--font-size-base) * 2.8);--font-size-4:calc(var(--font-size-base) * 2.4);--font-size-3:calc(var(--font-size-base) * 1.8);--font-size-2:calc(var(--font-size-base) * 1.6);--font-size-1:calc(var(--font-size-base) * 1.4);--font-size-0:calc(var(--font-size-base) * 1.2);--line-height-6:50px;--line-height-5:40px;--line-height-4:20px;--line-height-3:20px;--line-height-2:18px;--line-height-1:16px;--line-height-0:14px;--polaris-light-gray:#687078;--polaris-gray-400:#aab7b8;--polaris-gray-900:#16191f;--primary-font-color:#545b64;--primary-main:#567483;--primary-light:#d5dbdb;--light-text:var(--polaris-light-gray);--primary-dark:#2a4956;--secondary-font-color:#000;--secondary-main:#ffee58;--secondary-light:#ffff8b;--secondary-dark:#c9bc1f;--error-badge-font-color:var(--polaris-gray-900);--error-badge-warning-color:#fa3232;--visualization-sequential-blues-normal-1-0:#4a76b6;--loading-spinner-color:#30b2ff;--loading-spinner-color-dark:var(--primary-dark);--value-component-font-color-primary:#232f3e;--value-component-font-color-secondary:#16191f;--value-component-font-color-tertiary:#879196;--selection-color:#29a8dd;--selection-opacity:0.2;--selection-width:2px;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:var(--primary-font-family)}.tippy-tooltip.title-theme{font-family:var(--primary-font-family);background-color:#fff !important;color:#6a7070 !important;font-size:1.125rem !important;border-radius:2px !important;padding:10px 10px 10px 10px !important;width:100% !important;word-wrap:break-word !important;display:-ms-flexbox !important;display:flex !important;-webkit-box-shadow:1px 1px 3px 1px rgba(0, 0, 0, 0.33) !important;box-shadow:1px 1px 3px 1px rgba(0, 0, 0, 0.33) !important;-webkit-box-sizing:border-box;box-sizing:border-box}.tippy-arrow,.tippy-arrow::before{position:absolute;width:10px;height:10px}.tippy-arrow::before{content:'';-webkit-transform:rotate(45deg);transform:rotate(45deg);background:#fff}.tippy-tooltip.title-theme[data-placement^='top']>.tippy-arrow{bottom:-5px}.tippy-tooltip.title-theme[data-placement^='top']>.tippy-arrow::before{-webkit-box-shadow:1px 1px 2px 0 rgba(0, 0, 0, 0.33);box-shadow:1px 1px 2px 0 rgba(0, 0, 0, 0.33)}.tippy-tooltip.title-theme[data-placement^='bottom']>.tippy-arrow{top:-5px}.tippy-tooltip.title-theme[data-placement^='bottom']>.tippy-arrow::before{-webkit-box-shadow:-1px -1px 2px 0 rgba(0, 0, 0, 0.33);box-shadow:-1px -1px 2px 0 rgba(0, 0, 0, 0.33)}.tippy-tooltip.title-theme[data-placement^='left']>.tippy-arrow{right:-5px}.tippy-tooltip.title-theme[data-placement^='left']>.tippy-arrow::before{-webkit-box-shadow:1px -1px 2px 0 rgba(0, 0, 0, 0.33);box-shadow:1px -1px 2px 0 rgba(0, 0, 0, 0.33)}.tippy-tooltip.title-theme[data-placement^='right']>.tippy-arrow{left:-5px}.tippy-tooltip.title-theme[data-placement^='right']>.tippy-arrow::before{-webkit-box-shadow:-1px 1px 2px 0 rgba(0, 0, 0, 0.33);box-shadow:-1px 1px 2px 0 rgba(0, 0, 0, 0.33)}:root{--awsui-color-grey-100:#fafafa;--awsui-color-grey-150:#f2f3f3;--awsui-color-grey-200:#eaeded;--awsui-color-grey-300:#d5dbdb;--awsui-color-grey-400:#aab7b8;--awsui-color-grey-450:#95a5a6;--awsui-color-grey-500:#879596;--awsui-color-grey-550:#687078;--awsui-color-grey-600:#545b64;--awsui-color-grey-650:#414750;--awsui-color-grey-700:#2a2e33;--awsui-color-grey-750:#21252c;--awsui-color-grey-800:#1a2029;--awsui-color-grey-900:#16191f;--awsui-color-grey-950:#222;--awsui-color-grey-transparent-heavy:rgba(0, 28, 36, 0.5);--awsui-color-grey-transparent:rgba(0, 28, 36, 0.3);--awsui-color-grey-transparent-light:rgba(0, 28, 36, 0.15);--awsui-color-grey-opaque-25:hsla(0, 0%, 100%, 0.25);--awsui-color-grey-opaque-40:rgba(0, 0, 0, 0.4);--awsui-color-grey-opaque-50:rgba(0, 0, 0, 0.5);--awsui-color-grey-opaque-70:hsla(0, 0%, 100%, 0.7);--awsui-color-grey-opaque-80:rgba(22, 25, 31, 0.8);--awsui-color-grey-opaque-90:rgba(242, 243, 243, 0.9);--awsui-color-orange-100:#fef6f0;--awsui-color-orange-300:#f7bf9c;--awsui-color-orange-500:#ec7211;--awsui-color-orange-600:#eb5f07;--awsui-color-orange-700:#dd6b10;--awsui-color-blue-100:#f1faff;--awsui-color-blue-300:#99cbe4;--awsui-color-blue-400:#44b9d6;--awsui-color-blue-500:#00a1c9;--awsui-color-blue-600:#0073bb;--awsui-color-blue-700:#0a4a74;--awsui-color-blue-900:#12293b;--awsui-color-blue-opaque:rgba(51, 136, 221, 0.5);--awsui-color-green-100:#f2f8f0;--awsui-color-green-300:#a5d099;--awsui-color-green-500:#6aaf35;--awsui-color-green-600:#1d8102;--awsui-color-green-700:#1a520f;--awsui-color-green-900:#172211;--awsui-color-red-100:#fdf3f1;--awsui-color-red-300:#f2ada0;--awsui-color-red-500:#ff5d64;--awsui-color-red-600:#d13212;--awsui-color-red-700:#7c2718;--awsui-color-red-900:#270a11;--awsui-color-black:#000;--awsui-color-white:#fff;--awsui-color-aws-squid-ink:#232f3e;--awsui-color-amazon-orange:#f90;--awsui-color-transparent:transparent;--awsui-motion-duration-extra-fast:45ms;--awsui-motion-duration-fast:90ms;--awsui-motion-duration-moderate:135ms;--awsui-motion-duration-slow:180ms;--awsui-motion-duration-extra-slow:270ms;--awsui-motion-easing-ease-out-quart:cubic-bezier(0.165, 0.84, 0.44, 1);--awsui-motion-duration-show-quick:135ms;--awsui-motion-duration-show-paced:180ms;--awsui-motion-duration-rotate-90:135ms;--awsui-motion-duration-rotate-180:135ms;--awsui-motion-duration-transition-show-quick:90ms;--awsui-motion-duration-transition-show-paced:180ms;--awsui-motion-duration-transition-quick:90ms;--awsui-motion-easing-show-quick:ease-out;--awsui-motion-easing-show-paced:ease-out;--awsui-motion-easing-rotate-90:cubic-bezier(0.165, 0.84, 0.44, 1);--awsui-motion-easing-rotate-180:cubic-bezier(0.165, 0.84, 0.44, 1);--awsui-motion-easing-transition-show-quick:linear;--awsui-motion-easing-transition-show-paced:ease-out;--awsui-motion-easing-transition-quick:linear;--awsui-color-text-body-default:#16191f;--awsui-color-text-body-secondary:#545b64;--awsui-color-text-heading-default:#16191f;--awsui-color-text-heading-secondary:#545b64;--awsui-color-text-home-header-default:#fff;--awsui-color-text-home-header-secondary:#d5dbdb;--awsui-color-text-label:#545b64;--awsui-color-text-accent:#ec7211;--awsui-color-text-empty:#687078;--awsui-color-text-link-default:#0073bb;--awsui-color-text-interactive-default:#545b64;--awsui-color-text-interactive-disabled:#aab7b8;--awsui-color-text-interactive-active:#16191f;--awsui-color-text-interactive-hover:#16191f;--awsui-color-text-small:#687078;--awsui-color-text-inverted:#fff;--awsui-color-text-disabled:#aab7b8;--awsui-color-text-form-default:#16191f;--awsui-color-text-form-secondary:#687078;--awsui-color-text-form-label:#16191f;--awsui-color-text-input-disabled:#879596;--awsui-color-text-input-placeholder:#aab7b8;--awsui-color-text-control-disabled:#aab7b8;--awsui-color-text-status-error:#d13212;--awsui-color-text-status-warning:#d13212;--awsui-color-text-status-success:#1d8102;--awsui-color-text-status-info:#0073bb;--awsui-color-text-status-inactive:#687078;--awsui-color-text-status-pending:#687078;--awsui-color-text-breadcrumb:#687078;--awsui-color-text-icon-caret:#879596;--awsui-color-text-icon-subtle:#687078;--awsui-color-text-column-header:#545b64;--awsui-color-text-tooltip-default:#d5dbdb;--awsui-color-text-tooltip-link:#00a1c9;--awsui-color-text-dropdown-item-default:#16191f;--awsui-color-text-dropdown-item-highlighted:#16191f;--awsui-color-text-dropdown-item-secondary:#687078;--awsui-color-text-dropdown-item-disabled:#aab7b8;--awsui-color-text-dropdown-item-filter-match:#0073bb;--awsui-color-text-dropdown-group-label:#545b64;--awsui-color-text-dropdown-footer:#687078;--awsui-color-text-notification-default:#fafafa;--awsui-color-text-notification-icon-default:#d5dbdb;--awsui-color-text-notification-icon-hover:#fafafa;--awsui-color-foreground-control-default:#fff;--awsui-color-foreground-control-disabled:#fff;--awsui-color-background-home-header:#232f3e;--awsui-color-background-layout-main:#f2f3f3;--awsui-color-background-layout-panel-content:#fff;--awsui-color-background-layout-panel-hover:#eaeded;--awsui-color-background-item-selected:#f1faff;--awsui-color-background-modal-overlay:rgba(242, 243, 243, 0.9);--awsui-color-background-status-error:#fdf3f1;--awsui-color-background-status-warning:#fff;--awsui-color-background-status-success:#f2f8f0;--awsui-color-background-status-info:#f1faff;--awsui-color-background-progress-bar-layout-default:#eaeded;--awsui-color-background-progress-bar-layout-in-flash:hsla(0, 0%, 100%, 0.25);--awsui-color-background-progress-bar-content-default:#0073bb;--awsui-color-background-progress-bar-content-in-flash:hsla(0, 0%, 100%, 0.7);--awsui-color-background-calendar-today:#f2f3f3;--awsui-color-background-container-header:#fafafa;--awsui-color-background-container-content:#fff;--awsui-color-background-control-default:#fff;--awsui-color-background-control-checked:#0073bb;--awsui-color-background-control-disabled:#d5dbdb;--awsui-color-background-input-default:#fff;--awsui-color-background-input-disabled:#eaeded;--awsui-color-background-tiles-disabled:#eaeded;--awsui-color-background-tooltip:#16191f;--awsui-color-background-popover:#fff;--awsui-color-background-toggle-default:#545b64;--awsui-color-background-toggle-checked-disabled:#99cbe4;--awsui-color-background-button-normal-default:#fff;--awsui-color-background-button-normal-disabled:#fff;--awsui-color-background-button-normal-hover:#fafafa;--awsui-color-background-button-normal-active:#eaeded;--awsui-color-background-button-primary-default:#ec7211;--awsui-color-background-button-primary-disabled:#fff;--awsui-color-background-button-primary-hover:#eb5f07;--awsui-color-background-button-primary-active:#dd6b10;--awsui-color-background-button-link-hover:#fafafa;--awsui-color-background-button-link-active:#eaeded;--awsui-color-background-dropdown-item-default:#fff;--awsui-color-background-dropdown-item-selected:#f1faff;--awsui-color-background-dropdown-item-hover:#f2f3f3;--awsui-color-background-dropdown-item-filter-match:#f1faff;--awsui-color-background-notification-grey:#545b64;--awsui-color-background-notification-green:#1d8102;--awsui-color-background-notification-blue:#0073bb;--awsui-color-background-notification-red:#d13212;--awsui-color-border-item-focused:#00a1c9;--awsui-color-border-item-selected:#00a1c9;--awsui-color-border-status-success:#1d8102;--awsui-color-border-status-error:#d13212;--awsui-color-border-status-warning:#aab7b8;--awsui-color-border-status-info:#0073bb;--awsui-color-border-container-top:#eaeded;--awsui-color-border-control-default:#aab7b8;--awsui-color-border-control-checked:#0073bb;--awsui-color-border-control-disabled:#d5dbdb;--awsui-color-border-control-hover:#879596;--awsui-color-border-input-default:#aab7b8;--awsui-color-border-input-disabled:#eaeded;--awsui-color-border-segment-default:#687078;--awsui-color-border-segment-hover:#16191f;--awsui-color-border-tiles-disabled:transparent;--awsui-color-border-tabs:#aab7b8;--awsui-color-border-tooltip:#16191f;--awsui-color-border-popover:#d5dbdb;--awsui-color-border-button-normal-default:#545b64;--awsui-color-border-button-normal-hover:#16191f;--awsui-color-border-button-normal-disabled:#d5dbdb;--awsui-color-border-button-primary-hover:#dd6b10;--awsui-color-border-button-primary-disabled:#d5dbdb;--awsui-color-border-dropdown-item-default:#eaeded;--awsui-color-border-dropdown-item-selected:#00a1c9;--awsui-color-border-dropdown-item-hover:#879596;--awsui-color-border-dropdown-item-top:#eaeded;--awsui-color-border-dropdown-group:#eaeded;--awsui-color-border-divider-default:#eaeded;--awsui-color-border-divider-active:#879596;--awsui-color-border-layout:#d5dbdb;--awsui-color-shadow-default:rgba(0, 28, 36, 0.5);--awsui-color-shadow-medium:rgba(0, 28, 36, 0.3);--awsui-color-shadow-side:rgba(0, 28, 36, 0.15)}.awsui-polaris-dark-mode{--awsui-color-grey-100:#fafafa;--awsui-color-grey-150:#f2f3f3;--awsui-color-grey-200:#eaeded;--awsui-color-grey-300:#d5dbdb;--awsui-color-grey-400:#aab7b8;--awsui-color-grey-450:#95a5a6;--awsui-color-grey-500:#879596;--awsui-color-grey-550:#687078;--awsui-color-grey-600:#545b64;--awsui-color-grey-650:#414750;--awsui-color-grey-700:#2a2e33;--awsui-color-grey-750:#21252c;--awsui-color-grey-800:#1a2029;--awsui-color-grey-900:#16191f;--awsui-color-grey-950:#222;--awsui-color-grey-transparent-heavy:rgba(0, 0, 0, 0.5);--awsui-color-grey-transparent:rgba(0, 0, 0, 0.3);--awsui-color-grey-transparent-light:rgba(0, 0, 0, 0.3);--awsui-color-grey-opaque-25:hsla(0, 0%, 100%, 0.25);--awsui-color-grey-opaque-40:rgba(0, 0, 0, 0.4);--awsui-color-grey-opaque-50:rgba(0, 0, 0, 0.5);--awsui-color-grey-opaque-70:hsla(0, 0%, 100%, 0.7);--awsui-color-grey-opaque-80:rgba(22, 25, 31, 0.8);--awsui-color-grey-opaque-90:rgba(242, 243, 243, 0.9);--awsui-color-orange-100:#fef6f0;--awsui-color-orange-300:#f7bf9c;--awsui-color-orange-500:#ec7211;--awsui-color-orange-600:#eb5f07;--awsui-color-orange-700:#dd6b10;--awsui-color-blue-100:#f1faff;--awsui-color-blue-300:#99cbe4;--awsui-color-blue-400:#44b9d6;--awsui-color-blue-500:#00a1c9;--awsui-color-blue-600:#0073bb;--awsui-color-blue-700:#0a4a74;--awsui-color-blue-900:#12293b;--awsui-color-blue-opaque:rgba(51, 136, 221, 0.5);--awsui-color-green-100:#f2f8f0;--awsui-color-green-300:#a5d099;--awsui-color-green-500:#6aaf35;--awsui-color-green-600:#1d8102;--awsui-color-green-700:#1a520f;--awsui-color-green-900:#172211;--awsui-color-red-100:#fdf3f1;--awsui-color-red-300:#f2ada0;--awsui-color-red-500:#ff5d64;--awsui-color-red-600:#d13212;--awsui-color-red-700:#7c2718;--awsui-color-red-900:#270a11;--awsui-color-black:#000;--awsui-color-white:#fff;--awsui-color-aws-squid-ink:#232f3e;--awsui-color-amazon-orange:#f90;--awsui-color-transparent:transparent;--awsui-motion-duration-extra-fast:45ms;--awsui-motion-duration-fast:90ms;--awsui-motion-duration-moderate:135ms;--awsui-motion-duration-slow:180ms;--awsui-motion-duration-extra-slow:270ms;--awsui-motion-easing-ease-out-quart:cubic-bezier(0.165, 0.84, 0.44, 1);--awsui-motion-duration-show-quick:135ms;--awsui-motion-duration-show-paced:180ms;--awsui-motion-duration-rotate-90:135ms;--awsui-motion-duration-rotate-180:135ms;--awsui-motion-duration-transition-show-quick:90ms;--awsui-motion-duration-transition-show-paced:180ms;--awsui-motion-duration-transition-quick:90ms;--awsui-motion-easing-show-quick:ease-out;--awsui-motion-easing-show-paced:ease-out;--awsui-motion-easing-rotate-90:cubic-bezier(0.165, 0.84, 0.44, 1);--awsui-motion-easing-rotate-180:cubic-bezier(0.165, 0.84, 0.44, 1);--awsui-motion-easing-transition-show-quick:linear;--awsui-motion-easing-transition-show-paced:ease-out;--awsui-motion-easing-transition-quick:linear;--awsui-color-text-body-default:#d5dbdb;--awsui-color-text-body-secondary:#d5dbdb;--awsui-color-text-heading-default:#eaeded;--awsui-color-text-heading-secondary:#d5dbdb;--awsui-color-text-home-header-default:#eaeded;--awsui-color-text-home-header-secondary:#d5dbdb;--awsui-color-text-label:#95a5a6;--awsui-color-text-accent:#ec7211;--awsui-color-text-empty:#d5dbdb;--awsui-color-text-link-default:#44b9d6;--awsui-color-text-interactive-default:#d5dbdb;--awsui-color-text-interactive-disabled:#687078;--awsui-color-text-interactive-active:#fafafa;--awsui-color-text-interactive-hover:#fafafa;--awsui-color-text-small:#95a5a6;--awsui-color-text-inverted:#16191f;--awsui-color-text-disabled:#687078;--awsui-color-text-form-default:#d5dbdb;--awsui-color-text-form-secondary:#95a5a6;--awsui-color-text-form-label:#d5dbdb;--awsui-color-text-input-disabled:#687078;--awsui-color-text-input-placeholder:#687078;--awsui-color-text-control-disabled:#687078;--awsui-color-text-status-error:#ff5d64;--awsui-color-text-status-warning:#ff5d64;--awsui-color-text-status-success:#6aaf35;--awsui-color-text-status-info:#44b9d6;--awsui-color-text-status-inactive:#95a5a6;--awsui-color-text-status-pending:#95a5a6;--awsui-color-text-breadcrumb:#d5dbdb;--awsui-color-text-icon-caret:#95a5a6;--awsui-color-text-icon-subtle:#aab7b8;--awsui-color-text-column-header:#95a5a6;--awsui-color-text-tooltip-default:#d5dbdb;--awsui-color-text-tooltip-link:#44b9d6;--awsui-color-text-dropdown-item-default:#d5dbdb;--awsui-color-text-dropdown-item-highlighted:#eaeded;--awsui-color-text-dropdown-item-secondary:#95a5a6;--awsui-color-text-dropdown-item-disabled:#687078;--awsui-color-text-dropdown-item-filter-match:#44b9d6;--awsui-color-text-dropdown-group-label:#95a5a6;--awsui-color-text-dropdown-footer:#95a5a6;--awsui-color-text-notification-default:#fafafa;--awsui-color-text-notification-icon-default:#d5dbdb;--awsui-color-text-notification-icon-hover:#fafafa;--awsui-color-foreground-control-default:#fff;--awsui-color-foreground-control-disabled:#687078;--awsui-color-background-home-header:#000;--awsui-color-background-layout-main:#16191f;--awsui-color-background-layout-panel-content:#2a2e33;--awsui-color-background-layout-panel-hover:#414750;--awsui-color-background-item-selected:#12293b;--awsui-color-background-modal-overlay:rgba(22, 25, 31, 0.8);--awsui-color-background-status-error:#270a11;--awsui-color-background-status-warning:#2a2e33;--awsui-color-background-status-success:#172211;--awsui-color-background-status-info:#12293b;--awsui-color-background-progress-bar-layout-default:#414750;--awsui-color-background-progress-bar-layout-in-flash:hsla(0, 0%, 100%, 0.25);--awsui-color-background-progress-bar-content-default:#00a1c9;--awsui-color-background-progress-bar-content-in-flash:#fafafa;--awsui-color-background-calendar-today:#16191f;--awsui-color-background-container-header:#21252c;--awsui-color-background-container-content:#2a2e33;--awsui-color-background-control-default:#1a2029;--awsui-color-background-control-checked:#00a1c9;--awsui-color-background-control-disabled:#414750;--awsui-color-background-input-default:#1a2029;--awsui-color-background-input-disabled:#414750;--awsui-color-background-tiles-disabled:#2a2e33;--awsui-color-background-tooltip:#16191f;--awsui-color-background-popover:#21252c;--awsui-color-background-toggle-default:#879596;--awsui-color-background-toggle-checked-disabled:#0a4a74;--awsui-color-background-button-normal-default:#2a2e33;--awsui-color-background-button-normal-disabled:#2a2e33;--awsui-color-background-button-normal-hover:#21252c;--awsui-color-background-button-normal-active:#16191f;--awsui-color-background-button-primary-default:#ec7211;--awsui-color-background-button-primary-disabled:#2a2e33;--awsui-color-background-button-primary-hover:#eb5f07;--awsui-color-background-button-primary-active:#ec7211;--awsui-color-background-button-link-hover:#21252c;--awsui-color-background-button-link-active:#16191f;--awsui-color-background-dropdown-item-default:#2a2e33;--awsui-color-background-dropdown-item-selected:#12293b;--awsui-color-background-dropdown-item-hover:#414750;--awsui-color-background-dropdown-item-filter-match:#12293b;--awsui-color-background-notification-grey:#687078;--awsui-color-background-notification-green:#1d8102;--awsui-color-background-notification-blue:#0073bb;--awsui-color-background-notification-red:#d13212;--awsui-color-border-item-focused:#00a1c9;--awsui-color-border-item-selected:#00a1c9;--awsui-color-border-status-success:#1d8102;--awsui-color-border-status-error:#d13212;--awsui-color-border-status-warning:#879596;--awsui-color-border-status-info:#00a1c9;--awsui-color-border-container-top:#2a2e33;--awsui-color-border-control-default:#879596;--awsui-color-border-control-checked:#00a1c9;--awsui-color-border-control-disabled:#414750;--awsui-color-border-control-hover:#aab7b8;--awsui-color-border-input-default:#879596;--awsui-color-border-input-disabled:#414750;--awsui-color-border-segment-default:#879596;--awsui-color-border-segment-hover:#fff;--awsui-color-border-tiles-disabled:#414750;--awsui-color-border-tabs:#414750;--awsui-color-border-tooltip:#16191f;--awsui-color-border-popover:#545b64;--awsui-color-border-button-normal-default:#879596;--awsui-color-border-button-normal-hover:#aab7b8;--awsui-color-border-button-normal-disabled:#414750;--awsui-color-border-button-primary-hover:#eb5f07;--awsui-color-border-button-primary-disabled:#414750;--awsui-color-border-dropdown-item-default:#414750;--awsui-color-border-dropdown-item-selected:#00a1c9;--awsui-color-border-dropdown-item-hover:#879596;--awsui-color-border-dropdown-item-top:#2a2e33;--awsui-color-border-dropdown-group:#414750;--awsui-color-border-divider-default:#414750;--awsui-color-border-divider-active:#879596;--awsui-color-border-layout:#414750;--awsui-color-shadow-default:rgba(0, 0, 0, 0.5);--awsui-color-shadow-medium:rgba(0, 0, 0, 0.3);--awsui-color-shadow-side:rgba(0, 0, 0, 0.3)}/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:0.67em 0}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type='button'],[type='reset'],[type='submit'],button{-webkit-appearance:button}[type='button']::-moz-focus-inner,[type='reset']::-moz-focus-inner,[type='submit']::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type='button']:-moz-focusring,[type='reset']:-moz-focusring,[type='submit']:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type='checkbox'],[type='radio']{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type='number']::-webkit-inner-spin-button,[type='number']::-webkit-outer-spin-button{height:auto}[type='search']{-webkit-appearance:textfield;outline-offset:-2px}[type='search']::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}@font-face{font-family:Amazon Ember;src:url('data:application/x-font-woff;base64,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')
    format('woff');font-weight:400;font-style:normal}@font-face{font-family:Amazon Ember;src:url('data:application/x-font-woff;base64,d09GRgABAAAAAEmUABAAAAAAitAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABbAAAABwAAAAcbjn4M0dERUYAAAGIAAAAMwAAADgFFwODR1BPUwAAAbwAAAulAAAjuhYe2khHU1VCAAANZAAABNIAAAsi+2GWR09TLzIAABI4AAAAXwAAAGCIbG5KY21hcAAAEpgAAAIRAAADDi4Vrc1nYXNwAAAUrAAAAAgAAAAIAAAAEGdseWYAABS0AAAoyQAAQfBeLmf6aGVhZAAAPYAAAAA1AAAANgizZURoaGVhAAA9uAAAACMAAAAkB9UE5GhtdHgAAD3cAAADDQAABRyn7C64bG9jYQAAQOwAAAJqAAACnvMH4vJtYXhwAABDWAAAAB0AAAAgAV4Ao25hbWUAAEN4AAABwAAABKBc16eVcG9zdAAARTgAAARUAAAIR7QEbNt3ZWJmAABJjAAAAAYAAAAGXyNWqgAAAAEAAAAAzD2izwAAAADPLEXCAAAAANLQD6F42mNgZGBg4ANiAwYQYGJgBZKXGBgZLgMhM8MVhldA9msgZGZ4w+gLZLOAVTEAALZEB5wAeNrFWmtsHNUVPnfttb2zux4/xo7Xa4/Xu3HsJHYSHOdpJxAXuYVQkqZAaSAP8uAhIKEupamqwg/S0qbQSpVaVYhWScifqlIb2qZCIRVFuESRqvxxH26JU+QiXGBbaf/sT6bf/WZ2PWuv7Sy2YY7mzt2ZO3fOPffcc7/v2KJExJAn5VUpv3Xojruk+fA3hh+TNQ8NH31UBh974Mljco+Uo404jgRxURKQMtxZyL3g4Se++oQkjhw7/riseHD4gcPS/ejR4WOy+djXHh+W7WypvPaC9t5bvCMsy6RCqqVFlku39MkAWlShxcbA09E/t/a677afc6/JpHftZm8qOehdnxKlrlG/PhmWE/K0nJRT8lP5uZyTq/IXeU/S8pEqx5MTylA1OA3VqFrwK6n61Ha0zslH6lY826MOsj6sTqgfee3PqV+pV9VV3QdFKcPJQp/9EkPZ72RQnhcb4+kXS/Y5afzq4j09im3OOOamWkw8i8kg2u2SHrxrySGx1Fox1TqJqfViqw24p9/qwXj60X4fvqL7eBPv6/sp3rdlG/rZh7a6pb4/wNJ9N8ZyB8pLaKlLU8pV0EmrkDOhwrhGoV8Ad7L4laX+E1pzjGIbTq19GWYkxb4+4Dfvw/f343wDp6tLP1pVqEroXYUxhARWwjgiuFbjeTl7Dzmj+gv43gS+V4VaBN8L4H6WOgTlQWfM1zKDuxkpU5W447bWdu2TkESlU1bJalknG2SjbIENBmCD7XKz3IKR3iY75U7YdDdsclAekkfkWXjA8/KC/EB+KGfkLEbyCuwwIm/JZfmv/A9uqVSZCqpKFVHVao26SfWqPgkY17UfVZ6uOi2N8MglPZxxZwRlGueEk4Zd/M8meEnBb8S56Ew6rzujqF3w2qMtLIM6+hhj+xH51A9nkhpNOFe09p7mmVlbp0vuP70oWmaWaPTphWijZ7fo84sourAKF1/f7GL0kdc//Yl6mbs6jBtqf1H23ugccU1l+YXMfO09Hab/7pmjez2LtlfqY2CWdrsL+r3CS9d0v+X6GucsmvQRK98vtXFGcU56s5Rl7NiRf3aVKzXLuDM+3RPw28CTrHMe5Qi/8zpt8YhrH20dvDUxp12G5rBDCmcvy01z2uFIkX4H5pj3XL8GSn3svJF+51wPJkc8QRumYZW0Z+1ih+F6J+Pz+Nzrzv2WjtzeDE3OtUt8CpE8IzHotEksaBqj96U9nxjHfRsWMQv9keO2aKvU/Ot3yr5Tq8zdz+ZRLAAMEIVE8KYJi9dAQlILUVIHCUs9REETC63aJIE3OiD1sgJiAUN0SgMQwy14ewekGmjhIPo4CimX45Ba+QokLM9A6oAingUSOinfw7uvQUJAk2N4+jZEyb8gSt6FKPkPpFbeh9QBU1RKUIWAiSqALiJSqaIqKlVqteqRMLDGGomodUB8UaCOm6QayKMXyKkP+KNGbVKbpFZtVpvRzxa1BfWtaivq/aofowjIAamErIQFIii1FSLe+P0jXw4JcMx1HHM94kMXRr4SCKoeuKYb9R5Zg/paiAVUtR71PkgD8NUG1DdCGuABm1DfDGkE5toiy2QrpAnoqx9+MQBpBgrbJnEgse1A8TdDWj3LDkJMxIEhScrn5HaUOyG23AFJAqvtwvx8AZKQPfJFaZe7IEm5G9IOpnIP6l+CtMu9kJR8GWIjku/FyO6DdMj9kBXAe/swvv2QDtjmAEZ5CFLjzaWeuTogwVPwm+9DGoAJf4wR/UReRP0lSIP8TE5jRGcgLcCJZ/H0nPwaX/+N/BbW+h0kKRcg7fJ7uYj6JUhS/iB/hCZvQDqAh99EOQJpkD9BkkCZb6G3f8g/YXHXV67JddRdj3kHsrLAbz6ABIBJy8EAgioIBFyhKoCh/Z6k8XWlCqswPEl7VYheBbQNvB0u8Kf1YBKm2gAukfMnehK+thG+YcI6tbBKPeZdr5AOWLGTKPogVsFxeP8z8PqT8m35jjwn34UFX4PX/1X+Jn+H77+NEbwLnd+HbiHoEYVXd6seePU6F0Pji5vxva3w14DZq9F0+N5oE31x6Q53BzS9OJwqiOXmzOiGGGTmY3axHdvK7zFGPs5ZfMcqiOOZaXhyiFE9vz+hbmKdWG4dks3rY3l4gPEPGmVzcZH9np9nBy31MBaxL2t27FgKtmast3y7wCTnsEvv4HxmY9fJepimi7jJzs2lx30y3u6knwvWft7qxAo2kBNQEfdP28VPYFFZ5yruxDSq8u9EGglxZGPFsDa+NDEDsY/xfoaMJ1PcErn9zM/OwI7yrYHRRqbjzPw7mULv1RjMr5u3a6bzLeBpLrZw8R73bp+fFhy235OLIlpjvtkr2Kst4lSL62Uc2OAKInZKzyNk0us3xjPm8/tRT8BhMSsak76EXnfOrlUpnIWzaxE/5VCxDWv3QmzayGPOnjbmFHrWa3GKj9N+v0Tlblo7le9rTHuV+zZRUa4v028/9DSZs5XLlsjohvIxIGe/FHqzOJuu38fo025vMX8My89vbh7BFmC7lOcNMdR78W6K+H7M45Wu1Q2f7cdpd43oMsS2sD1u7y1iSFuMvC0yM6Lu7PMyHdUbJXFEY8n2itQMvUYXyEdt+kOWMSaFcfcUW11FxmV7e0pqJutb4NGziH11TVt/seL8d9bdwvBGueDsA/1+qi97RsQcK7GvglFMy7+Nlqqbfz9hzf5Yvm54v2JLmQMraQZn6jYfq/sYmdCSMIRVRCejmIVK1Moo0r8U2XHnQqE5PzIWGMHMORCswpocRxnK/z0lKBVghVWshfDlEDhqBFi/2of2/Uc7WJoFttIIRtcOptIEf2sGi2uBtELa4b2aG7SDy6TAc5JgCUtxBPiXIVeCnoR45kRwVntS5+k+JY0YRaMnTRD3cMfginA0riRRT+JLjV5Pn+yxDPrFeQbAZSsgZeTySXL5JEdYQUZf7stoBH28vtLH66PEyia5vEkWX03+bpK5m+TsNeTsteTsdeTs9eTsFjl7Azl7Izn7MnL2KnL2EDl7nJw9Ts7eRM4eJ1uPka03k63HydabydbjZOvNZOstZOtNZOutZOs22Xob2XqCbN0mW28nWzfI1sPMvASZeYmQuUfJ3FNk7iY5u0nObpKz15GzN5Ktx8nWO8jW42TrzWTrcbL1ONl6K9m6TbZuk62bZOtxsvVGuQxZzvxOkMw96WPuSR9zT/qYe5gZn4iPvzcxyxNUa9VacHbNyivJyqvIykNk5QZZeZhZngi5eZhZngj/+tmF+dAI8QAseApj7sWIz8hnMM5X5DaM7CLsfAka7+P3HpZA+SHNsgNVgUH4z6qly7qjPMOccZZop3i7Ue4qRgFizRAFZ3w75QUy5fRsLLIwbvP9sfn2vpLzpEbJ+9/i7sZD05Bor4cBd8iR4hlqrFub2e1iCO05+E6I8UQxnijmsgLyMqScqyNIDy+jb7te7fqzjsB7ffGok+93Mh7l8qyzZVjdeDSVYW1gJMrlCnXEaWKUic3ICSbksxA3yiQYZZoZZRLyeUhc7oS0MEvYCqvs9qKPzejTxuiTYPRpY/RJMPq0Mfq0M/o0M/okGX1SjD7LGX06GH1SjD4rCnKFbt73mxDLl/0tZyRqYCTqYsSJMeIk+BflFlp2JeNOgnGnjXEnwbiTYNxJMu6kGHdSjDgJRpyYl0vW89HpizWdvljTOTO77Is1zcwV5vKDOjNYycxgFTODIS/frCNRZJ784Cz5ZjWgBvg/BVH4RQT+9DLHe5k6XwMGuU7/MeBbGuUHcGocImhbjV+1+B0kjgjB+oMYq862r6LVVzPn3k3b99Dqa2j1tbD5i7IOMe8sfENH6V38m/1u5h/34MvvYO7/DavcL+/BEvsxygE5DC2q8MWHNaJQpmoiSsId5xfESE/J13HnW5CAiqk23FHMR2q97SKi5EN63Wzv3s539UozlKn3VFXDspZlHUvutcpi2cCykeUylk3cifV/x3z4f4S6fOcAAAB42s1WTWxUVRT+zpvXafv6P53OTKedmVqKVkVURNTaBQUsia0YmsaYpiH2hxJwmDbTPwWqSAwxxBBiCDGkcUGIMS6IIS6ICxbGhWFhCAvdGBeaEBVDBBSxSuv37j2W6UzrT+LCTN45c+/97jnf+c577z4IAE9Ccgnuls7uXsSHXs6m0b4ru/NF9KUHJjJ4CS4xWFhAOZ0gwHERSlAKD2Wcq0DlIsKj89f/zep6lHT0PdWEns0dvU0Y29xD27O1YyttV0cf7TPPdtP2+qs9vT1dtH/D5s9Vx6wGl1mtyNlbnLdeNTQwvhP9w+nduzBo7J7hzOhejI1kB4YwxYkBHDL2SHp0KI1jmcm9WZwYzQ5nMDvGAU6N786M4L3xycFxnBmfHBvHhxP+/EcmKwwz5jEja322rmETJJ/CdTG2xFjL3THWM7bM2FKtqQYtWENV27EF3ehFP4aRxgQO4HW8ieOYxWmN94b6S+o/V/+V+sumc4LvGZW+6FOyow9etuvFrep3qD+u/oL1JVC/wcYp2ai+T+cPsIr7EJK18qDcLw/Jk7JOHpZHZL08Kk9Iu7TJGnlANshj8jh3hEx3QghjNTaiA5vwAgYxiv14lcy/wDf4Ft8RF8THRrH95v+PzCGoQ9JUElyo9sdSJJV2zH0+Ngxxz6MJnXibu3+QcmbdJM/LsByVc47n9DuHnQ+ci85cIBhoDLQG9gVOBz4LXHVjbovb5na6I+4xd9Y9yw6FEEczq1qHNjJ8Gr9RuytI4FfjG/Cz8XHcMD6G68Yncc34RrxmfBQHja+nYp6NKastUpoUeVMj/aSR7iDvUsTvmvsXRR7SmAHyrEZM7taIzYq/pbg7ke5RxCpF3NaIc1qNwJUWXXOoZqW0aj3zivQR9+pcXi2SsrVIwtYiDVrLdH4tRJhaJGlrIdLUIvGVFCfSKC6NVnHuuKGxr9vcVnFGtopPWcX/ImKFRizTiJ6NyNvcRqzUiOU2ohRrxNKCuiu17nKt27N1M1J+3eVad4XW7WndpUt7yIjNir+luLweErFKEbc14pxWs9hDruX0kPXMK3Kxh5xbSZ2oqlOn6oRVnZCqE1N1IqpOjapTW6BOTNWJqDphVSdUoE5E1YmqOmFVpzZPnZiqE1F1wgXqxFSdiKoTVXXqctSJLFEnpupEc9SJ5eVNad6E5m0oyJvSvAnNm9S8jTl5E0vypjRvMidvyiAifNrA+3iaHGb48yTI3pVJNTnWSpw7+LzyzmjFc+jDDr47R7AHGWS5Zx9eoXaHcQRH8RZO4CTewSm8i/dxBmdxDufxCS7gIt+zX+Jrvmevsqs3yXVeHAkyaj3ZzPCa4jXNcZyXn411kL/4bMlycd3H/sM9jtQT6ZiKHGKnaKf5c1hRnLaBexxp5C5HEr5WkuROh8qmbI6V4rIX9lTwFfNM/HKeCymeMgEyajUnjj3Bqs2XhI+D5UFOKc44PK8PUjfw/XGF42vsjStVvA9C0sTe+O/EtQiTxYy/m4wbyDRBhqnl5oh2LCdzPnn/ye4q9r+G33e1EpY6iUiU9/oyc/+z3f6V4T3pf+d08htG0Gi+f+yTEKDWXdgm/uo2c3538WoxCPsERsQ1mO3ix94u/hdVlyIdPn+e4VBNNkt5LNPlPwBTfHvdAAB42mNgZjJknMDAysDCtIepi4GBIQNCM7YxBDCqcjAxcbMxMzGxcDKxLGBgeh/AoBANVKMBxAwujr6ODIwMHL9ZmC7912NoYD7DKKnAwDAfJMf4m2krkFJgYAYAvZcPnwB42p2SWWyMURTHf19nDG0tVVq11f2GllqrVbQUpXaqnbEvtROxpkhqCQ/2fYutoUYstbRqK2op0iGePJJqmKs0ISLxXsnnmK+RxovESe5Zbu7/LP97AAf26YAhGsMpkRGMnXwR2x8lXrR4oWzBMrxGfmyhClcRKkq5VbxKVMkqTaWrTOVRxarcjDbdZo6ZG/ezzmlZvzPSRDL4DE8Qh+AiVUwQl6RS/8Jlm17BITiHVWfVWn4rz8qqSdCvtF9X6ue6Qpfpu7pUl+giXaAzdEqgKvA6cD7gq3a4sPv/D3GFhAUnt3loKA6Z3JaQf+SwazfCRWOZN5QwwmlKM5rTgghaEkkrWhMlPLYhhra0o70w3JFYOgk7Jm4604U44ulKNxLoTg960ove9CGRviSRTD9S5DcGMJBU0hjEYNIZwlCGkcFwRpDJSEYxmjGMZRzjmcBEsphENjl48DKZKUxlGtOZwUxmMZs55DKXecxnAQul/93sYR8HOE4BPi5xkctcoYirXKeEYm5Qyi1ucps7lHGfezzgIeVU8ISnPOMj61jCUpbziY1cII+V/CCfFZJ7L2dErw/ytIwNDbhbJXsF13jMNhaz5s/9arbymUVsZxen8fOCN7zlPR+o4h2P5EUlL/nGd9nTr4ZhhFDDJqoJUMtODrKDQ+znCEc5xmFOckoQJyjkHGfrK6ytt5tt8wvThpQ6AAAAAAEAAf//AA942o17CWBbxdHw26fYL7Gtw5Yl2bItWZYl+ZSt88mHTtuSb0u24/t2nDixk5gckItcBJJyhHCUUkpKCqTp97UQKE0JlBZS7rO00I+jUKBQjh9aIKX8Hwl++mb3PclSoP0+yD5r583Ozs7Ozs7M7qNoSh39EqXRv6VSqSyKYuVOm1UlYoqMDjv8UiqyU8Ph/Hx1znxLvrZcC+UP6F2xmCt4Q6PWVuJCUdEoNY3OoFvoR2RGKoOiZAw8T1IURVPZ8OijT1F5lJaibKye5YuNIYXRk6Jn9Qx+Ue7rF081TInXe1u910PpFo82jIpnfa2+630D1zdcf7rp4aZfwH/w5/Tp04sPUyJKF91Na0UWSk+VURaKUrFmZGI1SMWazMhh96A6BP0oVYzRxKg0CAYjRXI7VDxIlK1UsUWpv8ypHiyW2cIlFq3PU7PGvyzHl9vulbZ5qwuD7n1zqrvKrOXe5j+bqstdrfsvTdXntRUWppyTaiKsY9C5fY+4srky/UuprsU6cpFoOwpozap3RA1oodiietsPcumNfim6lH5YZqI+Rh+CZExIShupWRmDpFQz+h7ISESVRj+nD9OPUUaqiqqjKIME6YtMqXoyA15kxMPgJ0KKVE7WlspooM6mWFmTBEaklGerWA8M1qgvSqUPZ1WrA1WDc2MXjw6IHJZhV+voSK/iioCiR71WXKzOzueu66m7qb6h1V5V4PRUlVTWZ2WIbXUz4dBCEeoJmjurOjzu2aLlL/bccN+8RMxIDR8pu6xOP/qTtS1D2VxWXF4LPCM839TH9COgM5ScxRrDTJvU6hxFAzpzViw+S3Cc0QW0mz6LNUKFZyMLeKcV2aqLtbrtm0Y3XOw4Erij9yiq2LuXe+n7D+7HbaJPQhsp30aO54tm9M4sh930u1gb+ixuxL28dy+qJI0Q1Y7WoBvp01QutMHTb7KzKp4nFqQGQpMgxnQgu4BZ2GCazFCAwIwXy1J3NEuM2dVojShHPpdTXmjbs2LFXrsyVyLJW5OdS+8Euh3UVlpLN1Dp0AnWUV5vGTRoWGm4X3o/eSLHI490wj/M+6vRNdQPqC3UCopi5LEZK1ltzlWukM5+H4mlsjS1+h6KyKaEeh3NoQqYfcqLdEyJDNlkr3d3k3eK6JfULdQO3K8qcRkK6y9taeGh6IvRBboU5AV0GGRD1ejLaS7tiGj/17spsv7soFs1oFvpWDoGK9YTfRFWG0JZUCwJQitqRl2bocxPz3UcHsGPhqlfbDqBS/eei694dS958Lz/AB6vwZqGubfJGS+yic5uelr2Sv8VdLi1e3SxDeMUQOcm6FeFV72H5rWTMTmF/hgdUyB98ma21lYx7Mqa2d2/NnT7URSRtd/9vaGSCoveFBwY7qzdcsu+bqClhzHYoL98sE5Km9VJiEG/OlYnjQ0AVovJOhbuHGsO6Q3is9w7MnRY+kVqz0zj7ohluniutCfoYFP8fwl3vDXS1rjep1by8pHDoxBop1FiigKCLIwGmySTHCFHAXdGim4cHVojXVNQEeDe+G4Heomr6vrueyjCnRTmEXhzfIM3Vq6DEToTeGPHIl1ToQ5nb1obWiPjPrFUm4bWNu3vIbytbHG70l3I1v1M2kxvaCFAmKOpBqDtARnmUCboigjQkzBefvpUIgCnZoMd4Hunq4P10wdV5VPlvZPeLa2zmwbvnBuo4/TdJtTg9/bU0f0F39mhUo/3NG0JXrl734s79NwpRZY4VzwyPhqqZfGY+qHzlcL8YiEzqB8d4m6WoRek3E56urtj8WZityoF3cqhirHtRdnYMsWZc7IxBUNMaoy9KpStRUvWqqa7w13j39axdstI/8r69Y0Da7lPRDc2uxsHNwwOKBi3v9Za00GXBlbnF/U4XcPOwe7QBi07ZB909nJ/Quat1a5Ga5fryWB5ukjRUV1hbSRyswFflYQvA8yK1ckmiEsQnolVyq2sM7YYlL/v35lr6DUOrvVsal6zeeVt60Z8kq67/c0p+00+YyCwbYNcOT8U3By8eveB311c2WpEKwrLS35Z1m7zBCiy/+E1+wGdkmXEGgX7n5zqQFdFo8Qm8PDMJTjIuBdsi5lu4u2ngREjpleKns3ibkFVmcgRfmT08LV9mK6Leoq2o7NZRlT28Q2yVFSm2Ej0rgHaF/DtEZPCViKWLpByjiy0mvt9JrpcIEBTnbC3/xpkIcf7r5cWJB9biFI6wb7sVlV2tVmrPUFZ92Dn2Ks5jbH9/hZFccRsLDGFrJGmw0NbEjZ+GnTAKLqaPk7VUEGKSuE3rSwgSBSBxpqfKHyVoAkCGxKa1FgTTIUXKzieC7puYO7o3Zd/fv3qH/TpG8ecFtey0oHyWnfHwS5jT1GdWK4whqq+c0Xkpu0tB3atHDza2C1aZjcUWobr7jOdPHoDoo61X7cquG/WY6mqsoUaVt66Sp75ma0oV9VxqPPSvY37T83uPZR3z2SW5KmMph2hLoqOvgoDwfaFAStA6Uw6Ro9scrAD6Fk199nkLNo1v5n77ttVDzxAn1psQ8tQN+h+ObRpgDZS0DIdtoO8DGMLQMQItiD+o/zgq33Tvpoqm/firvGqm4LdTvNkxdU1zayVPtXfXj+klLdavJMu5P2iM2B2ovL32uorLLyNqY1+Sk/RjxMLnrjyGUFieGmxdF71xe5tV6y+/6KBgNTX3H0w3NddNml2FBVfv//i5/cUd+QN3r5mcnWBmrd7mP9bgf8VWF8F7oF2OopNTvnB13dfP3HPRtXsrvDetpFu+tSRXVvPbKbXLH7Qe+vqkTXAF6YxCDTSMQVs8Pj/yw+iEzLuoTIkk3GfmVGjlD4VeSX8SYSMBbdpIv0KbcDYiqDFDTLuxYrzsvN1gPxOmHueH/ff6ath3Bq8c3kR7L+i2PBpokxmxAsAjdYHTDdJv/CZt7ovP+Jad9OAY4NWWjJR0nMo4lM+08Xdn1dww6G+H+5uzZW3yeT9P1rzhxgvz/L86+Q6kV5uE+mgoHfc3F3u6YPTtaindvogquWeoE9x/4XK8M6G21XBIxfaiYjkRFUHpw9izSD+y1+jn6KfwDvwX0CDUomlwdODmqanSu53N0kC1Wy9BOilvahrV3pDMT5+QvYgQg+2cTlMRPnB6ToU3s19h9v8Nz80+AMyc/dxN6Mwdw/fBr0KbVL4Nljq05egWhkwcrSbfy/y8Hzo5HheYXRYp+mBOW6xb8v8+MGFA6h040HawF2Ddi6+BB30op/xezfm51F+jnSkYR5eDL//EzSaww+6EuMvvkxXYHya6OdTYGPEeBc0xBc31kxVEe+Gx9yMSMfOlvHu9l0t48HItsDEvZt2Hpm4t2HgjrVjcwN3rh2d6w3s6tv13Pbv7t317Pa4nobJHGUn6Gk5Esn5dVUOcnp6ZiF4YGCDvWG6f6ahcRV9anIgOO/hvkDDvc0ultf32ugY4VGOV2sKeIlJfEGEkMw3PRy+kd1+DWGw+dBQ96Xce3HOb89oq6Vv3E3YnPvlHoVLcu3SABJ5lmDvRycCZvUx8wBTILCNHtyUs8E5iZkf7rmUu2+mbzLQtArlcB/Spyb6uhZyuFfRms4mp5PXuXSQcRr9BPiN2MeNm1O8ArBJ1aLYzkv0jQzF9EGzz7ulrWqoWFocMbT2lVUHQ3WBXZHtYdnEUHWHudyOgkXh2rqJmhxla1a2j9VVKwoLO2q9q+ttrWXaWmORRUX6DsN4NhL7CDOgB39AL7rnkldktFT2x0vAHehePMrzGAYeHwQ8JdH9uBsA6pkaM1L904M5t1yycfuKjMbpJmVLU+ckWAeO3XHZuon8Rg8a4354kcbj7+4i9LqEdYH9EBHWXvTwwtowcq7jDoD6naQj/JqjRkDXnxR0HfRVhPUVY9Ni9ScbIJj520IOQnPcL2jD4p+g4UN09eKzdAvR9ejvoI+rBBsAbRFpjOTojp1/3YIs161b//st3Hs/RPnce2gBNXGLSMT9lDvGjxcWL30xtF2O5cI3ZI5bj8yu/mI9d8ZCRdEvuR+gGa7pHPTzd8Dt5deUnuWdKh2TJUEvc/8hQ89KuAo0J2ul1ZHWxfcjmDaCOOgO8OtB5io5tpEQd5z8h/TIdUek4N13Lqo7eR7WAd4I7/+nYBlRN43cxLv/KPoAvBvmaYAKsnju0LBAhD779e5O+n0ct1BBVEVreDkjLAMg80j4iVVIGtmGqsDq/AFdwe0Aemei8+ix6IMk1oABeKXoC+mNnZ3E/1mkB9FP6a8grm0A/4Zfczrww1LpNNgj87BvneQIiGDPl8dWGxpMLZm0ehsj1/aapkrG3m7rt5vz7eMe3YjNNRgZOTGvzOI0vvUoJb1lf7vNhmkXRv9B0/R7QBs2NHmiW2wCQ1fEiIRV8JxpxOpp6LhqsGS04qqJrtCgtarANeJCd1gdw/3jd0wr5PTT3CsXcdG0hkvbF3iZAt/oUeA7V4i/hLW2tNuyEFH+sWey86oerU8lsZjrxlxVjvpedemUdLpv6NhqSUZzlv+SDo+zyl1YtCSLGuBXhiOjJFmoYFszwdr4hjQ6rwzbqswT171t6C21mYqc4/VFo3bXYM/Qj9crPl3M99U40LL05r0dDhuh/yl6ic6AtQf2zZC6tEuSIJQwLQLyDO97o9vGLwkPlIc3+d2h6w94zI7QSKi8w5Xm7p/UWgITA417ZtweR+em3Ax/jRX1WcfckuzWKlUeLx8HPJ4BvVIQe+ClnTHxQE9YVT29oxnjMt3Nuc4siclUWr4881bprb3opCej+0RGWjDDUDbQzkWIXKJfRo1ER3Kxr25IVpG4OXOCh7jkIKKxkvEqfzB8zcqSybLuvO9tjwSkTb7+CcVVxSsrzGaNc6x+wcqu7Bw4Ngt6M3zlNYZmzfQGqbvmg/TgzuZxfgwwFFoG86Fa0p5UBuw0CQnIL9tz5mmLp5FJs03YZE2G0UrfxJEJdMzubPQpLSz33yi1S99Ybwez8h7IH7xrJKafBzsiBYoJXjVsVKIn1AWlGiiPT09M0yvVuQUluCz+FJ3nUkAGl0eNpG0G+JIUQ8Yr530HlEBoQ0GetmjFhokN2i2sAfkFkpcvN1bRtsXnb1eI1DHCsfHlAmeCT8HaUuR6E5N3ZKL/w0u5z59c+GU1/R7X8PLfuLNffYXxrdHzKB3wIUphee1Zstvs2Qq72ZoOXafJMxVZ2bkWs9ZOs4tP2+TSzNS4PEUNMI8l2N/ghShFyfLkg1fVkrTp22wyn76/TIIl7NP3lQUmprtSyierWV9KxYyj3g+yJ1J2VIUFedfauHvReVgGNU5njTARCfOZRnbcb3ZKukPzeB5HKkgvlWusZG4J1To7dx86P+6IUyTrFZ2jcVYgL9EKYBtjSvIU3hlcE9oXwY8WS1eVw4If0vnR4e+PkEcnxODuBvIg+v6PqBXsVhpvtxjgbylJYGLQkt0SX9WV2rfKG2g7tNJiLkXLg4O2EoNrhH2Bfnps/cjKyTuns1+iv7ORO5/WeGnXhpiNsS7Z2xR50mJKR4n2VldTNloVs7dXnG4bsPH29gVksNoFi7sYRpKNSBQzubyM0Q0oijMlNp5zsuoZUd50V2poRCnP1EhXNgTQ+anVywaXreROQpsUkOPNwJMR9Crmt8TdFt5rSSX5EY3gGZmOV1VU9dd0u8UFTdoqu6u+unR+yDxcKNH1G6qduZpP1O7SiuYyXZNYYioyaYrUrtLWweysoDSr1KDQyDCfldGv0JX0d+LxksMOwYOX5vPNgkqj3rzm4r3SypGMyfLO/BskN5RL1JrSyuJs1fq89r94Mo4cbn8jpMxVKoCeBWx3HjpPdCtmuRO9Guyzr00tnbXVeWX2CZu0oNAwXOafmBq11QR8lT1oOXeurVxXUGdFHbDeYa3BZC0Hemm8X+NBOC/KHBmbqfdsLpqquL0L7ML4mnf757l3FvB4agD/POBLE/0bJ2mETmhOjgdW6X82XrjgnTQe9qOruK3QfBbdzI2/8sx67rU1ZH1GX4PHV0AD+zkmRi832WDfAXe0bvDW9e9vn4lcN//KnkcfRcwXp079N7fItzkTNdAI2mSBpjpZJyvwKqEZ2Ei8zaYq55qZoHWuZLp4dmOld6P3e+r8Ij/6ihvpf2/t8O9+7Qr3ZRI6n8PjFaCT5PtIJaiHOy9FOyXcT1G2NIRm20Pcze18Tm0W/ZY+R1XHMwpg/HmvmbXhjSAe/YKNAVawEkkRzAae17LymjpfaoZEnK9VSLNLDIxeOtBk0Yu1OSUVK7QrrJU6rUwiq9Uo9+bUu7IrahubMnIUnYXGkx3dskamvPqYxZW+3Fgo6WnsUlqWE/4Xo1akFnKsMNeiX0396gXRI1/78LtHgddRnle5M7bdYsWoQ4zAX2wTw3yTNUAGA+tm+P/KKv2Xf8Urm74iiVcqgER0OcLnLcK+piILy4tsvHNEVp4UBVBrQFujMxTJ1BqGCSbV0IrIsDpfm6Up0sV/ENt1PlpDfUyn8OdEcrJBydmEHeoUf05UK+SNUClXIBajdwcS80V90d00uPywlgr40xpsEoA7ckajFzlZFd43slVgvd7O7+pv2NlZ4C4ImMW1bLM9lBscLVjdGwqu3H9jymRv95FVGd+7UaQIyrmrGUOtTXwT6p3JQHOqQyAHM8lhPkoVglBIulkHCgw+cJI7h+dJBY61YpnNitplXFC6KW2tdHBZ/UKrZaBI2tnWFqbRM1Jkb52v6G5r/lG7S9ewzp2vbinv7sgsVbbDeJZTXuhnLei2Cce+/M6Ds+smxsSS8MfEqrClZFUM2YZUjCkVyUIT60ITY/7yMeuowmTwBT32psTKg5siF8G/oLaXjejrHVPGHluvNqmC5xo7wrtAljmxkzUTTpGQaB0sHfHFmIc0JzJ+kpp1Vcb6yXVDH6x9c0PG4ZLUn2b8THOrX1vrRx7uFrSa+62/Vuu/lczxkq4zvLZjaqLgVFAO5QWIZn5AD+MnxuWix9BrEFObqVqc/SXji9tyWK4QOyAhD+xMFDk2+yb+B7H46LdbbfMjllUGiWmkZKOmsqbWFvAFNg6Wdusk7X5nrVrfWmd9fKOuyj6gL0d1CyVlnlCvKrtJlh0qMCjUee7ymlZZeWNTX1ZmU4GhWF2Yqc93V0oj+QZlrrqjoCwb4pPn6G5aTT8O8UkrGiPxCc5ff0pHQUek4L2BT5sSz1XwsTS/z8dyTBok+EV4MhUwkgLeq0Y3zdw5MXh8jn/27G8LXtZPns9bqgcnpgasZSbzPFtjqM4c/PHcakAiT2/LoaG+g538c3v2usmJuWy3+NIsn0fC81ZKvYYO02eofNDgsiWPUsXnrBmT4I1Ikd6RioMxkxX7x1ioJ8pskVBJJSOqczRmaLr0bnCmvPUPpKP89F1GW4axYKUahS2ltQGxPivNrLFlKirLFTl/MVZfUld3d7E/jfYpVXxO20LZEIdekhmpD0nu+kPqDLExY9Sf6Wr0Bs49GVhizv+ziLteih61/PmeTo5vK5xvZRFbQS2jWpGcrgC9wr5JCbaW6BvS5s9O8BAcmWRwjEpv0iscRJfKEaprXO+r3xDin31rZ/uhTJVV25pq6kzGSkVWBZLXrYfXXv5ZNj80NIdLE0qtMNmy51etutooVwFvL8KqyaEfAl1oEXSBpvzoBOqmfw2+Ta4g7QR/b4mzXzg8Jc1m/DAZLFo1FHTCy5a3VJCHq6Zcq8eFl4GSyoMxH8wyUjJxI/RWFn2aex/g4+gK9EORMotBmVQf+jvBnUS70J2iDIBlxWBIRQ/Sy0hM7Udeit+T3wcfTw97aRG/OsmmF0ux8IEpKKkb4dS7iVFfBd5Io37QGJjwpRfJsuRZFlWlWVHjKfCqqsCT5M61mJrqLaiTu9+ZrUupTRNXm5dpLfnOf5J5boW+ImBfxNib1IM3TZZzHRKhmavnj0UG+9uv3vP1D2bpl75+Ej2mnQxftPvrd/FYaqhHqd+gUBY+7SimnifjW8V9gNTRMzAWL/UKxcvndpDDdjJmGT9m0PsS0Ps7Qe/xPBT8u5nASv+Wp80yVIsfNotXr4VyWzpypaOONp9vnZc83GMtxkpc7q2rw32mg06/RnT6I6LTH2GdBvjl0PnF9ClyTv8ZOaeX08XknF5G1eBzegFnTsD5I8HJpPUX4HQk0DmfRCcL9ubvERv7QZRF/bCPkjMZhF0EIavAGxhv4qEMMl5wKuOM764XHMsMJN7H4M80RLtA94x4nKgRZ2UEeGcCPJAAbxAdisODCfCQ6LI4vDkB7hLticPbEuA20fE4vINkg+joEyCX35DzEjn2ovWMHi2dGIA7q0dHTH+7cYHOQJ8knR0sPv14QPL00/Sp8KvhTyJIjrp53anlPsBnItBPCenHh5wETs4kyPjKhHEf+VZ4IAl+KA4PJsH3xOFtAhzn/tWEjpmnT/0zDj+dAA8kwO8i9Hl4MAF+O6HPw9swHOwQrGv6x2TN5fHZ1qWzGXyURCLPcgSRjMMTkYbr+DOacBV/RrOv/KgE+VpQBTmqQb6z5KTmzy3CeB4l82gT5vExXo44d0/4tgvy+uO3wgNJ8ENxeDAJflkc3pwE3xOHt2E42JY2ah9dSJfieMSAXSXwksBDUqHjl/yi6tQOH3nuO3q09uhtVvIE9QF/4xWao1+jFJQGe1smNp5BI74VH0PzeXwTUpqyVXzGiJ40TNy7aVNzf/WoCX5sbR5C+o6dLRJup3lUjA5URdp3tSybCgzvem57oL9yrGFk17PbG4bnB+5Yay3htjmfshjRQcfAnbzekRw3kUutIK/7vhUeSIIfisODSfA9cXibACc5ZULHI9C5JH4OYiN6oYRImsGZjZhemGJHCifyJg9O5q5avTF4YGB4vH8m0DRx7bX0qX0T/cE5d2dPs0s4S8iEeLYY9mIr1rDYDpzKEDOkRfETciEij3lxwtUGUeaMcs8qW3c1W1uYn1OU32oddg3USbRBTVW9s9BYVOZssZdu1q2iU7dsKw5UVEZKlXqFtCBX4WqoaDMXBcWyyqJSkyrfWVDqMdicxZU/XgSzIeSKv4JxB8m4G9AokQeGFyXA/QnwTPpcHN6UhP9mHB5KgOcSe8HDWxPgqSJNHN6O4eRe2eciDZ0GFrqScoHQEhOpxE4nnmurnBC4JBzGoqVMK32LO3Td5T4zGxpRj1/ij2QUz3oaQ5EjK4fbm57Mr6y1OyfdxUbnKCqt6HSleQcmtHSax9GxoBb7WGtdIOD1NPT3jJ6YY1kuOuQqat7XabeuQ0rrWL00uxlnZPEYYG99lE6DMTSTMXip/xLGhnPCWHatgkzDMTitSID7E+DLiExbBZkuwTOI7FoF2fFw2L2ov2A6iNfVBup0DI4uTYD7BTj4i2ge0xfgTQn4WzB9Ad6K4ULOHMJZ8IGxB8xCYKFMWOox2ZuRiRElpeTeiJj80iH/1oI1qxr29o7NNuxo7bOkmwpXpVnCllpndbi6lm6sU2V35Fh6LW3rH19329Cqoe6r+uu9fdpmzlQ7F6j11qwL1PmAN5xXLCb61CPo03hMb9A5IsNeQbbdcX1SJcD9CfBUItteQbaJ+G/G4aEEuITIvFeQeTfRyw5qA62lW0meGefjElyFFPCIUhJdh4gq35QHhXsHfHMpxwlV9Ee1Mr8Ul2OdnU/GfoN9/Sz6Fl1O54F91eJd9dvtK4uvTRJJq3hLyyhlzarQvkiPzV9GfnTb/WsROpePU6GrodDn8phms3v4+yPV/pKWCvyjyv/2iszl54u9W57xbmkVZ5/Xk3gD59mI7IYEmXZR3wb3J8HPxeFNSfDH4/BWHs7nswidMYGONiEni89m8pLPknCiLOkwqWykKpaSHT890RVLyqI7rXYhJyv6OfdKPCsb7/PxeJ+tfJ94X1xmIXeUjNgfSk1I1bJLjtEFh9IpkuEd264e/s/1wbUaOTqe7Cjd0ro9NNTReklTf+vwTft3PrOtlp0i9y4aBu5YNzoHj7F1VNy2ecG26cALqb3w1GXprmmCrUtiI8G6oR8WT7pIAry+L7N0ix/bOn8Vb+tqOx6PJ8TR2YrOmjQfWLchm5PkxT0ulyfBzjlyl/LkaJ911C1Yt4Q9cU98T2wjeyK+J/k5PQcyLLngXqBRSP4T3ZUipzXhcPDdUF3LoKfOoBc/XNPUNZPZP92X+6NLZ1aJT6SsSGke8O/oKO4oGFJFGq32lMDbqpEBLoAe2HuVq/UMGm4JzPlkkm+Jb6FuRU7agQ5ARNFIXYSeIfr2FfUG+hqVZWGYCy2Q+A1gos9QGc4lmmCiGanoQ+kb/Blq7B3QfIWMbxidhuiBnC+TOAinya7MVapGmkbQaWmmwvSjxW/gCUkB9j0ejz4VwwP6f41uoI5Sc8DP69ErF39J2l6GTlMf8Gf7chP0UYeYo4qUmvIV6PRtOnnZIh4bpv8ExDRG6jUSM71G8b7KEvx1An+dh+N+YMXNQQxE+iFv6nF/0Ab6QzeRNm+QNm+Qe+KIckf3o/OwBvGdVznD4uQ0y5hEm7eflN6ln3GclP5sdjftY8LM22/DY/ERIkuhjQJnEqGNF8UbShE8mM24XXZxnAT/czemcO21MVr8L3JuQO1EdehKHO+ySXHnnS6vKVQKj+BOj7M0WOGGRyWvB77ol6JxageMR14O0R4lR9v4e3704+R9b/TLZdy33P+Gv6ITSffAETWAXkcsxL5Ld6oHFiDUU9yEXn9dLH6d0MM4H9FnoL/3ST/vUz8nbXGuxo1ewnss+NI2RnX95N1jdw3ZXnzx5efI/RF4n8O/9yKTTcWk3z00MHm37eXnXnyREu4JPglrSYkjEP4bAMb5b+4KluTmKZQ5O112TzMEppGZDxX++OcBDZKMA95uITK9duSipQuDiPuCnJOSu1M6ZIM6emwlVy9cn4I96B/R9XQb/c/Y/pZ0kgr4ifvbY5oisw7KWfTlFJeGlEKVntEVFFXjspiOL0KIYlUip5zoF/Q8/RtyHkWu0fMGDuIskh7GR+Z8nhLb31SIs55jwo1dQzmD29ddmhoRN6WkNYrbNTP7m7sCUre3Y3cxEmu5c+miT7X/r6vX1uTfvyVQVRpoXfAUtxf0dwYqywO8zz0MQt4B487FN4JY6FfH6vB5ho7R4xS0HkyqXo5Mz4kn79Bxn0lQuujaGTF6Ie+4hW7NqVVcM5v5R5TdMO+bD4aKQ77IKM39jeTVIC5YpgSdWUGpKD2OihJubP3b3Ak6+fCG/oNr8AP560PV/S78sFh8+kIoN6ejinR8xAsz8wztXGxDHe1e3zovedROtJZW4nJXTQ3Zy5BDVEPu32TDUDMZvSlTn4nPlzJ1mXqHTqHPpM8OBgdD3Zs2hRe3b0PubciBZPfey32G9r71FrcXBTwe7jdUPMdyi5A/eYqsFyVtvzAPA2vuIgHn9wQnhy75FpxdAs6rBCeLNl+A00Bw+LX5aRJOJoxpic5lAp03CE72N/hpIDg8na+TcJbodCTQ+TQJR8gLAU49wflVQu4ohiOHRbvEzx6BzusER0EbLuAnnIDztyScbMqfQGeHgPMawVF9Q4YdCTifJOEs8RxOwPk4CWepr3UJOM8l4Sh5HFgfFDmf/ArbBdAaHfqKY3CJ3TcRMRCvmr7tvgl74e0TvXzpBoqqOlOiK8Y3UN6UXngfZaL3TeFOSvqKYJqhbCCccDkFnSQXVGjcN70R+sari9KRLOgFHOhEiUYK7et9F0hf2D1qmA7l5ZdqoGDSSf1yKfRoXk5BCS58n9Hz9Fpyv8b0L27YGL5xReObI75een0v+nnSzY2kbmGU37jJQcYr+jH0XUY5/8V4bWzCARoePhZ4YhyCdoJkJ75lBqRj7QkScU+TGTjwr8QS7umNCwi/TBQSkRHhswR7sLb/hceYWvxfxHYBm1iKmE/6038tySVOBc25UK6wBpzgq9bRj8lSKQWN6y2g2AdhTaRSyruxzwTrnU4h71V/xu8RyW/g9zmkDl4mxH24nhvF9QySz8B19Xu47oa6i7TPO4frBsDXk/f5L+C68K0G1AvImiyGuobUNZ9jeWZED6N+VMKff6j+5c5xgy9UPViHH7Zqb1EhlE1tjR3bguRRf1F/hRkX/E1W9GakRxrsy6j4b4SurN+RcSDUPotqSj0ufJ+QWgE4zdCnEvtvF34jhPfeFWmjU6YCtdJhlDSHWO/Q1vsyZh3BPleOMleRwzodldVr+z2x+7GHUSf0pwZaibEA7OnCN0L4uFrprDE7DKXZxhX7b8/4Ku2yFRbXqtYWi0Zp0uXlLCvd6nZsspZ5uvg78tFF4K8bFfPfBqWQL8Dk+GjVxDIoTRqSPpH+z1arO3174a054TCLUrjFmprjx3l+pMBPF88PK9zxiV8Gj/FmY36cq8pxuSfavK70QEW53VCiblxe8VbGW1OpDosnoqlVlxTlqVMr7vISu1AANIdAXirio4GonN/4GIgxMkVM7GObc44WCWux15W2mL0t7Cq/oyK9eszgKNYVmT8O1BWw1SWNZZ0NrdtCSlfmLUpFhcVc7MS8l8K4V8fmDt/3FZW++UwG0qS/NYuaYe5+DlYa60s34UWPc9kG4dMH4YiUnOtj7pa+/DGST39iX/6g7upKU+Fos6/NbslRrXTXNN3XYizSV6vy7dUSrR6cxdLnilxyZVmercFRYXTLM0251QHrzzRWVV5hrixPskOrWi4pVWbn6PjzO8xPC+EHNF9ldS4d1ibkM1lr/NMjYGtrVUBSZmb9Aw2edsdUvbsyXV3RazAhZCgqLCty1tpVXqendyDUsCmoYcUZR7IY2XKztUqv0cH6mUK70F3kDE8aP8PrQVegn4iysvB+HYPNAN5xcsaVHYdtBtg9pK0iDtsDbR8SZZA9MQbDffyE4KmSYLcRWE4c1kB8pocT9nvlN/2PBL/qjSScBP+D4PzqW+gs+R/hBDp/TsJZ2u/7Evh5LwlHkeQzXSTgfJzkwy3xXE9weH7+fxJOAj8JvuA7STjJ/kcM50wSjjKO05jAz/tJOCqI3XkfpQM5aC26DPsoclgVHTirhhwQvGP7jli0HX0H5wMko/icEdXQEnSQxP6tiD8DBdgyGmAQ32eNkvFdiw6IMqEuTtXCHvA81BWkLonVaSOpZy9CndoB7+dJ3S/DdQbq/0HqPoL/MNQnST2A65Q5ehA9JcqF+gR5/zTUp0l9irx3U6+iNvQB1N+VYX681BHURldD/UMyhlyoG0n9I4nwns6gq/F9AMkouQ/wOyqG9wGBf0TgHwlwd/Qy0a0iGtobCP02pKNeRMfJubATlROZtiAL9Qg6juP+RDdqd26+MR8KsqiV+SW4AC7JN4NnLHx3o52emCY3aHEu4BruA9CpM/iOHMN/5MqwPC1ms8NSJFGm5xcaym74h8YszxU5VxRpIi2k3dVCO5nQzpjQcIvdIs2MtTyrqZRnpItcsab4e196kHqcJj4rhHRMydZtR+nBY8fIu5dFiHpUtIvoCuxB5f1bdorQTr7dJmhXKLSDULxqfMETb7cG2hn4dvidZXZzG7TbSd51QLtf0OdIfsAE25FNNdW2aeDYzBQ9ODv7ox8RnBZof1p0KAFntHnd1LE1syIUiRw8yPdBDwPfb5LzdRwDw06UzSxdD5MivZ33n0pyM9Py0pl60fLaslxDdlKNfkCVUZqXKa2wZcrjv/jxjQHzD4ku+9/pazHFNMYtWl5XpjIokmqicVV6iTo9u8Iuy8a/MuTwKya/XdSD9EO83HXMYTGqE9O7fD68Z2+gu6mH6Mf579pERUShQJ9s8V9jdlO+3fQr8qS7LfnG+D+y528VpVN3ifaAPqpw+yWNtCX87lPngVuSZ7pd+CtKz80pMCYWQusY3UJdI9LwtBK1OykWr3J11ECx5RWrFFDoFkuZPYgLsChX4YJp3Um/Q+0XHf/3tJZV2FscUKpydIosKPQ7FUaLHxdLcW5mNi7U/wAiIhVMAAAAeNpjYGRgYGBk6re937Egnt/mKwM38wugCMOlC/yLYPS/L/+es/xjXsrAxMABxEAAAKl6D6AAAAB42mNgZGBgPvtfgYGBVfffl3+fWf4xpDAIMyABRgcAso8HwAB42m2UbWiNYRjH/9f1OPNyVt7n5bQY07bWmTYjW1vMEXa2M2/z1jTMRPugkCVfiCSNkg8+TKS1pEj5QkhLy7xEKEK+qeOlEG3UaC7/+znPYS2nfue6n+u67+e+n+t/Xbf0wf9JIrAZKWCYKgexVeOYQHK8y6jXhyjAM2yVIsyTIrsn+1DLWALf7ZW0IR/fMVG67Sl9peQMySYzyXiST2JkHYmSOW6+W8txPZnv4tKJOu8a4830b0ahrkS53qKNklGkg88vUCh5mC2XLKnr6MtAobeM9jH5xPjKwDbRZiOsc7BCb5NGLPeOYqNW2BPNw1LNsy+yBiLdaJE1doP7L5E+u6MxDGgucnQmpksXLcfyluzHXM21H4xHMIBpGLAj0ouIRFDitSLi/Bpx66zXX7OLsSsIySF+TymK5SNKNIkyeWmvJWl3pMe+SSvyZZwNSKt1c/9FqdzbL47XkiIywuXKn/PGfnOPR14GonIMBaooZqzR5V6zEGfsqRSjir4saccmskVjMknj9k6XI858l3FOM/0dco5rFGHqeiQgIZ323s/7f/BOWY+vRTTQIsDXYRB6FzP+6jCUOGr0E7/hdqBHGqdFjGvKMdbP+3/wosxnV6DDIFI6+ISc1Rmcn9ZhKKxVjdhXp8VgnBZOM2eHhVDu1XGuO9NJ1jP7w/vAnkhb1yc/yQWA7wNzCtwnJUH/tPl1XsI66vc+pOCchhSWpD0sF9GQwpKs98PyGZXy2fplB6LcY2EoinoZgfVyk1TxfFUIs47qgN991LKX759MGoaNYd3HeN5/Gjpig2yCVATPK9I6B+MW6ec3XGdNbyCsbe80cc+r2N9XUa1ZrMMQROdjnIaRqWWoVGAWaymqFchlHWWSWjKShKWdNdqO0SRbzqIgiDuayGqyjewhBwJf05BzunOtDXzp5xay2GnH3M6jDmHmKMw7qIJ30GPeNwT72cfD2cNd7Kci9tID5rKSeVtAprDOF5ApvFcqmf8afEG1XzOwE3bcXtlz223bLWHV/G/keKfttfPW+QeON0hLAAAAeNp1wU9kW2EAAPC8/y/JS973vfe9/+993xMzUVVVlUNVTU3sEJVDDxVVlUNVTxNTMxVVM1NVPVRNVExUTVUOMRUxUxVVEVNROVRVVdVE9RA1UVPbdYf9foHAP2KBgcBMoBw4pGyqn0pSs9QatUPVqBPqkrqnTbqPTtN5ukg3GZFxmXmmxJSZGvODOWfuWcwuswX2lH3kXC7Bpbgl7hO3yx1y51yHF3mfn+Bz/Be+JQDhmZASZoW8sC1UhIZwKdyJARGJMbFfzIgfxYp4HTSDY8F3wVLwMNgJ0aFYKBtaDR2EbsIoPBCeD2+Eq+HTcFeSpEHplbQhFaXbCPo7EVmIFCMXUT7qRnPRpWhDlmRT7pOH5LfyirwvV+UjuSm3gQTiYAiMgiRYBCtgE+yCKuiAX5CGUWjD53AIZuAczME8XIVbsATLsAaPYRc+KSFFV2LKgDKiTCpbSkkpKzXlWGkpPXVcnVAz6pyaU/Pqqnql3qk9xCKAXBRHw+gFSqF1VEC7qIK+owZqa6z2Uktr09q89kZb1spaTevpaX1aL/x3Sd/XD/S63tSv9Af9yQCGa8SNhDFuTBvvjaJRNupG27g2uiZtJsykuWhWzEvLt5LWlLVgLVnr1merYtWttvXTerQlG9uD9ridttftE4d3Mk7FqTlHTsNpOefOtdNxus6jS7t97qibddfcPffMEz3by3oFb8cre1XvyGt6be/K62IW6ziOR3AKz+DXeAVv4hLew1/xN1zHTXyGL/ANvsMP+DdhiUQQ8Uk/GSZjZJJkSZ5skz1SJcfkjNySnh/3p/w5/4O/77f83h/wYL4eAAB42mNgZGBg9GNwZ2BhiGJgZwDykAALAyMAF+UBAwAAAHjavZPLLgRBFIb/nnKbmAgiIrOQXoiFMMY1IjauQUgkhHWjmYmhR+uJEEsRS89g7UFc9hJbD2Fh5a/TR08kLrOSSld/5z+Xqq7TBaADbzBw6tIAXvnE7KCLVswpZPCubDDjNCjXoddZVK5H1jlSbkCPc63ciCvnTrkJ3alh5TR5TbkZo6nP3Az5VrkFU6ln5VZ0mXblNmRMn/I9Os248gPyZkX5EU3mQvmJ8ZcxvxhkzQ1mEaCMM4QoYh8FRHAxjDyGMEaag4cStQBHtFZpeYxysUJtFznRAlIRe3x26I34jqMDai7tApUTko0owSeFnI9RoW3J+sqyfsDZxalwxOFLnTLfIQ6lyklSfY9aQPXvPU4zysO5+udpbUvFJfptpt33TzHulygXm6JWdzHE+vas8jVWqC2/mj3wJfv7L+0ne1R29SysbpUwOet9ObtIKvoSF5E8ki+rhjiQLsQd++s8f/f/7i1IX8uYxCDHqYwc9WrOoWbk+L22v4P/luPzjyxRq+V/2aKyzdOyMVHSxw2uW6G1LP2w92hCfCPcxwhGOdtOf96vccbYfF/qVrhChV1YSGquJ3fEdq30AW1zuLp42m2UR2wbVxRF75VlSRTVZau4926ZRWzuooq73HuRKXJIjkXOSENSzS29J0hgILsEaZskSK9IBdJ7QcoiiyyySkcWThbZODN/PskIIBc89793/7uPQ5AoA65d/fena1ewDyVe7LfeUMYyTsM0lGM6KlCJKjhQDSdqUIs61KMBjWhCM2ZgJlrQija0YxZmYw7mYh7mYwEWYhEWYwmWYhmWYwVWYhVWYw3WogPr4IIbHnjRCR/8CCCIENZjAzZiEzZjC7aiC2F0owe96MM2bMcO7MQu7MYe9GOvuft+HMBBHMJhHMFRHMNxnMBJnMJpnMEAziLCcjyKm3Az3sT9+Bm34B7ciQfwOB7jdNyBH3AjrrCClbibVbgN7+JHOvAgnsDfuIp/8Aiewsf4EE9jEFHcixg+hYKP8Am+xGf4HF/gF8TxDb7C13gGCfyF+/A9vsV3SOI3/IHbcQ4qhpBGChoego4RDMNABjlkMYox/IpxTGIC53ERF/AqHsZlXMJ1uB6/40+8hmfxHF5nNZ2sYS3rWM8GNrKJzZzBmWxhK9vwPF5gO17GK3iPs/AiXsL7nI0b8A5uxZP4gHM4F2/hbc7DG5zPBVzIRbiLi7mES7mMy7mCK7mKq7mGa9nBdXTRTQ+97KSPfgYYZIjruYEbuYmbuYVb2cUwu9nDXvZxG7dzB3dyF3dzD/u5l/u4nwd4kId4mEd4lMd4nCd4kqd4mmc4wLOMcJBRxqgwzgSTVHmOQ0wxTY06hzlCgxlmmeMoxzjOCU7yPC/wIi/xcmVOU10uV1AyZLPLJdljM+yR9Er6JIXf3RvqtegxB0i6JT2SXslOSZ+kXzIgGZQMSXZJhm26XdVxNZEzlFgkk3RE4qq5g8cVrB3J6VnFUEYVI6PEpLWvIq1quaxSkVGiuiar3h6bPk95b87Q7UM4JEb53V6fva/b55J0V+makk2qRsyRHdOFyMiWT9IvGZAMSoYkuxzmCEVNJLPJmmzSUKTOOOPqaF7XZMzdNXkQ93x93Rb7wvYjNemW9Eh6JTsdk4qhdwxrubS1rC3MZYWoFolCOuJ6zpDKTLZ9GXXc9okFbCnWsI2aKgfaGRlVi4sMIawMS8gMS9oZtrIyhM/KED47Q0g7QxhFhlAiwwwz7DG2ssZYSoyxhBwjpD1GGMUYS7Waew3EjUg0q+ragG22ju1izVKdNiuudMNML9VoNZcpVW+Zki1WEvapAf+rT5lfqLeJiaUa4gOXaFQlUhPDSbcr6EyaNLeJRjKKU9Gs34nU6YKuG44YipZS4llxrBdHQzxK61ydSRWcg5HoUPHYMGhGDSnZwtVGWSherrMqSnG2OBbbzsFcKqXYuimRU1PmF59IFezNhVLxirCllLSenWoTpaKtMiJ7w2acHosqmvWPECtZS+nRlP3EPN6QFL5AXgSl8HvywitFIO8J5D0hV1648yJ/KyRved2uvPDkRb7lCeRF8D9aXWY2AAFWql8iAAA=')
    format('woff');font-weight:400;font-style:italic}@font-face{font-family:Amazon Ember;src:url('data:application/x-font-woff;base64,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')
    format('woff');font-weight:700;font-style:normal}@font-face{font-family:Amazon Ember;src:url('data:application/x-font-woff;base64,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')
    format('woff');font-weight:300;font-style:normal}.awsui{font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;position:relative;z-index:1}.awsui h1,.awsui h2,.awsui h3,.awsui h4,.awsui h5,.awsui p{font-family:inherit;font-weight:400;color:inherit;text-decoration:none;margin:0;padding:0}.awsui h1{font-size:var(--font-size-5);line-height:var(--line-height-5);padding:5px 0}.awsui h2,.awsui h3{font-size:var(--font-size-3);line-height:var(--line-height-3);padding:5px 0}.awsui h4,.awsui h5{font-size:15px;line-height:var(--line-height-3);padding:5px 0}.awsui b,.awsui h2,.awsui h4,.awsui strong{font-weight:700}.awsui p{font-size:var(--font-size-1);line-height:var(--line-height-3);padding:5px 0}.awsui small{display:inline-block;font-size:var(--font-size-0);line-height:var(--line-height-3);color:#687078;color:var(--awsui-color-text-small, #687078)}.awsui small a{font-weight:700;letter-spacing:0.01em}.awsui a{color:#0073bb;color:var(--awsui-color-text-link-default, #0073bb);text-decoration:none}.awsui a:active,.awsui a:focus,.awsui a:hover{text-decoration:underline}.awsui a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:2px}.awsui a.awsui-text-info-link{font-size:var(--font-size-0);line-height:15px;font-weight:700;letter-spacing:0.01em}.awsui .awsui-text-secondary{color:#545b64;color:var(--awsui-color-text-body-secondary, #545b64)}.awsui .awsui-text-large{font-size:var(--font-size-6);line-height:var(--line-height-6);font-weight:300;padding-top:0;padding-bottom:10px}.awsui ol,.awsui ul{padding-left:20px;margin:5px 0;list-style-position:outside}.awsui ol>li ol,.awsui ol>li ul,.awsui ul>li ol,.awsui ul>li ul{margin:0}.awsui ol.awsui-list-unstyled,.awsui ul.awsui-list-unstyled{list-style:none;padding-left:0}.awsui ol.awsui-list-unstyled>li ol,.awsui ol.awsui-list-unstyled>li ul,.awsui ul.awsui-list-unstyled>li ol,.awsui ul.awsui-list-unstyled>li ul{padding-left:40px}.awsui ol.awsui-list-unstyled>li ol.awsui-list-unstyled,.awsui ol.awsui-list-unstyled>li ul.awsui-list-unstyled,.awsui ul.awsui-list-unstyled>li ol.awsui-list-unstyled,.awsui ul.awsui-list-unstyled>li ul.awsui-list-unstyled{padding-left:20px}.awsui li+li,.awsui li+ol,.awsui li+ul,.awsui li>ol,.awsui li>ul,.awsui ol+ol,.awsui ul+ul{padding-top:5px}.awsui code,.awsui kbd,.awsui pre,.awsui samp{font-family:Monaco, Menlo, Consolas, Courier Prime, Courier, Courier New, monospace}.awsui .awsui-util-header-counter{color:#687078;color:var(--awsui-color-text-small, #687078);font-weight:400}.awsui .awsui-grid *{-webkit-box-sizing:border-box;box-sizing:border-box}.awsui .awsui-grid .awsui-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui .awsui-grid .awsui-row:not(.awsui-util-no-gutters){margin:-10px}.awsui .awsui-grid .awsui-row:not(.awsui-util-no-gutters) [class*='col-']{padding:10px}.awsui .awsui-grid [class*='col-']{position:relative}.awsui .awsui-grid .col-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.awsui .awsui-grid .col-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.awsui .awsui-grid .col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.awsui .awsui-grid .col-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.awsui .awsui-grid .col-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.awsui .awsui-grid .col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.awsui .awsui-grid .col-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.awsui .awsui-grid .col-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.awsui .awsui-grid .col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.awsui .awsui-grid .col-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.awsui .awsui-grid .col-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.awsui .awsui-grid .col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.awsui .awsui-grid .col-xxxs-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.awsui .awsui-grid .col-xxxs-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.awsui .awsui-grid .col-xxxs-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.awsui .awsui-grid .col-xxxs-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.awsui .awsui-grid .col-xxxs-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.awsui .awsui-grid .col-xxxs-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.awsui .awsui-grid .col-xxxs-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.awsui .awsui-grid .col-xxxs-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.awsui .awsui-grid .col-xxxs-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.awsui .awsui-grid .col-xxxs-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.awsui .awsui-grid .col-xxxs-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.awsui .awsui-grid .col-xxxs-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.awsui .awsui-grid .pull-xxxs-0{right:auto}.awsui .awsui-grid .pull-xxxs-1{right:8.3333333333%}.awsui .awsui-grid .pull-xxxs-2{right:16.6666666667%}.awsui .awsui-grid .pull-xxxs-3{right:25%}.awsui .awsui-grid .pull-xxxs-4{right:33.3333333333%}.awsui .awsui-grid .pull-xxxs-5{right:41.6666666667%}.awsui .awsui-grid .pull-xxxs-6{right:50%}.awsui .awsui-grid .pull-xxxs-7{right:58.3333333333%}.awsui .awsui-grid .pull-xxxs-8{right:66.6666666667%}.awsui .awsui-grid .pull-xxxs-9{right:75%}.awsui .awsui-grid .pull-xxxs-10{right:83.3333333333%}.awsui .awsui-grid .pull-xxxs-11{right:91.6666666667%}.awsui .awsui-grid .pull-xxxs-12{right:100%}.awsui .awsui-grid .push-xxxs-0{left:auto}.awsui .awsui-grid .push-xxxs-1{left:8.3333333333%}.awsui .awsui-grid .push-xxxs-2{left:16.6666666667%}.awsui .awsui-grid .push-xxxs-3{left:25%}.awsui .awsui-grid .push-xxxs-4{left:33.3333333333%}.awsui .awsui-grid .push-xxxs-5{left:41.6666666667%}.awsui .awsui-grid .push-xxxs-6{left:50%}.awsui .awsui-grid .push-xxxs-7{left:58.3333333333%}.awsui .awsui-grid .push-xxxs-8{left:66.6666666667%}.awsui .awsui-grid .push-xxxs-9{left:75%}.awsui .awsui-grid .push-xxxs-10{left:83.3333333333%}.awsui .awsui-grid .push-xxxs-11{left:91.6666666667%}.awsui .awsui-grid .push-xxxs-12{left:100%}.awsui .awsui-grid .offset-xxxs-1{margin-left:8.3333333333%}.awsui .awsui-grid .offset-xxxs-2{margin-left:16.6666666667%}.awsui .awsui-grid .offset-xxxs-3{margin-left:25%}.awsui .awsui-grid .offset-xxxs-4{margin-left:33.3333333333%}.awsui .awsui-grid .offset-xxxs-5{margin-left:41.6666666667%}.awsui .awsui-grid .offset-xxxs-6{margin-left:50%}.awsui .awsui-grid .offset-xxxs-7{margin-left:58.3333333333%}.awsui .awsui-grid .offset-xxxs-8{margin-left:66.6666666667%}.awsui .awsui-grid .offset-xxxs-9{margin-left:75%}.awsui .awsui-grid .offset-xxxs-10{margin-left:83.3333333333%}.awsui .awsui-grid .offset-xxxs-11{margin-left:91.6666666667%}@media (min-width: 577px){.awsui .awsui-grid .col-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.awsui .awsui-grid .col-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.awsui .awsui-grid .col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.awsui .awsui-grid .col-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.awsui .awsui-grid .col-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.awsui .awsui-grid .col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.awsui .awsui-grid .col-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.awsui .awsui-grid .col-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.awsui .awsui-grid .col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.awsui .awsui-grid .col-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.awsui .awsui-grid .col-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.awsui .awsui-grid .col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.awsui .awsui-grid .col-xxs-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.awsui .awsui-grid .col-xxs-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.awsui .awsui-grid .col-xxs-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.awsui .awsui-grid .col-xxs-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.awsui .awsui-grid .col-xxs-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.awsui .awsui-grid .col-xxs-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.awsui .awsui-grid .col-xxs-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.awsui .awsui-grid .col-xxs-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.awsui .awsui-grid .col-xxs-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.awsui .awsui-grid .col-xxs-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.awsui .awsui-grid .col-xxs-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.awsui .awsui-grid .col-xxs-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.awsui .awsui-grid .pull-xxs-0{right:auto}.awsui .awsui-grid .pull-xxs-1{right:8.3333333333%}.awsui .awsui-grid .pull-xxs-2{right:16.6666666667%}.awsui .awsui-grid .pull-xxs-3{right:25%}.awsui .awsui-grid .pull-xxs-4{right:33.3333333333%}.awsui .awsui-grid .pull-xxs-5{right:41.6666666667%}.awsui .awsui-grid .pull-xxs-6{right:50%}.awsui .awsui-grid .pull-xxs-7{right:58.3333333333%}.awsui .awsui-grid .pull-xxs-8{right:66.6666666667%}.awsui .awsui-grid .pull-xxs-9{right:75%}.awsui .awsui-grid .pull-xxs-10{right:83.3333333333%}.awsui .awsui-grid .pull-xxs-11{right:91.6666666667%}.awsui .awsui-grid .pull-xxs-12{right:100%}.awsui .awsui-grid .push-xxs-0{left:auto}.awsui .awsui-grid .push-xxs-1{left:8.3333333333%}.awsui .awsui-grid .push-xxs-2{left:16.6666666667%}.awsui .awsui-grid .push-xxs-3{left:25%}.awsui .awsui-grid .push-xxs-4{left:33.3333333333%}.awsui .awsui-grid .push-xxs-5{left:41.6666666667%}.awsui .awsui-grid .push-xxs-6{left:50%}.awsui .awsui-grid .push-xxs-7{left:58.3333333333%}.awsui .awsui-grid .push-xxs-8{left:66.6666666667%}.awsui .awsui-grid .push-xxs-9{left:75%}.awsui .awsui-grid .push-xxs-10{left:83.3333333333%}.awsui .awsui-grid .push-xxs-11{left:91.6666666667%}.awsui .awsui-grid .push-xxs-12{left:100%}.awsui .awsui-grid .offset-xxs-0{margin-left:0}.awsui .awsui-grid .offset-xxs-1{margin-left:8.3333333333%}.awsui .awsui-grid .offset-xxs-2{margin-left:16.6666666667%}.awsui .awsui-grid .offset-xxs-3{margin-left:25%}.awsui .awsui-grid .offset-xxs-4{margin-left:33.3333333333%}.awsui .awsui-grid .offset-xxs-5{margin-left:41.6666666667%}.awsui .awsui-grid .offset-xxs-6{margin-left:50%}.awsui .awsui-grid .offset-xxs-7{margin-left:58.3333333333%}.awsui .awsui-grid .offset-xxs-8{margin-left:66.6666666667%}.awsui .awsui-grid .offset-xxs-9{margin-left:75%}.awsui .awsui-grid .offset-xxs-10{margin-left:83.3333333333%}.awsui .awsui-grid .offset-xxs-11{margin-left:91.6666666667%}}@media (min-width: 769px){.awsui .awsui-grid .col-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.awsui .awsui-grid .col-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.awsui .awsui-grid .col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.awsui .awsui-grid .col-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.awsui .awsui-grid .col-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.awsui .awsui-grid .col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.awsui .awsui-grid .col-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.awsui .awsui-grid .col-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.awsui .awsui-grid .col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.awsui .awsui-grid .col-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.awsui .awsui-grid .col-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.awsui .awsui-grid .col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.awsui .awsui-grid .col-xs-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.awsui .awsui-grid .col-xs-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.awsui .awsui-grid .col-xs-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.awsui .awsui-grid .col-xs-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.awsui .awsui-grid .col-xs-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.awsui .awsui-grid .col-xs-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.awsui .awsui-grid .col-xs-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.awsui .awsui-grid .col-xs-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.awsui .awsui-grid .col-xs-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.awsui .awsui-grid .col-xs-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.awsui .awsui-grid .col-xs-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.awsui .awsui-grid .col-xs-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.awsui .awsui-grid .pull-xs-0{right:auto}.awsui .awsui-grid .pull-xs-1{right:8.3333333333%}.awsui .awsui-grid .pull-xs-2{right:16.6666666667%}.awsui .awsui-grid .pull-xs-3{right:25%}.awsui .awsui-grid .pull-xs-4{right:33.3333333333%}.awsui .awsui-grid .pull-xs-5{right:41.6666666667%}.awsui .awsui-grid .pull-xs-6{right:50%}.awsui .awsui-grid .pull-xs-7{right:58.3333333333%}.awsui .awsui-grid .pull-xs-8{right:66.6666666667%}.awsui .awsui-grid .pull-xs-9{right:75%}.awsui .awsui-grid .pull-xs-10{right:83.3333333333%}.awsui .awsui-grid .pull-xs-11{right:91.6666666667%}.awsui .awsui-grid .pull-xs-12{right:100%}.awsui .awsui-grid .push-xs-0{left:auto}.awsui .awsui-grid .push-xs-1{left:8.3333333333%}.awsui .awsui-grid .push-xs-2{left:16.6666666667%}.awsui .awsui-grid .push-xs-3{left:25%}.awsui .awsui-grid .push-xs-4{left:33.3333333333%}.awsui .awsui-grid .push-xs-5{left:41.6666666667%}.awsui .awsui-grid .push-xs-6{left:50%}.awsui .awsui-grid .push-xs-7{left:58.3333333333%}.awsui .awsui-grid .push-xs-8{left:66.6666666667%}.awsui .awsui-grid .push-xs-9{left:75%}.awsui .awsui-grid .push-xs-10{left:83.3333333333%}.awsui .awsui-grid .push-xs-11{left:91.6666666667%}.awsui .awsui-grid .push-xs-12{left:100%}.awsui .awsui-grid .offset-xs-0{margin-left:0}.awsui .awsui-grid .offset-xs-1{margin-left:8.3333333333%}.awsui .awsui-grid .offset-xs-2{margin-left:16.6666666667%}.awsui .awsui-grid .offset-xs-3{margin-left:25%}.awsui .awsui-grid .offset-xs-4{margin-left:33.3333333333%}.awsui .awsui-grid .offset-xs-5{margin-left:41.6666666667%}.awsui .awsui-grid .offset-xs-6{margin-left:50%}.awsui .awsui-grid .offset-xs-7{margin-left:58.3333333333%}.awsui .awsui-grid .offset-xs-8{margin-left:66.6666666667%}.awsui .awsui-grid .offset-xs-9{margin-left:75%}.awsui .awsui-grid .offset-xs-10{margin-left:83.3333333333%}.awsui .awsui-grid .offset-xs-11{margin-left:91.6666666667%}}@media (min-width: 993px){.awsui .awsui-grid .col-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.awsui .awsui-grid .col-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.awsui .awsui-grid .col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.awsui .awsui-grid .col-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.awsui .awsui-grid .col-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.awsui .awsui-grid .col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.awsui .awsui-grid .col-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.awsui .awsui-grid .col-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.awsui .awsui-grid .col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.awsui .awsui-grid .col-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.awsui .awsui-grid .col-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.awsui .awsui-grid .col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.awsui .awsui-grid .col-s-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.awsui .awsui-grid .col-s-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.awsui .awsui-grid .col-s-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.awsui .awsui-grid .col-s-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.awsui .awsui-grid .col-s-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.awsui .awsui-grid .col-s-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.awsui .awsui-grid .col-s-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.awsui .awsui-grid .col-s-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.awsui .awsui-grid .col-s-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.awsui .awsui-grid .col-s-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.awsui .awsui-grid .col-s-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.awsui .awsui-grid .col-s-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.awsui .awsui-grid .pull-s-0{right:auto}.awsui .awsui-grid .pull-s-1{right:8.3333333333%}.awsui .awsui-grid .pull-s-2{right:16.6666666667%}.awsui .awsui-grid .pull-s-3{right:25%}.awsui .awsui-grid .pull-s-4{right:33.3333333333%}.awsui .awsui-grid .pull-s-5{right:41.6666666667%}.awsui .awsui-grid .pull-s-6{right:50%}.awsui .awsui-grid .pull-s-7{right:58.3333333333%}.awsui .awsui-grid .pull-s-8{right:66.6666666667%}.awsui .awsui-grid .pull-s-9{right:75%}.awsui .awsui-grid .pull-s-10{right:83.3333333333%}.awsui .awsui-grid .pull-s-11{right:91.6666666667%}.awsui .awsui-grid .pull-s-12{right:100%}.awsui .awsui-grid .push-s-0{left:auto}.awsui .awsui-grid .push-s-1{left:8.3333333333%}.awsui .awsui-grid .push-s-2{left:16.6666666667%}.awsui .awsui-grid .push-s-3{left:25%}.awsui .awsui-grid .push-s-4{left:33.3333333333%}.awsui .awsui-grid .push-s-5{left:41.6666666667%}.awsui .awsui-grid .push-s-6{left:50%}.awsui .awsui-grid .push-s-7{left:58.3333333333%}.awsui .awsui-grid .push-s-8{left:66.6666666667%}.awsui .awsui-grid .push-s-9{left:75%}.awsui .awsui-grid .push-s-10{left:83.3333333333%}.awsui .awsui-grid .push-s-11{left:91.6666666667%}.awsui .awsui-grid .push-s-12{left:100%}.awsui .awsui-grid .offset-s-0{margin-left:0}.awsui .awsui-grid .offset-s-1{margin-left:8.3333333333%}.awsui .awsui-grid .offset-s-2{margin-left:16.6666666667%}.awsui .awsui-grid .offset-s-3{margin-left:25%}.awsui .awsui-grid .offset-s-4{margin-left:33.3333333333%}.awsui .awsui-grid .offset-s-5{margin-left:41.6666666667%}.awsui .awsui-grid .offset-s-6{margin-left:50%}.awsui .awsui-grid .offset-s-7{margin-left:58.3333333333%}.awsui .awsui-grid .offset-s-8{margin-left:66.6666666667%}.awsui .awsui-grid .offset-s-9{margin-left:75%}.awsui .awsui-grid .offset-s-10{margin-left:83.3333333333%}.awsui .awsui-grid .offset-s-11{margin-left:91.6666666667%}}@media (min-width: 1201px){.awsui .awsui-grid .col-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.awsui .awsui-grid .col-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.awsui .awsui-grid .col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.awsui .awsui-grid .col-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.awsui .awsui-grid .col-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.awsui .awsui-grid .col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.awsui .awsui-grid .col-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.awsui .awsui-grid .col-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.awsui .awsui-grid .col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.awsui .awsui-grid .col-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.awsui .awsui-grid .col-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.awsui .awsui-grid .col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.awsui .awsui-grid .col-m-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.awsui .awsui-grid .col-m-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.awsui .awsui-grid .col-m-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.awsui .awsui-grid .col-m-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.awsui .awsui-grid .col-m-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.awsui .awsui-grid .col-m-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.awsui .awsui-grid .col-m-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.awsui .awsui-grid .col-m-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.awsui .awsui-grid .col-m-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.awsui .awsui-grid .col-m-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.awsui .awsui-grid .col-m-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.awsui .awsui-grid .col-m-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.awsui .awsui-grid .pull-m-0{right:auto}.awsui .awsui-grid .pull-m-1{right:8.3333333333%}.awsui .awsui-grid .pull-m-2{right:16.6666666667%}.awsui .awsui-grid .pull-m-3{right:25%}.awsui .awsui-grid .pull-m-4{right:33.3333333333%}.awsui .awsui-grid .pull-m-5{right:41.6666666667%}.awsui .awsui-grid .pull-m-6{right:50%}.awsui .awsui-grid .pull-m-7{right:58.3333333333%}.awsui .awsui-grid .pull-m-8{right:66.6666666667%}.awsui .awsui-grid .pull-m-9{right:75%}.awsui .awsui-grid .pull-m-10{right:83.3333333333%}.awsui .awsui-grid .pull-m-11{right:91.6666666667%}.awsui .awsui-grid .pull-m-12{right:100%}.awsui .awsui-grid .push-m-0{left:auto}.awsui .awsui-grid .push-m-1{left:8.3333333333%}.awsui .awsui-grid .push-m-2{left:16.6666666667%}.awsui .awsui-grid .push-m-3{left:25%}.awsui .awsui-grid .push-m-4{left:33.3333333333%}.awsui .awsui-grid .push-m-5{left:41.6666666667%}.awsui .awsui-grid .push-m-6{left:50%}.awsui .awsui-grid .push-m-7{left:58.3333333333%}.awsui .awsui-grid .push-m-8{left:66.6666666667%}.awsui .awsui-grid .push-m-9{left:75%}.awsui .awsui-grid .push-m-10{left:83.3333333333%}.awsui .awsui-grid .push-m-11{left:91.6666666667%}.awsui .awsui-grid .push-m-12{left:100%}.awsui .awsui-grid .offset-m-0{margin-left:0}.awsui .awsui-grid .offset-m-1{margin-left:8.3333333333%}.awsui .awsui-grid .offset-m-2{margin-left:16.6666666667%}.awsui .awsui-grid .offset-m-3{margin-left:25%}.awsui .awsui-grid .offset-m-4{margin-left:33.3333333333%}.awsui .awsui-grid .offset-m-5{margin-left:41.6666666667%}.awsui .awsui-grid .offset-m-6{margin-left:50%}.awsui .awsui-grid .offset-m-7{margin-left:58.3333333333%}.awsui .awsui-grid .offset-m-8{margin-left:66.6666666667%}.awsui .awsui-grid .offset-m-9{margin-left:75%}.awsui .awsui-grid .offset-m-10{margin-left:83.3333333333%}.awsui .awsui-grid .offset-m-11{margin-left:91.6666666667%}}@media (min-width: 1401px){.awsui .awsui-grid .col-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.awsui .awsui-grid .col-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.awsui .awsui-grid .col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.awsui .awsui-grid .col-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.awsui .awsui-grid .col-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.awsui .awsui-grid .col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.awsui .awsui-grid .col-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.awsui .awsui-grid .col-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.awsui .awsui-grid .col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.awsui .awsui-grid .col-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.awsui .awsui-grid .col-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.awsui .awsui-grid .col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.awsui .awsui-grid .col-l-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.awsui .awsui-grid .col-l-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.awsui .awsui-grid .col-l-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.awsui .awsui-grid .col-l-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.awsui .awsui-grid .col-l-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.awsui .awsui-grid .col-l-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.awsui .awsui-grid .col-l-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.awsui .awsui-grid .col-l-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.awsui .awsui-grid .col-l-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.awsui .awsui-grid .col-l-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.awsui .awsui-grid .col-l-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.awsui .awsui-grid .col-l-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.awsui .awsui-grid .pull-l-0{right:auto}.awsui .awsui-grid .pull-l-1{right:8.3333333333%}.awsui .awsui-grid .pull-l-2{right:16.6666666667%}.awsui .awsui-grid .pull-l-3{right:25%}.awsui .awsui-grid .pull-l-4{right:33.3333333333%}.awsui .awsui-grid .pull-l-5{right:41.6666666667%}.awsui .awsui-grid .pull-l-6{right:50%}.awsui .awsui-grid .pull-l-7{right:58.3333333333%}.awsui .awsui-grid .pull-l-8{right:66.6666666667%}.awsui .awsui-grid .pull-l-9{right:75%}.awsui .awsui-grid .pull-l-10{right:83.3333333333%}.awsui .awsui-grid .pull-l-11{right:91.6666666667%}.awsui .awsui-grid .pull-l-12{right:100%}.awsui .awsui-grid .push-l-0{left:auto}.awsui .awsui-grid .push-l-1{left:8.3333333333%}.awsui .awsui-grid .push-l-2{left:16.6666666667%}.awsui .awsui-grid .push-l-3{left:25%}.awsui .awsui-grid .push-l-4{left:33.3333333333%}.awsui .awsui-grid .push-l-5{left:41.6666666667%}.awsui .awsui-grid .push-l-6{left:50%}.awsui .awsui-grid .push-l-7{left:58.3333333333%}.awsui .awsui-grid .push-l-8{left:66.6666666667%}.awsui .awsui-grid .push-l-9{left:75%}.awsui .awsui-grid .push-l-10{left:83.3333333333%}.awsui .awsui-grid .push-l-11{left:91.6666666667%}.awsui .awsui-grid .push-l-12{left:100%}.awsui .awsui-grid .offset-l-0{margin-left:0}.awsui .awsui-grid .offset-l-1{margin-left:8.3333333333%}.awsui .awsui-grid .offset-l-2{margin-left:16.6666666667%}.awsui .awsui-grid .offset-l-3{margin-left:25%}.awsui .awsui-grid .offset-l-4{margin-left:33.3333333333%}.awsui .awsui-grid .offset-l-5{margin-left:41.6666666667%}.awsui .awsui-grid .offset-l-6{margin-left:50%}.awsui .awsui-grid .offset-l-7{margin-left:58.3333333333%}.awsui .awsui-grid .offset-l-8{margin-left:66.6666666667%}.awsui .awsui-grid .offset-l-9{margin-left:75%}.awsui .awsui-grid .offset-l-10{margin-left:83.3333333333%}.awsui .awsui-grid .offset-l-11{margin-left:91.6666666667%}}@media (min-width: 1921px){.awsui .awsui-grid .col-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.awsui .awsui-grid .col-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.awsui .awsui-grid .col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.awsui .awsui-grid .col-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.awsui .awsui-grid .col-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.awsui .awsui-grid .col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.awsui .awsui-grid .col-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.awsui .awsui-grid .col-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.awsui .awsui-grid .col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.awsui .awsui-grid .col-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.awsui .awsui-grid .col-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.awsui .awsui-grid .col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.awsui .awsui-grid .col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.awsui .awsui-grid .col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.awsui .awsui-grid .col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.awsui .awsui-grid .col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.awsui .awsui-grid .col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.awsui .awsui-grid .col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.awsui .awsui-grid .col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.awsui .awsui-grid .col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.awsui .awsui-grid .col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.awsui .awsui-grid .col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.awsui .awsui-grid .col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.awsui .awsui-grid .col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.awsui .awsui-grid .pull-xl-0{right:auto}.awsui .awsui-grid .pull-xl-1{right:8.3333333333%}.awsui .awsui-grid .pull-xl-2{right:16.6666666667%}.awsui .awsui-grid .pull-xl-3{right:25%}.awsui .awsui-grid .pull-xl-4{right:33.3333333333%}.awsui .awsui-grid .pull-xl-5{right:41.6666666667%}.awsui .awsui-grid .pull-xl-6{right:50%}.awsui .awsui-grid .pull-xl-7{right:58.3333333333%}.awsui .awsui-grid .pull-xl-8{right:66.6666666667%}.awsui .awsui-grid .pull-xl-9{right:75%}.awsui .awsui-grid .pull-xl-10{right:83.3333333333%}.awsui .awsui-grid .pull-xl-11{right:91.6666666667%}.awsui .awsui-grid .pull-xl-12{right:100%}.awsui .awsui-grid .push-xl-0{left:auto}.awsui .awsui-grid .push-xl-1{left:8.3333333333%}.awsui .awsui-grid .push-xl-2{left:16.6666666667%}.awsui .awsui-grid .push-xl-3{left:25%}.awsui .awsui-grid .push-xl-4{left:33.3333333333%}.awsui .awsui-grid .push-xl-5{left:41.6666666667%}.awsui .awsui-grid .push-xl-6{left:50%}.awsui .awsui-grid .push-xl-7{left:58.3333333333%}.awsui .awsui-grid .push-xl-8{left:66.6666666667%}.awsui .awsui-grid .push-xl-9{left:75%}.awsui .awsui-grid .push-xl-10{left:83.3333333333%}.awsui .awsui-grid .push-xl-11{left:91.6666666667%}.awsui .awsui-grid .push-xl-12{left:100%}.awsui .awsui-grid .offset-xl-0{margin-left:0}.awsui .awsui-grid .offset-xl-1{margin-left:8.3333333333%}.awsui .awsui-grid .offset-xl-2{margin-left:16.6666666667%}.awsui .awsui-grid .offset-xl-3{margin-left:25%}.awsui .awsui-grid .offset-xl-4{margin-left:33.3333333333%}.awsui .awsui-grid .offset-xl-5{margin-left:41.6666666667%}.awsui .awsui-grid .offset-xl-6{margin-left:50%}.awsui .awsui-grid .offset-xl-7{margin-left:58.3333333333%}.awsui .awsui-grid .offset-xl-8{margin-left:66.6666666667%}.awsui .awsui-grid .offset-xl-9{margin-left:75%}.awsui .awsui-grid .offset-xl-10{margin-left:83.3333333333%}.awsui .awsui-grid .offset-xl-11{margin-left:91.6666666667%}}.awsui .awsui-grid .awsui-row:not(.awsui-util-no-gutters)+.awsui-row{margin-top:10px}.awsui .awsui-util-action-stripe,.awsui .awsui-util-action-stripe-large{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui .awsui-util-action-stripe-large .awsui-util-action-stripe-title,.awsui .awsui-util-action-stripe .awsui-util-action-stripe-title{padding-right:10px;word-wrap:break-word;max-width:100%;overflow:hidden;color:#16191f;color:var(--awsui-color-text-heading-default)}.awsui .awsui-util-action-stripe-group{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:-5px}.awsui .awsui-util-action-stripe-group>awsui-button,.awsui .awsui-util-action-stripe-group>awsui-button-dropdown,.awsui .awsui-util-action-stripe-group>awsui-popover,.awsui .awsui-util-action-stripe-group>awsui-select{-webkit-box-sizing:border-box;box-sizing:border-box;width:auto;margin-left:0;padding:5px}.awsui .awsui-util-action-stripe{margin-top:-5px;margin-bottom:-10px}.awsui .awsui-util-action-stripe .awsui-util-action-stripe-title{padding-top:5px;padding-bottom:10px;color:#16191f;color:var(--awsui-color-text-heading-default)}.awsui .awsui-util-action-stripe .awsui-util-action-stripe-group{padding-bottom:5px}.awsui .awsui-util-action-stripe-large .awsui-util-action-stripe-group{padding-top:10px;padding-bottom:10px}.awsui .awsui-util-container{background-color:#fff;background-color:var(--awsui-color-background-container-content, #fff);-webkit-box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);-webkit-box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));border-top:1px solid #eaeded;border-top:1px solid var(--awsui-color-border-container-top, #eaeded);border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:20px;word-wrap:break-word}@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active){.awsui .awsui-util-container{border:1px solid #eaeded;border:1px solid var(--awsui-color-border-container-top, #eaeded)}}.awsui .awsui-util-container>*{padding:15px 20px}.awsui .awsui-util-container>:first-child{padding-top:19px}.awsui .awsui-util-container>:last-child{padding-bottom:20px}.awsui .awsui-util-container.awsui-util-no-gutters>*{padding:0}.awsui .awsui-util-container .awsui-util-container-header{font-size:var(--font-size-3);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-heading-default, #16191f);background-color:#fafafa;background-color:var(--awsui-color-background-container-header, #fafafa);border-bottom:1px solid #eaeded;border-bottom:1px solid var(--awsui-color-border-divider-default, #eaeded);padding:19px 20px;font-weight:700}.awsui .awsui-util-container .awsui-util-container-header h1,.awsui .awsui-util-container .awsui-util-container-header h2{padding:0}.awsui .awsui-util-container .awsui-util-container-header .awsui-util-container-header-description{color:#687078;color:var(--awsui-color-text-form-secondary, #687078);font-size:var(--font-size-0);line-height:15px;color:#545b64;color:var(--awsui-color-text-heading-secondary, #545b64);padding-top:5px;font-weight:400}.awsui .awsui-util-container .awsui-util-container-header .awsui-util-container-header-description .awsui-icon.awsui-icon-size-normal{padding-top:10px;vertical-align:middle}.awsui .awsui-util-container .awsui-util-container-header .awsui-util-container-header-description a{font-weight:700;letter-spacing:0.01em}.awsui .awsui-util-container .awsui-util-container-footer{border-top:1px solid #eaeded;border-top:1px solid var(--awsui-color-border-divider-default, #eaeded);padding:9px 20px 10px}.awsui .awsui-util-copy-text{word-break:break-all}.awsui .awsui-util-copy-text .awsui-button-variant-icon{padding:0}.awsui a.awsui-util-help-info-link{font-size:var(--font-size-0);line-height:15px;font-weight:700;letter-spacing:0.01em;margin-left:10px}.awsui .awsui-util-help-panel{word-wrap:break-word;color:#545b64;color:var(--awsui-color-text-body-secondary);padding:20px 30px 0}.awsui .awsui-util-help-panel a,.awsui .awsui-util-help-panel code,.awsui .awsui-util-help-panel h2,.awsui .awsui-util-help-panel h3,.awsui .awsui-util-help-panel h4,.awsui .awsui-util-help-panel h5,.awsui .awsui-util-help-panel li,.awsui .awsui-util-help-panel ol,.awsui .awsui-util-help-panel p,.awsui .awsui-util-help-panel pre,.awsui .awsui-util-help-panel ul{margin:10px 0;padding-top:0;padding-bottom:0}.awsui .awsui-util-help-panel hr{border:none;border-top:1px solid #eaeded;border-top:1px solid var(--awsui-color-border-divider-default);margin:25px -10px}.awsui .awsui-util-help-panel code{padding:0 5px}.awsui .awsui-util-help-panel code,.awsui .awsui-util-help-panel pre{font-size:var(--font-size-0);line-height:15px;font-family:Monaco, Menlo, Consolas, Courier Prime, Courier, Courier New, monospace;background-color:#f2f3f3;background-color:var(--awsui-color-background-layout-main);overflow-wrap:break-word;word-wrap:break-word;white-space:pre-wrap}.awsui .awsui-util-help-panel pre{padding:5px}.awsui .awsui-util-help-panel li>pre{padding-top:2px}.awsui .awsui-util-help-panel h2,.awsui .awsui-util-help-panel h3,.awsui .awsui-util-help-panel h4,.awsui .awsui-util-help-panel h5,.awsui .awsui-util-help-panel h6{margin-top:25px;color:#16191f;color:var(--awsui-color-text-heading-default)}.awsui .awsui-util-help-panel dl{margin:10px 0}.awsui .awsui-util-help-panel dl *{margin-top:0;margin-bottom:0}.awsui .awsui-util-help-panel dt{margin-top:10px;font-weight:700}.awsui .awsui-util-help-panel dd{margin:0 0 10px}.awsui .awsui-util-help-panel .awsui-util-help-panel-header{font-size:var(--font-size-3);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-heading-default);font-weight:700;padding-bottom:20px;padding-left:30px;padding-right:56px;border:none;border-bottom:1px solid #eaeded;border-bottom:1px solid var(--awsui-color-border-divider-default);margin:-1px -30px 15px}.awsui .awsui-util-help-panel .awsui-util-help-panel-header *{padding-top:0;padding-bottom:0;margin-top:0;margin-bottom:0}.awsui .awsui-util-help-panel .awsui-util-help-panel-footer{border-top:1px solid #eaeded;border-top:1px solid var(--awsui-color-border-divider-default);margin:25px -10px;padding:0 10px}.awsui .awsui-util-help-panel .awsui-util-help-panel-footer ul{list-style:none;padding-left:0}.awsui .awsui-util-help-panel>:last-child{margin-bottom:80px}.awsui .awsui-internal-link-button{text-decoration:underline;cursor:pointer}.awsui .awsui-util-label{color:#545b64;color:var(--awsui-color-text-label, #545b64);font-size:var(--font-size-1);line-height:var(--line-height-3);margin-bottom:5px}.awsui .awsui-util-status-negative{color:#d13212;color:var(--awsui-color-text-status-error, #d13212)}.awsui .awsui-util-status-inactive{color:#687078;color:var(--awsui-color-text-status-inactive, #687078)}.awsui .awsui-util-status-positive{color:#1d8102;color:var(--awsui-color-text-status-success, #1d8102)}.awsui .awsui-util-status-info{color:#0073bb;color:var(--awsui-color-text-status-info, #0073bb)}.awsui .awsui-util-smart-cols{-webkit-columns:3 400px;-moz-columns:3 400px;columns:400px 3;-webkit-column-gap:20px;-moz-column-gap:20px;column-gap:20px}.awsui .awsui-util-f-l{float:left}.awsui .awsui-util-f-r{float:right}.awsui .awsui-util-f-n{float:none}.awsui .awsui-util-d-b{display:block}.awsui .awsui-util-d-i{display:inline}.awsui .awsui-util-d-ib{display:inline-block}.awsui .awsui-util-d-n{display:none}.awsui .awsui-util-hide{position:absolute !important;top:-9999px !important;left:-9999px !important}.awsui .awsui-util-clearfix::after{content:'';display:table;clear:both}.awsui .awsui-util-t-l{text-align:left}.awsui .awsui-util-t-r{text-align:right}.awsui .awsui-util-t-c{text-align:center}.awsui .awsui-util-p-n{padding:0}.awsui .awsui-util-pt-n,.awsui .awsui-util-pv-n{padding-top:0}.awsui .awsui-util-ph-n,.awsui .awsui-util-pr-n{padding-right:0}.awsui .awsui-util-pb-n,.awsui .awsui-util-pv-n{padding-bottom:0}.awsui .awsui-util-ph-n,.awsui .awsui-util-pl-n{padding-left:0}.awsui .awsui-util-p-xs{padding:5px}.awsui .awsui-util-pt-xs,.awsui .awsui-util-pv-xs{padding-top:5px}.awsui .awsui-util-ph-xs,.awsui .awsui-util-pr-xs{padding-right:5px}.awsui .awsui-util-pb-xs,.awsui .awsui-util-pv-xs{padding-bottom:5px}.awsui .awsui-util-ph-xs,.awsui .awsui-util-pl-xs{padding-left:5px}.awsui .awsui-util-p-s{padding:10px}.awsui .awsui-util-pt-s,.awsui .awsui-util-pv-s{padding-top:10px}.awsui .awsui-util-ph-s,.awsui .awsui-util-pr-s{padding-right:10px}.awsui .awsui-util-pb-s,.awsui .awsui-util-pv-s{padding-bottom:10px}.awsui .awsui-util-ph-s,.awsui .awsui-util-pl-s{padding-left:10px}.awsui .awsui-util-p-m{padding:15px}.awsui .awsui-util-pt-m,.awsui .awsui-util-pv-m{padding-top:15px}.awsui .awsui-util-ph-m,.awsui .awsui-util-pr-m{padding-right:15px}.awsui .awsui-util-pb-m,.awsui .awsui-util-pv-m{padding-bottom:15px}.awsui .awsui-util-ph-m,.awsui .awsui-util-pl-m{padding-left:15px}.awsui .awsui-util-p-l{padding:20px}.awsui .awsui-util-pt-l,.awsui .awsui-util-pv-l{padding-top:20px}.awsui .awsui-util-ph-l,.awsui .awsui-util-pr-l{padding-right:20px}.awsui .awsui-util-pb-l,.awsui .awsui-util-pv-l{padding-bottom:20px}.awsui .awsui-util-ph-l,.awsui .awsui-util-pl-l{padding-left:20px}.awsui .awsui-util-p-xl{padding:25px}.awsui .awsui-util-pt-xl,.awsui .awsui-util-pv-xl{padding-top:25px}.awsui .awsui-util-ph-xl,.awsui .awsui-util-pr-xl{padding-right:25px}.awsui .awsui-util-pb-xl,.awsui .awsui-util-pv-xl{padding-bottom:25px}.awsui .awsui-util-ph-xl,.awsui .awsui-util-pl-xl{padding-left:25px}.awsui .awsui-util-p-xxl{padding:30px}.awsui .awsui-util-pt-xxl,.awsui .awsui-util-pv-xxl{padding-top:30px}.awsui .awsui-util-ph-xxl,.awsui .awsui-util-pr-xxl{padding-right:30px}.awsui .awsui-util-pb-xxl,.awsui .awsui-util-pv-xxl{padding-bottom:30px}.awsui .awsui-util-ph-xxl,.awsui .awsui-util-pl-xxl{padding-left:30px}.awsui .awsui-util-m-n{margin:0}.awsui .awsui-util-mt-n,.awsui .awsui-util-mv-n{margin-top:0}.awsui .awsui-util-mh-n,.awsui .awsui-util-mr-n{margin-right:0}.awsui .awsui-util-mb-n,.awsui .awsui-util-mv-n{margin-bottom:0}.awsui .awsui-util-mh-n,.awsui .awsui-util-ml-n{margin-left:0}.awsui .awsui-util-m-xs{margin:5px}.awsui .awsui-util-mt-xs,.awsui .awsui-util-mv-xs{margin-top:5px}.awsui .awsui-util-mh-xs,.awsui .awsui-util-mr-xs{margin-right:5px}.awsui .awsui-util-mb-xs,.awsui .awsui-util-mv-xs{margin-bottom:5px}.awsui .awsui-util-mh-xs,.awsui .awsui-util-ml-xs{margin-left:5px}.awsui .awsui-util-m-s{margin:10px}.awsui .awsui-util-mt-s,.awsui .awsui-util-mv-s{margin-top:10px}.awsui .awsui-util-mh-s,.awsui .awsui-util-mr-s{margin-right:10px}.awsui .awsui-util-mb-s,.awsui .awsui-util-mv-s{margin-bottom:10px}.awsui .awsui-util-mh-s,.awsui .awsui-util-ml-s{margin-left:10px}.awsui .awsui-util-m-m{margin:15px}.awsui .awsui-util-mt-m,.awsui .awsui-util-mv-m{margin-top:15px}.awsui .awsui-util-mh-m,.awsui .awsui-util-mr-m{margin-right:15px}.awsui .awsui-util-mb-m,.awsui .awsui-util-mv-m{margin-bottom:15px}.awsui .awsui-util-mh-m,.awsui .awsui-util-ml-m{margin-left:15px}.awsui .awsui-util-m-l{margin:20px}.awsui .awsui-util-mt-l,.awsui .awsui-util-mv-l{margin-top:20px}.awsui .awsui-util-mh-l,.awsui .awsui-util-mr-l{margin-right:20px}.awsui .awsui-util-mb-l,.awsui .awsui-util-mv-l{margin-bottom:20px}.awsui .awsui-util-mh-l,.awsui .awsui-util-ml-l{margin-left:20px}.awsui .awsui-util-m-xl{margin:25px}.awsui .awsui-util-mt-xl,.awsui .awsui-util-mv-xl{margin-top:25px}.awsui .awsui-util-mh-xl,.awsui .awsui-util-mr-xl{margin-right:25px}.awsui .awsui-util-mb-xl,.awsui .awsui-util-mv-xl{margin-bottom:25px}.awsui .awsui-util-mh-xl,.awsui .awsui-util-ml-xl{margin-left:25px}.awsui .awsui-util-m-xxl{margin:30px}.awsui .awsui-util-mt-xxl,.awsui .awsui-util-mv-xxl{margin-top:30px}.awsui .awsui-util-mh-xxl,.awsui .awsui-util-mr-xxl{margin-right:30px}.awsui .awsui-util-mb-xxl,.awsui .awsui-util-mv-xxl{margin-bottom:30px}.awsui .awsui-util-mh-xxl,.awsui .awsui-util-ml-xxl{margin-left:30px}.awsui .awsui-util-spacing-v-s{margin:-10px 0}.awsui .awsui-util-spacing-v-s>*{-webkit-box-sizing:border-box;box-sizing:border-box;padding:10px 0}.awsui .awsui-util-shadow{-webkit-box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);-webkit-box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));border-top:1px solid #eaeded;border-top:1px solid var(--awsui-color-border-container-top, #eaeded);border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box}@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active){.awsui .awsui-util-shadow{border:1px solid #eaeded;border:1px solid var(--awsui-color-border-container-top, #eaeded)}}.awsui .awsui-util-show-in-dark-mode{display:none}@supports (--css-variable-support-check: #000){.awsui-polaris-dark-mode .awsui .awsui-util-show-in-dark-mode{display:inline;display:initial}}@supports (--css-variable-support-check: #000){.awsui-polaris-dark-mode .awsui .awsui-util-hide-in-dark-mode{display:none}}.awsui .awsui-util-font-size-0{font-size:var(--font-size-0);line-height:var(--line-height-2)}.awsui .awsui-util-font-size-1{font-size:var(--font-size-1);line-height:var(--line-height-3)}.awsui .awsui-util-font-size-2{font-size:var(--font-size-2);line-height:var(--line-height-3)}.awsui .awsui-util-font-size-3{font-size:var(--font-size-3);line-height:var(--line-height-4)}.awsui .awsui-util-font-size-4{font-size:var(--font-size-4);line-height:var(--line-height-5)}.awsui .awsui-util-font-size-5{font-size:var(--font-size-5);line-height:var(--line-height-6)}.awsui awsui-icon{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;cursor:inherit;color:inherit;display:inline-block;font-size:inherit;line-height:inherit}.awsui .awsui-icon{display:inline-block;vertical-align:top}.awsui .awsui-icon:empty::before{margin-right:0}.awsui .awsui-icon svg{pointer-events:none;fill:none}.awsui .awsui-icon svg *{stroke:currentColor}.awsui .awsui-icon svg .stroke-linejoin-round{stroke-linejoin:round}.awsui .awsui-icon svg .stroke-linecap-square{stroke-linecap:square}.awsui .awsui-icon svg .stroke-linecap-round{stroke-linecap:round}.awsui .awsui-icon svg .filled{fill:currentColor}.awsui .awsui-icon.awsui-icon-size-normal{width:16px;height:20px;padding:2px 0;-webkit-box-sizing:border-box;box-sizing:border-box}.awsui .awsui-icon.awsui-icon-size-normal img,.awsui .awsui-icon.awsui-icon-size-normal svg{width:16px;height:16px}.awsui .awsui-icon.awsui-icon-size-normal svg,.awsui .awsui-icon.awsui-icon-size-normal svg *{stroke-width:2px}.awsui .awsui-icon.awsui-icon-size-big{width:32px;height:40px;padding:4px 0;-webkit-box-sizing:border-box;box-sizing:border-box}.awsui .awsui-icon.awsui-icon-size-big img,.awsui .awsui-icon.awsui-icon-size-big svg{width:32px;height:32px}.awsui .awsui-icon.awsui-icon-size-big svg,.awsui .awsui-icon.awsui-icon-size-big svg *{stroke-width:2px}.awsui .awsui-icon.awsui-icon-size-large{width:48px;height:50px;padding:1px 0;-webkit-box-sizing:border-box;box-sizing:border-box}.awsui .awsui-icon.awsui-icon-size-large img,.awsui .awsui-icon.awsui-icon-size-large svg{width:48px;height:48px}.awsui .awsui-icon.awsui-icon-size-large svg,.awsui .awsui-icon.awsui-icon-size-large svg *{stroke-width:1.2px}.awsui .awsui-icon.awsui-icon-variant-normal{color:currentColor}.awsui .awsui-icon.awsui-icon-variant-disabled{color:#aab7b8;color:var(--awsui-color-text-interactive-disabled)}.awsui .awsui-icon.awsui-icon-variant-inverted{color:#fff;color:var(--awsui-color-text-inverted)}.awsui .awsui-icon.awsui-icon-variant-subtle{color:#687078;color:var(--awsui-color-text-icon-subtle)}.awsui .awsui-icon.awsui-icon-variant-warning{color:#d13212;color:var(--awsui-color-text-status-warning)}.awsui .awsui-icon.awsui-icon-variant-error{color:#d13212;color:var(--awsui-color-text-status-error)}.awsui .awsui-icon.awsui-icon-variant-success{color:#1d8102;color:var(--awsui-color-text-status-success)}.awsui .awsui-icon.awsui-icon-variant-link{color:#0073bb;color:var(--awsui-color-text-link-default)}@-webkit-keyframes spinner-rotator{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spinner-rotator{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes spinner-line-left{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}50%{-webkit-transform:rotate(120deg);transform:rotate(120deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes spinner-line-left{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}50%{-webkit-transform:rotate(120deg);transform:rotate(120deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes spinner-line-right{0%{-webkit-transform:rotate(90deg);transform:rotate(90deg)}50%{-webkit-transform:rotate(-30deg);transform:rotate(-30deg)}to{-webkit-transform:rotate(90deg);transform:rotate(90deg)}}@keyframes spinner-line-right{0%{-webkit-transform:rotate(90deg);transform:rotate(90deg)}50%{-webkit-transform:rotate(-30deg);transform:rotate(-30deg)}to{-webkit-transform:rotate(90deg);transform:rotate(90deg)}}.awsui awsui-spinner{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;color:inherit;display:inline-block;font-size:inherit;line-height:inherit}.awsui .awsui-spinner,.awsui awsui-spinner{-webkit-box-sizing:border-box;box-sizing:border-box}.awsui .awsui-spinner{display:inline-block;vertical-align:top;line-height:0}.awsui .awsui-spinner:not(.awsui-spinner-component){-webkit-animation:spinner-rotator 1.1s linear infinite;animation:spinner-rotator 1.1s linear infinite;position:relative}.awsui .awsui-spinner:not(.awsui-spinner-component)::after{position:absolute;-webkit-box-sizing:border-box;box-sizing:border-box;content:'';border-radius:50%;border-color:currentcolor transparent transparent currentcolor;border-style:solid;border-width:2px;left:20%;top:20%;width:60%;height:60%}.awsui .awsui-spinner.awsui-spinner-component{-webkit-animation:spinner-rotator 0.7s linear infinite;animation:spinner-rotator 0.7s linear infinite}.awsui .awsui-spinner.awsui-spinner-component .awsui-spinner-circle{display:inline-block;width:50%;height:100%;overflow:hidden;position:relative}.awsui .awsui-spinner.awsui-spinner-component .awsui-spinner-circle::after{position:absolute;-webkit-box-sizing:border-box;box-sizing:border-box;content:'';border-radius:50%;border-color:currentcolor transparent transparent currentcolor;border-style:solid;border-width:2px;-webkit-animation:1.5s ease-in-out infinite;animation:1.5s ease-in-out infinite;top:0;left:0;height:100%;width:200%}.awsui .awsui-spinner.awsui-spinner-component .awsui-spinner-circle.awsui-spinner-circle-left::after{left:0;-webkit-animation-name:spinner-line-left;animation-name:spinner-line-left}.awsui .awsui-spinner.awsui-spinner-component .awsui-spinner-circle.awsui-spinner-circle-right::after{left:-100%;-webkit-animation-name:spinner-line-right;animation-name:spinner-line-right}.awsui .awsui-spinner.awsui-spinner{width:16px;height:16px;margin:2px 0;-webkit-box-sizing:border-box;box-sizing:border-box;padding:3px}.awsui .awsui-spinner.awsui-spinner-size-big{width:32px;height:32px;margin:4px 0;-webkit-box-sizing:border-box;box-sizing:border-box;padding:6px}.awsui .awsui-spinner.awsui-spinner-size-large{width:48px;height:48px;margin:6px 0;-webkit-box-sizing:border-box;box-sizing:border-box;padding:9px}.awsui .awsui-spinner{color:currentColor}.awsui .awsui-spinner-variant-disabled{color:#aab7b8;color:var(--awsui-color-text-interactive-disabled)}.awsui .awsui-spinner-variant-inverted{color:#fff;color:var(--awsui-color-text-inverted)}.awsui.awsui-motion awsui-button-dropdown{-webkit-animation:awsui-motion-fade-in-dropdown 135ms ease-out;-webkit-animation:awsui-motion-fade-in-dropdown var(--awsui-motion-duration-show-quick)
    var(--awsui-motion-easing-show-quick);animation:awsui-motion-fade-in-dropdown 135ms ease-out;-webkit-animation:awsui-motion-fade-in-dropdown var(--awsui-motion-duration-show-quick) var(--awsui-motion-easing-show-quick);animation:awsui-motion-fade-in-dropdown var(--awsui-motion-duration-show-quick) var(--awsui-motion-easing-show-quick)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion awsui-button-dropdown{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui.awsui-motion awsui-button-dropdown .awsui-button-dropdown-items{-webkit-animation:awsui-motion-fade-in-0 135ms ease-out;-webkit-animation:awsui-motion-fade-in-0 var(--awsui-motion-duration-show-quick)
    var(--awsui-motion-easing-show-quick);animation:awsui-motion-fade-in-0 135ms ease-out;-webkit-animation:awsui-motion-fade-in-0 var(--awsui-motion-duration-show-quick) var(--awsui-motion-easing-show-quick);animation:awsui-motion-fade-in-0 var(--awsui-motion-duration-show-quick) var(--awsui-motion-easing-show-quick);-webkit-animation-fill-mode:none;animation-fill-mode:none}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion awsui-button-dropdown .awsui-button-dropdown-items{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui.awsui-motion awsui-button-dropdown .awsui-button awsui-icon{-webkit-transition:-webkit-transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);-webkit-transition:-webkit-transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180);transition:-webkit-transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:-webkit-transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180);-o-transition:transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180);transition:transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180);transition:transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180), -webkit-transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180);transition:transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180),
    -webkit-transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion awsui-button-dropdown .awsui-button awsui-icon{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui.awsui-motion awsui-button-dropdown .awsui-button-dropdown-expand-icon{-webkit-transition:-webkit-transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);-webkit-transition:-webkit-transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180);transition:-webkit-transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:-webkit-transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180);-o-transition:transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180);transition:transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180);transition:transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180), -webkit-transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180);transition:transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180),
    -webkit-transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion awsui-button-dropdown .awsui-button-dropdown-expand-icon{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui awsui-button{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;display:inline-block;min-width:0;-ms-word-break:break-all;word-break:break-word}.awsui .awsui-button,.awsui awsui-button{text-decoration:none;font-size:var(--font-size-1);line-height:var(--line-height-3)}.awsui .awsui-button{border-radius:2px;border:1px solid;padding:4px 20px;font-weight:700;letter-spacing:0.25px;display:inline-block;cursor:pointer;text-align:left}.awsui .awsui-button.awsui-button-variant-normal{background:#fff;background:var(--awsui-color-background-button-normal-default);color:#545b64;color:var(--awsui-color-text-interactive-default);border-color:#545b64;border-color:var(--awsui-color-border-button-normal-default);position:relative;text-decoration:none}.awsui .awsui-button.awsui-button-variant-normal:hover{background:#fafafa;background:var(--awsui-color-background-button-normal-hover);color:#16191f;color:var(--awsui-color-text-interactive-hover);border-color:#16191f;border-color:var(--awsui-color-border-button-normal-hover);text-decoration:none}.awsui .awsui-button.awsui-button-variant-normal:active{background:#eaeded;background:var(--awsui-color-background-button-normal-active);color:#16191f;color:var(--awsui-color-text-interactive-hover)}.awsui .awsui-button.awsui-button-variant-normal:focus{outline:none;text-decoration:none}.awsui .awsui-button.awsui-button-variant-normal[data-awsui-focused]{outline:2px dotted transparent;outline-offset:2px}.awsui .awsui-button.awsui-button-variant-normal[data-awsui-focused]::before{content:' ';display:block;position:absolute;left:-3px;top:-3px;width:calc(100% + 6px);height:calc(100% + 6px);border-radius:2px;-webkit-box-shadow:0 0 0 2px #00a1c9;-webkit-box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 2px #00a1c9;box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-button.awsui-button-variant-normal.awsui-button-disabled{background:#fff;background:var(--awsui-color-background-button-normal-disabled);border-color:#d5dbdb;border-color:var(--awsui-color-border-button-normal-disabled);color:#aab7b8;color:var(--awsui-color-text-interactive-disabled);text-decoration:none;pointer-events:none;cursor:auto}.awsui .awsui-button.awsui-button-variant-primary{background:#ec7211;background:var(--awsui-color-background-button-primary-default);color:#fff;color:var(--awsui-color-text-inverted);border-color:#ec7211;border-color:var(--awsui-color-background-button-primary-default);position:relative;text-decoration:none}.awsui .awsui-button.awsui-button-variant-primary:hover{background:#eb5f07;background:var(--awsui-color-background-button-primary-hover);color:#fff;color:var(--awsui-color-text-inverted);border-color:#dd6b10;border-color:var(--awsui-color-border-button-primary-hover);text-decoration:none}.awsui .awsui-button.awsui-button-variant-primary:active{background:#dd6b10;background:var(--awsui-color-background-button-primary-active);color:#fff;color:var(--awsui-color-text-inverted)}.awsui .awsui-button.awsui-button-variant-primary:focus{outline:none;text-decoration:none}.awsui .awsui-button.awsui-button-variant-primary[data-awsui-focused]{outline:2px dotted transparent;outline-offset:2px}.awsui .awsui-button.awsui-button-variant-primary[data-awsui-focused]::before{content:' ';display:block;position:absolute;left:-3px;top:-3px;width:calc(100% + 6px);height:calc(100% + 6px);border-radius:2px;-webkit-box-shadow:0 0 0 2px #00a1c9;-webkit-box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 2px #00a1c9;box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-button.awsui-button-variant-primary.awsui-button-disabled{background:#fff;background:var(--awsui-color-background-button-primary-disabled);border-color:#d5dbdb;border-color:var(--awsui-color-border-button-primary-disabled);color:#aab7b8;color:var(--awsui-color-text-interactive-disabled);text-decoration:none;pointer-events:none;cursor:auto}.awsui .awsui-button.awsui-button-variant-link{background:transparent;color:#545b64;color:var(--awsui-color-text-interactive-default);border-color:transparent;position:relative;text-decoration:none}.awsui .awsui-button.awsui-button-variant-link:hover{background:#fafafa;background:var(--awsui-color-background-button-link-hover);color:#16191f;color:var(--awsui-color-text-interactive-hover);border-color:#fafafa;border-color:var(--awsui-color-background-button-link-hover);text-decoration:none}.awsui .awsui-button.awsui-button-variant-link:active{background:#eaeded;background:var(--awsui-color-background-button-link-active);color:#16191f;color:var(--awsui-color-text-interactive-hover)}.awsui .awsui-button.awsui-button-variant-link:focus{outline:none;text-decoration:none}.awsui .awsui-button.awsui-button-variant-link[data-awsui-focused]{outline:2px dotted transparent;outline-offset:2px}.awsui .awsui-button.awsui-button-variant-link[data-awsui-focused]::before{content:' ';display:block;position:absolute;left:-3px;top:-3px;width:calc(100% + 6px);height:calc(100% + 6px);border-radius:2px;-webkit-box-shadow:0 0 0 2px #00a1c9;-webkit-box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 2px #00a1c9;box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-button.awsui-button-variant-link.awsui-button-disabled{background:transparent;border-color:transparent;color:#aab7b8;color:var(--awsui-color-text-interactive-disabled);text-decoration:none;pointer-events:none;cursor:auto}.awsui .awsui-button.awsui-button-variant-icon{background:transparent;color:#545b64;color:var(--awsui-color-text-interactive-default);border-color:transparent;position:relative;text-decoration:none}.awsui .awsui-button.awsui-button-variant-icon:hover{background:transparent;color:#16191f;color:var(--awsui-color-text-interactive-hover);border-color:transparent;text-decoration:none}.awsui .awsui-button.awsui-button-variant-icon:active{background:transparent;color:#545b64;color:var(--awsui-color-text-interactive-default)}.awsui .awsui-button.awsui-button-variant-icon:focus{outline:none;text-decoration:none}.awsui .awsui-button.awsui-button-variant-icon[data-awsui-focused]{outline:2px dotted transparent;outline-offset:2px}.awsui .awsui-button.awsui-button-variant-icon[data-awsui-focused]::before{content:' ';display:block;position:absolute;left:-3px;top:-3px;width:calc(100% + 6px);height:calc(100% + 6px);border-radius:2px;-webkit-box-shadow:0 0 0 2px #00a1c9;-webkit-box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 2px #00a1c9;box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-button.awsui-button-variant-icon.awsui-button-disabled{background:transparent;border-color:transparent;color:#aab7b8;color:var(--awsui-color-text-interactive-disabled);text-decoration:none;pointer-events:none;cursor:auto}.awsui .awsui-button.awsui-button-no-text{padding-left:15px;padding-right:15px}.awsui .awsui-button.awsui-button-no-wrap{white-space:nowrap}.awsui .awsui-button.awsui-button-variant-icon{padding-left:6px;padding-right:6px}.awsui .awsui-button .awsui-button-icon-left{position:relative;left:-5px;margin-right:4px}.awsui .awsui-button .awsui-button-icon-right{position:relative;right:-5px;margin-left:4px}.awsui .awsui-button.awsui-button-no-text .awsui-button-icon{margin-right:auto;margin-left:auto;right:0;left:0}.awsui awsui-button-dropdown{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;display:inline-block;max-width:100%;white-space:nowrap}.awsui awsui-button-dropdown .awsui-button-dropdown-wrapped{white-space:normal;word-wrap:break-word}.awsui awsui-button-dropdown awsui-button{max-width:100%}.awsui awsui-button-dropdown .awsui-button{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.awsui awsui-button-dropdown .awsui-button>awsui-icon{-webkit-transform:rotate(0deg);transform:rotate(0deg)}.awsui awsui-button-dropdown .awsui-button[aria-expanded='true']>awsui-icon{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.awsui .awsui-button-dropdown-container{position:relative;font-size:var(--font-size-1);line-height:var(--line-height-3)}.awsui .awsui-button-dropdown-container .awsui-button-dropdown .awsui-button-dropdown-item>a{text-decoration:none;color:currentColor;outline:none}.awsui .awsui-button-dropdown{display:block;position:absolute;overflow:visible;z-index:2000;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;min-width:100%;color:#16191f;color:var(--awsui-color-text-dropdown-item-default);background-color:#fff;background-color:var(--awsui-color-background-dropdown-item-default);-webkit-box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);-webkit-box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box;border-top:none}@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active){.awsui .awsui-button-dropdown{border:1px solid #eaeded;border:1px solid var(--awsui-color-border-container-top, #eaeded)}}.awsui .awsui-button-dropdown.awsui-button-dropdown-drop-up{bottom:100%}.awsui .awsui-button-dropdown.awsui-button-dropdown-drop-up,.awsui .awsui-button-dropdown.awsui-button-dropdown-drop-up .awsui-button-dropdown-items-fly-out{-webkit-box-shadow:0 -1px 1px 0 rgba(0, 28, 36, 0.3),
    1px -1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px -1px 1px 0 rgba(0, 28, 36, 0.15);-webkit-box-shadow:0 -1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px -1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px -1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));box-shadow:0 -1px 1px 0 rgba(0, 28, 36, 0.3),
    1px -1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px -1px 1px 0 rgba(0, 28, 36, 0.15);box-shadow:0 -1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px -1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px -1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15))}.awsui .awsui-button-dropdown.awsui-button-dropdown-drop-left{right:0}.awsui .awsui-button-dropdown li{list-style:none}.awsui .awsui-button-dropdown>.awsui-button-dropdown-items>.awsui-button-dropdown-item:first-child{border-top:1px solid #eaeded;border-top:1px solid var(--awsui-color-border-dropdown-group)}.awsui .awsui-button-dropdown>.awsui-button-dropdown-items>:first-child{margin-top:0}.awsui .awsui-button-dropdown>.awsui-button-dropdown-items>:first-child>p{border-top:1px solid #eaeded;border-top:1px solid var(--awsui-color-border-dropdown-group)}.awsui .awsui-button-dropdown .awsui-button-dropdown-items .awsui-button-dropdown-item.awsui-button-dropdown-item-highlighted,.awsui .awsui-button-dropdown .awsui-button-dropdown-items .awsui-button-dropdown-item:hover:not(.awsui-button-dropdown-item-disabled){background-color:#f2f3f3;background-color:var(--awsui-color-background-dropdown-item-hover);color:#16191f;color:var(--awsui-color-text-dropdown-item-highlighted);border-color:#879596;border-color:var(--awsui-color-border-dropdown-item-hover);cursor:pointer}.awsui .awsui-button-dropdown-items{padding:0;margin:0;overflow-y:auto}.awsui .awsui-button-dropdown-items-fly-out{position:absolute;-webkit-box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);-webkit-box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:#fff;background-color:var(--awsui-color-background-dropdown-item-default);border-top:0;margin-top:1px}@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active){.awsui .awsui-button-dropdown-items-fly-out{border:1px solid #eaeded;border:1px solid var(--awsui-color-border-container-top, #eaeded)}}.awsui .awsui-button-dropdown-items-fly-out>.awsui-button-dropdown-item{white-space:nowrap}.awsui .awsui-button-dropdown-items-fly-out>.awsui-button-dropdown-item:first-child{border-top:1px solid #eaeded;border-top:1px solid var(--awsui-color-border-dropdown-group)}.awsui .awsui-button-dropdown-items-fly-out-wrapped>.awsui-button-dropdown-item{white-space:normal}.awsui .awsui-button-dropdown-item{display:block;padding:5px 20px;color:#16191f;color:var(--awsui-color-text-dropdown-item-default);border:1px solid transparent;margin-top:-1px}.awsui .awsui-button-dropdown-item:first-child{margin-top:0}.awsui .awsui-button-dropdown-item:focus{outline:none}.awsui .awsui-button-dropdown-item.awsui-button-dropdown-item-disabled{pointer-events:none;color:#aab7b8;color:var(--awsui-color-text-dropdown-item-disabled)}.awsui .awsui-button-dropdown-item.awsui-button-dropdown-item-link{padding:0}.awsui .awsui-button-dropdown-item.awsui-button-dropdown-item-link a{display:block;padding:5px 20px}.awsui .awsui-button-dropdown-item-has-bottom-border{border-bottom:1px solid #eaeded;border-bottom:1px solid var(--awsui-color-border-dropdown-group)}.awsui .awsui-button-dropdown-category-header{margin:0;color:#545b64;color:var(--awsui-color-text-dropdown-group-label);font-weight:700;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:5px 20px}.awsui .awsui-button-dropdown-expand-icon{position:relative;left:10px;width:16px;display:inline-block}.awsui .awsui-button-dropdown-expand-icon-up>awsui-icon{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.awsui .awsui-button-dropdown-expand-icon-right>awsui-icon{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.awsui .awsui-button-dropdown-category{margin-top:-1px;padding:0}.awsui .awsui-button-dropdown-category:first-child{margin-top:0}.awsui .awsui-button-dropdown-category.awsui-button-dropdown-category-expandable{border-top:0}.awsui .awsui-button-dropdown-category>p{border:1px solid transparent}.awsui .awsui-button-dropdown-category>p:focus{outline:none}.awsui .awsui-button-dropdown-category.awsui-button-dropdown-category-disabled .awsui-button-dropdown-category-header{color:#aab7b8;color:var(--awsui-color-text-dropdown-item-disabled)}.awsui .awsui-button-dropdown-category.awsui-button-dropdown-category-expandable:not(.awsui-button-dropdown-category-expanded)>p{border-bottom:1px solid #eaeded;border-bottom:1px solid var(--awsui-color-border-dropdown-group)}.awsui .awsui-button-dropdown-category.awsui-button-dropdown-category-expandable.awsui-button-dropdown-category-highlighted>p,.awsui .awsui-button-dropdown-category.awsui-button-dropdown-category-expandable:not(.awsui-button-dropdown-category-disabled)>p:hover{background-color:#f2f3f3;background-color:var(--awsui-color-background-dropdown-item-hover);color:#16191f;color:var(--awsui-color-text-dropdown-item-highlighted);border-color:#879596;border-color:var(--awsui-color-border-dropdown-item-hover);cursor:pointer}.awsui .awsui-button-dropdown-category-expanded .awsui-button-dropdown-item.awsui-button-dropdown-item-highlighted,.awsui .awsui-button-dropdown-category-expanded .awsui-button-dropdown-item:hover:not(.awsui-button-dropdown-item-disabled){border-color:#879596;border-color:var(--awsui-color-border-dropdown-item-hover)}.awsui .awsui-button-dropdown-category-expanded .awsui-button-dropdown-items{margin-top:-1px}.awsui .awsui-button-dropdown-category:last-child{border-bottom:none}.awsui .awsui-button-dropdown-category-header+.awsui-button-dropdown-items .awsui-button-dropdown-item{padding-left:30px}.awsui .awsui-button-dropdown-category-header+.awsui-button-dropdown-items.awsui-button-dropdown-items-fly-out .awsui-button-dropdown-item{padding:5px 20px}.awsui awsui-button+awsui-button,.awsui awsui-button+awsui-button-dropdown,.awsui awsui-button-dropdown+awsui-button,.awsui awsui-button-dropdown+awsui-button-dropdown{margin-left:10px}.awsui.awsui-motion .awsui-alert{-webkit-animation:awsui-motion-fade-in 0.18s ease-out;-webkit-animation:awsui-motion-fade-in var(--awsui-motion-duration-show-paced) var(--awsui-motion-easing-show-paced);animation:awsui-motion-fade-in 0.18s ease-out;animation:awsui-motion-fade-in var(--awsui-motion-duration-show-paced) var(--awsui-motion-easing-show-paced)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion .awsui-alert{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui awsui-alert{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;display:block;overflow-wrap:break-word;word-wrap:break-word}.awsui awsui-alert[awsui-alert-hidden]{display:none}.awsui .awsui-alert{position:relative;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;border-radius:2px;border:1px solid;padding:14px 20px;background-color:#fff;background-color:var(--awsui-color-background-container-content)}.awsui .awsui-alert,.awsui .awsui-alert-body{display:-webkit-box;display:-ms-flexbox;display:flex}.awsui .awsui-alert-body{-webkit-box-flex:1;-ms-flex:1 1 0;flex:1 1 0;min-width:0}@media (max-width: 768px){.awsui .awsui-alert-body{display:block}.awsui .awsui-alert-body .awsui-alert-action-button{margin-left:0}}.awsui .awsui-alert-message{-webkit-box-flex:1;-ms-flex:1 1 0;flex:1 1 0;margin:5px 0;min-width:0}.awsui .awsui-alert-message p:first-child{padding-top:0}.awsui .awsui-alert-message p:last-child{padding-bottom:0}.awsui .awsui-alert-header,.awsui .awsui-alert-header p{font-weight:700}.awsui .awsui-alert-dismiss{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-right:-5px}.awsui .awsui-alert-dismiss-with-button{margin-left:10px}.awsui .awsui-alert-icon{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-right:10px;margin-top:5px}.awsui .awsui-alert-action-button{white-space:nowrap;margin-left:20px}.awsui .awsui-alert-type-success{border-color:#1d8102;border-color:var(--awsui-color-border-status-success);background-color:#f2f8f0;background-color:var(--awsui-color-background-status-success)}.awsui .awsui-alert-type-success .awsui-alert-icon{color:#1d8102;color:var(--awsui-color-text-status-success)}.awsui .awsui-alert-type-error{border-color:#d13212;border-color:var(--awsui-color-border-status-error);background-color:#fdf3f1;background-color:var(--awsui-color-background-status-error)}.awsui .awsui-alert-type-error .awsui-alert-icon{color:#d13212;color:var(--awsui-color-text-status-error)}.awsui .awsui-alert-type-warning{border-color:#aab7b8;border-color:var(--awsui-color-border-status-warning);background-color:#fff;background-color:var(--awsui-color-background-status-warning)}.awsui .awsui-alert-type-warning .awsui-alert-icon{color:#d13212;color:var(--awsui-color-text-status-warning)}.awsui .awsui-alert-type-info{border-color:#0073bb;border-color:var(--awsui-color-border-status-info);background-color:#f1faff;background-color:var(--awsui-color-background-status-info)}.awsui .awsui-alert-type-info .awsui-alert-icon{color:#0073bb;color:var(--awsui-color-text-status-info)}body.awsui-mezzanine-overrides #cc{padding:0}body.awsui-mezzanine-overrides #console-nav-footer{margin-top:0 !important}body.awsui-mezzanine-overrides #awsgnav #nav-menubar{border-bottom:none !important}.awsui awsui-app-layout{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif}.awsui .awsui-app-layout,.awsui awsui-app-layout{-webkit-box-sizing:border-box;box-sizing:border-box}.awsui .awsui-app-layout{position:relative;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;overflow:hidden;background-color:#fff;background-color:var(--awsui-color-background-container-content)}.awsui .awsui-app-layout__container{overflow:hidden;background-color:#f2f3f3;background-color:var(--awsui-color-background-layout-main)}.awsui .awsui-app-layout__content{overflow:auto}.awsui .awsui-app-layout__container,.awsui .awsui-app-layout__content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-sizing:border-box;box-sizing:border-box}.awsui .awsui-app-layout__content--scrollable{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.awsui .awsui-app-layout__content--scrollable .awsui-app-layout__breadcrumbs{margin-bottom:10px}.awsui .awsui-app-layout--unfocusable *{visibility:hidden}.awsui .awsui-app-layout__navigation,.awsui .awsui-app-layout__tools{overflow:auto;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;top:0;bottom:0;position:relative;z-index:1;background-color:#fff;background-color:var(--awsui-color-background-layout-panel-content);-webkit-box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);-webkit-box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));outline:none;word-wrap:break-word}.awsui .awsui-app-layout__navigation[data-awsui-focused],.awsui .awsui-app-layout__tools[data-awsui-focused]{border-radius:2px;-webkit-box-shadow:inset 0 0 0 1px #00a1c9, 0 0 0 1px #00a1c9;-webkit-box-shadow:inset 0 0 0 1px var(--awsui-color-border-item-focused),
    0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:inset 0 0 0 1px #00a1c9, 0 0 0 1px #00a1c9;box-shadow:inset 0 0 0 1px var(--awsui-color-border-item-focused),
    0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-app-layout__notifications{-ms-flex-negative:0;flex-shrink:0}.awsui .awsui-app-layout__notifications--sticky{margin-bottom:1px}.awsui .awsui-app-layout__navigation.awsui-app-layout__utils--hide,.awsui .awsui-app-layout__tools.awsui-app-layout__utils--hide{display:none}.awsui .awsui-app-layout__navigation,.awsui .awsui-app-layout__toggle--navigation{left:0}.awsui .awsui-app-layout__toggle--tools,.awsui .awsui-app-layout__tools{right:0}.awsui .awsui-app-layout__toggle--navigation,.awsui .awsui-app-layout__toggle--tools{position:absolute;z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:40px;top:0;bottom:0;right:0;background-color:#fff;background-color:var(--awsui-color-background-layout-panel-content);padding-top:5px;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer}.awsui .awsui-app-layout__toggle--navigation>.awsui-app-layout__toggle-icon,.awsui .awsui-app-layout__toggle--tools>.awsui-app-layout__toggle-icon{color:#545b64;color:var(--awsui-color-text-interactive-default)}.awsui .awsui-app-layout__toggle--navigation:hover,.awsui .awsui-app-layout__toggle--tools:hover{background-color:#eaeded;background-color:var(--awsui-color-background-layout-panel-hover)}.awsui .awsui-app-layout__navigation.awsui-app-layout--open+.awsui-app-layout__toggle--navigation{left:-40px}.awsui .awsui-app-layout__tools.awsui-app-layout--open+.awsui-app-layout__toggle--tools{right:-40px}.awsui .awsui-app-layout__navigation:not(.awsui-app-layout--open)>*,.awsui .awsui-app-layout__tools:not(.awsui-app-layout--open)>*{display:none}.awsui .awsui-app-layout__close-button{position:absolute;outline:none;right:15px;top:15px}.awsui .awsui-app-layout--mobile.awsui-app-layout{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.awsui .awsui-app-layout--mobile .awsui-app-layout__breadcrumbs{min-width:0;-webkit-box-flex:1;-ms-flex:1;flex:1;margin-left:15px;margin-right:15px}.awsui .awsui-app-layout--mobile .awsui-app-layout__toggle--mobile{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-negative:0;flex-shrink:0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:40px;z-index:1000;-webkit-box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);-webkit-box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15))}.awsui .awsui-app-layout--mobile .awsui-app-layout__toggle--mobile .awsui-app-layout__toggle-landmark>.awsui-app-layout__toggle-icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:40px;width:40px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#545b64;color:var(--awsui-color-text-interactive-default);cursor:pointer}.awsui .awsui-app-layout--mobile .awsui-app-layout__toggle--mobile .awsui-app-layout__toggle-landmark>.awsui-app-layout__toggle-icon:hover{background-color:#eaeded;background-color:var(--awsui-color-background-layout-panel-hover)}.awsui .awsui-app-layout--mobile .awsui-app-layout__toggle--mobile .awsui-app-layout__toggle-landmark:first-child .awsui-app-layout__toggle-icon{border-right:1px solid #d5dbdb;border-right:1px solid var(--awsui-color-border-layout)}.awsui .awsui-app-layout--mobile .awsui-app-layout__toggle--mobile .awsui-app-layout__toggle-landmark:last-child .awsui-app-layout__toggle-icon{border-left:1px solid #d5dbdb;border-left:1px solid var(--awsui-color-border-layout)}.awsui .awsui-app-layout--mobile .awsui-app-layout--open{position:fixed;top:0;left:0;right:0;bottom:0;margin:0}.awsui .awsui-app-layout--mobile .awsui-app-layout__content{margin-left:0}.awsui .awsui-app-layout--mobile .awsui-app-layout__navigation,.awsui .awsui-app-layout--mobile .awsui-app-layout__tools{position:fixed;-webkit-box-shadow:none;box-shadow:none;z-index:1001}.awsui .awsui-app-layout--mobile .awsui-app-layout__toggle--navigation,.awsui .awsui-app-layout--mobile .awsui-app-layout__toggle--tools{display:none}.awsui awsui-app-layout:not(.awsui-util-no-gutters) .awsui-app-layout-contentType-no-paddings:not(.awsui-app-layout--mobile) .awsui-app-layout__breadcrumbs{padding:0 40px}.awsui awsui-app-layout:not(.awsui-util-no-gutters) .awsui-app-layout:not(.awsui-app-layout-contentType-no-paddings) .awsui-app-layout__notifications:not(.awsui-app-layout__notifications--sticky){margin:0 -40px}.awsui awsui-app-layout:not(.awsui-util-no-gutters) .awsui-app-layout:not(.awsui-app-layout-contentType-no-paddings) .awsui-app-layout__content{padding:0 40px}.awsui awsui-app-layout:not(.awsui-util-no-gutters) .awsui-app-layout:not(.awsui-app-layout-contentType-no-paddings) .awsui-app-layout__content--scrollable{padding-top:20px}.awsui awsui-app-layout:not(.awsui-util-no-gutters) .awsui-app-layout:not(.awsui-app-layout-contentType-no-paddings) .awsui-app-layout__content--scrollable>div[awsui-app-layout-region='content']{padding-bottom:20px}.awsui awsui-app-layout:not(.awsui-util-no-gutters) .awsui-app-layout:not(.awsui-app-layout-contentType-no-paddings).awsui-app-layout--mobile .awsui-app-layout__notifications:not(.awsui-app-layout__notifications--sticky){margin:0 -20px}.awsui awsui-app-layout:not(.awsui-util-no-gutters) .awsui-app-layout:not(.awsui-app-layout-contentType-no-paddings).awsui-app-layout--mobile .awsui-app-layout__content{padding:0 20px}.awsui awsui-app-layout:not(.awsui-util-no-gutters) .awsui-app-layout:not(.awsui-app-layout-contentType-no-paddings).awsui-app-layout--mobile .awsui-app-layout__content--scrollable{padding-top:10px}.awsui awsui-app-layout:not(.awsui-util-no-gutters) .awsui-app-layout:not(.awsui-app-layout-contentType-no-paddings).awsui-app-layout--mobile .awsui-app-layout__content--scrollable>div[awsui-app-layout-region='content']{padding-bottom:10px}.awsui awsui-column-layout{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;display:block;word-wrap:break-word}.awsui awsui-column-layout .awsui-column-layout-columns-1 [data-awsui-column-layout-root]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui awsui-column-layout .awsui-column-layout-columns-1 [data-awsui-column-layout-root]>*{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}@media (min-width: 577px){.awsui awsui-column-layout .awsui-column-layout-columns-1 [data-awsui-column-layout-root]>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media (min-width: 769px){.awsui awsui-column-layout .awsui-column-layout-columns-1 [data-awsui-column-layout-root]>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}.awsui awsui-column-layout .awsui-column-layout-columns-2 [data-awsui-column-layout-root]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui awsui-column-layout .awsui-column-layout-columns-2 [data-awsui-column-layout-root]>*{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}@media (min-width: 577px){.awsui awsui-column-layout .awsui-column-layout-columns-2 [data-awsui-column-layout-root]>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media (min-width: 769px){.awsui awsui-column-layout .awsui-column-layout-columns-2 [data-awsui-column-layout-root]>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}}.awsui awsui-column-layout .awsui-column-layout-columns-3 [data-awsui-column-layout-root]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui awsui-column-layout .awsui-column-layout-columns-3 [data-awsui-column-layout-root]>*{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}@media (min-width: 577px){.awsui awsui-column-layout .awsui-column-layout-columns-3 [data-awsui-column-layout-root]>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}}@media (min-width: 769px){.awsui awsui-column-layout .awsui-column-layout-columns-3 [data-awsui-column-layout-root]>*{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}}.awsui awsui-column-layout .awsui-column-layout-columns-4 [data-awsui-column-layout-root]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui awsui-column-layout .awsui-column-layout-columns-4 [data-awsui-column-layout-root]>*{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}@media (min-width: 577px){.awsui awsui-column-layout .awsui-column-layout-columns-4 [data-awsui-column-layout-root]>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}}@media (min-width: 769px){.awsui awsui-column-layout .awsui-column-layout-columns-4 [data-awsui-column-layout-root]>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}}.awsui awsui-column-layout>.awsui-column-layout-vertical-borders [data-awsui-column-layout-root]>*{border-right:1px solid #eaeded;border-right:1px solid var(--awsui-color-border-divider-default)}@media (max-width: 576px){.awsui awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-1 [data-awsui-column-layout-root]>:nth-child(1n){border-right-width:0}}@media (max-width: 768px){.awsui awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-1 [data-awsui-column-layout-root]>:nth-child(1n){border-right-width:0}}@media (min-width: 769px){.awsui awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-1 [data-awsui-column-layout-root]>:nth-child(1n){border-right-width:0}}@media (max-width: 576px){.awsui awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-2 [data-awsui-column-layout-root]>:nth-child(1n){border-right-width:0}}@media (max-width: 768px){.awsui awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-2 [data-awsui-column-layout-root]>:nth-child(1n){border-right-width:0}}@media (min-width: 769px){.awsui awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-2 [data-awsui-column-layout-root]>:nth-child(2n){border-right-width:0}}@media (max-width: 576px){.awsui awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-3 [data-awsui-column-layout-root]>:nth-child(1n){border-right-width:0}}@media (max-width: 768px){.awsui awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-3 [data-awsui-column-layout-root]>:nth-child(2n){border-right-width:0}}@media (min-width: 769px){.awsui awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-3 [data-awsui-column-layout-root]>:nth-child(3n){border-right-width:0}}@media (max-width: 576px){.awsui awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-4 [data-awsui-column-layout-root]>:nth-child(1n){border-right-width:0}}@media (max-width: 768px){.awsui awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-4 [data-awsui-column-layout-root]>:nth-child(2n){border-right-width:0}}@media (min-width: 769px){.awsui awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-4 [data-awsui-column-layout-root]>:nth-child(4n){border-right-width:0}}.awsui awsui-column-layout>:not(.awsui-column-layout-vertical-borders) [data-awsui-column-layout-root]>*{border-right-width:0}.awsui awsui-column-layout awsui-column-layout>.awsui-column-layout-vertical-borders [data-awsui-column-layout-root]>*{border-right:1px solid #eaeded;border-right:1px solid var(--awsui-color-border-divider-default)}@media (max-width: 576px){.awsui awsui-column-layout awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-1 [data-awsui-column-layout-root]>:nth-child(1n){border-right-width:0}}@media (max-width: 768px){.awsui awsui-column-layout awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-1 [data-awsui-column-layout-root]>:nth-child(1n){border-right-width:0}}@media (min-width: 769px){.awsui awsui-column-layout awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-1 [data-awsui-column-layout-root]>:nth-child(1n){border-right-width:0}}@media (max-width: 576px){.awsui awsui-column-layout awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-2 [data-awsui-column-layout-root]>:nth-child(1n){border-right-width:0}}@media (max-width: 768px){.awsui awsui-column-layout awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-2 [data-awsui-column-layout-root]>:nth-child(1n){border-right-width:0}}@media (min-width: 769px){.awsui awsui-column-layout awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-2 [data-awsui-column-layout-root]>:nth-child(2n){border-right-width:0}}@media (max-width: 576px){.awsui awsui-column-layout awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-3 [data-awsui-column-layout-root]>:nth-child(1n){border-right-width:0}}@media (max-width: 768px){.awsui awsui-column-layout awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-3 [data-awsui-column-layout-root]>:nth-child(2n){border-right-width:0}}@media (min-width: 769px){.awsui awsui-column-layout awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-3 [data-awsui-column-layout-root]>:nth-child(3n){border-right-width:0}}@media (max-width: 576px){.awsui awsui-column-layout awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-4 [data-awsui-column-layout-root]>:nth-child(1n){border-right-width:0}}@media (max-width: 768px){.awsui awsui-column-layout awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-4 [data-awsui-column-layout-root]>:nth-child(2n){border-right-width:0}}@media (min-width: 769px){.awsui awsui-column-layout awsui-column-layout>.awsui-column-layout-vertical-borders.awsui-column-layout-columns-4 [data-awsui-column-layout-root]>:nth-child(4n){border-right-width:0}}.awsui awsui-column-layout>.awsui-column-layout-horizontal-borders [data-awsui-column-layout-root]>*{border-bottom:1px solid #eaeded;border-bottom:1px solid var(--awsui-color-border-divider-default)}.awsui awsui-column-layout>.awsui-column-layout-horizontal-borders [data-awsui-column-layout-root]>:last-child{border-bottom-width:0}@media (min-width: 769px){.awsui awsui-column-layout>.awsui-column-layout-horizontal-borders.awsui-column-layout-columns-2 [data-awsui-column-layout-root]>:nth-last-child(2):nth-child(odd){border-bottom-width:0}}@media (max-width: 768px){.awsui awsui-column-layout>.awsui-column-layout-horizontal-borders.awsui-column-layout-columns-3 [data-awsui-column-layout-root]>:nth-last-child(2):nth-child(odd){border-bottom-width:0}}@media (min-width: 769px){.awsui awsui-column-layout>.awsui-column-layout-horizontal-borders.awsui-column-layout-columns-3 [data-awsui-column-layout-root]>:nth-last-child(2):nth-child(3n+1),.awsui awsui-column-layout>.awsui-column-layout-horizontal-borders.awsui-column-layout-columns-3 [data-awsui-column-layout-root]>:nth-last-child(2):nth-child(3n+2),.awsui awsui-column-layout>.awsui-column-layout-horizontal-borders.awsui-column-layout-columns-3 [data-awsui-column-layout-root]>:nth-last-child(3):nth-child(3n+1){border-bottom-width:0}}@media (max-width: 768px){.awsui awsui-column-layout>.awsui-column-layout-horizontal-borders.awsui-column-layout-columns-4 [data-awsui-column-layout-root]>:nth-last-child(2):nth-child(odd){border-bottom-width:0}}@media (min-width: 769px){.awsui awsui-column-layout>.awsui-column-layout-horizontal-borders.awsui-column-layout-columns-4 [data-awsui-column-layout-root]>:nth-last-child(2):nth-child(4n+1),.awsui awsui-column-layout>.awsui-column-layout-horizontal-borders.awsui-column-layout-columns-4 [data-awsui-column-layout-root]>:nth-last-child(2):nth-child(4n+2),.awsui awsui-column-layout>.awsui-column-layout-horizontal-borders.awsui-column-layout-columns-4 [data-awsui-column-layout-root]>:nth-last-child(2):nth-child(4n+3),.awsui awsui-column-layout>.awsui-column-layout-horizontal-borders.awsui-column-layout-columns-4 [data-awsui-column-layout-root]>:nth-last-child(3):nth-child(4n+1),.awsui awsui-column-layout>.awsui-column-layout-horizontal-borders.awsui-column-layout-columns-4 [data-awsui-column-layout-root]>:nth-last-child(3):nth-child(4n+2),.awsui awsui-column-layout>.awsui-column-layout-horizontal-borders.awsui-column-layout-columns-4 [data-awsui-column-layout-root]>:nth-last-child(4):nth-child(4n+1){border-bottom-width:0}}.awsui awsui-column-layout>:not(.awsui-column-layout-horizontal-borders) [data-awsui-column-layout-root]>*{border-bottom-width:0}.awsui awsui-column-layout:not(.awsui-util-no-gutters) [data-awsui-column-layout-root]{margin:-10px}.awsui awsui-column-layout:not(.awsui-util-no-gutters) [data-awsui-column-layout-root]>*{padding:10px}.awsui awsui-column-layout:not(.awsui-util-no-gutters)+awsui-column-layout{margin-top:10px}.awsui awsui-column-layout>.awsui-column-layout-variant-text-grid{margin:-20px -10px}.awsui awsui-column-layout>.awsui-column-layout-variant-text-grid [data-awsui-column-layout-root]>*{border-left:1px solid #eaeded;border-left:1px solid var(--awsui-color-border-divider-default)}@media (max-width: 576px){.awsui awsui-column-layout>.awsui-column-layout-variant-text-grid.awsui-column-layout-columns-1 [data-awsui-column-layout-root]>:nth-child(1n+1){border-left-width:0}}@media (max-width: 768px){.awsui awsui-column-layout>.awsui-column-layout-variant-text-grid.awsui-column-layout-columns-1 [data-awsui-column-layout-root]>:nth-child(1n+1){border-left-width:0}}@media (min-width: 769px){.awsui awsui-column-layout>.awsui-column-layout-variant-text-grid.awsui-column-layout-columns-1 [data-awsui-column-layout-root]>:nth-child(1n+1){border-left-width:0}}@media (max-width: 576px){.awsui awsui-column-layout>.awsui-column-layout-variant-text-grid.awsui-column-layout-columns-2 [data-awsui-column-layout-root]>:nth-child(1n+1){border-left-width:0}}@media (max-width: 768px){.awsui awsui-column-layout>.awsui-column-layout-variant-text-grid.awsui-column-layout-columns-2 [data-awsui-column-layout-root]>:nth-child(1n+1){border-left-width:0}}@media (min-width: 769px){.awsui awsui-column-layout>.awsui-column-layout-variant-text-grid.awsui-column-layout-columns-2 [data-awsui-column-layout-root]>:nth-child(odd){border-left-width:0}}@media (max-width: 576px){.awsui awsui-column-layout>.awsui-column-layout-variant-text-grid.awsui-column-layout-columns-3 [data-awsui-column-layout-root]>:nth-child(1n+1){border-left-width:0}}@media (max-width: 768px){.awsui awsui-column-layout>.awsui-column-layout-variant-text-grid.awsui-column-layout-columns-3 [data-awsui-column-layout-root]>:nth-child(odd){border-left-width:0}}@media (min-width: 769px){.awsui awsui-column-layout>.awsui-column-layout-variant-text-grid.awsui-column-layout-columns-3 [data-awsui-column-layout-root]>:nth-child(3n+1){border-left-width:0}}@media (max-width: 576px){.awsui awsui-column-layout>.awsui-column-layout-variant-text-grid.awsui-column-layout-columns-4 [data-awsui-column-layout-root]>:nth-child(1n+1){border-left-width:0}}@media (max-width: 768px){.awsui awsui-column-layout>.awsui-column-layout-variant-text-grid.awsui-column-layout-columns-4 [data-awsui-column-layout-root]>:nth-child(odd){border-left-width:0}}@media (min-width: 769px){.awsui awsui-column-layout>.awsui-column-layout-variant-text-grid.awsui-column-layout-columns-4 [data-awsui-column-layout-root]>:nth-child(4n+1){border-left-width:0}}.awsui awsui-column-layout>.awsui-column-layout-variant-text-grid [data-awsui-column-layout-root]{margin:-10px}.awsui awsui-column-layout>.awsui-column-layout-variant-text-grid [data-awsui-column-layout-root]>*{padding:0 20px;margin:20px 0}.awsui awsui-form-field{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif}.awsui .awsui-form-field,.awsui .awsui-form-field-label,.awsui awsui-form-field{-webkit-box-sizing:border-box;box-sizing:border-box}.awsui .awsui-form-field-label{color:#16191f;color:var(--awsui-color-text-form-label);font-size:var(--font-size-1);line-height:var(--line-height-3);display:inline-block}.awsui .awsui-form-field-label a{font-weight:700;letter-spacing:0.01em}.awsui .awsui-form-field-description,.awsui .awsui-form-field-hint{color:#687078;color:var(--awsui-color-text-form-secondary, #687078);font-size:var(--font-size-0);line-height:15px}.awsui .awsui-form-field-description .awsui-icon.awsui-icon-size-normal,.awsui .awsui-form-field-hint .awsui-icon.awsui-icon-size-normal{padding-top:1px;vertical-align:middle}.awsui .awsui-form-field-description a,.awsui .awsui-form-field-hint a{font-weight:700;letter-spacing:0.01em}.awsui .awsui-form-field-secondary-control{padding:10px;min-width:100%}@media (min-width: 769px){.awsui .awsui-form-field-secondary-control{min-width:25%}}.awsui .awsui-column-layout-columns-multiple .awsui-form-field:not(.awsui-form-field-no-stretch)>.awsui-grid>.awsui-row>.awsui-form-field-control,.awsui .awsui-column-layout-columns-multiple .awsui-form-field:not(.awsui-form-field-no-stretch)>.awsui-grid>.awsui-row>.awsui-form-field-secondary-control,.awsui .awsui-form-field-stretch>.awsui-grid>.awsui-row>.awsui-form-field-control,.awsui .awsui-form-field-stretch>.awsui-grid>.awsui-row>.awsui-form-field-secondary-control{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.awsui .awsui-form-field-controls{padding-top:5px}.awsui .awsui-form-field-controls .awsui-form-field-control{min-width:0;-ms-word-break:break-all;word-break:break-word}.awsui .awsui-form-field-hints{padding-top:5px}.awsui .awsui-form-field-error{color:#d13212;color:var(--awsui-color-text-status-error);font-size:var(--font-size-0);line-height:15px;display:-webkit-box;display:-ms-flexbox;display:flex}.awsui .awsui-form-field-error a{font-weight:700;letter-spacing:0.01em}.awsui .awsui-form-field-error__content{margin-top:3px}.awsui .awsui-form-field-error>awsui-icon{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-right:5px}.awsui.awsui-motion awsui-attribute-editor [awsui-attribute-editor-region='empty']{-webkit-animation:awsui-motion-fade-in 0.18s ease-out;-webkit-animation:awsui-motion-fade-in var(--awsui-motion-duration-transition-show-paced)
    var(--awsui-motion-easing-transition-show-paced);animation:awsui-motion-fade-in 0.18s ease-out;animation:awsui-motion-fade-in var(--awsui-motion-duration-transition-show-paced)
    var(--awsui-motion-easing-transition-show-paced)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion awsui-attribute-editor [awsui-attribute-editor-region='empty']{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui awsui-attribute-editor{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;display:block}.awsui [awsui-attribute-editor-region='empty']{font-size:var(--font-size-1);line-height:var(--line-height-3);color:#687078;color:var(--awsui-color-text-empty)}.awsui .awsui-attribute-editor__additional-info{color:#687078;color:var(--awsui-color-text-form-secondary, #687078);font-size:var(--font-size-0);line-height:15px;display:block;word-wrap:break-word}.awsui .awsui-attribute-editor__additional-info .awsui-icon.awsui-icon-size-normal{padding-top:1px;vertical-align:middle}.awsui .awsui-attribute-editor__additional-info a{font-weight:700;letter-spacing:0.01em}@media (min-width: 769px){.awsui .awsui-attribute-editor__row:first-of-type .awsui-form-field-secondary-control{padding-top:35px}}.awsui .awsui-attribute-editor__row>*>.awsui-form-field{margin-top:-5px}@media (min-width: 769px){.awsui .awsui-attribute-editor__row:not(:first-child) .awsui-attribute-editor__field{margin-top:-5px}.awsui .awsui-attribute-editor__row:not(:first-child) .awsui-form-field-label{position:absolute;width:0;height:0;overflow:hidden}}.awsui .awsui-attribute-editor__divider{display:none}.awsui .awsui-attribute-editor__divider>div{border-bottom:1px solid #eaeded;border-bottom:1px solid var(--awsui-color-border-divider-default)}@media (max-width: 768px){.awsui .awsui-attribute-editor__divider{display:block}}.awsui awsui-select-dropdown{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif}.awsui .awsui-select-dropdown{display:none;position:absolute;z-index:2000;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%;background-color:#fff;background-color:var(--awsui-color-background-dropdown-item-default);outline:none;-webkit-box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);-webkit-box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box;border-top:none}@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active){.awsui .awsui-select-dropdown{border:1px solid #eaeded;border:1px solid var(--awsui-color-border-container-top, #eaeded)}}.awsui .awsui-select-dropdown .awsui-select-option{color:#16191f;color:var(--awsui-color-text-dropdown-item-default)}.awsui .awsui-select-dropdown.awsui-select-dropdown-open{display:block}.awsui .awsui-select-dropdown.awsui-select-dropdown-drop-up{bottom:100%;-webkit-box-shadow:0 -1px 1px 0 rgba(0, 28, 36, 0.3),
    1px -1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px -1px 1px 0 rgba(0, 28, 36, 0.15);-webkit-box-shadow:0 -1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px -1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px -1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));box-shadow:0 -1px 1px 0 rgba(0, 28, 36, 0.3),
    1px -1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px -1px 1px 0 rgba(0, 28, 36, 0.15);box-shadow:0 -1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px -1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px -1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15))}.awsui .awsui-select-dropdown-options-container{min-height:10px;overflow-y:auto;position:relative}.awsui .awsui-select-dropdown-option,.awsui .awsui-select-dropdown-options-group{list-style:none;padding:0}.awsui .awsui-select-dropdown-option:not(:first-child),.awsui .awsui-select-dropdown-options-group:not(:first-child){margin-top:-1px;border-top-color:#eaeded;border-top-color:var(--awsui-color-border-dropdown-item-default)}.awsui .awsui-select-dropdown-options{padding:0;margin:0;outline:none;border:none}.awsui .awsui-select-dropdown-options>:first-child{border-top:1px solid #eaeded;border-top:1px solid var(--awsui-color-border-dropdown-item-top)}.awsui .awsui-select-dropdown-option{border:1px solid transparent;position:relative;z-index:0}.awsui .awsui-select-dropdown-option:not(:first-child){margin-top:-1px;border-top-color:#eaeded;border-top-color:var(--awsui-color-border-dropdown-item-default)}.awsui .awsui-select-dropdown-option.awsui-select-dropdown-option-selected{border-color:#00a1c9;border-color:var(--awsui-color-border-dropdown-item-selected);background-color:#f1faff;background-color:var(--awsui-color-background-dropdown-item-selected);z-index:2}.awsui .awsui-select-dropdown-option.awsui-select-dropdown-option-selected .awsui-select-option{color:#16191f;color:var(--awsui-color-text-dropdown-item-highlighted)}.awsui .awsui-select-dropdown-option.awsui-select-dropdown-option-selected.awsui-select-dropdown-option-highlighted{outline:2px dotted transparent;border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-focused, #00a1c9);border-radius:2px;-webkit-box-shadow:0 0 0 1px #00a1c9;-webkit-box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 1px #00a1c9;box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);border-radius:0;margin-left:1px;margin-right:1px;margin-bottom:1px}.awsui .awsui-select-dropdown-option.awsui-select-dropdown-option-selected.awsui-select-dropdown-option-highlighted .awsui-select-option{padding-left:9px;padding-right:9px;padding-bottom:3px}.awsui .awsui-select-dropdown-option.awsui-select-dropdown-option-selected.awsui-select-dropdown-option-highlighted:first-child{margin-top:1px}.awsui .awsui-select-dropdown-option.awsui-select-dropdown-option-selected.awsui-select-dropdown-option-highlighted:first-child .awsui-select-option{padding-top:3px}.awsui .awsui-select-dropdown-option.awsui-select-dropdown-option-selectable{cursor:pointer}.awsui .awsui-select-dropdown-option.awsui-select-dropdown-option-selectable:not(.awsui-select-dropdown-option-selected).awsui-select-dropdown-option-highlighted,.awsui .awsui-select-dropdown-option.awsui-select-dropdown-option-selectable:not(.awsui-select-dropdown-option-selected):hover{z-index:1;background-color:#f2f3f3;background-color:var(--awsui-color-background-dropdown-item-hover);border-color:#879596;border-color:var(--awsui-color-border-dropdown-item-hover)}.awsui .awsui-select-dropdown-option.awsui-select-dropdown-option-selectable:not(.awsui-select-dropdown-option-selected).awsui-select-dropdown-option-highlighted .awsui-select-option,.awsui .awsui-select-dropdown-option.awsui-select-dropdown-option-selectable:not(.awsui-select-dropdown-option-selected):hover .awsui-select-option{color:#16191f;color:var(--awsui-color-text-dropdown-item-highlighted)}.awsui .awsui-select-dropdown-footer,.awsui .awsui-select-dropdown-list-bottom{padding:5px 10px;color:#687078;color:var(--awsui-color-text-dropdown-footer)}.awsui .awsui-select-dropdown-has-content .awsui-select-dropdown-footer,.awsui .awsui-select-dropdown-has-content .awsui-select-dropdown-list-bottom{border-top:1px solid #eaeded;border-top:1px solid var(--awsui-color-border-dropdown-item-default)}.awsui .awsui-select-dropdown-has-extra-region .awsui-select-dropdown-options-container:empty{min-height:0}.awsui .awsui-select-dropdown-options-group:not(:first-child){border-top:1px solid #eaeded;border-top:1px solid var(--awsui-color-border-dropdown-group)}.awsui .awsui-select-dropdown-options-group .awsui-select-dropdown-options-group-header{border-bottom:1px solid #eaeded;border-bottom:1px solid var(--awsui-color-border-dropdown-item-default);margin:0;padding:10px;color:#545b64;color:var(--awsui-color-text-dropdown-group-label);-o-text-overflow:ellipsis;text-overflow:ellipsis;overflow:hidden;display:block}.awsui .awsui-select-dropdown-options-group.awsui-select-dropdown-options-group-disabled .awsui-select-dropdown-options-group-header{color:#aab7b8;color:var(--awsui-color-text-dropdown-item-disabled);pointer-events:none}.awsui .awsui-select-dropdown-options-group .awsui-select-dropdown-option{padding-left:19px}.awsui .awsui-select-option{padding:4px 10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;width:100%;min-width:0;-webkit-box-sizing:border-box;box-sizing:border-box}.awsui .awsui-select-option.awsui-select-option-disabled{color:#aab7b8;color:var(--awsui-color-text-dropdown-item-disabled);pointer-events:none}.awsui .awsui-select-option.awsui-select-option-disabled .awsui-select-option-description,.awsui .awsui-select-option.awsui-select-option-disabled .awsui-select-option-tags{color:currentColor}.awsui .awsui-select-option.awsui-select-option-selectable{cursor:pointer}.awsui .awsui-select-option-content{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-width:0}.awsui .awsui-select-option-label-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui .awsui-select-option-label,.awsui .awsui-select-option-tag{-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui .awsui-select-option-label-prefix{font-weight:700}.awsui .awsui-select-option-label-tag{padding-left:10px;-webkit-box-flex:1;-ms-flex:auto;flex:auto;text-align:right}.awsui .awsui-select-option-label-tag:empty{display:none}.awsui .awsui-select-option-label,.awsui .awsui-select-option-label-tag,.awsui .awsui-select-option-tag{min-width:0;-ms-word-break:break-all;word-break:break-word}.awsui .awsui-select-option-description,.awsui .awsui-select-option-tags{font-size:var(--font-size-0);line-height:15px;color:#687078;color:var(--awsui-color-text-dropdown-item-secondary);-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui .awsui-select-option-tags{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.awsui .awsui-select-option-tag:not(:last-child){padding-right:20px}.awsui .awsui-select-option-icon{padding-right:10px;-ms-flex-line-pack:center;align-content:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-negative:0;flex-shrink:0}.awsui .awsui-select-option-checkbox{-ms-flex-item-align:center;align-self:center;margin-bottom:3px;padding-right:10px}.awsui .awsui-select-option-filtering-match-highlight{background-color:#f1faff;background-color:var(--awsui-color-background-dropdown-item-filter-match);color:#0073bb;color:var(--awsui-color-text-dropdown-item-filter-match);font-weight:700}.awsui.awsui-motion .awsui-select-dropdown{-webkit-animation:awsui-motion-fade-in-dropdown 135ms ease-out;-webkit-animation:awsui-motion-fade-in-dropdown var(--awsui-motion-duration-show-quick)
    var(--awsui-motion-easing-show-quick);animation:awsui-motion-fade-in-dropdown 135ms ease-out;-webkit-animation:awsui-motion-fade-in-dropdown var(--awsui-motion-duration-show-quick) var(--awsui-motion-easing-show-quick);animation:awsui-motion-fade-in-dropdown var(--awsui-motion-duration-show-quick) var(--awsui-motion-easing-show-quick)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion .awsui-select-dropdown{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui.awsui-motion .awsui-select-dropdown-options-container{-webkit-animation:awsui-motion-fade-in-0 135ms ease-out;-webkit-animation:awsui-motion-fade-in-0 var(--awsui-motion-duration-show-quick)
    var(--awsui-motion-easing-show-quick);animation:awsui-motion-fade-in-0 135ms ease-out;-webkit-animation:awsui-motion-fade-in-0 var(--awsui-motion-duration-show-quick) var(--awsui-motion-easing-show-quick);animation:awsui-motion-fade-in-0 var(--awsui-motion-duration-show-quick) var(--awsui-motion-easing-show-quick);-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion .awsui-select-dropdown-options-container{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui awsui-autosuggest{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;position:relative;display:inline-block;width:100%;box-sizing:border-box}.awsui awsui-autosuggest .awsui-autosuggest-loading{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}.awsui awsui-autosuggest .awsui-autosuggest-loading awsui-spinner{padding-right:5px}.awsui awsui-autosuggest .awsui-autosuggest-loading .awsui-autosuggest-loading-text{font-style:italic}.awsui awsui-autosuggest .awsui-select-dropdown{margin-top:1px}.awsui awsui-autosuggest .awsui-select-dropdown-drop-up{margin-top:0;margin-bottom:1px}.awsui awsui-input{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;display:inline-block;width:100%}.awsui .awsui-input,.awsui awsui-input{-webkit-box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);box-sizing:border-box}.awsui .awsui-input{padding:4px 10px;color:#16191f;color:var(--awsui-color-text-body-default);width:100%;background-color:#fff;background-color:var(--awsui-color-background-input-default);border-radius:2px;border:1px solid #aab7b8;border:1px solid var(--awsui-color-border-input-default);height:30px}.awsui .awsui-input.awsui-input-readonly{background-color:#fff;background-color:var(--awsui-color-background-input-default, #fff);border:1px solid #eaeded;border:1px solid var(--awsui-color-border-input-disabled, #eaeded)}.awsui .awsui-input:focus{outline:2px dotted transparent;border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-focused, #00a1c9);border-radius:2px;-webkit-box-shadow:0 0 0 1px #00a1c9;-webkit-box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 1px #00a1c9;box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-input:disabled{background-color:#eaeded;background-color:var(--awsui-color-background-input-disabled, #eaeded);border:1px solid #eaeded;border:1px solid var(--awsui-color-border-input-disabled, #eaeded);color:#879596;color:var(--awsui-color-text-input-disabled, #879596);cursor:auto}.awsui .awsui-input::-webkit-input-placeholder{color:#aab7b8;color:var(--awsui-color-text-input-placeholder, #aab7b8);font-style:italic}.awsui .awsui-input:-moz-placeholder,.awsui .awsui-input::-moz-placeholder{color:#aab7b8;color:var(--awsui-color-text-input-placeholder, #aab7b8);font-style:italic;opacity:1}.awsui .awsui-input:-ms-input-placeholder{color:#aab7b8;color:var(--awsui-color-text-input-placeholder, #aab7b8);font-style:italic}.awsui .awsui-input::-ms-input-placeholder{color:#aab7b8;color:var(--awsui-color-text-input-placeholder, #aab7b8);font-style:italic}.awsui .awsui-input:invalid{-webkit-box-shadow:none;box-shadow:none}.awsui .awsui-input.awsui-input-type-search{-webkit-box-sizing:border-box;box-sizing:border-box}.awsui .awsui-input.awsui-input-type-search::-ms-clear{display:none}.awsui .awsui-input.awsui-input-type-search::-webkit-search-cancel-button{display:none}.awsui .awsui-input.awsui-input-has-icon-left{padding-left:34px}.awsui .awsui-input.awsui-input-has-icon-right{padding-right:34px}.awsui .awsui-input-container{position:relative}.awsui .awsui-input-icon{position:absolute}.awsui .awsui-input-icon:not(.awsui-input-icon-hoverable){pointer-events:none}.awsui .awsui-input-icon-left{left:10px;top:5px}.awsui .awsui-input-icon-right{right:10px;top:5px;color:#545b64;color:var(--awsui-color-text-interactive-default);left:auto;pointer-events:auto}.awsui .awsui-input-icon-hoverable{cursor:pointer}.awsui .awsui-input-icon-hoverable:hover{color:#16191f;color:var(--awsui-color-text-interactive-hover)}.awsui .awsui-input.awsui-input-invalid,.awsui .awsui-invalid .awsui-input:not(.awsui-input-valid){color:#d13212;color:var(--awsui-color-text-status-error, #d13212);border-color:#d13212;border-color:var(--awsui-color-text-status-error, #d13212);padding-left:7px;border-left-width:4px}.awsui .awsui-input-has-icon-left.awsui-input-invalid,.awsui .awsui-invalid .awsui-input-has-icon-left:not(.awsui-input-valid){padding-left:31px}.awsui awsui-badge{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif}.awsui .awsui-badge-content{font-size:var(--font-size-0);line-height:15px;line-height:var(--line-height-3);display:inline-block;border-radius:16px;padding:0 7.5px;color:#fafafa;color:var(--awsui-color-text-notification-default)}.awsui .awsui-badge-color-grey{background-color:#545b64;background-color:var(--awsui-color-background-notification-grey)}.awsui .awsui-badge-color-green{background-color:#1d8102;background-color:var(--awsui-color-background-notification-green)}.awsui .awsui-badge-color-blue{background-color:#0073bb;background-color:var(--awsui-color-background-notification-blue)}.awsui .awsui-badge-color-red{background-color:#d13212;background-color:var(--awsui-color-background-notification-red)}.awsui awsui-breadcrumb-group,.awsui awsui-breadcrumb-item{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif}.awsui .awsui-breadcrumb-group{margin:0;padding:5px 0}.awsui .awsui-breadcrumb-group.awsui-breadcrumb-group-no-region .awsui-breadcrumb-link::after{display:none}.awsui .awsui-breadcrumb-group .awsui-breadcrumb-dropdown-trigger{border:none;background:none;cursor:pointer;color:#0073bb;color:var(--awsui-color-text-link-default);padding:0;margin-left:20px;font-weight:400}.awsui .awsui-breadcrumb-group .awsui-breadcrumb-dropdown-trigger:hover{text-decoration:underline}.awsui .awsui-breadcrumb-group awsui-button-dropdown{margin-left:-20px}.awsui .awsui-breadcrumb-group>div,.awsui .awsui-breadcrumb-group>ol,.awsui .awsui-breadcrumb-group>span,.awsui .awsui-breadcrumb-group>span>span{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui .awsui-breadcrumb-group>ol{-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0;margin:0;list-style:none}.awsui .awsui-breadcrumb-group>ol>li{display:inline-block;padding:0;margin:0}.awsui .awsui-breadcrumb-group .awsui-breadcrumb-ellipsis{display:none}.awsui .awsui-breadcrumb-group .awsui-breadcrumb-ellipsis awsui-icon{margin:0 10px}@media (max-width: 768px){.awsui .awsui-breadcrumb-group>div,.awsui .awsui-breadcrumb-group>span,.awsui .awsui-breadcrumb-group>span>span,.awsui .awsui-breadcrumb-group ol{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.awsui .awsui-breadcrumb-group .awsui-breadcrumb-link{overflow:hidden}.awsui .awsui-breadcrumb-group .awsui-breadcrumb-link>span{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;display:block}.awsui .awsui-breadcrumb-group .awsui-breadcrumb-ellipsis{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-negative:0;flex-shrink:0}.awsui .awsui-breadcrumb-group .awsui-breadcrumb-item,.awsui .awsui-breadcrumb-group awsui-breadcrumb-item{min-width:0}.awsui .awsui-breadcrumb-group .awsui-breadcrumb-item:not(:first-child):not(:last-child):not(:nth-last-child(2)),.awsui .awsui-breadcrumb-group awsui-breadcrumb-item:not(:first-child):not(:last-child):not(:nth-last-child(2)){display:none}.awsui .awsui-breadcrumb-group .awsui-breadcrumb-item:nth-last-child(2):not(:first-child),.awsui .awsui-breadcrumb-group awsui-breadcrumb-item:nth-last-child(2):not(:first-child){-ms-flex-negative:0;flex-shrink:0}.awsui .awsui-breadcrumb-group .awsui-breadcrumb-item:nth-last-child(2):not(:first-child) .awsui-breadcrumb-link>span,.awsui .awsui-breadcrumb-group awsui-breadcrumb-item:nth-last-child(2):not(:first-child) .awsui-breadcrumb-link>span{display:none}.awsui .awsui-breadcrumb-group .awsui-breadcrumb-item:nth-last-child(2):not(:first-child) .awsui-breadcrumb-link::after,.awsui .awsui-breadcrumb-group awsui-breadcrumb-item:nth-last-child(2):not(:first-child) .awsui-breadcrumb-link::after{content:'...'}.awsui .awsui-breadcrumb-group.awsui-breadcrumb-group-no-region .awsui-breadcrumb-item:not(:first-child):not(:last-child),.awsui .awsui-breadcrumb-group.awsui-breadcrumb-group-no-region awsui-breadcrumb-item:not(:first-child):not(:last-child){display:none}}.awsui .awsui-breadcrumb-ellipsis,.awsui .awsui-breadcrumb-item,.awsui awsui-breadcrumb-item{display:inline}.awsui .awsui-breadcrumb-ellipsis .awsui-breadcrumb,.awsui .awsui-breadcrumb-item .awsui-breadcrumb,.awsui awsui-breadcrumb-item .awsui-breadcrumb{display:-webkit-box;display:-ms-flexbox;display:flex}.awsui .awsui-breadcrumb-ellipsis .awsui-breadcrumb awsui-icon,.awsui .awsui-breadcrumb-item .awsui-breadcrumb awsui-icon,.awsui awsui-breadcrumb-item .awsui-breadcrumb awsui-icon{margin:0 10px}.awsui .awsui-breadcrumb-ellipsis:last-child awsui-icon,.awsui .awsui-breadcrumb-item:last-child awsui-icon,.awsui awsui-breadcrumb-item:last-child awsui-icon{display:none}.awsui .awsui-breadcrumb-ellipsis:last-child .awsui-breadcrumb-link,.awsui .awsui-breadcrumb-item:last-child .awsui-breadcrumb-link,.awsui awsui-breadcrumb-item:last-child .awsui-breadcrumb-link{color:#687078;color:var(--awsui-color-text-breadcrumb);text-decoration:none;cursor:default;pointer-events:none}.awsui.awsui-motion .awsui-checkbox-styled-box rect{-webkit-transition:fill 90ms linear, stroke 90ms linear;-webkit-transition:fill var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick),
    stroke var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick);-o-transition:fill 90ms linear, stroke 90ms linear;-o-transition:fill var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick),
    stroke var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick);transition:fill 90ms linear, stroke 90ms linear;transition:fill var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick),
    stroke var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion .awsui-checkbox-styled-box rect{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui.awsui-motion .awsui-checkbox-styled-box polyline{-webkit-transition:opacity 90ms linear;-webkit-transition:opacity var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick);-o-transition:opacity 90ms linear;-o-transition:opacity var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick);transition:opacity 90ms linear;transition:opacity var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion .awsui-checkbox-styled-box polyline{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui.awsui-motion .awsui-toggle-styled-box .awsui-toggle-handle{-webkit-transition:background-color 90ms cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 90ms cubic-bezier(0.165, 0.84, 0.44, 1);-webkit-transition:background-color var(--awsui-motion-duration-fast) var(--awsui-motion-easing-ease-out-quart),
    -webkit-transform var(--awsui-motion-duration-fast) var(--awsui-motion-easing-ease-out-quart);transition:background-color 90ms cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 90ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:background-color var(--awsui-motion-duration-fast) var(--awsui-motion-easing-ease-out-quart),
    -webkit-transform var(--awsui-motion-duration-fast) var(--awsui-motion-easing-ease-out-quart);-o-transition:transform 90ms cubic-bezier(0.165, 0.84, 0.44, 1),
    background-color 90ms cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:transform var(--awsui-motion-duration-fast) var(--awsui-motion-easing-ease-out-quart),
    background-color var(--awsui-motion-duration-fast) var(--awsui-motion-easing-ease-out-quart);transition:transform 90ms cubic-bezier(0.165, 0.84, 0.44, 1),
    background-color 90ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:transform var(--awsui-motion-duration-fast) var(--awsui-motion-easing-ease-out-quart),
    background-color var(--awsui-motion-duration-fast) var(--awsui-motion-easing-ease-out-quart);transition:transform 90ms cubic-bezier(0.165, 0.84, 0.44, 1),
    background-color 90ms cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 90ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:transform var(--awsui-motion-duration-fast) var(--awsui-motion-easing-ease-out-quart),
    background-color var(--awsui-motion-duration-fast) var(--awsui-motion-easing-ease-out-quart),
    -webkit-transform var(--awsui-motion-duration-fast) var(--awsui-motion-easing-ease-out-quart)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion .awsui-toggle-styled-box .awsui-toggle-handle{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui awsui-checkbox,.awsui awsui-toggle{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif}.awsui awsui-checkbox{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}.awsui awsui-checkbox+awsui-checkbox{margin-top:5px}.awsui .awsui-checkbox{display:-webkit-box;display:-ms-flexbox;display:flex}.awsui .awsui-checkbox-native-input{opacity:0;position:absolute;z-index:1}.awsui .awsui-checkbox-native-input[data-awsui-focused]+div{outline:2px dotted transparent;outline-offset:1px}.awsui .awsui-checkbox-native-input[data-awsui-focused]+div::before{content:' ';display:block;position:absolute;left:-2px;top:-2px;width:calc(100% + 4px);height:calc(100% + 4px);border-radius:2px;-webkit-box-shadow:0 0 0 2px #00a1c9;-webkit-box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 2px #00a1c9;box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-checkbox-description{color:#687078;color:var(--awsui-color-text-form-secondary, #687078);font-size:var(--font-size-0);line-height:15px;padding-bottom:5px}.awsui .awsui-checkbox-description .awsui-icon.awsui-icon-size-normal{padding-top:1px;vertical-align:middle}.awsui .awsui-checkbox-description,.awsui .awsui-checkbox-label{margin-left:10px;white-space:normal}.awsui .awsui-checkbox-description:empty,.awsui .awsui-checkbox-label:empty{display:none}.awsui .awsui-checkbox-disabled,.awsui .awsui-checkbox-disabled .awsui-checkbox-description{color:#aab7b8;color:var(--awsui-color-text-control-disabled)}.awsui .awsui-checkbox-styled-box{-ms-flex-negative:0;flex-shrink:0;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.awsui .awsui-checkbox-styled-box>svg{position:absolute}.awsui .awsui-checkbox .awsui-checkbox-native-input,.awsui .awsui-checkbox .awsui-checkbox-styled-box{margin-top:3px;height:14px;width:14px}.awsui .awsui-checkbox .awsui-checkbox-styled-box>svg{height:14px;width:14px}.awsui .awsui-checkbox .awsui-checkbox-styled-box rect{fill:#fff;fill:var(--awsui-color-background-control-default);stroke:#aab7b8;stroke:var(--awsui-color-border-control-default);stroke-width:1}.awsui .awsui-checkbox .awsui-checkbox-styled-box polyline{stroke:#fff;stroke:var(--awsui-color-foreground-control-default);stroke-width:2;fill:none;opacity:0}.awsui .awsui-checkbox.awsui-checkbox-checked rect{fill:#0073bb;fill:var(--awsui-color-background-control-checked);stroke:#0073bb;stroke:var(--awsui-color-border-control-checked)}.awsui .awsui-checkbox.awsui-checkbox-checked polyline{opacity:1}.awsui .awsui-checkbox.awsui-checkbox-indeterminate rect{fill:#0073bb;fill:var(--awsui-color-background-control-checked);stroke:#0073bb;stroke:var(--awsui-color-border-control-checked)}.awsui .awsui-checkbox.awsui-checkbox-indeterminate polyline{opacity:1}.awsui .awsui-checkbox.awsui-checkbox-disabled rect{fill:#d5dbdb;fill:var(--awsui-color-background-control-disabled);stroke:#d5dbdb;stroke:var(--awsui-color-border-control-disabled)}.awsui .awsui-checkbox.awsui-checkbox-disabled polyline{stroke:#fff;stroke:var(--awsui-color-foreground-control-disabled)}.awsui awsui-toggle{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}.awsui awsui-toggle+awsui-toggle{margin-top:5px}.awsui .awsui-toggle{display:-webkit-box;display:-ms-flexbox;display:flex}.awsui .awsui-toggle-native-input{opacity:0;position:absolute;z-index:1}.awsui .awsui-toggle-native-input[data-awsui-focused]+div{outline:2px dotted transparent;outline-offset:1px}.awsui .awsui-toggle-native-input[data-awsui-focused]+div::before{content:' ';display:block;position:absolute;left:-2px;top:-2px;width:calc(100% + 4px);height:calc(100% + 4px);border-radius:2px;-webkit-box-shadow:0 0 0 2px #00a1c9;-webkit-box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 2px #00a1c9;box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-toggle-description{color:#687078;color:var(--awsui-color-text-form-secondary, #687078);font-size:var(--font-size-0);line-height:15px;padding-bottom:5px}.awsui .awsui-toggle-description .awsui-icon.awsui-icon-size-normal{padding-top:1px;vertical-align:middle}.awsui .awsui-toggle-description,.awsui .awsui-toggle-label{margin-left:10px;white-space:normal}.awsui .awsui-toggle-description:empty,.awsui .awsui-toggle-label:empty{display:none}.awsui .awsui-toggle-disabled,.awsui .awsui-toggle-disabled .awsui-toggle-description{color:#aab7b8;color:var(--awsui-color-text-control-disabled)}.awsui .awsui-toggle-styled-box{-ms-flex-negative:0;flex-shrink:0;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.awsui .awsui-toggle-styled-box>svg{position:absolute}.awsui awsui-toggle>label .awsui-toggle-native-input,.awsui awsui-toggle>label .awsui-toggle-styled-box{margin-top:2px;height:16px;width:24px}.awsui awsui-toggle>label .awsui-toggle-styled-box{position:relative;background:#545b64;background:var(--awsui-color-background-toggle-default);border-radius:8px}.awsui awsui-toggle>label .awsui-toggle-styled-box .awsui-toggle-handle{position:absolute;border-radius:6px;background:#fff;background:var(--awsui-color-foreground-control-default);-webkit-box-shadow:1px 1px rgba(0, 0, 0, 0.25);box-shadow:1px 1px rgba(0, 0, 0, 0.25);width:12px;height:12px;top:2px;left:2px}.awsui awsui-toggle>label.awsui-toggle-checked .awsui-toggle-styled-box{background:#0073bb;background:var(--awsui-color-background-control-checked)}.awsui awsui-toggle>label.awsui-toggle-checked .awsui-toggle-handle{-webkit-transform:translateX(8px);transform:translateX(8px)}.awsui awsui-toggle>label.awsui-toggle-disabled .awsui-toggle-styled-box{background:#d5dbdb;background:var(--awsui-color-background-control-disabled)}.awsui awsui-toggle>label.awsui-toggle-disabled .awsui-toggle-styled-box .awsui-toggle-handle{background:#fff;background:var(--awsui-color-foreground-control-disabled);-webkit-box-shadow:none;box-shadow:none}.awsui awsui-toggle>label.awsui-toggle-disabled.awsui-toggle-checked .awsui-toggle-styled-box{background:#99cbe4;background:var(--awsui-color-background-toggle-checked-disabled)}body.awsui-modal-open{overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box}@-webkit-keyframes awsui-modal-slide-up{0%{-webkit-transform:translateY(10px);transform:translateY(10px)}to{-webkit-transform:translate(0);transform:translate(0)}}@keyframes awsui-modal-slide-up{0%{-webkit-transform:translateY(10px);transform:translateY(10px)}to{-webkit-transform:translate(0);transform:translate(0)}}.awsui.awsui-motion .awsui-modal-dialog{-webkit-animation:awsui-modal-slide-up 0.18s ease-out, awsui-motion-fade-in-0 0.18s ease-out;-webkit-animation:awsui-modal-slide-up var(--awsui-motion-duration-slow) ease-out,
    awsui-motion-fade-in-0 var(--awsui-motion-duration-slow) ease-out;animation:awsui-modal-slide-up 0.18s ease-out, awsui-motion-fade-in-0 0.18s ease-out;animation:awsui-modal-slide-up var(--awsui-motion-duration-slow) ease-out,
    awsui-motion-fade-in-0 var(--awsui-motion-duration-slow) ease-out;-webkit-animation-delay:90ms;-webkit-animation-delay:var(--awsui-motion-duration-fast);animation-delay:90ms;animation-delay:var(--awsui-motion-duration-fast);-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion .awsui-modal-dialog{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui.awsui-motion .awsui-modal-overlay{-webkit-animation:awsui-motion-fade-in 0.27s ease-out;-webkit-animation:awsui-motion-fade-in var(--awsui-motion-duration-extra-slow) ease-out;animation:awsui-motion-fade-in 0.27s ease-out;animation:awsui-motion-fade-in var(--awsui-motion-duration-extra-slow) ease-out}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion .awsui-modal-overlay{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui awsui-modal{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif}.awsui .awsui-modal-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;justify-items:center;bottom:0;left:0;right:0;top:0;position:fixed;z-index:5000;outline:0;overflow:hidden}.awsui .awsui-modal-container.awsui-modal-expandtofit{overflow:auto;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.awsui .awsui-modal-dialog{position:relative;z-index:5000;-webkit-box-sizing:border-box;box-sizing:border-box;outline:none;margin:10px auto;width:calc(100vw - 20px);max-width:600px}.awsui .awsui-modal-dialog.awsui-modal-size-small{max-width:320px}.awsui .awsui-modal-dialog.awsui-modal-size-large{max-width:820px}@media (min-width: 680px){.awsui .awsui-modal-dialog.awsui-modal-size-max{max-width:calc(100vw - 200px);margin:30px auto}}.awsui .awsui-modal-dialog.awsui-modal-expandtofit{position:static;top:0;-webkit-transform:translate(0);transform:translate(0);margin:60px auto}.awsui .awsui-modal-overlay{background-color:rgba(242, 243, 243, 0.9);background-color:var(--awsui-color-background-modal-overlay);position:fixed;z-index:4999;right:0;top:0;bottom:0;left:0}.awsui .awsui-modal-content.awsui-util-container{margin-bottom:0}.awsui .awsui-modal-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.awsui .awsui-modal-title{font-weight:700;min-width:0;-ms-word-break:break-all;word-break:break-word;color:#16191f;color:var(--awsui-color-text-heading-default);-webkit-box-flex:1;-ms-flex:auto;flex:auto}.awsui .awsui-modal-dismiss-control{outline:none;margin:-5px -5px -5px 0;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.awsui .awsui-modal-body:not(.awsui-modal-expandtofit){overflow-y:auto;max-height:calc(100vh - 200px)}@media (min-height: 680px){.awsui .awsui-modal-body:not(.awsui-modal-expandtofit){max-height:calc(100vh - 300px)}}.awsui .awsui-modal-footer::after{content:'';display:table;clear:both}.awsui .awsui-modal-hidden.awsui-modal-container,.awsui .awsui-modal-hidden.awsui-modal-overlay{display:none}.awsui awsui-radio-button,.awsui awsui-radio-group{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;min-width:0;-ms-word-break:break-all;word-break:break-word;display:block}.awsui awsui-radio-group awsui-radio-button+awsui-radio-button{margin-top:5px}.awsui awsui-radio-group awsui-radio-button:last-child .awsui-radio-button-description{padding-bottom:0}.awsui .awsui-radio-button,.awsui .awsui-radio-button-label{display:-webkit-box;display:-ms-flexbox;display:flex}.awsui .awsui-radio-button-label{position:relative}.awsui .awsui-radio-button-content{word-wrap:break-word;max-width:100%;overflow:hidden}.awsui .awsui-radio-button-description,.awsui .awsui-radio-button-label-text{padding-left:10px}.awsui .awsui-radio-button-description{color:#687078;color:var(--awsui-color-text-form-secondary, #687078);font-size:var(--font-size-0);line-height:15px;padding-bottom:5px}.awsui .awsui-radio-button-description .awsui-icon.awsui-icon-size-normal{padding-top:1px;vertical-align:middle}.awsui .awsui-radio-button-styled-button,.awsui .awsui-radio-native-input{margin-top:3px;height:14px;width:14px;min-height:14px;min-width:14px}.awsui .awsui-radio-native-input{position:absolute;opacity:0;z-index:1}.awsui .awsui-radio-native-input[data-awsui-focused]+div{outline:2px dotted transparent;outline-offset:1px}.awsui .awsui-radio-native-input[data-awsui-focused]+div::before{content:' ';display:block;position:absolute;left:-2px;top:-2px;width:calc(100% + 4px);height:calc(100% + 4px);border-radius:50%;-webkit-box-shadow:0 0 0 2px #00a1c9;-webkit-box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 2px #00a1c9;box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-radio-button-styled-button{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.awsui .awsui-radio-button-styled-button>svg{height:14px;width:14px;position:absolute}.awsui .awsui-radio-button-styled-circle{stroke:#aab7b8;stroke:var(--awsui-color-border-control-default);fill:#fff;fill:var(--awsui-color-background-control-default)}.awsui .awsui-radio-button-styled-circle-checked{stroke:#0073bb;stroke:var(--awsui-color-background-control-checked);fill:#fff;fill:var(--awsui-color-foreground-control-default);opacity:0}.awsui input:checked+.awsui-radio-button-styled-button .awsui-radio-button-styled-circle-checked{opacity:1}.awsui .awsui-radio-button-disabled,.awsui .awsui-radio-button-disabled .awsui-radio-button-description{color:#aab7b8;color:var(--awsui-color-text-control-disabled)}.awsui .awsui-radio-button-disabled input+.awsui-radio-button-styled-button .awsui-radio-button-styled-circle{stroke:#d5dbdb;stroke:var(--awsui-color-background-control-disabled)}.awsui .awsui-radio-button-disabled input:not(:checked)+.awsui-radio-button-styled-button .awsui-radio-button-styled-circle{fill:#d5dbdb;fill:var(--awsui-color-background-control-disabled)}.awsui .awsui-radio-button-disabled .awsui-radio-button-styled-button .awsui-radio-button-styled-circle-checked{fill:#fff;fill:var(--awsui-color-foreground-control-disabled);stroke:#d5dbdb;stroke:var(--awsui-color-background-control-disabled)}.awsui .awsui-tiles{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;min-width:0;-ms-word-break:break-all;word-break:break-word;display:block}.awsui .awsui-tiles__columns{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:-10px}.awsui .awsui-tiles__columns--1>*{margin:10px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:0 0;flex:0 0;-ms-flex-preferred-size:calc(100% - 20px);flex-basis:calc(100% - 20px);max-width:calc(100% - 20px)}@media (min-width: 577px){.awsui .awsui-tiles__columns--1>*{-webkit-box-flex:0;-ms-flex:0 0;flex:0 0;-ms-flex-preferred-size:calc(100% - 20px);flex-basis:calc(100% - 20px);max-width:calc(100% - 20px)}}@media (min-width: 769px){.awsui .awsui-tiles__columns--1>*{-webkit-box-flex:0;-ms-flex:0 0;flex:0 0;-ms-flex-preferred-size:calc(100% - 20px);flex-basis:calc(100% - 20px);max-width:calc(100% - 20px)}}.awsui .awsui-tiles__columns--2>*{margin:10px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:0 0;flex:0 0;-ms-flex-preferred-size:calc(100% - 20px);flex-basis:calc(100% - 20px);max-width:calc(100% - 20px)}@media (min-width: 577px){.awsui .awsui-tiles__columns--2>*{-webkit-box-flex:0;-ms-flex:0 0;flex:0 0;-ms-flex-preferred-size:calc(100% - 20px);flex-basis:calc(100% - 20px);max-width:calc(100% - 20px)}}@media (min-width: 769px){.awsui .awsui-tiles__columns--2>*{-webkit-box-flex:0;-ms-flex:0 0;flex:0 0;-ms-flex-preferred-size:calc(50% - 20px);flex-basis:calc(50% - 20px);max-width:calc(50% - 20px)}}.awsui .awsui-tiles__columns--3>*{margin:10px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:0 0;flex:0 0;-ms-flex-preferred-size:calc(100% - 20px);flex-basis:calc(100% - 20px);max-width:calc(100% - 20px)}@media (min-width: 577px){.awsui .awsui-tiles__columns--3>*{-webkit-box-flex:0;-ms-flex:0 0;flex:0 0;-ms-flex-preferred-size:calc(50% - 20px);flex-basis:calc(50% - 20px);max-width:calc(50% - 20px)}}@media (min-width: 769px){.awsui .awsui-tiles__columns--3>*{-webkit-box-flex:0;-ms-flex:0 0;flex:0 0;-ms-flex-preferred-size:calc(33.33333% - 20px);flex-basis:calc(33.33333% - 20px);max-width:calc(33.33333% - 20px)}}.awsui .awsui-tiles__columns--4>*{margin:10px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:0 0;flex:0 0;-ms-flex-preferred-size:calc(100% - 20px);flex-basis:calc(100% - 20px);max-width:calc(100% - 20px)}@media (min-width: 577px){.awsui .awsui-tiles__columns--4>*{-webkit-box-flex:0;-ms-flex:0 0;flex:0 0;-ms-flex-preferred-size:calc(50% - 20px);flex-basis:calc(50% - 20px);max-width:calc(50% - 20px)}}@media (min-width: 769px){.awsui .awsui-tiles__columns--4>*{-webkit-box-flex:0;-ms-flex:0 0;flex:0 0;-ms-flex-preferred-size:calc(25% - 20px);flex-basis:calc(25% - 20px);max-width:calc(25% - 20px)}}.awsui .awsui-tiles__tile-container{-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #aab7b8;border:1px solid var(--awsui-color-border-control-default);border-radius:2px;padding:10px 15px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.awsui .awsui-tiles__tile-container--selected{border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-selected);background:#f1faff;background:var(--awsui-color-background-item-selected)}.awsui .awsui-tiles__tile-container--disabled{border:1px solid transparent;border:1px solid var(--awsui-color-border-tiles-disabled);background:#eaeded;background:var(--awsui-color-background-tiles-disabled)}.awsui .awsui-tiles__control{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;margin-bottom:10px}.awsui .awsui-tiles__control--no-image{margin-bottom:0}.awsui .awsui-tiles__image{text-align:center;-webkit-box-flex:0;-ms-flex:none;flex:none}.awsui .awsui-tiles__image img{max-width:100%}.awsui .awsui-tiles__image--disabled img{opacity:0.3}.awsui .awsui-invalid .awsui-tiles__tile-container:not(.awsui-tiles__tile-container-valid),.awsui .awsui-tiles__tile-container.awsui-tiles__tile-container-invalid{color:#d13212;color:var(--awsui-color-text-status-error, #d13212);border-color:#d13212;border-color:var(--awsui-color-text-status-error, #d13212);padding-left:7px;border-left-width:4px}.awsui.awsui-motion .awsui-tiles__tile-container{-webkit-transition:border-color 90ms linear, background-color 90ms linear;-webkit-transition:border-color var(--awsui-motion-duration-transition-quick)
    var(--awsui-motion-easing-transition-quick),
    background-color var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick);-o-transition:border-color 90ms linear, background-color 90ms linear;-o-transition:border-color var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick),
    background-color var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick);transition:border-color 90ms linear, background-color 90ms linear;-webkit-transition:border-color var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick),
    background-color var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick);transition:border-color var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick),
    background-color var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion .awsui-tiles__tile-container{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui.awsui-motion .awsui-radio-button-styled-circle-checked{-webkit-transition:opacity 90ms linear;-webkit-transition:opacity var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick);-o-transition:opacity 90ms linear;-o-transition:opacity var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick);transition:opacity 90ms linear;transition:opacity var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion .awsui-radio-button-styled-circle-checked{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui .awsui-token{border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-selected);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;background:#f1faff;background:var(--awsui-color-background-item-selected);border-radius:2px;color:#16191f;color:var(--awsui-color-text-body-default)}.awsui .awsui-token.awsui-token-disabled{border-color:#d5dbdb;border-color:var(--awsui-color-border-control-disabled);background-color:#fff;background-color:var(--awsui-color-background-container-content);color:#aab7b8;color:var(--awsui-color-text-disabled);pointer-events:none}.awsui .awsui-token.awsui-token-disabled .awsui-token-dismiss{color:#aab7b8;color:var(--awsui-color-text-interactive-disabled)}.awsui .awsui-token.awsui-token-disabled .awsui-token-dismiss:hover{cursor:auto;color:#aab7b8;color:var(--awsui-color-text-interactive-disabled)}.awsui .awsui-token .awsui-token-dismiss{margin:3px 3px 0 -3px;border:1px solid transparent;padding:0 2px;color:#545b64;color:var(--awsui-color-text-interactive-default);background-color:transparent}.awsui .awsui-token .awsui-token-dismiss:focus{outline:none}.awsui .awsui-token .awsui-token-dismiss[data-awsui-focused]{outline:2px dotted transparent;border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-focused, #00a1c9);border-radius:2px;-webkit-box-shadow:0 0 0 1px #00a1c9;-webkit-box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 1px #00a1c9;box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-token .awsui-token-dismiss:hover{cursor:pointer;color:#16191f;color:var(--awsui-color-text-interactive-hover)}.awsui awsui-token-group{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif}.awsui .awsui-token-group-horizontal{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui .awsui-token-group-horizontal>*{margin-top:10px;margin-right:10px}.awsui .awsui-token-group-vertical>*{margin-top:10px}.awsui awsui-table{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif}.awsui awsui-table .awsui-table-variant-default{-webkit-box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);-webkit-box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));border-top:1px solid #eaeded;border-top:1px solid var(--awsui-color-border-container-top, #eaeded);border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box}@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active){.awsui awsui-table .awsui-table-variant-default{border:1px solid #eaeded;border:1px solid var(--awsui-color-border-container-top, #eaeded)}}.awsui awsui-table .awsui-table-container{overflow-x:auto;position:relative;width:100%}.awsui awsui-table .awsui-table-inner{position:relative}.awsui awsui-table .awsui-table-container>table,.awsui awsui-table .awsui-table-header-copy{min-width:100%;color:#16191f;color:var(--awsui-color-text-body-default);border-spacing:0;background-color:#fff;background-color:var(--awsui-color-background-container-content)}.awsui awsui-table .awsui-table-container>table.awsui-table-nowrap td:not(.awsui-table-selection-area),.awsui awsui-table .awsui-table-container>table.awsui-table-nowrap th .awsui-table-header-content:not(.awsui-table-selection-area),.awsui awsui-table .awsui-table-header-copy.awsui-table-nowrap td:not(.awsui-table-selection-area),.awsui awsui-table .awsui-table-header-copy.awsui-table-nowrap th .awsui-table-header-content:not(.awsui-table-selection-area){white-space:nowrap;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.awsui awsui-table .awsui-table-container>table thead>tr>th,.awsui awsui-table .awsui-table-header-copy thead>tr>th{position:relative}.awsui awsui-table .awsui-table-container>table thead>tr>*,.awsui awsui-table .awsui-table-header-copy thead>tr>*{text-align:left;padding:3px 10px;border-bottom:1px solid #eaeded;border-bottom:1px solid var(--awsui-color-border-divider-default);-webkit-box-sizing:border-box;box-sizing:border-box;min-height:41px;background:#fafafa;background:var(--awsui-color-background-container-header);word-break:keep-all}.awsui awsui-table .awsui-table-container>table thead>tr>[style*='width:'],.awsui awsui-table .awsui-table-header-copy thead>tr>[style*='width:']{word-wrap:break-word;word-break:normal}.awsui awsui-table .awsui-table-container>table thead>tr>* .awsui-table-header-content,.awsui awsui-table .awsui-table-header-copy thead>tr>* .awsui-table-header-content{padding:10px;border:1px solid transparent;display:block;position:relative;color:#545b64;color:var(--awsui-color-text-column-header);font-weight:700}.awsui awsui-table .awsui-table-container>table thead>tr>.awsui-table-selection-area,.awsui awsui-table .awsui-table-header-copy thead>tr>.awsui-table-selection-area{padding-right:20px;padding-left:20px}.awsui awsui-table .awsui-table-container>table thead>tr>:not(:first-child)::before,.awsui awsui-table .awsui-table-header-copy thead>tr>:not(:first-child)::before{content:'';position:absolute;left:0;bottom:25%;height:50%;border-left:1px solid #eaeded;border-left:1px solid var(--awsui-color-border-divider-default);-webkit-box-sizing:border-box;box-sizing:border-box}.awsui awsui-table .awsui-table-container>table thead>tr>.awsui-table-column-sortable .awsui-table-header-content,.awsui awsui-table .awsui-table-header-copy thead>tr>.awsui-table-column-sortable .awsui-table-header-content{cursor:pointer;padding-right:25px;text-decoration:none;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;background:none;text-align:left}.awsui awsui-table .awsui-table-container>table thead>tr>.awsui-table-column-sortable .awsui-table-header-content:focus,.awsui awsui-table .awsui-table-header-copy thead>tr>.awsui-table-column-sortable .awsui-table-header-content:focus{outline:none;text-decoration:none}.awsui awsui-table .awsui-table-container>table thead>tr>.awsui-table-column-sortable .awsui-table-header-content[data-awsui-focused],.awsui awsui-table .awsui-table-header-copy thead>tr>.awsui-table-column-sortable .awsui-table-header-content[data-awsui-focused]{outline:2px dotted transparent;border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-focused, #00a1c9);border-radius:2px;-webkit-box-shadow:0 0 0 1px #00a1c9;-webkit-box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 1px #00a1c9;box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);text-decoration:none}.awsui awsui-table .awsui-table-container>table thead>tr>.awsui-table-column-sortable .awsui-table-header-content:hover,.awsui awsui-table .awsui-table-header-copy thead>tr>.awsui-table-column-sortable .awsui-table-header-content:hover{text-decoration:none}.awsui awsui-table .awsui-table-container>table thead>tr>.awsui-table-column-sortable .awsui-table-sorting-icon,.awsui awsui-table .awsui-table-header-copy thead>tr>.awsui-table-column-sortable .awsui-table-sorting-icon{position:absolute;right:5px}.awsui awsui-table .awsui-table-container>table thead>tr>.awsui-table-column-sortable.awsui-table-column-sortable-disabled .awsui-table-header-content,.awsui awsui-table .awsui-table-header-copy thead>tr>.awsui-table-column-sortable.awsui-table-column-sortable-disabled .awsui-table-header-content{cursor:default;color:#545b64;color:var(--awsui-color-text-column-header)}.awsui awsui-table .awsui-table-container>table thead>tr>.awsui-table-column-sortable.awsui-table-column-sortable-disabled .awsui-table-sorting-icon,.awsui awsui-table .awsui-table-header-copy thead>tr>.awsui-table-column-sortable.awsui-table-column-sortable-disabled .awsui-table-sorting-icon{visibility:hidden}.awsui awsui-table .awsui-table-container>table thead>tr>.awsui-table-column-sortable.awsui-table-column-sortable-disabled.awsui-table-column-sorted .awsui-table-sorting-icon,.awsui awsui-table .awsui-table-header-copy thead>tr>.awsui-table-column-sortable.awsui-table-column-sortable-disabled.awsui-table-column-sorted .awsui-table-sorting-icon{visibility:visible;color:#aab7b8;color:var(--awsui-color-text-interactive-disabled)}.awsui awsui-table .awsui-table-container>table thead>tr>.awsui-table-column-sortable.awsui-table-column-sortable-enabled .awsui-table-header-content,.awsui awsui-table .awsui-table-header-copy thead>tr>.awsui-table-column-sortable.awsui-table-column-sortable-enabled .awsui-table-header-content{color:#545b64;color:var(--awsui-color-text-column-header)}.awsui awsui-table .awsui-table-container>table thead>tr>.awsui-table-column-sortable.awsui-table-column-sortable-enabled .awsui-table-header-content .awsui-table-sorting-icon,.awsui awsui-table .awsui-table-header-copy thead>tr>.awsui-table-column-sortable.awsui-table-column-sortable-enabled .awsui-table-header-content .awsui-table-sorting-icon{color:#879596;color:var(--awsui-color-text-icon-caret)}.awsui awsui-table .awsui-table-container>table thead>tr>.awsui-table-column-sortable.awsui-table-column-sortable-enabled .awsui-table-header-content:hover,.awsui awsui-table .awsui-table-container>table thead>tr>.awsui-table-column-sortable.awsui-table-column-sortable-enabled .awsui-table-header-content:hover .awsui-table-sorting-icon,.awsui awsui-table .awsui-table-header-copy thead>tr>.awsui-table-column-sortable.awsui-table-column-sortable-enabled .awsui-table-header-content:hover,.awsui awsui-table .awsui-table-header-copy thead>tr>.awsui-table-column-sortable.awsui-table-column-sortable-enabled .awsui-table-header-content:hover .awsui-table-sorting-icon{color:#16191f;color:var(--awsui-color-text-interactive-hover)}.awsui awsui-table .awsui-table-container>table thead>tr>.awsui-table-column-sortable.awsui-table-column-sortable-enabled.awsui-table-column-sorted .awsui-table-header-content,.awsui awsui-table .awsui-table-container>table thead>tr>.awsui-table-column-sortable.awsui-table-column-sortable-enabled.awsui-table-column-sorted .awsui-table-header-content .awsui-table-sorting-icon,.awsui awsui-table .awsui-table-header-copy thead>tr>.awsui-table-column-sortable.awsui-table-column-sortable-enabled.awsui-table-column-sorted .awsui-table-header-content,.awsui awsui-table .awsui-table-header-copy thead>tr>.awsui-table-column-sortable.awsui-table-column-sortable-enabled.awsui-table-column-sorted .awsui-table-header-content .awsui-table-sorting-icon{color:#16191f;color:var(--awsui-color-text-interactive-active)}.awsui awsui-table .awsui-table-container>table .awsui-table-selection-area,.awsui awsui-table .awsui-table-header-copy .awsui-table-selection-area{cursor:pointer;padding-top:8px;padding-bottom:8px;width:5.415px;-webkit-box-sizing:border-box;box-sizing:border-box}.awsui awsui-table .awsui-table-container>table .awsui-table-selection-area-disabled,.awsui awsui-table .awsui-table-container>table .awsui-table-selection-area:empty,.awsui awsui-table .awsui-table-header-copy .awsui-table-selection-area-disabled,.awsui awsui-table .awsui-table-header-copy .awsui-table-selection-area:empty{cursor:auto}.awsui awsui-table .awsui-table-container>table .awsui-table-selection-area awsui-checkbox,.awsui awsui-table .awsui-table-container>table .awsui-table-selection-area awsui-radio-button,.awsui awsui-table .awsui-table-header-copy .awsui-table-selection-area awsui-checkbox,.awsui awsui-table .awsui-table-header-copy .awsui-table-selection-area awsui-radio-button{display:inline-block}.awsui awsui-table .awsui-table-container>table>tbody>tr,.awsui awsui-table .awsui-table-header-copy>tbody>tr{-webkit-box-sizing:border-box;box-sizing:border-box}.awsui awsui-table .awsui-table-container>table>tbody>tr>td,.awsui awsui-table .awsui-table-header-copy>tbody>tr>td{border-bottom:1px solid #eaeded;border-bottom:1px solid var(--awsui-color-border-divider-default);border-top:1px solid transparent;padding:4px 20px;-webkit-box-sizing:border-box;box-sizing:border-box;word-wrap:break-word}.awsui awsui-table .awsui-table-container>table>tbody>tr.awsui-table-row-merged>td,.awsui awsui-table .awsui-table-header-copy>tbody>tr.awsui-table-row-merged>td{text-align:center}.awsui awsui-table .awsui-table-container>table>tbody>tr.awsui-table-row-merged>td>[awsui-table-region='empty'],.awsui awsui-table .awsui-table-container>table>tbody>tr.awsui-table-row-merged>td>[awsui-table-region='noMatch'],.awsui awsui-table .awsui-table-header-copy>tbody>tr.awsui-table-row-merged>td>[awsui-table-region='empty'],.awsui awsui-table .awsui-table-header-copy>tbody>tr.awsui-table-row-merged>td>[awsui-table-region='noMatch']{color:#687078;color:var(--awsui-color-text-empty)}.awsui awsui-table .awsui-table-container>table>tbody>tr.awsui-table-row-selected>td,.awsui awsui-table .awsui-table-header-copy>tbody>tr.awsui-table-row-selected>td{background-color:#f1faff;background-color:var(--awsui-color-background-item-selected);border-bottom:1px solid #00a1c9;border-bottom:1px solid var(--awsui-color-border-item-selected);border-top:1px solid #00a1c9;border-top:1px solid var(--awsui-color-border-item-selected)}.awsui awsui-table .awsui-table-container>table>tbody>tr.awsui-table-row-selected>td:first-child,.awsui awsui-table .awsui-table-header-copy>tbody>tr.awsui-table-row-selected>td:first-child{border-left:1px solid #00a1c9;border-left:1px solid var(--awsui-color-border-item-selected)}.awsui awsui-table .awsui-table-container>table>tbody>tr.awsui-table-row-selected>td:last-child,.awsui awsui-table .awsui-table-header-copy>tbody>tr.awsui-table-row-selected>td:last-child{border-right:1px solid #00a1c9;border-right:1px solid var(--awsui-color-border-item-selected)}.awsui awsui-table .awsui-table-container>table>tbody>tr.awsui-table-row-selected+.awsui awsui-table .awsui-table-container>table>tbody>tr.awsui-table-row-selected>td,.awsui awsui-table .awsui-table-container>table>tbody>tr.awsui-table-row-selected+.awsui awsui-table .awsui-table-header-copy>tbody>tr.awsui-table-row-selected>td,.awsui awsui-table .awsui-table-header-copy>tbody>tr.awsui-table-row-selected+.awsui awsui-table .awsui-table-container>table>tbody>tr.awsui-table-row-selected>td,.awsui awsui-table .awsui-table-header-copy>tbody>tr.awsui-table-row-selected+.awsui awsui-table .awsui-table-header-copy>tbody>tr.awsui-table-row-selected>td{border-top:1px solid transparent}.awsui awsui-table .awsui-table-container>table>tbody>tr>td:first-child,.awsui awsui-table .awsui-table-header-copy>tbody>tr>td:first-child{border-left:1px solid transparent;padding-left:19px;-webkit-box-sizing:border-box;box-sizing:border-box;height:41px}.awsui awsui-table .awsui-table-container>table>tbody>tr>td:last-child,.awsui awsui-table .awsui-table-header-copy>tbody>tr>td:last-child{border-right:1px solid transparent;padding-right:19px}.awsui awsui-table .awsui-table-container>table .awsui-table-row-selected+.awsui-table-row-selected>td,.awsui awsui-table .awsui-table-header-copy .awsui-table-row-selected+.awsui-table-row-selected>td{border-top:1px solid transparent}.awsui awsui-table .awsui-table-header-copy{display:none;overflow:hidden}.awsui awsui-table .awsui-table-header-copy>thead{display:table;position:relative}.awsui awsui-table .awsui-table-sticky-leaving .awsui-table-heading-container,.awsui awsui-table .awsui-table-sticky .awsui-table-heading-container{-webkit-box-shadow:0 1px 4px -2px rgba(0, 28, 36, 0.5);-webkit-box-shadow:0 1px 4px -2px var(--awsui-color-shadow-default, rgba(0, 28, 36, 0.5));box-shadow:0 1px 4px -2px rgba(0, 28, 36, 0.5);box-shadow:0 1px 4px -2px var(--awsui-color-shadow-default, rgba(0, 28, 36, 0.5));z-index:1000}.awsui awsui-table .awsui-table-sticky-leaving .awsui-table-container thead,.awsui awsui-table .awsui-table-sticky .awsui-table-container thead{clip:rect(1px, 1px, 1px, 1px)}.awsui awsui-table .awsui-table-sticky-leaving .awsui-table-header-copy,.awsui awsui-table .awsui-table-sticky-leaving .awsui-table-heading-strut,.awsui awsui-table .awsui-table-sticky .awsui-table-header-copy,.awsui awsui-table .awsui-table-sticky .awsui-table-heading-strut{display:block}.awsui awsui-table .awsui-table-sticky .awsui-table-heading-container{position:fixed;top:0}.awsui awsui-table .awsui-table-sticky-leaving .awsui-table-heading-container{position:absolute;bottom:0}.awsui awsui-table .awsui-table-heading-strut{display:none}.awsui .awsui-scrollbar{height:15px;display:none;position:fixed;overflow-x:auto;overflow-y:hidden;margin-top:-15px}.awsui .awsui-scrollbar-content{height:15px}.awsui .awsui-scrollbar-stuck{display:block}.awsui awsui-table-pagination{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;box-sizing:border-box;-ms-flex-item-align:start;align-self:flex-start}.awsui awsui-table-pagination .awsui-table-pagination-content{padding-left:0;margin:0 -10px;list-style:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui awsui-table-pagination .awsui-table-pagination-content .awsui-table-pagination-dots,.awsui awsui-table-pagination .awsui-table-pagination-content li{margin:4px 5px;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}.awsui awsui-table-pagination .awsui-table-pagination-content .awsui-table-pagination-dots,.awsui awsui-table-pagination .awsui-table-pagination-content button{min-width:20px;color:#545b64;color:var(--awsui-color-text-interactive-default);border:1px solid transparent}.awsui awsui-table-pagination .awsui-table-pagination-content button{cursor:pointer;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;background:transparent;line-height:inherit;padding:0}.awsui awsui-table-pagination .awsui-table-pagination-content button:hover{text-decoration:none;color:#16191f;color:var(--awsui-color-text-interactive-hover)}.awsui awsui-table-pagination .awsui-table-pagination-content button:focus{outline:none;text-decoration:none}.awsui awsui-table-pagination .awsui-table-pagination-content button[data-awsui-focused]{outline:2px dotted transparent;border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-focused, #00a1c9);border-radius:2px;-webkit-box-shadow:0 0 0 1px #00a1c9;-webkit-box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 1px #00a1c9;box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9)}.awsui awsui-table-pagination .awsui-table-pagination-content .awsui-table-pagination-current-page{font-weight:700;color:#16191f;color:var(--awsui-color-text-interactive-active)}.awsui awsui-table-pagination .awsui-table-pagination-content.awsui-table-pagination-disabled button{cursor:default}.awsui awsui-table-pagination .awsui-table-pagination-content.awsui-table-pagination-disabled .awsui-table-pagination-dots,.awsui awsui-table-pagination .awsui-table-pagination-content.awsui-table-pagination-disabled button{color:#aab7b8;color:var(--awsui-color-text-interactive-disabled)}.awsui awsui-table-pagination .awsui-table-pagination-content.awsui-table-pagination-disabled .awsui-table-pagination-current-page{color:#545b64;color:var(--awsui-color-text-body-secondary)}.awsui awsui-table-pagination .awsui-table-pagination-content .awsui-table-pagination-page-control-disabled button{cursor:default}.awsui awsui-table-filtering{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif}.awsui awsui-table .awsui-table-inner-small .awsui-table-has-pagination awsui-table-filtering,.awsui awsui-table .awsui-table-inner-small .awsui-table-has-pagination awsui-table-property-filtering{width:100%;-ms-flex-preferred-size:100%;flex-basis:100%;margin-right:0;margin-bottom:10px}.awsui .awsui-table-has-pagination awsui-table-filtering,.awsui .awsui-table-has-pagination awsui-table-property-filtering{margin-right:20px}.awsui awsui-table-filtering,.awsui awsui-table-property-filtering{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;-webkit-box-flex:1;-ms-flex:1;flex:1}.awsui awsui-table-filtering .awsui-table-filtering-container,.awsui awsui-table-filtering .awsui-table-property-filtering-container,.awsui awsui-table-property-filtering .awsui-table-filtering-container,.awsui awsui-table-property-filtering .awsui-table-property-filtering-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%}.awsui awsui-table-filtering awsui-autosuggest,.awsui awsui-table-filtering awsui-input,.awsui awsui-table-property-filtering awsui-autosuggest,.awsui awsui-table-property-filtering awsui-input{max-width:728px}.awsui awsui-table-filtering .awsui-table-property-filtering-tokens-container,.awsui awsui-table-property-filtering .awsui-table-property-filtering-tokens-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui awsui-table-filtering .awsui-table-property-filtering-tokens-container .awsui-table-property-filtering-token,.awsui awsui-table-property-filtering .awsui-table-property-filtering-tokens-container .awsui-table-property-filtering-token{display:-webkit-box;display:-ms-flexbox;display:flex}.awsui awsui-table-filtering .awsui-table-property-filtering-tokens-container .awsui-table-property-filtering-token awsui-token-group,.awsui awsui-table-property-filtering .awsui-table-property-filtering-tokens-container .awsui-table-property-filtering-token awsui-token-group{-webkit-box-flex:1;-ms-flex:auto;flex:auto;display:-webkit-box;display:-ms-flexbox;display:flex}.awsui awsui-table-filtering .awsui-table-property-filtering-tokens-container .awsui-table-property-filtering-token awsui-button-dropdown,.awsui awsui-table-property-filtering .awsui-table-property-filtering-tokens-container .awsui-table-property-filtering-token awsui-button-dropdown{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;margin-top:10px}.awsui awsui-table-filtering .awsui-table-property-filtering-tokens-container .awsui-table-property-filtering-token awsui-button-dropdown+awsui-token-group .awsui-token,.awsui awsui-table-property-filtering .awsui-table-property-filtering-tokens-container .awsui-table-property-filtering-token awsui-button-dropdown+awsui-token-group .awsui-token{border-bottom-left-radius:0;border-top-left-radius:0}.awsui awsui-table-filtering .awsui-table-property-filtering-tokens-container awsui-button-dropdown button.awsui-button,.awsui awsui-table-property-filtering .awsui-table-property-filtering-tokens-container awsui-button-dropdown button.awsui-button{border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-selected);border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}.awsui awsui-table-filtering .awsui-table-property-filtering-tokens-container .awsui-table-property-filtering-clear-filters,.awsui awsui-table-property-filtering .awsui-table-property-filtering-tokens-container .awsui-table-property-filtering-clear-filters{margin-top:10px;margin-right:10px;border-left:1px solid #eaeded;border-left:1px solid var(--awsui-color-border-divider-default);margin-left:5px;padding-left:15px}.awsui awsui-table-filtering .awsui-filtering-results,.awsui awsui-table-property-filtering .awsui-filtering-results{color:#16191f;color:var(--awsui-color-text-form-label);display:inline-block;padding-left:10px;-webkit-box-sizing:border-box;box-sizing:border-box;white-space:nowrap}.awsui awsui-table-filtering .awsui-filtering-results__empty,.awsui awsui-table-property-filtering .awsui-filtering-results__empty{padding-left:0}.awsui awsui-table-filtering .awsui-select-dropdown,.awsui awsui-table-property-filtering .awsui-select-dropdown{width:auto;max-width:100%}.awsui .awsui-table-has-pagination .awsui-table-preferences-trigger{border-left:1px solid #eaeded;border-left:1px solid var(--awsui-color-border-divider-default);-webkit-box-sizing:border-box;box-sizing:border-box;margin-left:15px}.awsui awsui-table-preferences{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;-ms-flex-item-align:start;align-self:flex-start}.awsui awsui-table-preferences .awsui-table-preferences-trigger{margin-right:-15px;padding:0 10px}.awsui awsui-table-preferences .awsui-table-preferences-heading{font-weight:700}.awsui awsui-table-preferences div[awsui-table-preferences-region='preferences'] .awsui-table-custom-preference{display:block;margin-bottom:20px}@media (max-width: 1400px){.awsui awsui-table-preferences div[awsui-table-preferences-region='preferences'] .awsui-table-custom-preference:last-child{margin-bottom:0}}@media (min-width: 1401px){.awsui awsui-table-preferences div[awsui-table-preferences-region='preferences']>div,.awsui awsui-table-preferences div[awsui-table-preferences-region='preferences']>span,.awsui awsui-table-preferences div[awsui-table-preferences-region='preferences']>span>span{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:-webkit-min-content -webkit-min-content 1fr;grid-template-rows:min-content min-content 1fr;grid-column:1 / span 2;grid-row:1 / span 3}.awsui awsui-table-preferences div[awsui-table-preferences-region='preferences'] .awsui-table-custom-preference{margin-bottom:0;grid-column:1;grid-row:3}}.awsui awsui-table-preferences .awsui-table-preferences-modal-footer{float:right}.awsui awsui-table-content-selector{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;display:block;margin:0 0 20px;-webkit-box-sizing:content-box;box-sizing:content-box}@media (max-width: 1400px){.awsui awsui-table-content-selector:last-child{margin-bottom:0}}@media (min-width: 1401px){.awsui awsui-table-content-selector{margin-bottom:0;padding-left:20px;border-left:1px solid #eaeded;border-left:1px solid var(--awsui-color-border-divider-default);max-width:400px;grid-column:2;grid-row:1 / span 3}}.awsui awsui-table-content-selector .awsui-table-content-selector-options-group .awsui-table-content-selector-option{padding-left:10px}.awsui awsui-table-content-selector .awsui-table-content-selector-options-group-label{color:#545b64;color:var(--awsui-color-text-label);padding:10px 10px 10px 0;border-bottom:1px solid #eaeded;border-bottom:1px solid var(--awsui-color-border-divider-default)}.awsui awsui-table-content-selector .awsui-table-content-selector-option{border-bottom:1px solid #eaeded;border-bottom:1px solid var(--awsui-color-border-divider-default);padding:10px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex}.awsui awsui-table-content-selector .awsui-table-content-selector-option:last-child{border:0}.awsui awsui-table-content-selector .awsui-table-content-selector-option-label{display:block;margin-right:30px;white-space:nowrap;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.awsui awsui-table-content-selector .awsui-table-content-selector-toggle{position:absolute;right:10px}.awsui awsui-table-wrap-lines{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;display:block;margin:0 0 20px}@media (max-width: 1400px){.awsui awsui-table-wrap-lines:last-child{margin-bottom:0}}@media (min-width: 1200px){.awsui awsui-table-wrap-lines{grid-column:1;grid-row:2}}.awsui awsui-table-page-size-selector{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;display:block;margin:0 0 20px}@media (max-width: 1400px){.awsui awsui-table-page-size-selector:last-child{margin-bottom:0}}@media (min-width: 1200px){.awsui awsui-table-page-size-selector{grid-column:1;grid-row:1}}.awsui awsui-table .awsui-table-header+.awsui-table-tools{padding-top:5px}.awsui awsui-table .awsui-table-tools{padding:14px 20px 5px}.awsui awsui-table .awsui-table-tools.awsui-table-tools-hidden{display:none}.awsui awsui-table .awsui-table-tools>div,.awsui awsui-table .awsui-table-tools>span,.awsui awsui-table .awsui-table-tools>span>span{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui awsui-table .awsui-table-has-property-filter .awsui-table-pagination-content,.awsui awsui-table .awsui-table-has-property-filter>span>span{-ms-flex-wrap:unset;flex-wrap:unset}.awsui awsui-table .awsui-table-has-property-filter awsui-table-property-filtering{-ms-flex-negative:1;flex-shrink:1}.awsui awsui-table .awsui-table-has-property-filter awsui-table-pagination,.awsui awsui-table .awsui-table-has-property-filter awsui-table-preferences{-ms-flex-negative:0;flex-shrink:0}.awsui awsui-table .awsui-table-inner-small .awsui-table-has-property-filter .awsui-table-pagination-content,.awsui awsui-table .awsui-table-inner-small .awsui-table-has-property-filter>span>span{-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui awsui-table .awsui-table-inner-small .awsui-table-has-property-filter awsui-table-pagination,.awsui awsui-table .awsui-table-inner-small .awsui-table-has-property-filter awsui-table-preferences,.awsui awsui-table .awsui-table-inner-small .awsui-table-has-property-filter awsui-table-property-filtering{-ms-flex-negative:unset;flex-shrink:unset}.awsui awsui-table awsui-table-selection,.awsui awsui-table awsui-table-sorting{display:none}.awsui awsui-table .awsui-table-header{padding:19px 20px 10px}.awsui awsui-table .awsui-table-header h1,.awsui awsui-table .awsui-table-header h2{color:#16191f;color:var(--awsui-color-text-heading-default);padding:0}.awsui .awsui-table-regions-container{padding:0 0 10px;background:#fafafa;background:var(--awsui-color-background-container-header);border-bottom:1px solid #eaeded;border-bottom:1px solid var(--awsui-color-border-divider-default)}.awsui .awsui-table-regions-container-empty{display:none}.awsui.awsui-table-resizable-columns-dragging *{cursor:col-resize;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.awsui awsui-table .awsui-table-resizable-columns .awsui-table-container>table>thead>tr>*>.awsui-table-resizable-columns-resizer,.awsui awsui-table .awsui-table-resizable-columns .awsui-table-header-copy>thead>tr>*>.awsui-table-resizable-columns-resizer{bottom:0;cursor:col-resize;position:absolute;right:-10px;top:0;width:20px;z-index:10}.awsui awsui-table .awsui-table-resizable-columns .awsui-table-container>table>thead>tr>:last-child>.awsui-table-resizable-columns-resizer,.awsui awsui-table .awsui-table-resizable-columns .awsui-table-header-copy>thead>tr>:last-child>.awsui-table-resizable-columns-resizer{right:0;width:10px}.awsui awsui-table .awsui-table-resizable-columns .awsui-table-container>table>thead>tr>.awsui-table-resizable-columns-active::before,.awsui awsui-table .awsui-table-resizable-columns .awsui-table-header-copy>thead>tr>.awsui-table-resizable-columns-active::before{border-left:2px solid #879596;border-left:2px solid var(--awsui-color-border-divider-active)}.awsui awsui-table .awsui-table-resizable-columns-resizer-tracker{border-right:1px dashed #879596;border-right:1px dashed var(--awsui-color-border-divider-active);bottom:0;display:none;position:absolute}.awsui.awsui-motion awsui-table [awsui-table-region='noMatch']{-webkit-animation:awsui-motion-fade-in 0.18s ease-out;-webkit-animation:awsui-motion-fade-in var(--awsui-motion-duration-transition-show-paced)
    var(--awsui-motion-easing-transition-show-paced);animation:awsui-motion-fade-in 0.18s ease-out;animation:awsui-motion-fade-in var(--awsui-motion-duration-transition-show-paced)
    var(--awsui-motion-easing-transition-show-paced)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion awsui-table [awsui-table-region='noMatch']{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui.awsui-motion awsui-table .awsui-table-container>table tbody td{-webkit-transition-property:background-color,
    border-top-color,
    border-bottom-color,
    border-left-color,
    border-right-color;-o-transition-property:background-color, border-top-color, border-bottom-color, border-left-color, border-right-color;-webkit-transition-property:background-color, border-top-color, border-bottom-color, border-left-color, border-right-color;transition-property:background-color, border-top-color, border-bottom-color, border-left-color, border-right-color;-webkit-transition-duration:0.18s;-webkit-transition-duration:var(--awsui-motion-duration-transition-show-paced);-o-transition-duration:0.18s;-o-transition-duration:var(--awsui-motion-duration-transition-show-paced);transition-duration:0.18s;transition-duration:var(--awsui-motion-duration-transition-show-paced);-webkit-transition-timing-function:ease-out;-webkit-transition-timing-function:var(--awsui-motion-easing-transition-show-paced);-o-transition-timing-function:ease-out;-o-transition-timing-function:var(--awsui-motion-easing-transition-show-paced);transition-timing-function:ease-out;transition-timing-function:var(--awsui-motion-easing-transition-show-paced)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion awsui-table .awsui-table-container>table tbody td{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui awsui-cards{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif}.awsui awsui-cards .awsui-cards-inner.grid-1 .awsui-cards-card-container{width:100%}.awsui awsui-cards .awsui-cards-inner.grid-2 .awsui-cards-card-container{width:50%}.awsui awsui-cards .awsui-cards-inner.grid-3 .awsui-cards-card-container{width:33.3333333333%}.awsui awsui-cards .awsui-cards-inner.grid-4 .awsui-cards-card-container{width:25%}.awsui awsui-cards .awsui-cards-inner.grid-5 .awsui-cards-card-container{width:20%}.awsui awsui-cards .awsui-cards-inner.grid-6 .awsui-cards-card-container{width:16.6666666667%}.awsui awsui-cards .awsui-cards-inner.grid-7 .awsui-cards-card-container{width:14.2857142857%}.awsui awsui-cards .awsui-cards-inner.grid-8 .awsui-cards-card-container{width:12.5%}.awsui awsui-cards .awsui-cards-inner.grid-9 .awsui-cards-card-container{width:11.1111111111%}.awsui awsui-cards .awsui-cards-inner.grid-10 .awsui-cards-card-container{width:10%}.awsui awsui-cards .awsui-cards-inner.grid-11 .awsui-cards-card-container{width:9.0909090909%}.awsui awsui-cards .awsui-cards-inner.grid-12 .awsui-cards-card-container{width:8.3333333333%}.awsui awsui-cards .awsui-cards-inner.grid-13 .awsui-cards-card-container{width:7.6923076923%}.awsui awsui-cards .awsui-cards-inner.grid-14 .awsui-cards-card-container{width:7.1428571429%}.awsui awsui-cards .awsui-cards-inner.grid-15 .awsui-cards-card-container{width:6.6666666667%}.awsui awsui-cards .awsui-cards-inner.grid-16 .awsui-cards-card-container{width:6.25%}.awsui awsui-cards .awsui-cards-inner.grid-17 .awsui-cards-card-container{width:5.8823529412%}.awsui awsui-cards .awsui-cards-inner.grid-18 .awsui-cards-card-container{width:5.5555555556%}.awsui awsui-cards .awsui-cards-inner.grid-19 .awsui-cards-card-container{width:5.2631578947%}.awsui awsui-cards .awsui-cards-inner.grid-20 .awsui-cards-card-container{width:5%}.awsui awsui-cards .awsui-cards-inner{position:relative}.awsui awsui-cards .awsui-cards-regions-container{border-bottom:none;-webkit-box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);-webkit-box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));border-top:1px solid #eaeded;border-top:1px solid var(--awsui-color-border-container-top, #eaeded);border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:20px}@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active){.awsui awsui-cards .awsui-cards-regions-container{border:1px solid #eaeded;border:1px solid var(--awsui-color-border-container-top, #eaeded)}}.awsui awsui-cards .awsui-cards-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0;list-style:none;margin:0 0 0 -20px}.awsui awsui-cards .awsui-cards-container .awsui-cards-card-container{display:-webkit-box;display:-ms-flexbox;display:flex;overflow-wrap:break-word;word-wrap:break-word;margin:0;padding:0;list-style:none}.awsui awsui-cards .awsui-cards-container .awsui-cards-card-container .awsui-cards-card-container-inner{position:relative;margin:0 0 20px 20px;background-color:#fff;background-color:var(--awsui-color-background-container-content);-webkit-box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);-webkit-box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));border-top:1px solid #eaeded;border-top:1px solid var(--awsui-color-border-container-top, #eaeded);border-radius:0;-webkit-box-sizing:border-box;padding:19px 20px 10px;width:100%;min-width:0;box-sizing:border-box}@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active){.awsui awsui-cards .awsui-cards-container .awsui-cards-card-container .awsui-cards-card-container-inner{border:1px solid #eaeded;border:1px solid var(--awsui-color-border-container-top, #eaeded);padding:19px 19px 9px}}.awsui awsui-cards .awsui-cards-container .awsui-cards-card-container .awsui-cards-card-header{color:#16191f;color:var(--awsui-color-text-heading-default);font-size:var(--font-size-3);line-height:var(--line-height-3)}.awsui awsui-cards .awsui-cards-container .awsui-cards-card-container .awsui-cards-card-header-inner{width:100%;display:inline-block}.awsui awsui-cards .awsui-cards-container .awsui-cards-card-container.awsui-cards-card-selectable .awsui-cards-card-header-inner{width:90%}.awsui awsui-cards .awsui-cards-container .awsui-cards-card-container.awsui-cards-card-selectable .awsui-cards-card-selection-area{position:absolute;top:0;right:0;cursor:pointer;padding:20px}.awsui awsui-cards .awsui-cards-container .awsui-cards-card-container.awsui-cards-card-selectable .awsui-cards-card-selection-area-disabled{cursor:auto}.awsui awsui-cards .awsui-cards-container .awsui-cards-card-container.awsui-cards-card-selected .awsui-cards-card-container-inner{border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-selected);background-color:#f1faff;background-color:var(--awsui-color-background-item-selected);padding:19px 19px 9px}@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active){.awsui awsui-cards .awsui-cards-container .awsui-cards-card-container.awsui-cards-card-selected .awsui-cards-card-container-inner{padding:19px 19px 9px}}.awsui awsui-cards .awsui-cards-container .awsui-cards-card-container.awsui-cards-card-selected .awsui-cards-card-selection-area{padding-right:19px}.awsui awsui-cards .awsui-cards-container .awsui-cards-card-section{display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;padding:10px 0;vertical-align:top}.awsui awsui-cards .awsui-cards-container .awsui-cards-card-section-content{color:#16191f;color:var(--awsui-color-text-body-default)}.awsui awsui-cards .awsui-cards-container .awsui-cards-card-section-header{color:#545b64;color:var(--awsui-color-text-label)}.awsui awsui-cards .awsui-cards-container.awsui-cards-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.awsui awsui-cards .awsui-cards-sticky-leaving .awsui-cards-regions-container,.awsui awsui-cards .awsui-cards-sticky .awsui-cards-regions-container{z-index:1000}.awsui awsui-cards .awsui-cards-sticky-leaving .awsui-cards-heading-strut,.awsui awsui-cards .awsui-cards-sticky .awsui-cards-heading-strut{display:block}.awsui awsui-cards .awsui-cards-heading-strut{display:none;margin-bottom:20px}.awsui awsui-cards .awsui-cards-sticky .awsui-cards-regions-container{position:fixed;top:0}.awsui awsui-cards .awsui-cards-sticky-leaving .awsui-cards-regions-container{position:absolute;bottom:0;margin-bottom:0}.awsui awsui-cards .awsui-cards-empty{overflow:hidden}.awsui awsui-cards .awsui-cards-empty>[awsui-cards-region='empty'],.awsui awsui-cards .awsui-cards-empty>[awsui-cards-region='noMatch']{text-align:center;color:#687078;color:var(--awsui-color-text-empty)}.awsui awsui-cards-pagination{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;box-sizing:border-box;-ms-flex-item-align:start;align-self:flex-start}.awsui awsui-cards-pagination .awsui-cards-pagination-content{padding-left:0;margin:0 -10px;list-style:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui awsui-cards-pagination .awsui-cards-pagination-content .awsui-cards-pagination-dots,.awsui awsui-cards-pagination .awsui-cards-pagination-content li{margin:4px 5px;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}.awsui awsui-cards-pagination .awsui-cards-pagination-content .awsui-cards-pagination-dots,.awsui awsui-cards-pagination .awsui-cards-pagination-content button{min-width:20px;color:#545b64;color:var(--awsui-color-text-interactive-default);border:1px solid transparent}.awsui awsui-cards-pagination .awsui-cards-pagination-content button{cursor:pointer;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;background:transparent;line-height:inherit;padding:0}.awsui awsui-cards-pagination .awsui-cards-pagination-content button:hover{text-decoration:none;color:#16191f;color:var(--awsui-color-text-interactive-hover)}.awsui awsui-cards-pagination .awsui-cards-pagination-content button:focus{outline:none;text-decoration:none}.awsui awsui-cards-pagination .awsui-cards-pagination-content button[data-awsui-focused]{outline:2px dotted transparent;border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-focused, #00a1c9);border-radius:2px;-webkit-box-shadow:0 0 0 1px #00a1c9;-webkit-box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 1px #00a1c9;box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9)}.awsui awsui-cards-pagination .awsui-cards-pagination-content .awsui-cards-pagination-current-page{font-weight:700;color:#16191f;color:var(--awsui-color-text-interactive-active)}.awsui awsui-cards-pagination .awsui-cards-pagination-content.awsui-cards-pagination-disabled button{cursor:default}.awsui awsui-cards-pagination .awsui-cards-pagination-content.awsui-cards-pagination-disabled .awsui-cards-pagination-dots,.awsui awsui-cards-pagination .awsui-cards-pagination-content.awsui-cards-pagination-disabled button{color:#aab7b8;color:var(--awsui-color-text-interactive-disabled)}.awsui awsui-cards-pagination .awsui-cards-pagination-content.awsui-cards-pagination-disabled .awsui-cards-pagination-current-page{color:#545b64;color:var(--awsui-color-text-body-secondary)}.awsui awsui-cards-pagination .awsui-cards-pagination-content .awsui-cards-pagination-page-control-disabled button{cursor:default}.awsui awsui-cards-filtering{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif}.awsui awsui-cards .awsui-cards-inner-small .awsui-cards-has-pagination awsui-cards-filtering,.awsui awsui-cards .awsui-cards-inner-small .awsui-cards-has-pagination awsui-cards-property-filtering{width:100%;-ms-flex-preferred-size:100%;flex-basis:100%;margin-right:0;margin-bottom:10px}.awsui .awsui-cards-has-pagination awsui-cards-filtering,.awsui .awsui-cards-has-pagination awsui-cards-property-filtering{margin-right:20px}.awsui awsui-cards-filtering,.awsui awsui-cards-property-filtering{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;-webkit-box-flex:1;-ms-flex:1;flex:1}.awsui awsui-cards-filtering .awsui-cards-filtering-container,.awsui awsui-cards-filtering .awsui-cards-property-filtering-container,.awsui awsui-cards-property-filtering .awsui-cards-filtering-container,.awsui awsui-cards-property-filtering .awsui-cards-property-filtering-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%}.awsui awsui-cards-filtering awsui-autosuggest,.awsui awsui-cards-filtering awsui-input,.awsui awsui-cards-property-filtering awsui-autosuggest,.awsui awsui-cards-property-filtering awsui-input{max-width:728px}.awsui awsui-cards-filtering .awsui-cards-property-filtering-tokens-container,.awsui awsui-cards-property-filtering .awsui-cards-property-filtering-tokens-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui awsui-cards-filtering .awsui-cards-property-filtering-tokens-container .awsui-cards-property-filtering-token,.awsui awsui-cards-property-filtering .awsui-cards-property-filtering-tokens-container .awsui-cards-property-filtering-token{display:-webkit-box;display:-ms-flexbox;display:flex}.awsui awsui-cards-filtering .awsui-cards-property-filtering-tokens-container .awsui-cards-property-filtering-token awsui-token-group,.awsui awsui-cards-property-filtering .awsui-cards-property-filtering-tokens-container .awsui-cards-property-filtering-token awsui-token-group{-webkit-box-flex:1;-ms-flex:auto;flex:auto;display:-webkit-box;display:-ms-flexbox;display:flex}.awsui awsui-cards-filtering .awsui-cards-property-filtering-tokens-container .awsui-cards-property-filtering-token awsui-button-dropdown,.awsui awsui-cards-property-filtering .awsui-cards-property-filtering-tokens-container .awsui-cards-property-filtering-token awsui-button-dropdown{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;margin-top:10px}.awsui awsui-cards-filtering .awsui-cards-property-filtering-tokens-container .awsui-cards-property-filtering-token awsui-button-dropdown+awsui-token-group .awsui-token,.awsui awsui-cards-property-filtering .awsui-cards-property-filtering-tokens-container .awsui-cards-property-filtering-token awsui-button-dropdown+awsui-token-group .awsui-token{border-bottom-left-radius:0;border-top-left-radius:0}.awsui awsui-cards-filtering .awsui-cards-property-filtering-tokens-container awsui-button-dropdown button.awsui-button,.awsui awsui-cards-property-filtering .awsui-cards-property-filtering-tokens-container awsui-button-dropdown button.awsui-button{border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-selected);border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}.awsui awsui-cards-filtering .awsui-cards-property-filtering-tokens-container .awsui-cards-property-filtering-clear-filters,.awsui awsui-cards-property-filtering .awsui-cards-property-filtering-tokens-container .awsui-cards-property-filtering-clear-filters{margin-top:10px;margin-right:10px;border-left:1px solid #eaeded;border-left:1px solid var(--awsui-color-border-divider-default);margin-left:5px;padding-left:15px}.awsui awsui-cards-filtering .awsui-filtering-results,.awsui awsui-cards-property-filtering .awsui-filtering-results{color:#16191f;color:var(--awsui-color-text-form-label);display:inline-block;padding-left:10px;-webkit-box-sizing:border-box;box-sizing:border-box;white-space:nowrap}.awsui awsui-cards-filtering .awsui-filtering-results__empty,.awsui awsui-cards-property-filtering .awsui-filtering-results__empty{padding-left:0}.awsui awsui-cards-filtering .awsui-select-dropdown,.awsui awsui-cards-property-filtering .awsui-select-dropdown{width:auto;max-width:100%}.awsui .awsui-cards-has-pagination .awsui-cards-preferences-trigger{border-left:1px solid #eaeded;border-left:1px solid var(--awsui-color-border-divider-default);-webkit-box-sizing:border-box;box-sizing:border-box;margin-left:15px}.awsui awsui-cards-preferences{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;-ms-flex-item-align:start;align-self:flex-start}.awsui awsui-cards-preferences .awsui-cards-preferences-trigger{margin-right:-15px;padding:0 10px}.awsui awsui-cards-preferences .awsui-cards-preferences-heading{font-weight:700}.awsui awsui-cards-preferences div[awsui-cards-preferences-region='preferences'] .awsui-cards-custom-preference{display:block;margin-bottom:20px}@media (max-width: 1400px){.awsui awsui-cards-preferences div[awsui-cards-preferences-region='preferences'] .awsui-cards-custom-preference:last-child{margin-bottom:0}}@media (min-width: 1401px){.awsui awsui-cards-preferences div[awsui-cards-preferences-region='preferences']>div,.awsui awsui-cards-preferences div[awsui-cards-preferences-region='preferences']>span,.awsui awsui-cards-preferences div[awsui-cards-preferences-region='preferences']>span>span{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:-webkit-min-content -webkit-min-content 1fr;grid-template-rows:min-content min-content 1fr;grid-column:1 / span 2;grid-row:1 / span 3}.awsui awsui-cards-preferences div[awsui-cards-preferences-region='preferences'] .awsui-cards-custom-preference{margin-bottom:0;grid-column:1;grid-row:3}}.awsui awsui-cards-preferences .awsui-cards-preferences-modal-footer{float:right}.awsui awsui-cards-content-selector{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;display:block;margin:0 0 20px;-webkit-box-sizing:content-box;box-sizing:content-box}@media (max-width: 1400px){.awsui awsui-cards-content-selector:last-child{margin-bottom:0}}@media (min-width: 1401px){.awsui awsui-cards-content-selector{margin-bottom:0;padding-left:20px;border-left:1px solid #eaeded;border-left:1px solid var(--awsui-color-border-divider-default);max-width:400px;grid-column:2;grid-row:1 / span 3}}.awsui awsui-cards-content-selector .awsui-cards-content-selector-options-group .awsui-cards-content-selector-option{padding-left:10px}.awsui awsui-cards-content-selector .awsui-cards-content-selector-options-group-label{color:#545b64;color:var(--awsui-color-text-label);padding:10px 10px 10px 0;border-bottom:1px solid #eaeded;border-bottom:1px solid var(--awsui-color-border-divider-default)}.awsui awsui-cards-content-selector .awsui-cards-content-selector-option{border-bottom:1px solid #eaeded;border-bottom:1px solid var(--awsui-color-border-divider-default);padding:10px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex}.awsui awsui-cards-content-selector .awsui-cards-content-selector-option:last-child{border:0}.awsui awsui-cards-content-selector .awsui-cards-content-selector-option-label{display:block;margin-right:30px;white-space:nowrap;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.awsui awsui-cards-content-selector .awsui-cards-content-selector-toggle{position:absolute;right:10px}.awsui awsui-cards-page-size-selector{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;display:block;margin:0 0 20px}@media (max-width: 1400px){.awsui awsui-cards-page-size-selector:last-child{margin-bottom:0}}@media (min-width: 1200px){.awsui awsui-cards-page-size-selector{grid-column:1;grid-row:1}}.awsui awsui-cards .awsui-cards-header+.awsui-cards-tools{padding-top:5px}.awsui awsui-cards .awsui-cards-tools{padding:14px 20px 5px}.awsui awsui-cards .awsui-cards-tools.awsui-cards-tools-hidden{display:none}.awsui awsui-cards .awsui-cards-tools>div,.awsui awsui-cards .awsui-cards-tools>span,.awsui awsui-cards .awsui-cards-tools>span>span{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui awsui-cards .awsui-cards-has-property-filter .awsui-cards-pagination-content,.awsui awsui-cards .awsui-cards-has-property-filter>span>span{-ms-flex-wrap:unset;flex-wrap:unset}.awsui awsui-cards .awsui-cards-has-property-filter awsui-cards-property-filtering{-ms-flex-negative:1;flex-shrink:1}.awsui awsui-cards .awsui-cards-has-property-filter awsui-cards-pagination,.awsui awsui-cards .awsui-cards-has-property-filter awsui-cards-preferences{-ms-flex-negative:0;flex-shrink:0}.awsui awsui-cards .awsui-cards-inner-small .awsui-cards-has-property-filter .awsui-cards-pagination-content,.awsui awsui-cards .awsui-cards-inner-small .awsui-cards-has-property-filter>span>span{-ms-flex-wrap:wrap;flex-wrap:wrap}.awsui awsui-cards .awsui-cards-inner-small .awsui-cards-has-property-filter awsui-cards-pagination,.awsui awsui-cards .awsui-cards-inner-small .awsui-cards-has-property-filter awsui-cards-preferences,.awsui awsui-cards .awsui-cards-inner-small .awsui-cards-has-property-filter awsui-cards-property-filtering{-ms-flex-negative:unset;flex-shrink:unset}.awsui awsui-cards awsui-cards-selection,.awsui awsui-cards awsui-cards-sorting{display:none}.awsui awsui-cards .awsui-cards-header{padding:19px 20px 10px}.awsui awsui-cards .awsui-cards-header h1,.awsui awsui-cards .awsui-cards-header h2{color:#16191f;color:var(--awsui-color-text-heading-default);padding:0}.awsui .awsui-cards-regions-container{padding:0 0 10px;background:#fafafa;background:var(--awsui-color-background-container-header);border-bottom:1px solid #eaeded;border-bottom:1px solid var(--awsui-color-border-divider-default)}.awsui .awsui-cards-regions-container-empty{display:none}.awsui.awsui-motion awsui-cards [awsui-cards-region='noMatch']{-webkit-animation:awsui-motion-fade-in 0.18s ease-out;-webkit-animation:awsui-motion-fade-in var(--awsui-motion-duration-transition-show-paced)
    var(--awsui-motion-easing-transition-show-paced);animation:awsui-motion-fade-in 0.18s ease-out;animation:awsui-motion-fade-in var(--awsui-motion-duration-transition-show-paced)
    var(--awsui-motion-easing-transition-show-paced)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion awsui-cards [awsui-cards-region='noMatch']{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui.awsui-motion awsui-cards .awsui-cards-container .awsui-cards-card-container-inner{-webkit-transition-property:background-color,
    border-top-color,
    border-bottom-color,
    border-left-color,
    border-right-color;-o-transition-property:background-color, border-top-color, border-bottom-color, border-left-color, border-right-color;-webkit-transition-property:background-color, border-top-color, border-bottom-color, border-left-color, border-right-color;transition-property:background-color, border-top-color, border-bottom-color, border-left-color, border-right-color;-webkit-transition-duration:0.18s;-webkit-transition-duration:var(--awsui-motion-duration-transition-show-paced);-o-transition-duration:0.18s;-o-transition-duration:var(--awsui-motion-duration-transition-show-paced);transition-duration:0.18s;transition-duration:var(--awsui-motion-duration-transition-show-paced);-webkit-transition-timing-function:ease-out;-webkit-transition-timing-function:var(--awsui-motion-easing-transition-show-paced);-o-transition-timing-function:ease-out;-o-transition-timing-function:var(--awsui-motion-easing-transition-show-paced);transition-timing-function:ease-out;transition-timing-function:var(--awsui-motion-easing-transition-show-paced)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion awsui-cards .awsui-cards-container .awsui-cards-card-container-inner{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui .awsui-calendar{display:block}.awsui .awsui-calendar__day-names{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch}.awsui .awsui-calendar__day-names .awsui-calendar__day-name{-webkit-box-flex:1;-ms-flex:1 1 0%;flex:1 1 0%;width:0;word-break:break-word;text-align:center}.awsui .awsui-calendar__day-name{padding:10px 0;color:#545b64;color:var(--awsui-color-text-dropdown-group-label);font-size:var(--font-size-0);line-height:15px}.awsui .awsui-calendar__dates{border:1px solid #eaeded;border:1px solid var(--awsui-color-border-dropdown-item-default)}.awsui .awsui-calendar__week{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch}.awsui .awsui-calendar__week .awsui-calendar__date{-webkit-box-flex:1;-ms-flex:1 1 0%;flex:1 1 0%;width:0;word-break:break-word;text-align:center}.awsui .awsui-calendar__week:last-child .awsui-calendar__date{border-bottom:none}.awsui .awsui-calendar__date{border-bottom:1px solid #eaeded;border-bottom:1px solid var(--awsui-color-border-dropdown-item-default);border-right:1px solid #eaeded;border-right:1px solid var(--awsui-color-border-dropdown-item-default);padding:3.333333333px 0;color:#aab7b8;color:var(--awsui-color-text-dropdown-item-disabled);position:relative}.awsui .awsui-calendar__date:last-child{border-right:none}.awsui .awsui-calendar__date--enabled{cursor:pointer;color:#687078;color:var(--awsui-color-text-dropdown-item-secondary)}.awsui .awsui-calendar__date--enabled.awsui-calendar__date--current-month{color:#16191f;color:var(--awsui-color-text-dropdown-item-default)}.awsui .awsui-calendar__date--enabled.awsui-calendar__date--current-month:hover{color:#16191f;color:var(--awsui-color-text-dropdown-item-highlighted);background-color:#f2f3f3;background-color:var(--awsui-color-background-dropdown-item-hover)}.awsui .awsui-calendar__date--enabled.awsui-calendar__date--current-month:hover:not(.awsui-calendar__date--selected)::before{border:1px solid #879596;border:1px solid var(--awsui-color-border-dropdown-item-hover)}.awsui .awsui-calendar__date--today{background-color:#f2f3f3;background-color:var(--awsui-color-background-calendar-today)}.awsui .awsui-calendar__date::before{content:'';position:absolute;z-index:1;top:-1px;left:-1px;bottom:-1px;right:-1px;background-color:transparent}.awsui .awsui-calendar__date>span{position:relative;z-index:1}.awsui .awsui-calendar__date:focus{outline:none}.awsui .awsui-calendar__date:focus::before{outline:2px dotted transparent;border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-focused, #00a1c9);border-radius:2px;-webkit-box-shadow:0 0 0 1px #00a1c9;-webkit-box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 1px #00a1c9;box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-calendar__date--selected{border-color:transparent;position:relative}.awsui .awsui-calendar__date--selected::before{background-color:#f1faff;background-color:var(--awsui-color-background-dropdown-item-selected);border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-dropdown-item-selected);z-index:2}.awsui .awsui-calendar__date--selected span{color:#16191f;color:var(--awsui-color-text-dropdown-item-highlighted);position:relative;z-index:2}.awsui .awsui-calendar__header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.awsui .awsui-calendar__header-month{font-size:15px;line-height:var(--line-height-3);font-weight:700;color:#16191f;color:var(--awsui-color-text-dropdown-item-default)}.awsui.awsui-motion .awsui-input-dropdown__dropdown--open{-webkit-animation:awsui-motion-fade-in-dropdown 135ms ease-out;-webkit-animation:awsui-motion-fade-in-dropdown var(--awsui-motion-duration-show-quick)
    var(--awsui-motion-easing-show-quick);animation:awsui-motion-fade-in-dropdown 135ms ease-out;-webkit-animation:awsui-motion-fade-in-dropdown var(--awsui-motion-duration-show-quick) var(--awsui-motion-easing-show-quick);animation:awsui-motion-fade-in-dropdown var(--awsui-motion-duration-show-quick) var(--awsui-motion-easing-show-quick)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion .awsui-input-dropdown__dropdown--open{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui.awsui-motion .awsui-input-dropdown__dropdown--open .awsui-calendar{-webkit-animation:awsui-motion-fade-in-0 135ms ease-out;-webkit-animation:awsui-motion-fade-in-0 var(--awsui-motion-duration-show-quick)
    var(--awsui-motion-easing-show-quick);animation:awsui-motion-fade-in-0 135ms ease-out;-webkit-animation:awsui-motion-fade-in-0 var(--awsui-motion-duration-show-quick) var(--awsui-motion-easing-show-quick);animation:awsui-motion-fade-in-0 var(--awsui-motion-duration-show-quick) var(--awsui-motion-easing-show-quick);-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion .awsui-input-dropdown__dropdown--open .awsui-calendar{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui .awsui-input-dropdown__dropdown{-webkit-box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);-webkit-box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));border-top:1px solid #eaeded;border-top:1px solid var(--awsui-color-border-container-top, #eaeded);border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:#fff;background-color:var(--awsui-color-background-dropdown-item-default);position:absolute;z-index:2000}@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active){.awsui .awsui-input-dropdown__dropdown{border:1px solid #eaeded;border:1px solid var(--awsui-color-border-container-top, #eaeded)}}.awsui .awsui-input-dropdown__dropdown--open{padding:10px;left:0;right:0;width:220px;-webkit-box-sizing:border-box;box-sizing:border-box}.awsui .awsui-input-dropdown__dropdown--dropped-left{left:auto;right:0}.awsui .awsui-input-dropdown__dropdown--dropped-up{bottom:100%;-webkit-box-shadow:0 -1px 1px 0 rgba(0, 28, 36, 0.3),
    1px -1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px -1px 1px 0 rgba(0, 28, 36, 0.15);-webkit-box-shadow:0 -1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px -1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px -1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));box-shadow:0 -1px 1px 0 rgba(0, 28, 36, 0.3),
    1px -1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px -1px 1px 0 rgba(0, 28, 36, 0.15);box-shadow:0 -1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px -1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px -1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15))}.awsui awsui-date-picker{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif}.awsui awsui-date-picker .awsui-input-dropdown__container,.awsui awsui-date-picker>.awsui-input-container{position:relative;max-width:220px}.awsui awsui-date-picker .awsui-input-dropdown__container{display:inline-block;width:100%}.awsui.awsui-motion awsui-expandable-section .awsui-motion-entered{-webkit-animation:awsui-motion-fade-in 0.18s ease-out;-webkit-animation:awsui-motion-fade-in var(--awsui-motion-duration-show-paced) var(--awsui-motion-easing-show-paced);animation:awsui-motion-fade-in 0.18s ease-out;animation:awsui-motion-fade-in var(--awsui-motion-duration-show-paced) var(--awsui-motion-easing-show-paced)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion awsui-expandable-section .awsui-motion-entered{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui.awsui-motion .awsui-expandable-section-header-expanded.awsui-expandable-section-header-default{-webkit-transition:border-bottom-color 0.18s ease-out;-webkit-transition:border-bottom-color var(--awsui-motion-duration-show-paced) var(--awsui-motion-easing-show-paced);-o-transition:border-bottom-color 0.18s ease-out;-o-transition:border-bottom-color var(--awsui-motion-duration-show-paced) var(--awsui-motion-easing-show-paced);transition:border-bottom-color 0.18s ease-out;transition:border-bottom-color var(--awsui-motion-duration-show-paced) var(--awsui-motion-easing-show-paced)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion .awsui-expandable-section-header-expanded.awsui-expandable-section-header-default{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui.awsui-motion .awsui-expandable-section-header .awsui-expandable-section-header-icon awsui-icon{-webkit-transition:-webkit-transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);-webkit-transition:-webkit-transform var(--awsui-motion-duration-rotate-90) var(--awsui-motion-easing-rotate-90);transition:-webkit-transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:-webkit-transform var(--awsui-motion-duration-rotate-90) var(--awsui-motion-easing-rotate-90);-o-transition:transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:transform var(--awsui-motion-duration-rotate-90) var(--awsui-motion-easing-rotate-90);transition:transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:transform var(--awsui-motion-duration-rotate-90) var(--awsui-motion-easing-rotate-90);transition:transform var(--awsui-motion-duration-rotate-90) var(--awsui-motion-easing-rotate-90), -webkit-transform var(--awsui-motion-duration-rotate-90) var(--awsui-motion-easing-rotate-90);transition:transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:transform var(--awsui-motion-duration-rotate-90) var(--awsui-motion-easing-rotate-90),
    -webkit-transform var(--awsui-motion-duration-rotate-90) var(--awsui-motion-easing-rotate-90)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion .awsui-expandable-section-header .awsui-expandable-section-header-icon awsui-icon{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui awsui-expandable-section{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;display:block;min-width:0;-ms-word-break:break-all;word-break:break-word}.awsui .awsui-expandable-section-trigger{display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer;color:inherit;border:0;text-align:left;background:transparent}.awsui .awsui-expandable-section-header-icon{position:relative;margin-left:-2px;margin-right:6px}.awsui .awsui-expandable-section-header-icon awsui-icon{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.awsui .awsui-expandable-section-header-icon-navigation{color:#879596;color:var(--awsui-color-text-icon-caret)}.awsui .awsui-expandable-section-header-icon-navigation:hover{color:#16191f;color:var(--awsui-color-text-interactive-hover)}.awsui .awsui-expandable-section-header-icon-focusable{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:0}.awsui .awsui-expandable-section-header-icon-focusable:focus{outline:none;text-decoration:none}.awsui .awsui-expandable-section-header-icon-focusable[data-awsui-focused]{outline:2px dotted transparent;outline-offset:1px}.awsui .awsui-expandable-section-header-icon-focusable[data-awsui-focused]::before{content:' ';display:block;position:absolute;left:-2px;top:-2px;width:calc(100% + 4px);height:calc(100% + 4px);border-radius:2px;-webkit-box-shadow:0 0 0 2px #00a1c9;-webkit-box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 2px #00a1c9;box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-util-container-footer .awsui-expandable-section-header-icon{margin-left:-8px}.awsui .awsui-expandable-section-content{display:none}.awsui .awsui-expandable-section-content-borderless,.awsui .awsui-expandable-section-content-default{padding:10px 0}.awsui .awsui-expandable-section-content-expanded{display:block}.awsui .awsui-expandable-section-header{cursor:pointer;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;border:none;width:100%;line-height:var(--line-height-3)}.awsui .awsui-expandable-section-header:focus{outline:none;text-decoration:none}.awsui .awsui-expandable-section-header[data-awsui-focused]{outline:2px dotted transparent;border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-focused, #00a1c9);border-radius:2px;-webkit-box-shadow:0 0 0 1px #00a1c9;-webkit-box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 1px #00a1c9;box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-expandable-section-header-borderless,.awsui .awsui-expandable-section-header-default{color:#545b64;color:var(--awsui-color-text-interactive-default);padding:4px;font-weight:700;border:1px solid transparent}.awsui .awsui-expandable-section-header-borderless:hover,.awsui .awsui-expandable-section-header-default:hover{color:#16191f;color:var(--awsui-color-text-interactive-hover)}.awsui .awsui-expandable-section-header [awsui-expandable-section-region='header']{-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0}.awsui .awsui-expandable-section-header-expanded .awsui-expandable-section-header-icon awsui-icon{-webkit-transform:rotate(0deg);transform:rotate(0deg)}.awsui .awsui-expandable-section-header.awsui-expandable-section-header-container[data-awsui-focused]{padding:18px 19px 19px}.awsui .awsui-expandable-section-header-expanded.awsui-expandable-section-header-default:not([data-awsui-focused]){border-bottom-color:#eaeded;border-bottom-color:var(--awsui-color-border-divider-default)}.awsui .awsui-util-no-gutters>.awsui-expandable-section>.awsui-expandable-section-content,.awsui .awsui-util-no-gutters>.awsui-expandable-section>.awsui-expandable-section-header{padding:0}.awsui awsui-flash,.awsui awsui-flashbar{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif}.awsui awsui-flash{display:block;overflow-wrap:break-word;word-wrap:break-word}.awsui awsui-flash,.awsui awsui-flash p{color:#fafafa;color:var(--awsui-color-text-notification-default)}.awsui awsui-flash .awsui-flash-hidden{display:none}.awsui awsui-flash .awsui-flash-header,.awsui awsui-flash .awsui-flash-header p{font-weight:700}.awsui .awsui-flash{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;padding:10px;-webkit-box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);-webkit-box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15));box-shadow:0 1px 1px 0 rgba(0, 28, 36, 0.3),
    1px 1px 1px 0 rgba(0, 28, 36, 0.15),
    -1px 1px 1px 0 rgba(0, 28, 36, 0.15);box-shadow:0 1px 1px 0 var(--awsui-color-shadow-medium, rgba(0, 28, 36, 0.3)),
    1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15)),
    -1px 1px 1px 0 var(--awsui-color-shadow-side, rgba(0, 28, 36, 0.15))}.awsui .awsui-flash a{color:#fafafa;color:var(--awsui-color-text-notification-default);text-decoration:underline}.awsui .awsui-flash.awsui-flash-type-success{background-color:#1d8102;background-color:var(--awsui-color-background-notification-green)}.awsui .awsui-flash.awsui-flash-type-error{background-color:#d13212;background-color:var(--awsui-color-background-notification-red)}.awsui .awsui-flash.awsui-flash-type-info,.awsui .awsui-flash.awsui-flash-type-warning{background-color:#0073bb;background-color:var(--awsui-color-background-notification-blue)}.awsui .awsui-flash-body{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;min-width:0}@media (max-width: 768px){.awsui .awsui-flash-body{display:block}.awsui .awsui-flash-body .awsui-flash-action-button{margin-left:5px}}.awsui .awsui-flash-icon,.awsui .awsui-flash-message{margin:5px}.awsui .awsui-flash-message{-webkit-box-flex:1;-ms-flex:1 1 0;flex:1 1 0;min-width:0}.awsui .awsui-flash-message p:first-child{padding-top:0}.awsui .awsui-flash-message p:last-child{padding-bottom:0}.awsui awsui-button.awsui-flash-action-button{white-space:nowrap;margin-left:20px}.awsui .awsui-flash-dismiss{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:10px}.awsui .awsui-flash-dismiss awsui-button:not(:hover) .awsui-icon{color:#d5dbdb;color:var(--awsui-color-text-notification-icon-default)}.awsui .awsui-flash-dismiss awsui-button:hover .awsui-icon{color:#fafafa;color:var(--awsui-color-text-notification-icon-hover)}.awsui .awsui-flash-icon{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.awsui .awsui-flashbar awsui-flash:not(:last-child) .awsui-flash{margin-bottom:2px}.awsui awsui-form,.awsui awsui-form-section{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif}.awsui .awsui-form-header{margin-bottom:10px}.awsui .awsui-form-title{font-size:var(--font-size-5);line-height:var(--line-height-5);padding:5px 0;color:#16191f;color:var(--awsui-color-text-heading-default)}.awsui .awsui-form-title h1{padding:0}.awsui .awsui-form-description{font-size:var(--font-size-1);line-height:var(--line-height-3);padding:5px 0;color:#545b64;color:var(--awsui-color-text-heading-secondary)}.awsui .awsui-form-description p{padding:0}.awsui .awsui-form-error{margin-bottom:20px}.awsui .awsui-form-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.awsui awsui-select-filter{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;border:none;border-bottom:1px solid #eaeded;border-bottom:1px solid var(--awsui-color-border-divider-default);display:block}.awsui awsui-select-filter .awsui-input,.awsui awsui-select-filter .awsui-input:hover{border-color:transparent;-webkit-box-shadow:none;box-shadow:none;border-bottom-right-radius:0;border-bottom-left-radius:0}.awsui awsui-select-filter .awsui-input:focus,.awsui awsui-select-filter .awsui-input:focus:hover{outline:2px dotted transparent;border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-focused, #00a1c9);border-radius:2px;-webkit-box-shadow:0 0 0 1px #00a1c9;-webkit-box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 1px #00a1c9;box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);border-radius:0}.awsui awsui-select-trigger{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif}.awsui .awsui-select-trigger{width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:2px;border:1px solid #aab7b8;border:1px solid var(--awsui-color-border-input-default);cursor:default;color:#16191f;color:var(--awsui-color-text-body-default);background-color:#fff;background-color:var(--awsui-color-background-input-default)}.awsui .awsui-select-trigger.awsui-select-trigger-disabled{background-color:#eaeded;background-color:var(--awsui-color-background-input-disabled, #eaeded);border:1px solid #eaeded;border:1px solid var(--awsui-color-border-input-disabled, #eaeded);color:#879596;color:var(--awsui-color-text-input-disabled, #879596);cursor:auto}.awsui .awsui-select-trigger.awsui-select-trigger-no-option,.awsui .awsui-select-trigger.awsui-select-trigger-variant-label{padding:4px 0 4px 10px}.awsui .awsui-select-trigger:focus{outline:none}.awsui .awsui-select-trigger[data-awsui-focused]{outline:2px dotted transparent;border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-focused, #00a1c9);border-radius:2px;-webkit-box-shadow:0 0 0 1px #00a1c9;-webkit-box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 1px #00a1c9;box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-select-trigger:hover .awsui-select-trigger-icon{color:#16191f;color:var(--awsui-color-text-interactive-hover)}.awsui .awsui-select-trigger.awsui-select-trigger-disabled .awsui-select-trigger-icon{color:#aab7b8;color:var(--awsui-color-text-interactive-disabled)}.awsui .awsui-select-trigger .awsui-select-option-description,.awsui .awsui-select-trigger .awsui-select-option-label,.awsui .awsui-select-trigger .awsui-select-option-label-tag,.awsui .awsui-select-trigger .awsui-select-option-tag{min-width:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;display:block}.awsui .awsui-select-trigger-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.awsui .awsui-select-trigger-textbox{display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden;width:100%}.awsui .awsui-select-trigger-icon{padding-right:10px;color:#545b64;color:var(--awsui-color-text-interactive-default)}.awsui .awsui-select-trigger-icon .awsui-icon{-webkit-transform:rotate(0deg);transform:rotate(0deg)}.awsui .awsui-select-open [data-awsui-focused]{border:1px solid #aab7b8;border:1px solid var(--awsui-color-border-input-default);-webkit-box-shadow:none;box-shadow:none}.awsui .awsui-multiselect-open .awsui-select-trigger-icon .awsui-icon,.awsui .awsui-select-open .awsui-select-trigger-icon .awsui-icon{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.awsui .awsui-select-trigger-label,.awsui .awsui-select-trigger-placeholder{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.awsui .awsui-select-trigger-placeholder{color:#aab7b8;color:var(--awsui-color-text-input-placeholder, #aab7b8);font-style:italic}.awsui .awsui-invalid .awsui-select-trigger:not(.awsui-select-trigger-valid),.awsui .awsui-select-trigger.awsui-select-trigger-invalid{color:#d13212;color:var(--awsui-color-text-status-error, #d13212);border-color:#d13212;border-color:var(--awsui-color-text-status-error, #d13212);padding-left:7px;border-left-width:4px}.awsui .awsui-invalid .awsui-select-trigger:not(.awsui-select-trigger-valid) .awsui-select-trigger-icon,.awsui .awsui-select-trigger.awsui-select-trigger-invalid .awsui-select-trigger-icon{color:#d13212;color:var(--awsui-color-text-status-error)}.awsui awsui-multiselect{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif}.awsui .awsui-multiselect__token-toggle-description{color:#0073bb;color:var(--awsui-color-text-link-default, #0073bb);margin-left:3px}.awsui .awsui-multiselect__token-toggle{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:transparent;border:1px solid transparent;margin-top:10px;padding:0;margin-left:-1px}.awsui .awsui-multiselect__token-toggle:hover{cursor:pointer}.awsui .awsui-multiselect__token-toggle:focus{outline:none}.awsui .awsui-multiselect__token-toggle[data-awsui-focused]{outline:2px dotted transparent;border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-focused, #00a1c9);border-radius:2px;-webkit-box-shadow:0 0 0 1px #00a1c9;-webkit-box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 1px #00a1c9;box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9)}.awsui.awsui-motion awsui-multiselect .awsui-select-trigger-icon .awsui-icon,.awsui.awsui-motion awsui-select .awsui-select-trigger-icon .awsui-icon{-webkit-transition:-webkit-transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);-webkit-transition:-webkit-transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180);transition:-webkit-transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:-webkit-transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180);-o-transition:transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);-o-transition:transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180);transition:transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180);transition:transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180), -webkit-transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180);transition:transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 135ms cubic-bezier(0.165, 0.84, 0.44, 1);transition:transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180),
    -webkit-transform var(--awsui-motion-duration-rotate-180) var(--awsui-motion-easing-rotate-180)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion awsui-multiselect .awsui-select-trigger-icon .awsui-icon,.awsui.awsui-motion awsui-select .awsui-select-trigger-icon .awsui-icon{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui awsui-select{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif}.awsui awsui-multiselect,.awsui awsui-select{display:inline-block;position:relative;width:100%;min-width:100px;font-size:var(--font-size-1);line-height:var(--line-height-3);font-weight:400}.awsui awsui-multiselect .awsui-select-keyboard-area,.awsui awsui-select .awsui-select-keyboard-area{position:relative;outline:none}.awsui awsui-multiselect .awsui-select-loading,.awsui awsui-select .awsui-select-loading{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;color:#687078;color:var(--awsui-color-text-status-inactive)}.awsui awsui-multiselect .awsui-select-loading-text,.awsui awsui-select .awsui-select-loading-text{padding:5px}.awsui .awsui-popover__arrow{position:absolute;width:20px;height:10px}.awsui .awsui-popover__arrow--position-right-bottom,.awsui .awsui-popover__arrow--position-right-top{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:0 100%;transform-origin:0 100%}.awsui .awsui-popover__arrow--position-right-bottom .awsui-popover__arrow-outer::after,.awsui .awsui-popover__arrow--position-right-top .awsui-popover__arrow-outer::after{-webkit-box-shadow:-0.71px 0.71px 4px -2px rgba(0, 28, 36, 0.5);-webkit-box-shadow:-0.71px 0.71px 4px -2px var(--awsui-color-shadow-default, rgba(0, 28, 36, 0.5));box-shadow:-0.71px 0.71px 4px -2px rgba(0, 28, 36, 0.5);box-shadow:-0.71px 0.71px 4px -2px var(--awsui-color-shadow-default, rgba(0, 28, 36, 0.5))}.awsui .awsui-popover__arrow--position-right-top{top:20px;left:0}.awsui .awsui-popover__arrow--position-right-bottom{bottom:10px;left:0}.awsui .awsui-popover__arrow--position-left-bottom,.awsui .awsui-popover__arrow--position-left-top{-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-transform-origin:100% 100%;transform-origin:100% 100%}.awsui .awsui-popover__arrow--position-left-bottom .awsui-popover__arrow-outer::after,.awsui .awsui-popover__arrow--position-left-top .awsui-popover__arrow-outer::after{-webkit-box-shadow:0.71px -0.71px 4px -2px rgba(0, 28, 36, 0.5);-webkit-box-shadow:0.71px -0.71px 4px -2px var(--awsui-color-shadow-default, rgba(0, 28, 36, 0.5));box-shadow:0.71px -0.71px 4px -2px rgba(0, 28, 36, 0.5);box-shadow:0.71px -0.71px 4px -2px var(--awsui-color-shadow-default, rgba(0, 28, 36, 0.5))}.awsui .awsui-popover__arrow--position-left-top{top:20px;right:0}.awsui .awsui-popover__arrow--position-left-bottom{bottom:10px;right:0}.awsui .awsui-popover__arrow--position-top-center,.awsui .awsui-popover__arrow--position-top-responsive{-webkit-transform:rotate(180deg);transform:rotate(180deg);-webkit-transform-origin:50% 50%;transform-origin:50% 50%}.awsui .awsui-popover__arrow--position-top-center .awsui-popover__arrow-outer::after,.awsui .awsui-popover__arrow--position-top-responsive .awsui-popover__arrow-outer::after{-webkit-box-shadow:-0.71px -0.71px 4px -2px rgba(0, 28, 36, 0.5);-webkit-box-shadow:-0.71px -0.71px 4px -2px var(--awsui-color-shadow-default, rgba(0, 28, 36, 0.5));box-shadow:-0.71px -0.71px 4px -2px rgba(0, 28, 36, 0.5);box-shadow:-0.71px -0.71px 4px -2px var(--awsui-color-shadow-default, rgba(0, 28, 36, 0.5))}.awsui .awsui-popover__arrow--position-top-center{bottom:-10px;left:calc(50% - 10px)}.awsui .awsui-popover__arrow--position-bottom-center .awsui-popover__arrow-outer::after,.awsui .awsui-popover__arrow--position-bottom-responsive .awsui-popover__arrow-outer::after{-webkit-box-shadow:0.71px 0.71px 4px -2px rgba(0, 28, 36, 0.5);-webkit-box-shadow:0.71px 0.71px 4px -2px var(--awsui-color-shadow-default, rgba(0, 28, 36, 0.5));box-shadow:0.71px 0.71px 4px -2px rgba(0, 28, 36, 0.5);box-shadow:0.71px 0.71px 4px -2px var(--awsui-color-shadow-default, rgba(0, 28, 36, 0.5))}.awsui .awsui-popover__arrow--position-bottom-center{top:-10px;left:calc(50% - 10px)}.awsui .awsui-popover__arrow .awsui-popover__arrow-inner,.awsui .awsui-popover__arrow .awsui-popover__arrow-outer{position:absolute;overflow:hidden;width:20px;height:10px;top:0;left:0}.awsui .awsui-popover__arrow .awsui-popover__arrow-inner::after,.awsui .awsui-popover__arrow .awsui-popover__arrow-outer::after{content:'';-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;position:absolute;border-radius:2px 0 0 0;bottom:0;left:0;width:14px;height:14px;-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:0 100%;transform-origin:0 100%}.awsui .awsui-popover__arrow .awsui-popover__arrow-outer::after{background-color:#d5dbdb;background-color:var(--awsui-color-border-popover, #d5dbdb)}.awsui .awsui-popover__arrow .awsui-popover__arrow-inner{top:2px}.awsui .awsui-popover__arrow .awsui-popover__arrow-inner::after{border-radius:1px 0 0 0;background-color:#fff;background-color:var(--awsui-color-background-popover, #fff)}.awsui.awsui-motion .awsui-popover__body--visible{-webkit-animation:awsui-motion-fade-in 0.18s ease-out;-webkit-animation:awsui-motion-fade-in var(--awsui-motion-duration-show-paced) var(--awsui-motion-easing-show-paced);animation:awsui-motion-fade-in 0.18s ease-out;animation:awsui-motion-fade-in var(--awsui-motion-duration-show-paced) var(--awsui-motion-easing-show-paced)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion .awsui-popover__body--visible{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui .awsui-popover,.awsui .awsui-popover__trigger,.awsui .awsui-popover__trigger-text,.awsui .awsui-popover__trigger>span[awsui-popover-region='trigger'],.awsui .awsui-popover__trigger>span[awsui-popover-region='trigger']>span{display:inline-block}.awsui .awsui-popover__trigger-text{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;position:relative;cursor:pointer;color:inherit;border:none;border-bottom:1px dashed}.awsui .awsui-popover__trigger-text:focus{outline:none}.awsui .awsui-popover__trigger-text[data-awsui-focused]{outline:2px dotted transparent;outline-offset:1px}.awsui .awsui-popover__trigger-text[data-awsui-focused]::before{content:' ';display:block;position:absolute;left:-2px;top:-2px;width:calc(100% + 4px);height:calc(100% + 4px);border-radius:2px;-webkit-box-shadow:0 0 0 2px #00a1c9;-webkit-box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 2px #00a1c9;box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-popover__trigger-text [awsui-popover-region='trigger']{position:relative}.awsui .awsui-popover__body{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;display:none;box-sizing:border-box;position:fixed;border-radius:2px;padding:10px 15px;z-index:1000;top:0;left:0;width:auto;height:auto;background-color:#fff;background-color:var(--awsui-color-background-popover, #fff);-webkit-box-shadow:0 1px 4px -2px rgba(0, 28, 36, 0.5);-webkit-box-shadow:0 1px 4px -2px var(--awsui-color-shadow-default, rgba(0, 28, 36, 0.5));box-shadow:0 1px 4px -2px rgba(0, 28, 36, 0.5);box-shadow:0 1px 4px -2px var(--awsui-color-shadow-default, rgba(0, 28, 36, 0.5));border:1px solid #d5dbdb;border:1px solid var(--awsui-color-border-popover, #d5dbdb)}.awsui .awsui-popover__body:focus{outline:none}.awsui .awsui-popover__body[data-awsui-focused]{outline:2px dotted transparent;outline-offset:0}.awsui .awsui-popover__body[data-awsui-focused]::before{content:' ';display:block;position:absolute;left:-1px;top:-1px;width:calc(100% + 2px);height:calc(100% + 2px);border-radius:2px;-webkit-box-shadow:0 0 0 2px #00a1c9;-webkit-box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 2px #00a1c9;box-shadow:0 0 0 2px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-popover__body--visible{display:block}.awsui .awsui-popover__body--size-small{max-width:210px}.awsui .awsui-popover__body--size-medium{max-width:310px}.awsui .awsui-popover__body--size-large{max-width:460px}.awsui .awsui-popover__body--position-bottom-responsive,.awsui .awsui-popover__body--position-top-responsive{max-width:none;width:80%}.awsui .awsui-popover__main--has-dismiss-button awsui-column-layout>.awsui-column-layout-variant-text-grid{clear:both;-webkit-transform:translateY(-14px);transform:translateY(-14px);margin-bottom:-34px}.awsui .awsui-popover__header{min-width:0;-ms-word-break:break-all;word-break:break-word;margin-bottom:5px}.awsui .awsui-popover__header h1,.awsui .awsui-popover__header h2{font-size:15px;line-height:var(--line-height-3);display:inline;font-weight:400}.awsui .awsui-popover__content{min-width:0;-ms-word-break:break-all;word-break:break-word;color:#545b64;color:var(--awsui-color-text-body-secondary, #545b64)}.awsui .awsui-popover__dismiss{margin:-5px -5px -5px 0;line-height:var(--line-height-3);float:right}.awsui.awsui-motion .awsui-progress-bar .awsui-progress-bar__progress::-webkit-progress-value{-webkit-transition:width 135ms linear;-webkit-transition:width var(--awsui-motion-duration-moderate) linear;transition:width 135ms linear;transition:width var(--awsui-motion-duration-moderate) linear}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion .awsui-progress-bar .awsui-progress-bar__progress::-webkit-progress-value{-webkit-animation:none;animation:none;-webkit-transition:none;transition:none}}.awsui.awsui-motion .awsui-progress-bar .awsui-util-status-negative,.awsui.awsui-motion .awsui-progress-bar .awsui-util-status-positive,.awsui.awsui-motion .awsui-progress-bar [awsui-progress-bar-region='resultText']{-webkit-animation:awsui-motion-fade-in 0.18s ease-out;-webkit-animation:awsui-motion-fade-in var(--awsui-motion-duration-transition-show-paced)
    var(--awsui-motion-easing-transition-show-paced);animation:awsui-motion-fade-in 0.18s ease-out;animation:awsui-motion-fade-in var(--awsui-motion-duration-transition-show-paced)
    var(--awsui-motion-easing-transition-show-paced)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion .awsui-progress-bar .awsui-util-status-negative,.awsui.awsui-motion .awsui-progress-bar .awsui-util-status-positive,.awsui.awsui-motion .awsui-progress-bar [awsui-progress-bar-region='resultText']{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui .awsui-progress-bar .awsui-progress-bar__progress{height:4px;border:0;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:10px;background-color:#eaeded;background-color:var(--awsui-color-background-progress-bar-layout-default)}.awsui .awsui-progress-bar .awsui-progress-bar__progress::-webkit-progress-bar{height:4px;border:0;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:10px;background-color:#eaeded;background-color:var(--awsui-color-background-progress-bar-layout-default)}.awsui .awsui-progress-bar .awsui-progress-bar__progress::-webkit-progress-value{border-radius:10px;background-color:#0073bb;background-color:var(--awsui-color-background-progress-bar-content-default)}.awsui .awsui-progress-bar .awsui-progress-bar__progress::-moz-progress-bar{border-radius:10px;background-color:#0073bb;background-color:var(--awsui-color-background-progress-bar-content-default)}.awsui .awsui-progress-bar .awsui-progress-bar__progress::-ms-fill{border-radius:10px;background-color:#0073bb;border:none}.awsui .awsui-progress-bar .awsui-progress-bar__label{display:block}.awsui .awsui-progress-bar .awsui-progress-bar__container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:800px}.awsui .awsui-progress-bar .awsui-progress-bar__container .awsui-progress-bar__progress{width:100%;margin-right:10px;min-width:0}.awsui .awsui-progress-bar .awsui-progress-bar__container .awsui-progress-bar__percentage{width:33px;text-align:right;-ms-flex-negative:0;flex-shrink:0;white-space:nowrap}.awsui .awsui-progress-bar .awsui-progress-bar__additional-info,.awsui .awsui-progress-bar .awsui-progress-bar__description{display:block;line-height:15px}@media (max-width: 576px){.awsui .awsui-progress-bar .awsui-progress-bar__result-button{display:block;margin-left:20px;padding-bottom:2px}}@media (max-width: 992px){.awsui .awsui-progress-bar--key-value .awsui-progress-bar__result-button{display:block;margin-left:20px;padding-bottom:2px}}.awsui .awsui-progress-bar--flash{display:-webkit-box;display:-ms-flexbox;display:flex}.awsui .awsui-progress-bar--flash .awsui-progress-bar__progress{height:4px;border:0;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:10px;background-color:hsla(0, 0%, 100%, 0.25);background-color:var(--awsui-color-background-progress-bar-layout-in-flash)}.awsui .awsui-progress-bar--flash .awsui-progress-bar__progress::-webkit-progress-bar{height:4px;border:0;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:10px;background-color:hsla(0, 0%, 100%, 0.25);background-color:var(--awsui-color-background-progress-bar-layout-in-flash)}.awsui .awsui-progress-bar--flash .awsui-progress-bar__progress::-webkit-progress-value{border-radius:10px;background-color:hsla(0, 0%, 100%, 0.7);background-color:var(--awsui-color-background-progress-bar-content-in-flash)}.awsui .awsui-progress-bar--flash .awsui-progress-bar__progress::-moz-progress-bar{border-radius:10px;background-color:hsla(0, 0%, 100%, 0.7);background-color:var(--awsui-color-background-progress-bar-content-in-flash)}.awsui .awsui-progress-bar--flash .awsui-progress-bar__progress::-ms-fill{border-radius:10px;background-color:hsla(0, 0%, 100%, 0.7);border:none}.awsui .awsui-progress-bar--flash .awsui-progress-bar__progress-container{-webkit-box-flex:1;-ms-flex:auto;flex:auto}.awsui .awsui-progress-bar--flash .awsui-progress-bar__additional-info,.awsui .awsui-progress-bar--flash .awsui-progress-bar__description,.awsui .awsui-progress-bar--flash .awsui-progress-bar__label,.awsui .awsui-progress-bar--flash .awsui-progress-bar__percentage{color:inherit}.awsui .awsui-progress-bar--flash .awsui-progress-bar__label{font-weight:700}.awsui .awsui-progress-bar--flash .awsui-progress-bar__result-button{margin-right:-5px;margin-top:-5px}@media (max-width: 768px){.awsui .awsui-progress-bar--flash{display:block}.awsui .awsui-progress-bar--flash>*{min-width:100%}.awsui .awsui-progress-bar--flash .awsui-progress-bar__result-button{margin-left:0;margin-top:5px;margin-bottom:-5px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}}.awsui .awsui-s3-in-context-fields{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:-7.5px}.awsui .awsui-s3-in-context-fields>div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.awsui .awsui-s3-in-context-fields .awsui-s3-in-context-fields__uri{min-width:200px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.awsui .awsui-s3-in-context-fields .awsui-s3-in-context-fields__version{max-width:180px;min-width:140px;width:20%}.awsui .awsui-s3-in-context-fields .awsui-s3-in-context-fields__version>label{color:#16191f;color:var(--awsui-color-text-form-label)}.awsui .awsui-s3-in-context-fields>*{margin:7.5px 7.5px 0}.awsui .awsui-s3-in-context-fields__browse,.awsui .awsui-s3-in-context-fields__view{white-space:nowrap}.awsui .awsui-s3-in-context-fields__divider{width:1px;min-width:1px;height:30px;background-color:#eaeded;background-color:var(--awsui-color-border-divider-default)}.awsui .awsui-s3-selection-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}.awsui .awsui-segment{font-size:var(--font-size-1);line-height:var(--line-height-3);word-wrap:break-word;max-width:100%;overflow:hidden;border:1px solid #687078;padding:4px 20px;border:1px solid var(--awsui-color-border-segment-default);border-right-width:0;font-weight:700;letter-spacing:0.25px;background:#fff;background:var(--awsui-color-background-button-normal-default);color:#545b64;color:var(--awsui-color-text-interactive-default);overflow:visible}.awsui .awsui-segment:focus{outline:none}.awsui .awsui-segment[data-awsui-focused]{z-index:1;outline:2px dotted transparent;border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-focused, #00a1c9);border-radius:2px;-webkit-box-shadow:0 0 0 1px #00a1c9;-webkit-box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 1px #00a1c9;box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);padding-right:19px}.awsui .awsui-segment[data-awsui-focused]+.awsui-segment{border-left-width:0;padding-left:21px}.awsui .awsui-segment[data-awsui-focused]:first-child{border-radius:2px}.awsui .awsui-segment[data-awsui-focused]:last-child{border-radius:2px;padding-right:20px}.awsui .awsui-segment:first-child{grid-column:1;-ms-grid-column:1}.awsui .awsui-segment:nth-child(2){grid-column:2;-ms-grid-column:2}.awsui .awsui-segment:nth-child(3){grid-column:3;-ms-grid-column:3}.awsui .awsui-segment:nth-child(4){grid-column:4;-ms-grid-column:4}.awsui .awsui-segment:nth-child(5){grid-column:5;-ms-grid-column:5}.awsui .awsui-segment:nth-child(6){grid-column:6;-ms-grid-column:6}.awsui .awsui-segment:hover:not(.awsui-segment--selected):not(.awsui-segment--disabled):not(:focus){background:#fafafa;background:var(--awsui-color-background-button-normal-hover);color:#16191f;color:var(--awsui-color-text-interactive-hover);border-color:#16191f;border-color:var(--awsui-color-border-segment-hover);cursor:pointer}.awsui .awsui-segment:hover:not(.awsui-segment--selected):not(.awsui-segment--disabled):not(:focus)+.awsui-segment{border-left-color:#16191f;border-left-color:var(--awsui-color-border-segment-hover)}.awsui .awsui-segment--disabled{background:#fff;background:var(--awsui-color-background-button-normal-disabled);border-color:#d5dbdb #687078;border-color:var(--awsui-color-border-button-normal-disabled) var(--awsui-color-border-segment-default);color:#aab7b8;color:var(--awsui-color-text-interactive-disabled)}.awsui .awsui-segment--selected{background:#eaeded;background:var(--awsui-color-background-button-normal-active);border-color:#16191f;border-color:var(--awsui-color-border-segment-hover);color:#16191f;color:var(--awsui-color-text-interactive-hover)}.awsui .awsui-segment--selected+.awsui-segment:not(:focus){border-left-color:#16191f;border-left-color:var(--awsui-color-border-segment-hover)}.awsui .awsui-segment:last-child{border-right-width:1px;border-radius:0 2px 2px 0}.awsui .awsui-segment.awsui-segment--disabled:last-child{border-right-color:#d5dbdb;border-right-color:var(--awsui-color-border-button-normal-disabled)}.awsui .awsui-segment:first-child{border-radius:2px 0 0 2px}.awsui .awsui-segment.awsui-segment--disabled:first-child{border-left-color:#d5dbdb;border-left-color:var(--awsui-color-border-button-normal-disabled)}.awsui .awsui-segment__icon{position:relative;left:-5px;margin-right:4px}.awsui .awsui-segment__segment-no-text{margin-right:auto;margin-left:auto;right:0;left:0}.awsui .awsui-segmented-control--select{display:none}@media (max-width: 768px){.awsui .awsui-segmented-control--select{display:block}}.awsui .awsui-segmented-control--segment-part{display:-ms-inline-grid;display:inline-grid}@media (max-width: 768px){.awsui .awsui-segmented-control--segment-part{display:none}}.awsui .awsui-segmented-control--2-segments{-ms-grid-columns:1fr 1fr;grid-template-columns:repeat(2, 1fr)}.awsui .awsui-segmented-control--3-segments{-ms-grid-columns:1fr 1fr 1fr;grid-template-columns:repeat(3, 1fr)}.awsui .awsui-segmented-control--4-segments{-ms-grid-columns:1fr 1fr 1fr 1fr;grid-template-columns:repeat(4, 1fr)}.awsui .awsui-segmented-control--5-segments{-ms-grid-columns:1fr 1fr 1fr 1fr 1fr;grid-template-columns:repeat(5, 1fr)}.awsui .awsui-segmented-control--6-segments{-ms-grid-columns:1fr 1fr 1fr 1fr 1fr 1fr;grid-template-columns:repeat(6, 1fr)}.awsui awsui-side-navigation{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;min-width:0;-ms-word-break:break-all;word-break:break-word}.awsui .awsui-side-navigation li{margin:10px 0;padding:0;list-style:none}.awsui .awsui-side-navigation__divider{border:none;border-top:1px solid #eaeded;border-top:1px solid var(--awsui-color-border-divider-default);margin-bottom:15px}.awsui .awsui-side-navigation__divider--default{margin:24px -10px 25px}.awsui .awsui-side-navigation__divider--header{margin-top:-1px}.awsui .awsui-side-navigation__header-link:hover,.awsui .awsui-side-navigation__link:hover{color:#ec7211;color:var(--awsui-color-text-accent)}.awsui .awsui-side-navigation__header-link:focus,.awsui .awsui-side-navigation__header-link:hover,.awsui .awsui-side-navigation__link:focus,.awsui .awsui-side-navigation__link:hover{text-decoration:none}.awsui .awsui-side-navigation__header-link{color:#16191f;color:var(--awsui-color-text-heading-default);font-weight:700}.awsui .awsui-side-navigation__link{color:#545b64;color:var(--awsui-color-text-body-secondary);font-weight:400}.awsui .awsui-side-navigation__link--active{font-weight:700;color:#ec7211;color:var(--awsui-color-text-accent)}.awsui .awsui-side-navigation__header{padding:20px 56px 20px 310x}.awsui .awsui-side-navigation__list--expandable-link-group{padding-left:40px}.awsui .awsui-side-navigation__list--root{margin:0;padding-left:30px;padding-right:30px}.awsui .awsui-side-navigation__sub-navigation--expandable-link-group,.awsui .awsui-side-navigation__sub-navigation--section{margin-left:-20px}.awsui .awsui-side-navigation__sub-navigation--section{margin-top:20px;margin-bottom:20px}.awsui .awsui-side-navigation>:last-child{margin-bottom:80px}@-webkit-keyframes awsui-motion-fade-in{0%{opacity:0.2}to{opacity:1}}@keyframes awsui-motion-fade-in{0%{opacity:0.2}to{opacity:1}}@-webkit-keyframes awsui-motion-fade-in-0{0%{opacity:0}to{opacity:1}}@keyframes awsui-motion-fade-in-0{0%{opacity:0}to{opacity:1}}@-webkit-keyframes awsui-motion-fade-in-dropdown{0%{opacity:0.4}to{opacity:1}}@keyframes awsui-motion-fade-in-dropdown{0%{opacity:0.4}to{opacity:1}}.awsui.awsui-motion .awsui-tabs-tab-link:not(.awsui-tabs-tab-disabled)::before{-webkit-transition:opacity 90ms linear;-webkit-transition:opacity var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick);-o-transition:opacity 90ms linear;-o-transition:opacity var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick);transition:opacity 90ms linear;transition:opacity var(--awsui-motion-duration-transition-quick) var(--awsui-motion-easing-transition-quick)}@media (prefers-reduced-motion: reduce){.awsui.awsui-motion .awsui-tabs-tab-link:not(.awsui-tabs-tab-disabled)::before{-webkit-animation:none;animation:none;-webkit-transition:none;-o-transition:none;transition:none}}.awsui awsui-tabs{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;display:block;width:100%}.awsui .awsui-tabs-header{margin:0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;border-bottom:1px solid #aab7b8;border-bottom:1px solid var(--awsui-color-border-tabs);max-width:100%}.awsui .awsui-tabs-content-wrapper{padding:19px 0}.awsui .awsui-tabs-tab{list-style:none;padding:0;-ms-flex-negative:0;flex-shrink:0;display:block;max-width:calc(100% - 20px)}.awsui .awsui-tabs-tab-label{display:inline-block;padding:5px 20px;min-width:0;-ms-word-break:break-all;word-break:break-word}.awsui .awsui-tabs-tab:not(:last-child) .awsui-tabs-tab-label{margin-right:-1px;border-right:1px solid #aab7b8;border-right:1px solid var(--awsui-color-border-tabs)}.awsui .awsui-tabs-tab-link{position:relative;display:block;cursor:pointer;padding:13px 0;border:1px solid transparent;font-size:var(--font-size-1);line-height:var(--line-height-3);font-weight:700;color:#545b64;color:var(--awsui-color-text-interactive-default)}.awsui .awsui-tabs-tab-link:hover{color:#ec7211;color:var(--awsui-color-text-accent);text-decoration:none}.awsui .awsui-tabs-tab-link:focus{outline:none;text-decoration:none}.awsui .awsui-tabs-tab-link[data-awsui-focused]{z-index:1;outline:2px dotted transparent;border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-focused, #00a1c9);border-radius:2px;-webkit-box-shadow:0 0 0 1px #00a1c9;-webkit-box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 1px #00a1c9;box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-tabs-tab-link[data-awsui-focused] .awsui-tabs-tab-label{border-right-color:transparent}.awsui .awsui-tabs-tab:first-child{margin-left:1px}.awsui .awsui-tabs-tab:last-child{margin-right:1px}.awsui .awsui-tabs-tab-disabled,.awsui .awsui-tabs-tab-disabled:hover{cursor:default;color:#aab7b8;color:var(--awsui-color-text-interactive-disabled);font-weight:400}.awsui .awsui-tabs-tab-link:not(.awsui-tabs-tab-disabled)::before{content:'';position:absolute;left:0;width:100%;bottom:-1px;height:2px;background:#16191f;background:var(--awsui-color-text-interactive-hover);opacity:0}.awsui .awsui-tabs-tab-active:not(.awsui-tabs-tab-disabled){color:#ec7211;color:var(--awsui-color-text-accent)}.awsui .awsui-tabs-tab-active:not(.awsui-tabs-tab-disabled)::before{opacity:1}.awsui .awsui-tabs-variant-default>.awsui-tabs-header{border-top:1px solid transparent}.awsui .awsui-tabs-variant-default>.awsui-tabs-content{padding:20px 0}.awsui .awsui-tabs-variant-container.awsui-util-container{margin-bottom:0}.awsui .awsui-tabs-variant-container.awsui-util-container>:last-child{padding-bottom:14px}.awsui .awsui-tabs-variant-container.awsui-util-container .awsui-tabs-header{padding:0}.awsui .awsui-tabs-variant-container.awsui-util-container .awsui-tabs-content{padding:15px 20px 20px}.awsui .awsui-tabs-content{border:1px solid transparent}.awsui .awsui-tabs-content-active[data-awsui-focused]{outline:2px dotted transparent;border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-focused, #00a1c9);border-radius:2px;-webkit-box-shadow:0 0 0 1px #00a1c9;-webkit-box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 1px #00a1c9;box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-tabs-content-active:focus{outline:none}.awsui .awsui-tabs-content-inactive{display:none}.awsui awsui-textarea{-webkit-animation:none 0s ease 0s 1 normal none running;animation:none 0s ease 0s 1 normal none running;-webkit-backface-visibility:visible;backface-visibility:visible;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;border:none;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:#000;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule:medium none currentColor;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-webkit-column-span:1;-moz-column-span:1;column-span:1;-webkit-columns:auto;-moz-columns:auto;columns:auto;content:normal;counter-inc15pxent:none;counter-reset:none;cursor:auto;direction:ltr;display:inline;empty-cells:show;float:none;font-family:serif;font-size:medium;font-style:normal;font-variant:normal;font-stretch:normal;line-height:normal;height:auto;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:disc outside none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:2;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;position:static;right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:left;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;-webkit-transform:none;transform:none;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition:none 0s ease 0s;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;word-spacing:normal;z-index:auto;all:initial;color:#16191f;color:var(--awsui-color-text-body-default, #16191f);font-weight:400;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;width:100%;display:inline-block}.awsui .awsui-textarea,.awsui awsui-textarea{-webkit-box-sizing:border-box;font-size:var(--font-size-1);line-height:var(--line-height-3);box-sizing:border-box}.awsui .awsui-textarea{max-width:100%;width:100%;padding:4px 10px;color:#16191f;color:var(--awsui-color-text-body-default);background-color:#fff;background-color:var(--awsui-color-background-input-default);border-radius:2px;border:1px solid #aab7b8;border:1px solid var(--awsui-color-border-input-default);vertical-align:top}.awsui .awsui-textarea.awsui-textarea-readonly{background-color:#fff;background-color:var(--awsui-color-background-input-default, #fff);border:1px solid #eaeded;border:1px solid var(--awsui-color-border-input-disabled, #eaeded)}.awsui .awsui-textarea:focus{outline:2px dotted transparent;border:1px solid #00a1c9;border:1px solid var(--awsui-color-border-item-focused, #00a1c9);border-radius:2px;-webkit-box-shadow:0 0 0 1px #00a1c9;-webkit-box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9);box-shadow:0 0 0 1px #00a1c9;box-shadow:0 0 0 1px var(--awsui-color-border-item-focused, #00a1c9)}.awsui .awsui-textarea:disabled{background-color:#eaeded;background-color:var(--awsui-color-background-input-disabled, #eaeded);border:1px solid #eaeded;border:1px solid var(--awsui-color-border-input-disabled, #eaeded);color:#879596;color:var(--awsui-color-text-input-disabled, #879596);cursor:auto}.awsui .awsui-textarea::-webkit-input-placeholder{color:#aab7b8;color:var(--awsui-color-text-input-placeholder, #aab7b8);font-style:italic}.awsui .awsui-textarea:-moz-placeholder,.awsui .awsui-textarea::-moz-placeholder{color:#aab7b8;color:var(--awsui-color-text-input-placeholder, #aab7b8);font-style:italic;opacity:1}.awsui .awsui-textarea:-ms-input-placeholder{color:#aab7b8;color:var(--awsui-color-text-input-placeholder, #aab7b8);font-style:italic}.awsui .awsui-textarea::-ms-input-placeholder{color:#aab7b8;color:var(--awsui-color-text-input-placeholder, #aab7b8);font-style:italic}.awsui .awsui-invalid .awsui-textarea:not(.awsui-textarea-valid),.awsui .awsui-textarea.awsui-textarea-invalid{color:#d13212;color:var(--awsui-color-text-status-error, #d13212);border-color:#d13212;border-color:var(--awsui-color-text-status-error, #d13212);padding-left:7px;border-left-width:4px}.awsui .awsui-tooltip-trigger,.awsui .awsui-tooltip-trigger .awsui-icon,.awsui .awsui-tooltip-trigger i,.awsui .awsui-tooltip-trigger span{display:inline-block}.awsui .awsui-tooltip-text{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;color:#d5dbdb;color:var(--awsui-color-text-tooltip-default);padding:7.5px 10px;font-size:var(--font-size-0);line-height:16px;font-family:Amazon Ember, Helvetica Neue, Roboto, Arial, sans-serif;border-radius:2px;word-wrap:break-word;background-color:#16191f;background-color:var(--awsui-color-background-tooltip)}.awsui .awsui-tooltip-text.awsui-tooltip-size-small{max-width:210px}.awsui .awsui-tooltip-text.awsui-tooltip-size-medium{max-width:310px}.awsui .awsui-tooltip-text.awsui-tooltip-size-large{max-width:460px}.awsui .awsui-tooltip-text::before{content:' ';border:9px solid transparent;position:absolute;pointer-events:none}.awsui .awsui-tooltip-text a{color:#00a1c9;color:var(--awsui-color-text-tooltip-link)}.awsui .awsui-tooltip-text p{color:#d5dbdb;color:var(--awsui-color-text-tooltip-default);font-size:var(--font-size-0);line-height:16px}.awsui .awsui-tooltip-wrap{display:none;position:absolute;z-index:1001}.awsui .awsui-tooltip-wrap.awsui-tooltip-visible{display:block}.awsui .awsui-tooltip-position-bottom{padding-top:10px}.awsui .awsui-tooltip-position-bottom .awsui-tooltip-text::before{border-bottom-color:#16191f;border-bottom-color:var(--awsui-color-border-tooltip);margin-bottom:-1px;bottom:100%;margin-left:-9px;left:50%}.awsui .awsui-tooltip-position-top{padding-bottom:10px}.awsui .awsui-tooltip-position-top .awsui-tooltip-text::before{border-top-color:#16191f;border-top-color:var(--awsui-color-border-tooltip);margin-top:-1px;top:100%;margin-left:-9px;left:50%}.awsui .awsui-tooltip-position-left{padding-right:10px}.awsui .awsui-tooltip-position-left .awsui-tooltip-text::before{border-left-color:#16191f;border-left-color:var(--awsui-color-border-tooltip);margin-left:-1px;left:100%;margin-top:-9px;top:50%}.awsui .awsui-tooltip-position-right{padding-left:10px}.awsui .awsui-tooltip-position-right .awsui-tooltip-text::before{border-right-color:#16191f;border-right-color:var(--awsui-color-border-tooltip);margin-right:-1px;right:100%;margin-top:-9px;top:50%}.awsui .awsui-wizard{display:-webkit-box;display:-ms-flexbox;display:flex}.awsui .awsui-wizard__column-navigation{color:#aab7b8;color:var(--awsui-color-text-disabled);display:inline-block;width:200px;min-width:200px;margin-right:80px}@media screen and (max-width: 992px){.awsui .awsui-wizard__column-navigation{display:none}}.awsui .awsui-wizard__column-navigation .awsui-wizard__navigation-links>li{padding-bottom:15px}.awsui .awsui-wizard__column-navigation .awsui-wizard__navigation-links>li:not(:first-child){margin-top:10px}.awsui .awsui-wizard__column-navigation .awsui-wizard__navigation-links>li:not(:last-child){border-bottom:1px solid #d5dbdb;border-bottom:1px solid var(--awsui-color-border-layout)}.awsui .awsui-wizard__column-navigation .awsui-wizard__navigation-links .awsui-wizard__navigation-link--active{font-weight:700;color:#16191f;color:var(--awsui-color-text-body-default)}.awsui .awsui-wizard__column-navigation .awsui-wizard__navigation-links .awsui-wizard__navigation-link--disabled{color:var(--awsui-color-text-form-disabled)}.awsui .awsui-wizard__column-form{width:100%}.awsui .awsui-wizard__column-form .awsui-wizard__step-number{display:none}.awsui .awsui-wizard__column-form .awsui-wizard__step-number>p{font-weight:700}@media screen and (max-width: 992px){.awsui .awsui-wizard__column-form .awsui-wizard__step-number{display:block}}.synchro-chart-tests{font-size:var(--font-size-base)}/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._root_12xgv_4 {
  --foreground-color: var(--text-layer-2-primary);
  --foreground-secondary-color: var(--text-layer-2-secondary);
  --foreground-tertiary-color: var(--text-layer-2-tertiary);
  --foreground-hover-color: var(--text-layer-2-hover);
  --foreground-accent-color: var(--text-layer-2-accent);
  --foreground-active-color: var(--text-layer-2-active);

  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 15rem;
  padding: 50rem  var(--padding-x) var(--padding-y);
  overflow: hidden;
}

._emptyState_12xgv_20 {
  position: relative;
  inset: 0;
  display: grid;
  place-content: center;
  place-items: center;
}

._emptyState_12xgv_20 [data-title] {
  color: var(--foreground-tertiary-color);
  font-size: 44rem;
  font-weight: var(--font-weight-5);
}

._emptyState_12xgv_20 [data-message] {
  color: var(--foreground-tertiary-color);
  font-size: 34rem;
  font-weight: var(--font-weight-2);
}

._name_12xgv_40 {
  color: var(--foreground-color);
  font-size: 24rem;
  font-weight: var(--font-weight-5);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._charts_12xgv_49 {
  display: grid;
  row-gap: 15rem;
}

._root_12xgv_4[data-is-entity='true'] {
  grid-template-rows: auto 180rem auto 1fr;
  row-gap: 0;
}

._root_12xgv_4[data-is-entity='true'] iot-app-kit-vis-status-timeline iot-app-kit-vis-data-stream-name {
  display: none;
}

._list_12xgv_63 {
}

._listItem_12xgv_66 {
  --background-color: var(--background-layer-2);
  --background-hover-color: var(--background-layer-2-hover);
  --background-active-color: var(--background-layer-2-accent);
  --foreground-color: var(--text-layer-2-primary);
  --foreground-hover-color: var(--text-layer-2-hover);
  --foreground-active-color: var(--text-layer-2-accent);
  --column-gap: 6rem;

  color: var(--foreground-color);
  font-size: 22rem;
  font-weight: var(--font-weight-5);
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._svg_1h0mg_4 {
  fill: currentColor;
  shape-rendering: geometricPrecision;
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._root_rn230_4 {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: var(--z-index-1);
}

._emptyStateLogo_rn230_13 {
  color: var(--background-layer-2-accent);
  width: clamp(300rem, 50vw, 1000rem);
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._button_z2scy_4 {
  --background-color: var(--background-layer-1);
  --background-hover-color: var(--background-layer-1-accent);
  --background-active-color: var(--background-layer-1-active);
  --icon-color: var(--color-alarm-unknown);
  --label-color: var(--text-layer-1-primary);
  --label-hover-color: var(--text-layer-1-hover);
  --indicator-color: var(--color-alarm-unknown);
  --transition-background-color: background-color var(--transition-duration) var(--transition-easing);
  --transition-color: color var(--transition-duration) var(--transition-easing);

  display: grid;
  place-items: center start;
  grid-auto-flow: column;
  gap: 6rem;
  height: 100%;
  transition: var(--transition-background-color);
}

._button_z2scy_4:hover {
  --label-color: var(--label-hover-color);
}
._button_z2scy_4:hover ._icon_z2scy_26 {
  --icon-color: var(--label-hover-color) !important;
}
._button_z2scy_4:hover ._eventIndicator_z2scy_29 {
  --indicator-color: var(--label-hover-color) !important;
}

._button_z2scy_4._events_z2scy_33 {
  translate: -2rem 0;
}

._icon_z2scy_26 {
  --size: 20rem;

  width: var(--size);
  height: var(--size);
  color: var(--icon-color);
  transition: var(--transition-color);
}

._icon_z2scy_26._High_z2scy_46 {
  --icon-color: var(--color-alarm-high);
}

._icon_z2scy_26._Medium_z2scy_50 {
  --icon-color: var(--color-alarm-medium);
}

._icon_z2scy_26._Low_z2scy_54 {
  --icon-color: var(--color-alarm-low);
}

._icon_z2scy_26 > svg {
  width: 100%;
  height: 100%;
}

._label_z2scy_63 {
  color: var(--label-color);
  font-size: 20rem;
  font-variant-numeric: tabular-nums;
  font-weight: var(--font-weight-6);
  line-height: 1;
  transition: var(--transition-color);
}

/* events button */
._eventIndicators_z2scy_73 {
  display: grid;
  gap: 3rem;
}

._eventIndicator_z2scy_29 {
  --size: 5em;

  width: var(--size);
  height: var(--size);
  background-color: var(--indicator-color);
  border-radius: var(--size);
  transition: var(--transition-background-color);
}

._eventIndicator_z2scy_29[data-indicator-high='true'] {
  --indicator-color: var(--color-alarm-high);
}

._eventIndicator_z2scy_29[data-indicator-medium='true'] {
  --indicator-color: var(--color-alarm-medium);
}

._eventIndicator_z2scy_29[data-indicator-low='true'] {
  --indicator-color: var(--color-alarm-low);
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._root_177i8_4 {
  --border-color: var(--text-layer-1-tertiary);
  --foreground-color: var(--text-layer-2-primary);
  --foreground-secondary-color: var(--text-layer-2-secondary);
  --foreground-tertiary-color: var(--text-layer-2-tertiary);
  --foreground-hover-color: var(--text-layer-2-hover);
  --foreground-accent-color: var(--text-layer-2-accent);
  --foreground-active-color: var(--text-layer-2-active);
  --icon-color: var(--foreground-secondary-color);
  --entity-name-color: var(--foreground-secondary-color);
  --name-color: var(--foreground-secondary-color);
  --message-color: var(--foreground-secondary-color);
  --footer-color: var(--foreground-secondary-color);

  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 15rem;
  padding: 50rem var(--padding-x) 0;
}

._emptyState_177i8_25 {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  place-items: center;
  pointer-events: none;
}

._emptyState_177i8_25 [data-title] {
  color: var(--foreground-tertiary-color);
  font-size: 44rem;
  font-weight: var(--font-weight-5);
}

._emptyState_177i8_25 [data-message] {
  color: var(--foreground-tertiary-color);
  font-size: 34rem;
  font-weight: var(--font-weight-2);
}

._controls_177i8_46 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

._filterMessage_177i8_53 {
  color: var(--foreground-color);
  font-size: 24rem;
  font-weight: var(--font-weight-5);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._alarmControls_177i8_62 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15rem;
}

._alarmControl_177i8_62 {
  display: flex;
  align-items: center;
  gap: 4rem;
  color: var(--foreground-secondary-color);
  font-size: 18rem;
  font-weight: var(--font-weight-5);
}

._alarmControl_177i8_62[data-active='true'] {
  color: var(--foreground-active-color);
}

._alarmControl_177i8_62:hover,
._alarmControl_177i8_62._active_177i8_83 {
  /* background-color: var(--color-gray-44); */
  /* border-color: var(--color-gray-22); */
  /* box-shadow: 2rem 2rem 8px rgb(30, 30, 30, .3); */
  /* color: var(--color-gray-37); */
}

._alarmControlIcon_177i8_90 {
  --size: 21rem;

  flex-shrink: 0;
  width: var(--size);
  height: var(--size);
}

._alarmControl_177i8_62[data-active='true'] ._alarmIconHigh_177i8_98 {
  color: var(--color-alarm-high);
}

._alarmControl_177i8_62[data-active='true'] ._alarmIconMedium_177i8_102 {
  color: var(--color-alarm-medium);
}

._alarmControl_177i8_62[data-active='true'] ._alarmIconLow_177i8_106 {
  color: var(--color-alarm-low);
}

._alarmControl_177i8_62[data-active='true'] ._alarmIconResolved_177i8_110 {
  color: var(--foreground-accent-color);
}

._events_177i8_114 {
  flex: 1;
  display: grid;
  position: relative;
}

._eventList_177i8_120 {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

._event_177i8_114 {
  display: grid;
  grid-template-rows: 1fr auto;
  row-gap: 12rem;
  padding: 16rem 0;
  border-bottom: dashed 1rem var(--border-color);
}

._event_177i8_114:first-child {
  padding-top: 0;
}

._event_177i8_114:last-child {
  border: none;
  padding-bottom: var(--padding-y);
}

._event_177i8_114._high_177i8_145 {
  --icon-color: var(--color-alarm-high);
  --entity-name-color: var(--foreground-color);
  --name-color: var(--foreground-accent-color);
  --message-color: var(--foreground-color);
  --footer-color: var(--foreground-color);
}

._medium_177i8_153 {
  --icon-color: var(--color-alarm-medium);
  --entity-name-color: var(--foreground-color);
  --name-color: var(--foreground-accent-color);
  --message-color: var(--foreground-color);
  --footer-color: var(--foreground-color);
}

._low_177i8_161 {
  --icon-color: var(--color-alarm-low);
  --entity-name-color: var(--foreground-color);
  --name-color: var(--foreground-accent-color);
  --message-color: var(--foreground-color);
  --footer-color: var(--foreground-color);
}

._event_177i8_114:hover {
  --entity-name-color: var(--foreground-hover-color);
  --name-color: var(--foreground-hover-color);
  --message-color: var(--foreground-hover-color);
  --footer-color: var(--foreground-hover-color);
}

._event_177i8_114[data-active='true'] ._footer_177i8_176 > span:first-child {
  color: var(--foreground-accent-color);
}

._normal_177i8_180 {
}

._normalDark_177i8_183 {
}

._unknown_177i8_186 {
}

/* .head {
  padding: calc(var(--gap) / 2) var(--gap);
  color: var(--timestamp-color);
  font-size: 12rem;
  font-weight: 500;
  letter-spacing: .4rem;
  text-align: left;
  text-transform: uppercase;
} */
/* .head.active {
  color: var(--color-gray-3);
} */
._body_177i8_201 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20rem;
}

._icon_177i8_207 {
  align-self: center;
  flex-shrink: 0;
  color: var(--icon-color);
  width: 34rem;
}

._content_177i8_214 {
  display: grid;
  place-items: center start;
  row-gap: 4rem;
}

._entityName_177i8_220 {
  color: var(--entity-name-color);
  font-size: 16rem;
  font-weight: var(--font-weight-6);
  letter-spacing: 0.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

._name_177i8_230 {
  color: var(--name-color);
  font-size: 18rem;
  font-weight: var(--font-weight-6);
  letter-spacing: 0.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

._message_177i8_240 {
  color: var(--message-color);
  font-size: 14rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

._footer_177i8_176 {
  display: flex;
  gap: 16rem;
  padding-left: 54rem;
  color: var(--footer-color);
  font-size: 12rem;
}

._footer_177i8_176 > span {
  position: relative;
}

._footer_177i8_176 > span::after {
  content: '\2022';
  position: absolute;
  top: -4rem;
  right: -11rem;
  font-size: 16rem;
  font-weight: var(--font-weight-6);
}

._footer_177i8_176 > span:first-child {
  font-weight: var(--font-weight-6);
  text-transform: uppercase;
}

._footer_177i8_176 > span:not(:first-child):before {
  content: attr(data-label) ' ';
  text-transform: capitalize;
}

._footer_177i8_176 > span:last-child::after {
  display: none;
}

._statusActive_177i8_283 {
  color: var(--foreground-accent-color);
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._main_9m4b9_4 {
  /* public vars */
  --color-property-normal: var(--text-layer-3-primary);
  --color-property-active: var(--text-layer-3-active);
  --color-value-normal: var(--text-layer-3-primary);
  --color-value-active: var(--text-layer-3-active);
  --color-unit-normal: var(--text-layer-3-primary);
  --color-unit-active: var(--text-layer-3-active);
  --color-trend-normal: var(--text-layer-3-primary);
  --color-time: var(--text-layer-3-secondary);

  /* private */
  --transition-background-color: background-color var(--transition-duration) var(--transition-easing);
  --transition-border-color: border-color var(--transition-duration) var(--transition-easing);
  --transition-color: color var(--transition-duration) var(--transition-easing);
  --transition-opacity: opacity var(--transition-duration) var(--transition-easing);
  --transition-rotation: rotate calc(var(--transition-duration) * 0.3) var(--transition-easing);
  --alarm-indicator-height: 2rem;

  --color-property: var(--color-property-active);
  --color-value: var(--color-value-active);
  --color-unit: var(--color-unit-active);
  --color-trend: var(--color-alarm-normal);

  font-size: var(--size-base);
  flex-grow: 0;
  display: grid;
  place-content: start;
  gap: 6em;
  width: min-content;
  padding-bottom: 10em;
  border-bottom: solid var(--alarm-indicator-height) transparent;
  transition: var(--transition);
}

._main_9m4b9_4::after {
  content: '';
  position: absolute;
  inset: auto 0 calc(-1 * var(--alarm-indicator-height)) 0;
  height: var(--alarm-indicator-height);
  background-color: var(--color-alarm);
  border-radius: var(--alarm-indicator-height);
}

._propertyName_9m4b9_48 {
  color: var(--color-property);
  font-size: 12em;
  font-weight: var(--font-weight-5);
}

._valueSection_9m4b9_54 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12em;
}

._valueGroup_9m4b9_62 {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 3em;
}

._value_9m4b9_54 {
  color: var(--color-value);
  font-size: 20em;
  font-weight: var(--font-weight-6);
  line-height: 1;
  font-variant-numeric: proportional-nums;
  transition: var(--transition-color);
}

._unit_9m4b9_78 {
  color: var(--color-unit);
  font-size: 14em;
  transition: var(--transition-color);
}

._trendIcon_9m4b9_84 {
  width: 20em;
  color: var(--color-trend);
  transition: var(--transition-color), var(--transition-rotation);
}

._hasBreachedThreshold_9m4b9_90 {
  color: var(--color-alarm);
}

._trendIconUp_9m4b9_94 {
  rotate: -45deg;
}

._trendIconDown_9m4b9_98 {
  rotate: 45deg;
}

._high_9m4b9_102 {
  --color-alarm: var(--color-alarm-high);
}

._medium_9m4b9_106 {
  --color-alarm: var(--color-alarm-medium);
}

._low_9m4b9_110 {
  --color-alarm: var(--color-alarm-low);
}

._normal_9m4b9_114 {
  --color-alarm: var(--color-alarm-normal);
}

._normalDark_9m4b9_118 {
  --color-alarm: var(--color-alarm-normaldark);
}

._unknown_9m4b9_122 {
  --icon-color: var(--color-alarm-unknown);
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */
._svg_1te7f_3 {
  fill: currentColor;
  shape-rendering: geometricPrecision;
}/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._overlay_1jut2_4 {
  --color-alarm-bg: transparent;
  --icon-color: var(--color-alarm-unknown);
  --border-radius-outer: 10rem;
  --border-radius-inner: 5rem;
  display: grid;
  width: clamp(50rem, max-content, 200rem);
  background-color: var(--background-layer-3);
  border: solid 1rem var(--background-layer-2-accent);
  border-radius: var(--radius-10);
  box-shadow: var(--box-shadow-layer-1);
  overflow: hidden;
}

._header_1jut2_18 {
  display: flex;
  align-items: center;
  gap: 13rem;
  padding: 13rem 20rem;
}

._headerTitleSection_1jut2_25 {
  display: grid;
  gap: 1rem;
  white-space: nowrap;
}

._headerTitle_1jut2_25 {
  color: var(--text-layer-3-primary);
  font-size: 18rem;
  font-weight: var(--font-weight-5);
  letter-spacing: 0.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._headerSubtitle_1jut2_41 {
  color: var(--text-layer-3-secondary);
  font-size: 14rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._bodySection_1jut2_49 {
  display: grid;
}

._alarmStatusIcon_1jut2_53 {
  --icon-color: var(--color-alarm-unknown);
  width: 20rem;
  color: var(--icon-color);
}

._overlay_1jut2_4._Normal_1jut2_59 ._alarmStatusIconIcon_1jut2_59 {
  color: var(--color-health-normal);
}

._alarmMessageSection_1jut2_63 {
  display: grid;
  grid-auto-flow: column;
  place-items: center start;
  gap: 6rem;
  padding: 13rem 20rem;
  background-color: var(--background-layer-2);
  border-bottom: solid 1rem var(--background-layer-2-accent);
  color: var(--text-layer-3-primary);
  font-size: 14rem;
  font-weight: var(--font-weight-5);
  letter-spacing: 0.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._alarmMessageIcon_1jut2_80 {
  flex-shrink: 0;
  color: var(--icon-color);
  width: 18rem;
}

._kpis_1jut2_86 {
  --gap: 24rem;
  flex-shrink: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: var(--gap);
  padding: 13rem 20rem 15rem;
  background-color: var(--background-layer-2);
}

._kpi_1jut2_86 {
  position: relative;
}

/* .kpi::after {
  content: '';
  position: absolute;
  width: 1rem;
  height: 100%;
  right: calc(var(--gap) * -0.5);
  border-right: dashed 1rem var(--text-layer-3-tertiary);
}

.kpi:last-child:after {
  display: none;
} */
._kpisEmptyState_1jut2_112 {
  color: var(--text-layer-3-secondary);
  font-size: 14rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._high_1jut2_120 {
  --icon-color: var(--color-alarm-high);
}

._medium_1jut2_124 {
  --icon-color: var(--color-alarm-medium);
}

._low_1jut2_128 {
  --icon-color: var(--color-alarm-low);
}

._normal_1jut2_132 {
  --icon-color: var(--color-alarm-normal);
}

._normalDark_1jut2_136 {
  --icon-color: var(--color-alarm-normaldark);
}

._unknown_1jut2_140 {
  --icon-color: var(--color-alarm-unknown);
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._root_735ix_4 {
  --width: 480rem;
}

._root_735ix_4 [data-empty] {
  --size: 24rem;

  margin-top: 37rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: var(--width);
  aspect-ratio: 16 / 9;

  background-color: var(--background-layer-2-secondary);
  border-radius: var(--radius-6);

  color: var(--text-layer-2-primary);
  font-size: var(--size);
  font-weight: var(--font-weight-3);
  line-height: 1;
}

._root_735ix_4 [data-video] {
  --size: 22rem;

  display: grid;
  place-items: center start;
  row-gap: 15rem;
  color: var(--text-layer-2-primary);
  font-size: var(--size);
  font-weight: var(--font-weight-4);
  line-height: 1;
}

/* .root [data-head] {
  color: var(--text-layer-2-primary);
  line-height: 1;
} */

._root_735ix_4 [data-player] {
  border-radius: var(--radius-6);
  overflow: hidden;
  width: var(--width);
  aspect-ratio: 16 / 9;
}

._feedSelector_735ix_54[data-dropdownmenu] {
  --text-color: var(--foreground-color);
  --hover-color: var(--foreground-hover-color);
  --active-color: var(--foreground-active-color);

  position: relative;
  place-self: center start;
}

._feedSelector_735ix_54[data-dropdownmenu] [data-trigger] {
  display: grid;
  place-items: center;
  grid-auto-flow: column;
  column-gap: 6rem;
  color: var(--text-color);
  line-height: 1;
  transition: var(--transition-color);
  white-space: nowrap;
}

._feedSelector_735ix_54[data-dropdownmenu] [data-trigger] [data-trigger-arrow] {
  width: calc(var(--size) * 0.6);
  height: calc(var(--size) * 0.6);
  transition: var(--transition-rotation);
}

._feedSelector_735ix_54[data-dropdownmenu] [data-trigger]:hover {
  --text-color: var(--hover-color);
}

._feedSelector_735ix_54[data-dropdownmenu][data-is-open='true'] [data-trigger] {
  --text-color: var(--active-color);
}

._feedSelector_735ix_54[data-dropdownmenu][data-is-open='true'] [data-trigger] > [data-trigger-arrow] {
  rotate: 180deg;
}

._feedSelector_735ix_54[data-dropdownmenu] > [data-menu] {
  --menu-background-color: var(--background-layer-2-accent);
  --menu-item-background-color: var(--background-layer-2);
  --menu-item-background-hover-color: var(--background-layer-2-hover);
  --menu-item-background-selected-color: var(--background-layer-2-accent);
  --menu-item-text-primary-color: var(--text-layer-2-primary);
  --menu-item-text-secondary-color: var(--text-layer-2-secondary);
  --menu-item-text-hover-color: var(--text-layer-2-hover);
  --menu-item-text-selected-color: var(--text-layer-2-accent);
  --transition-background-color: background-color var(--transition-duration) var(--transition-easing);
  --transition-border-color: border-color var(--transition-duration) var(--transition-easing);
  --transition-color: color var(--transition-duration) var(--transition-easing);

  top: calc(100% + 8rem);
  left: 0;
  /* translate: -50% 0; */
  /* min-width: 100%; */
  width: max-content;
  max-height: 300rem;
  height: auto;
  overflow-y: auto;

  row-gap: 1rem;

  background-color: var(--menu-background-color);
  border: solid 1rem var(--background-layer-2-accent);
  border-radius: var(--radius-10);
  box-shadow: var(--box-shadow-layer-1);
}

._root_735ix_4 [data-empty] ._feedSelector_735ix_54[data-dropdownmenu] > [data-menu] {
  left: 50%;
  translate: -50% 0;
}

._feedSelector_735ix_54[data-dropdownmenu] > [data-menu] [data-menu-item] {
  padding: 12rem 15rem;
  background-color: var(--menu-item-background-color);
  color: var(--menu-item-text-primary-color);
  font-size: 15rem;
  font-weight: var(--font-weight-4);
  text-align: left;
}

._feedSelector_735ix_54[data-dropdownmenu] > [data-menu] [data-menu-item]:hover {
  --menu-item-background-color: var(--menu-item-background-hover-color);
  --menu-item-text-primary-color: var(--menu-item-text-hover-color);
  --menu-item-text-secondary-color: var(--menu-item-text-hover-color);
}

._feedSelector_735ix_54[data-dropdownmenu] > [data-menu] [data-menu-item][data-selected='true'] {
  --menu-item-background-color: var(--menu-item-background-selected-color);
  --menu-item-text-primary-color: var(--menu-item-text-selected-color);
  --menu-item-text-secondary-color: var(--menu-item-text-selected-color);
}

._feedSelector_735ix_54[data-dropdownmenu] > [data-menu] > button:first-child [data-menu-item] {
  border-top: none;
}

._feedSelector_735ix_54[data-dropdownmenu] > [data-menu] > button:last-child [data-menu-item] {
  border-bottom: none;
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

[data-body-layout] {
  grid-auto-flow: column;
  grid-auto-columns: 1fr auto;
  column-gap: 40rem;
}

._wrapper_1nt8c_10 {
  --background-color: var(--background-layer-2);
  --border-color: var(--background-layer-2-secondary);
  --foreground-color: var(--text-layer-2-primary);
  --foreground-secondary-color: var(--text-layer-2-secondary);
  --foreground-tertiary-color: var(--text-layer-2-tertiary);
  --foreground-hover-color: var(--text-layer-2-hover);
  --foreground-accent-color: var(--text-layer-2-accent);
  --foreground-active-color: var(--text-layer-2-active);
  --health-color: var(--color-alarm-unknown);
  --transition-background-color: background-color var(--transition-duration) var(--transition-easing);
  --transition-color: color var(--transition-duration) var(--transition-easing);
  --transition-rotation: rotate calc(var(--transition-duration) * 0.25) var(--transition-easing);
  --border: solid 1rem var(--border-color);
  --padding-x: 28rem;
  --padding-y: 28rem;

  position: relative;
  display: contents;
}

._wrapper_1nt8c_10 [data-trigger] {
  --foreground-color: var(--text-layer-2-secondary);
  --size: 76rem;
  --offset: -20rem;

  display: grid;
  place-items: center;

  position: absolute;
  inset: 50% calc(var(--size) * -0.35) auto auto;
  translate: 0 -50%;

  box-sizing: content-box;
  background-color: var(--background-color);
  border: solid 20rem var(--background-layer-1);
  border-radius: calc((var(--size) + 40rem) * 0.5);
  /* box-shadow: var(--box-shadow-layer-1); */
  width: var(--size);
  height: var(--size);
}

._wrapper_1nt8c_10 [data-trigger] [data-icon] {
  --size-factor: 0.7;
  width: calc(var(--size) * var(--size-factor));
  height: calc(var(--size) * var(--size-factor));

  color: var(--foreground-color);
}

._wrapper_1nt8c_10[data-is-open='true'] [data-trigger] {
  --background-color: var(--background-layer-2-active);
  --foreground-color: var(--foreground-layer-3-active);
}

._wrapper_1nt8c_10:not([data-is-open='true']) [data-trigger]:hover {
  --background-color: var(--background-layer-2-hover);
  --foreground-color: var(--text-layer-2-hover);
}

._root_1nt8c_70 {
  display: grid;
  background-color: var(--background-color);
  border-radius: var(--radius-10);
  width: clamp(300rem, 25vw, 25vw);
}

._root_1nt8c_70 [data-content] {
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 20rem;
}

._root_1nt8c_70 [data-content] [data-head] {
  padding: var(--padding-y) var(--padding-x);

  border-bottom: solid 1rem var(--border-color);
  color: var(--foreground-color);
  font-size: 26rem;
  font-weight: var(--font-weight-5);
  letter-spacing: -0.5rem;
}

._root_1nt8c_70 [data-content] [data-iframe] {
  padding: var(--padding-y) var(--padding-x);

  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */
._root_1rvlm_3 {
  --background-color: var(--background-layer-1);
  --background-active-color: var(--background-active);
  --foreground-color: var(--text-layer-2-primary);
  --item-background-color: var(--background-color);
  --item-background-active-color: var(--background-active);
  --item-foreground-color: var(--text-layer-2-primary);
  --item-foreground-hover-color: var(--text-layer-2-hover);
  --item-foreground-active-color: var(--foreground-active);
  --transition-background-color: background-color var(--transition-duration) var(--transition-easing);
  --transition-border-color: border-color var(--transition-duration) var(--transition-easing);
  --transition-color: color var(--transition-duration) var(--transition-easing);
  --thumbnail-border-color: rgb(var(--uswds-gray-0-rgb), 0.3);
  display: grid;
  place-content: center;
  place-items: center;
  row-gap: 20rem;
  background-color: var(--background-color);
  transition: var(--transition-background-color);
  user-select: none;
}

._root_1rvlm_3[data-is-active='true'] {
  --background-color: var(--background-active-color);
  pointer-events: none;
}

._root_1rvlm_3[data-is-active='true'] ._branding_1rvlm_30,
._root_1rvlm_3[data-is-active='true'] ._title_1rvlm_31,
._root_1rvlm_3[data-is-active='true'] ._card_1rvlm_32:not([data-is-active='true']) {
  visibility: hidden;
}

._branding_1rvlm_30 {
  color: var(--item-foreground-color);
  width: 500rem;
}

._title_1rvlm_31 {
  margin-bottom: 30rem;
  color: var(--foreground-color);
  font-size: 60rem;
  font-weight: var(--font-weight-2);
  text-align: center;
}

._cards_1rvlm_49 {
  display: grid;
  grid-auto-flow: column;
  column-gap: 50rem;
}

._card_1rvlm_32 {
  display: grid;
  place-items: center;
  row-gap: 20rem;
  width: max-content;
  background-color: var(--item-background-color);
  color: var(--item-foreground-color);
  transition: var(--transition-background-color);
}

._card_1rvlm_32:hover {
  --item-foreground-color: var(--item-foreground-hover-color);
  --thumbnail-border-color: rgb(var(--uswds-gray-0-rgb), 0.8);
}

._card_1rvlm_32[data-is-active='true'] {
  --item-background-color: var(--item-background-active-color);
  --item-foreground-color: var(--item-foreground-active-color);
}

._thumbnail_1rvlm_75 {
  --size: 200rem;
  width: var(--size);
  height: calc(var(--size) * 3 / 4);
  border-radius: var(--radius-10);
  background-position: 70% center;
  background-size: 200%;
  border: solid 4rem var(--thumbnail-border-color);
  box-shadow: var(--box-shadow-layer-1);
  transition: var(--transition-border-color);
}

._thumbnail_1rvlm_75 img {
  max-width: 100%;
}

._cardGroup_1rvlm_91 {
  display: grid;
  row-gap: 7rem;
}

._cardIcon_1rvlm_96 {
  --size: 150rem;
  width: var(--size);
  height: var(--size);
  color: var(--item-foreground-color);
  transition: var(--transition-color);
}

._cardName_1rvlm_104 {
  font-size: 28rem;
  letter-spacing: -0.02rem;
  line-height: 1.15;
  transition: var(--transition-color);
  word-break: break-all;
}

._cardTitle_1rvlm_112 {
  color: var(--item-foreground-color);
  font-size: 16rem;
  transition: var(--transition-color);
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */
._root_14le2_3 {
  --background-color: var(--background-layer-1);
  --background-active-color: var(--background-layer-1-active);
  --foreground-color: var(--text-layer-2-primary);
  --item-background-color: var(--background-color);
  --item-background-active-color: var(--background-layer-2-active);
  --item-foreground-color: var(--text-layer-2-primary);
  --item-foreground-hover-color: var(--text-layer-2-hover);
  --item-foreground-active-color: white;
  --transition-background-color: background-color var(--transition-duration) var(--transition-easing);
  --transition-color: color var(--transition-duration) var(--transition-easing);
  display: grid;
  place-content: center;
  place-items: center;
  row-gap: 20rem;
  background-color: var(--background-color);
  transition: var(--transition-background-color);
  user-select: none;
}

._root_14le2_3[data-is-active='true'] {
  --background-color: var(--background-active-color);
  pointer-events: none;
}

._root_14le2_3[data-is-active='true'] ._branding_14le2_28,
._root_14le2_3[data-is-active='true'] ._title_14le2_29,
._root_14le2_3[data-is-active='true'] ._card_14le2_30:not([data-is-active='true']) {
  visibility: hidden;
}

._branding_14le2_28 {
  color: var(--item-foreground-color);
  width: 600rem;
}

._title_14le2_29 {
  margin-bottom: 30rem;
  color: var(--foreground-color);
  font-size: 60rem;
  font-weight: var(--font-weight-2);
}

._cards_14le2_46 {
  display: grid;
  grid-auto-flow: column;
  column-gap: 50rem;
}

._card_14le2_30 {
  display: grid;
  place-items: center;
  row-gap: 20rem;
  width: max-content;
  background-color: var(--item-background-color);
  color: var(--item-foreground-color);
  transition: var(--transition-background-color);
}

._card_14le2_30:hover {
  --item-foreground-color: var(--item-foreground-hover-color);
}

._card_14le2_30[data-is-active='true'] {
  --item-background-color: var(--item-background-active-color);
  --item-foreground-color: var(--item-foreground-active-color);
}

._cardGroup_14le2_71 {
  display: grid;
  row-gap: 7rem;
}

._cardAvatar_14le2_76 {
  --size: 150rem;
  width: var(--size);
  height: var(--size);
  color: var(--item-foreground-color);
  transition: var(--transition-color);
}

._cardName_14le2_84 {
  font-size: 30rem;
  transition: var(--transition-color);
}

._cardTitle_14le2_89 {
  color: var(--item-foreground-color);
  font-size: 16rem;
  transition: var(--transition-color);
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */
button {
  background-color: transparent;
  background-image: none;
  border-width: 0;
  border-style: solid;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
  margin: 0;
  padding: 0;
}
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */
/* https://github.com/uswds/uswds/blob/develop/LICENSE.md#the-rest-of-this-project-is-in-the-worldwide-public-domain */
:root {
  --uswds-blue-5: #eff6fb;
  --uswds-blue-10: #d9e8f6;
  --uswds-blue-20: #aacdec;
  --uswds-blue-30: #73b3e7;
  --uswds-blue-40: #4f97d1;
  --uswds-blue-50: #2378c3;
  --uswds-blue-60: #2c608a;
  --uswds-blue-70: #274863;
  --uswds-blue-80: #1f303e;
  --uswds-blue-90: #11181d;
  --uswds-blue-vivid-5: #e8f5ff;
  --uswds-blue-vivid-10: #cfe8ff;
  --uswds-blue-vivid-20: #a1d3ff;
  --uswds-blue-vivid-30: #58b4ff;
  --uswds-blue-vivid-40: #2491ff;
  --uswds-blue-vivid-50: #0076d6;
  --uswds-blue-vivid-60: #005ea2;
  --uswds-blue-vivid-70: #0b4778;
  --uswds-blue-vivid-80: #112f4e;
  --uswds-blue-cool-5: #e7f2f5;
  --uswds-blue-cool-10: #dae9ee;
  --uswds-blue-cool-20: #adcfdc;
  --uswds-blue-cool-30: #82b4c9;
  --uswds-blue-cool-40: #6499af;
  --uswds-blue-cool-50: #3a7d95;
  --uswds-blue-cool-60: #2e6276;
  --uswds-blue-cool-70: #224a58;
  --uswds-blue-cool-80: #14333d;
  --uswds-blue-cool-90: #0f191c;
  --uswds-blue-cool-vivid-5: #e1f3f8;
  --uswds-blue-cool-vivid-10: #c3ebfa;
  --uswds-blue-cool-vivid-20: #97d4ea;
  --uswds-blue-cool-vivid-30: #59b9de;
  --uswds-blue-cool-vivid-40: #28a0cb;
  --uswds-blue-cool-vivid-50: #0d7ea2;
  --uswds-blue-cool-vivid-60: #07648d;
  --uswds-blue-cool-vivid-70: #074b69;
  --uswds-blue-cool-vivid-80: #002d3f;
  --uswds-blue-warm-5: #ecf1f7;
  --uswds-blue-warm-10: #e1e7f1;
  --uswds-blue-warm-20: #bbcae4;
  --uswds-blue-warm-30: #98afd2;
  --uswds-blue-warm-40: #7292c7;
  --uswds-blue-warm-50: #4a77b4;
  --uswds-blue-warm-60: #345d96;
  --uswds-blue-warm-70: #2f4668;
  --uswds-blue-warm-80: #252f3e;
  --uswds-blue-warm-90: #13171f;
  --uswds-blue-warm-vivid-5: #edf5ff;
  --uswds-blue-warm-vivid-10: #d4e5ff;
  --uswds-blue-warm-vivid-20: #adcdff;
  --uswds-blue-warm-vivid-30: #81aefc;
  --uswds-blue-warm-vivid-40: #5994f6;
  --uswds-blue-warm-vivid-50: #2672de;
  --uswds-blue-warm-vivid-60: #0050d8;
  --uswds-blue-warm-vivid-70: #1a4480;
  --uswds-blue-warm-vivid-80: #162e51;
  --uswds-cyan-5: #e7f6f8;
  --uswds-cyan-10: #ccecf2;
  --uswds-cyan-20: #99deea;
  --uswds-cyan-30: #5dc0d1;
  --uswds-cyan-40: #449dac;
  --uswds-cyan-50: #168092;
  --uswds-cyan-60: #2a646d;
  --uswds-cyan-70: #2c4a4e;
  --uswds-cyan-80: #203133;
  --uswds-cyan-90: #111819;
  --uswds-cyan-vivid-5: #e5faff;
  --uswds-cyan-vivid-10: #a8f2ff;
  --uswds-cyan-vivid-20: #52daf2;
  --uswds-cyan-vivid-30: #00bde3;
  --uswds-cyan-vivid-40: #009ec1;
  --uswds-cyan-vivid-50: #0081a1;
  --uswds-cyan-vivid-60: #00687d;
  --uswds-cyan-vivid-70: #0e4f5c;
  --uswds-cyan-vivid-80: #093b44;
  --uswds-gold-5: #f5f0e6;
  --uswds-gold-10: #f1e5cd;
  --uswds-gold-20: #dec69a;
  --uswds-gold-30: #c7a97b;
  --uswds-gold-40: #ad8b65;
  --uswds-gold-50: #8e704f;
  --uswds-gold-60: #6b5947;
  --uswds-gold-70: #4d4438;
  --uswds-gold-80: #322d26;
  --uswds-gold-90: #191714;
  --uswds-gold-vivid-5: #fef0c8;
  --uswds-gold-vivid-10: #ffe396;
  --uswds-gold-vivid-20: #ffbe2e;
  --uswds-gold-vivid-30: #e5a000;
  --uswds-gold-vivid-40: #c2850c;
  --uswds-gold-vivid-50: #936f38;
  --uswds-gold-vivid-60: #7a591a;
  --uswds-gold-vivid-70: #5c410a;
  --uswds-gold-vivid-80: #3b2b15;
  --uswds-gray-0: white;
  --uswds-gray-0-rgb: 255, 255, 255;
  --uswds-gray-1: #fcfcfc;
  --uswds-gray-2: #f9f9f9;
  --uswds-gray-3: #f6f6f6;
  --uswds-gray-4: #f3f3f3;
  --uswds-gray-5: #f0f0f0;
  --uswds-gray-10: #e6e6e6;
  --uswds-gray-20: #c9c9c9;
  --uswds-gray-30: #adadad;
  --uswds-gray-40: #919191;
  --uswds-gray-50: #757575;
  --uswds-gray-60: #5c5c5c;
  --uswds-gray-70: #454545;
  --uswds-gray-70-rgb: 69, 69, 69;
  --uswds-gray-80: #2e2e2e;
  --uswds-gray-80-rgb: 46, 46, 46;
  --uswds-gray-90: #1b1b1b;
  --uswds-gray-90-rgb: 27, 27, 27;
  --uswds-gray-100: #000000;
  --uswds-gray-100-rgb: 0, 0, 0;
  --uswds-gray-cool-1: #fbfcfd;
  --uswds-gray-cool-2: #f7f9fa;
  --uswds-gray-cool-3: #f5f6f7;
  --uswds-gray-cool-4: #f1f3f6;
  --uswds-gray-cool-5: #edeff0;
  --uswds-gray-cool-10: #dfe1e2;
  --uswds-gray-cool-20: #c6cace;
  --uswds-gray-cool-30: #a9aeb1;
  --uswds-gray-cool-40: #8d9297;
  --uswds-gray-cool-50: #71767a;
  --uswds-gray-cool-60: #565c65;
  --uswds-gray-cool-70: #3d4551;
  --uswds-gray-cool-80: #2d2e2f;
  --uswds-gray-cool-90: #1c1d1f;
  --uswds-gray-warm-1: #fcfcfb;
  --uswds-gray-warm-2: #f9f9f7;
  --uswds-gray-warm-3: #f6f6f2;
  --uswds-gray-warm-4: #f5f5f0;
  --uswds-gray-warm-5: #f0f0ec;
  --uswds-gray-warm-10: #e6e6e2;
  --uswds-gray-warm-20: #cac9c0;
  --uswds-gray-warm-30: #afaea2;
  --uswds-gray-warm-40: #929285;
  --uswds-gray-warm-50: #76766a;
  --uswds-gray-warm-60: #5d5d52;
  --uswds-gray-warm-70: #454540;
  --uswds-gray-warm-80: #2e2e2a;
  --uswds-gray-warm-90: #171716;
  --uswds-green-5: #eaf4dd;
  --uswds-green-10: #dfeacd;
  --uswds-green-20: #b8d293;
  --uswds-green-30: #9bb672;
  --uswds-green-40: #7d9b4e;
  --uswds-green-50: #607f35;
  --uswds-green-60: #4c6424;
  --uswds-green-70: #3c4a29;
  --uswds-green-80: #293021;
  --uswds-green-90: #161814;
  --uswds-green-vivid-5: #ddf9c7;
  --uswds-green-vivid-10: #c5ee93;
  --uswds-green-vivid-20: #98d035;
  --uswds-green-vivid-30: #7fb135;
  --uswds-green-vivid-40: #719f2a;
  --uswds-green-vivid-50: #538200;
  --uswds-green-vivid-60: #466c04;
  --uswds-green-vivid-70: #2f4a0b;
  --uswds-green-vivid-80: #243413;
  --uswds-green-cool-5: #ecf3ec;
  --uswds-green-cool-10: #dbebde;
  --uswds-green-cool-20: #b4d0b9;
  --uswds-green-cool-30: #86b98e;
  --uswds-green-cool-40: #5e9f69;
  --uswds-green-cool-50: #4d8055;
  --uswds-green-cool-60: #446443;
  --uswds-green-cool-70: #37493b;
  --uswds-green-cool-80: #28312a;
  --uswds-green-cool-90: #1a1f1a;
  --uswds-green-cool-vivid-5: #e3f5e1;
  --uswds-green-cool-vivid-10: #b7f5bd;
  --uswds-green-cool-vivid-20: #70e17b;
  --uswds-green-cool-vivid-30: #21c834;
  --uswds-green-cool-vivid-40: #00a91c;
  --uswds-green-cool-vivid-50: #008817;
  --uswds-green-cool-vivid-60: #216e1f;
  --uswds-green-cool-vivid-70: #154c21;
  --uswds-green-cool-vivid-80: #19311e;
  --uswds-green-warm-5: #f1f4d7;
  --uswds-green-warm-10: #e7eab7;
  --uswds-green-warm-20: #cbd17a;
  --uswds-green-warm-30: #a6b557;
  --uswds-green-warm-40: #8a984b;
  --uswds-green-warm-50: #6f7a41;
  --uswds-green-warm-60: #5a5f38;
  --uswds-green-warm-70: #45472f;
  --uswds-green-warm-80: #2d2f21;
  --uswds-green-warm-90: #171712;
  --uswds-green-warm-vivid-5: #f5fbc1;
  --uswds-green-warm-vivid-10: #e7f434;
  --uswds-green-warm-vivid-20: #c5d30a;
  --uswds-green-warm-vivid-30: #a3b72c;
  --uswds-green-warm-vivid-40: #7e9c1d;
  --uswds-green-warm-vivid-50: #6a7d00;
  --uswds-green-warm-vivid-60: #5a6613;
  --uswds-green-warm-vivid-70: #4b4e10;
  --uswds-green-warm-vivid-80: #38380b;
  --uswds-indigo-5: #efeff8;
  --uswds-indigo-10: #e5e4fa;
  --uswds-indigo-20: #c5c5f3;
  --uswds-indigo-30: #a5a8eb;
  --uswds-indigo-40: #8889db;
  --uswds-indigo-50: #676cc8;
  --uswds-indigo-60: #4d52af;
  --uswds-indigo-70: #3d4076;
  --uswds-indigo-80: #2b2c40;
  --uswds-indigo-90: #16171f;
  --uswds-indigo-vivid-5: #f0f0ff;
  --uswds-indigo-vivid-10: #e0e0ff;
  --uswds-indigo-vivid-20: #ccceff;
  --uswds-indigo-vivid-30: #a3a7fa;
  --uswds-indigo-vivid-40: #8289ff;
  --uswds-indigo-vivid-50: #656bd7;
  --uswds-indigo-vivid-60: #4a50c4;
  --uswds-indigo-vivid-70: #3333a3;
  --uswds-indigo-vivid-80: #212463;
  --uswds-indigo-cool-5: #eef0f9;
  --uswds-indigo-cool-10: #e1e6f9;
  --uswds-indigo-cool-20: #bbc8f5;
  --uswds-indigo-cool-30: #96abee;
  --uswds-indigo-cool-40: #6b8ee8;
  --uswds-indigo-cool-50: #496fd8;
  --uswds-indigo-cool-60: #3f57a6;
  --uswds-indigo-cool-70: #374274;
  --uswds-indigo-cool-80: #292d42;
  --uswds-indigo-cool-90: #151622;
  --uswds-indigo-cool-vivid-5: #edf0ff;
  --uswds-indigo-cool-vivid-10: #dee5ff;
  --uswds-indigo-cool-vivid-20: #b8c8ff;
  --uswds-indigo-cool-vivid-30: #94adff;
  --uswds-indigo-cool-vivid-40: #628ef4;
  --uswds-indigo-cool-vivid-50: #4866ff;
  --uswds-indigo-cool-vivid-60: #3e4ded;
  --uswds-indigo-cool-vivid-70: #222fbf;
  --uswds-indigo-cool-vivid-80: #1b2b85;
  --uswds-indigo-warm-5: #f1eff7;
  --uswds-indigo-warm-10: #e7e3fa;
  --uswds-indigo-warm-20: #cbc4f2;
  --uswds-indigo-warm-30: #afa5e8;
  --uswds-indigo-warm-40: #9287d8;
  --uswds-indigo-warm-50: #7665d1;
  --uswds-indigo-warm-60: #5e519e;
  --uswds-indigo-warm-70: #453c7b;
  --uswds-indigo-warm-80: #2e2c40;
  --uswds-indigo-warm-90: #18161d;
  --uswds-indigo-warm-vivid-5: #f5f2ff;
  --uswds-indigo-warm-vivid-10: #e4deff;
  --uswds-indigo-warm-vivid-20: #cfc4fd;
  --uswds-indigo-warm-vivid-30: #b69fff;
  --uswds-indigo-warm-vivid-40: #967efb;
  --uswds-indigo-warm-vivid-50: #745fe9;
  --uswds-indigo-warm-vivid-60: #5942d2;
  --uswds-indigo-warm-vivid-70: #3d2c9d;
  --uswds-indigo-warm-vivid-80: #261f5b;
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */
:root {
  /* COLOR TOKENS */
  /* background colors */
  /* background-layer-0 */
  --background-layer-0: var(--uswds-gray-100);
  --background-layer-0-rgb: var(--uswds-gray-100-rgb);
  --background-layer-0-hover: var(--uswds-gray-90);
  --background-layer-0-accent: var(--uswds-gray-90);
  --background-layer-0-active: var(--uswds-blue-warm-vivid-50);
  /* background-layer-1 */
  --background-layer-1: var(--uswds-gray-90);
  --background-layer-1-rgb: var(--uswds-gray-90-rgb);
  --background-layer-1-secondary: var(--uswds-gray-100-rgb);
  --background-layer-1-hover: var(--uswds-gray-70);
  --background-layer-1-accent: var(--uswds-gray-80);
  --background-layer-1-active: var(--uswds-blue-warm-vivid-50);
  /* background-layer-2 */
  --background-layer-2: var(--uswds-gray-80);
  --background-layer-2-rgb: var(--uswds-gray-80-rgb);
  --background-layer-2-secondary: var(--uswds-gray-90);
  --background-layer-2-hover: var(--uswds-gray-60);
  --background-layer-2-accent: var(--uswds-gray-70);
  --background-layer-2-active: var(--uswds-blue-warm-vivid-50);
  /* background-layer-3 */
  --background-layer-3: var(--uswds-gray-70);
  --background-layer-3-rgb: var(--uswds-gray-70-rgb);
  --background-layer-3-secondary: var(--uswds-gray-80);
  --background-layer-3-hover: var(--uswds-gray-50);
  --background-layer-3-accent: var(--uswds-gray-60);
  --background-layer-3-active: var(--uswds-blue-warm-vivid-50);
  /* foreground colors */
  /* foreground-layer-0 */
  --foreground-layer-0-active: var(--uswds-blue-vivid-30);
  /* foreground-layer-1 */
  --foreground-layer-1-active: var(--uswds-blue-vivid-20);
  /* foreground-layer-2 */
  --foreground-layer-2-active: var(--uswds-blue-vivid-10);
  /* foreground-layer-3 */
  --foreground-layer-3-active: var(--uswds-blue-vivid-5);
  /* text colors */
  /* text-layer-0 */
  --text-layer-0-primary: var(--uswds-gray-50);
  --text-layer-0-secondary: var(--uswds-gray-60);
  --text-layer-0-tertiary: var(--uswds-gray-70);
  --text-layer-0-accent: var(--uswds-gray-40);
  --text-layer-0-hover: var(--uswds-gray-30);
  --text-layer-0-active: var(--uswds-gray-40);
  /* text-layer-1 */
  --text-layer-1-primary: var(--uswds-gray-40);
  --text-layer-1-secondary: var(--uswds-gray-50);
  --text-layer-1-tertiary: var(--uswds-gray-60);
  --text-layer-1-accent: var(--uswds-gray-30);
  --text-layer-1-hover: var(--uswds-gray-20);
  --text-layer-1-active: var(--uswds-gray-30);
  /* text-layer-2 */
  --text-layer-2-primary: var(--uswds-gray-30);
  --text-layer-2-secondary: var(--uswds-gray-40);
  --text-layer-2-tertiary: var(--uswds-gray-50);
  --text-layer-2-accent: var(--uswds-gray-20);
  --text-layer-2-hover: var(--uswds-gray-10);
  --text-layer-2-active: var(--uswds-gray-20);
  /* text-layer-3 */
  --text-layer-3-primary: var(--uswds-gray-20);
  --text-layer-3-secondary: var(--uswds-gray-30);
  --text-layer-3-tertiary: var(--uswds-gray-40);
  --text-layer-3-accent: var(--uswds-gray-10);
  --text-layer-3-hover: white;
  --text-layer-3-active: var(--uswds-gray-10);
  /* box-shadows */
  --box-shadow-layer-1: 0 0 12rem -2rem rgb(var(--uswds-gray-100-rgb), 0.6);
  --box-shadow-layer-2: 0 0 12rem -2rem rgb(var(--uswds-gray-90-rgb), 0.6);
  --box-shadow-layer-3: 0 0 12rem -2rem rgb(var(--uswds-gray-80-rgb), 0.6);
  /* FONT TOKENS */
  --font-sans: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  --font-serif: ui-serif, serif;
  --font-mono: Dank Mono, Operator Mono, Inconsolata, Fira Mono, ui-monospace, SF Mono, Monaco, Droid Sans Mono,
    Source Code Pro, monospace;
  --font-weight-1: 100;
  --font-weight-2: 200;
  --font-weight-3: 300;
  --font-weight-4: 400;
  --font-weight-5: 500;
  --font-weight-6: 600;
  --font-weight-7: 700;
  --font-weight-8: 800;
  --font-weight-9: 900;
  /* RADIUS TOKENS */
  --radius-1: 1rem;
  --radius-2: 2rem;
  --radius-3: 3rem;
  --radius-4: 4rem;
  --radius-5: 5rem;
  --radius-6: 6rem;
  --radius-7: 7rem;
  --radius-8: 8rem;
  --radius-9: 9rem;
  --radius-10: 10rem;
  --radius-20: 20rem;
  --radius-30: 30rem;
  --radius-40: 40rem;
  --radius-50: 50rem;
  /* TRANSITION TOKENS */
  --transition-duration: 350ms;
  --transition-easing: ease;
  /* Z-INDEX TOKENS */
  --z-index-1: 1;
  --z-index-2: 2;
  --z-index-3: 3;
  --z-index-4: 4;
  --z-index-5: 5;
  --z-index-6: 6;
  --z-index-7: 7;
  --z-index-8: 8;
  --z-index-9: 9;
  --z-index-10: 10;
  --z-index-max: 10000;
}
:root {
  font-size: 1px;
  font-weight: var(--font-weight-4);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background-color: var(--background-layer-0);
  font-family: var(--font-sans);
}
#root {
  display: grid;
  height: 100vh;
}
body[class*='hide-appkit'] > [class*='tooltip-portal'] {
  display: none;
}
body[class*='hide-appkit'] iot-app-kit-vis-status-timeline {
  display: none;
}
body[class*='hide-appkit'] iot-app-kit-vis-webgl-context {
  visibility: hidden;
}
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2023 */
/* SPDX-License-Identifier: Apache-2.0 */

._app_15w6u_4 [data-header-logo] {
  color: var(--text-layer-1-accent);
  width: 180rem;
  height: initial;
  transform: translateY(2rem);
}
