@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;500&display=swap");

/** @format */

/* Blue theme sidebar styles */

/* Blue gradient effects */
.blue-glow {
  position: relative;
}

.blue-glow::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #2196f3, #1976d2, #0d47a1);
  background-size: 200% 200%;
  border-radius: inherit;
  z-index: -1;
  animation: bluePulse 4s ease-in-out infinite;
  filter: blur(6px);
  opacity: 0.3;
}

@keyframes bluePulse {
  0%,
  100% {
    background-position: 0% 50%;
    opacity: 0.3;
  }
  50% {
    background-position: 100% 50%;
    opacity: 0.5;
  }
}

/* Blue border animation */
.blue-border {
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.blue-border::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #2196f3, #1976d2, #0d47a1, #2196f3);
  border-radius: inherit;
  z-index: -1;
  animation: borderFlow 3s linear infinite;
  background-size: 300% 300%;
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Subtle bounce animation for active items */
@keyframes subtleBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.active-bounce {
  animation: subtleBounce 2s ease-in-out infinite;
}

/* Blue shimmer effect */
.blue-shimmer {
  position: relative;
  overflow: hidden;
}

.blue-shimmer::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(33, 150, 243, 0.1) 50%,
    transparent 100%
  );
  transform: rotate(30deg);
  animation: blueShimmer 4s infinite;
}

@keyframes blueShimmer {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

/* Blue hover transition */
.blue-transition {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blue-transition:hover {
  background: linear-gradient(
    135deg,
    rgba(33, 150, 243, 0.1) 0%,
    rgba(25, 118, 210, 0.2) 100%
  );
}

/* Blue gradient text */
.blue-gradient-text {
  background: linear-gradient(135deg, #2196f3, #0d47a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .blue-glow::before {
    filter: blur(3px);
  }
}

/* Custom scrollbar with blue theme */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(33, 150, 243, 0.05);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #2196f3, #1976d2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #1976d2, #0d47a1);
}

/* Blue pulse animation for notifications */
@keyframes bluePulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.7);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(33, 150, 243, 0);
    transform: scale(1.1);
  }
}

.blue-pulse {
  animation: bluePulseDot 2s infinite;
}

/* Glass morphism effect with blue tint */
.blue-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(33, 150, 243, 0.2);
}

.dark-blue-glass {
  background: rgba(13, 71, 161, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(33, 150, 243, 0.3);
}

/* Blue wave animation */
@keyframes blueWave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.blue-wave {
  background: linear-gradient(
    270deg,
    #2196f3,
    #1976d2,
    #0d47a1,
    #1976d2,
    #2196f3
  );
  background-size: 400% 400%;
  animation: blueWave 8s ease infinite;
}

/* Subttye float animation */
@keyframes subtleFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}

.float-animation {
  animation: subtleFloat 3s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Smooth transitions */
* {
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
@layer awsui-base-theme {
  body {
    --color-primary-50-1y05xv:#f0fbff;
    --color-primary-100-f62fz9:#d1f1ff;
    --color-primary-200-vubr4w:#b8e7ff;
    --color-primary-300-5q65ox:#75cfff;
    --color-primary-400-n8h4bx:#42b4ff;
    --color-primary-500-q9c16y:#0099ff;
    --color-primary-600-1lcy1k:#006ce0;
    --color-primary-700-n6k121:#004a9e;
    --color-primary-800-j9rj38:#003b8f;
    --color-primary-900-a5kqrr:#002b66;
    --color-primary-950-th5oqz:#00204d;
    --color-primary-1000-7umopx:#001129;
    --color-neutral-50-pvu04n:#fcfcfd;
    --color-neutral-100-gk3lvf:#f9f9fa;
    --color-neutral-150-gezhen:#f6f6f9;
    --color-neutral-200-fqt4tz:#f3f3f7;
    --color-neutral-250-vs1is4:#ebebf0;
    --color-neutral-300-08wi6k:#dedee3;
    --color-neutral-350-dq6kfr:#c6c6cd;
    --color-neutral-400-wtst55:#b4b4bb;
    --color-neutral-450-kn0235:#a4a4ad;
    --color-neutral-500-8van0b:#8c8c94;
    --color-neutral-550-z2a44u:#72747e;
    --color-neutral-600-fln1ww:#656871;
    --color-neutral-650-miik4f:#424650;
    --color-neutral-700-qw8ats:#333843;
    --color-neutral-750-pi9qqd:#232b37;
    --color-neutral-800-t7j5ap:#1b232d;
    --color-neutral-850-3f0gro:#161d26;
    --color-neutral-900-v0mtoc:#131920;
    --color-neutral-950-lxybh8:#0f141a;
    --color-neutral-1000-7ovvlt:#06080a;
    --color-error-50-1upkvz:#fff5f5;
    --color-error-100-eq1ucx:#ffe0e0;
    --color-error-400-c0knb8:#ff7a7a;
    --color-error-600-mdn3ng:#db0000;
    --color-error-700-pz2kai:#c20000;
    --color-error-800-sb9qfi:#990000;
    --color-error-900-skonp1:#700000;
    --color-error-950-o9nk8o:#520000;
    --color-error-1000-ecmudm:#1f0000;
    --color-success-50-yow9uc:#effff1;
    --color-success-100-0kjz92:#d9ffd6;
    --color-success-200-3vtc6u:#aeffa8;
    --color-success-400-x40jxn:#00e500;
    --color-success-500-hhxb4g:#2bb534;
    --color-success-600-g7hz2i:#00802f;
    --color-success-800-ny3y0w:#005c26;
    --color-success-950-qpfbb1:#003311;
    --color-success-1000-xy1gvq:#001401;
    --color-warning-50-uxheb8:#fffef0;
    --color-warning-100-0snzyo:#fffbbd;
    --color-warning-200-ssqjgd:#fef571;
    --color-warning-400-55puga:#ffe347;
    --color-warning-500-zidhub:#fbd332;
    --color-warning-600-iyo9qe:#f2b100;
    --color-warning-800-c1md7u:#9e6900;
    --color-warning-900-kpxt8c:#855900;
    --color-warning-950-r880f2:#573a00;
    --color-warning-1000-65l070:#191100;
    --color-info-50-cdvtrs:#f0fbff;
    --color-info-100-b22vey:#d1f1ff;
    --color-info-300-q9xd1l:#75cfff;
    --color-info-400-674xac:#42b4ff;
    --color-info-600-un21zh:#006ce0;
    --color-info-700-363gc5:#004a9e;
    --color-info-800-1onh7v:#003b8f;
    --color-info-950-xf2e6d:#00204d;
    --color-info-1000-s77ok9:#001129;
    --color-purple-400-o7fr4k:#bf80ff;
    --color-purple-700-5hcbeu:#7300e5;
    --color-lime-100-wju6z4:#ebffcc;
    --color-transparent-i61gs1:transparent;
    --color-black-cox1hy:#000000;
    --color-white-p1zlvy:#ffffff;
    --color-charts-red-300-2k7eul:#ea7158;
    --color-charts-red-400-ssrf2o:#dc5032;
    --color-charts-red-500-m14kmu:#d13313;
    --color-charts-red-600-938v3h:#ba2e0f;
    --color-charts-red-700-f6sq8t:#a82a0c;
    --color-charts-red-800-tzkaad:#972709;
    --color-charts-red-900-fhg0lh:#892407;
    --color-charts-red-1000-9iigzo:#7d2105;
    --color-charts-red-1100-4n7b3z:#721e03;
    --color-charts-red-1200-ek3cuo:#671c00;
    --color-charts-orange-300-hqhtmn:#e07941;
    --color-charts-orange-400-g8c1fc:#cc5f21;
    --color-charts-orange-500-j3c2cu:#bc4d01;
    --color-charts-orange-600-1ad7o4:#a84401;
    --color-charts-orange-700-spsf2r:#983c02;
    --color-charts-orange-800-244d7b:#8a3603;
    --color-charts-orange-900-8omk92:#7e3103;
    --color-charts-orange-1000-ezq5pz:#732c02;
    --color-charts-orange-1100-bhcmg5:#692801;
    --color-charts-orange-1200-exs6jj:#602400;
    --color-charts-yellow-300-fpz8o0:#b2911c;
    --color-charts-yellow-400-vxiqrf:#9c7b0b;
    --color-charts-yellow-500-1qgrtj:#8a6b05;
    --color-charts-yellow-600-aweqy2:#7b5f04;
    --color-charts-yellow-700-xh0lj9:#6f5504;
    --color-charts-yellow-800-gp4422:#654d03;
    --color-charts-yellow-900-r6gx3k:#5d4503;
    --color-charts-yellow-1000-6dnac6:#553f03;
    --color-charts-yellow-1100-fqp4sw:#4d3901;
    --color-charts-yellow-1200-k7kf4w:#483300;
    --color-charts-green-300-6766ev:#67a353;
    --color-charts-green-400-gd41ay:#41902c;
    --color-charts-green-500-yr18n3:#1f8104;
    --color-charts-green-600-b1gmr0:#1a7302;
    --color-charts-green-700-305sle:#176702;
    --color-charts-green-800-rh42zr:#145d02;
    --color-charts-green-900-2x5smm:#125502;
    --color-charts-green-1000-opphoq:#104d01;
    --color-charts-green-1100-o67uzm:#0f4601;
    --color-charts-green-1200-sw46fc:#0d4000;
    --color-charts-teal-300-2qlyrg:#2ea597;
    --color-charts-teal-400-s8pa77:#1c8e81;
    --color-charts-teal-500-8d830b:#0d7d70;
    --color-charts-teal-600-772n9t:#096f64;
    --color-charts-teal-700-29mnwm:#06645a;
    --color-charts-teal-800-vp41t6:#045b52;
    --color-charts-teal-900-k020ya:#03524a;
    --color-charts-teal-1000-fhpqt3:#014b44;
    --color-charts-teal-1100-6w598w:#01443e;
    --color-charts-teal-1200-0u78my:#003e38;
    --color-charts-blue-1-300-pdza0q:#529ccb;
    --color-charts-blue-1-400-ajl038:#3184c2;
    --color-charts-blue-1-500-9s8gor:#0273bb;
    --color-charts-blue-1-600-7ymb7g:#0166ab;
    --color-charts-blue-1-700-5qzras:#015b9d;
    --color-charts-blue-1-800-awczh4:#015292;
    --color-charts-blue-1-900-6wxwzk:#014a87;
    --color-charts-blue-1-1000-00005b:#01437d;
    --color-charts-blue-1-1100-8nwfwf:#003c75;
    --color-charts-blue-1-1200-v60p8b:#00366d;
    --color-charts-blue-2-300-g72slq:#688ae8;
    --color-charts-blue-2-400-he538m:#5978e3;
    --color-charts-blue-2-500-quctxu:#4066df;
    --color-charts-blue-2-600-6qav3j:#3759ce;
    --color-charts-blue-2-700-sp7t4m:#314fbf;
    --color-charts-blue-2-800-q01umt:#2c46b1;
    --color-charts-blue-2-900-gog7z2:#273ea5;
    --color-charts-blue-2-1000-c13nf8:#23379b;
    --color-charts-blue-2-1100-ddk6eo:#1f3191;
    --color-charts-blue-2-1200-gt550t:#1b2b88;
    --color-charts-purple-300-85q036:#a783e1;
    --color-charts-purple-400-9axh6r:#9469d6;
    --color-charts-purple-500-rn2jbl:#8456ce;
    --color-charts-purple-600-26s4rg:#7749bf;
    --color-charts-purple-700-tv8cvg:#6b40b2;
    --color-charts-purple-800-h61qlx:#6237a7;
    --color-charts-purple-900-am452b:#59309d;
    --color-charts-purple-1000-uarqpb:#512994;
    --color-charts-purple-1100-y8ctnd:#4a238b;
    --color-charts-purple-1200-hr9f40:#431d84;
    --color-charts-pink-300-ewnht7:#da7596;
    --color-charts-pink-400-smjdat:#ce567c;
    --color-charts-pink-500-bw864b:#c33d69;
    --color-charts-pink-600-2ro14y:#b1325c;
    --color-charts-pink-700-ryxvua:#a32952;
    --color-charts-pink-800-tcusf8:#962249;
    --color-charts-pink-900-kpyne4:#8b1b42;
    --color-charts-pink-1000-1soluc:#81143b;
    --color-charts-pink-1100-ff6g93:#780d35;
    --color-charts-pink-1200-w9585d:#6f062f;
    --color-charts-status-critical-c6brdu:var(--color-charts-red-1000-9iigzo);
    --color-charts-status-high-18fhg5:var(--color-charts-red-600-938v3h);
    --color-charts-status-medium-3trmy3:var(--color-charts-orange-400-g8c1fc);
    --color-charts-status-low-br6wv0:var(--color-charts-yellow-300-fpz8o0);
    --color-charts-status-positive-md7eqa:var(--color-charts-green-300-6766ev);
    --color-charts-status-info-yds4x2:var(--color-charts-blue-1-400-ajl038);
    --color-charts-status-neutral-k2p33t:var(--color-neutral-500-8van0b);
    --color-charts-threshold-negative-aad26m:var(--color-error-600-mdn3ng);
    --color-charts-threshold-positive-mk2804:var(--color-success-600-g7hz2i);
    --color-charts-threshold-info-ijuzzj:var(--color-info-600-un21zh);
    --color-charts-threshold-neutral-pd7kh4:var(--color-neutral-600-fln1ww);
    --color-charts-line-grid-kjxf3m:var(--color-neutral-300-08wi6k);
    --color-charts-line-tick-xmcbvk:var(--color-neutral-300-08wi6k);
    --color-charts-line-axis-b95ncf:var(--color-neutral-300-08wi6k);
    --color-charts-palette-categorical-1-xu0deg:var(--color-charts-blue-2-300-g72slq);
    --color-charts-palette-categorical-2-ktit09:var(--color-charts-pink-500-bw864b);
    --color-charts-palette-categorical-3-g0srj0:var(--color-charts-teal-300-2qlyrg);
    --color-charts-palette-categorical-4-5vauwp:var(--color-charts-purple-500-rn2jbl);
    --color-charts-palette-categorical-5-3v8ery:var(--color-charts-orange-300-hqhtmn);
    --color-charts-palette-categorical-6-ztdd8d:var(--color-charts-blue-2-600-6qav3j);
    --color-charts-palette-categorical-7-3j5o6w:var(--color-charts-pink-800-tcusf8);
    --color-charts-palette-categorical-8-c5r39m:var(--color-charts-teal-600-772n9t);
    --color-charts-palette-categorical-9-8n6iuv:var(--color-charts-purple-800-h61qlx);
    --color-charts-palette-categorical-10-opta0w:var(--color-charts-orange-600-1ad7o4);
    --color-charts-palette-categorical-11-b2r7jc:var(--color-charts-blue-2-900-gog7z2);
    --color-charts-palette-categorical-12-b5drtm:var(--color-charts-pink-1100-ff6g93);
    --color-charts-palette-categorical-13-c69xg9:var(--color-charts-teal-900-k020ya);
    --color-charts-palette-categorical-14-db19x8:var(--color-charts-purple-1100-y8ctnd);
    --color-charts-palette-categorical-15-8z8vjw:var(--color-charts-orange-900-8omk92);
    --color-charts-palette-categorical-16-549jkl:var(--color-charts-blue-2-1200-gt550t);
    --color-charts-palette-categorical-17-nrio7t:var(--color-charts-pink-400-smjdat);
    --color-charts-palette-categorical-18-tm902v:var(--color-charts-teal-1200-0u78my);
    --color-charts-palette-categorical-19-ujcr86:var(--color-charts-purple-400-9axh6r);
    --color-charts-palette-categorical-20-h55e4g:var(--color-charts-orange-1200-exs6jj);
    --color-charts-palette-categorical-21-vs0u8l:var(--color-charts-blue-2-500-quctxu);
    --color-charts-palette-categorical-22-6klt3l:var(--color-charts-pink-700-ryxvua);
    --color-charts-palette-categorical-23-3zpkdt:var(--color-charts-teal-500-8d830b);
    --color-charts-palette-categorical-24-z9a4uk:var(--color-charts-purple-700-tv8cvg);
    --color-charts-palette-categorical-25-tgdsk2:var(--color-charts-orange-500-j3c2cu);
    --color-charts-palette-categorical-26-lo8zn9:var(--color-charts-blue-2-800-q01umt);
    --color-charts-palette-categorical-27-bruhsa:var(--color-charts-pink-1000-1soluc);
    --color-charts-palette-categorical-28-6b00fb:var(--color-charts-teal-800-vp41t6);
    --color-charts-palette-categorical-29-aurmid:var(--color-charts-purple-1000-uarqpb);
    --color-charts-palette-categorical-30-fjnmd7:var(--color-charts-orange-800-244d7b);
    --color-charts-palette-categorical-31-7zcct5:var(--color-charts-blue-2-1100-ddk6eo);
    --color-charts-palette-categorical-32-rrda6y:var(--color-charts-pink-300-ewnht7);
    --color-charts-palette-categorical-33-2v0mzv:var(--color-charts-teal-1100-6w598w);
    --color-charts-palette-categorical-34-g9a9q3:var(--color-charts-purple-300-85q036);
    --color-charts-palette-categorical-35-u0w821:var(--color-charts-orange-1100-bhcmg5);
    --color-charts-palette-categorical-36-tthuf8:var(--color-charts-blue-2-400-he538m);
    --color-charts-palette-categorical-37-y588bl:var(--color-charts-pink-600-2ro14y);
    --color-charts-palette-categorical-38-qdh97u:var(--color-charts-teal-400-s8pa77);
    --color-charts-palette-categorical-39-yisq6l:var(--color-charts-purple-600-26s4rg);
    --color-charts-palette-categorical-40-yeer1v:var(--color-charts-orange-400-g8c1fc);
    --color-charts-palette-categorical-41-tu9dxw:var(--color-charts-blue-2-700-sp7t4m);
    --color-charts-palette-categorical-42-q410kp:var(--color-charts-pink-900-kpyne4);
    --color-charts-palette-categorical-43-dwew7q:var(--color-charts-teal-700-29mnwm);
    --color-charts-palette-categorical-44-2thp96:var(--color-charts-purple-900-am452b);
    --color-charts-palette-categorical-45-6kinj6:var(--color-charts-orange-700-spsf2r);
    --color-charts-palette-categorical-46-iefxfq:var(--color-charts-blue-2-1000-c13nf8);
    --color-charts-palette-categorical-47-9l9wl2:var(--color-charts-pink-1200-w9585d);
    --color-charts-palette-categorical-48-5s2n0r:var(--color-charts-teal-1000-fhpqt3);
    --color-charts-palette-categorical-49-bub0l1:var(--color-charts-purple-1200-hr9f40);
    --color-charts-palette-categorical-50-utrpu5:var(--color-charts-orange-1000-ezq5pz);
    --color-charts-error-bar-marker-r10jgv:var(--color-neutral-900-v0mtoc);
    --color-severity-dark-red-j8bmoc:#870303;
    --color-severity-red-wf5w2d:#ce3311;
    --color-severity-orange-rpbcus:#f89256;
    --color-severity-yellow-4er6zq:#f2cd54;
    --color-severity-grey-sp7qo8:var(--color-neutral-600-fln1ww);
    --color-background-notification-severity-critical-0xl8pp:var(--color-severity-dark-red-j8bmoc);
    --color-background-notification-severity-high-8nbgdi:var(--color-severity-red-wf5w2d);
    --color-background-notification-severity-medium-lbljs2:var(--color-severity-orange-rpbcus);
    --color-background-notification-severity-low-giz8b6:var(--color-severity-yellow-4er6zq);
    --color-background-notification-severity-neutral-hnhgmv:var(--color-severity-grey-sp7qo8);
    --color-text-notification-severity-critical-tv4vw4:var(--color-neutral-100-gk3lvf);
    --color-text-notification-severity-high-t4suvu:var(--color-neutral-100-gk3lvf);
    --color-text-notification-severity-medium-8f60kb:var(--color-neutral-950-lxybh8);
    --color-text-notification-severity-low-gvojhi:var(--color-neutral-950-lxybh8);
    --color-text-notification-severity-neutral-ynm2wl:var(--color-neutral-100-gk3lvf);
    --color-border-badge-severity-critical-7qfda3:transparent;
    --color-border-badge-severity-high-rrj15l:transparent;
    --color-border-badge-severity-medium-my5686:transparent;
    --color-border-badge-severity-low-x8a8mq:transparent;
    --color-border-badge-severity-neutral-qzs2tc:transparent;
    --color-text-badge-severity-critical-l2utht:var(--color-text-notification-severity-critical-tv4vw4);
    --color-text-badge-severity-high-ldc6qv:var(--color-text-notification-severity-high-t4suvu);
    --color-text-badge-severity-medium-mqg7v9:var(--color-text-notification-severity-medium-8f60kb);
    --color-text-badge-severity-low-nnaksf:var(--color-text-notification-severity-low-gvojhi);
    --color-text-badge-severity-neutral-ogr3rw:var(--color-text-notification-severity-neutral-ynm2wl);
    --color-grey-opaque-10-vwfmts:rgba(0, 0, 0, 0.1);
    --color-grey-opaque-25-cjy3al:rgba(255, 255, 255, 0.25);
    --color-grey-opaque-70-1cfyp2:rgba(35, 43, 55, 0.7);
    --color-grey-transparent-ywq957:rgba(15, 20, 26, 0.12);
    --color-grey-transparent-heavy-mmz2gv:rgba(15, 20, 26, 0.12);
    --color-background-badge-icon-eprfkm:var(--color-error-600-mdn3ng);
    --color-background-button-link-active-qjigod:var(--color-primary-100-f62fz9);
    --color-background-button-link-default-o64utz:transparent;
    --color-background-button-link-disabled-9xznu3:transparent;
    --color-background-button-link-hover-w58lm6:var(--color-primary-50-1y05xv);
    --color-background-button-normal-active-zqw8xz:var(--color-primary-100-f62fz9);
    --color-background-button-normal-default-h5dyi3:var(--color-white-p1zlvy);
    --color-background-button-normal-disabled-3xb191:var(--color-white-p1zlvy);
    --color-background-button-normal-hover-trus5n:var(--color-primary-50-1y05xv);
    --color-background-toggle-button-normal-pressed-wu6ges:var(--color-primary-100-f62fz9);
    --color-background-toggle-button-normal-default-sbu4j1:var(--color-background-button-normal-default-h5dyi3);
    --color-background-toggle-button-normal-hover-ees410:var(--color-background-button-normal-hover-trus5n);
    --color-background-button-primary-active-mulwvt:var(--color-primary-900-a5kqrr);
    --color-background-button-primary-default-emr769:var(--color-border-button-normal-default-2yswxv);
    --color-background-button-primary-disabled-d1ggcl:var(--color-neutral-250-vs1is4);
    --color-background-button-primary-hover-979qcq:var(--color-border-button-normal-hover-167wjl);
    --color-background-direction-button-active-lvo0dy:var(--color-neutral-750-pi9qqd);
    --color-background-direction-button-default-bvhbsn:var(--color-neutral-650-miik4f);
    --color-background-direction-button-disabled-uad4xk:var(--color-neutral-250-vs1is4);
    --color-background-direction-button-hover-74n5o1:var(--color-neutral-700-qw8ats);
    --color-text-direction-button-default-p88lvb:var(--color-white-p1zlvy);
    --color-text-direction-button-disabled-t86kvg:var(--color-text-interactive-disabled-bhh1zo);
    --color-background-calendar-current-date-2c5ip4:var(--color-neutral-200-fqt4tz);
    --color-background-cell-shaded-c928js:var(--color-neutral-150-gezhen);
    --color-background-code-editor-gutter-active-line-default-eesbr6:var(--color-neutral-600-fln1ww);
    --color-background-code-editor-gutter-active-line-error-mi7l0o:var(--color-text-status-error-ak9yp5);
    --color-background-code-editor-gutter-default-136m47:var(--color-neutral-200-fqt4tz);
    --color-background-code-editor-loading-7grxg2:var(--color-neutral-100-gk3lvf);
    --color-background-code-editor-pane-item-hover-ed635c:var(--color-neutral-250-vs1is4);
    --color-background-code-editor-status-bar-ic28b2:var(--color-neutral-200-fqt4tz);
    --color-background-card-n4q1vl:var(--color-background-container-content-78ljyf);
    --color-background-item-card-aw1yv6:var(--color-background-card-n4q1vl);
    --color-background-container-content-78ljyf:var(--color-white-p1zlvy);
    --color-background-container-header-ydavso:var(--color-white-p1zlvy);
    --color-background-control-checked-jwoxtj:var(--color-primary-600-1lcy1k);
    --color-background-control-default-nub6gm:var(--color-white-p1zlvy);
    --color-background-control-disabled-cb50zl:var(--color-neutral-300-08wi6k);
    --color-background-dropdown-item-default-lzrka9:var(--color-white-p1zlvy);
    --color-background-dropdown-item-dimmed-dhho03:transparent;
    --color-background-dropdown-item-filter-match-8fnvh3:var(--color-primary-50-1y05xv);
    --color-background-dropdown-item-hover-wyujnt:var(--color-neutral-200-fqt4tz);
    --color-background-dropdown-item-selected-cnovvw:var(--color-background-item-selected-pyr5cw);
    --color-background-home-header-4c9jt4:var(--color-neutral-950-lxybh8);
    --color-background-inline-code-967m4q:rgba(0, 0, 0, 0.1);
    --color-background-input-default-bz9w07:var(--color-white-p1zlvy);
    --color-background-input-disabled-cecgeg:var(--color-neutral-250-vs1is4);
    --color-background-item-selected-pyr5cw:var(--color-primary-50-1y05xv);
    --color-background-side-navigation-item-active-adfprg:transparent;
    --color-background-side-navigation-item-active-collapsed-jczh49:var(--color-background-control-checked-jwoxtj);
    --color-background-side-navigation-item-icon-hover-e5eh06:var(--color-background-item-selected-pyr5cw);
    --color-background-layout-main-7z8vaj:var(--color-white-p1zlvy);
    --color-background-layout-ai-drawer-b4mvv3:var(--color-neutral-850-3f0gro);
    --color-background-drawer-715dba:var(--color-background-layout-panel-content-89bszq);
    --color-background-backdrop-czudyv:var(--color-grey-opaque-70-1cfyp2);
    --color-background-drawer-backdrop-l5bgyg:var(--color-background-backdrop-czudyv);
    --color-background-layout-mobile-panel-ed0ava:var(--color-neutral-950-lxybh8);
    --color-background-layout-panel-9avdix:var(--color-background-container-content-78ljyf);
    --color-background-layout-panel-content-89bszq:var(--color-background-container-content-78ljyf);
    --color-background-layout-panel-hover-kg7nug:var(--color-neutral-250-vs1is4);
    --color-background-layout-toolbar-tpblk7:var(--color-background-layout-panel-content-89bszq);
    --color-background-layout-toggle-active-ap91vm:var(--color-neutral-650-miik4f);
    --color-background-layout-toggle-default-2hgjdu:var(--color-neutral-650-miik4f);
    --color-background-layout-toggle-hover-0cpm7g:var(--color-neutral-600-fln1ww);
    --color-background-layout-toggle-selected-active-7ovd7l:var(--color-primary-600-1lcy1k);
    --color-background-layout-toggle-selected-default-5go4i7:var(--color-primary-600-1lcy1k);
    --color-background-layout-toggle-selected-hover-pt3n9b:var(--color-primary-700-n6k121);
    --color-background-modal-overlay-mdne87:var(--color-background-backdrop-czudyv);
    --color-background-notification-blue-4vnob8:var(--color-info-600-un21zh);
    --color-background-notification-green-2rkyvu:var(--color-success-600-g7hz2i);
    --color-background-notification-grey-68rc4b:var(--color-neutral-650-miik4f);
    --color-background-notification-red-0487ea:var(--color-error-600-mdn3ng);
    --color-background-notification-yellow-y6us5r:var(--color-warning-400-55puga);
    --color-background-flashbar-success-vw7ng1:var(--color-background-notification-green-2rkyvu);
    --color-background-flashbar-error-q2h7ak:var(--color-background-notification-red-0487ea);
    --color-background-flashbar-info-2pbjjg:var(--color-background-notification-blue-4vnob8);
    --color-background-flashbar-warning-n9x5as:var(--color-background-notification-yellow-y6us5r);
    --color-background-notification-stack-bar-qe5n4w:var(--color-neutral-750-pi9qqd);
    --color-background-notification-stack-bar-active-a4h9r8:var(--color-neutral-750-pi9qqd);
    --color-background-notification-stack-bar-hover-jh82oo:var(--color-neutral-650-miik4f);
    --color-background-popover-yxd92v:var(--color-white-p1zlvy);
    --color-background-progress-bar-value-default-3ddu5u:var(--color-primary-600-1lcy1k);
    --color-background-progress-bar-value-flash-torruv:var(--color-background-progress-bar-value-default-3ddu5u);
    --color-background-progress-bar-flash-hkoq30:var(--color-background-progress-bar-default-4miz7r);
    --color-background-progress-bar-default-4miz7r:var(--color-neutral-250-vs1is4);
    --color-background-segment-active-nrp5ms:var(--color-primary-600-1lcy1k);
    --color-background-segment-default-lypnes:var(--color-background-button-normal-default-h5dyi3);
    --color-background-segment-disabled-2aqenf:var(--color-background-button-normal-disabled-3xb191);
    --color-background-segment-hover-sx6uk4:var(--color-background-button-normal-hover-trus5n);
    --color-background-segment-wrapper-nyb7yz:var(--color-background-container-content-78ljyf);
    --color-background-slider-range-default-7tonn0:var(--color-background-slider-handle-default-8d9sfs);
    --color-background-slider-range-active-xs8yay:var(--color-background-slider-handle-active-trfoqh);
    --color-background-slider-handle-default-8d9sfs:var(--color-primary-600-1lcy1k);
    --color-background-slider-handle-active-trfoqh:var(--color-primary-700-n6k121);
    --color-background-slider-track-default-lz0len:var(--color-neutral-500-8van0b);
    --color-background-slider-handle-ring-qvcnj5:var(--color-white-p1zlvy);
    --color-background-slider-handle-error-default-c9tcd7:var(--color-text-status-error-ak9yp5);
    --color-background-slider-handle-error-active-v3fwp3:var(--color-text-status-error-ak9yp5);
    --color-background-slider-handle-warning-default-a3cgsn:var(--color-text-status-warning-avkj4w);
    --color-background-slider-handle-warning-active-1fmzqb:var(--color-text-status-warning-avkj4w);
    --color-background-slider-range-error-default-92xaux:var(--color-text-status-error-ak9yp5);
    --color-background-slider-range-error-active-y18v8u:var(--color-text-status-error-ak9yp5);
    --color-background-slider-range-warning-default-na240j:var(--color-text-status-warning-avkj4w);
    --color-background-slider-range-warning-active-sbp4ci:var(--color-text-status-warning-avkj4w);
    --color-background-status-error-1w6iu4:var(--color-error-50-1upkvz);
    --color-background-status-info-j2xxem:var(--color-info-50-cdvtrs);
    --color-background-alert-error-v2rgf2:var(--color-background-status-error-1w6iu4);
    --color-background-alert-info-8je547:var(--color-background-status-info-j2xxem);
    --color-background-alert-success-xqn40g:var(--color-background-status-success-hm3ak2);
    --color-background-alert-warning-xizfdk:var(--color-background-status-warning-wceky5);
    --color-background-dialog-kwlmup:var(--color-background-status-info-j2xxem);
    --color-background-status-success-hm3ak2:var(--color-success-50-yow9uc);
    --color-background-status-warning-wceky5:var(--color-warning-50-uxheb8);
    --color-background-table-header-unjmda:var(--color-background-container-header-ydavso);
    --color-background-tiles-disabled-5ikjr0:var(--color-neutral-250-vs1is4);
    --color-background-toggle-checked-disabled-7t40bu:var(--color-primary-200-vubr4w);
    --color-background-toggle-default-feiaap:var(--color-neutral-650-miik4f);
    --color-background-avatar-gen-ai-oxp2v6:radial-gradient(circle farthest-corner at top right, #b8e7ff 0%, #0099ff 25%, #5c7fff 40% , #8575ff 60%, #962eff 80%);
    --color-background-avatar-default-t427xm:var(--color-neutral-650-miik4f);
    --color-text-avatar-kuhkoa:var(--color-white-p1zlvy);
    --color-background-loading-bar-gen-ai-tey70i:linear-gradient(90deg, #b8e7ff 0%, #0099ff 10%, #5c7fff 24%, #8575ff 50%, #962eff 76%, #0099ff 90%, #b8e7ff 100%);
    --color-background-status-indicator-error-txnmnb:transparent;
    --color-background-status-indicator-warning-xf3dw4:transparent;
    --color-background-status-indicator-success-o8ig5c:transparent;
    --color-background-status-indicator-info-nqw7od:transparent;
    --color-background-status-indicator-neutral-psqqh7:transparent;
    --color-background-chat-bubble-outgoing-ay6nj3:transparent;
    --color-background-chat-bubble-incoming-ykuqvi:var(--color-neutral-150-gezhen);
    --color-text-chat-bubble-outgoing-nuggry:var(--color-text-body-default-gtm97i);
    --color-text-chat-bubble-incoming-ycnens:var(--color-text-body-default-gtm97i);
    --color-border-button-link-disabled-npwqxa:var(--color-background-button-link-disabled-9xznu3);
    --color-border-button-normal-active-zi2bnn:var(--color-primary-900-a5kqrr);
    --color-border-button-normal-default-2yswxv:var(--color-primary-600-1lcy1k);
    --color-border-toggle-button-normal-pressed-ab77je:var(--color-primary-600-1lcy1k);
    --color-border-toggle-button-normal-default-d49akh:var(--color-border-button-normal-default-2yswxv);
    --color-border-toggle-button-normal-hover-za8uya:var(--color-border-button-normal-hover-167wjl);
    --color-border-button-normal-disabled-uit34y:var(--color-neutral-400-wtst55);
    --color-text-button-normal-disabled-05p74s:var(--color-neutral-500-8van0b);
    --color-border-button-normal-hover-167wjl:var(--color-primary-900-a5kqrr);
    --color-text-button-icon-disabled-nnofkn:var(--color-neutral-500-8van0b);
    --color-border-button-primary-active-lupau4:var(--color-background-button-primary-active-mulwvt);
    --color-border-button-primary-default-f7dp5z:var(--color-background-button-primary-default-emr769);
    --color-border-button-primary-disabled-5avtf1:var(--color-background-button-primary-disabled-d1ggcl);
    --color-border-button-primary-hover-38r9qu:var(--color-background-button-primary-hover-979qcq);
    --color-text-button-primary-disabled-q79gms:var(--color-neutral-500-8van0b);
    --color-item-selected-rz6ktw:var(--color-primary-600-1lcy1k);
    --color-text-side-navigation-item-active-40gvpw:var(--color-text-accent-uvfi4k);
    --color-text-side-navigation-item-active-collapsed-621hfg:var(--color-text-inverted-my1sxo);
    --color-text-side-navigation-item-default-u0ig7c:var(--color-text-body-secondary-y6dr4d);
    --color-border-calendar-grid-67r4w4:transparent;
    --color-border-calendar-grid-selected-focus-ring-t8s8m7:var(--color-neutral-100-gk3lvf);
    --color-border-cell-shaded-zttxxa:var(--color-neutral-300-08wi6k);
    --color-border-code-editor-ace-active-line-light-theme-q6hsvt:var(--color-neutral-300-08wi6k);
    --color-border-code-editor-ace-active-line-dark-theme-v09eti:var(--color-neutral-600-fln1ww);
    --color-border-code-editor-default-8rd3v1:var(--color-neutral-300-08wi6k);
    --color-border-code-editor-pane-item-hover-u4wk12:var(--color-border-dropdown-item-hover-07ng6s);
    --color-border-card-cgsfxm:var(--color-border-divider-default-0de9c8);
    --color-border-card-highlighted-47ojzl:var(--color-border-item-selected-63a3p8);
    --color-border-item-card-7kgzg2:var(--color-border-card-cgsfxm);
    --color-border-item-card-highlighted-m2lkyj:var(--color-border-card-highlighted-47ojzl);
    --color-border-container-divider-9huz1a:transparent;
    --color-border-container-top-k3vmoz:transparent;
    --color-border-control-checked-o1zph2:var(--color-background-control-checked-jwoxtj);
    --color-border-control-default-sh3548:var(--color-neutral-500-8van0b);
    --color-border-control-disabled-dqtwtk:var(--color-background-control-disabled-cb50zl);
    --color-border-divider-active-ypkld8:var(--color-neutral-950-lxybh8);
    --color-border-divider-default-0de9c8:var(--color-neutral-350-dq6kfr);
    --color-border-divider-panel-bottom-fnfdhf:var(--color-border-divider-default-0de9c8);
    --color-border-divider-panel-side-9oapph:var(--color-border-divider-default-0de9c8);
    --color-border-divider-secondary-46ol9n:var(--color-neutral-250-vs1is4);
    --color-border-divider-table-group-tut0l3:var(--color-neutral-500-8van0b);
    --color-border-dropdown-container-gb937i:var(--color-neutral-400-wtst55);
    --color-border-dropdown-group-0ocu9j:var(--color-border-dropdown-item-default-22wwob);
    --color-border-dropdown-item-default-22wwob:var(--color-border-divider-default-0de9c8);
    --color-border-dropdown-item-hover-07ng6s:var(--color-neutral-500-8van0b);
    --color-border-dropdown-item-dimmed-hover-ga9sch:var(--color-neutral-500-8van0b);
    --color-border-dropdown-item-selected-3nbye4:var(--color-border-item-selected-63a3p8);
    --color-border-dropdown-item-top-gp2d1p:transparent;
    --color-border-editable-cell-hover-nkpoh5:var(--color-border-dropdown-item-hover-07ng6s);
    --color-border-input-default-f3bzwh:var(--color-neutral-500-8van0b);
    --color-border-input-disabled-k518xl:var(--color-background-input-disabled-cecgeg);
    --color-border-input-focused-9bkrxq:var(--color-primary-600-1lcy1k);
    --color-border-item-focused-ditkrb:var(--color-primary-600-1lcy1k);
    --color-border-dropdown-item-focused-k9miqq:var(--color-neutral-650-miik4f);
    --color-border-item-placeholder-zq3251:var(--color-border-item-selected-63a3p8);
    --color-border-item-selected-63a3p8:var(--color-item-selected-rz6ktw);
    --color-border-layout-px1i24:var(--color-neutral-350-dq6kfr);
    --color-border-layout-side-navigation-mjh43q:var(--color-border-layout-px1i24);
    --color-border-notification-stack-bar-aszsse:var(--color-neutral-750-pi9qqd);
    --color-border-notification-stack-bar-focused-mzvtw9:var(--color-neutral-100-gk3lvf);
    --color-border-panel-header-j4pvsn:var(--color-border-divider-default-0de9c8);
    --color-border-popover-5yl4uc:var(--color-border-dropdown-container-gb937i);
    --color-border-segment-active-trxbfe:var(--color-border-segment-default-8mo02x);
    --color-border-segment-default-8mo02x:var(--color-neutral-650-miik4f);
    --color-border-segment-disabled-8j0zwo:var(--color-border-segment-default-8mo02x);
    --color-border-segment-hover-epoe83:var(--color-border-segment-default-8mo02x);
    --color-border-segment-wrapper-qq00qv:var(--color-border-input-default-f3bzwh);
    --color-border-status-error-vxvfad:var(--color-error-600-mdn3ng);
    --color-border-status-info-2zt73n:var(--color-info-600-un21zh);
    --color-border-status-success-uk2p7m:var(--color-success-600-g7hz2i);
    --color-border-status-warning-s79l22:var(--color-warning-900-kpxt8c);
    --color-border-dialog-3vjyp0:var(--color-border-status-info-2zt73n);
    --color-border-divider-interactive-default-8k07mh:var(--color-neutral-500-8van0b);
    --color-border-tabs-divider-y4z8fk:var(--color-neutral-350-dq6kfr);
    --color-border-tabs-shadow-l6jxjx:var(--color-grey-transparent-ywq957);
    --color-border-tabs-underline-ueuyon:var(--color-text-accent-uvfi4k);
    --color-border-tiles-disabled-n9fk5o:var(--color-background-tiles-disabled-5ikjr0);
    --color-border-tutorial-kaooc2:var(--color-neutral-300-08wi6k);
    --color-foreground-control-default-z8tr7i:var(--color-white-p1zlvy);
    --color-foreground-control-disabled-6vf647:var(--color-white-p1zlvy);
    --color-foreground-control-read-only-dtlpre:var(--color-neutral-600-fln1ww);
    --color-shadow-default-08gb4j:var(--color-grey-transparent-heavy-mmz2gv);
    --color-shadow-toggle-handle-at8aqh:rgba(0, 0, 0, 0.25);
    --color-stroke-chart-line-3nsnk6:var(--color-neutral-500-8van0b);
    --color-text-accent-uvfi4k:var(--color-primary-600-1lcy1k);
    --color-text-body-default-gtm97i:var(--color-neutral-950-lxybh8);
    --color-text-body-secondary-y6dr4d:var(--color-neutral-650-miik4f);
    --color-text-breadcrumb-current-mmrid5:var(--color-neutral-600-fln1ww);
    --color-text-breadcrumb-icon-mh2txm:var(--color-neutral-500-8van0b);
    --color-text-button-inline-icon-default-gdb4f4:var(--color-text-link-default-rhby5q);
    --color-text-button-inline-icon-disabled-bnn5b7:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-button-inline-icon-hover-sqs5ft:var(--color-text-link-hover-br6snu);
    --color-text-button-inline-link-hover-p1ibm2:var(--color-text-button-normal-hover-20c0ob);
    --color-text-button-icon-hover-ph08st:var(--color-text-interactive-hover-j5y3wx);
    --color-text-button-normal-active-fm6d53:var(--color-primary-900-a5kqrr);
    --color-text-toggle-button-normal-pressed-vivff6:var(--color-primary-900-a5kqrr);
    --color-text-button-normal-default-t865au:var(--color-primary-600-1lcy1k);
    --color-text-button-normal-hover-20c0ob:var(--color-primary-900-a5kqrr);
    --color-text-link-button-normal-default-vc8ids:var(--color-text-button-normal-default-t865au);
    --color-text-link-button-normal-hover-xk6kwz:var(--color-text-button-normal-hover-20c0ob);
    --color-text-link-button-normal-active-f0yaqx:var(--color-text-button-normal-active-fm6d53);
    --color-text-button-link-active-154jw6:var(--color-text-button-normal-active-fm6d53);
    --color-text-button-link-default-ehnnq5:var(--color-text-button-normal-default-t865au);
    --color-text-button-link-disabled-d3c5rp:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-button-link-hover-1aopta:var(--color-text-button-normal-hover-20c0ob);
    --color-text-button-primary-active-dkwkja:var(--color-white-p1zlvy);
    --color-text-button-primary-default-2i01k6:var(--color-white-p1zlvy);
    --color-text-button-primary-hover-xtd6ag:var(--color-white-p1zlvy);
    --color-text-calendar-date-hover-qy0tsn:var(--color-text-dropdown-item-default-zani00);
    --color-text-calendar-date-selected-dd6twp:var(--color-background-control-default-nub6gm);
    --color-text-calendar-month-357o43:var(--color-neutral-600-fln1ww);
    --color-text-code-editor-gutter-active-line-bnbbsi:var(--color-white-p1zlvy);
    --color-text-code-editor-gutter-default-vvwxve:var(--color-neutral-950-lxybh8);
    --color-text-code-editor-status-bar-disabled-4npkr3:var(--color-neutral-500-8van0b);
    --color-text-code-editor-tab-button-error-hz2irc:var(--color-white-p1zlvy);
    --color-text-column-header-wyzs6v:var(--color-neutral-650-miik4f);
    --color-text-column-sorting-icon-iazyfo:var(--color-text-column-header-wyzs6v);
    --color-text-control-disabled-vh7v3o:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-counter-q4zq3v:var(--color-neutral-600-fln1ww);
    --color-text-disabled-y4dmv3:var(--color-neutral-400-wtst55);
    --color-text-disabled-inline-edit-hrexz1:var(--color-neutral-650-miik4f);
    --color-text-dropdown-footer-ks7c04:var(--color-text-form-secondary-t0glp7);
    --color-text-dropdown-group-label-8vygj0:var(--color-text-group-label-0wronh);
    --color-text-dropdown-item-default-zani00:var(--color-neutral-950-lxybh8);
    --color-text-dropdown-item-dimmed-iy2k20:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-dropdown-item-disabled-pl4fy2:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-dropdown-item-filter-match-73jeqe:var(--color-primary-600-1lcy1k);
    --color-text-dropdown-item-highlighted-q6vxih:var(--color-neutral-950-lxybh8);
    --color-text-dropdown-item-secondary-77b2z6:var(--color-text-form-secondary-t0glp7);
    --color-text-dropdown-item-secondary-hover-rwb7km:var(--color-neutral-600-fln1ww);
    --color-text-empty-68xc4n:var(--color-neutral-600-fln1ww);
    --color-text-expandable-section-default-aqjbq3:var(--color-neutral-950-lxybh8);
    --color-text-expandable-section-hover-pqmtjd:var(--color-text-accent-uvfi4k);
    --color-text-expandable-section-navigation-icon-default-wh1lig:var(--color-text-interactive-default-1o1pl2);
    --color-border-expandable-section-default-oi0xfr:var(--color-border-divider-default-0de9c8);
    --color-text-form-default-jsw02x:var(--color-neutral-950-lxybh8);
    --color-text-form-label-84uan1:var(--color-text-form-default-jsw02x);
    --color-text-form-secondary-t0glp7:var(--color-neutral-600-fln1ww);
    --color-text-group-label-0wronh:var(--color-neutral-650-miik4f);
    --color-text-label-gen-ai-s3390v:var(--color-purple-700-5hcbeu);
    --color-text-heading-default-pn83b8:var(--color-neutral-950-lxybh8);
    --color-text-heading-secondary-su1acg:var(--color-neutral-650-miik4f);
    --color-text-home-header-default-morg6i:var(--color-neutral-250-vs1is4);
    --color-text-home-header-secondary-i4jhp7:var(--color-neutral-350-dq6kfr);
    --color-text-icon-subtle-7e5fex:var(--color-neutral-600-fln1ww);
    --color-text-input-disabled-as3mmb:var(--color-neutral-400-wtst55);
    --color-text-input-placeholder-i4i8dv:var(--color-neutral-600-fln1ww);
    --color-text-input-placeholder-disabled-9zawsz:var(--color-text-input-disabled-as3mmb);
    --color-text-interactive-active-fedaa8:var(--color-neutral-950-lxybh8);
    --color-text-interactive-default-1o1pl2:var(--color-neutral-650-miik4f);
    --color-text-interactive-disabled-bhh1zo:var(--color-neutral-400-wtst55);
    --color-text-interactive-hover-j5y3wx:var(--color-neutral-950-lxybh8);
    --color-text-toggle-button-icon-pressed-nbnm5x:var(--color-neutral-950-lxybh8);
    --color-text-interactive-inverted-default-nzthan:var(--color-neutral-300-08wi6k);
    --color-text-interactive-inverted-hover-oa7pli:var(--color-neutral-100-gk3lvf);
    --color-text-inverted-my1sxo:var(--color-white-p1zlvy);
    --color-text-label-tv95tq:var(--color-text-form-label-84uan1);
    --color-text-key-value-pairs-value-xmrgpn:var(--color-text-body-default-gtm97i);
    --color-text-layout-toggle-1a15s3:var(--color-white-p1zlvy);
    --color-text-layout-toggle-active-4v3fva:var(--color-white-p1zlvy);
    --color-text-layout-toggle-hover-j9h8pw:var(--color-primary-600-1lcy1k);
    --color-text-layout-toggle-selected-4t49fq:var(--color-white-p1zlvy);
    --color-text-link-default-rhby5q:var(--color-primary-600-1lcy1k);
    --color-text-link-hover-br6snu:var(--color-primary-900-a5kqrr);
    --color-text-link-decoration-default-0x8fhu:currentColor;
    --color-text-link-decoration-hover-kui2t9:currentColor;
    --color-text-link-secondary-default-6ui3do:var(--color-text-link-default-rhby5q);
    --color-text-link-secondary-hover-oy8eob:var(--color-text-link-hover-br6snu);
    --color-text-link-secondary-decoration-default-icj4nn:transparent;
    --color-text-link-info-default-mgpk1w:var(--color-text-link-default-rhby5q);
    --color-text-link-info-hover-os951m:var(--color-text-link-hover-br6snu);
    --color-text-link-inverted-default-n9ytl0:var(--color-text-notification-default-w5tddq);
    --color-text-link-inverted-hover-b4wg6a:var(--color-white-p1zlvy);
    --color-text-link-button-underline-z4wjnv:transparent;
    --color-text-link-button-underline-hover-cn3mqh:transparent;
    --color-text-notification-default-w5tddq:var(--color-neutral-100-gk3lvf);
    --color-text-alert-default-rwuv9g:var(--color-text-body-default-gtm97i);
    --color-text-notification-stack-bar-tjj0ek:var(--color-white-p1zlvy);
    --color-text-notification-yellow-vjtdxk:var(--color-neutral-950-lxybh8);
    --color-text-pagination-page-number-active-disabled-uj04sc:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-pagination-page-number-default-jqmmw0:var(--color-text-interactive-default-1o1pl2);
    --color-text-segment-active-ul57kp:var(--color-white-p1zlvy);
    --color-text-segment-default-5r4jz0:var(--color-neutral-650-miik4f);
    --color-text-segment-hover-9dj6y6:var(--color-text-button-normal-hover-20c0ob);
    --color-text-small-vk4o1c:var(--color-neutral-600-fln1ww);
    --color-text-flashbar-icon-error-cb5ezy:var(--color-text-status-error-ak9yp5);
    --color-text-flashbar-icon-info-lobe9x:var(--color-text-status-info-c3q8b6);
    --color-text-flashbar-icon-success-tqehsy:var(--color-text-status-success-9wcobb);
    --color-text-flashbar-icon-warning-ojtnxb:var(--color-text-status-warning-avkj4w);
    --color-text-alert-icon-error-tlrirw:var(--color-text-status-error-ak9yp5);
    --color-text-alert-icon-info-rwhxzh:var(--color-text-status-info-c3q8b6);
    --color-text-alert-icon-success-6ptnga:var(--color-text-status-success-9wcobb);
    --color-text-alert-icon-warning-jj09xr:var(--color-text-status-warning-avkj4w);
    --color-text-status-error-ak9yp5:var(--color-error-600-mdn3ng);
    --color-text-status-inactive-tg9r8q:var(--color-neutral-600-fln1ww);
    --color-text-status-info-c3q8b6:var(--color-info-600-un21zh);
    --color-text-status-success-9wcobb:var(--color-success-600-g7hz2i);
    --color-text-status-warning-avkj4w:var(--color-warning-900-kpxt8c);
    --color-text-top-navigation-title-kiop92:var(--color-neutral-950-lxybh8);
    --color-text-tutorial-hotspot-default-7f0h47:var(--color-text-link-default-rhby5q);
    --color-text-tutorial-hotspot-hover-jkzh5r:var(--color-text-link-hover-br6snu);
    --color-board-placeholder-active-3nv7j5:var(--color-neutral-250-vs1is4);
    --color-board-placeholder-hover-1hv3br:var(--color-primary-100-f62fz9);
    --color-drag-placeholder-active-7dewab:var(--color-neutral-250-vs1is4);
    --color-drag-placeholder-hover-guvi5d:var(--color-primary-100-f62fz9);
    --color-dropzone-background-default-ia1ya0:var(--color-white-p1zlvy);
    --color-dropzone-background-hover-j9ea7e:var(--color-primary-50-1y05xv);
    --color-dropzone-text-default-m7ucyv:var(--color-neutral-650-miik4f);
    --color-dropzone-text-hover-yjnvhw:var(--color-neutral-650-miik4f);
    --color-dropzone-border-default-lohkzd:var(--color-neutral-500-8van0b);
    --color-dropzone-border-hover-ejc85p:var(--color-primary-900-a5kqrr);
    --color-gap-global-drawer-w5yxw2:var(--color-neutral-250-vs1is4);
    --color-tree-view-connector-line-821trc:var(--color-neutral-500-8van0b);
    --color-background-action-card-default-t3yctp:var(--color-white-p1zlvy);
    --color-background-action-card-hover-h3wt1z:var(--color-primary-50-1y05xv);
    --color-background-action-card-active-usmbya:var(--color-primary-100-f62fz9);
    --color-border-action-card-default-n2zyy4:var(--color-primary-600-1lcy1k);
    --color-border-action-card-hover-rdbsmb:var(--color-primary-900-a5kqrr);
    --color-border-action-card-active-xscx2q:var(--color-primary-900-a5kqrr);
    --color-border-action-card-disabled-7v7a0x:var(--color-neutral-400-wtst55);
    --color-background-action-card-disabled-tyaaz1:var(--color-white-p1zlvy);
    --color-text-action-card-disabled-htx40i:var(--color-neutral-500-8van0b);
    --color-icon-action-card-default-i2lc96:var(--color-primary-600-1lcy1k);
    --color-icon-action-card-hover-9b7foc:var(--color-primary-900-a5kqrr);
    --color-icon-action-card-active-ojxwnl:var(--color-primary-900-a5kqrr);
    --color-icon-action-card-disabled-l1ahot:var(--color-neutral-400-wtst55);
    --color-background-skeleton-wytrx7:var(--color-neutral-500-8van0b);
    --color-background-skeleton-wave-2q57ya:var(--color-neutral-150-gezhen);
    --color-background-badge-green-1bcjh0:var(--color-background-notification-green-2rkyvu);
    --color-background-badge-blue-6346bd:var(--color-background-notification-blue-4vnob8);
    --color-background-badge-red-i81nmc:var(--color-background-notification-red-0487ea);
    --color-background-badge-yellow-n60ths:var(--color-background-notification-yellow-y6us5r);
    --color-background-badge-grey-5tl0uy:var(--color-background-notification-grey-68rc4b);
    --color-border-badge-un9qea:transparent;
    --color-border-badge-grey-n3ma6u:transparent;
    --color-border-badge-green-9thsha:transparent;
    --color-border-badge-blue-8otq6p:transparent;
    --color-border-badge-red-z936s1:transparent;
    --color-text-badge-grey-qbyu4m:var(--color-text-notification-default-w5tddq);
    --color-text-badge-green-ourl0s:var(--color-text-notification-default-w5tddq);
    --color-text-badge-blue-e7a2l0:var(--color-text-notification-default-w5tddq);
    --color-text-badge-red-aewu86:var(--color-text-notification-default-w5tddq);
    --color-background-code-view-l2nfun:#f8f8f8;
    --color-background-visual-accent-red-bit8yt:#ffe0e0;
    --color-background-visual-accent-yellow-qsxu4s:#fffbbd;
    --color-background-visual-accent-indigo-edos35:#dbe4ff;
    --color-background-visual-accent-green-r91q20:#d9ffd6;
    --color-background-visual-accent-orange-q2umnc:rgba(255, 224, 214, 0.6);
    --color-background-visual-accent-purple-kq93ng:rgba(242, 229, 255, 0.6);
    --color-background-visual-accent-lime-j1xkep:var(--color-lime-100-wju6z4);
    --color-background-visual-accent-grey-ojj5z6:var(--color-neutral-250-vs1is4);
    --color-background-visual-accent-teal-8hzzqm:rgba(204, 255, 252, 0.7);
    --color-background-visual-accent-blue-hn33k0:rgba(209, 241, 255, 0.6);
    --color-background-visual-accent-violet-2mvriz:rgba(232, 229, 255, 0.6);
    --color-background-visual-accent-magenta-goqypd:rgba(255, 224, 251, 0.6);
    --color-background-visual-accent-pink-8ha8b6:rgba(255, 224, 240, 0.7);
    --color-background-visual-accent-amber-fvrvm3:rgba(255, 232, 189, 0.7);
    --color-text-visual-accent-red-onxk95:var(--color-error-700-pz2kai);
    --color-text-visual-accent-yellow-sx6w4g:var(--color-warning-900-kpxt8c);
    --color-text-visual-accent-indigo-u9dybt:var(--color-info-800-1onh7v);
    --color-text-visual-accent-green-bmtqm3:var(--color-success-600-g7hz2i);
    --color-text-visual-accent-orange-wr2zkf:#a82700;
    --color-text-visual-accent-purple-3hhab5:#962eff;
    --color-text-visual-accent-lime-of82ws:#007000;
    --color-text-visual-accent-grey-o560dq:var(--color-neutral-850-3f0gro);
    --color-text-visual-accent-teal-zh5vuh:#008077;
    --color-text-visual-accent-blue-qq3miy:#006ce0;
    --color-text-visual-accent-violet-t426e9:#6842ff;
    --color-text-visual-accent-magenta-416j2z:#b2008f;
    --color-text-visual-accent-pink-bj4hom:#bb005d;
    --color-text-visual-accent-amber-l4myqa:#9e3700;
    --font-button-letter-spacing-ufowe3:0.005em;
    --font-chart-detail-size-9qr25q:var(--font-size-body-s-smc8cv);
    --font-decoration-style-link-pk2xmp:solid;
    --font-decoration-line-link-secondary-yegojw:none;
    --font-decoration-thickness-link-uesuo7:1px;
    --font-decoration-thickness-link-display-l-6g5fyl:2px;
    --font-display-label-weight-zavpeo:700;
    --font-size-expandable-heading-q41e8i:var(--font-size-heading-s-zp08en);
    --font-family-base-gmnpzl:"Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif;
    --font-family-display-a93nj0:var(--font-family-base-gmnpzl);
    --font-family-heading-ugphat:var(--font-family-base-gmnpzl);
    --font-family-monospace-q47m7k:Monaco, Menlo, Consolas, "Courier Prime", Courier, "Courier New", monospace;
    --font-header-h2-description-line-height-ts2s6o:var(--line-height-body-m-2mh3ke);
    --font-header-h2-description-size-g2wws3:var(--font-size-body-m-a7nh2n);
    --font-link-button-letter-spacing-imtxwq:var(--font-button-letter-spacing-ufowe3);
    --font-link-button-weight-vslyg9:var(--font-weight-button-0eg20c);
    --font-panel-header-line-height-8xb2qj:var(--line-height-heading-m-uoaqdh);
    --font-panel-header-size-33h9j8:var(--font-size-heading-m-170yiy);
    --font-side-navigation-section-header-size-cnrduv:inherit;
    --font-side-navigation-section-header-weight-h807bs:inherit;
    --font-size-body-m-a7nh2n:14px;
    --font-size-body-s-smc8cv:12px;
    --font-size-display-l-wa6woo:42px;
    --font-size-display-xl-twzhl4:64px;
    --font-size-form-label-mxiqd7:var(--font-size-body-m-a7nh2n);
    --font-size-heading-l-vnacx6:20px;
    --font-size-heading-m-170yiy:18px;
    --font-size-heading-s-zp08en:16px;
    --font-size-heading-xl-wvkbur:24px;
    --font-size-heading-xs-j8yzxv:14px;
    --font-size-key-value-pairs-label-1mmf3j:var(--font-size-body-m-a7nh2n);
    --font-size-tabs-eeo215:var(--font-size-heading-s-zp08en);
    --font-smoothing-moz-osx-hbm0aq:grayscale;
    --font-smoothing-webkit-oemolo:antialiased;
    --font-wayfinding-link-active-weight-ny4hup:700;
    --font-weight-alert-header-zg25o1:700;
    --font-weight-bold-fo1afg:700;
    --font-weight-breadcrumb-current-v39mbh:var(--font-weight-bold-fo1afg);
    --font-weight-button-0eg20c:700;
    --font-weight-display-l-h5zsi8:700;
    --font-weight-display-xl-pdx6bm:400;
    --font-weight-flashbar-header-fg5kye:700;
    --font-weight-form-label-mrg9ef:var(--font-display-label-weight-zavpeo);
    --font-weight-heading-l-0t6dwc:700;
    --font-weight-heading-m-zf82dr:700;
    --font-weight-heading-s-lcx0ai:700;
    --font-weight-heading-xl-u3m4we:700;
    --font-weight-heading-xs-wqqpne:700;
    --font-weight-heavy-6yh4un:700;
    --font-weight-key-value-pairs-label-zdidmd:var(--font-display-label-weight-zavpeo);
    --font-weight-lighter-ldkoj5:300;
    --font-weight-link-secondary-2yfxrh:inherit;
    --font-weight-normal-cxw1m3:400;
    --font-weight-tabs-ichxzl:700;
    --font-weight-tabs-disabled-v5r551:var(--font-wayfinding-link-active-weight-ny4hup);
    --letter-spacing-body-s-gq78ok:0.005em;
    --letter-spacing-display-l-elyyxk:-0.03em;
    --letter-spacing-display-xl-yptw1j:-0.03em;
    --letter-spacing-heading-l-5v6ibv:-0.015em;
    --letter-spacing-heading-m-29ewnk:-0.010em;
    --letter-spacing-heading-s-4st9ep:-0.005em;
    --letter-spacing-heading-xl-ckkb6u:-0.02em;
    --letter-spacing-heading-xs-fgog7a:normal;
    --line-height-body-m-2mh3ke:20px;
    --line-height-body-s-nu5hx1:16px;
    --line-height-display-l-vwanzp:48px;
    --line-height-display-xl-e5ij0u:72px;
    --line-height-form-label-asu26u:var(--line-height-body-m-2mh3ke);
    --line-height-heading-l-mg5bx6:24px;
    --line-height-heading-m-uoaqdh:22px;
    --line-height-heading-s-hmi4vc:20px;
    --line-height-heading-xl-hko6p0:30px;
    --line-height-heading-xs-q9j004:18px;
    --line-height-key-value-pairs-label-x3ofa3:var(--line-height-body-m-2mh3ke);
    --line-height-tabs-vpnjo7:var(--line-height-heading-s-hmi4vc);
    --border-active-width-axzm24:4px;
    --border-code-editor-status-divider-width-4we6jf:var(--border-divider-section-width-uwo8my);
    --border-container-sticky-width-nri0ix:0px;
    --border-container-top-width-n1eke6:0px;
    --border-control-focus-ring-shadow-spread-9mjajk:1px;
    --border-control-invalid-focus-ring-shadow-spread-9jjf96:2px;
    --border-divider-list-width-tdfx1x:1px;
    --border-divider-section-width-uwo8my:1px;
    --border-dropdown-virtual-offset-width-3wp954:2px;
    --border-invalid-width-3xd6e1:8px;
    --border-item-width-miijiw:2px;
    --border-line-chart-dash-array-desefi:3 5;
    --border-line-chart-line-join-aslwou:round;
    --border-line-chart-width-tesor1:2px;
    --border-link-focus-ring-outline-1p0hnu:0;
    --border-link-focus-ring-shadow-spread-39uvxr:2px;
    --border-panel-header-width-t1iq1m:1px;
    --border-panel-top-width-10990j:1px;
    --border-radius-action-card-default-ejctkq:var(--border-radius-card-default-d8ipr7);
    --border-radius-action-card-embedded-3y65t8:var(--border-radius-card-embedded-fvclp8);
    --border-radius-alert-syagf6:var(--border-radius-flashbar-pp1ptu);
    --border-radius-badge-exolfb:4px;
    --border-radius-button-7bgkcs:20px;
    --border-radius-calendar-day-focus-ring-xvvbuc:3px;
    --border-radius-card-default-d8ipr7:var(--border-radius-container-nsfwmm);
    --border-radius-card-embedded-fvclp8:var(--border-radius-chat-bubble-haafsg);
    --border-radius-chat-bubble-haafsg:8px;
    --border-radius-code-editor-5palck:var(--border-radius-input-7q0str);
    --border-radius-container-nsfwmm:16px;
    --border-radius-control-circular-focus-ring-yjhscw:4px;
    --border-radius-control-default-focus-ring-1uabki:4px;
    --border-radius-dropdown-fgc2a1:var(--border-radius-item-iwaia5);
    --border-radius-dropzone-eklq14:12px;
    --border-radius-flashbar-pp1ptu:12px;
    --border-radius-input-7q0str:8px;
    --border-radius-item-iwaia5:8px;
    --border-radius-side-navigation-item-okro0s:var(--border-radius-item-iwaia5);
    --border-radius-side-navigation-item-collapsed-e8960w:50%;
    --border-radius-item-card-default-pi9u8q:var(--border-radius-card-default-d8ipr7);
    --border-radius-item-card-embedded-l0g6e3:var(--border-radius-card-embedded-fvclp8);
    --border-radius-popover-6fqb5w:var(--border-radius-input-7q0str);
    --border-radius-skeleton-9lkvfi:8px;
    --border-radius-status-indicator-fkcvdq:var(--border-radius-badge-exolfb);
    --border-radius-tabs-focus-ring-o4qku1:20px;
    --border-radius-tiles-wm1vgw:var(--border-radius-input-7q0str);
    --border-radius-token-ycnemh:var(--border-radius-input-7q0str);
    --border-radius-token-inline-tio0a0:4px;
    --border-radius-tutorial-panel-item-ojaqxg:var(--border-radius-input-7q0str);
    --border-table-sticky-width-ai31mi:1px;
    --border-width-action-card-active-pwtgzu:var(--border-width-card-x24gzt);
    --border-width-action-card-default-jy3kut:var(--border-width-card-x24gzt);
    --border-width-action-card-disabled-rdvlbc:var(--border-width-card-x24gzt);
    --border-width-action-card-hover-02l6fg:var(--border-width-card-x24gzt);
    --border-width-alert-tuifgy:2px;
    --border-width-alert-block-end-q8rr42:var(--border-width-alert-tuifgy);
    --border-width-alert-block-start-5wbfsk:var(--border-width-alert-tuifgy);
    --border-width-alert-inline-end-9s426v:var(--border-width-alert-tuifgy);
    --border-width-alert-inline-start-gjm6m1:var(--border-width-alert-tuifgy);
    --border-width-flashbar-inline-start-exuaev:0px;
    --border-width-button-jm0qg7:2px;
    --border-width-card-x24gzt:var(--border-divider-section-width-uwo8my);
    --border-width-card-selected-01i6br:var(--border-item-width-miijiw);
    --border-width-dropdown-youcay:2px;
    --border-width-field-2xc78x:1px;
    --border-width-icon-big-ymgy42:3px;
    --border-width-icon-large-u645rg:4px;
    --border-width-icon-medium-b7icqv:2px;
    --border-width-icon-normal-9h7vj7:2px;
    --border-width-icon-small-z55i5t:2px;
    --border-width-icon-x-small-45lnog:1.5px;
    --border-width-item-card-3wmyp3:var(--border-width-card-x24gzt);
    --border-width-item-selected-yv93vd:2px;
    --border-width-layout-side-navigation-brgx8q:var(--border-divider-section-width-uwo8my);
    --border-width-badge-7pmgfh:0px;
    --border-width-popover-nflirh:2px;
    --border-width-token-2ukdpu:2px;
    --motion-duration-extra-slow-29bqym:270ms;
    --motion-duration-fast-unntf6:90ms;
    --motion-duration-moderate-c9utmg:135ms;
    --motion-duration-refresh-only-fast-zfibh6:115ms;
    --motion-duration-refresh-only-medium-5rbn3k:165ms;
    --motion-duration-refresh-only-slow-ugjy90:250ms;
    --motion-duration-avatar-gen-ai-gradient-84si5n:3600ms;
    --motion-duration-avatar-loading-dots-1xxvis:1200ms;
    --motion-duration-rotate-180-cxi9g7:var(--motion-duration-moderate-c9utmg);
    --motion-duration-rotate-90-lyzb0k:var(--motion-duration-moderate-c9utmg);
    --motion-duration-show-paced-otsjh8:var(--motion-duration-slow-zji5vl);
    --motion-duration-show-quick-tyvnyw:var(--motion-duration-moderate-c9utmg);
    --motion-duration-slow-zji5vl:180ms;
    --motion-duration-transition-quick-mcm2y0:var(--motion-duration-fast-unntf6);
    --motion-duration-transition-show-paced-t8d1os:var(--motion-duration-slow-zji5vl);
    --motion-duration-transition-show-quick-5jnnjz:var(--motion-duration-fast-unntf6);
    --motion-easing-ease-out-quart-p9axhm:cubic-bezier(0.165, 0.84, 0.44, 1);
    --motion-easing-refresh-only-a-ccyqaz:cubic-bezier(0, 0, 0, 1);
    --motion-easing-refresh-only-b-44kz4o:cubic-bezier(1, 0, 0.83, 1);
    --motion-easing-refresh-only-c-cxy2sk:cubic-bezier(0.84, 0, 0.16, 1);
    --motion-easing-avatar-gen-ai-gradient-9fwaak:cubic-bezier(0.7, 0, 0.3, 1);
    --motion-easing-rotate-180-7a58rc:var(--motion-easing-ease-out-quart-p9axhm);
    --motion-easing-rotate-90-jhbqg9:var(--motion-easing-ease-out-quart-p9axhm);
    --motion-easing-show-paced-ym6eyn:ease-out;
    --motion-easing-show-quick-9hlj8q:ease-out;
    --motion-easing-transition-quick-qxak3i:linear;
    --motion-easing-transition-show-paced-x2k7uh:ease-out;
    --motion-easing-responsive-hjj3ai:var(--motion-easing-refresh-only-a-ccyqaz);
    --motion-easing-sticky-tn072u:var(--motion-easing-refresh-only-b-44kz4o);
    --motion-easing-expressive-o5jqzg:var(--motion-easing-refresh-only-c-cxy2sk);
    --motion-duration-responsive-mehora:var(--motion-duration-refresh-only-fast-zfibh6);
    --motion-duration-expressive-cbdcwy:var(--motion-duration-refresh-only-medium-5rbn3k);
    --motion-duration-complex-tbdo30:var(--motion-duration-refresh-only-slow-ugjy90);
    --motion-duration-tooltip-enter-8e7aex:var(--motion-duration-refresh-only-fast-zfibh6);
    --motion-easing-tooltip-enter-i9exfu:var(--motion-easing-refresh-only-a-ccyqaz);
    --motion-duration-expandable-content-enter-kqyuuj:var(--motion-duration-show-paced-otsjh8);
    --motion-easing-expandable-content-enter-5fw5v8:var(--motion-easing-show-paced-ym6eyn);
    --motion-duration-side-navigation-content-enter-fade-9is49e:0ms;
    --motion-duration-side-navigation-content-exit-6sbfiy:0ms;
    --motion-duration-side-navigation-content-exit-fade-ydl422:0ms;
    --motion-easing-side-navigation-content-exit-v820ow:var(--motion-easing-show-quick-9hlj8q);
    --motion-keyframes-fade-in-0r842q:awsui-fade-in-35003c;
    --motion-keyframes-fade-out-g7fgdu:awsui-fade-out-35003c;
    --motion-keyframes-status-icon-error-wkou39:awsui-status-icon-error-35003c;
    --motion-keyframes-scale-popup-9iqcu0:awsui-scale-popup-35003c;
    --size-calendar-grid-width-hv3136:238px;
    --size-control-adm93y:16px;
    --size-icon-big-7pq9l3:32px;
    --size-icon-large-mb6y6y:48px;
    --size-icon-medium-uv8xcz:20px;
    --size-icon-normal-levt08:16px;
    --size-table-selection-horizontal-qqiajd:40px;
    --size-vertical-input-p1d7xx:32px;
    --size-vertical-panel-icon-offset-z959cw:15px;
    --size-side-navigation-item-height-lokap3:28px;
    --size-side-navigation-item-collapsed-oesjea:30px;
    --size-side-navigation-collapsed-width-3gq7nn:52px;
    --space-alert-action-left-4s8zo5:var(--space-s-tvghoh);
    --space-alert-horizontal-ul364s:var(--space-flashbar-horizontal-l63501);
    --space-alert-message-right-mrjbnn:var(--space-xxs-hwfkai);
    --space-alert-vertical-dlp5wr:var(--space-flashbar-vertical-th71op);
    --space-button-focus-outline-gutter-jj138g:4px;
    --space-button-horizontal-k0c786:var(--space-scaled-l-sej05l);
    --space-button-vertical-xaxp6x:var(--space-scaled-xxs-pfm1nx);
    --space-token-vertical-m3oh2a:var(--space-scaled-xxs-pfm1nx);
    --space-field-vertical-vm99qz:5px;
    --space-button-icon-focus-outline-gutter-vertical-r44mtq:0px;
    --space-button-icon-only-horizontal-i85hxi:6px;
    --space-button-inline-icon-focus-outline-gutter-zbfgku:0px;
    --space-button-modal-dismiss-vertical-vqfxjd:var(--space-scaled-xxxs-oo06c7);
    --space-calendar-grid-focus-outline-gutter-vvh43m:-5px;
    --space-calendar-grid-selected-focus-outline-gutter-dy6gf8:var(--space-calendar-grid-focus-outline-gutter-vvh43m);
    --space-calendar-grid-gutter-zojo6r:6px;
    --space-card-horizontal-default-pihe12:var(--space-container-horizontal-nqrzyh);
    --space-card-horizontal-embedded-sasxhu:var(--space-s-tvghoh);
    --space-card-vertical-default-e40tif:var(--space-scaled-m-m892r9);
    --space-card-vertical-embedded-30pnhg:10px;
    --space-item-card-horizontal-default-obq2ks:var(--space-card-horizontal-default-pihe12);
    --space-item-card-horizontal-embedded-e0vef5:var(--space-card-horizontal-embedded-sasxhu);
    --space-item-card-vertical-default-ppqfu4:var(--space-card-vertical-default-e40tif);
    --space-item-card-vertical-embedded-zuozef:var(--space-card-vertical-embedded-30pnhg);
    --space-code-editor-status-focus-outline-gutter-o87hra:-7px;
    --space-container-content-top-1wtqrc:var(--space-xxs-hwfkai);
    --space-container-header-top-am4vzw:var(--space-s-tvghoh);
    --space-container-header-bottom-2taq8v:var(--space-scaled-xs-xwoogq);
    --space-container-horizontal-nqrzyh:var(--space-l-2ud1p3);
    --space-content-header-padding-bottom-rvy5xz:var(--space-scaled-m-m892r9);
    --space-dark-header-overlap-distance-ld45ap:36px;
    --space-expandable-section-icon-offset-top-cntyn8:var(--space-scaled-2x-xxs-e79hr1);
    --space-field-horizontal-0aq2ch:var(--space-s-tvghoh);
    --space-field-icon-offset-ikwzwx:36px;
    --space-filtering-token-dismiss-button-focus-outline-gutter-1iumy3:-5px;
    --space-filtering-token-operation-select-focus-outline-gutter-jacx1t:-5px;
    --space-flashbar-action-left-rqk3ap:var(--space-s-tvghoh);
    --space-flashbar-dismiss-right-ckhj91:0px;
    --space-flashbar-horizontal-l63501:var(--space-m-dsumyt);
    --space-flashbar-vertical-th71op:var(--space-scaled-xs-xwoogq);
    --space-grid-gutter-whc3jp:var(--space-l-2ud1p3);
    --space-key-value-gap-9glmqc:0px;
    --space-layout-content-bottom-zeb1g9:var(--space-scaled-2x-xxxl-bxyvwl);
    --space-layout-content-horizontal-buc0zz:var(--space-scaled-2x-xl-he48nr);
    --space-layout-toggle-diameter-j2qffw:36px;
    --space-layout-toggle-padding-chwlhz:var(--space-static-s-t763lu);
    --space-modal-content-bottom-nl6ceq:var(--space-scaled-2x-m-4euqsk);
    --space-modal-horizontal-y5hnwp:var(--space-container-horizontal-nqrzyh);
    --space-panel-content-bottom-24c6lu:var(--space-scaled-xxxl-hwoy7j);
    --space-panel-content-top-qvd1dr:var(--space-scaled-l-sej05l);
    --space-panel-divider-margin-horizontal-yw31p0:var(--space-xs-ymlm0b);
    --space-panel-header-vertical-ckfgmy:var(--space-scaled-l-sej05l);
    --space-panel-nav-left-wn0n7h:28px;
    --space-panel-side-left-u1m3s9:28px;
    --space-panel-side-right-8wwirc:var(--space-scaled-xl-dunxp5);
    --space-panel-split-top-3u4vky:var(--space-scaled-l-sej05l);
    --space-panel-split-bottom-ir16d7:var(--space-scaled-l-sej05l);
    --space-segmented-control-focus-outline-gutter-x1ywqb:6px;
    --space-tabs-content-top-ju6qox:var(--space-scaled-s-8ozaad);
    --space-tabs-focus-outline-gutter-eerrg4:-8px;
    --space-tabs-vertical-3qxuiu:var(--space-scaled-xxs-pfm1nx);
    --space-table-content-bottom-tlfqmq:var(--space-xxs-hwfkai);
    --space-table-embedded-header-top-twu628:0px;
    --space-table-footer-horizontal-l5g495:var(--space-table-header-horizontal-kb5ww2);
    --space-table-header-focus-outline-gutter-ymwujm:0px;
    --space-table-header-horizontal-kb5ww2:0px;
    --space-table-header-tools-bottom-d9u5kf:0px;
    --space-table-header-tools-full-page-bottom-9m47g6:4px;
    --space-table-horizontal-suurzj:var(--space-container-horizontal-nqrzyh);
    --space-tree-view-indentation-xh9kis:var(--space-xl-jfy3x4);
    --space-side-navigation-item-default-gap-a1luyq:var(--space-none-xk6qzf);
    --space-side-navigation-item-icon-gap-h45akr:var(--space-xxs-hwfkai);
    --space-tile-gutter-bi2bdv:var(--space-xl-jfy3x4);
    --space-action-card-horizontal-default-su1e86:var(--space-card-horizontal-default-pihe12);
    --space-action-card-horizontal-embedded-pb8pj4:var(--space-card-horizontal-embedded-sasxhu);
    --space-action-card-vertical-default-zqb3v3:var(--space-card-vertical-default-e40tif);
    --space-action-card-vertical-embedded-f1rm8a:var(--space-card-vertical-embedded-30pnhg);
    --space-action-card-description-padding-top-qw1sd7:var(--space-scaled-xxs-pfm1nx);
    --space-option-padding-vertical-d2srv9:var(--space-xxs-hwfkai);
    --space-option-padding-horizontal-4taa4b:var(--space-l-2ud1p3);
    --space-status-indicator-padding-horizontal-xv70fu:var(--space-none-xk6qzf);
    --space-scaled-2x-xxs-e79hr1:var(--space-xxs-hwfkai);
    --space-scaled-2x-m-4euqsk:var(--space-m-dsumyt);
    --space-scaled-2x-l-u5ida5:var(--space-l-2ud1p3);
    --space-scaled-2x-xl-he48nr:var(--space-xl-jfy3x4);
    --space-scaled-2x-xxxl-bxyvwl:var(--space-xxxl-aut1u7);
    --space-scaled-none-nfyouv:var(--space-none-xk6qzf);
    --space-scaled-xxxs-oo06c7:var(--space-xxxs-pajhad);
    --space-scaled-xxs-pfm1nx:var(--space-xxs-hwfkai);
    --space-scaled-xs-xwoogq:var(--space-xs-ymlm0b);
    --space-scaled-s-8ozaad:var(--space-s-tvghoh);
    --space-scaled-m-m892r9:var(--space-m-dsumyt);
    --space-scaled-l-sej05l:var(--space-l-2ud1p3);
    --space-scaled-xl-dunxp5:var(--space-xl-jfy3x4);
    --space-scaled-xxl-6wgq96:var(--space-xxl-32srm4);
    --space-scaled-xxxl-hwoy7j:var(--space-xxxl-aut1u7);
    --space-static-xxxs-yidks1:var(--space-xxxs-pajhad);
    --space-static-xxs-ns94dp:var(--space-xxs-hwfkai);
    --space-static-xs-gnm0mz:var(--space-xs-ymlm0b);
    --space-static-s-t763lu:var(--space-s-tvghoh);
    --space-static-m-m6qboo:var(--space-m-dsumyt);
    --space-static-l-n53k41:var(--space-l-2ud1p3);
    --space-static-xl-4tedi6:var(--space-xl-jfy3x4);
    --space-static-xxl-ifa9j8:var(--space-xxl-32srm4);
    --space-static-xxxl-tngnnz:var(--space-xxxl-aut1u7);
    --space-none-xk6qzf:0px;
    --space-xxxs-pajhad:2px;
    --space-xxs-hwfkai:4px;
    --space-xs-ymlm0b:8px;
    --space-s-tvghoh:12px;
    --space-m-dsumyt:16px;
    --space-l-2ud1p3:20px;
    --space-xl-jfy3x4:24px;
    --space-xxl-32srm4:32px;
    --space-xxxl-aut1u7:40px;
    --shadow-card-hmrw4q:none;
    --shadow-item-card-282f8w:var(--shadow-card-hmrw4q);
    --shadow-container-53ltfv:0px 0px 1px 1px #e9ebed, 0px 1px 8px 2px rgba(0, 7, 22, 0.12);
    --shadow-container-active-ypjjoc:0px 1px 1px 1px #e9ebed, 0px 6px 36px #0007161a;
    --shadow-dropdown-isf0w4:0px 4px 20px 1px rgba(0, 7, 22, 0.10);
    --shadow-dropup-2r02r5:var(--shadow-dropdown-isf0w4);
    --shadow-flash-collapsed-b68ip6:0px 4px 4px rgba(0, 0, 0, 0.25);
    --shadow-flash-sticky-k69vye:0px 4px 8px rgba(0, 7, 22, 0.10);
    --shadow-modal-kwgqht:var(--shadow-dropdown-isf0w4);
    --shadow-panel-vk7iea:0px 0px 0px 1px #b6bec9;
    --shadow-panel-toggle-qddz27:0px 6px 12px 1px rgba(0, 7, 22, 0.12);
    --shadow-popover-pkane9:var(--shadow-dropdown-isf0w4);
    --shadow-split-bottom-vlyulf:0px -36px 36px -36px rgba(0, 7, 22, 0.10);
    --shadow-split-side-nyajix:-1px 0px 1px 0px #e9ebed, -36px 6px 36px -36px rgba(0, 7, 22, 0.10);
    --shadow-sticky-lolw8j:0px 4px 8px 1px rgba(0, 7, 22, 0.10);
    --shadow-sticky-embedded-jmny8n:0px 2px 0px 0px #e9ebed, 0px 16px 16px -12px rgba(0, 7, 22, 0.10);
    --shadow-sticky-column-first-trcd2o:4px 0px 8px 1px rgba(0, 7, 22, 0.1);
    --shadow-sticky-column-last-qgh697:-4px 0 8px 1px rgba(0, 28, 36, 0.1);
  }
  @media not print {
    .awsui-dark-mode:not(#\9) {
      --color-charts-red-300-2k7eul:#d63f38;
      --color-charts-red-400-ssrf2o:#ed5958;
      --color-charts-red-500-m14kmu:#fe6e73;
      --color-charts-red-600-938v3h:#ff8a8a;
      --color-charts-red-700-f6sq8t:#ffa09e;
      --color-charts-red-800-tzkaad:#ffb3b0;
      --color-charts-red-900-fhg0lh:#ffc4c0;
      --color-charts-red-1000-9iigzo:#ffd2cf;
      --color-charts-red-1100-4n7b3z:#ffe0dd;
      --color-charts-red-1200-ek3cuo:#ffecea;
      --color-charts-orange-300-hqhtmn:#c55305;
      --color-charts-orange-400-g8c1fc:#de6923;
      --color-charts-orange-500-j3c2cu:#f27c36;
      --color-charts-orange-600-1ad7o4:#f89256;
      --color-charts-orange-700-spsf2r:#fca572;
      --color-charts-orange-800-244d7b:#ffb68b;
      --color-charts-orange-900-8omk92:#ffc6a4;
      --color-charts-orange-1000-ezq5pz:#ffd4bb;
      --color-charts-orange-1100-bhcmg5:#ffe1cf;
      --color-charts-orange-1200-exs6jj:#ffede2;
      --color-charts-yellow-300-fpz8o0:#977001;
      --color-charts-yellow-400-vxiqrf:#b08400;
      --color-charts-yellow-500-1qgrtj:#c59600;
      --color-charts-yellow-600-aweqy2:#d3a61c;
      --color-charts-yellow-700-xh0lj9:#dfb52c;
      --color-charts-yellow-800-gp4422:#eac33a;
      --color-charts-yellow-900-r6gx3k:#f1cf65;
      --color-charts-yellow-1000-6dnac6:#f7db8a;
      --color-charts-yellow-1100-fqp4sw:#fce5a8;
      --color-charts-yellow-1200-k7kf4w:#ffefc9;
      --color-charts-green-300-6766ev:#48851a;
      --color-charts-green-400-gd41ay:#5a9b29;
      --color-charts-green-500-yr18n3:#69ae34;
      --color-charts-green-600-b1gmr0:#7dbd4c;
      --color-charts-green-700-305sle:#8fca61;
      --color-charts-green-800-rh42zr:#9fd673;
      --color-charts-green-900-2x5smm:#b2df8d;
      --color-charts-green-1000-opphoq:#c5e7a8;
      --color-charts-green-1100-o67uzm:#d5efbe;
      --color-charts-green-1200-sw46fc:#e4f7d5;
      --color-charts-teal-300-2qlyrg:#018977;
      --color-charts-teal-400-s8pa77:#009d89;
      --color-charts-teal-500-8d830b:#00b09b;
      --color-charts-teal-600-772n9t:#40bfa9;
      --color-charts-teal-700-29mnwm:#5fccb7;
      --color-charts-teal-800-vp41t6:#77d7c3;
      --color-charts-teal-900-k020ya:#94e0d0;
      --color-charts-teal-1000-fhpqt3:#ace9db;
      --color-charts-teal-1100-6w598w:#c2f0e6;
      --color-charts-teal-1200-0u78my:#d7f7f0;
      --color-charts-blue-1-300-pdza0q:#00819c;
      --color-charts-blue-1-400-ajl038:#0497ba;
      --color-charts-blue-1-500-9s8gor:#08aad2;
      --color-charts-blue-1-600-7ymb7g:#44b9dd;
      --color-charts-blue-1-700-5qzras:#63c6e7;
      --color-charts-blue-1-800-awczh4:#79d2f0;
      --color-charts-blue-1-900-6wxwzk:#98dcf5;
      --color-charts-blue-1-1000-00005b:#b3e4f8;
      --color-charts-blue-1-1100-8nwfwf:#caedfc;
      --color-charts-blue-1-1200-v60p8b:#ddf4ff;
      --color-charts-blue-2-300-g72slq:#486de8;
      --color-charts-blue-2-400-he538m:#6384f5;
      --color-charts-blue-2-500-quctxu:#7698fe;
      --color-charts-blue-2-600-6qav3j:#8ea9ff;
      --color-charts-blue-2-700-sp7t4m:#a2b8ff;
      --color-charts-blue-2-800-q01umt:#b1c5ff;
      --color-charts-blue-2-900-gog7z2:#c3d1ff;
      --color-charts-blue-2-1000-c13nf8:#d2dcff;
      --color-charts-blue-2-1100-ddk6eo:#dfe6ff;
      --color-charts-blue-2-1200-gt550t:#ecf0ff;
      --color-charts-purple-300-85q036:#8d59de;
      --color-charts-purple-400-9axh6r:#a173ea;
      --color-charts-purple-500-rn2jbl:#b088f5;
      --color-charts-purple-600-26s4rg:#bf9bf9;
      --color-charts-purple-700-tv8cvg:#cbabfc;
      --color-charts-purple-800-h61qlx:#d6baff;
      --color-charts-purple-900-am452b:#dfc8ff;
      --color-charts-purple-1000-uarqpb:#e8d5ff;
      --color-charts-purple-1100-y8ctnd:#efe2ff;
      --color-charts-purple-1200-hr9f40:#f5edff;
      --color-charts-pink-300-ewnht7:#c64a70;
      --color-charts-pink-400-smjdat:#d56889;
      --color-charts-pink-500-bw864b:#e07f9d;
      --color-charts-pink-600-2ro14y:#eb92ad;
      --color-charts-pink-700-ryxvua:#f5a2bb;
      --color-charts-pink-800-tcusf8:#ffb0c8;
      --color-charts-pink-900-kpyne4:#ffc1d4;
      --color-charts-pink-1000-1soluc:#ffd1de;
      --color-charts-pink-1100-ff6g93:#ffdfe8;
      --color-charts-pink-1200-w9585d:#ffecf1;
      --color-charts-status-critical-c6brdu:var(--color-charts-red-300-2k7eul);
      --color-charts-status-high-18fhg5:var(--color-charts-red-500-m14kmu);
      --color-charts-status-medium-3trmy3:var(--color-charts-orange-600-1ad7o4);
      --color-charts-status-low-br6wv0:var(--color-charts-yellow-700-xh0lj9);
      --color-charts-status-positive-md7eqa:var(--color-charts-green-500-yr18n3);
      --color-charts-status-info-yds4x2:var(--color-charts-blue-1-500-9s8gor);
      --color-charts-threshold-negative-aad26m:var(--color-error-400-c0knb8);
      --color-charts-threshold-positive-mk2804:var(--color-success-500-hhxb4g);
      --color-charts-threshold-info-ijuzzj:var(--color-info-300-q9xd1l);
      --color-charts-threshold-neutral-pd7kh4:var(--color-neutral-450-kn0235);
      --color-charts-line-grid-kjxf3m:var(--color-neutral-650-miik4f);
      --color-charts-line-tick-xmcbvk:var(--color-neutral-650-miik4f);
      --color-charts-line-axis-b95ncf:var(--color-neutral-650-miik4f);
      --color-charts-error-bar-marker-r10jgv:var(--color-white-p1zlvy);
      --color-severity-dark-red-j8bmoc:#d63f38;
      --color-severity-red-wf5w2d:#fe6e73;
      --color-text-notification-severity-critical-tv4vw4:var(--color-black-cox1hy);
      --color-text-notification-severity-high-t4suvu:var(--color-neutral-950-lxybh8);
      --color-grey-opaque-70-1cfyp2:rgba(15, 20, 26, 0.7);
      --color-grey-transparent-ywq957:rgba(15, 20, 26, 1);
      --color-grey-transparent-heavy-mmz2gv:rgba(15, 20, 26, 1);
      --color-background-badge-icon-eprfkm:var(--color-error-400-c0knb8);
      --color-background-button-link-active-qjigod:var(--color-neutral-700-qw8ats);
      --color-background-button-link-hover-w58lm6:var(--color-neutral-800-t7j5ap);
      --color-background-button-normal-active-zqw8xz:var(--color-neutral-700-qw8ats);
      --color-background-button-normal-default-h5dyi3:var(--color-neutral-850-3f0gro);
      --color-background-button-normal-disabled-3xb191:var(--color-neutral-850-3f0gro);
      --color-background-button-normal-hover-trus5n:var(--color-neutral-800-t7j5ap);
      --color-background-toggle-button-normal-pressed-wu6ges:var(--color-neutral-700-qw8ats);
      --color-background-button-primary-active-mulwvt:var(--color-primary-400-n8h4bx);
      --color-background-button-primary-disabled-d1ggcl:var(--color-neutral-750-pi9qqd);
      --color-background-direction-button-disabled-uad4xk:var(--color-neutral-750-pi9qqd);
      --color-background-calendar-current-date-2c5ip4:var(--color-neutral-700-qw8ats);
      --color-background-cell-shaded-c928js:var(--color-neutral-800-t7j5ap);
      --color-background-code-editor-gutter-active-line-default-eesbr6:var(--color-neutral-500-8van0b);
      --color-background-code-editor-gutter-default-136m47:var(--color-neutral-800-t7j5ap);
      --color-background-code-editor-loading-7grxg2:var(--color-neutral-800-t7j5ap);
      --color-background-code-editor-pane-item-hover-ed635c:var(--color-neutral-700-qw8ats);
      --color-background-code-editor-status-bar-ic28b2:var(--color-neutral-800-t7j5ap);
      --color-background-container-content-78ljyf:var(--color-neutral-850-3f0gro);
      --color-background-container-header-ydavso:var(--color-neutral-850-3f0gro);
      --color-background-control-checked-jwoxtj:var(--color-primary-400-n8h4bx);
      --color-background-control-default-nub6gm:var(--color-neutral-850-3f0gro);
      --color-background-control-disabled-cb50zl:var(--color-neutral-700-qw8ats);
      --color-background-dropdown-item-default-lzrka9:var(--color-neutral-800-t7j5ap);
      --color-background-dropdown-item-filter-match-8fnvh3:var(--color-neutral-700-qw8ats);
      --color-background-dropdown-item-hover-wyujnt:var(--color-neutral-900-v0mtoc);
      --color-background-inline-code-967m4q:rgba(255, 255, 255, 0.1);
      --color-background-input-default-bz9w07:var(--color-neutral-850-3f0gro);
      --color-background-input-disabled-cecgeg:var(--color-neutral-800-t7j5ap);
      --color-background-item-selected-pyr5cw:var(--color-primary-1000-7umopx);
      --color-background-layout-main-7z8vaj:var(--color-neutral-850-3f0gro);
      --color-background-layout-panel-hover-kg7nug:var(--color-neutral-700-qw8ats);
      --color-background-layout-toggle-selected-active-7ovd7l:var(--color-primary-400-n8h4bx);
      --color-background-layout-toggle-selected-default-5go4i7:var(--color-primary-400-n8h4bx);
      --color-background-layout-toggle-selected-hover-pt3n9b:var(--color-primary-300-5q65ox);
      --color-background-notification-grey-68rc4b:var(--color-neutral-600-fln1ww);
      --color-background-popover-yxd92v:var(--color-neutral-800-t7j5ap);
      --color-background-progress-bar-value-default-3ddu5u:var(--color-primary-400-n8h4bx);
      --color-background-progress-bar-default-4miz7r:var(--color-neutral-700-qw8ats);
      --color-background-segment-active-nrp5ms:var(--color-primary-400-n8h4bx);
      --color-background-slider-handle-default-8d9sfs:var(--color-primary-400-n8h4bx);
      --color-background-slider-handle-active-trfoqh:var(--color-primary-300-5q65ox);
      --color-background-slider-track-default-lz0len:var(--color-neutral-600-fln1ww);
      --color-background-slider-handle-ring-qvcnj5:var(--color-neutral-850-3f0gro);
      --color-background-status-error-1w6iu4:var(--color-error-1000-ecmudm);
      --color-background-status-info-j2xxem:var(--color-info-1000-s77ok9);
      --color-background-status-success-hm3ak2:var(--color-success-1000-xy1gvq);
      --color-background-status-warning-wceky5:var(--color-warning-1000-65l070);
      --color-background-tiles-disabled-5ikjr0:var(--color-neutral-800-t7j5ap);
      --color-background-toggle-checked-disabled-7t40bu:var(--color-primary-900-a5kqrr);
      --color-background-toggle-default-feiaap:var(--color-neutral-500-8van0b);
      --color-background-chat-bubble-incoming-ykuqvi:var(--color-neutral-950-lxybh8);
      --color-border-button-normal-active-zi2bnn:var(--color-primary-300-5q65ox);
      --color-border-button-normal-default-2yswxv:var(--color-primary-400-n8h4bx);
      --color-border-toggle-button-normal-pressed-ab77je:var(--color-primary-400-n8h4bx);
      --color-border-button-normal-disabled-uit34y:var(--color-neutral-600-fln1ww);
      --color-border-button-normal-hover-167wjl:var(--color-primary-300-5q65ox);
      --color-item-selected-rz6ktw:var(--color-primary-400-n8h4bx);
      --color-border-calendar-grid-selected-focus-ring-t8s8m7:var(--color-neutral-850-3f0gro);
      --color-border-cell-shaded-zttxxa:var(--color-neutral-700-qw8ats);
      --color-border-code-editor-default-8rd3v1:var(--color-neutral-600-fln1ww);
      --color-border-divider-active-ypkld8:var(--color-neutral-100-gk3lvf);
      --color-border-divider-default-0de9c8:var(--color-neutral-650-miik4f);
      --color-border-divider-secondary-46ol9n:var(--color-neutral-750-pi9qqd);
      --color-border-divider-table-group-tut0l3:var(--color-neutral-600-fln1ww);
      --color-border-dropdown-container-gb937i:var(--color-neutral-600-fln1ww);
      --color-border-dropdown-item-hover-07ng6s:var(--color-neutral-600-fln1ww);
      --color-border-input-default-f3bzwh:var(--color-neutral-600-fln1ww);
      --color-border-input-focused-9bkrxq:var(--color-primary-400-n8h4bx);
      --color-border-item-focused-ditkrb:var(--color-primary-400-n8h4bx);
      --color-border-dropdown-item-focused-k9miqq:var(--color-neutral-300-08wi6k);
      --color-border-layout-px1i24:var(--color-neutral-650-miik4f);
      --color-border-segment-default-8mo02x:var(--color-neutral-300-08wi6k);
      --color-border-status-error-vxvfad:var(--color-error-400-c0knb8);
      --color-border-status-info-2zt73n:var(--color-info-400-674xac);
      --color-border-status-success-uk2p7m:var(--color-success-500-hhxb4g);
      --color-border-status-warning-s79l22:var(--color-warning-500-zidhub);
      --color-border-divider-interactive-default-8k07mh:var(--color-neutral-300-08wi6k);
      --color-border-tabs-divider-y4z8fk:var(--color-neutral-650-miik4f);
      --color-border-tutorial-kaooc2:var(--color-neutral-650-miik4f);
      --color-foreground-control-default-z8tr7i:var(--color-neutral-950-lxybh8);
      --color-foreground-control-disabled-6vf647:var(--color-neutral-850-3f0gro);
      --color-foreground-control-read-only-dtlpre:var(--color-neutral-450-kn0235);
      --color-text-accent-uvfi4k:var(--color-primary-400-n8h4bx);
      --color-text-body-default-gtm97i:var(--color-neutral-350-dq6kfr);
      --color-text-body-secondary-y6dr4d:var(--color-neutral-350-dq6kfr);
      --color-text-breadcrumb-current-mmrid5:var(--color-neutral-500-8van0b);
      --color-text-breadcrumb-icon-mh2txm:var(--color-text-interactive-disabled-bhh1zo);
      --color-text-button-normal-active-fm6d53:var(--color-primary-300-5q65ox);
      --color-text-toggle-button-normal-pressed-vivff6:var(--color-primary-300-5q65ox);
      --color-text-button-normal-default-t865au:var(--color-primary-400-n8h4bx);
      --color-text-button-normal-hover-20c0ob:var(--color-primary-300-5q65ox);
      --color-text-button-primary-active-dkwkja:var(--color-neutral-950-lxybh8);
      --color-text-button-primary-default-2i01k6:var(--color-neutral-950-lxybh8);
      --color-text-button-primary-hover-xtd6ag:var(--color-neutral-950-lxybh8);
      --color-text-calendar-month-357o43:var(--color-neutral-450-kn0235);
      --color-text-code-editor-gutter-active-line-bnbbsi:var(--color-neutral-950-lxybh8);
      --color-text-code-editor-gutter-default-vvwxve:var(--color-neutral-300-08wi6k);
      --color-text-code-editor-status-bar-disabled-4npkr3:var(--color-neutral-600-fln1ww);
      --color-text-code-editor-tab-button-error-hz2irc:var(--color-neutral-950-lxybh8);
      --color-text-column-header-wyzs6v:var(--color-neutral-400-wtst55);
      --color-text-counter-q4zq3v:var(--color-neutral-450-kn0235);
      --color-text-disabled-y4dmv3:var(--color-neutral-600-fln1ww);
      --color-text-disabled-inline-edit-hrexz1:var(--color-neutral-400-wtst55);
      --color-text-dropdown-item-default-zani00:var(--color-neutral-300-08wi6k);
      --color-text-dropdown-item-filter-match-73jeqe:var(--color-primary-300-5q65ox);
      --color-text-dropdown-item-highlighted-q6vxih:var(--color-neutral-250-vs1is4);
      --color-text-dropdown-item-secondary-hover-rwb7km:var(--color-neutral-300-08wi6k);
      --color-text-empty-68xc4n:var(--color-neutral-300-08wi6k);
      --color-text-expandable-section-default-aqjbq3:var(--color-neutral-300-08wi6k);
      --color-text-form-default-jsw02x:var(--color-neutral-300-08wi6k);
      --color-text-form-secondary-t0glp7:var(--color-neutral-450-kn0235);
      --color-text-group-label-0wronh:var(--color-neutral-350-dq6kfr);
      --color-text-label-gen-ai-s3390v:var(--color-purple-400-o7fr4k);
      --color-text-heading-default-pn83b8:var(--color-neutral-250-vs1is4);
      --color-text-heading-secondary-su1acg:var(--color-neutral-450-kn0235);
      --color-text-icon-subtle-7e5fex:var(--color-neutral-400-wtst55);
      --color-text-input-disabled-as3mmb:var(--color-neutral-600-fln1ww);
      --color-text-input-placeholder-i4i8dv:var(--color-neutral-450-kn0235);
      --color-text-interactive-active-fedaa8:var(--color-neutral-100-gk3lvf);
      --color-text-interactive-default-1o1pl2:var(--color-neutral-300-08wi6k);
      --color-text-interactive-disabled-bhh1zo:var(--color-neutral-600-fln1ww);
      --color-text-interactive-hover-j5y3wx:var(--color-neutral-100-gk3lvf);
      --color-text-toggle-button-icon-pressed-nbnm5x:var(--color-neutral-100-gk3lvf);
      --color-text-inverted-my1sxo:var(--color-neutral-950-lxybh8);
      --color-text-layout-toggle-active-4v3fva:var(--color-neutral-850-3f0gro);
      --color-text-layout-toggle-hover-j9h8pw:var(--color-primary-400-n8h4bx);
      --color-text-layout-toggle-selected-4t49fq:var(--color-neutral-950-lxybh8);
      --color-text-link-default-rhby5q:var(--color-primary-400-n8h4bx);
      --color-text-link-hover-br6snu:var(--color-primary-300-5q65ox);
      --color-text-pagination-page-number-default-jqmmw0:var(--color-neutral-400-wtst55);
      --color-text-segment-active-ul57kp:var(--color-neutral-950-lxybh8);
      --color-text-segment-default-5r4jz0:var(--color-neutral-300-08wi6k);
      --color-text-small-vk4o1c:var(--color-neutral-450-kn0235);
      --color-text-status-error-ak9yp5:var(--color-error-400-c0knb8);
      --color-text-status-inactive-tg9r8q:var(--color-neutral-450-kn0235);
      --color-text-status-info-c3q8b6:var(--color-info-400-674xac);
      --color-text-status-success-9wcobb:var(--color-success-500-hhxb4g);
      --color-text-status-warning-avkj4w:var(--color-warning-500-zidhub);
      --color-text-top-navigation-title-kiop92:var(--color-neutral-100-gk3lvf);
      --color-board-placeholder-active-3nv7j5:var(--color-neutral-600-fln1ww);
      --color-board-placeholder-hover-1hv3br:var(--color-primary-600-1lcy1k);
      --color-drag-placeholder-active-7dewab:var(--color-neutral-600-fln1ww);
      --color-drag-placeholder-hover-guvi5d:var(--color-primary-600-1lcy1k);
      --color-dropzone-background-default-ia1ya0:var(--color-neutral-850-3f0gro);
      --color-dropzone-background-hover-j9ea7e:var(--color-primary-1000-7umopx);
      --color-dropzone-text-default-m7ucyv:var(--color-neutral-350-dq6kfr);
      --color-dropzone-text-hover-yjnvhw:var(--color-neutral-350-dq6kfr);
      --color-dropzone-border-default-lohkzd:var(--color-neutral-600-fln1ww);
      --color-dropzone-border-hover-ejc85p:var(--color-primary-300-5q65ox);
      --color-gap-global-drawer-w5yxw2:var(--color-neutral-950-lxybh8);
      --color-tree-view-connector-line-821trc:var(--color-neutral-300-08wi6k);
      --color-background-action-card-default-t3yctp:var(--color-neutral-850-3f0gro);
      --color-background-action-card-hover-h3wt1z:var(--color-neutral-800-t7j5ap);
      --color-background-action-card-active-usmbya:var(--color-neutral-700-qw8ats);
      --color-border-action-card-default-n2zyy4:var(--color-primary-400-n8h4bx);
      --color-border-action-card-hover-rdbsmb:var(--color-primary-300-5q65ox);
      --color-border-action-card-active-xscx2q:var(--color-primary-300-5q65ox);
      --color-border-action-card-disabled-7v7a0x:var(--color-neutral-600-fln1ww);
      --color-background-action-card-disabled-tyaaz1:var(--color-neutral-850-3f0gro);
      --color-icon-action-card-default-i2lc96:var(--color-primary-400-n8h4bx);
      --color-icon-action-card-hover-9b7foc:var(--color-primary-300-5q65ox);
      --color-icon-action-card-active-ojxwnl:var(--color-primary-300-5q65ox);
      --color-icon-action-card-disabled-l1ahot:var(--color-neutral-600-fln1ww);
      --color-background-skeleton-wytrx7:var(--color-neutral-600-fln1ww);
      --color-background-skeleton-wave-2q57ya:var(--color-neutral-700-qw8ats);
      --color-background-code-view-l2nfun:#282c34;
      --color-background-visual-accent-red-bit8yt:rgba(255, 61, 61, 0.2);
      --color-background-visual-accent-yellow-qsxu4s:rgba(251, 211, 50, 0.2);
      --color-background-visual-accent-indigo-edos35:rgba(92, 127, 255, 0.2);
      --color-background-visual-accent-green-r91q20:rgba(43, 181, 52, 0.2);
      --color-background-visual-accent-orange-q2umnc:rgba(255, 75, 20, 0.2);
      --color-background-visual-accent-purple-kq93ng:rgba(173, 92, 255, 0.2);
      --color-background-visual-accent-lime-j1xkep:rgba(49, 184, 0, 0.2);
      --color-background-visual-accent-grey-ojj5z6:var(--color-neutral-700-qw8ats);
      --color-background-visual-accent-teal-8hzzqm:rgba(0, 173, 162, 0.2);
      --color-background-visual-accent-blue-hn33k0:rgba(0, 153, 255, 0.2);
      --color-background-visual-accent-violet-2mvriz:rgba(133, 117, 255, 0.2);
      --color-background-visual-accent-magenta-goqypd:rgba(255, 26, 224, 0.2);
      --color-background-visual-accent-pink-8ha8b6:rgba(255, 51, 153, 0.2);
      --color-background-visual-accent-amber-fvrvm3:rgba(250, 111, 0, 0.2);
      --color-text-visual-accent-red-onxk95:var(--color-error-400-c0knb8);
      --color-text-visual-accent-yellow-sx6w4g:var(--color-warning-200-ssqjgd);
      --color-text-visual-accent-indigo-u9dybt:var(--color-info-300-q9xd1l);
      --color-text-visual-accent-green-bmtqm3:var(--color-success-200-3vtc6u);
      --color-text-visual-accent-orange-wr2zkf:#ff997a;
      --color-text-visual-accent-purple-3hhab5:#d4a8ff;
      --color-text-visual-accent-lime-of82ws:#acff2e;
      --color-text-visual-accent-grey-o560dq:var(--color-neutral-300-08wi6k);
      --color-text-visual-accent-teal-zh5vuh:#00f5e4;
      --color-text-visual-accent-blue-qq3miy:#75cfff;
      --color-text-visual-accent-violet-t426e9:#b2a8ff;
      --color-text-visual-accent-magenta-416j2z:#ff57e9;
      --color-text-visual-accent-pink-bj4hom:#ff99cc;
      --color-text-visual-accent-amber-l4myqa:#ffbb45;
      --shadow-container-53ltfv:0px 1px 8px 2px rgba(0, 7, 22, 0.6);
      --shadow-container-active-ypjjoc:0px 1px 1px 1px #192534, 0px 6px 36px #00040c;
      --shadow-dropdown-isf0w4:0px 4px 20px 1px rgba(0, 4, 12, 1);
      --shadow-flash-sticky-k69vye:0px 4px 8px rgba(0, 7, 22, 0.5);
      --shadow-panel-vk7iea:0px 0px 0px 1px #414d5c;
      --shadow-panel-toggle-qddz27:0px 6px 12px 1px rgba(0, 7, 22, 1);
      --shadow-split-bottom-vlyulf:0px -36px 36px -36px rgba(0, 7, 22, 1);
      --shadow-split-side-nyajix:-1px 0px 1px 0px #192534, -36px 6px 36px -36px rgba(0, 7, 22, 1);
      --shadow-sticky-lolw8j:0px 4px 8px 1px rgba(0, 7, 22, 0.5);
      --shadow-sticky-embedded-jmny8n:0px 2px 0px 0px #414d5c, 0px 16px 16px -12px rgba(0, 7, 22, 1);
      --shadow-sticky-column-first-trcd2o:0px 4px 8px 1px rgba(0, 7, 22, 0.5);
      --shadow-sticky-column-last-qgh697:0px 4px 8px 1px rgba(0, 7, 22, 0.5);
    }
  }
  .awsui-compact-mode:not(#\9) {
    --size-vertical-input-p1d7xx:28px;
    --size-vertical-panel-icon-offset-z959cw:13px;
    --size-side-navigation-item-height-lokap3:24px;
    --size-side-navigation-item-collapsed-oesjea:28px;
    --space-field-vertical-vm99qz:3px;
    --space-button-icon-only-horizontal-i85hxi:var(--space-xxs-hwfkai);
    --space-card-horizontal-embedded-sasxhu:10px;
    --space-card-vertical-embedded-30pnhg:var(--space-xs-ymlm0b);
    --space-dark-header-overlap-distance-ld45ap:32px;
    --space-grid-gutter-whc3jp:var(--space-m-dsumyt);
    --space-table-header-focus-outline-gutter-ymwujm:-1px;
    --space-tile-gutter-bi2bdv:var(--space-m-dsumyt);
    --space-scaled-2x-xxs-e79hr1:var(--space-none-xk6qzf);
    --space-scaled-2x-m-4euqsk:var(--space-xs-ymlm0b);
    --space-scaled-2x-l-u5ida5:var(--space-s-tvghoh);
    --space-scaled-2x-xl-he48nr:var(--space-m-dsumyt);
    --space-scaled-2x-xxxl-bxyvwl:var(--space-xl-jfy3x4);
    --space-scaled-xxxs-oo06c7:var(--space-none-xk6qzf);
    --space-scaled-xxs-pfm1nx:var(--space-xxxs-pajhad);
    --space-scaled-xs-xwoogq:var(--space-xxs-hwfkai);
    --space-scaled-s-8ozaad:var(--space-xs-ymlm0b);
    --space-scaled-m-m892r9:var(--space-s-tvghoh);
    --space-scaled-l-sej05l:var(--space-m-dsumyt);
    --space-scaled-xl-dunxp5:var(--space-l-2ud1p3);
    --space-scaled-xxl-6wgq96:var(--space-xl-jfy3x4);
    --space-scaled-xxxl-hwoy7j:var(--space-xxl-32srm4);
    --space-alert-vertical-dlp5wr:var(--space-flashbar-vertical-th71op);
    --space-button-horizontal-k0c786:var(--space-scaled-l-sej05l);
    --space-button-vertical-xaxp6x:var(--space-scaled-xxs-pfm1nx);
    --space-token-vertical-m3oh2a:var(--space-scaled-xxs-pfm1nx);
    --space-button-modal-dismiss-vertical-vqfxjd:var(--space-scaled-xxxs-oo06c7);
    --space-card-vertical-default-e40tif:var(--space-scaled-m-m892r9);
    --space-item-card-horizontal-embedded-e0vef5:var(--space-card-horizontal-embedded-sasxhu);
    --space-item-card-vertical-default-ppqfu4:var(--space-card-vertical-default-e40tif);
    --space-item-card-vertical-embedded-zuozef:var(--space-card-vertical-embedded-30pnhg);
    --space-container-header-bottom-2taq8v:var(--space-scaled-xs-xwoogq);
    --space-content-header-padding-bottom-rvy5xz:var(--space-scaled-m-m892r9);
    --space-expandable-section-icon-offset-top-cntyn8:var(--space-scaled-2x-xxs-e79hr1);
    --space-flashbar-vertical-th71op:var(--space-scaled-xs-xwoogq);
    --space-layout-content-bottom-zeb1g9:var(--space-scaled-2x-xxxl-bxyvwl);
    --space-layout-content-horizontal-buc0zz:var(--space-scaled-2x-xl-he48nr);
    --space-modal-content-bottom-nl6ceq:var(--space-scaled-2x-m-4euqsk);
    --space-panel-content-bottom-24c6lu:var(--space-scaled-xxxl-hwoy7j);
    --space-panel-content-top-qvd1dr:var(--space-scaled-l-sej05l);
    --space-panel-header-vertical-ckfgmy:var(--space-scaled-l-sej05l);
    --space-panel-side-right-8wwirc:var(--space-scaled-xl-dunxp5);
    --space-panel-split-top-3u4vky:var(--space-scaled-l-sej05l);
    --space-panel-split-bottom-ir16d7:var(--space-scaled-l-sej05l);
    --space-tabs-content-top-ju6qox:var(--space-scaled-s-8ozaad);
    --space-tabs-vertical-3qxuiu:var(--space-scaled-xxs-pfm1nx);
    --space-action-card-horizontal-embedded-pb8pj4:var(--space-card-horizontal-embedded-sasxhu);
    --space-action-card-vertical-default-zqb3v3:var(--space-card-vertical-default-e40tif);
    --space-action-card-vertical-embedded-f1rm8a:var(--space-card-vertical-embedded-30pnhg);
    --space-action-card-description-padding-top-qw1sd7:var(--space-scaled-xxs-pfm1nx);
  }
  .awsui-motion-disabled:not(#\9) {
    --motion-duration-extra-slow-29bqym:0ms;
    --motion-duration-fast-unntf6:0ms;
    --motion-duration-moderate-c9utmg:0ms;
    --motion-duration-refresh-only-fast-zfibh6:0ms;
    --motion-duration-refresh-only-medium-5rbn3k:0ms;
    --motion-duration-refresh-only-slow-ugjy90:0ms;
    --motion-duration-avatar-gen-ai-gradient-84si5n:0ms;
    --motion-duration-avatar-loading-dots-1xxvis:0ms;
    --motion-duration-slow-zji5vl:0ms;
    --motion-duration-rotate-180-cxi9g7:var(--motion-duration-moderate-c9utmg);
    --motion-duration-rotate-90-lyzb0k:var(--motion-duration-moderate-c9utmg);
    --motion-duration-show-paced-otsjh8:var(--motion-duration-slow-zji5vl);
    --motion-duration-show-quick-tyvnyw:var(--motion-duration-moderate-c9utmg);
    --motion-duration-transition-quick-mcm2y0:var(--motion-duration-fast-unntf6);
    --motion-duration-transition-show-paced-t8d1os:var(--motion-duration-slow-zji5vl);
    --motion-duration-transition-show-quick-5jnnjz:var(--motion-duration-fast-unntf6);
    --motion-duration-responsive-mehora:var(--motion-duration-refresh-only-fast-zfibh6);
    --motion-duration-expressive-cbdcwy:var(--motion-duration-refresh-only-medium-5rbn3k);
    --motion-duration-complex-tbdo30:var(--motion-duration-refresh-only-slow-ugjy90);
    --motion-duration-tooltip-enter-8e7aex:var(--motion-duration-refresh-only-fast-zfibh6);
    --motion-duration-expandable-content-enter-kqyuuj:var(--motion-duration-show-paced-otsjh8);
  }
  .awsui-context-compact-table:not(#\9) {
    --size-vertical-input-p1d7xx:28px;
    --space-scaled-xxxs-oo06c7:var(--space-none-xk6qzf);
    --space-scaled-xxs-pfm1nx:var(--space-xxxs-pajhad);
    --space-scaled-xs-xwoogq:var(--space-xxs-hwfkai);
    --space-scaled-s-8ozaad:var(--space-xs-ymlm0b);
    --space-scaled-m-m892r9:var(--space-s-tvghoh);
    --space-scaled-l-sej05l:var(--space-m-dsumyt);
    --space-scaled-xl-dunxp5:var(--space-l-2ud1p3);
    --space-scaled-xxl-6wgq96:var(--space-xl-jfy3x4);
    --space-scaled-xxxl-hwoy7j:var(--space-xxl-32srm4);
    --space-alert-vertical-dlp5wr:var(--space-flashbar-vertical-th71op);
    --space-button-horizontal-k0c786:var(--space-scaled-l-sej05l);
    --space-button-vertical-xaxp6x:var(--space-scaled-xxs-pfm1nx);
    --space-token-vertical-m3oh2a:var(--space-scaled-xxs-pfm1nx);
    --space-button-modal-dismiss-vertical-vqfxjd:var(--space-scaled-xxxs-oo06c7);
    --space-card-vertical-default-e40tif:var(--space-scaled-m-m892r9);
    --space-item-card-vertical-default-ppqfu4:var(--space-card-vertical-default-e40tif);
    --space-container-header-bottom-2taq8v:var(--space-scaled-xs-xwoogq);
    --space-content-header-padding-bottom-rvy5xz:var(--space-scaled-m-m892r9);
    --space-flashbar-vertical-th71op:var(--space-scaled-xs-xwoogq);
    --space-panel-content-bottom-24c6lu:var(--space-scaled-xxxl-hwoy7j);
    --space-panel-content-top-qvd1dr:var(--space-scaled-l-sej05l);
    --space-panel-header-vertical-ckfgmy:var(--space-scaled-l-sej05l);
    --space-panel-side-right-8wwirc:var(--space-scaled-xl-dunxp5);
    --space-panel-split-top-3u4vky:var(--space-scaled-l-sej05l);
    --space-panel-split-bottom-ir16d7:var(--space-scaled-l-sej05l);
    --space-tabs-content-top-ju6qox:var(--space-scaled-s-8ozaad);
    --space-tabs-vertical-3qxuiu:var(--space-scaled-xxs-pfm1nx);
    --space-action-card-vertical-default-zqb3v3:var(--space-card-vertical-default-e40tif);
    --space-action-card-description-padding-top-qw1sd7:var(--space-scaled-xxs-pfm1nx);
  }
  .awsui-context-top-navigation:not(#\9) {
    --color-grey-opaque-70-1cfyp2:rgba(15, 20, 26, 0.7);
    --color-grey-transparent-ywq957:rgba(15, 20, 26, 1);
    --color-grey-transparent-heavy-mmz2gv:rgba(15, 20, 26, 1);
    --color-background-badge-icon-eprfkm:var(--color-error-400-c0knb8);
    --color-background-button-link-active-qjigod:var(--color-neutral-700-qw8ats);
    --color-background-button-link-hover-w58lm6:var(--color-neutral-800-t7j5ap);
    --color-background-button-normal-active-zqw8xz:var(--color-neutral-700-qw8ats);
    --color-background-button-normal-default-h5dyi3:var(--color-neutral-850-3f0gro);
    --color-background-button-normal-disabled-3xb191:var(--color-neutral-850-3f0gro);
    --color-background-button-normal-hover-trus5n:var(--color-neutral-800-t7j5ap);
    --color-background-toggle-button-normal-pressed-wu6ges:var(--color-neutral-700-qw8ats);
    --color-background-button-primary-active-mulwvt:var(--color-primary-400-n8h4bx);
    --color-background-button-primary-disabled-d1ggcl:var(--color-neutral-750-pi9qqd);
    --color-background-direction-button-disabled-uad4xk:var(--color-neutral-750-pi9qqd);
    --color-background-calendar-current-date-2c5ip4:var(--color-neutral-700-qw8ats);
    --color-background-cell-shaded-c928js:var(--color-neutral-800-t7j5ap);
    --color-background-code-editor-gutter-active-line-default-eesbr6:var(--color-neutral-500-8van0b);
    --color-background-code-editor-gutter-default-136m47:var(--color-neutral-800-t7j5ap);
    --color-background-code-editor-loading-7grxg2:var(--color-neutral-800-t7j5ap);
    --color-background-code-editor-pane-item-hover-ed635c:var(--color-neutral-700-qw8ats);
    --color-background-code-editor-status-bar-ic28b2:var(--color-neutral-800-t7j5ap);
    --color-background-container-content-78ljyf:var(--color-neutral-850-3f0gro);
    --color-background-container-header-ydavso:var(--color-neutral-850-3f0gro);
    --color-background-control-checked-jwoxtj:var(--color-primary-400-n8h4bx);
    --color-background-control-default-nub6gm:var(--color-neutral-850-3f0gro);
    --color-background-control-disabled-cb50zl:var(--color-neutral-700-qw8ats);
    --color-background-dropdown-item-default-lzrka9:var(--color-neutral-850-3f0gro);
    --color-background-dropdown-item-filter-match-8fnvh3:var(--color-neutral-700-qw8ats);
    --color-background-dropdown-item-hover-wyujnt:var(--color-neutral-900-v0mtoc);
    --color-background-inline-code-967m4q:rgba(255, 255, 255, 0.1);
    --color-background-input-default-bz9w07:var(--color-neutral-850-3f0gro);
    --color-background-input-disabled-cecgeg:var(--color-neutral-800-t7j5ap);
    --color-background-item-selected-pyr5cw:var(--color-primary-1000-7umopx);
    --color-background-layout-main-7z8vaj:var(--color-neutral-850-3f0gro);
    --color-background-layout-panel-hover-kg7nug:var(--color-neutral-700-qw8ats);
    --color-background-layout-toggle-selected-active-7ovd7l:var(--color-primary-400-n8h4bx);
    --color-background-layout-toggle-selected-default-5go4i7:var(--color-primary-400-n8h4bx);
    --color-background-layout-toggle-selected-hover-pt3n9b:var(--color-primary-300-5q65ox);
    --color-background-notification-grey-68rc4b:var(--color-neutral-600-fln1ww);
    --color-background-popover-yxd92v:var(--color-neutral-800-t7j5ap);
    --color-background-progress-bar-value-default-3ddu5u:var(--color-primary-400-n8h4bx);
    --color-background-progress-bar-default-4miz7r:var(--color-neutral-700-qw8ats);
    --color-background-segment-active-nrp5ms:var(--color-primary-400-n8h4bx);
    --color-background-slider-handle-default-8d9sfs:var(--color-primary-400-n8h4bx);
    --color-background-slider-handle-active-trfoqh:var(--color-primary-300-5q65ox);
    --color-background-slider-track-default-lz0len:var(--color-neutral-600-fln1ww);
    --color-background-slider-handle-ring-qvcnj5:var(--color-neutral-850-3f0gro);
    --color-background-status-error-1w6iu4:var(--color-error-1000-ecmudm);
    --color-background-status-info-j2xxem:var(--color-info-1000-s77ok9);
    --color-background-status-success-hm3ak2:var(--color-success-1000-xy1gvq);
    --color-background-status-warning-wceky5:var(--color-warning-1000-65l070);
    --color-background-tiles-disabled-5ikjr0:var(--color-neutral-800-t7j5ap);
    --color-background-toggle-checked-disabled-7t40bu:var(--color-primary-900-a5kqrr);
    --color-background-toggle-default-feiaap:var(--color-neutral-500-8van0b);
    --color-background-chat-bubble-incoming-ykuqvi:var(--color-neutral-950-lxybh8);
    --color-border-button-normal-active-zi2bnn:var(--color-primary-300-5q65ox);
    --color-border-button-normal-default-2yswxv:var(--color-primary-400-n8h4bx);
    --color-border-toggle-button-normal-pressed-ab77je:var(--color-primary-400-n8h4bx);
    --color-border-button-normal-disabled-uit34y:var(--color-neutral-600-fln1ww);
    --color-border-button-normal-hover-167wjl:var(--color-primary-300-5q65ox);
    --color-item-selected-rz6ktw:var(--color-primary-400-n8h4bx);
    --color-border-calendar-grid-selected-focus-ring-t8s8m7:var(--color-neutral-850-3f0gro);
    --color-border-cell-shaded-zttxxa:var(--color-neutral-700-qw8ats);
    --color-border-code-editor-default-8rd3v1:var(--color-neutral-600-fln1ww);
    --color-border-divider-active-ypkld8:var(--color-neutral-100-gk3lvf);
    --color-border-divider-default-0de9c8:var(--color-neutral-650-miik4f);
    --color-border-divider-secondary-46ol9n:var(--color-neutral-750-pi9qqd);
    --color-border-divider-table-group-tut0l3:var(--color-neutral-600-fln1ww);
    --color-border-dropdown-container-gb937i:var(--color-neutral-600-fln1ww);
    --color-border-dropdown-item-hover-07ng6s:var(--color-neutral-600-fln1ww);
    --color-border-input-default-f3bzwh:var(--color-neutral-600-fln1ww);
    --color-border-input-focused-9bkrxq:var(--color-primary-400-n8h4bx);
    --color-border-item-focused-ditkrb:var(--color-primary-400-n8h4bx);
    --color-border-dropdown-item-focused-k9miqq:var(--color-neutral-300-08wi6k);
    --color-border-layout-px1i24:var(--color-neutral-650-miik4f);
    --color-border-segment-default-8mo02x:var(--color-neutral-300-08wi6k);
    --color-border-status-error-vxvfad:var(--color-error-400-c0knb8);
    --color-border-status-info-2zt73n:var(--color-info-400-674xac);
    --color-border-status-success-uk2p7m:var(--color-success-500-hhxb4g);
    --color-border-status-warning-s79l22:var(--color-warning-500-zidhub);
    --color-border-divider-interactive-default-8k07mh:var(--color-neutral-300-08wi6k);
    --color-border-tabs-divider-y4z8fk:var(--color-neutral-650-miik4f);
    --color-border-tutorial-kaooc2:var(--color-neutral-650-miik4f);
    --color-foreground-control-default-z8tr7i:var(--color-neutral-950-lxybh8);
    --color-foreground-control-disabled-6vf647:var(--color-neutral-850-3f0gro);
    --color-foreground-control-read-only-dtlpre:var(--color-neutral-450-kn0235);
    --color-text-accent-uvfi4k:var(--color-primary-400-n8h4bx);
    --color-text-body-default-gtm97i:var(--color-neutral-350-dq6kfr);
    --color-text-body-secondary-y6dr4d:var(--color-neutral-350-dq6kfr);
    --color-text-breadcrumb-current-mmrid5:var(--color-neutral-500-8van0b);
    --color-text-breadcrumb-icon-mh2txm:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-button-normal-active-fm6d53:var(--color-primary-300-5q65ox);
    --color-text-toggle-button-normal-pressed-vivff6:var(--color-primary-300-5q65ox);
    --color-text-button-normal-default-t865au:var(--color-primary-400-n8h4bx);
    --color-text-button-normal-hover-20c0ob:var(--color-primary-300-5q65ox);
    --color-text-button-primary-active-dkwkja:var(--color-neutral-950-lxybh8);
    --color-text-button-primary-default-2i01k6:var(--color-neutral-950-lxybh8);
    --color-text-button-primary-hover-xtd6ag:var(--color-neutral-950-lxybh8);
    --color-text-calendar-month-357o43:var(--color-neutral-450-kn0235);
    --color-text-code-editor-gutter-active-line-bnbbsi:var(--color-neutral-950-lxybh8);
    --color-text-code-editor-gutter-default-vvwxve:var(--color-neutral-300-08wi6k);
    --color-text-code-editor-status-bar-disabled-4npkr3:var(--color-neutral-600-fln1ww);
    --color-text-code-editor-tab-button-error-hz2irc:var(--color-neutral-950-lxybh8);
    --color-text-column-header-wyzs6v:var(--color-neutral-400-wtst55);
    --color-text-counter-q4zq3v:var(--color-neutral-450-kn0235);
    --color-text-disabled-y4dmv3:var(--color-neutral-600-fln1ww);
    --color-text-disabled-inline-edit-hrexz1:var(--color-neutral-400-wtst55);
    --color-text-dropdown-item-default-zani00:var(--color-neutral-300-08wi6k);
    --color-text-dropdown-item-filter-match-73jeqe:var(--color-primary-300-5q65ox);
    --color-text-dropdown-item-highlighted-q6vxih:var(--color-neutral-250-vs1is4);
    --color-text-dropdown-item-secondary-hover-rwb7km:var(--color-neutral-300-08wi6k);
    --color-text-empty-68xc4n:var(--color-neutral-300-08wi6k);
    --color-text-expandable-section-default-aqjbq3:var(--color-neutral-300-08wi6k);
    --color-text-form-default-jsw02x:var(--color-neutral-300-08wi6k);
    --color-text-form-secondary-t0glp7:var(--color-neutral-450-kn0235);
    --color-text-group-label-0wronh:var(--color-neutral-350-dq6kfr);
    --color-text-label-gen-ai-s3390v:var(--color-purple-400-o7fr4k);
    --color-text-heading-default-pn83b8:var(--color-neutral-250-vs1is4);
    --color-text-heading-secondary-su1acg:var(--color-neutral-450-kn0235);
    --color-text-icon-subtle-7e5fex:var(--color-neutral-400-wtst55);
    --color-text-input-disabled-as3mmb:var(--color-neutral-600-fln1ww);
    --color-text-input-placeholder-i4i8dv:var(--color-neutral-450-kn0235);
    --color-text-interactive-active-fedaa8:var(--color-neutral-100-gk3lvf);
    --color-text-interactive-default-1o1pl2:var(--color-neutral-300-08wi6k);
    --color-text-interactive-disabled-bhh1zo:var(--color-neutral-600-fln1ww);
    --color-text-interactive-hover-j5y3wx:var(--color-neutral-100-gk3lvf);
    --color-text-toggle-button-icon-pressed-nbnm5x:var(--color-neutral-100-gk3lvf);
    --color-text-inverted-my1sxo:var(--color-neutral-950-lxybh8);
    --color-text-layout-toggle-active-4v3fva:var(--color-neutral-850-3f0gro);
    --color-text-layout-toggle-hover-j9h8pw:var(--color-primary-400-n8h4bx);
    --color-text-layout-toggle-selected-4t49fq:var(--color-neutral-950-lxybh8);
    --color-text-link-default-rhby5q:var(--color-primary-400-n8h4bx);
    --color-text-link-hover-br6snu:var(--color-primary-300-5q65ox);
    --color-text-pagination-page-number-default-jqmmw0:var(--color-neutral-400-wtst55);
    --color-text-segment-active-ul57kp:var(--color-neutral-950-lxybh8);
    --color-text-segment-default-5r4jz0:var(--color-neutral-300-08wi6k);
    --color-text-small-vk4o1c:var(--color-neutral-450-kn0235);
    --color-text-status-error-ak9yp5:var(--color-error-400-c0knb8);
    --color-text-status-inactive-tg9r8q:var(--color-neutral-450-kn0235);
    --color-text-status-info-c3q8b6:var(--color-info-400-674xac);
    --color-text-status-success-9wcobb:var(--color-success-500-hhxb4g);
    --color-text-status-warning-avkj4w:var(--color-warning-500-zidhub);
    --color-text-top-navigation-title-kiop92:var(--color-neutral-100-gk3lvf);
    --color-board-placeholder-active-3nv7j5:var(--color-neutral-600-fln1ww);
    --color-board-placeholder-hover-1hv3br:var(--color-primary-600-1lcy1k);
    --color-drag-placeholder-active-7dewab:var(--color-neutral-600-fln1ww);
    --color-drag-placeholder-hover-guvi5d:var(--color-primary-600-1lcy1k);
    --color-dropzone-background-default-ia1ya0:var(--color-neutral-850-3f0gro);
    --color-dropzone-background-hover-j9ea7e:var(--color-primary-1000-7umopx);
    --color-dropzone-text-default-m7ucyv:var(--color-neutral-350-dq6kfr);
    --color-dropzone-text-hover-yjnvhw:var(--color-neutral-350-dq6kfr);
    --color-dropzone-border-default-lohkzd:var(--color-neutral-600-fln1ww);
    --color-dropzone-border-hover-ejc85p:var(--color-primary-300-5q65ox);
    --color-gap-global-drawer-w5yxw2:var(--color-neutral-950-lxybh8);
    --color-tree-view-connector-line-821trc:var(--color-neutral-300-08wi6k);
    --color-background-action-card-default-t3yctp:var(--color-neutral-850-3f0gro);
    --color-background-action-card-hover-h3wt1z:var(--color-neutral-800-t7j5ap);
    --color-background-action-card-active-usmbya:var(--color-neutral-700-qw8ats);
    --color-border-action-card-default-n2zyy4:var(--color-primary-400-n8h4bx);
    --color-border-action-card-hover-rdbsmb:var(--color-primary-300-5q65ox);
    --color-border-action-card-active-xscx2q:var(--color-primary-300-5q65ox);
    --color-border-action-card-disabled-7v7a0x:var(--color-neutral-600-fln1ww);
    --color-background-action-card-disabled-tyaaz1:var(--color-neutral-850-3f0gro);
    --color-icon-action-card-default-i2lc96:var(--color-primary-400-n8h4bx);
    --color-icon-action-card-hover-9b7foc:var(--color-primary-300-5q65ox);
    --color-icon-action-card-active-ojxwnl:var(--color-primary-300-5q65ox);
    --color-icon-action-card-disabled-l1ahot:var(--color-neutral-600-fln1ww);
    --color-background-skeleton-wytrx7:var(--color-neutral-600-fln1ww);
    --color-background-skeleton-wave-2q57ya:var(--color-neutral-700-qw8ats);
    --color-background-code-view-l2nfun:#282c34;
    --color-background-visual-accent-red-bit8yt:rgba(255, 61, 61, 0.2);
    --color-background-visual-accent-yellow-qsxu4s:rgba(251, 211, 50, 0.2);
    --color-background-visual-accent-indigo-edos35:rgba(92, 127, 255, 0.2);
    --color-background-visual-accent-green-r91q20:rgba(43, 181, 52, 0.2);
    --color-background-visual-accent-orange-q2umnc:rgba(255, 75, 20, 0.2);
    --color-background-visual-accent-purple-kq93ng:rgba(173, 92, 255, 0.2);
    --color-background-visual-accent-lime-j1xkep:rgba(49, 184, 0, 0.2);
    --color-background-visual-accent-grey-ojj5z6:var(--color-neutral-700-qw8ats);
    --color-background-visual-accent-teal-8hzzqm:rgba(0, 173, 162, 0.2);
    --color-background-visual-accent-blue-hn33k0:rgba(0, 153, 255, 0.2);
    --color-background-visual-accent-violet-2mvriz:rgba(133, 117, 255, 0.2);
    --color-background-visual-accent-magenta-goqypd:rgba(255, 26, 224, 0.2);
    --color-background-visual-accent-pink-8ha8b6:rgba(255, 51, 153, 0.2);
    --color-background-visual-accent-amber-fvrvm3:rgba(250, 111, 0, 0.2);
    --color-text-visual-accent-red-onxk95:var(--color-error-400-c0knb8);
    --color-text-visual-accent-yellow-sx6w4g:var(--color-warning-200-ssqjgd);
    --color-text-visual-accent-indigo-u9dybt:var(--color-info-300-q9xd1l);
    --color-text-visual-accent-green-bmtqm3:var(--color-success-200-3vtc6u);
    --color-text-visual-accent-orange-wr2zkf:#ff997a;
    --color-text-visual-accent-purple-3hhab5:#d4a8ff;
    --color-text-visual-accent-lime-of82ws:#acff2e;
    --color-text-visual-accent-grey-o560dq:var(--color-neutral-300-08wi6k);
    --color-text-visual-accent-teal-zh5vuh:#00f5e4;
    --color-text-visual-accent-blue-qq3miy:#75cfff;
    --color-text-visual-accent-violet-t426e9:#b2a8ff;
    --color-text-visual-accent-magenta-416j2z:#ff57e9;
    --color-text-visual-accent-pink-bj4hom:#ff99cc;
    --color-text-visual-accent-amber-l4myqa:#ffbb45;
    --color-background-toggle-button-normal-default-sbu4j1:var(--color-background-button-normal-default-h5dyi3);
    --color-background-toggle-button-normal-hover-ees410:var(--color-background-button-normal-hover-trus5n);
    --color-background-button-primary-default-emr769:var(--color-border-button-normal-default-2yswxv);
    --color-background-button-primary-hover-979qcq:var(--color-border-button-normal-hover-167wjl);
    --color-text-direction-button-disabled-t86kvg:var(--color-text-interactive-disabled-bhh1zo);
    --color-background-code-editor-gutter-active-line-error-mi7l0o:var(--color-text-status-error-ak9yp5);
    --color-background-card-n4q1vl:var(--color-background-container-content-78ljyf);
    --color-background-item-card-aw1yv6:var(--color-background-card-n4q1vl);
    --color-background-dropdown-item-selected-cnovvw:var(--color-background-item-selected-pyr5cw);
    --color-background-side-navigation-item-active-collapsed-jczh49:var(--color-background-control-checked-jwoxtj);
    --color-background-side-navigation-item-icon-hover-e5eh06:var(--color-background-item-selected-pyr5cw);
    --color-background-drawer-715dba:var(--color-background-layout-panel-content-89bszq);
    --color-background-backdrop-czudyv:var(--color-grey-opaque-70-1cfyp2);
    --color-background-drawer-backdrop-l5bgyg:var(--color-background-backdrop-czudyv);
    --color-background-layout-panel-9avdix:var(--color-background-container-content-78ljyf);
    --color-background-layout-panel-content-89bszq:var(--color-background-container-content-78ljyf);
    --color-background-layout-toolbar-tpblk7:var(--color-background-layout-panel-content-89bszq);
    --color-background-modal-overlay-mdne87:var(--color-background-backdrop-czudyv);
    --color-background-progress-bar-value-flash-torruv:var(--color-background-progress-bar-value-default-3ddu5u);
    --color-background-progress-bar-flash-hkoq30:var(--color-background-progress-bar-default-4miz7r);
    --color-background-segment-default-lypnes:var(--color-background-button-normal-default-h5dyi3);
    --color-background-segment-disabled-2aqenf:var(--color-background-button-normal-disabled-3xb191);
    --color-background-segment-hover-sx6uk4:var(--color-background-button-normal-hover-trus5n);
    --color-background-segment-wrapper-nyb7yz:var(--color-background-container-content-78ljyf);
    --color-background-slider-range-default-7tonn0:var(--color-background-slider-handle-default-8d9sfs);
    --color-background-slider-range-active-xs8yay:var(--color-background-slider-handle-active-trfoqh);
    --color-background-slider-handle-error-default-c9tcd7:var(--color-text-status-error-ak9yp5);
    --color-background-slider-handle-error-active-v3fwp3:var(--color-text-status-error-ak9yp5);
    --color-background-slider-handle-warning-default-a3cgsn:var(--color-text-status-warning-avkj4w);
    --color-background-slider-handle-warning-active-1fmzqb:var(--color-text-status-warning-avkj4w);
    --color-background-slider-range-error-default-92xaux:var(--color-text-status-error-ak9yp5);
    --color-background-slider-range-error-active-y18v8u:var(--color-text-status-error-ak9yp5);
    --color-background-slider-range-warning-default-na240j:var(--color-text-status-warning-avkj4w);
    --color-background-slider-range-warning-active-sbp4ci:var(--color-text-status-warning-avkj4w);
    --color-background-alert-error-v2rgf2:var(--color-background-status-error-1w6iu4);
    --color-background-alert-info-8je547:var(--color-background-status-info-j2xxem);
    --color-background-alert-success-xqn40g:var(--color-background-status-success-hm3ak2);
    --color-background-alert-warning-xizfdk:var(--color-background-status-warning-wceky5);
    --color-background-dialog-kwlmup:var(--color-background-status-info-j2xxem);
    --color-background-table-header-unjmda:var(--color-background-container-header-ydavso);
    --color-text-chat-bubble-outgoing-nuggry:var(--color-text-body-default-gtm97i);
    --color-text-chat-bubble-incoming-ycnens:var(--color-text-body-default-gtm97i);
    --color-border-toggle-button-normal-default-d49akh:var(--color-border-button-normal-default-2yswxv);
    --color-border-toggle-button-normal-hover-za8uya:var(--color-border-button-normal-hover-167wjl);
    --color-border-button-primary-active-lupau4:var(--color-background-button-primary-active-mulwvt);
    --color-border-button-primary-default-f7dp5z:var(--color-background-button-primary-default-emr769);
    --color-border-button-primary-disabled-5avtf1:var(--color-background-button-primary-disabled-d1ggcl);
    --color-border-button-primary-hover-38r9qu:var(--color-background-button-primary-hover-979qcq);
    --color-text-side-navigation-item-active-40gvpw:var(--color-text-accent-uvfi4k);
    --color-text-side-navigation-item-active-collapsed-621hfg:var(--color-text-inverted-my1sxo);
    --color-text-side-navigation-item-default-u0ig7c:var(--color-text-body-secondary-y6dr4d);
    --color-border-code-editor-pane-item-hover-u4wk12:var(--color-border-dropdown-item-hover-07ng6s);
    --color-border-card-cgsfxm:var(--color-border-divider-default-0de9c8);
    --color-border-card-highlighted-47ojzl:var(--color-border-item-selected-63a3p8);
    --color-border-item-card-7kgzg2:var(--color-border-card-cgsfxm);
    --color-border-item-card-highlighted-m2lkyj:var(--color-border-card-highlighted-47ojzl);
    --color-border-control-checked-o1zph2:var(--color-background-control-checked-jwoxtj);
    --color-border-control-disabled-dqtwtk:var(--color-background-control-disabled-cb50zl);
    --color-border-divider-panel-bottom-fnfdhf:var(--color-border-divider-default-0de9c8);
    --color-border-divider-panel-side-9oapph:var(--color-border-divider-default-0de9c8);
    --color-border-dropdown-group-0ocu9j:var(--color-border-dropdown-item-default-22wwob);
    --color-border-dropdown-item-default-22wwob:var(--color-border-divider-default-0de9c8);
    --color-border-dropdown-item-selected-3nbye4:var(--color-border-item-selected-63a3p8);
    --color-border-editable-cell-hover-nkpoh5:var(--color-border-dropdown-item-hover-07ng6s);
    --color-border-input-disabled-k518xl:var(--color-background-input-disabled-cecgeg);
    --color-border-item-placeholder-zq3251:var(--color-border-item-selected-63a3p8);
    --color-border-item-selected-63a3p8:var(--color-item-selected-rz6ktw);
    --color-border-layout-side-navigation-mjh43q:var(--color-border-layout-px1i24);
    --color-border-panel-header-j4pvsn:var(--color-border-divider-default-0de9c8);
    --color-border-popover-5yl4uc:var(--color-border-dropdown-container-gb937i);
    --color-border-segment-active-trxbfe:var(--color-border-segment-default-8mo02x);
    --color-border-segment-disabled-8j0zwo:var(--color-border-segment-default-8mo02x);
    --color-border-segment-hover-epoe83:var(--color-border-segment-default-8mo02x);
    --color-border-segment-wrapper-qq00qv:var(--color-border-input-default-f3bzwh);
    --color-border-dialog-3vjyp0:var(--color-border-status-info-2zt73n);
    --color-border-tabs-shadow-l6jxjx:var(--color-grey-transparent-ywq957);
    --color-border-tabs-underline-ueuyon:var(--color-text-accent-uvfi4k);
    --color-border-tiles-disabled-n9fk5o:var(--color-background-tiles-disabled-5ikjr0);
    --color-shadow-default-08gb4j:var(--color-grey-transparent-heavy-mmz2gv);
    --color-text-button-inline-icon-default-gdb4f4:var(--color-text-link-default-rhby5q);
    --color-text-button-inline-icon-disabled-bnn5b7:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-button-inline-icon-hover-sqs5ft:var(--color-text-link-hover-br6snu);
    --color-text-button-inline-link-hover-p1ibm2:var(--color-text-button-normal-hover-20c0ob);
    --color-text-button-icon-hover-ph08st:var(--color-text-interactive-hover-j5y3wx);
    --color-text-link-button-normal-default-vc8ids:var(--color-text-button-normal-default-t865au);
    --color-text-link-button-normal-hover-xk6kwz:var(--color-text-button-normal-hover-20c0ob);
    --color-text-link-button-normal-active-f0yaqx:var(--color-text-button-normal-active-fm6d53);
    --color-text-button-link-active-154jw6:var(--color-text-button-normal-active-fm6d53);
    --color-text-button-link-default-ehnnq5:var(--color-text-button-normal-default-t865au);
    --color-text-button-link-disabled-d3c5rp:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-button-link-hover-1aopta:var(--color-text-button-normal-hover-20c0ob);
    --color-text-calendar-date-hover-qy0tsn:var(--color-text-dropdown-item-default-zani00);
    --color-text-calendar-date-selected-dd6twp:var(--color-background-control-default-nub6gm);
    --color-text-column-sorting-icon-iazyfo:var(--color-text-column-header-wyzs6v);
    --color-text-control-disabled-vh7v3o:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-dropdown-footer-ks7c04:var(--color-text-form-secondary-t0glp7);
    --color-text-dropdown-group-label-8vygj0:var(--color-text-group-label-0wronh);
    --color-text-dropdown-item-dimmed-iy2k20:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-dropdown-item-disabled-pl4fy2:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-dropdown-item-secondary-77b2z6:var(--color-text-form-secondary-t0glp7);
    --color-text-expandable-section-hover-pqmtjd:var(--color-text-accent-uvfi4k);
    --color-text-expandable-section-navigation-icon-default-wh1lig:var(--color-text-interactive-default-1o1pl2);
    --color-border-expandable-section-default-oi0xfr:var(--color-border-divider-default-0de9c8);
    --color-text-form-label-84uan1:var(--color-text-form-default-jsw02x);
    --color-text-input-placeholder-disabled-9zawsz:var(--color-text-input-disabled-as3mmb);
    --color-text-label-tv95tq:var(--color-text-form-label-84uan1);
    --color-text-key-value-pairs-value-xmrgpn:var(--color-text-body-default-gtm97i);
    --color-text-link-secondary-default-6ui3do:var(--color-text-link-default-rhby5q);
    --color-text-link-secondary-hover-oy8eob:var(--color-text-link-hover-br6snu);
    --color-text-link-info-default-mgpk1w:var(--color-text-link-default-rhby5q);
    --color-text-link-info-hover-os951m:var(--color-text-link-hover-br6snu);
    --color-text-alert-default-rwuv9g:var(--color-text-body-default-gtm97i);
    --color-text-pagination-page-number-active-disabled-uj04sc:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-segment-hover-9dj6y6:var(--color-text-button-normal-hover-20c0ob);
    --color-text-flashbar-icon-error-cb5ezy:var(--color-text-status-error-ak9yp5);
    --color-text-flashbar-icon-info-lobe9x:var(--color-text-status-info-c3q8b6);
    --color-text-flashbar-icon-success-tqehsy:var(--color-text-status-success-9wcobb);
    --color-text-flashbar-icon-warning-ojtnxb:var(--color-text-status-warning-avkj4w);
    --color-text-alert-icon-error-tlrirw:var(--color-text-status-error-ak9yp5);
    --color-text-alert-icon-info-rwhxzh:var(--color-text-status-info-c3q8b6);
    --color-text-alert-icon-success-6ptnga:var(--color-text-status-success-9wcobb);
    --color-text-alert-icon-warning-jj09xr:var(--color-text-status-warning-avkj4w);
    --color-text-tutorial-hotspot-default-7f0h47:var(--color-text-link-default-rhby5q);
    --color-text-tutorial-hotspot-hover-jkzh5r:var(--color-text-link-hover-br6snu);
    --color-background-badge-grey-5tl0uy:var(--color-background-notification-grey-68rc4b);
  }
  .awsui-context-content-header:not(#\9) {
    --color-grey-opaque-70-1cfyp2:rgba(15, 20, 26, 0.7);
    --color-grey-transparent-ywq957:rgba(15, 20, 26, 1);
    --color-grey-transparent-heavy-mmz2gv:rgba(15, 20, 26, 1);
    --color-background-badge-icon-eprfkm:var(--color-error-400-c0knb8);
    --color-background-button-link-active-qjigod:var(--color-neutral-700-qw8ats);
    --color-background-button-link-hover-w58lm6:var(--color-neutral-800-t7j5ap);
    --color-background-button-normal-active-zqw8xz:var(--color-neutral-700-qw8ats);
    --color-background-button-normal-default-h5dyi3:var(--color-neutral-950-lxybh8);
    --color-background-button-normal-disabled-3xb191:var(--color-neutral-950-lxybh8);
    --color-background-button-normal-hover-trus5n:var(--color-neutral-800-t7j5ap);
    --color-background-toggle-button-normal-pressed-wu6ges:var(--color-neutral-700-qw8ats);
    --color-background-button-primary-active-mulwvt:var(--color-primary-400-n8h4bx);
    --color-background-button-primary-disabled-d1ggcl:var(--color-neutral-750-pi9qqd);
    --color-background-direction-button-disabled-uad4xk:var(--color-neutral-750-pi9qqd);
    --color-background-calendar-current-date-2c5ip4:var(--color-neutral-700-qw8ats);
    --color-background-cell-shaded-c928js:var(--color-neutral-800-t7j5ap);
    --color-background-code-editor-gutter-active-line-default-eesbr6:var(--color-neutral-500-8van0b);
    --color-background-code-editor-gutter-default-136m47:var(--color-neutral-800-t7j5ap);
    --color-background-code-editor-loading-7grxg2:var(--color-neutral-800-t7j5ap);
    --color-background-code-editor-pane-item-hover-ed635c:var(--color-neutral-700-qw8ats);
    --color-background-code-editor-status-bar-ic28b2:var(--color-neutral-800-t7j5ap);
    --color-background-container-content-78ljyf:var(--color-neutral-850-3f0gro);
    --color-background-container-header-ydavso:var(--color-neutral-850-3f0gro);
    --color-background-control-checked-jwoxtj:var(--color-primary-400-n8h4bx);
    --color-background-control-default-nub6gm:var(--color-neutral-950-lxybh8);
    --color-background-control-disabled-cb50zl:var(--color-neutral-700-qw8ats);
    --color-background-dropdown-item-default-lzrka9:var(--color-neutral-800-t7j5ap);
    --color-background-dropdown-item-filter-match-8fnvh3:var(--color-neutral-700-qw8ats);
    --color-background-dropdown-item-hover-wyujnt:var(--color-neutral-900-v0mtoc);
    --color-background-inline-code-967m4q:rgba(255, 255, 255, 0.1);
    --color-background-input-default-bz9w07:var(--color-neutral-950-lxybh8);
    --color-background-input-disabled-cecgeg:var(--color-neutral-800-t7j5ap);
    --color-background-item-selected-pyr5cw:var(--color-primary-1000-7umopx);
    --color-background-layout-main-7z8vaj:var(--color-neutral-950-lxybh8);
    --color-background-layout-panel-hover-kg7nug:var(--color-neutral-700-qw8ats);
    --color-background-layout-toggle-selected-active-7ovd7l:var(--color-primary-400-n8h4bx);
    --color-background-layout-toggle-selected-default-5go4i7:var(--color-primary-400-n8h4bx);
    --color-background-layout-toggle-selected-hover-pt3n9b:var(--color-primary-300-5q65ox);
    --color-background-notification-grey-68rc4b:var(--color-neutral-600-fln1ww);
    --color-background-popover-yxd92v:var(--color-neutral-800-t7j5ap);
    --color-background-progress-bar-value-default-3ddu5u:var(--color-primary-400-n8h4bx);
    --color-background-progress-bar-default-4miz7r:var(--color-neutral-700-qw8ats);
    --color-background-segment-active-nrp5ms:var(--color-primary-400-n8h4bx);
    --color-background-segment-default-lypnes:var(--color-neutral-950-lxybh8);
    --color-background-segment-disabled-2aqenf:var(--color-neutral-950-lxybh8);
    --color-background-segment-wrapper-nyb7yz:var(--color-neutral-950-lxybh8);
    --color-background-slider-handle-default-8d9sfs:var(--color-primary-400-n8h4bx);
    --color-background-slider-handle-active-trfoqh:var(--color-primary-300-5q65ox);
    --color-background-slider-track-default-lz0len:var(--color-neutral-600-fln1ww);
    --color-background-slider-handle-ring-qvcnj5:var(--color-neutral-850-3f0gro);
    --color-background-status-error-1w6iu4:var(--color-error-1000-ecmudm);
    --color-background-status-info-j2xxem:var(--color-info-1000-s77ok9);
    --color-background-status-success-hm3ak2:var(--color-success-1000-xy1gvq);
    --color-background-status-warning-wceky5:var(--color-warning-1000-65l070);
    --color-background-table-header-unjmda:var(--color-neutral-950-lxybh8);
    --color-background-tiles-disabled-5ikjr0:var(--color-neutral-800-t7j5ap);
    --color-background-toggle-checked-disabled-7t40bu:var(--color-primary-900-a5kqrr);
    --color-background-toggle-default-feiaap:var(--color-neutral-500-8van0b);
    --color-background-chat-bubble-incoming-ykuqvi:var(--color-neutral-950-lxybh8);
    --color-border-button-normal-active-zi2bnn:var(--color-primary-300-5q65ox);
    --color-border-button-normal-default-2yswxv:var(--color-primary-400-n8h4bx);
    --color-border-toggle-button-normal-pressed-ab77je:var(--color-primary-400-n8h4bx);
    --color-border-button-normal-disabled-uit34y:var(--color-neutral-600-fln1ww);
    --color-border-button-normal-hover-167wjl:var(--color-primary-300-5q65ox);
    --color-item-selected-rz6ktw:var(--color-primary-400-n8h4bx);
    --color-border-calendar-grid-selected-focus-ring-t8s8m7:var(--color-neutral-850-3f0gro);
    --color-border-cell-shaded-zttxxa:var(--color-neutral-700-qw8ats);
    --color-border-code-editor-default-8rd3v1:var(--color-neutral-600-fln1ww);
    --color-border-divider-active-ypkld8:var(--color-neutral-100-gk3lvf);
    --color-border-divider-default-0de9c8:var(--color-neutral-650-miik4f);
    --color-border-divider-secondary-46ol9n:var(--color-neutral-750-pi9qqd);
    --color-border-divider-table-group-tut0l3:var(--color-neutral-600-fln1ww);
    --color-border-dropdown-container-gb937i:var(--color-neutral-600-fln1ww);
    --color-border-dropdown-item-hover-07ng6s:var(--color-neutral-600-fln1ww);
    --color-border-input-default-f3bzwh:var(--color-neutral-600-fln1ww);
    --color-border-input-focused-9bkrxq:var(--color-primary-400-n8h4bx);
    --color-border-item-focused-ditkrb:var(--color-primary-400-n8h4bx);
    --color-border-dropdown-item-focused-k9miqq:var(--color-neutral-300-08wi6k);
    --color-border-layout-px1i24:var(--color-neutral-650-miik4f);
    --color-border-segment-default-8mo02x:var(--color-neutral-300-08wi6k);
    --color-border-status-error-vxvfad:var(--color-error-400-c0knb8);
    --color-border-status-info-2zt73n:var(--color-info-400-674xac);
    --color-border-status-success-uk2p7m:var(--color-success-500-hhxb4g);
    --color-border-status-warning-s79l22:var(--color-warning-500-zidhub);
    --color-border-divider-interactive-default-8k07mh:var(--color-neutral-300-08wi6k);
    --color-border-tabs-divider-y4z8fk:var(--color-neutral-650-miik4f);
    --color-border-tutorial-kaooc2:var(--color-neutral-650-miik4f);
    --color-foreground-control-default-z8tr7i:var(--color-neutral-950-lxybh8);
    --color-foreground-control-disabled-6vf647:var(--color-neutral-850-3f0gro);
    --color-foreground-control-read-only-dtlpre:var(--color-neutral-450-kn0235);
    --color-text-accent-uvfi4k:var(--color-primary-400-n8h4bx);
    --color-text-body-default-gtm97i:var(--color-neutral-350-dq6kfr);
    --color-text-body-secondary-y6dr4d:var(--color-neutral-350-dq6kfr);
    --color-text-breadcrumb-current-mmrid5:var(--color-neutral-500-8van0b);
    --color-text-breadcrumb-icon-mh2txm:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-button-normal-active-fm6d53:var(--color-primary-300-5q65ox);
    --color-text-toggle-button-normal-pressed-vivff6:var(--color-primary-300-5q65ox);
    --color-text-button-normal-default-t865au:var(--color-primary-400-n8h4bx);
    --color-text-button-normal-hover-20c0ob:var(--color-primary-300-5q65ox);
    --color-text-button-primary-active-dkwkja:var(--color-neutral-950-lxybh8);
    --color-text-button-primary-default-2i01k6:var(--color-neutral-950-lxybh8);
    --color-text-button-primary-hover-xtd6ag:var(--color-neutral-950-lxybh8);
    --color-text-calendar-month-357o43:var(--color-neutral-450-kn0235);
    --color-text-code-editor-gutter-active-line-bnbbsi:var(--color-neutral-950-lxybh8);
    --color-text-code-editor-gutter-default-vvwxve:var(--color-neutral-300-08wi6k);
    --color-text-code-editor-status-bar-disabled-4npkr3:var(--color-neutral-600-fln1ww);
    --color-text-code-editor-tab-button-error-hz2irc:var(--color-neutral-950-lxybh8);
    --color-text-column-header-wyzs6v:var(--color-neutral-400-wtst55);
    --color-text-counter-q4zq3v:var(--color-neutral-450-kn0235);
    --color-text-disabled-y4dmv3:var(--color-neutral-600-fln1ww);
    --color-text-disabled-inline-edit-hrexz1:var(--color-neutral-400-wtst55);
    --color-text-dropdown-item-default-zani00:var(--color-neutral-300-08wi6k);
    --color-text-dropdown-item-filter-match-73jeqe:var(--color-primary-300-5q65ox);
    --color-text-dropdown-item-highlighted-q6vxih:var(--color-neutral-250-vs1is4);
    --color-text-dropdown-item-secondary-hover-rwb7km:var(--color-neutral-300-08wi6k);
    --color-text-empty-68xc4n:var(--color-neutral-300-08wi6k);
    --color-text-expandable-section-default-aqjbq3:var(--color-neutral-300-08wi6k);
    --color-text-form-default-jsw02x:var(--color-neutral-300-08wi6k);
    --color-text-form-secondary-t0glp7:var(--color-neutral-450-kn0235);
    --color-text-group-label-0wronh:var(--color-neutral-350-dq6kfr);
    --color-text-label-gen-ai-s3390v:var(--color-purple-400-o7fr4k);
    --color-text-heading-default-pn83b8:var(--color-neutral-250-vs1is4);
    --color-text-heading-secondary-su1acg:var(--color-neutral-450-kn0235);
    --color-text-icon-subtle-7e5fex:var(--color-neutral-400-wtst55);
    --color-text-input-disabled-as3mmb:var(--color-neutral-600-fln1ww);
    --color-text-input-placeholder-i4i8dv:var(--color-neutral-450-kn0235);
    --color-text-interactive-active-fedaa8:var(--color-neutral-100-gk3lvf);
    --color-text-interactive-default-1o1pl2:var(--color-neutral-300-08wi6k);
    --color-text-interactive-disabled-bhh1zo:var(--color-neutral-600-fln1ww);
    --color-text-interactive-hover-j5y3wx:var(--color-neutral-100-gk3lvf);
    --color-text-toggle-button-icon-pressed-nbnm5x:var(--color-neutral-100-gk3lvf);
    --color-text-inverted-my1sxo:var(--color-neutral-950-lxybh8);
    --color-text-layout-toggle-active-4v3fva:var(--color-neutral-850-3f0gro);
    --color-text-layout-toggle-hover-j9h8pw:var(--color-primary-400-n8h4bx);
    --color-text-layout-toggle-selected-4t49fq:var(--color-neutral-950-lxybh8);
    --color-text-link-default-rhby5q:var(--color-primary-400-n8h4bx);
    --color-text-link-hover-br6snu:var(--color-primary-300-5q65ox);
    --color-text-pagination-page-number-default-jqmmw0:var(--color-neutral-400-wtst55);
    --color-text-segment-active-ul57kp:var(--color-neutral-950-lxybh8);
    --color-text-segment-default-5r4jz0:var(--color-neutral-300-08wi6k);
    --color-text-small-vk4o1c:var(--color-neutral-450-kn0235);
    --color-text-status-error-ak9yp5:var(--color-error-400-c0knb8);
    --color-text-status-inactive-tg9r8q:var(--color-neutral-450-kn0235);
    --color-text-status-info-c3q8b6:var(--color-info-400-674xac);
    --color-text-status-success-9wcobb:var(--color-success-500-hhxb4g);
    --color-text-status-warning-avkj4w:var(--color-warning-500-zidhub);
    --color-text-top-navigation-title-kiop92:var(--color-neutral-100-gk3lvf);
    --color-board-placeholder-active-3nv7j5:var(--color-neutral-600-fln1ww);
    --color-board-placeholder-hover-1hv3br:var(--color-primary-600-1lcy1k);
    --color-drag-placeholder-active-7dewab:var(--color-neutral-600-fln1ww);
    --color-drag-placeholder-hover-guvi5d:var(--color-primary-600-1lcy1k);
    --color-dropzone-background-default-ia1ya0:var(--color-neutral-850-3f0gro);
    --color-dropzone-background-hover-j9ea7e:var(--color-primary-1000-7umopx);
    --color-dropzone-text-default-m7ucyv:var(--color-neutral-350-dq6kfr);
    --color-dropzone-text-hover-yjnvhw:var(--color-neutral-350-dq6kfr);
    --color-dropzone-border-default-lohkzd:var(--color-neutral-600-fln1ww);
    --color-dropzone-border-hover-ejc85p:var(--color-primary-300-5q65ox);
    --color-gap-global-drawer-w5yxw2:var(--color-neutral-950-lxybh8);
    --color-tree-view-connector-line-821trc:var(--color-neutral-300-08wi6k);
    --color-background-action-card-default-t3yctp:var(--color-neutral-850-3f0gro);
    --color-background-action-card-hover-h3wt1z:var(--color-neutral-800-t7j5ap);
    --color-background-action-card-active-usmbya:var(--color-neutral-700-qw8ats);
    --color-border-action-card-default-n2zyy4:var(--color-primary-400-n8h4bx);
    --color-border-action-card-hover-rdbsmb:var(--color-primary-300-5q65ox);
    --color-border-action-card-active-xscx2q:var(--color-primary-300-5q65ox);
    --color-border-action-card-disabled-7v7a0x:var(--color-neutral-600-fln1ww);
    --color-background-action-card-disabled-tyaaz1:var(--color-neutral-850-3f0gro);
    --color-icon-action-card-default-i2lc96:var(--color-primary-400-n8h4bx);
    --color-icon-action-card-hover-9b7foc:var(--color-primary-300-5q65ox);
    --color-icon-action-card-active-ojxwnl:var(--color-primary-300-5q65ox);
    --color-icon-action-card-disabled-l1ahot:var(--color-neutral-600-fln1ww);
    --color-background-skeleton-wytrx7:var(--color-neutral-600-fln1ww);
    --color-background-skeleton-wave-2q57ya:var(--color-neutral-700-qw8ats);
    --color-background-code-view-l2nfun:#282c34;
    --color-background-visual-accent-red-bit8yt:rgba(255, 61, 61, 0.2);
    --color-background-visual-accent-yellow-qsxu4s:rgba(251, 211, 50, 0.2);
    --color-background-visual-accent-indigo-edos35:rgba(92, 127, 255, 0.2);
    --color-background-visual-accent-green-r91q20:rgba(43, 181, 52, 0.2);
    --color-background-visual-accent-orange-q2umnc:rgba(255, 75, 20, 0.2);
    --color-background-visual-accent-purple-kq93ng:rgba(173, 92, 255, 0.2);
    --color-background-visual-accent-lime-j1xkep:rgba(49, 184, 0, 0.2);
    --color-background-visual-accent-grey-ojj5z6:var(--color-neutral-700-qw8ats);
    --color-background-visual-accent-teal-8hzzqm:rgba(0, 173, 162, 0.2);
    --color-background-visual-accent-blue-hn33k0:rgba(0, 153, 255, 0.2);
    --color-background-visual-accent-violet-2mvriz:rgba(133, 117, 255, 0.2);
    --color-background-visual-accent-magenta-goqypd:rgba(255, 26, 224, 0.2);
    --color-background-visual-accent-pink-8ha8b6:rgba(255, 51, 153, 0.2);
    --color-background-visual-accent-amber-fvrvm3:rgba(250, 111, 0, 0.2);
    --color-text-visual-accent-red-onxk95:var(--color-error-400-c0knb8);
    --color-text-visual-accent-yellow-sx6w4g:var(--color-warning-200-ssqjgd);
    --color-text-visual-accent-indigo-u9dybt:var(--color-info-300-q9xd1l);
    --color-text-visual-accent-green-bmtqm3:var(--color-success-200-3vtc6u);
    --color-text-visual-accent-orange-wr2zkf:#ff997a;
    --color-text-visual-accent-purple-3hhab5:#d4a8ff;
    --color-text-visual-accent-lime-of82ws:#acff2e;
    --color-text-visual-accent-grey-o560dq:var(--color-neutral-300-08wi6k);
    --color-text-visual-accent-teal-zh5vuh:#00f5e4;
    --color-text-visual-accent-blue-qq3miy:#75cfff;
    --color-text-visual-accent-violet-t426e9:#b2a8ff;
    --color-text-visual-accent-magenta-416j2z:#ff57e9;
    --color-text-visual-accent-pink-bj4hom:#ff99cc;
    --color-text-visual-accent-amber-l4myqa:#ffbb45;
    --shadow-container-53ltfv:0px 1px 8px 2px rgba(0, 7, 22, 0.6);
    --shadow-container-active-ypjjoc:0px 1px 1px 1px #192534, 0px 6px 36px #00040c;
    --shadow-dropdown-isf0w4:0px 4px 20px 1px rgba(0, 4, 12, 1);
    --shadow-split-bottom-vlyulf:0px -36px 36px -36px rgba(0, 7, 22, 1);
    --shadow-split-side-nyajix:-1px 0px 1px 0px #192534, -36px 6px 36px -36px rgba(0, 7, 22, 1);
    --shadow-sticky-lolw8j:0px 4px 8px 1px rgba(0, 7, 22, 0.5);
    --shadow-sticky-embedded-jmny8n:0px 2px 0px 0px #414d5c, 0px 16px 16px -12px rgba(0, 7, 22, 1);
    --shadow-sticky-column-first-trcd2o:0px 4px 8px 1px rgba(0, 7, 22, 0.5);
    --shadow-sticky-column-last-qgh697:0px 4px 8px 1px rgba(0, 7, 22, 0.5);
    --color-background-toggle-button-normal-default-sbu4j1:var(--color-background-button-normal-default-h5dyi3);
    --color-background-toggle-button-normal-hover-ees410:var(--color-background-button-normal-hover-trus5n);
    --color-background-button-primary-default-emr769:var(--color-border-button-normal-default-2yswxv);
    --color-background-button-primary-hover-979qcq:var(--color-border-button-normal-hover-167wjl);
    --color-text-direction-button-disabled-t86kvg:var(--color-text-interactive-disabled-bhh1zo);
    --color-background-code-editor-gutter-active-line-error-mi7l0o:var(--color-text-status-error-ak9yp5);
    --color-background-card-n4q1vl:var(--color-background-container-content-78ljyf);
    --color-background-item-card-aw1yv6:var(--color-background-card-n4q1vl);
    --color-background-dropdown-item-selected-cnovvw:var(--color-background-item-selected-pyr5cw);
    --color-background-side-navigation-item-active-collapsed-jczh49:var(--color-background-control-checked-jwoxtj);
    --color-background-side-navigation-item-icon-hover-e5eh06:var(--color-background-item-selected-pyr5cw);
    --color-background-drawer-715dba:var(--color-background-layout-panel-content-89bszq);
    --color-background-backdrop-czudyv:var(--color-grey-opaque-70-1cfyp2);
    --color-background-drawer-backdrop-l5bgyg:var(--color-background-backdrop-czudyv);
    --color-background-layout-panel-9avdix:var(--color-background-container-content-78ljyf);
    --color-background-layout-panel-content-89bszq:var(--color-background-container-content-78ljyf);
    --color-background-layout-toolbar-tpblk7:var(--color-background-layout-panel-content-89bszq);
    --color-background-modal-overlay-mdne87:var(--color-background-backdrop-czudyv);
    --color-background-progress-bar-value-flash-torruv:var(--color-background-progress-bar-value-default-3ddu5u);
    --color-background-progress-bar-flash-hkoq30:var(--color-background-progress-bar-default-4miz7r);
    --color-background-segment-hover-sx6uk4:var(--color-background-button-normal-hover-trus5n);
    --color-background-slider-range-default-7tonn0:var(--color-background-slider-handle-default-8d9sfs);
    --color-background-slider-range-active-xs8yay:var(--color-background-slider-handle-active-trfoqh);
    --color-background-slider-handle-error-default-c9tcd7:var(--color-text-status-error-ak9yp5);
    --color-background-slider-handle-error-active-v3fwp3:var(--color-text-status-error-ak9yp5);
    --color-background-slider-handle-warning-default-a3cgsn:var(--color-text-status-warning-avkj4w);
    --color-background-slider-handle-warning-active-1fmzqb:var(--color-text-status-warning-avkj4w);
    --color-background-slider-range-error-default-92xaux:var(--color-text-status-error-ak9yp5);
    --color-background-slider-range-error-active-y18v8u:var(--color-text-status-error-ak9yp5);
    --color-background-slider-range-warning-default-na240j:var(--color-text-status-warning-avkj4w);
    --color-background-slider-range-warning-active-sbp4ci:var(--color-text-status-warning-avkj4w);
    --color-background-alert-error-v2rgf2:var(--color-background-status-error-1w6iu4);
    --color-background-alert-info-8je547:var(--color-background-status-info-j2xxem);
    --color-background-alert-success-xqn40g:var(--color-background-status-success-hm3ak2);
    --color-background-alert-warning-xizfdk:var(--color-background-status-warning-wceky5);
    --color-background-dialog-kwlmup:var(--color-background-status-info-j2xxem);
    --color-text-chat-bubble-outgoing-nuggry:var(--color-text-body-default-gtm97i);
    --color-text-chat-bubble-incoming-ycnens:var(--color-text-body-default-gtm97i);
    --color-border-toggle-button-normal-default-d49akh:var(--color-border-button-normal-default-2yswxv);
    --color-border-toggle-button-normal-hover-za8uya:var(--color-border-button-normal-hover-167wjl);
    --color-border-button-primary-active-lupau4:var(--color-background-button-primary-active-mulwvt);
    --color-border-button-primary-default-f7dp5z:var(--color-background-button-primary-default-emr769);
    --color-border-button-primary-disabled-5avtf1:var(--color-background-button-primary-disabled-d1ggcl);
    --color-border-button-primary-hover-38r9qu:var(--color-background-button-primary-hover-979qcq);
    --color-text-side-navigation-item-active-40gvpw:var(--color-text-accent-uvfi4k);
    --color-text-side-navigation-item-active-collapsed-621hfg:var(--color-text-inverted-my1sxo);
    --color-text-side-navigation-item-default-u0ig7c:var(--color-text-body-secondary-y6dr4d);
    --color-border-code-editor-pane-item-hover-u4wk12:var(--color-border-dropdown-item-hover-07ng6s);
    --color-border-card-cgsfxm:var(--color-border-divider-default-0de9c8);
    --color-border-card-highlighted-47ojzl:var(--color-border-item-selected-63a3p8);
    --color-border-item-card-7kgzg2:var(--color-border-card-cgsfxm);
    --color-border-item-card-highlighted-m2lkyj:var(--color-border-card-highlighted-47ojzl);
    --color-border-control-checked-o1zph2:var(--color-background-control-checked-jwoxtj);
    --color-border-control-disabled-dqtwtk:var(--color-background-control-disabled-cb50zl);
    --color-border-divider-panel-bottom-fnfdhf:var(--color-border-divider-default-0de9c8);
    --color-border-divider-panel-side-9oapph:var(--color-border-divider-default-0de9c8);
    --color-border-dropdown-group-0ocu9j:var(--color-border-dropdown-item-default-22wwob);
    --color-border-dropdown-item-default-22wwob:var(--color-border-divider-default-0de9c8);
    --color-border-dropdown-item-selected-3nbye4:var(--color-border-item-selected-63a3p8);
    --color-border-editable-cell-hover-nkpoh5:var(--color-border-dropdown-item-hover-07ng6s);
    --color-border-input-disabled-k518xl:var(--color-background-input-disabled-cecgeg);
    --color-border-item-placeholder-zq3251:var(--color-border-item-selected-63a3p8);
    --color-border-item-selected-63a3p8:var(--color-item-selected-rz6ktw);
    --color-border-layout-side-navigation-mjh43q:var(--color-border-layout-px1i24);
    --color-border-panel-header-j4pvsn:var(--color-border-divider-default-0de9c8);
    --color-border-popover-5yl4uc:var(--color-border-dropdown-container-gb937i);
    --color-border-segment-active-trxbfe:var(--color-border-segment-default-8mo02x);
    --color-border-segment-disabled-8j0zwo:var(--color-border-segment-default-8mo02x);
    --color-border-segment-hover-epoe83:var(--color-border-segment-default-8mo02x);
    --color-border-segment-wrapper-qq00qv:var(--color-border-input-default-f3bzwh);
    --color-border-dialog-3vjyp0:var(--color-border-status-info-2zt73n);
    --color-border-tabs-shadow-l6jxjx:var(--color-grey-transparent-ywq957);
    --color-border-tabs-underline-ueuyon:var(--color-text-accent-uvfi4k);
    --color-border-tiles-disabled-n9fk5o:var(--color-background-tiles-disabled-5ikjr0);
    --color-shadow-default-08gb4j:var(--color-grey-transparent-heavy-mmz2gv);
    --color-text-button-inline-icon-default-gdb4f4:var(--color-text-link-default-rhby5q);
    --color-text-button-inline-icon-disabled-bnn5b7:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-button-inline-icon-hover-sqs5ft:var(--color-text-link-hover-br6snu);
    --color-text-button-inline-link-hover-p1ibm2:var(--color-text-button-normal-hover-20c0ob);
    --color-text-button-icon-hover-ph08st:var(--color-text-interactive-hover-j5y3wx);
    --color-text-link-button-normal-default-vc8ids:var(--color-text-button-normal-default-t865au);
    --color-text-link-button-normal-hover-xk6kwz:var(--color-text-button-normal-hover-20c0ob);
    --color-text-link-button-normal-active-f0yaqx:var(--color-text-button-normal-active-fm6d53);
    --color-text-button-link-active-154jw6:var(--color-text-button-normal-active-fm6d53);
    --color-text-button-link-default-ehnnq5:var(--color-text-button-normal-default-t865au);
    --color-text-button-link-disabled-d3c5rp:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-button-link-hover-1aopta:var(--color-text-button-normal-hover-20c0ob);
    --color-text-calendar-date-hover-qy0tsn:var(--color-text-dropdown-item-default-zani00);
    --color-text-calendar-date-selected-dd6twp:var(--color-background-control-default-nub6gm);
    --color-text-column-sorting-icon-iazyfo:var(--color-text-column-header-wyzs6v);
    --color-text-control-disabled-vh7v3o:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-dropdown-footer-ks7c04:var(--color-text-form-secondary-t0glp7);
    --color-text-dropdown-group-label-8vygj0:var(--color-text-group-label-0wronh);
    --color-text-dropdown-item-dimmed-iy2k20:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-dropdown-item-disabled-pl4fy2:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-dropdown-item-secondary-77b2z6:var(--color-text-form-secondary-t0glp7);
    --color-text-expandable-section-hover-pqmtjd:var(--color-text-accent-uvfi4k);
    --color-text-expandable-section-navigation-icon-default-wh1lig:var(--color-text-interactive-default-1o1pl2);
    --color-border-expandable-section-default-oi0xfr:var(--color-border-divider-default-0de9c8);
    --color-text-form-label-84uan1:var(--color-text-form-default-jsw02x);
    --color-text-input-placeholder-disabled-9zawsz:var(--color-text-input-disabled-as3mmb);
    --color-text-label-tv95tq:var(--color-text-form-label-84uan1);
    --color-text-key-value-pairs-value-xmrgpn:var(--color-text-body-default-gtm97i);
    --color-text-link-secondary-default-6ui3do:var(--color-text-link-default-rhby5q);
    --color-text-link-secondary-hover-oy8eob:var(--color-text-link-hover-br6snu);
    --color-text-link-info-default-mgpk1w:var(--color-text-link-default-rhby5q);
    --color-text-link-info-hover-os951m:var(--color-text-link-hover-br6snu);
    --color-text-alert-default-rwuv9g:var(--color-text-body-default-gtm97i);
    --color-text-pagination-page-number-active-disabled-uj04sc:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-segment-hover-9dj6y6:var(--color-text-button-normal-hover-20c0ob);
    --color-text-flashbar-icon-error-cb5ezy:var(--color-text-status-error-ak9yp5);
    --color-text-flashbar-icon-info-lobe9x:var(--color-text-status-info-c3q8b6);
    --color-text-flashbar-icon-success-tqehsy:var(--color-text-status-success-9wcobb);
    --color-text-flashbar-icon-warning-ojtnxb:var(--color-text-status-warning-avkj4w);
    --color-text-alert-icon-error-tlrirw:var(--color-text-status-error-ak9yp5);
    --color-text-alert-icon-info-rwhxzh:var(--color-text-status-info-c3q8b6);
    --color-text-alert-icon-success-6ptnga:var(--color-text-status-success-9wcobb);
    --color-text-alert-icon-warning-jj09xr:var(--color-text-status-warning-avkj4w);
    --color-text-tutorial-hotspot-default-7f0h47:var(--color-text-link-default-rhby5q);
    --color-text-tutorial-hotspot-hover-jkzh5r:var(--color-text-link-hover-br6snu);
    --color-background-badge-grey-5tl0uy:var(--color-background-notification-grey-68rc4b);
    --shadow-dropup-2r02r5:var(--shadow-dropdown-isf0w4);
    --shadow-modal-kwgqht:var(--shadow-dropdown-isf0w4);
    --shadow-popover-pkane9:var(--shadow-dropdown-isf0w4);
  }
  .awsui-context-app-layout-toolbar:not(#\9) {
    --color-background-layout-main-7z8vaj:var(--color-neutral-50-pvu04n);
  }
  .awsui-context-flashbar:not(#\9):where(:not(.awsui-one-theme):not(.awsui-one-theme *)) {
    --color-background-button-normal-active-zqw8xz:rgba(0, 7, 22, 0.2);
    --color-background-button-normal-default-h5dyi3:transparent;
    --color-background-button-normal-hover-trus5n:rgba(0, 7, 22, 0.15);
    --color-background-inline-code-967m4q:rgba(0, 0, 0, 0.2);
    --color-background-progress-bar-value-default-3ddu5u:var(--color-white-p1zlvy);
    --color-background-progress-bar-default-4miz7r:var(--color-grey-opaque-25-cjy3al);
    --color-border-button-normal-active-zi2bnn:var(--color-white-p1zlvy);
    --color-border-button-normal-default-2yswxv:var(--color-neutral-100-gk3lvf);
    --color-border-button-normal-hover-167wjl:var(--color-white-p1zlvy);
    --color-border-divider-default-0de9c8:var(--color-neutral-100-gk3lvf);
    --color-border-item-focused-ditkrb:var(--color-neutral-100-gk3lvf);
    --color-text-body-default-gtm97i:var(--color-neutral-100-gk3lvf);
    --color-text-body-secondary-y6dr4d:var(--color-neutral-100-gk3lvf);
    --color-text-button-normal-active-fm6d53:var(--color-white-p1zlvy);
    --color-text-button-normal-default-t865au:var(--color-neutral-100-gk3lvf);
    --color-text-button-normal-hover-20c0ob:var(--color-white-p1zlvy);
    --color-text-expandable-section-default-aqjbq3:var(--color-neutral-100-gk3lvf);
    --color-text-expandable-section-hover-pqmtjd:var(--color-white-p1zlvy);
    --color-text-heading-secondary-su1acg:var(--color-neutral-100-gk3lvf);
    --color-text-label-tv95tq:var(--color-neutral-100-gk3lvf);
    --color-text-link-default-rhby5q:var(--color-neutral-100-gk3lvf);
    --color-text-link-hover-br6snu:var(--color-white-p1zlvy);
    --color-text-status-error-ak9yp5:var(--color-text-notification-default-w5tddq);
    --color-text-status-info-c3q8b6:var(--color-text-notification-default-w5tddq);
    --color-text-status-success-9wcobb:var(--color-text-notification-default-w5tddq);
    --color-text-tutorial-hotspot-default-7f0h47:var(--color-neutral-300-08wi6k);
    --color-text-tutorial-hotspot-hover-jkzh5r:var(--color-neutral-100-gk3lvf);
    --color-background-toggle-button-normal-default-sbu4j1:var(--color-background-button-normal-default-h5dyi3);
    --color-background-toggle-button-normal-hover-ees410:var(--color-background-button-normal-hover-trus5n);
    --color-background-button-primary-default-emr769:var(--color-border-button-normal-default-2yswxv);
    --color-background-button-primary-hover-979qcq:var(--color-border-button-normal-hover-167wjl);
    --color-background-code-editor-gutter-active-line-error-mi7l0o:var(--color-text-status-error-ak9yp5);
    --color-background-progress-bar-value-flash-torruv:var(--color-background-progress-bar-value-default-3ddu5u);
    --color-background-progress-bar-flash-hkoq30:var(--color-background-progress-bar-default-4miz7r);
    --color-background-segment-default-lypnes:var(--color-background-button-normal-default-h5dyi3);
    --color-background-segment-hover-sx6uk4:var(--color-background-button-normal-hover-trus5n);
    --color-background-slider-handle-error-default-c9tcd7:var(--color-text-status-error-ak9yp5);
    --color-background-slider-handle-error-active-v3fwp3:var(--color-text-status-error-ak9yp5);
    --color-background-slider-range-error-default-92xaux:var(--color-text-status-error-ak9yp5);
    --color-background-slider-range-error-active-y18v8u:var(--color-text-status-error-ak9yp5);
    --color-text-chat-bubble-outgoing-nuggry:var(--color-text-body-default-gtm97i);
    --color-text-chat-bubble-incoming-ycnens:var(--color-text-body-default-gtm97i);
    --color-border-toggle-button-normal-default-d49akh:var(--color-border-button-normal-default-2yswxv);
    --color-border-toggle-button-normal-hover-za8uya:var(--color-border-button-normal-hover-167wjl);
    --color-border-button-primary-default-f7dp5z:var(--color-background-button-primary-default-emr769);
    --color-border-button-primary-hover-38r9qu:var(--color-background-button-primary-hover-979qcq);
    --color-text-side-navigation-item-default-u0ig7c:var(--color-text-body-secondary-y6dr4d);
    --color-border-card-cgsfxm:var(--color-border-divider-default-0de9c8);
    --color-border-item-card-7kgzg2:var(--color-border-card-cgsfxm);
    --color-border-divider-panel-bottom-fnfdhf:var(--color-border-divider-default-0de9c8);
    --color-border-divider-panel-side-9oapph:var(--color-border-divider-default-0de9c8);
    --color-border-dropdown-group-0ocu9j:var(--color-border-dropdown-item-default-22wwob);
    --color-border-dropdown-item-default-22wwob:var(--color-border-divider-default-0de9c8);
    --color-border-panel-header-j4pvsn:var(--color-border-divider-default-0de9c8);
    --color-text-button-inline-icon-default-gdb4f4:var(--color-text-link-default-rhby5q);
    --color-text-button-inline-icon-hover-sqs5ft:var(--color-text-link-hover-br6snu);
    --color-text-button-inline-link-hover-p1ibm2:var(--color-text-button-normal-hover-20c0ob);
    --color-text-link-button-normal-default-vc8ids:var(--color-text-button-normal-default-t865au);
    --color-text-link-button-normal-hover-xk6kwz:var(--color-text-button-normal-hover-20c0ob);
    --color-text-link-button-normal-active-f0yaqx:var(--color-text-button-normal-active-fm6d53);
    --color-text-button-link-active-154jw6:var(--color-text-button-normal-active-fm6d53);
    --color-text-button-link-default-ehnnq5:var(--color-text-button-normal-default-t865au);
    --color-text-button-link-hover-1aopta:var(--color-text-button-normal-hover-20c0ob);
    --color-border-expandable-section-default-oi0xfr:var(--color-border-divider-default-0de9c8);
    --color-text-key-value-pairs-value-xmrgpn:var(--color-text-body-default-gtm97i);
    --color-text-link-secondary-default-6ui3do:var(--color-text-link-default-rhby5q);
    --color-text-link-secondary-hover-oy8eob:var(--color-text-link-hover-br6snu);
    --color-text-link-info-default-mgpk1w:var(--color-text-link-default-rhby5q);
    --color-text-link-info-hover-os951m:var(--color-text-link-hover-br6snu);
    --color-text-alert-default-rwuv9g:var(--color-text-body-default-gtm97i);
    --color-text-segment-hover-9dj6y6:var(--color-text-button-normal-hover-20c0ob);
    --color-text-flashbar-icon-error-cb5ezy:var(--color-text-status-error-ak9yp5);
    --color-text-flashbar-icon-info-lobe9x:var(--color-text-status-info-c3q8b6);
    --color-text-flashbar-icon-success-tqehsy:var(--color-text-status-success-9wcobb);
    --color-text-alert-icon-error-tlrirw:var(--color-text-status-error-ak9yp5);
    --color-text-alert-icon-info-rwhxzh:var(--color-text-status-info-c3q8b6);
    --color-text-alert-icon-success-6ptnga:var(--color-text-status-success-9wcobb);
  }
  .awsui-context-flashbar-warning:not(#\9):where(:not(.awsui-one-theme):not(.awsui-one-theme *)) {
    --color-background-button-normal-active-zqw8xz:rgba(0, 7, 22, 0.1);
    --color-background-button-normal-default-h5dyi3:transparent;
    --color-background-button-normal-hover-trus5n:rgba(0, 7, 22, 0.05);
    --color-background-progress-bar-value-default-3ddu5u:var(--color-neutral-950-lxybh8);
    --color-background-progress-bar-default-4miz7r:var(--color-grey-opaque-10-vwfmts);
    --color-border-button-normal-active-zi2bnn:var(--color-text-button-normal-hover-20c0ob);
    --color-border-button-normal-default-2yswxv:var(--color-text-button-normal-default-t865au);
    --color-border-button-normal-hover-167wjl:var(--color-text-button-normal-hover-20c0ob);
    --color-border-divider-default-0de9c8:var(--color-text-notification-yellow-vjtdxk);
    --color-border-item-focused-ditkrb:var(--color-text-notification-yellow-vjtdxk);
    --color-text-body-default-gtm97i:var(--color-text-notification-yellow-vjtdxk);
    --color-text-body-secondary-y6dr4d:var(--color-text-notification-yellow-vjtdxk);
    --color-text-button-normal-active-fm6d53:var(--color-text-button-normal-hover-20c0ob);
    --color-text-button-normal-default-t865au:var(--color-neutral-650-miik4f);
    --color-text-button-normal-hover-20c0ob:var(--color-neutral-950-lxybh8);
    --color-text-link-button-normal-default-vc8ids:var(--color-text-link-default-rhby5q);
    --color-text-link-button-normal-hover-xk6kwz:var(--color-text-link-hover-br6snu);
    --color-text-expandable-section-default-aqjbq3:var(--color-text-notification-yellow-vjtdxk);
    --color-text-expandable-section-hover-pqmtjd:var(--color-text-notification-yellow-vjtdxk);
    --color-text-heading-secondary-su1acg:var(--color-text-notification-yellow-vjtdxk);
    --color-text-interactive-inverted-default-nzthan:var(--color-neutral-650-miik4f);
    --color-text-interactive-inverted-hover-oa7pli:var(--color-neutral-950-lxybh8);
    --color-text-label-tv95tq:var(--color-text-notification-yellow-vjtdxk);
    --color-text-link-default-rhby5q:var(--color-text-notification-yellow-vjtdxk);
    --color-text-link-hover-br6snu:var(--color-text-notification-yellow-vjtdxk);
    --color-text-link-inverted-hover-b4wg6a:var(--color-text-notification-yellow-vjtdxk);
    --color-text-notification-default-w5tddq:var(--color-text-notification-yellow-vjtdxk);
    --color-text-status-warning-avkj4w:var(--color-text-notification-yellow-vjtdxk);
    --color-text-tutorial-hotspot-default-7f0h47:var(--color-neutral-600-fln1ww);
    --color-text-tutorial-hotspot-hover-jkzh5r:var(--color-neutral-900-v0mtoc);
    --color-background-toggle-button-normal-default-sbu4j1:var(--color-background-button-normal-default-h5dyi3);
    --color-background-toggle-button-normal-hover-ees410:var(--color-background-button-normal-hover-trus5n);
    --color-background-button-primary-default-emr769:var(--color-border-button-normal-default-2yswxv);
    --color-background-button-primary-hover-979qcq:var(--color-border-button-normal-hover-167wjl);
    --color-background-progress-bar-value-flash-torruv:var(--color-background-progress-bar-value-default-3ddu5u);
    --color-background-progress-bar-flash-hkoq30:var(--color-background-progress-bar-default-4miz7r);
    --color-background-segment-default-lypnes:var(--color-background-button-normal-default-h5dyi3);
    --color-background-segment-hover-sx6uk4:var(--color-background-button-normal-hover-trus5n);
    --color-background-slider-handle-warning-default-a3cgsn:var(--color-text-status-warning-avkj4w);
    --color-background-slider-handle-warning-active-1fmzqb:var(--color-text-status-warning-avkj4w);
    --color-background-slider-range-warning-default-na240j:var(--color-text-status-warning-avkj4w);
    --color-background-slider-range-warning-active-sbp4ci:var(--color-text-status-warning-avkj4w);
    --color-text-chat-bubble-outgoing-nuggry:var(--color-text-body-default-gtm97i);
    --color-text-chat-bubble-incoming-ycnens:var(--color-text-body-default-gtm97i);
    --color-border-toggle-button-normal-default-d49akh:var(--color-border-button-normal-default-2yswxv);
    --color-border-toggle-button-normal-hover-za8uya:var(--color-border-button-normal-hover-167wjl);
    --color-border-button-primary-default-f7dp5z:var(--color-background-button-primary-default-emr769);
    --color-border-button-primary-hover-38r9qu:var(--color-background-button-primary-hover-979qcq);
    --color-text-side-navigation-item-default-u0ig7c:var(--color-text-body-secondary-y6dr4d);
    --color-border-card-cgsfxm:var(--color-border-divider-default-0de9c8);
    --color-border-item-card-7kgzg2:var(--color-border-card-cgsfxm);
    --color-border-divider-panel-bottom-fnfdhf:var(--color-border-divider-default-0de9c8);
    --color-border-divider-panel-side-9oapph:var(--color-border-divider-default-0de9c8);
    --color-border-dropdown-group-0ocu9j:var(--color-border-dropdown-item-default-22wwob);
    --color-border-dropdown-item-default-22wwob:var(--color-border-divider-default-0de9c8);
    --color-border-panel-header-j4pvsn:var(--color-border-divider-default-0de9c8);
    --color-text-button-inline-icon-default-gdb4f4:var(--color-text-link-default-rhby5q);
    --color-text-button-inline-icon-hover-sqs5ft:var(--color-text-link-hover-br6snu);
    --color-text-button-inline-link-hover-p1ibm2:var(--color-text-button-normal-hover-20c0ob);
    --color-text-link-button-normal-active-f0yaqx:var(--color-text-button-normal-active-fm6d53);
    --color-text-button-link-active-154jw6:var(--color-text-button-normal-active-fm6d53);
    --color-text-button-link-default-ehnnq5:var(--color-text-button-normal-default-t865au);
    --color-text-button-link-hover-1aopta:var(--color-text-button-normal-hover-20c0ob);
    --color-border-expandable-section-default-oi0xfr:var(--color-border-divider-default-0de9c8);
    --color-text-key-value-pairs-value-xmrgpn:var(--color-text-body-default-gtm97i);
    --color-text-link-secondary-default-6ui3do:var(--color-text-link-default-rhby5q);
    --color-text-link-secondary-hover-oy8eob:var(--color-text-link-hover-br6snu);
    --color-text-link-info-default-mgpk1w:var(--color-text-link-default-rhby5q);
    --color-text-link-info-hover-os951m:var(--color-text-link-hover-br6snu);
    --color-text-link-inverted-default-n9ytl0:var(--color-text-notification-default-w5tddq);
    --color-text-alert-default-rwuv9g:var(--color-text-body-default-gtm97i);
    --color-text-segment-hover-9dj6y6:var(--color-text-button-normal-hover-20c0ob);
    --color-text-flashbar-icon-warning-ojtnxb:var(--color-text-status-warning-avkj4w);
    --color-text-alert-icon-warning-jj09xr:var(--color-text-status-warning-avkj4w);
    --color-text-badge-grey-qbyu4m:var(--color-text-notification-default-w5tddq);
    --color-text-badge-green-ourl0s:var(--color-text-notification-default-w5tddq);
    --color-text-badge-blue-e7a2l0:var(--color-text-notification-default-w5tddq);
    --color-text-badge-red-aewu86:var(--color-text-notification-default-w5tddq);
  }
  .awsui-context-alert:not(#\9):where(:not(.awsui-one-theme):not(.awsui-one-theme *)) {
    --color-background-button-normal-active-zqw8xz:rgba(0, 7, 22, 0.1);
    --color-background-button-normal-default-h5dyi3:transparent;
    --color-background-button-normal-hover-trus5n:rgba(0, 7, 22, 0.05);
    --color-border-button-normal-active-zi2bnn:var(--color-text-button-normal-hover-20c0ob);
    --color-border-button-normal-default-2yswxv:var(--color-text-button-normal-default-t865au);
    --color-border-button-normal-hover-167wjl:var(--color-text-button-normal-hover-20c0ob);
    --color-border-divider-default-0de9c8:var(--color-text-button-normal-default-t865au);
    --color-text-button-normal-active-fm6d53:var(--color-text-button-normal-hover-20c0ob);
    --color-text-button-normal-default-t865au:var(--color-neutral-650-miik4f);
    --color-text-button-normal-hover-20c0ob:var(--color-neutral-950-lxybh8);
    --color-text-link-button-normal-default-vc8ids:var(--color-text-link-default-rhby5q);
    --color-text-link-button-normal-hover-xk6kwz:var(--color-text-link-hover-br6snu);
    --color-text-expandable-section-default-aqjbq3:var(--color-text-button-normal-default-t865au);
    --color-text-expandable-section-hover-pqmtjd:var(--color-text-button-normal-hover-20c0ob);
    --font-size-expandable-heading-q41e8i:14px;
    --color-background-toggle-button-normal-default-sbu4j1:var(--color-background-button-normal-default-h5dyi3);
    --color-background-toggle-button-normal-hover-ees410:var(--color-background-button-normal-hover-trus5n);
    --color-background-button-primary-default-emr769:var(--color-border-button-normal-default-2yswxv);
    --color-background-button-primary-hover-979qcq:var(--color-border-button-normal-hover-167wjl);
    --color-background-segment-default-lypnes:var(--color-background-button-normal-default-h5dyi3);
    --color-background-segment-hover-sx6uk4:var(--color-background-button-normal-hover-trus5n);
    --color-border-toggle-button-normal-default-d49akh:var(--color-border-button-normal-default-2yswxv);
    --color-border-toggle-button-normal-hover-za8uya:var(--color-border-button-normal-hover-167wjl);
    --color-border-button-primary-default-f7dp5z:var(--color-background-button-primary-default-emr769);
    --color-border-button-primary-hover-38r9qu:var(--color-background-button-primary-hover-979qcq);
    --color-border-card-cgsfxm:var(--color-border-divider-default-0de9c8);
    --color-border-item-card-7kgzg2:var(--color-border-card-cgsfxm);
    --color-border-divider-panel-bottom-fnfdhf:var(--color-border-divider-default-0de9c8);
    --color-border-divider-panel-side-9oapph:var(--color-border-divider-default-0de9c8);
    --color-border-dropdown-group-0ocu9j:var(--color-border-dropdown-item-default-22wwob);
    --color-border-dropdown-item-default-22wwob:var(--color-border-divider-default-0de9c8);
    --color-border-panel-header-j4pvsn:var(--color-border-divider-default-0de9c8);
    --color-text-button-inline-link-hover-p1ibm2:var(--color-text-button-normal-hover-20c0ob);
    --color-text-link-button-normal-active-f0yaqx:var(--color-text-button-normal-active-fm6d53);
    --color-text-button-link-active-154jw6:var(--color-text-button-normal-active-fm6d53);
    --color-text-button-link-default-ehnnq5:var(--color-text-button-normal-default-t865au);
    --color-text-button-link-hover-1aopta:var(--color-text-button-normal-hover-20c0ob);
    --color-border-expandable-section-default-oi0xfr:var(--color-border-divider-default-0de9c8);
    --color-text-segment-hover-9dj6y6:var(--color-text-button-normal-hover-20c0ob);
  }
  .awsui-context-content-header .awsui-context-alert:not(#\9):where(:not(.awsui-one-theme):not(.awsui-one-theme *)) {
    --color-grey-opaque-70-1cfyp2:rgba(15, 20, 26, 0.7);
    --color-grey-transparent-ywq957:rgba(15, 20, 26, 1);
    --color-grey-transparent-heavy-mmz2gv:rgba(15, 20, 26, 1);
    --color-background-badge-icon-eprfkm:var(--color-error-400-c0knb8);
    --color-background-button-link-active-qjigod:var(--color-neutral-700-qw8ats);
    --color-background-button-link-hover-w58lm6:var(--color-neutral-800-t7j5ap);
    --color-background-button-normal-active-zqw8xz:rgba(255, 255, 255, 0.15);
    --color-background-button-normal-default-h5dyi3:transparent;
    --color-background-button-normal-disabled-3xb191:var(--color-neutral-850-3f0gro);
    --color-background-button-normal-hover-trus5n:rgba(255, 255, 255, 0.1);
    --color-background-toggle-button-normal-pressed-wu6ges:var(--color-neutral-700-qw8ats);
    --color-background-button-primary-active-mulwvt:var(--color-primary-400-n8h4bx);
    --color-background-button-primary-disabled-d1ggcl:var(--color-neutral-750-pi9qqd);
    --color-background-direction-button-disabled-uad4xk:var(--color-neutral-750-pi9qqd);
    --color-background-calendar-current-date-2c5ip4:var(--color-neutral-700-qw8ats);
    --color-background-cell-shaded-c928js:var(--color-neutral-800-t7j5ap);
    --color-background-code-editor-gutter-active-line-default-eesbr6:var(--color-neutral-500-8van0b);
    --color-background-code-editor-gutter-default-136m47:var(--color-neutral-800-t7j5ap);
    --color-background-code-editor-loading-7grxg2:var(--color-neutral-800-t7j5ap);
    --color-background-code-editor-pane-item-hover-ed635c:var(--color-neutral-700-qw8ats);
    --color-background-code-editor-status-bar-ic28b2:var(--color-neutral-800-t7j5ap);
    --color-background-container-content-78ljyf:var(--color-neutral-850-3f0gro);
    --color-background-container-header-ydavso:var(--color-neutral-850-3f0gro);
    --color-background-control-checked-jwoxtj:var(--color-primary-400-n8h4bx);
    --color-background-control-default-nub6gm:var(--color-neutral-850-3f0gro);
    --color-background-control-disabled-cb50zl:var(--color-neutral-700-qw8ats);
    --color-background-dropdown-item-default-lzrka9:var(--color-neutral-800-t7j5ap);
    --color-background-dropdown-item-filter-match-8fnvh3:var(--color-neutral-700-qw8ats);
    --color-background-dropdown-item-hover-wyujnt:var(--color-neutral-900-v0mtoc);
    --color-background-inline-code-967m4q:rgba(255, 255, 255, 0.1);
    --color-background-input-default-bz9w07:var(--color-neutral-850-3f0gro);
    --color-background-input-disabled-cecgeg:var(--color-neutral-800-t7j5ap);
    --color-background-item-selected-pyr5cw:var(--color-primary-1000-7umopx);
    --color-background-layout-main-7z8vaj:var(--color-neutral-850-3f0gro);
    --color-background-layout-panel-hover-kg7nug:var(--color-neutral-700-qw8ats);
    --color-background-layout-toggle-selected-active-7ovd7l:var(--color-primary-400-n8h4bx);
    --color-background-layout-toggle-selected-default-5go4i7:var(--color-primary-400-n8h4bx);
    --color-background-layout-toggle-selected-hover-pt3n9b:var(--color-primary-300-5q65ox);
    --color-background-notification-grey-68rc4b:var(--color-neutral-600-fln1ww);
    --color-background-popover-yxd92v:var(--color-neutral-800-t7j5ap);
    --color-background-progress-bar-value-default-3ddu5u:var(--color-primary-400-n8h4bx);
    --color-background-progress-bar-default-4miz7r:var(--color-neutral-700-qw8ats);
    --color-background-segment-active-nrp5ms:var(--color-primary-400-n8h4bx);
    --color-background-slider-handle-default-8d9sfs:var(--color-primary-400-n8h4bx);
    --color-background-slider-handle-active-trfoqh:var(--color-primary-300-5q65ox);
    --color-background-slider-track-default-lz0len:var(--color-neutral-600-fln1ww);
    --color-background-slider-handle-ring-qvcnj5:var(--color-neutral-850-3f0gro);
    --color-background-status-error-1w6iu4:var(--color-error-1000-ecmudm);
    --color-background-status-info-j2xxem:var(--color-info-1000-s77ok9);
    --color-background-status-success-hm3ak2:var(--color-success-1000-xy1gvq);
    --color-background-status-warning-wceky5:var(--color-warning-1000-65l070);
    --color-background-tiles-disabled-5ikjr0:var(--color-neutral-800-t7j5ap);
    --color-background-toggle-checked-disabled-7t40bu:var(--color-primary-900-a5kqrr);
    --color-background-toggle-default-feiaap:var(--color-neutral-500-8van0b);
    --color-background-chat-bubble-incoming-ykuqvi:var(--color-neutral-950-lxybh8);
    --color-border-button-normal-active-zi2bnn:var(--color-text-button-normal-hover-20c0ob);
    --color-border-button-normal-default-2yswxv:var(--color-text-button-normal-default-t865au);
    --color-border-toggle-button-normal-pressed-ab77je:var(--color-primary-400-n8h4bx);
    --color-border-button-normal-disabled-uit34y:var(--color-neutral-600-fln1ww);
    --color-border-button-normal-hover-167wjl:var(--color-text-button-normal-hover-20c0ob);
    --color-item-selected-rz6ktw:var(--color-primary-400-n8h4bx);
    --color-border-calendar-grid-selected-focus-ring-t8s8m7:var(--color-neutral-850-3f0gro);
    --color-border-cell-shaded-zttxxa:var(--color-neutral-700-qw8ats);
    --color-border-code-editor-default-8rd3v1:var(--color-neutral-600-fln1ww);
    --color-border-divider-active-ypkld8:var(--color-neutral-100-gk3lvf);
    --color-border-divider-default-0de9c8:var(--color-text-button-normal-default-t865au);
    --color-border-divider-secondary-46ol9n:var(--color-neutral-750-pi9qqd);
    --color-border-divider-table-group-tut0l3:var(--color-neutral-600-fln1ww);
    --color-border-dropdown-container-gb937i:var(--color-neutral-600-fln1ww);
    --color-border-dropdown-item-hover-07ng6s:var(--color-neutral-600-fln1ww);
    --color-border-input-default-f3bzwh:var(--color-neutral-600-fln1ww);
    --color-border-input-focused-9bkrxq:var(--color-primary-400-n8h4bx);
    --color-border-item-focused-ditkrb:var(--color-neutral-100-gk3lvf);
    --color-border-dropdown-item-focused-k9miqq:var(--color-neutral-300-08wi6k);
    --color-border-layout-px1i24:var(--color-neutral-650-miik4f);
    --color-border-segment-default-8mo02x:var(--color-neutral-300-08wi6k);
    --color-border-status-error-vxvfad:var(--color-error-400-c0knb8);
    --color-border-status-info-2zt73n:var(--color-info-400-674xac);
    --color-border-status-success-uk2p7m:var(--color-success-500-hhxb4g);
    --color-border-status-warning-s79l22:var(--color-warning-500-zidhub);
    --color-border-divider-interactive-default-8k07mh:var(--color-neutral-300-08wi6k);
    --color-border-tabs-divider-y4z8fk:var(--color-neutral-650-miik4f);
    --color-border-tutorial-kaooc2:var(--color-neutral-650-miik4f);
    --color-foreground-control-default-z8tr7i:var(--color-neutral-950-lxybh8);
    --color-foreground-control-disabled-6vf647:var(--color-neutral-850-3f0gro);
    --color-foreground-control-read-only-dtlpre:var(--color-neutral-450-kn0235);
    --color-text-accent-uvfi4k:var(--color-primary-400-n8h4bx);
    --color-text-body-default-gtm97i:var(--color-neutral-350-dq6kfr);
    --color-text-body-secondary-y6dr4d:var(--color-neutral-350-dq6kfr);
    --color-text-breadcrumb-current-mmrid5:var(--color-neutral-500-8van0b);
    --color-text-breadcrumb-icon-mh2txm:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-button-normal-active-fm6d53:var(--color-text-button-normal-hover-20c0ob);
    --color-text-toggle-button-normal-pressed-vivff6:var(--color-primary-300-5q65ox);
    --color-text-button-normal-default-t865au:var(--color-neutral-300-08wi6k);
    --color-text-button-normal-hover-20c0ob:var(--color-white-p1zlvy);
    --color-text-link-button-normal-default-vc8ids:var(--color-text-link-default-rhby5q);
    --color-text-link-button-normal-hover-xk6kwz:var(--color-text-link-hover-br6snu);
    --color-text-button-primary-active-dkwkja:var(--color-neutral-950-lxybh8);
    --color-text-button-primary-default-2i01k6:var(--color-neutral-950-lxybh8);
    --color-text-button-primary-hover-xtd6ag:var(--color-neutral-950-lxybh8);
    --color-text-calendar-month-357o43:var(--color-neutral-450-kn0235);
    --color-text-code-editor-gutter-active-line-bnbbsi:var(--color-neutral-950-lxybh8);
    --color-text-code-editor-gutter-default-vvwxve:var(--color-neutral-300-08wi6k);
    --color-text-code-editor-status-bar-disabled-4npkr3:var(--color-neutral-600-fln1ww);
    --color-text-code-editor-tab-button-error-hz2irc:var(--color-neutral-950-lxybh8);
    --color-text-column-header-wyzs6v:var(--color-neutral-400-wtst55);
    --color-text-counter-q4zq3v:var(--color-neutral-450-kn0235);
    --color-text-disabled-y4dmv3:var(--color-neutral-600-fln1ww);
    --color-text-disabled-inline-edit-hrexz1:var(--color-neutral-400-wtst55);
    --color-text-dropdown-item-default-zani00:var(--color-neutral-300-08wi6k);
    --color-text-dropdown-item-filter-match-73jeqe:var(--color-primary-300-5q65ox);
    --color-text-dropdown-item-highlighted-q6vxih:var(--color-neutral-250-vs1is4);
    --color-text-dropdown-item-secondary-hover-rwb7km:var(--color-neutral-300-08wi6k);
    --color-text-empty-68xc4n:var(--color-neutral-300-08wi6k);
    --color-text-expandable-section-default-aqjbq3:var(--color-text-button-normal-default-t865au);
    --color-text-expandable-section-hover-pqmtjd:var(--color-text-button-normal-hover-20c0ob);
    --color-text-form-default-jsw02x:var(--color-neutral-300-08wi6k);
    --color-text-form-secondary-t0glp7:var(--color-neutral-450-kn0235);
    --color-text-group-label-0wronh:var(--color-neutral-350-dq6kfr);
    --color-text-label-gen-ai-s3390v:var(--color-purple-400-o7fr4k);
    --color-text-heading-default-pn83b8:var(--color-neutral-250-vs1is4);
    --color-text-heading-secondary-su1acg:var(--color-neutral-450-kn0235);
    --color-text-icon-subtle-7e5fex:var(--color-neutral-400-wtst55);
    --color-text-input-disabled-as3mmb:var(--color-neutral-600-fln1ww);
    --color-text-input-placeholder-i4i8dv:var(--color-neutral-450-kn0235);
    --color-text-interactive-active-fedaa8:var(--color-neutral-100-gk3lvf);
    --color-text-interactive-default-1o1pl2:var(--color-neutral-300-08wi6k);
    --color-text-interactive-disabled-bhh1zo:var(--color-neutral-600-fln1ww);
    --color-text-interactive-hover-j5y3wx:var(--color-neutral-100-gk3lvf);
    --color-text-toggle-button-icon-pressed-nbnm5x:var(--color-neutral-100-gk3lvf);
    --color-text-inverted-my1sxo:var(--color-neutral-950-lxybh8);
    --color-text-layout-toggle-active-4v3fva:var(--color-neutral-850-3f0gro);
    --color-text-layout-toggle-hover-j9h8pw:var(--color-primary-400-n8h4bx);
    --color-text-layout-toggle-selected-4t49fq:var(--color-neutral-950-lxybh8);
    --color-text-link-default-rhby5q:var(--color-primary-400-n8h4bx);
    --color-text-link-hover-br6snu:var(--color-primary-300-5q65ox);
    --color-text-pagination-page-number-default-jqmmw0:var(--color-neutral-400-wtst55);
    --color-text-segment-active-ul57kp:var(--color-neutral-950-lxybh8);
    --color-text-segment-default-5r4jz0:var(--color-neutral-300-08wi6k);
    --color-text-small-vk4o1c:var(--color-neutral-450-kn0235);
    --color-text-status-error-ak9yp5:var(--color-error-400-c0knb8);
    --color-text-status-inactive-tg9r8q:var(--color-neutral-450-kn0235);
    --color-text-status-info-c3q8b6:var(--color-info-400-674xac);
    --color-text-status-success-9wcobb:var(--color-success-500-hhxb4g);
    --color-text-status-warning-avkj4w:var(--color-warning-500-zidhub);
    --color-text-top-navigation-title-kiop92:var(--color-neutral-100-gk3lvf);
    --color-board-placeholder-active-3nv7j5:var(--color-neutral-600-fln1ww);
    --color-board-placeholder-hover-1hv3br:var(--color-primary-600-1lcy1k);
    --color-drag-placeholder-active-7dewab:var(--color-neutral-600-fln1ww);
    --color-drag-placeholder-hover-guvi5d:var(--color-primary-600-1lcy1k);
    --color-dropzone-background-default-ia1ya0:var(--color-neutral-850-3f0gro);
    --color-dropzone-background-hover-j9ea7e:var(--color-primary-1000-7umopx);
    --color-dropzone-text-default-m7ucyv:var(--color-neutral-350-dq6kfr);
    --color-dropzone-text-hover-yjnvhw:var(--color-neutral-350-dq6kfr);
    --color-dropzone-border-default-lohkzd:var(--color-neutral-600-fln1ww);
    --color-dropzone-border-hover-ejc85p:var(--color-primary-300-5q65ox);
    --color-gap-global-drawer-w5yxw2:var(--color-neutral-950-lxybh8);
    --color-tree-view-connector-line-821trc:var(--color-neutral-300-08wi6k);
    --color-background-action-card-default-t3yctp:var(--color-neutral-850-3f0gro);
    --color-background-action-card-hover-h3wt1z:var(--color-neutral-800-t7j5ap);
    --color-background-action-card-active-usmbya:var(--color-neutral-700-qw8ats);
    --color-border-action-card-default-n2zyy4:var(--color-primary-400-n8h4bx);
    --color-border-action-card-hover-rdbsmb:var(--color-primary-300-5q65ox);
    --color-border-action-card-active-xscx2q:var(--color-primary-300-5q65ox);
    --color-border-action-card-disabled-7v7a0x:var(--color-neutral-600-fln1ww);
    --color-background-action-card-disabled-tyaaz1:var(--color-neutral-850-3f0gro);
    --color-icon-action-card-default-i2lc96:var(--color-primary-400-n8h4bx);
    --color-icon-action-card-hover-9b7foc:var(--color-primary-300-5q65ox);
    --color-icon-action-card-active-ojxwnl:var(--color-primary-300-5q65ox);
    --color-icon-action-card-disabled-l1ahot:var(--color-neutral-600-fln1ww);
    --color-background-skeleton-wytrx7:var(--color-neutral-600-fln1ww);
    --color-background-skeleton-wave-2q57ya:var(--color-neutral-700-qw8ats);
    --color-background-code-view-l2nfun:#282c34;
    --color-background-visual-accent-red-bit8yt:rgba(255, 61, 61, 0.2);
    --color-background-visual-accent-yellow-qsxu4s:rgba(251, 211, 50, 0.2);
    --color-background-visual-accent-indigo-edos35:rgba(92, 127, 255, 0.2);
    --color-background-visual-accent-green-r91q20:rgba(43, 181, 52, 0.2);
    --color-background-visual-accent-orange-q2umnc:rgba(255, 75, 20, 0.2);
    --color-background-visual-accent-purple-kq93ng:rgba(173, 92, 255, 0.2);
    --color-background-visual-accent-lime-j1xkep:rgba(49, 184, 0, 0.2);
    --color-background-visual-accent-grey-ojj5z6:var(--color-neutral-700-qw8ats);
    --color-background-visual-accent-teal-8hzzqm:rgba(0, 173, 162, 0.2);
    --color-background-visual-accent-blue-hn33k0:rgba(0, 153, 255, 0.2);
    --color-background-visual-accent-violet-2mvriz:rgba(133, 117, 255, 0.2);
    --color-background-visual-accent-magenta-goqypd:rgba(255, 26, 224, 0.2);
    --color-background-visual-accent-pink-8ha8b6:rgba(255, 51, 153, 0.2);
    --color-background-visual-accent-amber-fvrvm3:rgba(250, 111, 0, 0.2);
    --color-text-visual-accent-red-onxk95:var(--color-error-400-c0knb8);
    --color-text-visual-accent-yellow-sx6w4g:var(--color-warning-200-ssqjgd);
    --color-text-visual-accent-indigo-u9dybt:var(--color-info-300-q9xd1l);
    --color-text-visual-accent-green-bmtqm3:var(--color-success-200-3vtc6u);
    --color-text-visual-accent-orange-wr2zkf:#ff997a;
    --color-text-visual-accent-purple-3hhab5:#d4a8ff;
    --color-text-visual-accent-lime-of82ws:#acff2e;
    --color-text-visual-accent-grey-o560dq:var(--color-neutral-300-08wi6k);
    --color-text-visual-accent-teal-zh5vuh:#00f5e4;
    --color-text-visual-accent-blue-qq3miy:#75cfff;
    --color-text-visual-accent-violet-t426e9:#b2a8ff;
    --color-text-visual-accent-magenta-416j2z:#ff57e9;
    --color-text-visual-accent-pink-bj4hom:#ff99cc;
    --color-text-visual-accent-amber-l4myqa:#ffbb45;
    --color-background-toggle-button-normal-default-sbu4j1:var(--color-background-button-normal-default-h5dyi3);
    --color-background-toggle-button-normal-hover-ees410:var(--color-background-button-normal-hover-trus5n);
    --color-background-button-primary-default-emr769:var(--color-border-button-normal-default-2yswxv);
    --color-background-button-primary-hover-979qcq:var(--color-border-button-normal-hover-167wjl);
    --color-text-direction-button-disabled-t86kvg:var(--color-text-interactive-disabled-bhh1zo);
    --color-background-code-editor-gutter-active-line-error-mi7l0o:var(--color-text-status-error-ak9yp5);
    --color-background-card-n4q1vl:var(--color-background-container-content-78ljyf);
    --color-background-item-card-aw1yv6:var(--color-background-card-n4q1vl);
    --color-background-dropdown-item-selected-cnovvw:var(--color-background-item-selected-pyr5cw);
    --color-background-side-navigation-item-active-collapsed-jczh49:var(--color-background-control-checked-jwoxtj);
    --color-background-side-navigation-item-icon-hover-e5eh06:var(--color-background-item-selected-pyr5cw);
    --color-background-drawer-715dba:var(--color-background-layout-panel-content-89bszq);
    --color-background-backdrop-czudyv:var(--color-grey-opaque-70-1cfyp2);
    --color-background-drawer-backdrop-l5bgyg:var(--color-background-backdrop-czudyv);
    --color-background-layout-panel-9avdix:var(--color-background-container-content-78ljyf);
    --color-background-layout-panel-content-89bszq:var(--color-background-container-content-78ljyf);
    --color-background-layout-toolbar-tpblk7:var(--color-background-layout-panel-content-89bszq);
    --color-background-modal-overlay-mdne87:var(--color-background-backdrop-czudyv);
    --color-background-progress-bar-value-flash-torruv:var(--color-background-progress-bar-value-default-3ddu5u);
    --color-background-progress-bar-flash-hkoq30:var(--color-background-progress-bar-default-4miz7r);
    --color-background-segment-default-lypnes:var(--color-background-button-normal-default-h5dyi3);
    --color-background-segment-disabled-2aqenf:var(--color-background-button-normal-disabled-3xb191);
    --color-background-segment-hover-sx6uk4:var(--color-background-button-normal-hover-trus5n);
    --color-background-segment-wrapper-nyb7yz:var(--color-background-container-content-78ljyf);
    --color-background-slider-range-default-7tonn0:var(--color-background-slider-handle-default-8d9sfs);
    --color-background-slider-range-active-xs8yay:var(--color-background-slider-handle-active-trfoqh);
    --color-background-slider-handle-error-default-c9tcd7:var(--color-text-status-error-ak9yp5);
    --color-background-slider-handle-error-active-v3fwp3:var(--color-text-status-error-ak9yp5);
    --color-background-slider-handle-warning-default-a3cgsn:var(--color-text-status-warning-avkj4w);
    --color-background-slider-handle-warning-active-1fmzqb:var(--color-text-status-warning-avkj4w);
    --color-background-slider-range-error-default-92xaux:var(--color-text-status-error-ak9yp5);
    --color-background-slider-range-error-active-y18v8u:var(--color-text-status-error-ak9yp5);
    --color-background-slider-range-warning-default-na240j:var(--color-text-status-warning-avkj4w);
    --color-background-slider-range-warning-active-sbp4ci:var(--color-text-status-warning-avkj4w);
    --color-background-alert-error-v2rgf2:var(--color-background-status-error-1w6iu4);
    --color-background-alert-info-8je547:var(--color-background-status-info-j2xxem);
    --color-background-alert-success-xqn40g:var(--color-background-status-success-hm3ak2);
    --color-background-alert-warning-xizfdk:var(--color-background-status-warning-wceky5);
    --color-background-dialog-kwlmup:var(--color-background-status-info-j2xxem);
    --color-background-table-header-unjmda:var(--color-background-container-header-ydavso);
    --color-text-chat-bubble-outgoing-nuggry:var(--color-text-body-default-gtm97i);
    --color-text-chat-bubble-incoming-ycnens:var(--color-text-body-default-gtm97i);
    --color-border-toggle-button-normal-default-d49akh:var(--color-border-button-normal-default-2yswxv);
    --color-border-toggle-button-normal-hover-za8uya:var(--color-border-button-normal-hover-167wjl);
    --color-border-button-primary-active-lupau4:var(--color-background-button-primary-active-mulwvt);
    --color-border-button-primary-default-f7dp5z:var(--color-background-button-primary-default-emr769);
    --color-border-button-primary-disabled-5avtf1:var(--color-background-button-primary-disabled-d1ggcl);
    --color-border-button-primary-hover-38r9qu:var(--color-background-button-primary-hover-979qcq);
    --color-text-side-navigation-item-active-40gvpw:var(--color-text-accent-uvfi4k);
    --color-text-side-navigation-item-active-collapsed-621hfg:var(--color-text-inverted-my1sxo);
    --color-text-side-navigation-item-default-u0ig7c:var(--color-text-body-secondary-y6dr4d);
    --color-border-code-editor-pane-item-hover-u4wk12:var(--color-border-dropdown-item-hover-07ng6s);
    --color-border-card-cgsfxm:var(--color-border-divider-default-0de9c8);
    --color-border-card-highlighted-47ojzl:var(--color-border-item-selected-63a3p8);
    --color-border-item-card-7kgzg2:var(--color-border-card-cgsfxm);
    --color-border-item-card-highlighted-m2lkyj:var(--color-border-card-highlighted-47ojzl);
    --color-border-control-checked-o1zph2:var(--color-background-control-checked-jwoxtj);
    --color-border-control-disabled-dqtwtk:var(--color-background-control-disabled-cb50zl);
    --color-border-divider-panel-bottom-fnfdhf:var(--color-border-divider-default-0de9c8);
    --color-border-divider-panel-side-9oapph:var(--color-border-divider-default-0de9c8);
    --color-border-dropdown-group-0ocu9j:var(--color-border-dropdown-item-default-22wwob);
    --color-border-dropdown-item-default-22wwob:var(--color-border-divider-default-0de9c8);
    --color-border-dropdown-item-selected-3nbye4:var(--color-border-item-selected-63a3p8);
    --color-border-editable-cell-hover-nkpoh5:var(--color-border-dropdown-item-hover-07ng6s);
    --color-border-input-disabled-k518xl:var(--color-background-input-disabled-cecgeg);
    --color-border-item-placeholder-zq3251:var(--color-border-item-selected-63a3p8);
    --color-border-item-selected-63a3p8:var(--color-item-selected-rz6ktw);
    --color-border-layout-side-navigation-mjh43q:var(--color-border-layout-px1i24);
    --color-border-panel-header-j4pvsn:var(--color-border-divider-default-0de9c8);
    --color-border-popover-5yl4uc:var(--color-border-dropdown-container-gb937i);
    --color-border-segment-active-trxbfe:var(--color-border-segment-default-8mo02x);
    --color-border-segment-disabled-8j0zwo:var(--color-border-segment-default-8mo02x);
    --color-border-segment-hover-epoe83:var(--color-border-segment-default-8mo02x);
    --color-border-segment-wrapper-qq00qv:var(--color-border-input-default-f3bzwh);
    --color-border-dialog-3vjyp0:var(--color-border-status-info-2zt73n);
    --color-border-tabs-shadow-l6jxjx:var(--color-grey-transparent-ywq957);
    --color-border-tabs-underline-ueuyon:var(--color-text-accent-uvfi4k);
    --color-border-tiles-disabled-n9fk5o:var(--color-background-tiles-disabled-5ikjr0);
    --color-shadow-default-08gb4j:var(--color-grey-transparent-heavy-mmz2gv);
    --color-text-button-inline-icon-default-gdb4f4:var(--color-text-link-default-rhby5q);
    --color-text-button-inline-icon-disabled-bnn5b7:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-button-inline-icon-hover-sqs5ft:var(--color-text-link-hover-br6snu);
    --color-text-button-inline-link-hover-p1ibm2:var(--color-text-button-normal-hover-20c0ob);
    --color-text-button-icon-hover-ph08st:var(--color-text-interactive-hover-j5y3wx);
    --color-text-link-button-normal-active-f0yaqx:var(--color-text-button-normal-active-fm6d53);
    --color-text-button-link-active-154jw6:var(--color-text-button-normal-active-fm6d53);
    --color-text-button-link-default-ehnnq5:var(--color-text-button-normal-default-t865au);
    --color-text-button-link-disabled-d3c5rp:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-button-link-hover-1aopta:var(--color-text-button-normal-hover-20c0ob);
    --color-text-calendar-date-hover-qy0tsn:var(--color-text-dropdown-item-default-zani00);
    --color-text-calendar-date-selected-dd6twp:var(--color-background-control-default-nub6gm);
    --color-text-column-sorting-icon-iazyfo:var(--color-text-column-header-wyzs6v);
    --color-text-control-disabled-vh7v3o:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-dropdown-footer-ks7c04:var(--color-text-form-secondary-t0glp7);
    --color-text-dropdown-group-label-8vygj0:var(--color-text-group-label-0wronh);
    --color-text-dropdown-item-dimmed-iy2k20:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-dropdown-item-disabled-pl4fy2:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-dropdown-item-secondary-77b2z6:var(--color-text-form-secondary-t0glp7);
    --color-text-expandable-section-navigation-icon-default-wh1lig:var(--color-text-interactive-default-1o1pl2);
    --color-border-expandable-section-default-oi0xfr:var(--color-border-divider-default-0de9c8);
    --color-text-form-label-84uan1:var(--color-text-form-default-jsw02x);
    --color-text-input-placeholder-disabled-9zawsz:var(--color-text-input-disabled-as3mmb);
    --color-text-label-tv95tq:var(--color-text-form-label-84uan1);
    --color-text-key-value-pairs-value-xmrgpn:var(--color-text-body-default-gtm97i);
    --color-text-link-secondary-default-6ui3do:var(--color-text-link-default-rhby5q);
    --color-text-link-secondary-hover-oy8eob:var(--color-text-link-hover-br6snu);
    --color-text-link-info-default-mgpk1w:var(--color-text-link-default-rhby5q);
    --color-text-link-info-hover-os951m:var(--color-text-link-hover-br6snu);
    --color-text-alert-default-rwuv9g:var(--color-text-body-default-gtm97i);
    --color-text-pagination-page-number-active-disabled-uj04sc:var(--color-text-interactive-disabled-bhh1zo);
    --color-text-segment-hover-9dj6y6:var(--color-text-button-normal-hover-20c0ob);
    --color-text-flashbar-icon-error-cb5ezy:var(--color-text-status-error-ak9yp5);
    --color-text-flashbar-icon-info-lobe9x:var(--color-text-status-info-c3q8b6);
    --color-text-flashbar-icon-success-tqehsy:var(--color-text-status-success-9wcobb);
    --color-text-flashbar-icon-warning-ojtnxb:var(--color-text-status-warning-avkj4w);
    --color-text-alert-icon-error-tlrirw:var(--color-text-status-error-ak9yp5);
    --color-text-alert-icon-info-rwhxzh:var(--color-text-status-info-c3q8b6);
    --color-text-alert-icon-success-6ptnga:var(--color-text-status-success-9wcobb);
    --color-text-alert-icon-warning-jj09xr:var(--color-text-status-warning-avkj4w);
    --color-text-tutorial-hotspot-default-7f0h47:var(--color-text-link-default-rhby5q);
    --color-text-tutorial-hotspot-hover-jkzh5r:var(--color-text-link-hover-br6snu);
    --color-background-badge-grey-5tl0uy:var(--color-background-notification-grey-68rc4b);
  }
  @media not print {
    .awsui-dark-mode .awsui-context-app-layout-toolbar:not(#\9), .awsui-context-app-layout-toolbar.awsui-dark-mode:not(#\9) {
      --color-background-layout-main-7z8vaj:var(--color-neutral-900-v0mtoc);
    }
  }
  @media not print {
    .awsui-dark-mode .awsui-context-flashbar-warning:not(#\9):where(:not(.awsui-one-theme):not(.awsui-one-theme *)), .awsui-context-flashbar-warning:not(#\9):where(:not(.awsui-one-theme):not(.awsui-one-theme *)).awsui-dark-mode {
      --color-background-inline-code-967m4q:rgba(0, 0, 0, 0.1);
    }
  }
  @media not print {
    .awsui-dark-mode .awsui-context-alert:not(#\9):where(:not(.awsui-one-theme):not(.awsui-one-theme *)), .awsui-context-alert:not(#\9):where(:not(.awsui-one-theme):not(.awsui-one-theme *)).awsui-dark-mode {
      --color-background-button-normal-active-zqw8xz:rgba(255, 255, 255, 0.15);
      --color-background-button-normal-hover-trus5n:rgba(255, 255, 255, 0.1);
      --color-border-item-focused-ditkrb:var(--color-neutral-100-gk3lvf);
      --color-text-button-normal-default-t865au:var(--color-neutral-300-08wi6k);
      --color-text-button-normal-hover-20c0ob:var(--color-white-p1zlvy);
    }
  }
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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;
  }
}
@keyframes awsui-status-icon-error-35003c {
  0% {
    transform: translateX(-5px);
    animation-timing-function: linear;
  }
  50% {
    transform: translateX(5px);
    animation-timing-function: var(--motion-easing-refresh-only-a-ccyqaz, cubic-bezier(0, 0, 0, 1));
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes awsui-scale-popup-35003c {
  0% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
:root {
  --awsui-version-info-701afebd: true;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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
*/
/* stylelint-disable @cloudscape-design/no-implicit-descendant */
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-implicit-descendant */
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-implicit-descendant */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_box_18wu0_4mxoy_172.awsui_p-variant_18wu0_4mxoy_172.awsui_color-default_18wu0_4mxoy_172:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_b-variant_18wu0_4mxoy_172.awsui_color-default_18wu0_4mxoy_172:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_strong-variant_18wu0_4mxoy_172.awsui_color-default_18wu0_4mxoy_172:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_code-variant_18wu0_4mxoy_172.awsui_color-default_18wu0_4mxoy_172:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_pre-variant_18wu0_4mxoy_172.awsui_color-default_18wu0_4mxoy_172:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_samp-variant_18wu0_4mxoy_172.awsui_color-default_18wu0_4mxoy_172:not(#\9) {
  color: var(--color-text-body-default-gtm97i, #0f141a);
}

.awsui_box_18wu0_4mxoy_172.awsui_h1-variant_18wu0_4mxoy_176.awsui_color-default_18wu0_4mxoy_172:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_h2-variant_18wu0_4mxoy_176.awsui_color-default_18wu0_4mxoy_172:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_h3-variant_18wu0_4mxoy_176.awsui_color-default_18wu0_4mxoy_172:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_h4-variant_18wu0_4mxoy_176.awsui_color-default_18wu0_4mxoy_172:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_h5-variant_18wu0_4mxoy_176.awsui_color-default_18wu0_4mxoy_172:not(#\9) {
  color: var(--color-text-heading-default-pn83b8, #0f141a);
}

.awsui_box_18wu0_4mxoy_172.awsui_small-variant_18wu0_4mxoy_180.awsui_color-default_18wu0_4mxoy_172:not(#\9) {
  color: var(--color-text-small-vk4o1c, #656871);
}

.awsui_box_18wu0_4mxoy_172.awsui_a-variant_18wu0_4mxoy_184.awsui_color-default_18wu0_4mxoy_172:not(#\9) {
  color: var(--color-text-link-default-rhby5q, #006ce0);
}

.awsui_box_18wu0_4mxoy_172.awsui_small-variant_18wu0_4mxoy_180.awsui_font-size-default_18wu0_4mxoy_188:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_code-variant_18wu0_4mxoy_172.awsui_font-size-default_18wu0_4mxoy_188:not(#\9) {
  font-size: var(--font-size-body-s-smc8cv, 12px);
  line-height: var(--line-height-body-s-nu5hx1, 16px);
  letter-spacing: var(--letter-spacing-body-s-gq78ok, 0.005em);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-variant_18wu0_4mxoy_172.awsui_font-size-default_18wu0_4mxoy_188:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_b-variant_18wu0_4mxoy_172.awsui_font-size-default_18wu0_4mxoy_188:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_strong-variant_18wu0_4mxoy_172.awsui_font-size-default_18wu0_4mxoy_188:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_pre-variant_18wu0_4mxoy_172.awsui_font-size-default_18wu0_4mxoy_188:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_samp-variant_18wu0_4mxoy_172.awsui_font-size-default_18wu0_4mxoy_188:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_a-variant_18wu0_4mxoy_184.awsui_font-size-default_18wu0_4mxoy_188:not(#\9) {
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
}

.awsui_box_18wu0_4mxoy_172.awsui_h5-variant_18wu0_4mxoy_176.awsui_font-size-default_18wu0_4mxoy_188:not(#\9) {
  font-size: var(--font-size-heading-xs-j8yzxv, 14px);
  line-height: var(--line-height-heading-xs-q9j004, 18px);
  letter-spacing: var(--letter-spacing-heading-xs-fgog7a, normal);
}

.awsui_box_18wu0_4mxoy_172.awsui_h4-variant_18wu0_4mxoy_176.awsui_font-size-default_18wu0_4mxoy_188:not(#\9) {
  font-size: var(--font-size-heading-s-zp08en, 16px);
  line-height: var(--line-height-heading-s-hmi4vc, 20px);
  letter-spacing: var(--letter-spacing-heading-s-4st9ep, -0.005em);
}

.awsui_box_18wu0_4mxoy_172.awsui_h3-variant_18wu0_4mxoy_176.awsui_font-size-default_18wu0_4mxoy_188:not(#\9) {
  font-size: var(--font-size-heading-m-170yiy, 18px);
  line-height: var(--line-height-heading-m-uoaqdh, 22px);
  letter-spacing: var(--letter-spacing-heading-m-29ewnk, -0.01em);
}

.awsui_box_18wu0_4mxoy_172.awsui_h2-variant_18wu0_4mxoy_176.awsui_font-size-default_18wu0_4mxoy_188:not(#\9) {
  font-size: var(--font-size-heading-l-vnacx6, 20px);
  line-height: var(--line-height-heading-l-mg5bx6, 24px);
  letter-spacing: var(--letter-spacing-heading-l-5v6ibv, -0.015em);
}

.awsui_box_18wu0_4mxoy_172.awsui_h1-variant_18wu0_4mxoy_176.awsui_font-size-default_18wu0_4mxoy_188:not(#\9) {
  font-size: var(--font-size-heading-xl-wvkbur, 24px);
  line-height: var(--line-height-heading-xl-hko6p0, 30px);
  letter-spacing: var(--letter-spacing-heading-xl-ckkb6u, -0.02em);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-variant_18wu0_4mxoy_172.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_code-variant_18wu0_4mxoy_172.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_pre-variant_18wu0_4mxoy_172.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_samp-variant_18wu0_4mxoy_172.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_small-variant_18wu0_4mxoy_180.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_a-variant_18wu0_4mxoy_184.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9) {
  font-weight: var(--font-weight-normal-cxw1m3, 400);
}

.awsui_box_18wu0_4mxoy_172.awsui_strong-variant_18wu0_4mxoy_172.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_b-variant_18wu0_4mxoy_172.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9) {
  font-weight: var(--font-weight-bold-fo1afg, 700);
}

.awsui_box_18wu0_4mxoy_172.awsui_h5-variant_18wu0_4mxoy_176.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9) {
  font-weight: var(--font-weight-heading-xs-wqqpne, 700);
}

.awsui_box_18wu0_4mxoy_172.awsui_h4-variant_18wu0_4mxoy_176.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9) {
  font-weight: var(--font-weight-heading-s-lcx0ai, 700);
}

.awsui_box_18wu0_4mxoy_172.awsui_h3-variant_18wu0_4mxoy_176.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9) {
  font-weight: var(--font-weight-heading-m-zf82dr, 700);
}

.awsui_box_18wu0_4mxoy_172.awsui_h2-variant_18wu0_4mxoy_176.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9) {
  font-weight: var(--font-weight-heading-l-0t6dwc, 700);
}

.awsui_box_18wu0_4mxoy_172.awsui_h1-variant_18wu0_4mxoy_176.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9) {
  font-weight: var(--font-weight-heading-xl-u3m4we, 700);
}

.awsui_box_18wu0_4mxoy_172.awsui_h1-variant_18wu0_4mxoy_176:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_h2-variant_18wu0_4mxoy_176:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_h3-variant_18wu0_4mxoy_176:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_h4-variant_18wu0_4mxoy_176:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_h5-variant_18wu0_4mxoy_176:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_p-variant_18wu0_4mxoy_172:not(#\9) {
  margin-block: 0;
  margin-inline: 0;
  text-decoration: none;
  padding-block: var(--space-xxs-hwfkai, 4px);
  padding-inline: 0;
}
.awsui_box_18wu0_4mxoy_172.awsui_small-variant_18wu0_4mxoy_180:not(#\9) {
  display: inline-block;
}
.awsui_box_18wu0_4mxoy_172.awsui_code-variant_18wu0_4mxoy_172:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_pre-variant_18wu0_4mxoy_172:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_samp-variant_18wu0_4mxoy_172:not(#\9) {
  font-family: var(--font-family-monospace-q47m7k, Monaco, Menlo, Consolas, "Courier Prime", Courier, "Courier New", monospace);
  background: transparent;
}
.awsui_box_18wu0_4mxoy_172.awsui_key-label-variant_18wu0_4mxoy_271:not(#\9) {
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  font-weight: var(--font-display-label-weight-zavpeo, 700);
  color: var(--color-text-label-tv95tq, #0f141a);
  margin-block-end: var(--space-key-value-gap-9glmqc, 0px);
}
.awsui_box_18wu0_4mxoy_172.awsui_gen-ai-label-variant_18wu0_4mxoy_278:not(#\9) {
  font-size: var(--font-size-body-s-smc8cv, 12px);
  line-height: var(--line-height-body-s-nu5hx1, 16px);
  letter-spacing: var(--letter-spacing-body-s-gq78ok, 0.005em);
  font-style: italic;
  color: var(--color-text-label-gen-ai-s3390v, #7300e5);
}
.awsui_box_18wu0_4mxoy_172.awsui_value-large-variant_18wu0_4mxoy_285:not(#\9) {
  font-family: var(--font-family-display-a93nj0, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  font-size: var(--font-size-display-l-wa6woo, 42px);
  line-height: var(--line-height-display-l-vwanzp, 48px);
  letter-spacing: var(--letter-spacing-display-l-elyyxk, -0.03em);
  font-weight: var(--font-weight-display-l-h5zsi8, 700);
  -webkit-font-smoothing: var(--font-smoothing-webkit-oemolo, antialiased);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-hbm0aq, grayscale);
  color: inherit;
}
.awsui_box_18wu0_4mxoy_172.awsui_inline-code-variant_18wu0_4mxoy_295:not(#\9) {
  font-family: var(--font-family-monospace-q47m7k, Monaco, Menlo, Consolas, "Courier Prime", Courier, "Courier New", monospace);
  background: transparent;
  font-size: var(--font-size-body-s-smc8cv, 12px);
  line-height: var(--line-height-body-s-nu5hx1, 16px);
  letter-spacing: var(--letter-spacing-body-s-gq78ok, 0.005em);
  border-start-start-radius: var(--space-static-xxs-ns94dp, 4px);
  border-start-end-radius: var(--space-static-xxs-ns94dp, 4px);
  border-end-start-radius: var(--space-static-xxs-ns94dp, 4px);
  border-end-end-radius: var(--space-static-xxs-ns94dp, 4px);
  background-color: var(--color-background-inline-code-967m4q, rgba(0, 0, 0, 0.1));
  padding-block: var(--space-static-xxxs-yidks1, 2px);
  padding-inline: var(--space-static-xxs-ns94dp, 4px);
}
.awsui_box_18wu0_4mxoy_172.awsui_h1-variant_18wu0_4mxoy_176.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_h2-variant_18wu0_4mxoy_176.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_h3-variant_18wu0_4mxoy_176.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_h4-variant_18wu0_4mxoy_176.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_h5-variant_18wu0_4mxoy_176.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_value-large-variant_18wu0_4mxoy_285.awsui_font-weight-default_18wu0_4mxoy_229:not(#\9), .awsui_box_18wu0_4mxoy_172.awsui_font-weight-heavy_18wu0_4mxoy_309:not(#\9) {
  -webkit-font-smoothing: var(--font-smoothing-webkit-oemolo, antialiased);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-hbm0aq, grayscale);
}

.awsui_box_18wu0_4mxoy_172.awsui_color-inverted_18wu0_4mxoy_314:not(#\9) {
  color: var(--color-text-notification-default-w5tddq, #f9f9fa);
}
.awsui_box_18wu0_4mxoy_172.awsui_color-text-label_18wu0_4mxoy_317:not(#\9) {
  color: var(--color-text-label-tv95tq, #0f141a);
}
.awsui_box_18wu0_4mxoy_172.awsui_color-text-body-secondary_18wu0_4mxoy_320:not(#\9) {
  color: var(--color-text-body-secondary-y6dr4d, #424650);
}
.awsui_box_18wu0_4mxoy_172.awsui_color-text-status-error_18wu0_4mxoy_323:not(#\9) {
  color: var(--color-text-status-error-ak9yp5, #db0000);
}
.awsui_box_18wu0_4mxoy_172.awsui_color-text-status-success_18wu0_4mxoy_326:not(#\9) {
  color: var(--color-text-status-success-9wcobb, #00802f);
}
.awsui_box_18wu0_4mxoy_172.awsui_color-text-status-info_18wu0_4mxoy_329:not(#\9) {
  color: var(--color-text-status-info-c3q8b6, #006ce0);
}
.awsui_box_18wu0_4mxoy_172.awsui_color-text-status-inactive_18wu0_4mxoy_332:not(#\9) {
  color: var(--color-text-status-inactive-tg9r8q, #656871);
}
.awsui_box_18wu0_4mxoy_172.awsui_color-text-status-warning_18wu0_4mxoy_335:not(#\9) {
  color: var(--color-text-status-warning-avkj4w, #855900);
}
.awsui_box_18wu0_4mxoy_172.awsui_color-inherit_18wu0_4mxoy_338:not(#\9) {
  color: inherit;
}
.awsui_box_18wu0_4mxoy_172.awsui_font-size-body-s_18wu0_4mxoy_341:not(#\9) {
  font-size: var(--font-size-body-s-smc8cv, 12px);
  line-height: var(--line-height-body-s-nu5hx1, 16px);
  letter-spacing: var(--letter-spacing-body-s-gq78ok, 0.005em);
}
.awsui_box_18wu0_4mxoy_172.awsui_font-size-body-m_18wu0_4mxoy_346:not(#\9) {
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
}
.awsui_box_18wu0_4mxoy_172.awsui_font-size-heading-xs_18wu0_4mxoy_350:not(#\9) {
  font-size: var(--font-size-heading-xs-j8yzxv, 14px);
  line-height: var(--line-height-heading-xs-q9j004, 18px);
  letter-spacing: var(--letter-spacing-heading-xs-fgog7a, normal);
}
.awsui_box_18wu0_4mxoy_172.awsui_font-size-heading-s_18wu0_4mxoy_355:not(#\9) {
  font-size: var(--font-size-heading-s-zp08en, 16px);
  line-height: var(--line-height-heading-s-hmi4vc, 20px);
  letter-spacing: var(--letter-spacing-heading-s-4st9ep, -0.005em);
}
.awsui_box_18wu0_4mxoy_172.awsui_font-size-heading-m_18wu0_4mxoy_360:not(#\9) {
  font-size: var(--font-size-heading-m-170yiy, 18px);
  line-height: var(--line-height-heading-m-uoaqdh, 22px);
  letter-spacing: var(--letter-spacing-heading-m-29ewnk, -0.01em);
}
.awsui_box_18wu0_4mxoy_172.awsui_font-size-heading-l_18wu0_4mxoy_365:not(#\9) {
  font-size: var(--font-size-heading-l-vnacx6, 20px);
  line-height: var(--line-height-heading-l-mg5bx6, 24px);
  letter-spacing: var(--letter-spacing-heading-l-5v6ibv, -0.015em);
}
.awsui_box_18wu0_4mxoy_172.awsui_font-size-heading-xl_18wu0_4mxoy_370:not(#\9) {
  font-size: var(--font-size-heading-xl-wvkbur, 24px);
  line-height: var(--line-height-heading-xl-hko6p0, 30px);
  letter-spacing: var(--letter-spacing-heading-xl-ckkb6u, -0.02em);
}
.awsui_box_18wu0_4mxoy_172.awsui_font-size-display-l_18wu0_4mxoy_375:not(#\9) {
  font-size: var(--font-size-display-l-wa6woo, 42px);
  line-height: var(--line-height-display-l-vwanzp, 48px);
  letter-spacing: var(--letter-spacing-display-l-elyyxk, -0.03em);
}
.awsui_box_18wu0_4mxoy_172.awsui_font-size-display-xl_18wu0_4mxoy_380:not(#\9) {
  font-size: var(--font-size-display-xl-twzhl4, 64px);
  line-height: var(--line-height-display-xl-e5ij0u, 72px);
  letter-spacing: var(--letter-spacing-display-xl-yptw1j, -0.03em);
}
.awsui_box_18wu0_4mxoy_172.awsui_font-weight-light_18wu0_4mxoy_385:not(#\9) {
  font-weight: var(--font-weight-lighter-ldkoj5, 300);
}
.awsui_box_18wu0_4mxoy_172.awsui_font-weight-normal_18wu0_4mxoy_388:not(#\9) {
  font-weight: var(--font-weight-normal-cxw1m3, 400);
}
.awsui_box_18wu0_4mxoy_172.awsui_font-weight-bold_18wu0_4mxoy_391:not(#\9) {
  font-weight: var(--font-weight-bold-fo1afg, 700);
}
.awsui_box_18wu0_4mxoy_172.awsui_font-weight-heavy_18wu0_4mxoy_309:not(#\9) {
  font-weight: var(--font-weight-heavy-6yh4un, 700);
}

.awsui_t-left_18wu0_4mxoy_398:not(#\9) {
  text-align: start;
}

.awsui_t-right_18wu0_4mxoy_402:not(#\9) {
  text-align: end;
}

.awsui_t-center_18wu0_4mxoy_406: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
*/
/* stylelint-disable @cloudscape-design/no-implicit-descendant */
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_box_18wu0_4mxoy_172.awsui_p-n_18wu0_4mxoy_423:not(#\9) {
  padding-block: var(--space-scaled-none-nfyouv, 0px);
  padding-inline: var(--space-none-xk6qzf, 0px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-top-n_18wu0_4mxoy_428:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-n_18wu0_4mxoy_429:not(#\9) {
  padding-block-start: var(--space-scaled-none-nfyouv, 0px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-right-n_18wu0_4mxoy_433:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-n_18wu0_4mxoy_434:not(#\9) {
  padding-inline-end: var(--space-none-xk6qzf, 0px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-bottom-n_18wu0_4mxoy_438:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-n_18wu0_4mxoy_429:not(#\9) {
  padding-block-end: var(--space-scaled-none-nfyouv, 0px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-left-n_18wu0_4mxoy_443:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-n_18wu0_4mxoy_434:not(#\9) {
  padding-inline-start: var(--space-none-xk6qzf, 0px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-xxxs_18wu0_4mxoy_448:not(#\9) {
  padding-block: var(--space-scaled-xxxs-oo06c7, 2px);
  padding-inline: var(--space-xxxs-pajhad, 2px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-top-xxxs_18wu0_4mxoy_453:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-xxxs_18wu0_4mxoy_454:not(#\9) {
  padding-block-start: var(--space-scaled-xxxs-oo06c7, 2px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-right-xxxs_18wu0_4mxoy_458:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-xxxs_18wu0_4mxoy_459:not(#\9) {
  padding-inline-end: var(--space-xxxs-pajhad, 2px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-bottom-xxxs_18wu0_4mxoy_463:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-xxxs_18wu0_4mxoy_454:not(#\9) {
  padding-block-end: var(--space-scaled-xxxs-oo06c7, 2px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-left-xxxs_18wu0_4mxoy_468:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-xxxs_18wu0_4mxoy_459:not(#\9) {
  padding-inline-start: var(--space-xxxs-pajhad, 2px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-xxs_18wu0_4mxoy_473:not(#\9) {
  padding-block: var(--space-scaled-xxs-pfm1nx, 4px);
  padding-inline: var(--space-xxs-hwfkai, 4px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-top-xxs_18wu0_4mxoy_478:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-xxs_18wu0_4mxoy_479:not(#\9) {
  padding-block-start: var(--space-scaled-xxs-pfm1nx, 4px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-right-xxs_18wu0_4mxoy_483:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-xxs_18wu0_4mxoy_484:not(#\9) {
  padding-inline-end: var(--space-xxs-hwfkai, 4px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-bottom-xxs_18wu0_4mxoy_488:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-xxs_18wu0_4mxoy_479:not(#\9) {
  padding-block-end: var(--space-scaled-xxs-pfm1nx, 4px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-left-xxs_18wu0_4mxoy_493:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-xxs_18wu0_4mxoy_484:not(#\9) {
  padding-inline-start: var(--space-xxs-hwfkai, 4px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-xs_18wu0_4mxoy_498:not(#\9) {
  padding-block: var(--space-scaled-xs-xwoogq, 8px);
  padding-inline: var(--space-xs-ymlm0b, 8px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-top-xs_18wu0_4mxoy_503:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-xs_18wu0_4mxoy_504:not(#\9) {
  padding-block-start: var(--space-scaled-xs-xwoogq, 8px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-right-xs_18wu0_4mxoy_508:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-xs_18wu0_4mxoy_509:not(#\9) {
  padding-inline-end: var(--space-xs-ymlm0b, 8px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-bottom-xs_18wu0_4mxoy_513:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-xs_18wu0_4mxoy_504:not(#\9) {
  padding-block-end: var(--space-scaled-xs-xwoogq, 8px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-left-xs_18wu0_4mxoy_518:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-xs_18wu0_4mxoy_509:not(#\9) {
  padding-inline-start: var(--space-xs-ymlm0b, 8px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-s_18wu0_4mxoy_523:not(#\9) {
  padding-block: var(--space-scaled-s-8ozaad, 12px);
  padding-inline: var(--space-s-tvghoh, 12px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-top-s_18wu0_4mxoy_528:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-s_18wu0_4mxoy_529:not(#\9) {
  padding-block-start: var(--space-scaled-s-8ozaad, 12px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-right-s_18wu0_4mxoy_533:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-s_18wu0_4mxoy_534:not(#\9) {
  padding-inline-end: var(--space-s-tvghoh, 12px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-bottom-s_18wu0_4mxoy_538:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-s_18wu0_4mxoy_529:not(#\9) {
  padding-block-end: var(--space-scaled-s-8ozaad, 12px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-left-s_18wu0_4mxoy_543:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-s_18wu0_4mxoy_534:not(#\9) {
  padding-inline-start: var(--space-s-tvghoh, 12px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-m_18wu0_4mxoy_548:not(#\9) {
  padding-block: var(--space-scaled-m-m892r9, 16px);
  padding-inline: var(--space-m-dsumyt, 16px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-top-m_18wu0_4mxoy_553:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-m_18wu0_4mxoy_554:not(#\9) {
  padding-block-start: var(--space-scaled-m-m892r9, 16px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-right-m_18wu0_4mxoy_558:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-m_18wu0_4mxoy_559:not(#\9) {
  padding-inline-end: var(--space-m-dsumyt, 16px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-bottom-m_18wu0_4mxoy_563:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-m_18wu0_4mxoy_554:not(#\9) {
  padding-block-end: var(--space-scaled-m-m892r9, 16px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-left-m_18wu0_4mxoy_568:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-m_18wu0_4mxoy_559:not(#\9) {
  padding-inline-start: var(--space-m-dsumyt, 16px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-l_18wu0_4mxoy_443:not(#\9) {
  padding-block: var(--space-scaled-l-sej05l, 20px);
  padding-inline: var(--space-l-2ud1p3, 20px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-top-l_18wu0_4mxoy_578:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-l_18wu0_4mxoy_579:not(#\9) {
  padding-block-start: var(--space-scaled-l-sej05l, 20px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-right-l_18wu0_4mxoy_583:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-l_18wu0_4mxoy_584:not(#\9) {
  padding-inline-end: var(--space-l-2ud1p3, 20px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-bottom-l_18wu0_4mxoy_588:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-l_18wu0_4mxoy_579:not(#\9) {
  padding-block-end: var(--space-scaled-l-sej05l, 20px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-left-l_18wu0_4mxoy_593:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-l_18wu0_4mxoy_584:not(#\9) {
  padding-inline-start: var(--space-l-2ud1p3, 20px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-xl_18wu0_4mxoy_598:not(#\9) {
  padding-block: var(--space-scaled-xl-dunxp5, 24px);
  padding-inline: var(--space-xl-jfy3x4, 24px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-top-xl_18wu0_4mxoy_603:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-xl_18wu0_4mxoy_604:not(#\9) {
  padding-block-start: var(--space-scaled-xl-dunxp5, 24px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-right-xl_18wu0_4mxoy_608:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-xl_18wu0_4mxoy_609:not(#\9) {
  padding-inline-end: var(--space-xl-jfy3x4, 24px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-bottom-xl_18wu0_4mxoy_613:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-xl_18wu0_4mxoy_604:not(#\9) {
  padding-block-end: var(--space-scaled-xl-dunxp5, 24px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-left-xl_18wu0_4mxoy_618:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-xl_18wu0_4mxoy_609:not(#\9) {
  padding-inline-start: var(--space-xl-jfy3x4, 24px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-xxl_18wu0_4mxoy_623:not(#\9) {
  padding-block: var(--space-scaled-xxl-6wgq96, 32px);
  padding-inline: var(--space-xxl-32srm4, 32px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-top-xxl_18wu0_4mxoy_628:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-xxl_18wu0_4mxoy_629:not(#\9) {
  padding-block-start: var(--space-scaled-xxl-6wgq96, 32px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-right-xxl_18wu0_4mxoy_633:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-xxl_18wu0_4mxoy_634:not(#\9) {
  padding-inline-end: var(--space-xxl-32srm4, 32px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-bottom-xxl_18wu0_4mxoy_638:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-xxl_18wu0_4mxoy_629:not(#\9) {
  padding-block-end: var(--space-scaled-xxl-6wgq96, 32px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-left-xxl_18wu0_4mxoy_643:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-xxl_18wu0_4mxoy_634:not(#\9) {
  padding-inline-start: var(--space-xxl-32srm4, 32px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-xxxl_18wu0_4mxoy_648:not(#\9) {
  padding-block: var(--space-scaled-xxxl-hwoy7j, 40px);
  padding-inline: var(--space-xxxl-aut1u7, 40px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-top-xxxl_18wu0_4mxoy_653:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-xxxl_18wu0_4mxoy_654:not(#\9) {
  padding-block-start: var(--space-scaled-xxxl-hwoy7j, 40px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-right-xxxl_18wu0_4mxoy_658:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-xxxl_18wu0_4mxoy_659:not(#\9) {
  padding-inline-end: var(--space-xxxl-aut1u7, 40px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-bottom-xxxl_18wu0_4mxoy_663:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-vertical-xxxl_18wu0_4mxoy_654:not(#\9) {
  padding-block-end: var(--space-scaled-xxxl-hwoy7j, 40px);
}

.awsui_box_18wu0_4mxoy_172.awsui_p-left-xxxl_18wu0_4mxoy_668:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_p-horizontal-xxxl_18wu0_4mxoy_659:not(#\9) {
  padding-inline-start: var(--space-xxxl-aut1u7, 40px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-n_18wu0_4mxoy_673:not(#\9) {
  margin-block: var(--space-scaled-none-nfyouv, 0px);
  margin-inline: var(--space-none-xk6qzf, 0px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-top-n_18wu0_4mxoy_678:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-n_18wu0_4mxoy_679:not(#\9) {
  margin-block-start: var(--space-scaled-none-nfyouv, 0px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-right-n_18wu0_4mxoy_683:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-n_18wu0_4mxoy_684:not(#\9) {
  margin-inline-end: var(--space-none-xk6qzf, 0px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-bottom-n_18wu0_4mxoy_688:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-n_18wu0_4mxoy_679:not(#\9) {
  margin-block-end: var(--space-scaled-none-nfyouv, 0px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-left-n_18wu0_4mxoy_693:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-n_18wu0_4mxoy_684:not(#\9) {
  margin-inline-start: var(--space-none-xk6qzf, 0px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-xxxs_18wu0_4mxoy_698:not(#\9) {
  margin-block: var(--space-scaled-xxxs-oo06c7, 2px);
  margin-inline: var(--space-xxxs-pajhad, 2px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-top-xxxs_18wu0_4mxoy_703:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-xxxs_18wu0_4mxoy_704:not(#\9) {
  margin-block-start: var(--space-scaled-xxxs-oo06c7, 2px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-right-xxxs_18wu0_4mxoy_708:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-xxxs_18wu0_4mxoy_709:not(#\9) {
  margin-inline-end: var(--space-xxxs-pajhad, 2px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-bottom-xxxs_18wu0_4mxoy_713:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-xxxs_18wu0_4mxoy_704:not(#\9) {
  margin-block-end: var(--space-scaled-xxxs-oo06c7, 2px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-left-xxxs_18wu0_4mxoy_718:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-xxxs_18wu0_4mxoy_709:not(#\9) {
  margin-inline-start: var(--space-xxxs-pajhad, 2px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-xxs_18wu0_4mxoy_723:not(#\9) {
  margin-block: var(--space-scaled-xxs-pfm1nx, 4px);
  margin-inline: var(--space-xxs-hwfkai, 4px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-top-xxs_18wu0_4mxoy_728:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-xxs_18wu0_4mxoy_729:not(#\9) {
  margin-block-start: var(--space-scaled-xxs-pfm1nx, 4px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-right-xxs_18wu0_4mxoy_733:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-xxs_18wu0_4mxoy_734:not(#\9) {
  margin-inline-end: var(--space-xxs-hwfkai, 4px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-bottom-xxs_18wu0_4mxoy_738:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-xxs_18wu0_4mxoy_729:not(#\9) {
  margin-block-end: var(--space-scaled-xxs-pfm1nx, 4px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-left-xxs_18wu0_4mxoy_743:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-xxs_18wu0_4mxoy_734:not(#\9) {
  margin-inline-start: var(--space-xxs-hwfkai, 4px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-xs_18wu0_4mxoy_748:not(#\9) {
  margin-block: var(--space-scaled-xs-xwoogq, 8px);
  margin-inline: var(--space-xs-ymlm0b, 8px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-top-xs_18wu0_4mxoy_753:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-xs_18wu0_4mxoy_754:not(#\9) {
  margin-block-start: var(--space-scaled-xs-xwoogq, 8px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-right-xs_18wu0_4mxoy_758:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-xs_18wu0_4mxoy_759:not(#\9) {
  margin-inline-end: var(--space-xs-ymlm0b, 8px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-bottom-xs_18wu0_4mxoy_763:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-xs_18wu0_4mxoy_754:not(#\9) {
  margin-block-end: var(--space-scaled-xs-xwoogq, 8px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-left-xs_18wu0_4mxoy_768:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-xs_18wu0_4mxoy_759:not(#\9) {
  margin-inline-start: var(--space-xs-ymlm0b, 8px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-s_18wu0_4mxoy_773:not(#\9) {
  margin-block: var(--space-scaled-s-8ozaad, 12px);
  margin-inline: var(--space-s-tvghoh, 12px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-top-s_18wu0_4mxoy_778:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-s_18wu0_4mxoy_779:not(#\9) {
  margin-block-start: var(--space-scaled-s-8ozaad, 12px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-right-s_18wu0_4mxoy_783:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-s_18wu0_4mxoy_784:not(#\9) {
  margin-inline-end: var(--space-s-tvghoh, 12px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-bottom-s_18wu0_4mxoy_788:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-s_18wu0_4mxoy_779:not(#\9) {
  margin-block-end: var(--space-scaled-s-8ozaad, 12px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-left-s_18wu0_4mxoy_793:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-s_18wu0_4mxoy_784:not(#\9) {
  margin-inline-start: var(--space-s-tvghoh, 12px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-m_18wu0_4mxoy_798:not(#\9) {
  margin-block: var(--space-scaled-m-m892r9, 16px);
  margin-inline: var(--space-m-dsumyt, 16px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-top-m_18wu0_4mxoy_803:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-m_18wu0_4mxoy_804:not(#\9) {
  margin-block-start: var(--space-scaled-m-m892r9, 16px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-right-m_18wu0_4mxoy_808:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-m_18wu0_4mxoy_809:not(#\9) {
  margin-inline-end: var(--space-m-dsumyt, 16px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-bottom-m_18wu0_4mxoy_813:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-m_18wu0_4mxoy_804:not(#\9) {
  margin-block-end: var(--space-scaled-m-m892r9, 16px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-left-m_18wu0_4mxoy_818:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-m_18wu0_4mxoy_809:not(#\9) {
  margin-inline-start: var(--space-m-dsumyt, 16px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-l_18wu0_4mxoy_693:not(#\9) {
  margin-block: var(--space-scaled-l-sej05l, 20px);
  margin-inline: var(--space-l-2ud1p3, 20px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-top-l_18wu0_4mxoy_828:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-l_18wu0_4mxoy_829:not(#\9) {
  margin-block-start: var(--space-scaled-l-sej05l, 20px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-right-l_18wu0_4mxoy_833:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-l_18wu0_4mxoy_834:not(#\9) {
  margin-inline-end: var(--space-l-2ud1p3, 20px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-bottom-l_18wu0_4mxoy_838:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-l_18wu0_4mxoy_829:not(#\9) {
  margin-block-end: var(--space-scaled-l-sej05l, 20px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-left-l_18wu0_4mxoy_843:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-l_18wu0_4mxoy_834:not(#\9) {
  margin-inline-start: var(--space-l-2ud1p3, 20px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-xl_18wu0_4mxoy_848:not(#\9) {
  margin-block: var(--space-scaled-xl-dunxp5, 24px);
  margin-inline: var(--space-xl-jfy3x4, 24px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-top-xl_18wu0_4mxoy_853:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-xl_18wu0_4mxoy_854:not(#\9) {
  margin-block-start: var(--space-scaled-xl-dunxp5, 24px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-right-xl_18wu0_4mxoy_858:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-xl_18wu0_4mxoy_859:not(#\9) {
  margin-inline-end: var(--space-xl-jfy3x4, 24px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-bottom-xl_18wu0_4mxoy_863:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-xl_18wu0_4mxoy_854:not(#\9) {
  margin-block-end: var(--space-scaled-xl-dunxp5, 24px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-left-xl_18wu0_4mxoy_868:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-xl_18wu0_4mxoy_859:not(#\9) {
  margin-inline-start: var(--space-xl-jfy3x4, 24px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-xxl_18wu0_4mxoy_873:not(#\9) {
  margin-block: var(--space-scaled-xxl-6wgq96, 32px);
  margin-inline: var(--space-xxl-32srm4, 32px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-top-xxl_18wu0_4mxoy_878:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-xxl_18wu0_4mxoy_879:not(#\9) {
  margin-block-start: var(--space-scaled-xxl-6wgq96, 32px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-right-xxl_18wu0_4mxoy_883:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-xxl_18wu0_4mxoy_884:not(#\9) {
  margin-inline-end: var(--space-xxl-32srm4, 32px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-bottom-xxl_18wu0_4mxoy_888:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-xxl_18wu0_4mxoy_879:not(#\9) {
  margin-block-end: var(--space-scaled-xxl-6wgq96, 32px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-left-xxl_18wu0_4mxoy_893:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-xxl_18wu0_4mxoy_884:not(#\9) {
  margin-inline-start: var(--space-xxl-32srm4, 32px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-xxxl_18wu0_4mxoy_898:not(#\9) {
  margin-block: var(--space-scaled-xxxl-hwoy7j, 40px);
  margin-inline: var(--space-xxxl-aut1u7, 40px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-top-xxxl_18wu0_4mxoy_903:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-xxxl_18wu0_4mxoy_904:not(#\9) {
  margin-block-start: var(--space-scaled-xxxl-hwoy7j, 40px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-right-xxxl_18wu0_4mxoy_908:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-xxxl_18wu0_4mxoy_909:not(#\9) {
  margin-inline-end: var(--space-xxxl-aut1u7, 40px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-bottom-xxxl_18wu0_4mxoy_913:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-vertical-xxxl_18wu0_4mxoy_904:not(#\9) {
  margin-block-end: var(--space-scaled-xxxl-hwoy7j, 40px);
}

.awsui_box_18wu0_4mxoy_172.awsui_m-left-xxxl_18wu0_4mxoy_918:not(#\9),
.awsui_box_18wu0_4mxoy_172.awsui_m-horizontal-xxxl_18wu0_4mxoy_909:not(#\9) {
  margin-inline-start: var(--space-xxxl-aut1u7, 40px);
}

.awsui_box_18wu0_4mxoy_172.awsui_d-block_18wu0_4mxoy_923:not(#\9) {
  display: block;
}
.awsui_box_18wu0_4mxoy_172.awsui_d-inline_18wu0_4mxoy_926:not(#\9) {
  display: inline;
}
.awsui_box_18wu0_4mxoy_172.awsui_d-inline-block_18wu0_4mxoy_929:not(#\9) {
  display: inline-block;
}
.awsui_box_18wu0_4mxoy_172.awsui_d-none_18wu0_4mxoy_932:not(#\9) {
  display: none;
}

.awsui_f-left_18wu0_4mxoy_936:not(#\9) {
  float: inline-start;
}

.awsui_f-right_18wu0_4mxoy_940:not(#\9) {
  float: inline-end;
}

/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_visual-accent_18wu0_4mxoy_948:not(#\9) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--space-xxs-hwfkai, 4px);
  padding-inline: var(--space-xs-ymlm0b, 8px);
  box-sizing: border-box;
}

.awsui_visual-accent-radius-xxxs_18wu0_4mxoy_957:not(#\9) {
  border-start-start-radius: var(--space-xxxs-pajhad, 2px);
  border-start-end-radius: var(--space-xxxs-pajhad, 2px);
  border-end-start-radius: var(--space-xxxs-pajhad, 2px);
  border-end-end-radius: var(--space-xxxs-pajhad, 2px);
}

.awsui_visual-accent-radius-xxs_18wu0_4mxoy_964:not(#\9) {
  border-start-start-radius: var(--space-xxs-hwfkai, 4px);
  border-start-end-radius: var(--space-xxs-hwfkai, 4px);
  border-end-start-radius: var(--space-xxs-hwfkai, 4px);
  border-end-end-radius: var(--space-xxs-hwfkai, 4px);
}

.awsui_visual-accent-radius-xs_18wu0_4mxoy_971:not(#\9) {
  border-start-start-radius: var(--space-xs-ymlm0b, 8px);
  border-start-end-radius: var(--space-xs-ymlm0b, 8px);
  border-end-start-radius: var(--space-xs-ymlm0b, 8px);
  border-end-end-radius: var(--space-xs-ymlm0b, 8px);
}

.awsui_visual-accent-radius-s_18wu0_4mxoy_978:not(#\9) {
  border-start-start-radius: var(--space-s-tvghoh, 12px);
  border-start-end-radius: var(--space-s-tvghoh, 12px);
  border-end-start-radius: var(--space-s-tvghoh, 12px);
  border-end-end-radius: var(--space-s-tvghoh, 12px);
}

.awsui_visual-accent-radius-m_18wu0_4mxoy_985:not(#\9) {
  border-start-start-radius: var(--space-m-dsumyt, 16px);
  border-start-end-radius: var(--space-m-dsumyt, 16px);
  border-end-start-radius: var(--space-m-dsumyt, 16px);
  border-end-end-radius: var(--space-m-dsumyt, 16px);
}

.awsui_visual-accent-radius-l_18wu0_4mxoy_992:not(#\9) {
  border-start-start-radius: var(--space-l-2ud1p3, 20px);
  border-start-end-radius: var(--space-l-2ud1p3, 20px);
  border-end-start-radius: var(--space-l-2ud1p3, 20px);
  border-end-end-radius: var(--space-l-2ud1p3, 20px);
}

.awsui_visual-accent-radius-xl_18wu0_4mxoy_999:not(#\9) {
  border-start-start-radius: var(--space-xl-jfy3x4, 24px);
  border-start-end-radius: var(--space-xl-jfy3x4, 24px);
  border-end-start-radius: var(--space-xl-jfy3x4, 24px);
  border-end-end-radius: var(--space-xl-jfy3x4, 24px);
}

.awsui_visual-accent-radius-xxl_18wu0_4mxoy_1006:not(#\9) {
  border-start-start-radius: var(--space-xxl-32srm4, 32px);
  border-start-end-radius: var(--space-xxl-32srm4, 32px);
  border-end-start-radius: var(--space-xxl-32srm4, 32px);
  border-end-end-radius: var(--space-xxl-32srm4, 32px);
}

.awsui_visual-accent-radius-xxxl_18wu0_4mxoy_1013:not(#\9) {
  border-start-start-radius: var(--space-xxxl-aut1u7, 40px);
  border-start-end-radius: var(--space-xxxl-aut1u7, 40px);
  border-end-start-radius: var(--space-xxxl-aut1u7, 40px);
  border-end-end-radius: var(--space-xxxl-aut1u7, 40px);
}

.awsui_visual-accent-radius-full_18wu0_4mxoy_1020:not(#\9) {
  border-start-start-radius: 50%;
  border-start-end-radius: 50%;
  border-end-start-radius: 50%;
  border-end-end-radius: 50%;
}

.awsui_visual-accent-aspect-auto_18wu0_4mxoy_1027:not(#\9) {
  aspect-ratio: auto;
  inline-size: auto;
}

.awsui_visual-accent-aspect-equal_18wu0_4mxoy_1032:not(#\9) {
  padding-block: var(--space-xs-ymlm0b, 8px);
  padding-inline: var(--space-xs-ymlm0b, 8px);
  aspect-ratio: 1/1;
  overflow: hidden;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
}

.awsui_box_18wu0_4mxoy_172.awsui_visual-accent_18wu0_4mxoy_948.awsui_visual-accent-red_18wu0_4mxoy_1040:not(#\9) {
  background-color: var(--color-background-visual-accent-red-bit8yt, #ffe0e0);
  color: var(--color-text-visual-accent-red-onxk95, #c20000);
}

.awsui_box_18wu0_4mxoy_172.awsui_visual-accent_18wu0_4mxoy_948.awsui_visual-accent-yellow_18wu0_4mxoy_1045:not(#\9) {
  background-color: var(--color-background-visual-accent-yellow-qsxu4s, #fffbbd);
  color: var(--color-text-visual-accent-yellow-sx6w4g, #855900);
}

.awsui_box_18wu0_4mxoy_172.awsui_visual-accent_18wu0_4mxoy_948.awsui_visual-accent-indigo_18wu0_4mxoy_1050:not(#\9) {
  background-color: var(--color-background-visual-accent-indigo-edos35, #dbe4ff);
  color: var(--color-text-visual-accent-indigo-u9dybt, #003b8f);
}

.awsui_box_18wu0_4mxoy_172.awsui_visual-accent_18wu0_4mxoy_948.awsui_visual-accent-green_18wu0_4mxoy_1055:not(#\9) {
  background-color: var(--color-background-visual-accent-green-r91q20, #d9ffd6);
  color: var(--color-text-visual-accent-green-bmtqm3, #00802f);
}

.awsui_box_18wu0_4mxoy_172.awsui_visual-accent_18wu0_4mxoy_948.awsui_visual-accent-orange_18wu0_4mxoy_1060:not(#\9) {
  background-color: var(--color-background-visual-accent-orange-q2umnc, rgba(255, 224, 214, 0.6));
  color: var(--color-text-visual-accent-orange-wr2zkf, #a82700);
}

.awsui_box_18wu0_4mxoy_172.awsui_visual-accent_18wu0_4mxoy_948.awsui_visual-accent-purple_18wu0_4mxoy_1065:not(#\9) {
  background-color: var(--color-background-visual-accent-purple-kq93ng, rgba(242, 229, 255, 0.6));
  color: var(--color-text-visual-accent-purple-3hhab5, #962eff);
}

.awsui_box_18wu0_4mxoy_172.awsui_visual-accent_18wu0_4mxoy_948.awsui_visual-accent-lime_18wu0_4mxoy_1070:not(#\9) {
  background-color: var(--color-background-visual-accent-lime-j1xkep, #ebffcc);
  color: var(--color-text-visual-accent-lime-of82ws, #007000);
}

.awsui_box_18wu0_4mxoy_172.awsui_visual-accent_18wu0_4mxoy_948.awsui_visual-accent-grey_18wu0_4mxoy_1075:not(#\9) {
  background-color: var(--color-background-visual-accent-grey-ojj5z6, #ebebf0);
  color: var(--color-text-visual-accent-grey-o560dq, #161d26);
}

.awsui_box_18wu0_4mxoy_172.awsui_visual-accent_18wu0_4mxoy_948.awsui_visual-accent-teal_18wu0_4mxoy_1080:not(#\9) {
  background-color: var(--color-background-visual-accent-teal-8hzzqm, rgba(204, 255, 252, 0.7));
  color: var(--color-text-visual-accent-teal-zh5vuh, #008077);
}

.awsui_box_18wu0_4mxoy_172.awsui_visual-accent_18wu0_4mxoy_948.awsui_visual-accent-blue_18wu0_4mxoy_1085:not(#\9) {
  background-color: var(--color-background-visual-accent-blue-hn33k0, rgba(209, 241, 255, 0.6));
  color: var(--color-text-visual-accent-blue-qq3miy, #006ce0);
}

.awsui_box_18wu0_4mxoy_172.awsui_visual-accent_18wu0_4mxoy_948.awsui_visual-accent-violet_18wu0_4mxoy_1090:not(#\9) {
  background-color: var(--color-background-visual-accent-violet-2mvriz, rgba(232, 229, 255, 0.6));
  color: var(--color-text-visual-accent-violet-t426e9, #6842ff);
}

.awsui_box_18wu0_4mxoy_172.awsui_visual-accent_18wu0_4mxoy_948.awsui_visual-accent-magenta_18wu0_4mxoy_1095:not(#\9) {
  background-color: var(--color-background-visual-accent-magenta-goqypd, rgba(255, 224, 251, 0.6));
  color: var(--color-text-visual-accent-magenta-416j2z, #b2008f);
}

.awsui_box_18wu0_4mxoy_172.awsui_visual-accent_18wu0_4mxoy_948.awsui_visual-accent-pink_18wu0_4mxoy_1100:not(#\9) {
  background-color: var(--color-background-visual-accent-pink-8ha8b6, rgba(255, 224, 240, 0.7));
  color: var(--color-text-visual-accent-pink-bj4hom, #bb005d);
}

.awsui_box_18wu0_4mxoy_172.awsui_visual-accent_18wu0_4mxoy_948.awsui_visual-accent-amber_18wu0_4mxoy_1105:not(#\9) {
  background-color: var(--color-background-visual-accent-amber-fvrvm3, rgba(255, 232, 189, 0.7));
  color: var(--color-text-visual-accent-amber-l4myqa, #9e3700);
}

.awsui_root_18wu0_4mxoy_1110:not(#\9) {
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open 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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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_icon_h11ix_abdih_189:not(#\9) {
  position: relative;
  display: inline-block;
  vertical-align: top;
  /* stylelint-disable-next-line selector-max-type */
  /* stylelint-disable selector-max-type, selector-max-universal */
  /* stylelint-enable selector-max-type, selector-max-universal */
}
.awsui_icon-flex-height_h11ix_abdih_197:not(#\9) {
  display: inline-flex;
  align-items: center;
}
.awsui_icon_h11ix_abdih_189 > svg:not(#\9) {
  pointer-events: none;
}
.awsui_icon_h11ix_abdih_189 > svg:not(#\9) {
  fill: none;
}
.awsui_icon_h11ix_abdih_189 > svg *:not(#\9) {
  stroke: currentColor;
}
.awsui_icon_h11ix_abdih_189 > svg .stroke-linejoin-round:not(#\9) {
  stroke-linejoin: round;
}
.awsui_icon_h11ix_abdih_189 > svg .stroke-linecap-square:not(#\9) {
  stroke-linecap: square;
}
.awsui_icon_h11ix_abdih_189 > svg .stroke-linecap-round:not(#\9) {
  stroke-linecap: round;
}
.awsui_icon_h11ix_abdih_189 > svg .filled:not(#\9) {
  fill: currentColor;
}
.awsui_icon_h11ix_abdih_189 > svg .no-stroke:not(#\9) {
  stroke: none;
}
.awsui_icon_h11ix_abdih_189.awsui_size-x-small_h11ix_abdih_225:not(#\9) {
  inline-size: 12px;
  box-sizing: border-box;
}
.awsui_icon_h11ix_abdih_189.awsui_size-x-small-mapped-height_h11ix_abdih_229:not(#\9) {
  block-size: var(--line-height-body-s-nu5hx1, 16px);
  padding-block: calc((var(--line-height-body-s-nu5hx1, 16px) - 12px) / 2);
  padding-inline: 0;
}
.awsui_icon_h11ix_abdih_189.awsui_size-x-small_h11ix_abdih_225 > svg:not(#\9),
.awsui_icon_h11ix_abdih_189.awsui_size-x-small_h11ix_abdih_225 > img:not(#\9) {
  inline-size: 12px;
  block-size: 12px;
  vertical-align: top;
}
.awsui_icon_h11ix_abdih_189.awsui_size-x-small_h11ix_abdih_225 > svg:not(#\9),
.awsui_icon_h11ix_abdih_189.awsui_size-x-small_h11ix_abdih_225 > svg *:not(#\9) {
  stroke-width: calc(var(--border-width-icon-x-small-45lnog, 1.5px) / 0.75);
}
.awsui_icon_h11ix_abdih_189.awsui_size-small_h11ix_abdih_244:not(#\9) {
  inline-size: var(--size-icon-normal-levt08, 16px);
  box-sizing: border-box;
}
.awsui_icon_h11ix_abdih_189.awsui_size-small-mapped-height_h11ix_abdih_248:not(#\9) {
  block-size: var(--line-height-body-s-nu5hx1, 16px);
  padding-block: calc((var(--line-height-body-s-nu5hx1, 16px) - var(--size-icon-normal-levt08, 16px)) / 2);
  padding-inline: 0;
}
.awsui_icon_h11ix_abdih_189.awsui_size-small_h11ix_abdih_244 > svg:not(#\9),
.awsui_icon_h11ix_abdih_189.awsui_size-small_h11ix_abdih_244 > img:not(#\9) {
  inline-size: var(--size-icon-normal-levt08, 16px);
  block-size: var(--size-icon-normal-levt08, 16px);
  vertical-align: top;
}
.awsui_icon_h11ix_abdih_189.awsui_size-small_h11ix_abdih_244 > svg:not(#\9),
.awsui_icon_h11ix_abdih_189.awsui_size-small_h11ix_abdih_244 > svg *:not(#\9) {
  stroke-width: calc(var(--border-width-icon-small-z55i5t, 2px) / 1);
}
.awsui_icon_h11ix_abdih_189.awsui_size-normal_h11ix_abdih_263:not(#\9) {
  inline-size: var(--size-icon-normal-levt08, 16px);
  box-sizing: border-box;
}
.awsui_icon_h11ix_abdih_189.awsui_size-normal-mapped-height_h11ix_abdih_267:not(#\9) {
  block-size: var(--line-height-body-m-2mh3ke, 20px);
  padding-block: calc((var(--line-height-body-m-2mh3ke, 20px) - var(--size-icon-normal-levt08, 16px)) / 2);
  padding-inline: 0;
}
.awsui_icon_h11ix_abdih_189.awsui_size-normal_h11ix_abdih_263 > svg:not(#\9),
.awsui_icon_h11ix_abdih_189.awsui_size-normal_h11ix_abdih_263 > img:not(#\9) {
  inline-size: var(--size-icon-normal-levt08, 16px);
  block-size: var(--size-icon-normal-levt08, 16px);
  vertical-align: top;
}
.awsui_icon_h11ix_abdih_189.awsui_size-normal_h11ix_abdih_263 > svg:not(#\9),
.awsui_icon_h11ix_abdih_189.awsui_size-normal_h11ix_abdih_263 > svg *:not(#\9) {
  stroke-width: calc(var(--border-width-icon-normal-9h7vj7, 2px) / 1);
}
.awsui_icon_h11ix_abdih_189.awsui_size-medium_h11ix_abdih_282:not(#\9) {
  inline-size: var(--size-icon-medium-uv8xcz, 20px);
  box-sizing: border-box;
}
.awsui_icon_h11ix_abdih_189.awsui_size-medium-mapped-height_h11ix_abdih_286:not(#\9) {
  block-size: var(--line-height-heading-l-mg5bx6, 24px);
  padding-block: calc((var(--line-height-heading-l-mg5bx6, 24px) - var(--size-icon-medium-uv8xcz, 20px)) / 2);
  padding-inline: 0;
}
.awsui_icon_h11ix_abdih_189.awsui_size-medium_h11ix_abdih_282 > svg:not(#\9),
.awsui_icon_h11ix_abdih_189.awsui_size-medium_h11ix_abdih_282 > img:not(#\9) {
  inline-size: var(--size-icon-medium-uv8xcz, 20px);
  block-size: var(--size-icon-medium-uv8xcz, 20px);
  vertical-align: top;
}
.awsui_icon_h11ix_abdih_189.awsui_size-medium_h11ix_abdih_282 > svg:not(#\9),
.awsui_icon_h11ix_abdih_189.awsui_size-medium_h11ix_abdih_282 > svg *:not(#\9) {
  stroke-width: calc(var(--border-width-icon-medium-b7icqv, 2px) / 1.25);
}
.awsui_icon_h11ix_abdih_189.awsui_size-big_h11ix_abdih_301:not(#\9) {
  inline-size: var(--size-icon-big-7pq9l3, 32px);
  box-sizing: border-box;
}
.awsui_icon_h11ix_abdih_189.awsui_size-big-mapped-height_h11ix_abdih_305:not(#\9) {
  block-size: var(--line-height-heading-xl-hko6p0, 30px);
  padding-block: calc((var(--line-height-heading-xl-hko6p0, 30px) - var(--size-icon-big-7pq9l3, 32px)) / 2);
  padding-inline: 0;
}
.awsui_icon_h11ix_abdih_189.awsui_size-big_h11ix_abdih_301 > svg:not(#\9),
.awsui_icon_h11ix_abdih_189.awsui_size-big_h11ix_abdih_301 > img:not(#\9) {
  inline-size: var(--size-icon-big-7pq9l3, 32px);
  block-size: var(--size-icon-big-7pq9l3, 32px);
  vertical-align: top;
}
.awsui_icon_h11ix_abdih_189.awsui_size-big_h11ix_abdih_301 > svg:not(#\9),
.awsui_icon_h11ix_abdih_189.awsui_size-big_h11ix_abdih_301 > svg *:not(#\9) {
  stroke-width: calc(var(--border-width-icon-big-ymgy42, 3px) / 2);
}
.awsui_icon_h11ix_abdih_189.awsui_size-large_h11ix_abdih_320:not(#\9) {
  inline-size: var(--size-icon-large-mb6y6y, 48px);
  box-sizing: border-box;
}
.awsui_icon_h11ix_abdih_189.awsui_size-large-mapped-height_h11ix_abdih_324:not(#\9) {
  block-size: var(--line-height-display-l-vwanzp, 48px);
  padding-block: calc((var(--line-height-display-l-vwanzp, 48px) - var(--size-icon-large-mb6y6y, 48px)) / 2);
  padding-inline: 0;
}
.awsui_icon_h11ix_abdih_189.awsui_size-large_h11ix_abdih_320 > svg:not(#\9),
.awsui_icon_h11ix_abdih_189.awsui_size-large_h11ix_abdih_320 > img:not(#\9) {
  inline-size: var(--size-icon-large-mb6y6y, 48px);
  block-size: var(--size-icon-large-mb6y6y, 48px);
  vertical-align: top;
}
.awsui_icon_h11ix_abdih_189.awsui_size-large_h11ix_abdih_320 > svg:not(#\9),
.awsui_icon_h11ix_abdih_189.awsui_size-large_h11ix_abdih_320 > svg *:not(#\9) {
  stroke-width: calc(var(--border-width-icon-large-u645rg, 4px) / 3);
}
.awsui_icon_h11ix_abdih_189.awsui_variant-normal_h11ix_abdih_339:not(#\9) {
  color: currentColor;
}
.awsui_icon_h11ix_abdih_189.awsui_variant-disabled_h11ix_abdih_342:not(#\9) {
  color: var(--color-text-interactive-disabled-bhh1zo, #b4b4bb);
}
.awsui_icon_h11ix_abdih_189.awsui_variant-inverted_h11ix_abdih_345:not(#\9) {
  color: var(--color-text-inverted-my1sxo, #ffffff);
}
.awsui_icon_h11ix_abdih_189.awsui_variant-subtle_h11ix_abdih_348:not(#\9) {
  color: var(--color-text-icon-subtle-7e5fex, #656871);
}
.awsui_icon_h11ix_abdih_189.awsui_variant-warning_h11ix_abdih_351:not(#\9) {
  color: var(--color-text-status-warning-avkj4w, #855900);
}
.awsui_icon_h11ix_abdih_189.awsui_variant-error_h11ix_abdih_354:not(#\9) {
  color: var(--color-text-status-error-ak9yp5, #db0000);
}
.awsui_icon_h11ix_abdih_189.awsui_variant-success_h11ix_abdih_357:not(#\9) {
  color: var(--color-text-status-success-9wcobb, #00802f);
}
.awsui_icon_h11ix_abdih_189.awsui_variant-link_h11ix_abdih_360:not(#\9) {
  color: var(--color-text-link-default-rhby5q, #006ce0);
}
.awsui_icon_h11ix_abdih_189:not(#\9):is(.awsui_name-angle-left-double_h11ix_abdih_363,
.awsui_name-angle-left_h11ix_abdih_363,
.awsui_name-angle-right-double_h11ix_abdih_365,
.awsui_name-angle-right_h11ix_abdih_365,
.awsui_name-arrow-left_h11ix_abdih_367,
.awsui_name-arrow-right_h11ix_abdih_368,
.awsui_name-caret-left-filled_h11ix_abdih_369,
.awsui_name-caret-right-filled_h11ix_abdih_370,
.awsui_name-audio-full_h11ix_abdih_371,
.awsui_name-audio-half_h11ix_abdih_372,
.awsui_name-audio-off_h11ix_abdih_373,
.awsui_name-external_h11ix_abdih_374,
.awsui_name-redo_h11ix_abdih_375,
.awsui_name-resize-area_h11ix_abdih_376,
.awsui_name-send_h11ix_abdih_377,
.awsui_name-shrink_h11ix_abdih_378,
.awsui_name-undo_h11ix_abdih_379,
.awsui_name-view-vertical_h11ix_abdih_380) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
}
.awsui_icon_h11ix_abdih_189:not(#\9):is(.awsui_name-angle-left-double_h11ix_abdih_363,
.awsui_name-angle-left_h11ix_abdih_363,
.awsui_name-angle-right-double_h11ix_abdih_365,
.awsui_name-angle-right_h11ix_abdih_365,
.awsui_name-arrow-left_h11ix_abdih_367,
.awsui_name-arrow-right_h11ix_abdih_368,
.awsui_name-caret-left-filled_h11ix_abdih_369,
.awsui_name-caret-right-filled_h11ix_abdih_370,
.awsui_name-audio-full_h11ix_abdih_371,
.awsui_name-audio-half_h11ix_abdih_372,
.awsui_name-audio-off_h11ix_abdih_373,
.awsui_name-external_h11ix_abdih_374,
.awsui_name-redo_h11ix_abdih_375,
.awsui_name-resize-area_h11ix_abdih_376,
.awsui_name-send_h11ix_abdih_377,
.awsui_name-shrink_h11ix_abdih_378,
.awsui_name-undo_h11ix_abdih_379,
.awsui_name-view-vertical_h11ix_abdih_380):dir(rtl) {
  transform: scaleX(-1);
}

.awsui_badge_h11ix_abdih_404:not(#\9)::after {
  content: "";
  position: absolute;
  inline-size: 6px;
  block-size: 6px;
  border-start-start-radius: 4px;
  border-start-end-radius: 4px;
  border-end-start-radius: 4px;
  border-end-end-radius: 4px;
  background-color: var(--color-background-badge-icon-eprfkm, #db0000);
  inset-block-start: 0px;
  inset-inline-end: -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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_root_1iee7_xy9l5_145:not(#\9) {
  display: contents;
}

.awsui_root_1iee7_xy9l5_145[hidden]:not(#\9) {
  display: none;
}

.awsui_announcer_1iee7_xy9l5_153:not(#\9) {
  position: absolute !important;
  inset-block-start: -9999px !important;
  inset-inline-start: -9999px !important;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_1pc7b_1k8pp_5:not(#\9) {
  /* used in test-utils or tests */
}

.awsui_announcer_1pc7b_1k8pp_9:not(#\9) {
  /* used in test-utils or tests */
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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_1jpko_153:not(#\9) {
  inline-size: 20px;
  block-size: 10px;
}
.awsui_arrow-outer_xjuzf_1jpko_157:not(#\9), .awsui_arrow-inner_xjuzf_1jpko_157:not(#\9) {
  position: absolute;
  overflow: hidden;
  inline-size: 20px;
  block-size: 10px;
  inset-block-start: 0;
  inset-inline-start: 0;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
}
.awsui_arrow-outer_xjuzf_1jpko_157:not(#\9)::after, .awsui_arrow-inner_xjuzf_1jpko_157:not(#\9)::after {
  content: "";
  box-sizing: border-box;
  display: inline-block;
  position: absolute;
  border-start-start-radius: 2px;
  border-start-end-radius: 0;
  border-end-start-radius: 0;
  border-end-end-radius: 0;
  inset-block-end: 0;
  inset-inline-start: 0;
  inline-size: 14px;
  block-size: 14px;
  transform: rotate(45deg);
  transform-origin: 0 100%;
}
.awsui_arrow-outer_xjuzf_1jpko_157:not(#\9):dir(rtl)::after, .awsui_arrow-inner_xjuzf_1jpko_157:not(#\9):dir(rtl)::after {
  transform: rotate(-45deg);
  transform-origin: 100% 100%;
}
.awsui_arrow-outer_xjuzf_1jpko_157:not(#\9)::after {
  background-color: var(--color-border-popover-5yl4uc, #b4b4bb);
}
.awsui_arrow-inner_xjuzf_1jpko_157:not(#\9) {
  inset-block-start: calc(var(--border-width-popover-nflirh, 2px) + 1px);
}
.awsui_arrow-inner_xjuzf_1jpko_157:not(#\9)::after {
  border-start-start-radius: 1px;
  border-start-end-radius: 0;
  border-end-start-radius: 0;
  border-end-end-radius: 0;
  background-color: var(--color-background-popover-yxd92v, #ffffff);
}
.awsui_arrow-position-right-top_xjuzf_1jpko_199 > .awsui_arrow-outer_xjuzf_1jpko_157:not(#\9)::after, .awsui_arrow-position-right-bottom_xjuzf_1jpko_199 > .awsui_arrow-outer_xjuzf_1jpko_157:not(#\9)::after {
  box-shadow: -0.71px 0.71px 4px -2px var(--color-shadow-default-08gb4j, rgba(15, 20, 26, 0.12));
}
.awsui_arrow-position-left-top_xjuzf_1jpko_202 > .awsui_arrow-outer_xjuzf_1jpko_157:not(#\9)::after, .awsui_arrow-position-left-bottom_xjuzf_1jpko_202 > .awsui_arrow-outer_xjuzf_1jpko_157:not(#\9)::after {
  box-shadow: 0.71px -0.71px 4px -2px var(--color-shadow-default-08gb4j, rgba(15, 20, 26, 0.12));
}
.awsui_arrow-position-top-center_xjuzf_1jpko_205 > .awsui_arrow-outer_xjuzf_1jpko_157:not(#\9)::after, .awsui_arrow-position-top-right_xjuzf_1jpko_205 > .awsui_arrow-outer_xjuzf_1jpko_157:not(#\9)::after, .awsui_arrow-position-top-left_xjuzf_1jpko_205 > .awsui_arrow-outer_xjuzf_1jpko_157:not(#\9)::after, .awsui_arrow-position-top-responsive_xjuzf_1jpko_205 > .awsui_arrow-outer_xjuzf_1jpko_157:not(#\9)::after {
  box-shadow: -0.71px -0.71px 4px -2px var(--color-shadow-default-08gb4j, rgba(15, 20, 26, 0.12));
}
.awsui_arrow-position-bottom-center_xjuzf_1jpko_208 > .awsui_arrow-outer_xjuzf_1jpko_157:not(#\9)::after, .awsui_arrow-position-bottom-right_xjuzf_1jpko_208 > .awsui_arrow-outer_xjuzf_1jpko_157:not(#\9)::after, .awsui_arrow-position-bottom-left_xjuzf_1jpko_208 > .awsui_arrow-outer_xjuzf_1jpko_157:not(#\9)::after, .awsui_arrow-position-bottom-responsive_xjuzf_1jpko_208 > .awsui_arrow-outer_xjuzf_1jpko_157:not(#\9)::after {
  box-shadow: 0.71px 0.71px 4px -2px var(--color-shadow-default-08gb4j, rgba(15, 20, 26, 0.12));
}

.awsui_arrow-variant-info_xjuzf_1jpko_212 > .awsui_arrow-outer_xjuzf_1jpko_157:not(#\9)::after {
  background-color: var(--color-border-status-info-2zt73n, #006ce0);
}
.awsui_arrow-variant-info_xjuzf_1jpko_212 > .awsui_arrow-inner_xjuzf_1jpko_157:not(#\9)::after {
  background-color: var(--color-background-status-info-j2xxem, #f0fbff);
}

/*
 Copyright Amazon.com, Inc. or its affiliates. All 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_1jpko_227:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  word-wrap: break-word;
  max-inline-size: 100%;
  overflow: hidden;
  padding-block: var(--space-s-tvghoh, 12px);
  padding-inline: var(--space-m-dsumyt, 16px);
}
.awsui_body-overflow-visible_xjuzf_1jpko_263:not(#\9) {
  overflow: visible;
}
.awsui_body-variant-chart_xjuzf_1jpko_266:not(#\9) {
  padding-block: var(--space-static-s-t763lu, 12px);
  padding-inline: var(--space-static-s-t763lu, 12px);
}

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

.awsui_dismiss_xjuzf_1jpko_276:not(#\9) {
  margin-block: calc(-1 * var(--space-xs-ymlm0b, 8px));
  margin-inline-start: 0;
  margin-inline-end: calc(-1 * (var(--space-xxs-hwfkai, 4px) + var(--border-width-popover-nflirh, 2px)));
  flex: 0 0 auto;
  order: 1;
}

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

.awsui_header-row_xjuzf_1jpko_288:not(#\9) {
  margin-block-end: var(--space-xs-ymlm0b, 8px);
}

.awsui_header_xjuzf_1jpko_288:not(#\9) {
  word-wrap: break-word;
  max-inline-size: 100%;
  overflow: hidden;
  font-family: var(--font-family-heading-ugphat, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  font-size: var(--font-size-heading-xs-j8yzxv, 14px);
  line-height: var(--line-height-heading-xs-q9j004, 18px);
  letter-spacing: var(--letter-spacing-heading-xs-fgog7a, normal);
  font-weight: var(--font-weight-heading-xs-wqqpne, 700);
  -webkit-font-smoothing: var(--font-smoothing-webkit-oemolo, antialiased);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-hbm0aq, grayscale);
  flex: 1 1 auto;
  /* stylelint-disable-next-line selector-max-type */
}
.awsui_header_xjuzf_1jpko_288 > h2:not(#\9) {
  font-family: var(--font-family-heading-ugphat, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  font-size: var(--font-size-heading-xs-j8yzxv, 14px);
  line-height: var(--line-height-heading-xs-q9j004, 18px);
  letter-spacing: var(--letter-spacing-heading-xs-fgog7a, normal);
  font-weight: var(--font-weight-heading-xs-wqqpne, 700);
  -webkit-font-smoothing: var(--font-smoothing-webkit-oemolo, antialiased);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-hbm0aq, grayscale);
  display: inline;
}

.awsui_content_xjuzf_1jpko_317:not(#\9) {
  word-wrap: break-word;
  max-inline-size: 100%;
  overflow: hidden;
  word-break: normal;
  color: var(--color-text-body-secondary-y6dr4d, #424650);
  flex: 1 1 auto;
  min-inline-size: 0;
}
.awsui_content-overflow-visible_xjuzf_1jpko_326: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
*/
.awsui_container_xjuzf_1jpko_338:not(#\9) {
  display: inline-block;
  position: fixed;
  inset-block-start: -9999px;
  inset-inline-start: -9999px;
  z-index: 2000;
}
.awsui_container_xjuzf_1jpko_338:not(#\9)::before {
  content: "";
  position: absolute;
}
.awsui_container_xjuzf_1jpko_338:not(#\9):has(.awsui_container-arrow-position-bottom-left_xjuzf_1jpko_349)::before, .awsui_container_xjuzf_1jpko_338:not(#\9):has(.awsui_container-arrow-position-bottom-center_xjuzf_1jpko_349)::before, .awsui_container_xjuzf_1jpko_338:not(#\9):has(.awsui_container-arrow-position-bottom-right_xjuzf_1jpko_349)::before {
  inset-inline: 0;
  inset-block-start: -10px;
  block-size: 10px;
}
.awsui_container_xjuzf_1jpko_338:not(#\9):has(.awsui_container-arrow-position-top-left_xjuzf_1jpko_354)::before, .awsui_container_xjuzf_1jpko_338:not(#\9):has(.awsui_container-arrow-position-top-center_xjuzf_1jpko_354)::before, .awsui_container_xjuzf_1jpko_338:not(#\9):has(.awsui_container-arrow-position-top-right_xjuzf_1jpko_354)::before {
  inset-inline: 0;
  inset-block-end: -10px;
  block-size: 10px;
}
.awsui_container_xjuzf_1jpko_338:not(#\9):has(.awsui_container-arrow-position-right-top_xjuzf_1jpko_359)::before, .awsui_container_xjuzf_1jpko_338:not(#\9):has(.awsui_container-arrow-position-right-bottom_xjuzf_1jpko_359)::before {
  inset-block: 0;
  inset-inline-start: -10px;
  inline-size: 10px;
}
.awsui_container_xjuzf_1jpko_338:not(#\9):has(.awsui_container-arrow-position-left-top_xjuzf_1jpko_364)::before, .awsui_container_xjuzf_1jpko_338:not(#\9):has(.awsui_container-arrow-position-left-bottom_xjuzf_1jpko_364)::before {
  inset-block: 0;
  inset-inline-end: -10px;
  inline-size: 10px;
}

.awsui_container-body_xjuzf_1jpko_370:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  border-start-start-radius: var(--border-radius-popover-6fqb5w, 8px);
  border-start-end-radius: var(--border-radius-popover-6fqb5w, 8px);
  border-end-start-radius: var(--border-radius-popover-6fqb5w, 8px);
  border-end-end-radius: var(--border-radius-popover-6fqb5w, 8px);
  background-color: var(--color-background-popover-yxd92v, #ffffff);
  box-shadow: var(--shadow-popover-pkane9, 0px 4px 20px 1px rgba(0, 7, 22, 0.1));
  border-block: var(--border-width-popover-nflirh, 2px) solid var(--color-border-popover-5yl4uc, #b4b4bb);
  border-inline: var(--border-width-popover-nflirh, 2px) solid var(--color-border-popover-5yl4uc, #b4b4bb);
}

.awsui_container-body-variant-annotation_xjuzf_1jpko_410:not(#\9) {
  background-color: var(--color-background-status-info-j2xxem, #f0fbff);
  border-color: var(--color-border-status-info-2zt73n, #006ce0);
}

.awsui_container-body-size-small_xjuzf_1jpko_415:not(#\9) {
  max-inline-size: 210px;
}
.awsui_container-body-size-small_xjuzf_1jpko_415.awsui_fixed-width_xjuzf_1jpko_418:not(#\9) {
  inline-size: 210px;
}

.awsui_container-body-size-medium_xjuzf_1jpko_422:not(#\9) {
  max-inline-size: 310px;
}
.awsui_container-body-size-medium_xjuzf_1jpko_422.awsui_fixed-width_xjuzf_1jpko_418:not(#\9) {
  inline-size: 310px;
}

.awsui_container-body-size-large_xjuzf_1jpko_429:not(#\9) {
  max-inline-size: 482px;
}
@media (max-width: 482px) {
  .awsui_container-body-size-large_xjuzf_1jpko_429:not(#\9) {
    max-inline-size: 310px;
  }
}
.awsui_container-body-size-large_xjuzf_1jpko_429.awsui_fixed-width_xjuzf_1jpko_418:not(#\9) {
  inline-size: 482px;
}

.awsui_container-arrow_xjuzf_1jpko_349:not(#\9) {
  position: absolute;
  display: inline-block;
}
.awsui_container-arrow-position-right-top_xjuzf_1jpko_359:not(#\9), .awsui_container-arrow-position-right-bottom_xjuzf_1jpko_359:not(#\9) {
  transform: rotate(-90deg);
  transform-origin: 0 100%;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
}
.awsui_container-arrow-position-right-top_xjuzf_1jpko_359:not(#\9):dir(rtl), .awsui_container-arrow-position-right-bottom_xjuzf_1jpko_359:not(#\9):dir(rtl) {
  transform: rotate(90deg);
  transform-origin: 100% 100%;
}
.awsui_container-arrow-position-right-top_xjuzf_1jpko_359:not(#\9) {
  inset-block-start: calc(12px + 10px);
  inset-inline-start: 0;
}
.awsui_container-arrow-position-right-bottom_xjuzf_1jpko_359:not(#\9) {
  inset-block-end: 12px;
  inset-inline-start: 0;
}
.awsui_container-arrow-position-left-top_xjuzf_1jpko_364:not(#\9), .awsui_container-arrow-position-left-bottom_xjuzf_1jpko_364:not(#\9) {
  transform: rotate(90deg);
  transform-origin: 100% 100%;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
}
.awsui_container-arrow-position-left-top_xjuzf_1jpko_364:not(#\9):dir(rtl), .awsui_container-arrow-position-left-bottom_xjuzf_1jpko_364:not(#\9):dir(rtl) {
  transform: rotate(-90deg);
  transform-origin: 0% 100%;
}
.awsui_container-arrow-position-left-top_xjuzf_1jpko_364:not(#\9) {
  inset-block-start: calc(12px + 10px);
  inset-inline-end: 0;
}
.awsui_container-arrow-position-left-bottom_xjuzf_1jpko_364:not(#\9) {
  inset-block-end: 12px;
  inset-inline-end: 0;
}
.awsui_container-arrow-position-top-center_xjuzf_1jpko_354:not(#\9), .awsui_container-arrow-position-top-right_xjuzf_1jpko_354:not(#\9), .awsui_container-arrow-position-top-left_xjuzf_1jpko_354:not(#\9), .awsui_container-arrow-position-top-responsive_xjuzf_1jpko_479:not(#\9) {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}
.awsui_container-arrow-position-top-center_xjuzf_1jpko_354:not(#\9) {
  inset-block-end: -10px;
  inset-inline-start: calc(50% - 10px);
}
.awsui_container-arrow-position-top-right_xjuzf_1jpko_354:not(#\9) {
  inset-block-end: -10px;
  inset-inline-start: 12px;
}
.awsui_container-arrow-position-top-left_xjuzf_1jpko_354:not(#\9) {
  inset-block-end: -10px;
  inset-inline-start: calc(100% - 20px - 12px);
}
.awsui_container-arrow-position-bottom-center_xjuzf_1jpko_349:not(#\9) {
  inset-block-start: -10px;
  inset-inline-start: calc(50% - 10px);
}
.awsui_container-arrow-position-bottom-right_xjuzf_1jpko_349:not(#\9) {
  inset-block-start: -10px;
  inset-inline-start: 12px;
}
.awsui_container-arrow-position-bottom-left_xjuzf_1jpko_349:not(#\9) {
  inset-block-start: -10px;
  inset-inline-start: 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
*/
.awsui_container_xjuzf_1jpko_338:not(#\9) {
  animation: awsui_awsui-motion-fade-in_xjuzf_1jpko_1 var(--motion-duration-show-paced-otsjh8, 180ms) var(--motion-easing-show-paced-ym6eyn, ease-out);
}
@keyframes awsui_awsui-motion-fade-in_xjuzf_1jpko_1 {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_container_xjuzf_1jpko_338:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_container_xjuzf_1jpko_338:not(#\9), .awsui-mode-entering .awsui_container_xjuzf_1jpko_338:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_container_xjuzf_1jpko_338.awsui_refresh_xjuzf_1jpko_537:not(#\9) {
  animation: awsui_awsui-motion-fade-in_xjuzf_1jpko_1 var(--motion-duration-refresh-only-fast-zfibh6, 115ms) var(--motion-easing-refresh-only-a-ccyqaz, cubic-bezier(0, 0, 0, 1));
}
@keyframes awsui_awsui-motion-fade-in_xjuzf_1jpko_1 {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_container_xjuzf_1jpko_338.awsui_refresh_xjuzf_1jpko_537:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_container_xjuzf_1jpko_338.awsui_refresh_xjuzf_1jpko_537:not(#\9), .awsui-mode-entering .awsui_container_xjuzf_1jpko_338.awsui_refresh_xjuzf_1jpko_537:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_root_xjuzf_1jpko_559:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  color: inherit;
}
.awsui_root_xjuzf_1jpko_559.awsui_no-wrap_xjuzf_1jpko_591:not(#\9) {
  white-space: nowrap;
}
body[data-awsui-focus-visible=true] .awsui_root_xjuzf_1jpko_559:not(#\9):has(.awsui_trigger-type-text-inline_xjuzf_1jpko_594.awsui_overflow-ellipsis_xjuzf_1jpko_594:focus, .awsui_trigger-type-text_xjuzf_1jpko_594.awsui_overflow-ellipsis_xjuzf_1jpko_594:focus) {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_root_xjuzf_1jpko_559:not(#\9):has(.awsui_trigger-type-text-inline_xjuzf_1jpko_594.awsui_overflow-ellipsis_xjuzf_1jpko_594:focus, .awsui_trigger-type-text_xjuzf_1jpko_594.awsui_overflow-ellipsis_xjuzf_1jpko_594:focus) {
  outline: 2px dotted transparent;
  outline-offset: calc(1px - 1px);
}
body[data-awsui-focus-visible=true] .awsui_root_xjuzf_1jpko_559:not(#\9):has(.awsui_trigger-type-text-inline_xjuzf_1jpko_594.awsui_overflow-ellipsis_xjuzf_1jpko_594:focus, .awsui_trigger-type-text_xjuzf_1jpko_594.awsui_overflow-ellipsis_xjuzf_1jpko_594:focus)::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * 1px);
  inset-block-start: calc(-1 * 1px);
  inline-size: calc(100% + 1px + 1px);
  block-size: calc(100% + 1px + 1px);
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}

.awsui_root-filtering-token_xjuzf_1jpko_616:not(#\9) {
  display: flex;
}

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

.awsui_overflow-ellipsis_xjuzf_1jpko_594:not(#\9) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-inline-size: 0;
  word-break: break-word;
}

.awsui_trigger-type-text-inline_xjuzf_1jpko_594:not(#\9) {
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  border-block: 0;
  /*
    This transparent border is necessary to maintain space between the trigger and the bottom-positioned popover.
  */
  border-block-end: var(--border-divider-list-width-tdfx1x, 1px) dashed transparent;
  -webkit-text-decoration: underline dashed currentColor;
          text-decoration: underline dashed currentColor;
  text-decoration-thickness: var(--border-divider-list-width-tdfx1x, 1px);
  text-underline-offset: 0.25em;
}
.awsui_trigger-type-text-inline_xjuzf_1jpko_594.awsui_overflow-ellipsis_xjuzf_1jpko_594:not(#\9) {
  /*
    This style needs because of the overflow: hidden would otherwise conceal the underline styles.
  */
  padding-block-end: calc(0.25em + var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_trigger-type-text-inline_xjuzf_1jpko_594.awsui_in-inline-token_xjuzf_1jpko_658:not(#\9) {
  text-underline-offset: 0.15em;
}

.awsui_trigger-type-text_xjuzf_1jpko_594:not(#\9) {
  border-block: 0;
  border-block-end: var(--border-divider-list-width-tdfx1x, 1px) dashed currentColor;
}

.awsui_trigger-type-text-inline_xjuzf_1jpko_594:not(#\9),
.awsui_trigger-type-text_xjuzf_1jpko_594:not(#\9) {
  border-inline: 0;
  margin-block: 0;
  margin-inline: 0;
  padding-block: 0;
  padding-inline: 0;
  background-color: transparent;
  cursor: pointer;
}
.awsui_trigger-type-text-inline_xjuzf_1jpko_594:not(#\9):focus,
.awsui_trigger-type-text_xjuzf_1jpko_594:not(#\9):focus {
  outline: none;
}
body[data-awsui-focus-visible=true] .awsui_trigger-type-text-inline_xjuzf_1jpko_594:not(#\9):not(.awsui_overflow-ellipsis_xjuzf_1jpko_594):focus,
body[data-awsui-focus-visible=true] .awsui_trigger-type-text_xjuzf_1jpko_594:not(#\9):not(.awsui_overflow-ellipsis_xjuzf_1jpko_594):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_trigger-type-text-inline_xjuzf_1jpko_594:not(#\9):not(.awsui_overflow-ellipsis_xjuzf_1jpko_594):focus,
body[data-awsui-focus-visible=true] .awsui_trigger-type-text_xjuzf_1jpko_594:not(#\9):not(.awsui_overflow-ellipsis_xjuzf_1jpko_594):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(1px - 1px);
}
body[data-awsui-focus-visible=true] .awsui_trigger-type-text-inline_xjuzf_1jpko_594:not(#\9):not(.awsui_overflow-ellipsis_xjuzf_1jpko_594):focus::before,
body[data-awsui-focus-visible=true] .awsui_trigger-type-text_xjuzf_1jpko_594:not(#\9):not(.awsui_overflow-ellipsis_xjuzf_1jpko_594):focus::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * 1px);
  inset-block-start: calc(-1 * 1px);
  inline-size: calc(100% + 1px + 1px);
  block-size: calc(100% + 1px + 1px);
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}

.awsui_trigger-type-filtering-token_xjuzf_1jpko_706:not(#\9) {
  display: flex;
}

.awsui_popover-inline-content_xjuzf_1jpko_710:not(#\9) {
  display: inline;
}

.awsui_hover-area_xjuzf_1jpko_714:not(#\9) {
  pointer-events: none;
  padding-block: var(--space-static-s-t763lu, 12px);
  padding-inline: var(--space-static-s-t763lu, 12px);
  margin-block: calc(-1 * var(--space-static-s-t763lu, 12px));
  margin-inline: calc(-1 * var(--space-static-s-t763lu, 12px));
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_oip5a_160mh_5:not(#\9) {
  /* used in tests */
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_root_1r4p6_jq1s8_145:not(#\9) {
  animation: awsui_awsui-motion-fade-in-tooltip_1r4p6_jq1s8_1 var(--motion-duration-tooltip-enter-8e7aex, 115ms) var(--motion-easing-tooltip-enter-i9exfu, cubic-bezier(0, 0, 0, 1));
}
@keyframes awsui_awsui-motion-fade-in-tooltip_1r4p6_jq1s8_1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_root_1r4p6_jq1s8_145:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_root_1r4p6_jq1s8_145:not(#\9), .awsui-mode-entering .awsui_root_1r4p6_jq1s8_145:not(#\9) {
  animation: none;
  transition: none;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_1u26h_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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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
*/
@keyframes awsui_spinner-rotator_1612d_1akf8_1 {
  0% {
    transform: rotate(var(--awsui-spinner-rotator-from-esndbs));
  }
  100% {
    transform: rotate(var(--awsui-spinner-rotator-to-esndbs));
  }
}
@keyframes awsui_spinner-line-left_1612d_1akf8_1 {
  0% {
    transform: rotate(var(--awsui-spinner-line-left-from-esndbs));
  }
  50% {
    transform: rotate(var(--awsui-spinner-line-left-to-esndbs));
  }
  100% {
    transform: rotate(var(--awsui-spinner-line-left-from-esndbs));
  }
}
@keyframes awsui_spinner-line-right_1612d_1akf8_1 {
  0% {
    transform: rotate(var(--awsui-spinner-line-right-from-esndbs));
  }
  50% {
    transform: rotate(var(--awsui-spinner-line-right-to-esndbs));
  }
  100% {
    transform: rotate(var(--awsui-spinner-line-right-from-esndbs));
  }
}
.awsui_root_1612d_1akf8_183:not(#\9) {
  --awsui-spinner-rotator-from-esndbs: 0deg;
  --awsui-spinner-rotator-to-esndbs: 360deg;
  --awsui-spinner-line-left-from-esndbs: 0deg;
  --awsui-spinner-line-left-to-esndbs: 120deg;
  --awsui-spinner-line-right-from-esndbs: 90deg;
  --awsui-spinner-line-right-to-esndbs: -30deg;
  display: inline-block;
  vertical-align: top;
  /*stylelint-disable-next-line @cloudscape-design/no-motion-outside-of-mixin */
  animation: awsui_spinner-rotator_1612d_1akf8_1 0.7s linear infinite;
  box-sizing: border-box;
  line-height: 0;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
}
.awsui_root_1612d_1akf8_183.awsui_size-normal_1612d_1akf8_198:not(#\9) {
  inline-size: var(--size-icon-normal-levt08, 16px);
  block-size: var(--size-icon-normal-levt08, 16px);
  padding-block: calc((var(--size-icon-normal-levt08, 16px) - 12px) / 2);
  padding-inline: calc((var(--size-icon-normal-levt08, 16px) - 12px) / 2);
  margin-block: calc((var(--line-height-body-m-2mh3ke, 20px) - var(--size-icon-normal-levt08, 16px)) / 2);
  box-sizing: border-box;
}
.awsui_root_1612d_1akf8_183.awsui_size-big_1612d_1akf8_206:not(#\9) {
  inline-size: var(--size-icon-big-7pq9l3, 32px);
  block-size: var(--size-icon-big-7pq9l3, 32px);
  padding-block: calc((var(--size-icon-big-7pq9l3, 32px) - 24px) / 2);
  padding-inline: calc((var(--size-icon-big-7pq9l3, 32px) - 24px) / 2);
  margin-block: calc((var(--line-height-heading-xl-hko6p0, 30px) - var(--size-icon-big-7pq9l3, 32px)) / 2);
  box-sizing: border-box;
}
.awsui_root_1612d_1akf8_183.awsui_size-large_1612d_1akf8_214:not(#\9) {
  inline-size: var(--size-icon-large-mb6y6y, 48px);
  block-size: var(--size-icon-large-mb6y6y, 48px);
  padding-block: calc((var(--size-icon-large-mb6y6y, 48px) - 36px) / 2);
  padding-inline: calc((var(--size-icon-large-mb6y6y, 48px) - 36px) / 2);
  margin-block: calc((var(--line-height-display-l-vwanzp, 48px) - var(--size-icon-large-mb6y6y, 48px)) / 2);
  box-sizing: border-box;
}
.awsui_root_1612d_1akf8_183.awsui_variant-normal_1612d_1akf8_222:not(#\9) {
  color: currentColor;
}
.awsui_root_1612d_1akf8_183.awsui_variant-disabled_1612d_1akf8_225:not(#\9) {
  color: var(--color-text-interactive-disabled-bhh1zo, #b4b4bb);
}
.awsui_root_1612d_1akf8_183.awsui_variant-inverted_1612d_1akf8_228:not(#\9) {
  color: var(--color-text-inverted-my1sxo, #ffffff);
}
.awsui_root_1612d_1akf8_183:not(#\9):dir(rtl) {
  --awsui-spinner-rotator-from-esndbs: 360deg;
  --awsui-spinner-rotator-to-esndbs: 0deg;
  --awsui-spinner-line-left-from-esndbs: 0deg;
  --awsui-spinner-line-left-to-esndbs: -120deg;
  --awsui-spinner-line-right-from-esndbs: -90deg;
  --awsui-spinner-line-right-to-esndbs: 30deg;
}

.awsui_circle_1612d_1akf8_240:not(#\9) {
  display: inline-block;
  inline-size: 50%;
  block-size: 100%;
  overflow: hidden;
  position: relative;
}
.awsui_circle_1612d_1akf8_240:not(#\9):after {
  position: absolute;
  box-sizing: border-box;
  content: "";
  border-start-start-radius: 50%;
  border-start-end-radius: 50%;
  border-end-start-radius: 50%;
  border-end-end-radius: 50%;
  border-block: 2px solid;
  border-inline: 2px solid;
  border-inline-end-color: transparent;
  border-block-end-color: transparent;
}
.awsui_circle_1612d_1akf8_240:not(#\9):after {
  /*stylelint-disable-next-line @cloudscape-design/no-motion-outside-of-mixin */
  animation: 1.5s ease-in-out infinite;
  inset-block-start: 0;
  inset-inline-start: 0;
  block-size: 100%;
  inline-size: 200%;
}
.awsui_circle_1612d_1akf8_240.awsui_circle-left_1612d_1akf8_268:not(#\9):after {
  inset-inline-start: 0;
  /*stylelint-disable-next-line @cloudscape-design/no-motion-outside-of-mixin */
  animation-name: awsui_spinner-line-left_1612d_1akf8_1;
}
.awsui_circle_1612d_1akf8_240.awsui_circle-right_1612d_1akf8_273:not(#\9):after {
  inset-inline-start: -100%;
  /*stylelint-disable-next-line @cloudscape-design/no-motion-outside-of-mixin */
  animation-name: awsui_spinner-line-right_1612d_1akf8_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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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_vjswe_13k2n_153:not(#\9) {
  /* used in test-utils */
}

.awsui_button_vjswe_13k2n_157:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  min-inline-size: 0;
  word-break: break-word;
  font-weight: var(--font-weight-button-0eg20c, 700);
  -webkit-font-smoothing: var(--font-smoothing-webkit-oemolo, antialiased);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-hbm0aq, grayscale);
  letter-spacing: var(--font-button-letter-spacing-ufowe3, 0.005em);
  border-start-start-radius: var(--border-radius-button-7bgkcs, 20px);
  border-start-end-radius: var(--border-radius-button-7bgkcs, 20px);
  border-end-start-radius: var(--border-radius-button-7bgkcs, 20px);
  border-end-end-radius: var(--border-radius-button-7bgkcs, 20px);
  border-block: var(--border-width-button-jm0qg7, 2px) solid;
  border-inline: var(--border-width-button-jm0qg7, 2px) solid;
  padding-block: var(--space-button-vertical-xaxp6x, 4px);
  padding-inline: var(--space-button-horizontal-k0c786, 20px);
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  --awsui-style-focus-ring-box-shadow-esndbs: 0 0 0 var(--awsui-style-focus-ring-border-width-esndbs, 2px) var(--awsui-style-focus-ring-border-color-esndbs, var(--color-border-item-focused-ditkrb, #006ce0));
}
.awsui_button_vjswe_13k2n_157.awsui_variant-normal_vjswe_13k2n_206:not(#\9) {
  background: var(--awsui-style-background-default-esndbs, var(--color-background-button-normal-default-h5dyi3, #ffffff));
  color: var(--awsui-style-color-default-esndbs, var(--color-text-button-normal-default-t865au, #006ce0));
  border-color: var(--awsui-style-border-color-default-esndbs, var(--color-border-button-normal-default-2yswxv, #006ce0));
  box-shadow: var(--awsui-style-box-shadow-default-esndbs);
  position: relative;
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-normal_vjswe_13k2n_206:not(#\9):hover {
  background: var(--awsui-style-background-hover-esndbs, var(--color-background-button-normal-hover-trus5n, #f0fbff));
  border-color: var(--awsui-style-border-color-hover-esndbs, var(--color-border-button-normal-hover-167wjl, #002b66));
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-button-normal-hover-20c0ob, #002b66));
  box-shadow: var(--awsui-style-box-shadow-hover-esndbs);
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-normal_vjswe_13k2n_206:not(#\9):active {
  background: var(--awsui-style-background-active-esndbs, var(--color-background-button-normal-active-zqw8xz, #d1f1ff));
  border-color: var(--awsui-style-border-color-active-esndbs, var(--color-border-button-normal-active-zi2bnn, #002b66));
  color: var(--awsui-style-color-active-esndbs, var(--color-text-button-normal-active-fm6d53, #002b66));
  box-shadow: var(--awsui-style-box-shadow-active-esndbs);
}
.awsui_button_vjswe_13k2n_157.awsui_variant-normal_vjswe_13k2n_206.awsui_disabled_vjswe_13k2n_227:not(#\9) {
  background: var(--awsui-style-background-disabled-esndbs, var(--color-background-button-normal-disabled-3xb191, #ffffff));
  border-color: var(--awsui-style-border-color-disabled-esndbs, var(--color-border-button-normal-disabled-uit34y, #b4b4bb));
  color: var(--awsui-style-color-disabled-esndbs, var(--color-text-button-normal-disabled-05p74s, #8c8c94));
  box-shadow: var(--awsui-style-box-shadow-disabled-esndbs);
  text-decoration: none;
  cursor: auto;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-primary_vjswe_13k2n_235:not(#\9) {
  background: var(--awsui-style-background-default-esndbs, var(--color-background-button-primary-default-emr769, #006ce0));
  color: var(--awsui-style-color-default-esndbs, var(--color-text-button-primary-default-2i01k6, #ffffff));
  border-color: var(--awsui-style-border-color-default-esndbs, var(--color-border-button-primary-default-f7dp5z, #006ce0));
  box-shadow: var(--awsui-style-box-shadow-default-esndbs);
  position: relative;
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-primary_vjswe_13k2n_235:not(#\9):hover {
  background: var(--awsui-style-background-hover-esndbs, var(--color-background-button-primary-hover-979qcq, #002b66));
  border-color: var(--awsui-style-border-color-hover-esndbs, var(--color-border-button-primary-hover-38r9qu, #002b66));
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-button-primary-hover-xtd6ag, #ffffff));
  box-shadow: var(--awsui-style-box-shadow-hover-esndbs);
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-primary_vjswe_13k2n_235:not(#\9):active {
  background: var(--awsui-style-background-active-esndbs, var(--color-background-button-primary-active-mulwvt, #002b66));
  border-color: var(--awsui-style-border-color-active-esndbs, var(--color-border-button-primary-active-lupau4, #002b66));
  color: var(--awsui-style-color-active-esndbs, var(--color-text-button-primary-active-dkwkja, #ffffff));
  box-shadow: var(--awsui-style-box-shadow-active-esndbs);
}
.awsui_button_vjswe_13k2n_157.awsui_variant-primary_vjswe_13k2n_235.awsui_disabled_vjswe_13k2n_227:not(#\9) {
  background: var(--awsui-style-background-disabled-esndbs, var(--color-background-button-primary-disabled-d1ggcl, #ebebf0));
  border-color: var(--awsui-style-border-color-disabled-esndbs, var(--color-border-button-primary-disabled-5avtf1, #ebebf0));
  color: var(--awsui-style-color-disabled-esndbs, var(--color-text-button-primary-disabled-q79gms, #8c8c94));
  box-shadow: var(--awsui-style-box-shadow-disabled-esndbs);
  text-decoration: none;
  cursor: auto;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-link_vjswe_13k2n_264:not(#\9) {
  background: var(--awsui-style-background-default-esndbs, var(--color-background-button-link-default-o64utz, transparent));
  color: var(--awsui-style-color-default-esndbs, var(--color-text-button-link-default-ehnnq5, #006ce0));
  border-color: var(--awsui-style-border-color-default-esndbs, var(--color-background-button-link-default-o64utz, transparent));
  box-shadow: var(--awsui-style-box-shadow-default-esndbs);
  position: relative;
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-link_vjswe_13k2n_264:not(#\9):hover {
  background: var(--awsui-style-background-hover-esndbs, var(--color-background-button-link-hover-w58lm6, #f0fbff));
  border-color: var(--awsui-style-border-color-hover-esndbs, var(--color-background-button-link-hover-w58lm6, #f0fbff));
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-button-link-hover-1aopta, #002b66));
  box-shadow: var(--awsui-style-box-shadow-hover-esndbs);
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-link_vjswe_13k2n_264:not(#\9):active {
  background: var(--awsui-style-background-active-esndbs, var(--color-background-button-link-active-qjigod, #d1f1ff));
  border-color: var(--awsui-style-border-color-active-esndbs, var(--color-background-button-link-active-qjigod, #d1f1ff));
  color: var(--awsui-style-color-active-esndbs, var(--color-text-button-link-active-154jw6, #002b66));
  box-shadow: var(--awsui-style-box-shadow-active-esndbs);
}
.awsui_button_vjswe_13k2n_157.awsui_variant-link_vjswe_13k2n_264.awsui_disabled_vjswe_13k2n_227:not(#\9) {
  background: var(--awsui-style-background-disabled-esndbs, var(--color-background-button-link-disabled-9xznu3, transparent));
  border-color: var(--awsui-style-border-color-disabled-esndbs, var(--color-border-button-link-disabled-npwqxa, transparent));
  color: var(--awsui-style-color-disabled-esndbs, var(--color-text-button-link-disabled-d3c5rp, #b4b4bb));
  box-shadow: var(--awsui-style-box-shadow-disabled-esndbs);
  text-decoration: none;
  cursor: auto;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-icon_vjswe_13k2n_293:not(#\9) {
  background: var(--awsui-style-background-default-esndbs, transparent);
  color: var(--awsui-style-color-default-esndbs, var(--color-text-interactive-default-1o1pl2, #424650));
  border-color: var(--awsui-style-border-color-default-esndbs, transparent);
  box-shadow: var(--awsui-style-box-shadow-default-esndbs);
  position: relative;
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-icon_vjswe_13k2n_293:not(#\9):hover {
  background: var(--awsui-style-background-hover-esndbs, transparent);
  border-color: var(--awsui-style-border-color-hover-esndbs, transparent);
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-button-icon-hover-ph08st, #0f141a));
  box-shadow: var(--awsui-style-box-shadow-hover-esndbs);
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-icon_vjswe_13k2n_293:not(#\9):active {
  background: var(--awsui-style-background-active-esndbs, transparent);
  border-color: var(--awsui-style-border-color-active-esndbs, transparent);
  color: var(--awsui-style-color-active-esndbs, var(--color-text-interactive-default-1o1pl2, #424650));
  box-shadow: var(--awsui-style-box-shadow-active-esndbs);
}
.awsui_button_vjswe_13k2n_157.awsui_variant-icon_vjswe_13k2n_293.awsui_disabled_vjswe_13k2n_227:not(#\9) {
  background: var(--awsui-style-background-disabled-esndbs, transparent);
  border-color: var(--awsui-style-border-color-disabled-esndbs, transparent);
  color: var(--awsui-style-color-disabled-esndbs, var(--color-text-button-icon-disabled-nnofkn, #8c8c94));
  box-shadow: var(--awsui-style-box-shadow-disabled-esndbs);
  text-decoration: none;
  cursor: auto;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-inline-icon_vjswe_13k2n_322:not(#\9) {
  background: var(--awsui-style-background-default-esndbs, transparent);
  color: var(--awsui-style-color-default-esndbs, var(--color-text-button-inline-icon-default-gdb4f4, #006ce0));
  border-color: var(--awsui-style-border-color-default-esndbs, transparent);
  box-shadow: var(--awsui-style-box-shadow-default-esndbs);
  position: relative;
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-inline-icon_vjswe_13k2n_322:not(#\9):hover {
  background: var(--awsui-style-background-hover-esndbs, transparent);
  border-color: var(--awsui-style-border-color-hover-esndbs, transparent);
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-button-inline-icon-hover-sqs5ft, #002b66));
  box-shadow: var(--awsui-style-box-shadow-hover-esndbs);
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-inline-icon_vjswe_13k2n_322:not(#\9):active {
  background: var(--awsui-style-background-active-esndbs, transparent);
  border-color: var(--awsui-style-border-color-active-esndbs, transparent);
  color: var(--awsui-style-color-active-esndbs, var(--color-text-button-inline-icon-default-gdb4f4, #006ce0));
  box-shadow: var(--awsui-style-box-shadow-active-esndbs);
}
.awsui_button_vjswe_13k2n_157.awsui_variant-inline-icon_vjswe_13k2n_322.awsui_disabled_vjswe_13k2n_227:not(#\9) {
  background: var(--awsui-style-background-disabled-esndbs, transparent);
  border-color: var(--awsui-style-border-color-disabled-esndbs, transparent);
  color: var(--awsui-style-color-disabled-esndbs, var(--color-text-button-inline-icon-disabled-bnn5b7, #b4b4bb));
  box-shadow: var(--awsui-style-box-shadow-disabled-esndbs);
  text-decoration: none;
  cursor: auto;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-inline-icon-pointer-target_vjswe_13k2n_351:not(#\9) {
  background: var(--awsui-style-background-default-esndbs, transparent);
  color: var(--awsui-style-color-default-esndbs, var(--color-text-button-inline-icon-default-gdb4f4, #006ce0));
  border-color: var(--awsui-style-border-color-default-esndbs, transparent);
  box-shadow: var(--awsui-style-box-shadow-default-esndbs);
  position: relative;
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-inline-icon-pointer-target_vjswe_13k2n_351:not(#\9):hover {
  background: var(--awsui-style-background-hover-esndbs, transparent);
  border-color: var(--awsui-style-border-color-hover-esndbs, transparent);
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-button-inline-icon-hover-sqs5ft, #002b66));
  box-shadow: var(--awsui-style-box-shadow-hover-esndbs);
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-inline-icon-pointer-target_vjswe_13k2n_351:not(#\9):active {
  background: var(--awsui-style-background-active-esndbs, transparent);
  border-color: var(--awsui-style-border-color-active-esndbs, transparent);
  color: var(--awsui-style-color-active-esndbs, var(--color-text-button-inline-icon-default-gdb4f4, #006ce0));
  box-shadow: var(--awsui-style-box-shadow-active-esndbs);
}
.awsui_button_vjswe_13k2n_157.awsui_variant-inline-icon-pointer-target_vjswe_13k2n_351.awsui_disabled_vjswe_13k2n_227:not(#\9) {
  background: var(--awsui-style-background-disabled-esndbs, transparent);
  border-color: var(--awsui-style-border-color-disabled-esndbs, transparent);
  color: var(--awsui-style-color-disabled-esndbs, var(--color-text-button-inline-icon-disabled-bnn5b7, #b4b4bb));
  box-shadow: var(--awsui-style-box-shadow-disabled-esndbs);
  text-decoration: none;
  cursor: auto;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-inline-link_vjswe_13k2n_380:not(#\9) {
  background: var(--awsui-style-background-default-esndbs, transparent);
  color: var(--awsui-style-color-default-esndbs, var(--color-text-button-normal-default-t865au, #006ce0));
  border-color: var(--awsui-style-border-color-default-esndbs, transparent);
  box-shadow: var(--awsui-style-box-shadow-default-esndbs);
  border-block-width: 0;
  border-inline-width: 0;
  position: relative;
  text-decoration: none;
  padding-block: 0;
  padding-inline: 0;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-inline-link_vjswe_13k2n_380:not(#\9):hover {
  background: var(--awsui-style-background-hover-esndbs, transparent);
  border-color: var(--awsui-style-border-color-hover-esndbs, transparent);
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-button-inline-link-hover-p1ibm2, #002b66));
  box-shadow: var(--awsui-style-box-shadow-hover-esndbs);
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-inline-link_vjswe_13k2n_380:not(#\9):active {
  background: var(--awsui-style-background-active-esndbs, transparent);
  border-color: var(--awsui-style-border-color-active-esndbs, transparent);
  color: var(--awsui-style-color-active-esndbs, var(--color-text-button-normal-active-fm6d53, #002b66));
  box-shadow: var(--awsui-style-box-shadow-active-esndbs);
}
.awsui_button_vjswe_13k2n_157.awsui_variant-inline-link_vjswe_13k2n_380.awsui_disabled_vjswe_13k2n_227:not(#\9) {
  background: var(--awsui-style-background-disabled-esndbs, transparent);
  border-color: var(--awsui-style-border-color-disabled-esndbs, transparent);
  color: var(--awsui-style-color-disabled-esndbs, var(--color-text-interactive-disabled-bhh1zo, #b4b4bb));
  box-shadow: var(--awsui-style-box-shadow-disabled-esndbs);
  text-decoration: none;
  cursor: auto;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-modal-dismiss_vjswe_13k2n_413:not(#\9) {
  background: var(--awsui-style-background-default-esndbs, transparent);
  color: var(--awsui-style-color-default-esndbs, var(--color-text-interactive-default-1o1pl2, #424650));
  border-color: var(--awsui-style-border-color-default-esndbs, transparent);
  box-shadow: var(--awsui-style-box-shadow-default-esndbs);
  position: relative;
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-modal-dismiss_vjswe_13k2n_413:not(#\9):hover {
  background: var(--awsui-style-background-hover-esndbs, transparent);
  border-color: var(--awsui-style-border-color-hover-esndbs, transparent);
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-interactive-hover-j5y3wx, #0f141a));
  box-shadow: var(--awsui-style-box-shadow-hover-esndbs);
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-modal-dismiss_vjswe_13k2n_413:not(#\9):active {
  background: var(--awsui-style-background-active-esndbs, transparent);
  border-color: var(--awsui-style-border-color-active-esndbs, transparent);
  color: var(--awsui-style-color-active-esndbs, var(--color-text-interactive-default-1o1pl2, #424650));
  box-shadow: var(--awsui-style-box-shadow-active-esndbs);
}
.awsui_button_vjswe_13k2n_157.awsui_variant-modal-dismiss_vjswe_13k2n_413.awsui_disabled_vjswe_13k2n_227:not(#\9) {
  background: var(--awsui-style-background-disabled-esndbs, transparent);
  border-color: var(--awsui-style-border-color-disabled-esndbs, transparent);
  color: var(--awsui-style-color-disabled-esndbs, var(--color-text-interactive-disabled-bhh1zo, #b4b4bb));
  box-shadow: var(--awsui-style-box-shadow-disabled-esndbs);
  text-decoration: none;
  cursor: auto;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-flashbar-icon_vjswe_13k2n_442:not(#\9) {
  background: var(--awsui-style-background-default-esndbs, transparent);
  color: var(--awsui-style-color-default-esndbs, var(--color-text-interactive-inverted-default-nzthan, #dedee3));
  border-color: var(--awsui-style-border-color-default-esndbs, transparent);
  box-shadow: var(--awsui-style-box-shadow-default-esndbs);
  position: relative;
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-flashbar-icon_vjswe_13k2n_442:not(#\9):hover {
  background: var(--awsui-style-background-hover-esndbs, transparent);
  border-color: var(--awsui-style-border-color-hover-esndbs, transparent);
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-interactive-inverted-hover-oa7pli, #f9f9fa));
  box-shadow: var(--awsui-style-box-shadow-hover-esndbs);
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-flashbar-icon_vjswe_13k2n_442:not(#\9):active {
  background: var(--awsui-style-background-active-esndbs, transparent);
  border-color: var(--awsui-style-border-color-active-esndbs, transparent);
  color: var(--awsui-style-color-active-esndbs, var(--color-text-interactive-inverted-default-nzthan, #dedee3));
  box-shadow: var(--awsui-style-box-shadow-active-esndbs);
}
.awsui_button_vjswe_13k2n_157.awsui_variant-flashbar-icon_vjswe_13k2n_442.awsui_disabled_vjswe_13k2n_227:not(#\9) {
  background: var(--awsui-style-background-disabled-esndbs, transparent);
  border-color: var(--awsui-style-border-color-disabled-esndbs, transparent);
  color: var(--awsui-style-color-disabled-esndbs, var(--color-text-interactive-disabled-bhh1zo, #b4b4bb));
  box-shadow: var(--awsui-style-box-shadow-disabled-esndbs);
  text-decoration: none;
  cursor: auto;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-breadcrumb-group_vjswe_13k2n_471:not(#\9) {
  background: var(--awsui-style-background-default-esndbs, transparent);
  color: var(--awsui-style-color-default-esndbs, var(--color-text-link-default-rhby5q, #006ce0));
  border-color: var(--awsui-style-border-color-default-esndbs, transparent);
  box-shadow: var(--awsui-style-box-shadow-default-esndbs);
  border-block-width: 0;
  border-inline-width: 0;
  position: relative;
  text-decoration: none;
  padding-block: 0;
  padding-inline: 0;
  font-weight: normal;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-breadcrumb-group_vjswe_13k2n_471:not(#\9):hover {
  background: var(--awsui-style-background-hover-esndbs, transparent);
  border-color: var(--awsui-style-border-color-hover-esndbs, transparent);
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-link-hover-br6snu, #002b66));
  box-shadow: var(--awsui-style-box-shadow-hover-esndbs);
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-breadcrumb-group_vjswe_13k2n_471:not(#\9):active {
  background: var(--awsui-style-background-active-esndbs, transparent);
  border-color: var(--awsui-style-border-color-active-esndbs, transparent);
  color: var(--awsui-style-color-active-esndbs, var(--color-text-link-default-rhby5q, #006ce0));
  box-shadow: var(--awsui-style-box-shadow-active-esndbs);
}
.awsui_button_vjswe_13k2n_157.awsui_variant-breadcrumb-group_vjswe_13k2n_471.awsui_disabled_vjswe_13k2n_227:not(#\9) {
  background: var(--awsui-style-background-disabled-esndbs, transparent);
  border-color: var(--awsui-style-border-color-disabled-esndbs, transparent);
  color: var(--awsui-style-color-disabled-esndbs, var(--color-text-interactive-disabled-bhh1zo, #b4b4bb));
  box-shadow: var(--awsui-style-box-shadow-disabled-esndbs);
  text-decoration: none;
  cursor: auto;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-menu-trigger_vjswe_13k2n_505:not(#\9) {
  background: var(--awsui-style-background-default-esndbs, transparent);
  color: var(--awsui-style-color-default-esndbs, var(--color-text-button-normal-default-t865au, #006ce0));
  border-color: var(--awsui-style-border-color-default-esndbs, transparent);
  box-shadow: var(--awsui-style-box-shadow-default-esndbs);
  position: relative;
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-menu-trigger_vjswe_13k2n_505:not(#\9):hover {
  background: var(--awsui-style-background-hover-esndbs, transparent);
  border-color: var(--awsui-style-border-color-hover-esndbs, transparent);
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-button-normal-hover-20c0ob, #002b66));
  box-shadow: var(--awsui-style-box-shadow-hover-esndbs);
  text-decoration: none;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-menu-trigger_vjswe_13k2n_505:not(#\9):active {
  background: var(--awsui-style-background-active-esndbs, transparent);
  border-color: var(--awsui-style-border-color-active-esndbs, transparent);
  color: var(--awsui-style-color-active-esndbs, var(--color-text-button-normal-active-fm6d53, #002b66));
  box-shadow: var(--awsui-style-box-shadow-active-esndbs);
}
.awsui_button_vjswe_13k2n_157.awsui_variant-menu-trigger_vjswe_13k2n_505.awsui_disabled_vjswe_13k2n_227:not(#\9) {
  background: var(--awsui-style-background-disabled-esndbs, transparent);
  border-color: var(--awsui-style-border-color-disabled-esndbs, transparent);
  color: var(--awsui-style-color-disabled-esndbs, var(--color-text-interactive-disabled-bhh1zo, #b4b4bb));
  box-shadow: var(--awsui-style-box-shadow-disabled-esndbs);
  text-decoration: none;
  cursor: auto;
}
.awsui_button_vjswe_13k2n_157:not(#\9):focus {
  outline: none;
  text-decoration: none;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_13k2n_157:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_13k2n_157:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-jj138g, 4px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_13k2n_157:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * var(--space-button-focus-outline-gutter-jj138g, 4px));
  inset-block-start: calc(-1 * var(--space-button-focus-outline-gutter-jj138g, 4px));
  inline-size: calc(100% + var(--space-button-focus-outline-gutter-jj138g, 4px) + var(--space-button-focus-outline-gutter-jj138g, 4px));
  block-size: calc(100% + var(--space-button-focus-outline-gutter-jj138g, 4px) + var(--space-button-focus-outline-gutter-jj138g, 4px));
  border-start-start-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  border-start-end-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  border-end-start-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  border-end-end-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  box-shadow: var(--awsui-style-focus-ring-box-shadow-esndbs);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_13k2n_157:not(#\9):focus.awsui_variant-icon_vjswe_13k2n_293, body[data-awsui-focus-visible=true] .awsui_button_vjswe_13k2n_157:not(#\9):focus.awsui_variant-modal-dismiss_vjswe_13k2n_413, body[data-awsui-focus-visible=true] .awsui_button_vjswe_13k2n_157:not(#\9):focus.awsui_variant-flashbar-icon_vjswe_13k2n_442 {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_13k2n_157:not(#\9):focus.awsui_variant-icon_vjswe_13k2n_293, body[data-awsui-focus-visible=true] .awsui_button_vjswe_13k2n_157:not(#\9):focus.awsui_variant-modal-dismiss_vjswe_13k2n_413, body[data-awsui-focus-visible=true] .awsui_button_vjswe_13k2n_157:not(#\9):focus.awsui_variant-flashbar-icon_vjswe_13k2n_442 {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-jj138g, 4px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_13k2n_157:not(#\9):focus.awsui_variant-icon_vjswe_13k2n_293::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_13k2n_157:not(#\9):focus.awsui_variant-modal-dismiss_vjswe_13k2n_413::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_13k2n_157:not(#\9):focus.awsui_variant-flashbar-icon_vjswe_13k2n_442::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * var(--space-button-focus-outline-gutter-jj138g, 4px));
  inset-block-start: calc(-1 * var(--space-button-icon-focus-outline-gutter-vertical-r44mtq, 0px));
  inline-size: calc(100% + var(--space-button-focus-outline-gutter-jj138g, 4px) + var(--space-button-focus-outline-gutter-jj138g, 4px));
  block-size: calc(100% + var(--space-button-icon-focus-outline-gutter-vertical-r44mtq, 0px) + var(--space-button-icon-focus-outline-gutter-vertical-r44mtq, 0px));
  border-start-start-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  border-start-end-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  border-end-start-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  border-end-end-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  box-shadow: var(--awsui-style-focus-ring-box-shadow-esndbs);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_13k2n_157:not(#\9):focus.awsui_variant-inline-icon_vjswe_13k2n_322, body[data-awsui-focus-visible=true] .awsui_button_vjswe_13k2n_157:not(#\9):focus.awsui_variant-inline-icon-pointer-target_vjswe_13k2n_351 {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_13k2n_157:not(#\9):focus.awsui_variant-inline-icon_vjswe_13k2n_322, body[data-awsui-focus-visible=true] .awsui_button_vjswe_13k2n_157:not(#\9):focus.awsui_variant-inline-icon-pointer-target_vjswe_13k2n_351 {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-inline-icon-focus-outline-gutter-zbfgku, 0px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_button_vjswe_13k2n_157:not(#\9):focus.awsui_variant-inline-icon_vjswe_13k2n_322::before, body[data-awsui-focus-visible=true] .awsui_button_vjswe_13k2n_157:not(#\9):focus.awsui_variant-inline-icon-pointer-target_vjswe_13k2n_351::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-zbfgku, 0px));
  inset-block-start: calc(-1 * var(--space-button-inline-icon-focus-outline-gutter-zbfgku, 0px));
  inline-size: calc(100% + var(--space-button-inline-icon-focus-outline-gutter-zbfgku, 0px) + var(--space-button-inline-icon-focus-outline-gutter-zbfgku, 0px));
  block-size: calc(100% + var(--space-button-inline-icon-focus-outline-gutter-zbfgku, 0px) + var(--space-button-inline-icon-focus-outline-gutter-zbfgku, 0px));
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}
.awsui_button_vjswe_13k2n_157.awsui_button-no-text_vjswe_13k2n_601:not(#\9) {
  padding-inline-start: var(--space-button-icon-only-horizontal-i85hxi, 6px);
  padding-inline-end: var(--space-button-icon-only-horizontal-i85hxi, 6px);
}
.awsui_button_vjswe_13k2n_157.awsui_button-no-wrap_vjswe_13k2n_605:not(#\9) {
  white-space: nowrap;
}
.awsui_button_vjswe_13k2n_157.awsui_full-width_vjswe_13k2n_608:not(#\9) {
  inline-size: 100%;
  text-align: center;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-icon_vjswe_13k2n_293:not(#\9), .awsui_button_vjswe_13k2n_157.awsui_variant-inline-icon_vjswe_13k2n_322:not(#\9), .awsui_button_vjswe_13k2n_157.awsui_variant-inline-icon-pointer-target_vjswe_13k2n_351:not(#\9), .awsui_button_vjswe_13k2n_157.awsui_variant-flashbar-icon_vjswe_13k2n_442:not(#\9) {
  padding-inline: var(--space-xxs-hwfkai, 4px);
}
.awsui_button_vjswe_13k2n_157.awsui_variant-modal-dismiss_vjswe_13k2n_413:not(#\9) {
  padding-block: var(--space-button-modal-dismiss-vertical-vqfxjd, 2px);
  padding-inline: var(--space-xxs-hwfkai, 4px);
  margin-inline-end: calc(-1 * var(--space-xxs-hwfkai, 4px));
}
.awsui_button_vjswe_13k2n_157.awsui_variant-inline-icon_vjswe_13k2n_322:not(#\9) {
  padding-block: 0;
  border-block-width: 0;
  border-inline-width: 0;
}
.awsui_button_vjswe_13k2n_157.awsui_button-compact_vjswe_13k2n_625:not(#\9) {
  padding-block: 0;
  border-block-width: 0;
  border-inline-width: 0;
}
.awsui_button_vjswe_13k2n_157.awsui_variant-inline-icon-pointer-target_vjswe_13k2n_351:not(#\9) {
  padding-block: var(--space-xxxs-pajhad, 2px);
  border-block-width: 0;
  border-inline-width: 0;
}
.awsui_button_vjswe_13k2n_157 > .awsui_icon-left_vjswe_13k2n_635:not(#\9) {
  position: relative;
  inset-inline-start: calc(-1 * var(--space-xxs-hwfkai, 4px));
  margin-inline-end: var(--space-xxs-hwfkai, 4px);
}
.awsui_button_vjswe_13k2n_157 > .awsui_icon-right_vjswe_13k2n_640:not(#\9) {
  position: relative;
  inset-inline-end: calc(-1 * var(--space-xxs-hwfkai, 4px));
  margin-inline-start: var(--space-xxs-hwfkai, 4px);
}
.awsui_button_vjswe_13k2n_157.awsui_variant-inline-link_vjswe_13k2n_380 > .awsui_icon-left_vjswe_13k2n_635:not(#\9) {
  inset-inline-start: 0;
  margin-inline-end: var(--space-xs-ymlm0b, 8px);
}
.awsui_button_vjswe_13k2n_157.awsui_variant-inline-link_vjswe_13k2n_380 > .awsui_icon-right_vjswe_13k2n_640:not(#\9) {
  inset-inline-end: 0;
  margin-inline-start: var(--space-xs-ymlm0b, 8px);
}
.awsui_button_vjswe_13k2n_157.awsui_button-no-text_vjswe_13k2n_601 > .awsui_icon_vjswe_13k2n_635:not(#\9) {
  margin-inline-start: auto;
  margin-inline-end: auto;
  inset-inline: 0;
}

.awsui_link_vjswe_13k2n_659.awsui_disabled_vjswe_13k2n_227:not(#\9):not(.awsui_disabled-with-reason_vjswe_13k2n_659) {
  pointer-events: none;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_label_1f1d4_ocied_5:not(#\9) {
  /* used in analytics metadata */
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_disabled-reason-tooltip_1ueyk_ca6yt_5:not(#\9) {
  /* used in test-utils or tests */
}

.awsui_external-icon_1ueyk_ca6yt_9:not(#\9) {
  /* used in test-utils or tests */
}/*
 Copyright Amazon.com, Inc. or its affiliates. All 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_37gf8_1udtb_9:not(#\9) {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-xs-ymlm0b, 8px);
}
.awsui_root_37gf8_1udtb_9 > :not(#\9):empty {
  display: none;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_header_17427_1ns0c_5:not(#\9) {
  /* used in analytics metadata */
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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_alert_mx3cw_14ds8_193:not(#\9) {
  animation: awsui_awsui-motion-fade-in_mx3cw_14ds8_1 var(--motion-duration-show-paced-otsjh8, 180ms) var(--motion-easing-show-paced-ym6eyn, ease-out);
}
@keyframes awsui_awsui-motion-fade-in_mx3cw_14ds8_1 {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_alert_mx3cw_14ds8_193:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_alert_mx3cw_14ds8_193:not(#\9), .awsui-mode-entering .awsui_alert_mx3cw_14ds8_193:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_root_mx3cw_14ds8_215:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  word-wrap: break-word;
  max-inline-size: 100%;
  overflow: hidden;
  display: block;
}
.awsui_root_mx3cw_14ds8_215.awsui_hidden_mx3cw_14ds8_250:not(#\9) {
  display: none;
}

.awsui_alert_mx3cw_14ds8_193:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  color: var(--color-text-alert-default-rwuv9g, #0f141a);
  position: relative;
  display: flex;
  flex-direction: row;
  border-block-start: var(--border-width-alert-block-start-5wbfsk, 2px) solid;
  border-block-end: var(--border-width-alert-block-end-q8rr42, 2px) solid;
  border-inline-start: var(--border-width-alert-inline-start-gjm6m1, 2px) solid;
  border-inline-end: var(--border-width-alert-inline-end-9s426v, 2px) solid;
  border-start-start-radius: var(--border-radius-alert-syagf6, 12px);
  border-start-end-radius: var(--border-radius-alert-syagf6, 12px);
  border-end-start-radius: var(--border-radius-alert-syagf6, 12px);
  border-end-end-radius: var(--border-radius-alert-syagf6, 12px);
  padding-block: var(--space-alert-vertical-dlp5wr, 8px);
  padding-inline: var(--space-alert-horizontal-ul364s, 16px);
  background-color: var(--color-background-container-content-78ljyf, #ffffff);
  --awsui-alert-focus-ring-box-shadow-esndbs: 0 0 0 var(--awsui-alert-focus-ring-border-width-esndbs, 2px) var(--awsui-alert-focus-ring-border-color-esndbs, var(--color-border-item-focused-ditkrb, #006ce0));
}

.awsui_alert-wrapper_mx3cw_14ds8_302:not(#\9) {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: var(--space-alert-action-left-4s8zo5, 12px);
}

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

.awsui_initial-hidden_mx3cw_14ds8_314:not(#\9) {
  overflow: hidden;
  block-size: 0;
}

.awsui_header_mx3cw_14ds8_319:not(#\9),
.awsui_header-replacement_mx3cw_14ds8_320:not(#\9) {
  font-weight: var(--font-weight-alert-header-zg25o1, 700);
}

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

.awsui_action-slot_mx3cw_14ds8_328:not(#\9),
.awsui_action-button_mx3cw_14ds8_329:not(#\9) {
  /* used in test-utils */
}

.awsui_alert-focus-wrapper_mx3cw_14ds8_333:not(#\9) {
  flex: 1;
  min-inline-size: 70%;
  display: grid;
  grid-template-columns: min-content auto;
}
.awsui_alert-focus-wrapper_mx3cw_14ds8_333:not(#\9):focus {
  outline: none;
}
body[data-awsui-focus-visible=true] .awsui_alert-focus-wrapper_mx3cw_14ds8_333:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_alert-focus-wrapper_mx3cw_14ds8_333:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-jj138g, 4px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_alert-focus-wrapper_mx3cw_14ds8_333:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * var(--space-button-focus-outline-gutter-jj138g, 4px));
  inset-block-start: calc(-1 * var(--space-button-focus-outline-gutter-jj138g, 4px));
  inline-size: calc(100% + var(--space-button-focus-outline-gutter-jj138g, 4px) + var(--space-button-focus-outline-gutter-jj138g, 4px));
  block-size: calc(100% + var(--space-button-focus-outline-gutter-jj138g, 4px) + var(--space-button-focus-outline-gutter-jj138g, 4px));
  border-start-start-radius: var(--awsui-alert-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  border-start-end-radius: var(--awsui-alert-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  border-end-start-radius: var(--awsui-alert-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  border-end-end-radius: var(--awsui-alert-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  box-shadow: var(--awsui-alert-focus-ring-box-shadow-esndbs);
}

.awsui_text_mx3cw_14ds8_364:not(#\9) {
  min-inline-size: 0;
  padding-block: var(--border-width-button-jm0qg7, 2px);
  padding-inline: 0;
  margin-block: var(--space-scaled-xxs-pfm1nx, 4px);
  margin-inline: var(--space-xxs-hwfkai, 4px);
}
.awsui_text_mx3cw_14ds8_364.awsui_icon_mx3cw_14ds8_371:not(#\9) {
  margin-inline-start: 0;
}
.awsui_text_mx3cw_14ds8_364.awsui_message_mx3cw_14ds8_374:not(#\9) {
  margin-inline-end: var(--space-alert-message-right-mrjbnn, 4px);
}

.awsui_action-wrapped_mx3cw_14ds8_378:not(#\9) {
  margin-block-end: var(--space-xxs-hwfkai, 4px);
}

.awsui_icon-size-medium_mx3cw_14ds8_382 > .awsui_alert-wrapper_mx3cw_14ds8_302 > .awsui_action-wrapped_mx3cw_14ds8_378:not(#\9) {
  margin-inline-start: calc(var(--size-icon-medium-uv8xcz, 20px) + var(--space-xs-ymlm0b, 8px));
}

.awsui_icon-size-big_mx3cw_14ds8_386 > .awsui_alert-wrapper_mx3cw_14ds8_302 > .awsui_action-wrapped_mx3cw_14ds8_378:not(#\9) {
  margin-inline-start: calc(var(--size-icon-big-7pq9l3, 32px) + var(--space-xs-ymlm0b, 8px));
}

.awsui_icon-size-normal_mx3cw_14ds8_390 > .awsui_alert-wrapper_mx3cw_14ds8_302 > .awsui_action-wrapped_mx3cw_14ds8_378:not(#\9) {
  margin-inline-start: calc(var(--size-icon-normal-levt08, 16px) + var(--space-xs-ymlm0b, 8px));
}

.awsui_content_mx3cw_14ds8_394:not(#\9),
.awsui_content-replacement_mx3cw_14ds8_395:not(#\9) {
  /* used in test-utils */
}

.awsui_dismiss_mx3cw_14ds8_399:not(#\9) {
  margin-inline-end: calc(-1 * var(--space-xxs-hwfkai, 4px));
  margin-inline-start: var(--space-s-tvghoh, 12px);
}

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

.awsui_type-error_mx3cw_14ds8_408:not(#\9) {
  border-color: var(--color-border-status-error-vxvfad, #db0000);
  background-color: var(--color-background-alert-error-v2rgf2, #fff5f5);
}
.awsui_type-error_mx3cw_14ds8_408 > .awsui_alert-wrapper_mx3cw_14ds8_302 > .awsui_alert-focus-wrapper_mx3cw_14ds8_333 > .awsui_icon_mx3cw_14ds8_371:not(#\9) {
  color: var(--awsui-alert-icon-color-esndbs, var(--color-text-alert-icon-error-tlrirw, #db0000));
}

.awsui_type-warning_mx3cw_14ds8_416:not(#\9) {
  border-color: var(--color-border-status-warning-s79l22, #855900);
  background-color: var(--color-background-alert-warning-xizfdk, #fffef0);
}
.awsui_type-warning_mx3cw_14ds8_416 > .awsui_alert-wrapper_mx3cw_14ds8_302 > .awsui_alert-focus-wrapper_mx3cw_14ds8_333 > .awsui_icon_mx3cw_14ds8_371:not(#\9) {
  color: var(--awsui-alert-icon-color-esndbs, var(--color-text-alert-icon-warning-jj09xr, #855900));
}

.awsui_type-success_mx3cw_14ds8_424:not(#\9) {
  border-color: var(--color-border-status-success-uk2p7m, #00802f);
  background-color: var(--color-background-alert-success-xqn40g, #effff1);
}
.awsui_type-success_mx3cw_14ds8_424 > .awsui_alert-wrapper_mx3cw_14ds8_302 > .awsui_alert-focus-wrapper_mx3cw_14ds8_333 > .awsui_icon_mx3cw_14ds8_371:not(#\9) {
  color: var(--awsui-alert-icon-color-esndbs, var(--color-text-alert-icon-success-6ptnga, #00802f));
}

.awsui_type-info_mx3cw_14ds8_432:not(#\9) {
  border-color: var(--color-border-status-info-2zt73n, #006ce0);
  background-color: var(--color-background-alert-info-8je547, #f0fbff);
}
.awsui_type-info_mx3cw_14ds8_432 > .awsui_alert-wrapper_mx3cw_14ds8_302 > .awsui_alert-focus-wrapper_mx3cw_14ds8_333 > .awsui_icon_mx3cw_14ds8_371:not(#\9) {
  color: var(--awsui-alert-icon-color-esndbs, var(--color-text-alert-icon-info-rwhxzh, #006ce0));
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_error-boundary_9pwoq_e6u2g_5:not(#\9),
.awsui_header_9pwoq_e6u2g_6:not(#\9),
.awsui_description_9pwoq_e6u2g_7:not(#\9),
.awsui_action_9pwoq_e6u2g_8:not(#\9),
.awsui_app-layout-part-fallback_9pwoq_e6u2g_9:not(#\9) {
  display: contents;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_fallback_11u4a_1e43p_5:not(#\9),
.awsui_feedback-action_11u4a_1e43p_6:not(#\9),
.awsui_refresh-action_11u4a_1e43p_7:not(#\9),
.awsui_header_11u4a_1e43p_8:not(#\9),
.awsui_description_11u4a_1e43p_9:not(#\9),
.awsui_action_11u4a_1e43p_10:not(#\9) {
  /* used in test-utils */
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_header_164jl_1ns0c_5:not(#\9) {
  /* used in analytics metadata */
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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_14iqq_1wquw_189:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open 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_1wquw_189.awsui_fit-height_14iqq_1wquw_222:not(#\9) {
  display: flex;
  flex-direction: column;
  block-size: 100%;
}
.awsui_root_14iqq_1wquw_189.awsui_fit-height_14iqq_1wquw_222.awsui_with-side-media_14iqq_1wquw_227:not(#\9) {
  flex-direction: row;
}
.awsui_root_14iqq_1wquw_189.awsui_variant-default_14iqq_1wquw_230:not(#\9), .awsui_root_14iqq_1wquw_189.awsui_variant-stacked_14iqq_1wquw_230:not(#\9) {
  background-color: var(--color-background-container-content-78ljyf, #ffffff);
  border-start-start-radius: var(--border-radius-container-nsfwmm, 16px);
  border-start-end-radius: var(--border-radius-container-nsfwmm, 16px);
  border-end-start-radius: var(--border-radius-container-nsfwmm, 16px);
  border-end-end-radius: var(--border-radius-container-nsfwmm, 16px);
  box-sizing: border-box;
}
.awsui_root_14iqq_1wquw_189.awsui_variant-default_14iqq_1wquw_230.awsui_refresh_14iqq_1wquw_238:not(#\9), .awsui_root_14iqq_1wquw_189.awsui_variant-stacked_14iqq_1wquw_230.awsui_refresh_14iqq_1wquw_238:not(#\9) {
  border-block: solid var(--border-divider-section-width-uwo8my, 1px) var(--color-border-divider-default-0de9c8, #c6c6cd);
  border-inline: solid var(--border-divider-section-width-uwo8my, 1px) var(--color-border-divider-default-0de9c8, #c6c6cd);
}
.awsui_root_14iqq_1wquw_189.awsui_variant-default_14iqq_1wquw_230:not(#\9):not(.awsui_refresh_14iqq_1wquw_238)::before, .awsui_root_14iqq_1wquw_189.awsui_variant-stacked_14iqq_1wquw_230:not(#\9):not(.awsui_refresh_14iqq_1wquw_238)::before {
  content: "";
  position: absolute;
  inset-inline-start: 0px;
  inset-block-start: 0px;
  inline-size: 100%;
  block-size: 100%;
  pointer-events: none;
  background: transparent;
  box-sizing: border-box;
  border-color: transparent;
  border-block-start: var(--border-container-top-width-n1eke6, 0px) solid var(--color-border-container-top-k3vmoz, transparent);
  border-start-start-radius: var(--border-radius-container-nsfwmm, 16px);
  border-start-end-radius: var(--border-radius-container-nsfwmm, 16px);
  border-end-start-radius: var(--border-radius-container-nsfwmm, 16px);
  border-end-end-radius: var(--border-radius-container-nsfwmm, 16px);
  z-index: 1;
}
.awsui_root_14iqq_1wquw_189.awsui_variant-default_14iqq_1wquw_230:not(#\9):not(.awsui_refresh_14iqq_1wquw_238)::after, .awsui_root_14iqq_1wquw_189.awsui_variant-stacked_14iqq_1wquw_230:not(#\9):not(.awsui_refresh_14iqq_1wquw_238)::after {
  content: "";
  position: absolute;
  inset-inline-start: 0px;
  inset-block-start: 0px;
  inline-size: 100%;
  block-size: 100%;
  pointer-events: none;
  background: transparent;
  box-sizing: border-box;
  border-start-start-radius: var(--border-radius-container-nsfwmm, 16px);
  border-start-end-radius: var(--border-radius-container-nsfwmm, 16px);
  border-end-start-radius: var(--border-radius-container-nsfwmm, 16px);
  border-end-end-radius: var(--border-radius-container-nsfwmm, 16px);
  box-shadow: var(--shadow-container-53ltfv, 0px 0px 1px 1px #e9ebed, 0px 1px 8px 2px rgba(0, 7, 22, 0.12));
}
.awsui_root_14iqq_1wquw_189.awsui_variant-stacked_14iqq_1wquw_230:not(#\9):not(:last-child), .awsui_root_14iqq_1wquw_189.awsui_variant-stacked_14iqq_1wquw_230:not(#\9):not(:last-child)::before, .awsui_root_14iqq_1wquw_189.awsui_variant-stacked_14iqq_1wquw_230:not(#\9):not(:last-child)::after {
  border-end-end-radius: 0;
  border-end-start-radius: 0;
  border-block-end-width: 0;
}
.awsui_root_14iqq_1wquw_189.awsui_variant-stacked_14iqq_1wquw_230 + .awsui_root_14iqq_1wquw_189.awsui_variant-stacked_14iqq_1wquw_230:not(#\9), .awsui_root_14iqq_1wquw_189.awsui_variant-stacked_14iqq_1wquw_230 + .awsui_root_14iqq_1wquw_189.awsui_variant-stacked_14iqq_1wquw_230:not(#\9)::before, .awsui_root_14iqq_1wquw_189.awsui_variant-stacked_14iqq_1wquw_230 + .awsui_root_14iqq_1wquw_189.awsui_variant-stacked_14iqq_1wquw_230:not(#\9)::after {
  border-start-start-radius: 0;
  border-start-end-radius: 0;
}
.awsui_root_14iqq_1wquw_189.awsui_variant-stacked_14iqq_1wquw_230 + .awsui_root_14iqq_1wquw_189.awsui_variant-stacked_14iqq_1wquw_230:not(#\9):not(.awsui_refresh_14iqq_1wquw_238)::before {
  border-block-start: var(--border-divider-section-width-uwo8my, 1px) solid var(--color-border-divider-default-0de9c8, #c6c6cd);
}
.awsui_root_14iqq_1wquw_189.awsui_sticky-enabled_14iqq_1wquw_288:not(#\9):not(.awsui_refresh_14iqq_1wquw_238)::before {
  inset-block-start: calc(-1 * var(--border-container-top-width-n1eke6, 0px));
}
.awsui_root_14iqq_1wquw_189.awsui_sticky-enabled_14iqq_1wquw_288:not(#\9):not(.awsui_refresh_14iqq_1wquw_238).awsui_variant-stacked_14iqq_1wquw_230::before {
  inset-block-start: calc(-1 * var(--border-divider-section-width-uwo8my, 1px));
}
.awsui_root_14iqq_1wquw_189.awsui_with-stuck-sticky-header-at-bottom_14iqq_1wquw_294:not(#\9) {
  border-end-end-radius: 0;
  border-end-start-radius: 0;
}

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

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

.awsui_content-wrapper_14iqq_1wquw_309:not(#\9) {
  display: flex;
  flex-direction: column;
  inline-size: 100%;
}
.awsui_content-wrapper-fit-height_14iqq_1wquw_314:not(#\9) {
  block-size: 100%;
  overflow: hidden;
  border-end-start-radius: var(--border-radius-container-nsfwmm, 16px);
  border-end-end-radius: var(--border-radius-container-nsfwmm, 16px);
}

.awsui_media_14iqq_1wquw_321:not(#\9) {
  overflow: hidden;
  flex-shrink: 0;
}
.awsui_media_14iqq_1wquw_321 img:not(#\9),
.awsui_media_14iqq_1wquw_321 video:not(#\9),
.awsui_media_14iqq_1wquw_321 picture:not(#\9) {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  object-position: center;
}
.awsui_media_14iqq_1wquw_321 iframe:not(#\9) {
  inline-size: 100%;
  block-size: 100%;
  border-block: 0;
  border-inline: 0;
}
.awsui_media-top_14iqq_1wquw_339:not(#\9) {
  max-block-size: 66%;
  border-start-start-radius: calc(var(--border-radius-container-nsfwmm, 16px) - 1px);
  border-start-end-radius: calc(var(--border-radius-container-nsfwmm, 16px) - 1px);
}
.awsui_media-side_14iqq_1wquw_344:not(#\9) {
  max-inline-size: 66%;
  border-start-start-radius: calc(var(--border-radius-container-nsfwmm, 16px) - 1px);
  border-end-start-radius: calc(var(--border-radius-container-nsfwmm, 16px) - 1px);
}

.awsui_header_14iqq_1wquw_350:not(#\9) {
  background-color: var(--color-background-container-header-ydavso, #ffffff);
  border-start-start-radius: var(--border-radius-container-nsfwmm, 16px);
  border-start-end-radius: var(--border-radius-container-nsfwmm, 16px);
}
.awsui_header_14iqq_1wquw_350.awsui_header-full-page_14iqq_1wquw_355:not(#\9) {
  background-color: var(--color-background-layout-main-7z8vaj, #ffffff);
}
.awsui_header-variant-embedded_14iqq_1wquw_358.awsui_refresh_14iqq_1wquw_238:not(#\9):not(.awsui_header-sticky-enabled_14iqq_1wquw_358) {
  background-color: transparent;
}
.awsui_header_14iqq_1wquw_350.awsui_header-with-media_14iqq_1wquw_361:not(#\9) {
  background: none;
}
.awsui_header_14iqq_1wquw_350.awsui_header-with-media_14iqq_1wquw_361:not(#\9):not(:empty) {
  border-block-end: none;
}
.awsui_header-sticky-disabled_14iqq_1wquw_367:not(#\9) {
  position: relative;
  z-index: 1;
}
.awsui_header-sticky-enabled_14iqq_1wquw_358:not(#\9) {
  inset-block-start: 0;
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  position: sticky;
  z-index: 800;
}
.awsui_header-stuck_14iqq_1wquw_377:not(#\9) {
  border-start-start-radius: 0;
  border-start-end-radius: 0;
  border-end-start-radius: 0;
  border-end-end-radius: 0;
}
.awsui_header-stuck_14iqq_1wquw_377:not(#\9)::before {
  border-block: 0;
  border-inline: 0;
}
.awsui_header-stuck_14iqq_1wquw_377:not(#\9):not(.awsui_header-variant-cards_14iqq_1wquw_387) {
  box-shadow: var(--shadow-sticky-embedded-jmny8n, 0px 2px 0px 0px #e9ebed, 0px 16px 16px -12px rgba(0, 7, 22, 0.1));
}
.awsui_header-dynamic-height_14iqq_1wquw_390.awsui_header-stuck_14iqq_1wquw_377:not(#\9) {
  margin-block-end: calc(var(--line-height-heading-xl-hko6p0, 30px) - var(--line-height-heading-l-mg5bx6, 24px));
}
.awsui_header_14iqq_1wquw_350:not(#\9):not(:empty) {
  border-block-end: var(--border-container-sticky-width-nri0ix, 0px) solid var(--color-border-container-divider-9huz1a, transparent);
}
.awsui_header_14iqq_1wquw_350.awsui_with-paddings_14iqq_1wquw_396:not(#\9) {
  padding-block-start: var(--space-container-header-top-am4vzw, 12px);
  padding-block-end: var(--space-container-header-bottom-2taq8v, 8px);
  padding-inline: var(--space-container-horizontal-nqrzyh, 20px);
}
.awsui_header_14iqq_1wquw_350.awsui_with-paddings_14iqq_1wquw_396.awsui_header-variant-cards_14iqq_1wquw_387:not(#\9) {
  padding-block: var(--space-container-header-top-am4vzw, 12px);
  padding-inline: var(--space-container-horizontal-nqrzyh, 20px);
}
.awsui_header_14iqq_1wquw_350.awsui_with-hidden-content_14iqq_1wquw_405:not(#\9) {
  border-end-start-radius: var(--border-radius-container-nsfwmm, 16px);
  border-end-end-radius: var(--border-radius-container-nsfwmm, 16px);
}
.awsui_header-variant-cards_14iqq_1wquw_387:not(#\9) {
  border-start-start-radius: var(--border-radius-container-nsfwmm, 16px);
  border-start-end-radius: var(--border-radius-container-nsfwmm, 16px);
  border-end-start-radius: var(--border-radius-container-nsfwmm, 16px);
  border-end-end-radius: var(--border-radius-container-nsfwmm, 16px);
  box-sizing: border-box;
}
.awsui_header-variant-cards_14iqq_1wquw_387.awsui_refresh_14iqq_1wquw_238:not(#\9) {
  border-block: solid var(--border-divider-section-width-uwo8my, 1px) var(--color-border-divider-default-0de9c8, #c6c6cd);
  border-inline: solid var(--border-divider-section-width-uwo8my, 1px) var(--color-border-divider-default-0de9c8, #c6c6cd);
}
.awsui_header-variant-cards_14iqq_1wquw_387:not(#\9):not(.awsui_refresh_14iqq_1wquw_238)::before {
  content: "";
  position: absolute;
  inset-inline-start: 0px;
  inset-block-start: 0px;
  inline-size: 100%;
  block-size: 100%;
  pointer-events: none;
  background: transparent;
  box-sizing: border-box;
  border-color: transparent;
  border-block-start: var(--border-container-top-width-n1eke6, 0px) solid var(--color-border-container-top-k3vmoz, transparent);
  border-start-start-radius: var(--border-radius-container-nsfwmm, 16px);
  border-start-end-radius: var(--border-radius-container-nsfwmm, 16px);
  border-end-start-radius: var(--border-radius-container-nsfwmm, 16px);
  border-end-end-radius: var(--border-radius-container-nsfwmm, 16px);
  z-index: 1;
}
.awsui_header-variant-cards_14iqq_1wquw_387:not(#\9):not(.awsui_refresh_14iqq_1wquw_238)::after {
  content: "";
  position: absolute;
  inset-inline-start: 0px;
  inset-block-start: 0px;
  inline-size: 100%;
  block-size: 100%;
  pointer-events: none;
  background: transparent;
  box-sizing: border-box;
  border-start-start-radius: var(--border-radius-container-nsfwmm, 16px);
  border-start-end-radius: var(--border-radius-container-nsfwmm, 16px);
  border-end-start-radius: var(--border-radius-container-nsfwmm, 16px);
  border-end-end-radius: var(--border-radius-container-nsfwmm, 16px);
  box-shadow: var(--shadow-container-53ltfv, 0px 0px 1px 1px #e9ebed, 0px 1px 8px 2px rgba(0, 7, 22, 0.12));
}
.awsui_header-variant-cards_14iqq_1wquw_387:not(#\9):not(.awsui_header-sticky-enabled_14iqq_1wquw_358) {
  position: relative;
}
.awsui_header-variant-cards_14iqq_1wquw_387.awsui_header-stuck_14iqq_1wquw_377:not(#\9)::after, .awsui_header-variant-cards_14iqq_1wquw_387.awsui_header-stuck_14iqq_1wquw_377:not(#\9)::before {
  border-block: 0;
  border-inline: 0;
  border-start-start-radius: 0;
  border-start-end-radius: 0;
}
.awsui_header-variant-full-page_14iqq_1wquw_463.awsui_header-stuck_14iqq_1wquw_377:not(#\9) {
  box-shadow: none;
}
.awsui_header-variant-full-page_14iqq_1wquw_463.awsui_header-stuck_14iqq_1wquw_377 > .awsui_header-cover_14iqq_1wquw_466:not(#\9) {
  background-color: var(--color-background-layout-main-7z8vaj, #ffffff);
  inline-size: 100%;
  position: absolute;
  block-size: var(--space-scaled-s-8ozaad, 12px);
  inset-block-start: calc(-1 * var(--space-scaled-s-8ozaad, 12px));
}
.awsui_header-variant-full-page_14iqq_1wquw_463.awsui_header-stuck_14iqq_1wquw_377:not(#\9)::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset-inline-end: 0;
  inset-inline-start: 0;
  inset-block-end: 0;
  inset-block-start: 0;
  border-block-end: solid var(--border-divider-section-width-uwo8my, 1px) var(--color-border-divider-default-0de9c8, #c6c6cd);
}
.awsui_header-variant-full-page_14iqq_1wquw_463.awsui_header-stuck_14iqq_1wquw_377:not(#\9)::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: var(--shadow-sticky-lolw8j, 0px 4px 8px 1px rgba(0, 7, 22, 0.1));
  clip-path: polygon(-999% 100%, 999% 100%, 999% 999%, -999% 999%);
}

.awsui_content_14iqq_1wquw_309:not(#\9) {
  flex: 1;
}
.awsui_content-fit-height_14iqq_1wquw_494:not(#\9) {
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.awsui_content-inner_14iqq_1wquw_500:not(#\9) {
  flex: 1;
}
.awsui_content-inner_14iqq_1wquw_500.awsui_with-paddings_14iqq_1wquw_396:not(#\9) {
  padding-block: var(--space-scaled-l-sej05l, 20px);
  padding-inline: var(--space-container-horizontal-nqrzyh, 20px);
}
.awsui_content-inner_14iqq_1wquw_500.awsui_with-paddings_14iqq_1wquw_396.awsui_with-header_14iqq_1wquw_507:not(#\9) {
  padding-block-start: var(--space-container-content-top-1wtqrc, 4px);
}

.awsui_footer_14iqq_1wquw_511.awsui_with-paddings_14iqq_1wquw_396:not(#\9) {
  padding-block: var(--space-scaled-s-8ozaad, 12px);
  padding-inline: var(--space-container-horizontal-nqrzyh, 20px);
}
.awsui_footer_14iqq_1wquw_511.awsui_with-divider_14iqq_1wquw_515:not(#\9) {
  border-block-start: var(--border-divider-section-width-uwo8my, 1px) solid var(--color-border-divider-default-0de9c8, #c6c6cd);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_content-inner_1mwlm_oyjaq_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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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_expand-toggle-icon_1xe88_arkx1_153:not(#\9) {
  transition: transform var(--motion-duration-rotate-90-lyzb0k, 135ms) var(--motion-easing-rotate-90-jhbqg9, cubic-bezier(0.165, 0.84, 0.44, 1));
}
@media (prefers-reduced-motion: reduce) {
  .awsui_expand-toggle-icon_1xe88_arkx1_153:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_expand-toggle-icon_1xe88_arkx1_153:not(#\9), .awsui-mode-entering .awsui_expand-toggle-icon_1xe88_arkx1_153:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_expand-toggle-icon_1xe88_arkx1_153:not(#\9) {
  transform: rotate(-90deg);
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
}
.awsui_expand-toggle-icon_1xe88_arkx1_153:not(#\9):dir(rtl) {
  transform: rotate(90deg);
}
.awsui_expand-toggle-icon-expanded_1xe88_arkx1_174:not(#\9) {
  transform: rotate(0deg);
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
}
.awsui_expand-toggle-icon-expanded_1xe88_arkx1_174:not(#\9):dir(rtl) {
  transform: rotate(0deg);
}

.awsui_expand-toggle_1xe88_arkx1_153:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  cursor: pointer;
  inline-size: var(--space-m-dsumyt, 16px);
  block-size: var(--space-m-dsumyt, 16px);
  border-block: 0;
  border-inline: 0;
  margin-block: 0;
  margin-inline: 0;
  padding-block: 0;
  padding-inline: 0;
  background: none;
  outline: 0;
  color: var(--color-text-interactive-default-1o1pl2, #424650);
}
body[data-awsui-focus-visible=true] .awsui_expand-toggle_1xe88_arkx1_153:not(#\9):not(.awsui_disable-focus-highlight_1xe88_arkx1_225):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_expand-toggle_1xe88_arkx1_153:not(#\9):not(.awsui_disable-focus-highlight_1xe88_arkx1_225):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(var(--space-button-focus-outline-gutter-jj138g, 4px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_expand-toggle_1xe88_arkx1_153:not(#\9):not(.awsui_disable-focus-highlight_1xe88_arkx1_225):focus::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * var(--space-button-focus-outline-gutter-jj138g, 4px));
  inset-block-start: calc(-1 * var(--space-button-focus-outline-gutter-jj138g, 4px));
  inline-size: calc(100% + var(--space-button-focus-outline-gutter-jj138g, 4px) + var(--space-button-focus-outline-gutter-jj138g, 4px));
  block-size: calc(100% + var(--space-button-focus-outline-gutter-jj138g, 4px) + var(--space-button-focus-outline-gutter-jj138g, 4px));
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}
.awsui_expand-toggle_1xe88_arkx1_153:not(#\9):hover {
  color: var(--color-text-interactive-hover-j5y3wx, #0f141a);
}
.awsui_expand-toggle_1xe88_arkx1_153:not(#\9):active {
  color: var(--color-text-interactive-active-fedaa8, #0f141a);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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_wih1l_1x6ic_153:not(#\9) {
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  inline-size: 100%;
}

.awsui_tools_wih1l_1x6ic_164:not(#\9) {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--space-scaled-xs-xwoogq, 8px) var(--space-l-2ud1p3, 20px);
  padding-block-start: var(--space-scaled-xs-xwoogq, 8px);
  padding-block-end: var(--space-table-header-tools-bottom-d9u5kf, 0px);
  padding-inline: 0;
}
.awsui_tools-filtering_wih1l_1x6ic_173:not(#\9) {
  max-inline-size: 100%;
}
@supports (flex-basis: fit-content) {
  .awsui_tools-filtering_wih1l_1x6ic_173:not(#\9) {
    flex: 1 1 fit-content;
  }
}
@supports not (flex-basis: fit-content) {
  .awsui_tools-filtering_wih1l_1x6ic_173:not(#\9) {
    flex: 1 1 auto;
  }
}
.awsui_tools-align-right_wih1l_1x6ic_186:not(#\9) {
  display: flex;
  margin-inline-start: auto;
}
.awsui_tools-clear-sort_wih1l_1x6ic_190:not(#\9) {
  align-self: center;
}
.awsui_tools-clear-sort_wih1l_1x6ic_190 + .awsui_tools-pagination_wih1l_1x6ic_193:not(#\9), .awsui_tools-clear-sort_wih1l_1x6ic_190 + .awsui_tools-preferences_wih1l_1x6ic_193:not(#\9), .awsui_tools-pagination_wih1l_1x6ic_193 + .awsui_tools-preferences_wih1l_1x6ic_193:not(#\9) {
  border-inline-start: var(--border-divider-section-width-uwo8my, 1px) solid var(--color-border-divider-default-0de9c8, #c6c6cd);
  box-sizing: border-box;
  margin-inline-start: var(--space-xs-ymlm0b, 8px);
  padding-inline-start: var(--space-xs-ymlm0b, 8px);
}
.awsui_tools-small_wih1l_1x6ic_199 > .awsui_tools-filtering_wih1l_1x6ic_173:not(#\9) {
  flex-basis: 100%;
}

.awsui_table_wih1l_1x6ic_203:not(#\9) {
  inline-size: 100%;
  border-spacing: 0;
  position: relative;
  box-sizing: border-box;
}
.awsui_table-layout-fixed_wih1l_1x6ic_209:not(#\9) {
  table-layout: fixed;
}

.awsui_wrapper_wih1l_1x6ic_213:not(#\9) {
  position: relative;
  box-sizing: border-box;
  inline-size: 100%;
  overflow-x: auto;
  scrollbar-width: none; /* Hide scrollbar in Firefox */
}
.awsui_wrapper_wih1l_1x6ic_213.awsui_variant-stacked_wih1l_1x6ic_220 > .awsui_table_wih1l_1x6ic_203:not(#\9), .awsui_wrapper_wih1l_1x6ic_213.awsui_variant-stacked_wih1l_1x6ic_220 > .awsui_wrapper-content-measure_wih1l_1x6ic_220:not(#\9), .awsui_wrapper_wih1l_1x6ic_213.awsui_variant-container_wih1l_1x6ic_220 > .awsui_table_wih1l_1x6ic_203:not(#\9), .awsui_wrapper_wih1l_1x6ic_213.awsui_variant-container_wih1l_1x6ic_220 > .awsui_wrapper-content-measure_wih1l_1x6ic_220:not(#\9) {
  padding-inline: var(--space-table-horizontal-suurzj, 20px);
}
.awsui_wrapper_wih1l_1x6ic_213.awsui_variant-stacked_wih1l_1x6ic_220:not(#\9):not(.awsui_has-footer_wih1l_1x6ic_223), .awsui_wrapper_wih1l_1x6ic_213.awsui_variant-container_wih1l_1x6ic_220:not(#\9):not(.awsui_has-footer_wih1l_1x6ic_223) {
  padding-block-end: var(--space-table-content-bottom-tlfqmq, 4px);
}
.awsui_wrapper_wih1l_1x6ic_213:not(#\9):not(.awsui_has-header_wih1l_1x6ic_226) {
  border-start-end-radius: var(--border-radius-container-nsfwmm, 16px);
  border-start-start-radius: var(--border-radius-container-nsfwmm, 16px);
}
.awsui_wrapper_wih1l_1x6ic_213:not(#\9)::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Safari and Chrome */
}
body[data-awsui-focus-visible=true] .awsui_wrapper_wih1l_1x6ic_213:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: 2px;
  border-start-start-radius: var(--border-radius-container-nsfwmm, 16px);
  border-start-end-radius: var(--border-radius-container-nsfwmm, 16px);
  border-end-start-radius: var(--border-radius-container-nsfwmm, 16px);
  border-end-end-radius: var(--border-radius-container-nsfwmm, 16px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}

.awsui_cell-merged_wih1l_1x6ic_243:not(#\9) {
  text-align: center;
  padding-block: 0;
  padding-inline: 0;
}
.awsui_cell-merged_wih1l_1x6ic_243.awsui_has-footer_wih1l_1x6ic_223:not(#\9) {
  /*
  Add a bottom border to the body cell of an empty table as a separator between the
  table and the footer
  */
  border-block-end: var(--border-divider-section-width-uwo8my, 1px) solid var(--color-border-divider-default-0de9c8, #c6c6cd);
}
.awsui_cell-merged-content_wih1l_1x6ic_255:not(#\9) {
  box-sizing: border-box;
  inline-size: 100%;
  padding-block-start: var(--space-scaled-m-m892r9, 16px);
  padding-block-end: var(--space-scaled-l-sej05l, 20px);
  padding-inline: var(--space-l-2ud1p3, 20px);
}
@supports (position: sticky) {
  .awsui_cell-merged-content_wih1l_1x6ic_255:not(#\9) {
    position: sticky;
    inset-inline-start: 0;
    margin-block: 0;
    margin-inline: calc(-2 * var(--space-table-horizontal-suurzj, 20px));
  }
}

.awsui_empty_wih1l_1x6ic_271:not(#\9) {
  color: var(--color-text-empty-68xc4n, #656871);
}

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

/*
The min/max/width token values in Visual Refresh should align
the table header and body cells selection control with the table
filter search icon.
*/
.awsui_selection-control_wih1l_1x6ic_284:not(#\9) {
  box-sizing: border-box;
  max-inline-size: var(--size-table-selection-horizontal-qqiajd, 40px);
  min-inline-size: var(--size-table-selection-horizontal-qqiajd, 40px);
  position: relative;
  inline-size: var(--size-table-selection-horizontal-qqiajd, 40px);
}
.awsui_selection-control_wih1l_1x6ic_284.awsui_selection-control-header_wih1l_1x6ic_291:not(#\9) {
  padding-block: var(--space-scaled-xs-xwoogq, 8px);
  padding-inline: var(--space-scaled-l-sej05l, 20px);
  border-inline-start: var(--border-width-item-selected-yv93vd, 2px) solid transparent;
}
.awsui_selection-control-content-spans-rows_wih1l_1x6ic_296:not(#\9) {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  block-size: 100%;
}

.awsui_header-secondary_wih1l_1x6ic_303:not(#\9) {
  overflow: auto;
  scrollbar-width: none; /* Firefox */
  box-sizing: border-box;
  inline-size: 100%;
  border-start-start-radius: 0;
  border-start-end-radius: 0;
  border-end-start-radius: 0;
  border-end-end-radius: 0;
  background: var(--color-background-table-header-unjmda, #ffffff);
}
.awsui_header-secondary_wih1l_1x6ic_303.awsui_variant-full-page_wih1l_1x6ic_314:not(#\9) {
  background: var(--color-background-layout-main-7z8vaj, #ffffff);
}
.awsui_header-secondary_wih1l_1x6ic_303.awsui_variant-stacked_wih1l_1x6ic_220 > .awsui_table_wih1l_1x6ic_203:not(#\9), .awsui_header-secondary_wih1l_1x6ic_303.awsui_variant-container_wih1l_1x6ic_220 > .awsui_table_wih1l_1x6ic_203:not(#\9) {
  padding-inline: var(--space-table-horizontal-suurzj, 20px);
}
.awsui_header-secondary_wih1l_1x6ic_303.awsui_variant-stacked_wih1l_1x6ic_220:not(#\9):not(.awsui_table-has-header_wih1l_1x6ic_320), .awsui_header-secondary_wih1l_1x6ic_303.awsui_variant-container_wih1l_1x6ic_220:not(#\9):not(.awsui_table-has-header_wih1l_1x6ic_320) {
  border-start-start-radius: var(--border-radius-container-nsfwmm, 16px);
  border-start-end-radius: var(--border-radius-container-nsfwmm, 16px);
}
.awsui_header-secondary_wih1l_1x6ic_303:not(#\9)::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.awsui_header-secondary_wih1l_1x6ic_303.awsui_table-has-header_wih1l_1x6ic_320:not(#\9) {
  border-block-start: var(--border-divider-list-width-tdfx1x, 1px) solid var(--color-border-container-divider-9huz1a, transparent);
}

.awsui_header-controls_wih1l_1x6ic_331:not(#\9) {
  padding-block: var(--space-container-header-top-am4vzw, 12px) var(--space-container-header-bottom-2taq8v, 8px);
}
.awsui_header-controls_wih1l_1x6ic_331.awsui_variant-full-page_wih1l_1x6ic_314:not(#\9) {
  padding-block: 0 calc(var(--space-container-header-bottom-2taq8v, 8px) + var(--space-table-header-tools-full-page-bottom-9m47g6, 4px));
}
.awsui_header-controls_wih1l_1x6ic_331.awsui_variant-stacked_wih1l_1x6ic_220:not(#\9), .awsui_header-controls_wih1l_1x6ic_331.awsui_variant-container_wih1l_1x6ic_220:not(#\9) {
  padding-inline: calc(var(--space-table-horizontal-suurzj, 20px) + var(--space-table-header-horizontal-kb5ww2, 0px));
}
.awsui_header-controls_wih1l_1x6ic_331.awsui_variant-embedded_wih1l_1x6ic_340:not(#\9), .awsui_header-controls_wih1l_1x6ic_331.awsui_variant-borderless_wih1l_1x6ic_340:not(#\9) {
  padding-inline: var(--space-table-header-horizontal-kb5ww2, 0px);
  padding-block-start: var(--space-table-embedded-header-top-twu628, 0px);
}

.awsui_footer-wrapper_wih1l_1x6ic_345.awsui_variant-stacked_wih1l_1x6ic_220:not(#\9), .awsui_footer-wrapper_wih1l_1x6ic_345.awsui_variant-container_wih1l_1x6ic_220:not(#\9) {
  padding-inline: var(--space-table-horizontal-suurzj, 20px);
}

.awsui_footer_wih1l_1x6ic_345:not(#\9) {
  padding-block: var(--space-scaled-s-8ozaad, 12px);
  padding-inline: var(--space-table-footer-horizontal-l5g495, 0px);
}
.awsui_footer-with-pagination_wih1l_1x6ic_353:not(#\9) {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-scaled-s-8ozaad, 12px);
}
.awsui_footer-pagination_wih1l_1x6ic_361:not(#\9) {
  margin-inline-start: auto;
}

.awsui_thead-active_wih1l_1x6ic_365:not(#\9),
.awsui_row_wih1l_1x6ic_366:not(#\9),
.awsui_row-selected_wih1l_1x6ic_367:not(#\9) {
  /* used in test-utils */
}

.awsui_skeleton-loading-cell_wih1l_1x6ic_371:not(#\9) {
  padding-block: 0;
  padding-inline: 0;
  border-block-end: none;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_body-cell-counter_10jtt_16x1t_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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  position: absolute;
  inset-block: 0;
  display: flex;
  align-items: center;
}

.awsui_body-cell_c6tup_1918z_152:not(#\9) {
  box-sizing: border-box;
  border-block-start: var(--border-divider-list-width-tdfx1x, 1px) solid transparent;
  border-block-end: var(--border-divider-list-width-tdfx1x, 1px) solid var(--color-border-divider-secondary-46ol9n, #ebebf0);
  word-wrap: break-word;
  font-weight: inherit;
  text-align: start;
}
.awsui_body-cell_c6tup_1918z_152 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 0 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + -1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 1 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 0 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 2 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 3 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 4 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 3 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 5 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 4 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 6 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 5 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 7 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 6 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 8 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 7 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 8 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) + (9 - 1) * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-end: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-block-start: calc(var(--space-scaled-xs-xwoogq, 8px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2px);
  margin-block-start: calc(-1 * 2px);
}
.awsui_body-cell_c6tup_1918z_152 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-block-end: calc(calc(var(--space-scaled-xs-xwoogq, 8px) + var(--border-item-width-miijiw, 2px) - var(--border-divider-list-width-tdfx1x, 1px)) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2px);
  margin-block-end: calc(-1 * 2px);
}
.awsui_body-cell-align-top_c6tup_1918z_254:not(#\9) {
  vertical-align: top;
}
.awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  box-sizing: border-box;
}
.awsui_body-cell-content_c6tup_1918z_160:not(#\9):not(.awsui_body-cell-wrap_c6tup_1918z_260) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.awsui_body-cell-counter_c6tup_1918z_265:not(#\9) {
  display: inline;
  color: var(--color-text-body-secondary-y6dr4d, #424650);
  font-size: var(--font-size-body-s-smc8cv, 12px);
  vertical-align: bottom;
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child {
  border-inline-start: var(--border-item-width-miijiw, 2px) solid transparent;
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 0 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + -1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 1 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 0 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 2 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 3 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 4 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 3 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 5 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 4 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 6 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 5 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 7 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 6 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 8 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 7 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 8 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):first-child.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) + (9 - 1) * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):last-child {
  border-inline-end: var(--border-item-width-miijiw, 2px) solid transparent;
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):last-child > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-end: calc(calc(var(--space-l-2ud1p3, 20px) - var(--border-item-width-miijiw, 2px)) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child {
  /*
    Remove the placeholder border if the row is not selectable.
    Rows that are not selectable will reserve the horizontal space
    that the placeholder border would consume.
  */
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 0 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + -1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 1 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 0 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 2 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 3 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 4 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 3 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 5 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 4 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 6 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 5 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 7 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 6 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 8 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 7 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 8 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) + (9 - 1) * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 0 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + -1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 1 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 0 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 2 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 3 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 4 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 3 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 5 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 4 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 6 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 5 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 7 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 6 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 8 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 7 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 8 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(calc(var(--space-xxxs-pajhad, 2px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) + (9 - 1) * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 0 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + -1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 1 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 0 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 2 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 3 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 4 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 3 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 5 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 4 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 6 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 5 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 7 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 6 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 8 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 7 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 8 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) + (9 - 1) * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 0 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + -1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 1 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 0 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 2 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 3 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 4 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 3 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 5 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 4 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 6 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 5 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 7 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 6 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 8 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 7 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 8 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) + (9 - 1) * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 0 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + -1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 1 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 0 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 2 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 3 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 4 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 3 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 5 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 4 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 6 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 5 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 7 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 6 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 8 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 7 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 8 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) + (9 - 1) * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 0 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + -1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 1 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 0 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 2 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 3 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 4 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 3 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 5 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 4 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 6 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 5 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 7 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 6 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 8 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 7 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 8 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:first-child.awsui_has-striped-rows_c6tup_1918z_536.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) + (9 - 1) * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868) > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868) > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-0_c6tup_1918z_166 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 0 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-0_c6tup_1918z_166 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + -1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-1_c6tup_1918z_173 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 1 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-1_c6tup_1918z_173 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 0 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-2_c6tup_1918z_180 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 2 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-2_c6tup_1918z_180 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-3_c6tup_1918z_187 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 3 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-3_c6tup_1918z_187 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-4_c6tup_1918z_194 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 4 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-4_c6tup_1918z_194 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 3 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-5_c6tup_1918z_201 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 5 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-5_c6tup_1918z_201 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 4 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-6_c6tup_1918z_208 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 6 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-6_c6tup_1918z_208 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 5 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-7_c6tup_1918z_215 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 7 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-7_c6tup_1918z_215 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 6 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-8_c6tup_1918z_222 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 8 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-8_c6tup_1918z_222 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 7 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-9_c6tup_1918z_229 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-9_c6tup_1918z_229 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 8 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-next_c6tup_1918z_236 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868).awsui_expandable-level-next_c6tup_1918z_236 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) + (9 - 1) * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 0 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + -1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 1 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 0 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 2 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 3 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 4 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 3 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 5 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 4 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 6 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 5 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 7 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 6 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 8 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 7 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 8 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child.awsui_sticky-cell-pad-inline-start_c6tup_1918z_702:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453).awsui_body-cell-editable_c6tup_1918z_453:hover.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145 {
  margin-inline-start: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--border-divider-list-width-tdfx1x, 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) + (9 - 1) * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_is-visual-refresh_c6tup_1918z_363:not(#\9):first-child:not(.awsui_has-selection_c6tup_1918z_868):not(.awsui_body-cell-editable_c6tup_1918z_453) {
  border-inline-start: none;
}
.awsui_body-cell-first-row_c6tup_1918z_1037:not(#\9) {
  border-block-start: var(--border-item-width-miijiw, 2px) solid transparent;
}
.awsui_body-cell-last-row_c6tup_1918z_1040:not(#\9):not(.awsui_body-cell-selected_c6tup_1918z_1040):not(.awsui_has-footer_c6tup_1918z_1040) {
  border-block-end: var(--border-item-width-miijiw, 2px) solid transparent;
}
.awsui_body-cell-last-row_c6tup_1918z_1040:not(#\9):not(.awsui_body-cell-selected_c6tup_1918z_1040).awsui_has-footer_c6tup_1918z_1040 {
  /*
  Add a bottom border to the body cells of the last row as a separator between the
  table and the footer
  */
  border-block-end: var(--border-divider-section-width-uwo8my, 1px) solid var(--color-border-divider-default-0de9c8, #c6c6cd);
}
.awsui_body-cell-shaded_c6tup_1918z_1050:not(#\9) {
  background: var(--color-background-cell-shaded-c928js, #f6f6f9);
}
.awsui_body-cell_c6tup_1918z_152.awsui_has-striped-rows_c6tup_1918z_536:not(#\9):not(.awsui_body-cell-selected_c6tup_1918z_1040):not(.awsui_body-cell-last-row_c6tup_1918z_1040) {
  border-block-end-color: var(--color-border-cell-shaded-zttxxa, #dedee3);
}
.awsui_body-cell-selected_c6tup_1918z_1040:not(#\9) {
  background-color: var(--color-background-item-selected-pyr5cw, #f0fbff);
  border-block-start: var(--border-width-item-selected-yv93vd, 2px) solid var(--color-border-item-selected-63a3p8, #006ce0);
  border-block-end: var(--border-width-item-selected-yv93vd, 2px) solid var(--color-border-item-selected-63a3p8, #006ce0);
}
.awsui_body-cell-selected_c6tup_1918z_1040 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-block-end: calc(var(--space-scaled-xs-xwoogq, 8px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2px);
  margin-block-end: calc(-1 * 2px);
}
.awsui_body-cell-selected_c6tup_1918z_1040.awsui_body-cell-last-row_c6tup_1918z_1040.awsui_is-visual-refresh_c6tup_1918z_363 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-block-end: calc(calc(var(--space-scaled-xs-xwoogq, 8px) + var(--border-divider-list-width-tdfx1x, 1px)) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2px);
  margin-block-end: calc(-1 * 2px);
}
.awsui_body-cell-selected_c6tup_1918z_1040:not(#\9):first-child {
  border-inline-start: var(--border-width-item-selected-yv93vd, 2px) solid var(--color-border-item-selected-63a3p8, #006ce0);
  border-start-start-radius: var(--border-radius-item-iwaia5, 8px);
  border-start-end-radius: 0;
  border-end-start-radius: var(--border-radius-item-iwaia5, 8px);
  border-end-end-radius: 0;
}
.awsui_body-cell-selected_c6tup_1918z_1040:not(#\9):last-child {
  border-inline-end: var(--border-width-item-selected-yv93vd, 2px) solid var(--color-border-item-selected-63a3p8, #006ce0);
  border-start-start-radius: 0;
  border-start-end-radius: var(--border-radius-item-iwaia5, 8px);
  border-end-start-radius: 0;
  border-end-end-radius: var(--border-radius-item-iwaia5, 8px);
}
.awsui_body-cell_c6tup_1918z_152.awsui_sticky-cell_c6tup_1918z_702:not(#\9) {
  position: sticky;
  background: var(--color-background-container-content-78ljyf, #ffffff);
  z-index: 798;
  transition-property: padding;
  transition-duration: var(--motion-duration-transition-show-quick-5jnnjz, 90ms);
  transition-timing-function: var(--motion-easing-sticky-tn072u, cubic-bezier(1, 0, 0.83, 1));
}
@media (prefers-reduced-motion: reduce) {
  .awsui_body-cell_c6tup_1918z_152.awsui_sticky-cell_c6tup_1918z_702:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_body-cell_c6tup_1918z_152.awsui_sticky-cell_c6tup_1918z_702:not(#\9), .awsui-mode-entering .awsui_body-cell_c6tup_1918z_152.awsui_sticky-cell_c6tup_1918z_702:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_body-cell_c6tup_1918z_152.awsui_sticky-cell_c6tup_1918z_702.awsui_table-variant-full-page_c6tup_1918z_1101:not(#\9) {
  background: var(--color-background-layout-main-7z8vaj, #ffffff);
}
.awsui_body-cell_c6tup_1918z_152.awsui_sticky-cell_c6tup_1918z_702.awsui_body-cell-shaded_c6tup_1918z_1050:not(#\9) {
  background: var(--color-background-cell-shaded-c928js, #f6f6f9);
}
.awsui_body-cell_c6tup_1918z_152.awsui_sticky-cell_c6tup_1918z_702.awsui_body-cell-selected_c6tup_1918z_1040:not(#\9) {
  background-color: var(--color-background-item-selected-pyr5cw, #f0fbff);
}
.awsui_body-cell_c6tup_1918z_152.awsui_sticky-cell_c6tup_1918z_702.awsui_body-cell-selected_c6tup_1918z_1040:not(#\9):first-child {
  box-shadow: 0 0 0 4px var(--color-background-container-content-78ljyf, #ffffff);
  clip-path: inset(0 0 0 0);
}
.awsui_body-cell_c6tup_1918z_152.awsui_sticky-cell_c6tup_1918z_702.awsui_body-cell-selected_c6tup_1918z_1040:not(#\9):last-child {
  box-shadow: 4px 0 0 0 var(--color-background-container-content-78ljyf, #ffffff);
  clip-path: inset(0 0 0 0);
}
.awsui_body-cell_c6tup_1918z_152.awsui_sticky-cell_c6tup_1918z_702.awsui_body-cell-selected_c6tup_1918z_1040:not(#\9):last-child.awsui_sticky-cell-last-inline-end_c6tup_1918z_1118 {
  box-shadow: var(--shadow-sticky-column-last-qgh697, -4px 0 8px 1px rgba(0, 28, 36, 0.1)), 8px 0 0 0 var(--color-background-container-content-78ljyf, #ffffff);
  clip-path: inset(0 0 0 -24px);
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
}
.awsui_body-cell_c6tup_1918z_152.awsui_sticky-cell_c6tup_1918z_702.awsui_body-cell-selected_c6tup_1918z_1040:not(#\9):last-child.awsui_sticky-cell-last-inline-end_c6tup_1918z_1118:dir(rtl) {
  box-shadow: var(--shadow-sticky-column-first-trcd2o, 4px 0px 8px 1px rgba(0, 7, 22, 0.1));
  clip-path: inset(0 -24px 0 0);
}
.awsui_body-cell_c6tup_1918z_152.awsui_sticky-cell-last-inline-start_c6tup_1918z_1127:not(#\9) {
  box-shadow: var(--shadow-sticky-column-first-trcd2o, 4px 0px 8px 1px rgba(0, 7, 22, 0.1));
  clip-path: inset(0px -24px 0px 0px);
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
}
.awsui_body-cell_c6tup_1918z_152.awsui_sticky-cell-last-inline-start_c6tup_1918z_1127:not(#\9):dir(rtl) {
  box-shadow: var(--shadow-sticky-column-last-qgh697, -4px 0 8px 1px rgba(0, 28, 36, 0.1));
  clip-path: inset(0 0 0 -24px);
}
.awsui_body-cell_c6tup_1918z_152.awsui_sticky-cell-last-inline-end_c6tup_1918z_1118:not(#\9) {
  box-shadow: var(--shadow-sticky-column-last-qgh697, -4px 0 8px 1px rgba(0, 28, 36, 0.1));
  clip-path: inset(0 0 0 -24px);
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
}
.awsui_body-cell_c6tup_1918z_152.awsui_sticky-cell-last-inline-end_c6tup_1918z_1118:not(#\9):dir(rtl) {
  box-shadow: var(--shadow-sticky-column-first-trcd2o, 4px 0px 8px 1px rgba(0, 7, 22, 0.1));
  clip-path: inset(0 -24px 0 0);
}
.awsui_body-cell-selected_c6tup_1918z_1040:not(#\9):not(:first-child) > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-block-start: calc(calc(var(--space-scaled-xs-xwoogq, 8px) + var(--border-item-width-miijiw, 2px) - var(--border-divider-list-width-tdfx1x, 1px)) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2px);
  margin-block-start: calc(-1 * 2px);
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):not(.awsui_body-cell-selected_c6tup_1918z_1040).awsui_body-cell-next-selected_c6tup_1918z_1149 {
  border-block-end: 0;
}
.awsui_body-cell_c6tup_1918z_152:not(#\9):not(.awsui_body-cell-selected_c6tup_1918z_1040).awsui_body-cell-next-selected_c6tup_1918z_1149 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-block-end: calc(calc(var(--space-scaled-xs-xwoogq, 8px) + var(--border-divider-list-width-tdfx1x, 1px)) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2px);
  margin-block-end: calc(-1 * 2px);
}
.awsui_body-cell-selected_c6tup_1918z_1040.awsui_body-cell-prev-selected_c6tup_1918z_1156:not(#\9) {
  border-block-start: var(--border-divider-list-width-tdfx1x, 1px) solid var(--color-border-item-placeholder-zq3251, #006ce0);
}
.awsui_body-cell-selected_c6tup_1918z_1040.awsui_body-cell-prev-selected_c6tup_1918z_1156 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-block-start: calc(calc(var(--space-scaled-xs-xwoogq, 8px) + var(--border-item-width-miijiw, 2px) - var(--border-divider-list-width-tdfx1x, 1px)) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2px);
  margin-block-start: calc(-1 * 2px);
}
.awsui_body-cell-selected_c6tup_1918z_1040.awsui_body-cell-next-selected_c6tup_1918z_1149:not(#\9) {
  border-block-end-width: var(--border-divider-list-width-tdfx1x, 1px);
}
.awsui_body-cell-selected_c6tup_1918z_1040.awsui_body-cell-next-selected_c6tup_1918z_1149:not(#\9):first-child {
  border-end-start-radius: 0;
}
.awsui_body-cell-selected_c6tup_1918z_1040.awsui_body-cell-next-selected_c6tup_1918z_1149:not(#\9):last-child {
  border-end-end-radius: 0;
}
.awsui_body-cell-selected_c6tup_1918z_1040.awsui_body-cell-prev-selected_c6tup_1918z_1156:not(#\9):first-child {
  border-start-start-radius: 0;
}
.awsui_body-cell-selected_c6tup_1918z_1040.awsui_body-cell-prev-selected_c6tup_1918z_1156:not(#\9):last-child {
  border-start-end-radius: 0;
}
.awsui_body-cell-selected_c6tup_1918z_1040:not(#\9):not(.awsui_body-cell-prev-selected_c6tup_1918z_1156) > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-block-start: calc(var(--space-scaled-xs-xwoogq, 8px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2px);
  margin-block-start: calc(-1 * 2px);
}
.awsui_body-cell-editor-wrapper_c6tup_1918z_1182:not(#\9) {
  padding-block: 0;
  padding-inline-start: 0;
  padding-inline-end: calc(var(--space-xs-ymlm0b, 8px) + var(--space-xxs-hwfkai, 4px));
}
.awsui_body-cell-success_c6tup_1918z_1187:not(#\9) {
  padding-block: 0;
  padding-inline-start: 0;
  padding-inline-end: calc(calc(var(--space-xs-ymlm0b, 8px) + var(--space-xxs-hwfkai, 4px)) + calc(var(--size-icon-normal-levt08, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell-success_c6tup_1918z_1187:not(#\9), .awsui_body-cell-editor-wrapper_c6tup_1918z_1182:not(#\9) {
  inset-block: 0;
  inset-inline-end: 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.awsui_body-cell-editor_c6tup_1918z_1182:not(#\9) {
  cursor: pointer;
  outline: 0;
  background: 0;
  border-block: 0;
  border-inline: 0;
  padding-block: var(--space-scaled-xxs-pfm1nx, 4px);
  padding-inline: var(--space-scaled-xxs-pfm1nx, 4px);
  min-block-size: 10px;
  min-inline-size: 10px;
  color: var(--color-text-button-normal-default-t865au, #006ce0);
}
.awsui_body-cell-editor-disabled_c6tup_1918z_1212:not(#\9) {
  color: var(--color-text-disabled-inline-edit-hrexz1, #424650);
}
.awsui_body-cell-editor_c6tup_1918z_1182:not(#\9):hover {
  color: var(--color-text-button-normal-hover-20c0ob, #002b66);
}
.awsui_body-cell-editor_c6tup_1918z_1182:not(#\9):active {
  color: var(--color-text-button-normal-active-fm6d53, #002b66);
}
.awsui_body-cell-editor-row_c6tup_1918z_1221:not(#\9) {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  column-gap: var(--space-xxs-hwfkai, 4px);
}
.awsui_body-cell-editor-row_c6tup_1918z_1221 > :not(#\9):not(:last-child) {
  flex-grow: 1;
}
.awsui_body-cell-editor-controls_c6tup_1918z_1231:not(#\9) {
  flex-shrink: 0;
}
.awsui_body-cell-editor-row-editor_c6tup_1918z_1234:not(#\9) {
  max-inline-size: calc(100% - 6 * var(--space-xxs-hwfkai, 4px) - 2 * var(--size-icon-normal-levt08, 16px));
}
body[data-awsui-focus-visible=true] .awsui_body-cell-editor-focusable_c6tup_1918z_1237:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_body-cell-editor-focusable_c6tup_1918z_1237:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(-1px - 1px);
}
body[data-awsui-focus-visible=true] .awsui_body-cell-editor-focusable_c6tup_1918z_1237:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * -1px);
  inset-block-start: calc(-1 * -1px);
  inline-size: calc(100% + -1px + -1px);
  block-size: calc(100% + -1px + -1px);
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}
body[data-awsui-focus-visible=true] .awsui_body-cell-editor-focusable_c6tup_1918z_1237:not(#\9):focus.awsui_sticky-cell_c6tup_1918z_702 {
  position: sticky;
}
.awsui_body-cell-editor-icon_c6tup_1918z_1261:not(#\9) {
  display: none;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-expandable_c6tup_1918z_453:not(#\9) {
  position: relative;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-expandable_c6tup_1918z_453.awsui_sticky-cell_c6tup_1918z_702:not(#\9) {
  position: sticky;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9) {
  position: relative;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_sticky-cell_c6tup_1918z_702:not(#\9) {
  position: sticky;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  overflow: visible;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 0 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-0_c6tup_1918z_166 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + -1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 1 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-1_c6tup_1918z_173 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 0 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 2 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-2_c6tup_1918z_180 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 1 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 3 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-3_c6tup_1918z_187 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 4 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-4_c6tup_1918z_194 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 3 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 5 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-5_c6tup_1918z_201 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 4 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 6 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-6_c6tup_1918z_208 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 5 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 7 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-7_c6tup_1918z_215 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 6 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 8 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-8_c6tup_1918z_222 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 7 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-9_c6tup_1918z_229 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 8 * (var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2);
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) / 2 + 9 * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453.awsui_expandable-level-next_c6tup_1918z_236 > .awsui_expandable-toggle-wrapper_c6tup_1918z_145:not(#\9) {
  margin-inline-start: calc(calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px)) + (9 - 1) * calc(var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px)));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-inline-end: calc(var(--space-xxs-hwfkai, 4px) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-block-start: calc(var(--space-scaled-xxxs-oo06c7, 2px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2px);
  margin-block-start: calc(-1 * 2px);
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453.awsui_body-cell-edit-active_c6tup_1918z_453 > .awsui_body-cell-content_c6tup_1918z_160:not(#\9) {
  padding-block-end: calc(calc(var(--space-scaled-xxxs-oo06c7, 2px) + 1px) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2px);
  margin-block-end: calc(-1 * 2px);
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_resizable-columns_c6tup_1918z_1373) > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-end: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--space-l-2ud1p3, 20px)) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453) > .awsui_body-cell-editor-wrapper_c6tup_1918z_1182, .awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453) > .awsui_expandable-cell-content_c6tup_1918z_1376 > .awsui_body-cell-editor-wrapper_c6tup_1918z_1182 {
  opacity: 0;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453):focus-within {
  position: relative;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453):focus-within {
  outline: 2px dotted transparent;
  outline-offset: calc(calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)) - 1px);
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453):focus-within::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  inset-block-start: calc(-1 * calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  inline-size: calc(100% + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)) + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  block-size: calc(100% + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)) + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453):focus-within.awsui_sticky-cell_c6tup_1918z_702 {
  position: sticky;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453):focus-within.awsui_is-visual-refresh_c6tup_1918z_363:first-child {
  position: relative;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453):focus-within.awsui_is-visual-refresh_c6tup_1918z_363:first-child {
  outline: 2px dotted transparent;
  outline-offset: calc(calc(1 * var(--space-scaled-xxs-pfm1nx, 4px)) - 1px);
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453):focus-within.awsui_is-visual-refresh_c6tup_1918z_363:first-child::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * calc(1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  inset-block-start: calc(-1 * calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  inline-size: calc(100% + calc(1 * var(--space-scaled-xxs-pfm1nx, 4px)) + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  block-size: calc(100% + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)) + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):not(.awsui_body-cell-expandable_c6tup_1918z_453):focus-within.awsui_is-visual-refresh_c6tup_1918z_363:first-child.awsui_sticky-cell_c6tup_1918z_702 {
  position: sticky;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):focus-within:focus-within .awsui_body-cell-editor-icon_c6tup_1918z_1261, .awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453).awsui_body-cell-edit-disabled-popover_c6tup_1918z_1427 .awsui_body-cell-editor-icon_c6tup_1918z_1261 {
  display: unset;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):focus-within:focus-within.awsui_body-cell-has-success_c6tup_1918z_1430 > .awsui_body-cell-content_c6tup_1918z_160, .awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453).awsui_body-cell-edit-disabled-popover_c6tup_1918z_1427.awsui_body-cell-has-success_c6tup_1918z_1430 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-end: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--space-l-2ud1p3, 20px) + calc(var(--size-icon-normal-levt08, 16px) + var(--space-xs-ymlm0b, 8px))) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):focus-within:focus-within > .awsui_body-cell-content_c6tup_1918z_160, .awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453).awsui_body-cell-edit-disabled-popover_c6tup_1918z_1427 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-end: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--space-l-2ud1p3, 20px)) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):focus-within:focus-within > .awsui_body-cell-editor-wrapper_c6tup_1918z_1182, .awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):focus-within:focus-within > .awsui_expandable-cell-content_c6tup_1918z_1376 > .awsui_body-cell-editor-wrapper_c6tup_1918z_1182, .awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453).awsui_body-cell-edit-disabled-popover_c6tup_1918z_1427 > .awsui_body-cell-editor-wrapper_c6tup_1918z_1182, .awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453).awsui_body-cell-edit-disabled-popover_c6tup_1918z_1427 > .awsui_expandable-cell-content_c6tup_1918z_1376 > .awsui_body-cell-editor-wrapper_c6tup_1918z_1182 {
  opacity: 1;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):focus-within:focus-within > .awsui_body-cell-success_c6tup_1918z_1187, .awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453).awsui_body-cell-edit-disabled-popover_c6tup_1918z_1427 > .awsui_body-cell-success_c6tup_1918z_1187 {
  opacity: 1;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):focus-within:focus-within.awsui_sticky-cell_c6tup_1918z_702, .awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453).awsui_body-cell-edit-disabled-popover_c6tup_1918z_1427.awsui_sticky-cell_c6tup_1918z_702 {
  position: sticky;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):hover:hover {
  position: relative;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):hover:hover .awsui_body-cell-editor-icon_c6tup_1918z_1261 {
  display: unset;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):hover:hover:not(.awsui_body-cell-expandable_c6tup_1918z_453) {
  cursor: pointer;
  background-color: var(--color-background-dropdown-item-hover-wyujnt, #f3f3f7);
  border-block: var(--border-divider-list-width-tdfx1x, 1px) solid var(--color-border-editable-cell-hover-nkpoh5, #8c8c94);
  border-inline: var(--border-divider-list-width-tdfx1x, 1px) solid var(--color-border-editable-cell-hover-nkpoh5, #8c8c94);
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):hover:hover.awsui_sticky-cell_c6tup_1918z_702 {
  position: sticky;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):hover:hover:first-child {
  inset-inline: 0;
  border-start-start-radius: var(--border-radius-item-iwaia5, 8px);
  border-end-start-radius: var(--border-radius-item-iwaia5, 8px);
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):hover:hover:last-child {
  border-start-end-radius: var(--border-radius-item-iwaia5, 8px);
  border-end-end-radius: var(--border-radius-item-iwaia5, 8px);
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):hover:hover > .awsui_body-cell-editor-wrapper_c6tup_1918z_1182 > .awsui_body-cell-content_c6tup_1918z_160, .awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):hover:hover > .awsui_expandable-cell-content_c6tup_1918z_1376 > .awsui_body-cell-editor-wrapper_c6tup_1918z_1182 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-end: calc(calc(calc(var(--space-xs-ymlm0b, 8px) + var(--space-xxs-hwfkai, 4px)) - 2 * var(--border-divider-list-width-tdfx1x, 1px)) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):hover:hover > .awsui_body-cell-success_c6tup_1918z_1187 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-end: calc(calc(calc(calc(var(--space-xs-ymlm0b, 8px) + var(--space-xxs-hwfkai, 4px)) + calc(var(--size-icon-normal-levt08, 16px) + var(--space-xs-ymlm0b, 8px))) - 2 * var(--border-divider-list-width-tdfx1x, 1px)) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):hover:hover.awsui_body-cell-last-row_c6tup_1918z_1040.awsui_body-cell-selected_c6tup_1918z_1040 > .awsui_body-cell-content_c6tup_1918z_160, .awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):hover:hover.awsui_body-cell-next-selected_c6tup_1918z_1149 > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-block: calc(calc(var(--space-scaled-xs-xwoogq, 8px) - var(--border-divider-list-width-tdfx1x, 1px) / 2) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2px);
  margin-block: calc(-1 * 2px);
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):hover:hover.awsui_body-cell-last-row_c6tup_1918z_1040:not(.awsui_body-cell-expandable_c6tup_1918z_453):not(.awsui_body-cell-selected_c6tup_1918z_1040) > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-block-start: calc(calc(var(--space-scaled-xs-xwoogq, 8px) - (var(--border-divider-list-width-tdfx1x, 1px))) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2px);
  margin-block-start: calc(-1 * 2px);
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):hover:hover.awsui_body-cell-first-row_c6tup_1918z_1037:not(.awsui_body-cell-expandable_c6tup_1918z_453):not(.awsui_body-cell-selected_c6tup_1918z_1040) > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-block: calc(calc(var(--space-scaled-xs-xwoogq, 8px) - (var(--border-divider-list-width-tdfx1x, 1px))) - 1 * var(--border-divider-list-width-tdfx1x, 1px) + 2px);
  margin-block: calc(-1 * 2px);
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):hover:hover > .awsui_body-cell-content_c6tup_1918z_160 {
  padding-inline-end: calc(calc(var(--space-scaled-l-sej05l, 20px) + var(--space-l-2ud1p3, 20px)) - 1 * var(--border-divider-list-width-tdfx1x, 1px));
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):hover:hover > .awsui_body-cell-editor-wrapper_c6tup_1918z_1182, .awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):hover:hover > .awsui_expandable-cell-content_c6tup_1918z_1376 > .awsui_body-cell-editor-wrapper_c6tup_1918z_1182 {
  opacity: 1;
}
.awsui_body-cell_c6tup_1918z_152.awsui_body-cell-editable_c6tup_1918z_453:not(#\9):not(.awsui_body-cell-edit-active_c6tup_1918z_453):hover:hover > .awsui_body-cell-success_c6tup_1918z_1187 {
  opacity: 1;
}
body[data-awsui-focus-visible=true] .awsui_body-cell_c6tup_1918z_152:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_body-cell_c6tup_1918z_152:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_body-cell_c6tup_1918z_152:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  inset-block-start: calc(-1 * calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  inline-size: calc(100% + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)) + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  block-size: calc(100% + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)) + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}
body[data-awsui-focus-visible=true] .awsui_body-cell_c6tup_1918z_152:not(#\9):focus.awsui_sticky-cell_c6tup_1918z_702 {
  position: sticky;
}
body[data-awsui-focus-visible=true] .awsui_body-cell_c6tup_1918z_152:not(#\9):focus.awsui_is-visual-refresh_c6tup_1918z_363:first-child {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_body-cell_c6tup_1918z_152:not(#\9):focus.awsui_is-visual-refresh_c6tup_1918z_363:first-child {
  outline: 2px dotted transparent;
  outline-offset: calc(calc(1 * var(--space-scaled-xxs-pfm1nx, 4px)) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_body-cell_c6tup_1918z_152:not(#\9):focus.awsui_is-visual-refresh_c6tup_1918z_363:first-child::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * calc(1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  inset-block-start: calc(-1 * calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  inline-size: calc(100% + calc(1 * var(--space-scaled-xxs-pfm1nx, 4px)) + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  block-size: calc(100% + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)) + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}
body[data-awsui-focus-visible=true] .awsui_body-cell_c6tup_1918z_152:not(#\9):focus.awsui_is-visual-refresh_c6tup_1918z_363:first-child.awsui_sticky-cell_c6tup_1918z_702 {
  position: sticky;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_grid_14yj0_28nxv_145:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  display: flex;
  flex-wrap: wrap;
  margin-block: calc(var(--space-grid-gutter-whc3jp, 20px) / -2);
  margin-inline: calc(var(--space-grid-gutter-whc3jp, 20px) / -2);
  pointer-events: none;
}
.awsui_grid_14yj0_28nxv_145.awsui_no-gutters_14yj0_28nxv_181:not(#\9) {
  margin-block: 0;
  margin-inline: 0;
}

.awsui_grid-column_14yj0_28nxv_186:not(#\9) {
  box-sizing: border-box;
  position: relative;
  padding-block: calc(var(--space-grid-gutter-whc3jp, 20px) / 2);
  padding-inline: calc(var(--space-grid-gutter-whc3jp, 20px) / 2);
  display: flex;
}
.awsui_grid_14yj0_28nxv_145.awsui_no-gutters_14yj0_28nxv_181 > .awsui_grid-column_14yj0_28nxv_186:not(#\9) {
  padding-block: 0;
  padding-inline: 0;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_colspan-1_14yj0_28nxv_197:not(#\9) {
  flex: 0 0 8.3333333333%;
  max-inline-size: 8.3333333333%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_push-1_14yj0_28nxv_201:not(#\9) {
  inset-inline-start: 8.3333333333%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_pull-1_14yj0_28nxv_204:not(#\9) {
  inset-inline-end: 8.3333333333%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_colspan-2_14yj0_28nxv_207:not(#\9) {
  flex: 0 0 16.6666666667%;
  max-inline-size: 16.6666666667%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_push-2_14yj0_28nxv_211:not(#\9) {
  inset-inline-start: 16.6666666667%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_pull-2_14yj0_28nxv_214:not(#\9) {
  inset-inline-end: 16.6666666667%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_colspan-3_14yj0_28nxv_217:not(#\9) {
  flex: 0 0 25%;
  max-inline-size: 25%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_push-3_14yj0_28nxv_221:not(#\9) {
  inset-inline-start: 25%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_pull-3_14yj0_28nxv_224:not(#\9) {
  inset-inline-end: 25%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_colspan-4_14yj0_28nxv_227:not(#\9) {
  flex: 0 0 33.3333333333%;
  max-inline-size: 33.3333333333%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_push-4_14yj0_28nxv_231:not(#\9) {
  inset-inline-start: 33.3333333333%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_pull-4_14yj0_28nxv_234:not(#\9) {
  inset-inline-end: 33.3333333333%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_colspan-5_14yj0_28nxv_237:not(#\9) {
  flex: 0 0 41.6666666667%;
  max-inline-size: 41.6666666667%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_push-5_14yj0_28nxv_241:not(#\9) {
  inset-inline-start: 41.6666666667%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_pull-5_14yj0_28nxv_244:not(#\9) {
  inset-inline-end: 41.6666666667%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_colspan-6_14yj0_28nxv_247:not(#\9) {
  flex: 0 0 50%;
  max-inline-size: 50%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_push-6_14yj0_28nxv_251:not(#\9) {
  inset-inline-start: 50%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_pull-6_14yj0_28nxv_254:not(#\9) {
  inset-inline-end: 50%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_colspan-7_14yj0_28nxv_257:not(#\9) {
  flex: 0 0 58.3333333333%;
  max-inline-size: 58.3333333333%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_push-7_14yj0_28nxv_261:not(#\9) {
  inset-inline-start: 58.3333333333%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_pull-7_14yj0_28nxv_264:not(#\9) {
  inset-inline-end: 58.3333333333%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_colspan-8_14yj0_28nxv_267:not(#\9) {
  flex: 0 0 66.6666666667%;
  max-inline-size: 66.6666666667%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_push-8_14yj0_28nxv_271:not(#\9) {
  inset-inline-start: 66.6666666667%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_pull-8_14yj0_28nxv_274:not(#\9) {
  inset-inline-end: 66.6666666667%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_colspan-9_14yj0_28nxv_277:not(#\9) {
  flex: 0 0 75%;
  max-inline-size: 75%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_push-9_14yj0_28nxv_281:not(#\9) {
  inset-inline-start: 75%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_pull-9_14yj0_28nxv_284:not(#\9) {
  inset-inline-end: 75%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_colspan-10_14yj0_28nxv_287:not(#\9) {
  flex: 0 0 83.3333333333%;
  max-inline-size: 83.3333333333%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_push-10_14yj0_28nxv_291:not(#\9) {
  inset-inline-start: 83.3333333333%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_pull-10_14yj0_28nxv_294:not(#\9) {
  inset-inline-end: 83.3333333333%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_colspan-11_14yj0_28nxv_297:not(#\9) {
  flex: 0 0 91.6666666667%;
  max-inline-size: 91.6666666667%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_push-11_14yj0_28nxv_301:not(#\9) {
  inset-inline-start: 91.6666666667%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_pull-11_14yj0_28nxv_304:not(#\9) {
  inset-inline-end: 91.6666666667%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_colspan-12_14yj0_28nxv_307:not(#\9) {
  flex: 0 0 100%;
  max-inline-size: 100%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_push-12_14yj0_28nxv_311:not(#\9) {
  inset-inline-start: 100%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_pull-12_14yj0_28nxv_314:not(#\9) {
  inset-inline-end: 100%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_push-0_14yj0_28nxv_317:not(#\9) {
  inset-inline-start: auto;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_pull-0_14yj0_28nxv_320:not(#\9) {
  inset-inline-end: auto;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_offset-1_14yj0_28nxv_323:not(#\9) {
  margin-inline-start: 8.3333333333%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_offset-2_14yj0_28nxv_326:not(#\9) {
  margin-inline-start: 16.6666666667%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_offset-3_14yj0_28nxv_329:not(#\9) {
  margin-inline-start: 25%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_offset-4_14yj0_28nxv_332:not(#\9) {
  margin-inline-start: 33.3333333333%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_offset-5_14yj0_28nxv_335:not(#\9) {
  margin-inline-start: 41.6666666667%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_offset-6_14yj0_28nxv_338:not(#\9) {
  margin-inline-start: 50%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_offset-7_14yj0_28nxv_341:not(#\9) {
  margin-inline-start: 58.3333333333%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_offset-8_14yj0_28nxv_344:not(#\9) {
  margin-inline-start: 66.6666666667%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_offset-9_14yj0_28nxv_347:not(#\9) {
  margin-inline-start: 75%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_offset-10_14yj0_28nxv_350:not(#\9) {
  margin-inline-start: 83.3333333333%;
}
.awsui_grid-column_14yj0_28nxv_186.awsui_offset-11_14yj0_28nxv_353:not(#\9) {
  margin-inline-start: 91.6666666667%;
}

.awsui_restore-pointer-events_14yj0_28nxv_357:not(#\9) {
  pointer-events: auto;
  inline-size: 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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_root_xttbq_1rjuy_145:not(#\9) {
  position: absolute !important;
  inset-block-start: -9999px !important;
  inset-inline-start: -9999px !important;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_label_aqu00_ocied_5:not(#\9) {
  /* used in analytics metadata */
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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_error-icon-shake-wrapper_14mhv_gu8jf_153:not(#\9),
.awsui_warning-icon-shake-wrapper_14mhv_gu8jf_154:not(#\9) {
  animation: awsui_awsui-motion-shake-horizontally_14mhv_gu8jf_1 var(--motion-duration-refresh-only-medium-5rbn3k, 165ms);
}
@keyframes awsui_awsui-motion-shake-horizontally_14mhv_gu8jf_1 {
  0% {
    transform: translateX(-5px);
    animation-timing-function: linear;
  }
  50% {
    transform: translateX(5px);
    animation-timing-function: var(--motion-easing-refresh-only-a-ccyqaz, cubic-bezier(0, 0, 0, 1));
  }
  100% {
    transform: translateX(0px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_error-icon-shake-wrapper_14mhv_gu8jf_153:not(#\9),
  .awsui_warning-icon-shake-wrapper_14mhv_gu8jf_154:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_error-icon-shake-wrapper_14mhv_gu8jf_153:not(#\9), .awsui-mode-entering .awsui_error-icon-shake-wrapper_14mhv_gu8jf_153:not(#\9), .awsui-motion-disabled .awsui_warning-icon-shake-wrapper_14mhv_gu8jf_154:not(#\9), .awsui-mode-entering .awsui_warning-icon-shake-wrapper_14mhv_gu8jf_154:not(#\9) {
  animation: none;
  transition: none;
}

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

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

.awsui_root_14mhv_gu8jf_236:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  box-sizing: border-box;
}

.awsui_label_14mhv_gu8jf_269:not(#\9) {
  box-sizing: border-box;
  color: var(--color-text-form-label-84uan1, #0f141a);
  display: inline;
  -webkit-font-smoothing: var(--font-smoothing-webkit-oemolo, antialiased);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-hbm0aq, grayscale);
  font-size: var(--font-size-form-label-mxiqd7, 14px);
  line-height: var(--line-height-form-label-asu26u, 20px);
  font-weight: var(--font-weight-form-label-mrg9ef, 700);
  margin-inline-end: var(--space-xs-ymlm0b, 8px);
}
.awsui_label_14mhv_gu8jf_269:not(#\9):only-child {
  margin-block: 0;
  margin-inline: 0;
}

.awsui_info_14mhv_gu8jf_285:not(#\9) {
  display: inline-flex;
  padding-inline-start: var(--space-xs-ymlm0b, 8px);
  border-inline-start: var(--border-divider-section-width-uwo8my, 1px) solid var(--color-border-divider-default-0de9c8, #c6c6cd);
}

.awsui_description_14mhv_gu8jf_291:not(#\9),
.awsui_constraint_14mhv_gu8jf_292:not(#\9) {
  color: var(--color-text-form-secondary-t0glp7, #656871);
  font-size: var(--font-size-body-s-smc8cv, 12px);
  line-height: var(--line-height-body-s-nu5hx1, 16px);
  letter-spacing: var(--letter-spacing-body-s-gq78ok, 0.005em);
}

.awsui_hints_14mhv_gu8jf_299:not(#\9),
.awsui_constraint-has-validation-text_14mhv_gu8jf_300:not(#\9) {
  padding-block-start: var(--space-xxs-hwfkai, 4px);
}

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

.awsui_controls_14mhv_gu8jf_308:not(#\9):not(.awsui_label-hidden_14mhv_gu8jf_308) {
  padding-block-start: var(--space-xxs-hwfkai, 4px);
}
.awsui_label-wrapper_14mhv_gu8jf_311:not(#\9):empty + .awsui_controls_14mhv_gu8jf_308 {
  padding-block-start: 0;
}

.awsui_control_14mhv_gu8jf_308:not(#\9) {
  min-inline-size: 0;
  word-break: break-word;
}

.awsui_error_14mhv_gu8jf_153:not(#\9) {
  color: var(--color-text-status-error-ak9yp5, #db0000);
  font-size: var(--font-size-body-s-smc8cv, 12px);
  line-height: var(--line-height-body-s-nu5hx1, 16px);
  letter-spacing: var(--letter-spacing-body-s-gq78ok, 0.005em);
  display: flex;
  align-items: flex-start;
}

.awsui_warning_14mhv_gu8jf_154:not(#\9) {
  color: var(--color-text-status-warning-avkj4w, #855900);
  font-size: var(--font-size-body-s-smc8cv, 12px);
  line-height: var(--line-height-body-s-nu5hx1, 16px);
  letter-spacing: var(--letter-spacing-body-s-gq78ok, 0.005em);
  display: flex;
  align-items: flex-start;
}

.awsui_error__message_14mhv_gu8jf_338:not(#\9),
.awsui_warning__message_14mhv_gu8jf_339:not(#\9) {
  margin-inline-start: var(--space-xxs-hwfkai, 4px);
}

.awsui_visually-hidden_14mhv_gu8jf_343:not(#\9) {
  position: absolute !important;
  inset-block-start: -9999px !important;
  inset-inline-start: -9999px !important;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_constraint_6mjrv_ag0bo_5:not(#\9),
.awsui_character-count_6mjrv_ag0bo_6: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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_root_18582_1jqoe_145:not(#\9) {
  display: flex;
}

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

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

/*
 * Horizontal variant
 */
.awsui_horizontal_18582_1jqoe_160:not(#\9) {
  flex-direction: row;
  flex-wrap: wrap;
}
.awsui_horizontal-xxxs_18582_1jqoe_164:not(#\9) {
  gap: var(--space-xxxs-pajhad, 2px);
}
.awsui_horizontal-xxs_18582_1jqoe_167:not(#\9) {
  gap: var(--space-xxs-hwfkai, 4px);
}
.awsui_horizontal-xs_18582_1jqoe_170:not(#\9) {
  gap: var(--space-xs-ymlm0b, 8px);
}
.awsui_horizontal-s_18582_1jqoe_173:not(#\9) {
  gap: var(--space-s-tvghoh, 12px);
}
.awsui_horizontal-m_18582_1jqoe_176:not(#\9) {
  gap: var(--space-m-dsumyt, 16px);
}
.awsui_horizontal-l_18582_1jqoe_179:not(#\9) {
  gap: var(--space-l-2ud1p3, 20px);
}
.awsui_horizontal-xl_18582_1jqoe_182:not(#\9) {
  gap: var(--space-xl-jfy3x4, 24px);
}
.awsui_horizontal-xxl_18582_1jqoe_185:not(#\9) {
  gap: var(--space-xxl-32srm4, 32px);
}

/*
 * Vertical variant
 */
.awsui_vertical_18582_1jqoe_192:not(#\9) {
  flex-direction: column;
}
.awsui_vertical-xxxs_18582_1jqoe_195:not(#\9) {
  row-gap: var(--space-xxxs-pajhad, 2px);
}
.awsui_vertical-xxs_18582_1jqoe_198:not(#\9) {
  row-gap: var(--space-xxs-hwfkai, 4px);
}
.awsui_vertical-xs_18582_1jqoe_201:not(#\9) {
  row-gap: var(--space-xs-ymlm0b, 8px);
}
.awsui_vertical-s_18582_1jqoe_204:not(#\9) {
  row-gap: var(--space-scaled-s-8ozaad, 12px);
}
.awsui_vertical-m_18582_1jqoe_207:not(#\9) {
  row-gap: var(--space-scaled-m-m892r9, 16px);
}
.awsui_vertical-l_18582_1jqoe_210:not(#\9) {
  row-gap: var(--space-scaled-l-sej05l, 20px);
}
.awsui_vertical-xl_18582_1jqoe_213:not(#\9) {
  row-gap: var(--space-scaled-xl-dunxp5, 24px);
}
.awsui_vertical-xxl_18582_1jqoe_216:not(#\9) {
  row-gap: var(--space-scaled-xxl-6wgq96, 32px);
}

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

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

.awsui_align-end_18582_1jqoe_228:not(#\9) {
  align-items: end;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_header-cell-text_dpuyq_1id1o_5:not(#\9) {
  /* used in analytics metadata */
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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_icon-shake_1cbgc_12nye_153:not(#\9) {
  display: inline-block;
  animation: awsui_awsui-motion-shake-horizontally_1cbgc_12nye_1 var(--motion-duration-refresh-only-medium-5rbn3k, 165ms);
}
@keyframes awsui_awsui-motion-shake-horizontally_1cbgc_12nye_1 {
  0% {
    transform: translateX(-5px);
    animation-timing-function: linear;
  }
  50% {
    transform: translateX(5px);
    animation-timing-function: var(--motion-easing-refresh-only-a-ccyqaz, cubic-bezier(0, 0, 0, 1));
  }
  100% {
    transform: translateX(0px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_icon-shake_1cbgc_12nye_153:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_icon-shake_1cbgc_12nye_153:not(#\9), .awsui-mode-entering .awsui_icon-shake_1cbgc_12nye_153:not(#\9) {
  animation: none;
  transition: none;
}

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

.awsui_root_1cbgc_12nye_203:not(#\9) {
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
.awsui_root_1cbgc_12nye_203.awsui_status-error_1cbgc_12nye_212:not(#\9) {
  color: var(--color-text-status-error-ak9yp5, #db0000);
}
.awsui_root_1cbgc_12nye_203.awsui_status-warning_1cbgc_12nye_215:not(#\9) {
  color: var(--color-text-status-warning-avkj4w, #855900);
}
.awsui_root_1cbgc_12nye_203.awsui_status-success_1cbgc_12nye_218:not(#\9) {
  color: var(--color-text-status-success-9wcobb, #00802f);
}
.awsui_root_1cbgc_12nye_203.awsui_status-info_1cbgc_12nye_221:not(#\9) {
  color: var(--color-text-status-info-c3q8b6, #006ce0);
}
.awsui_root_1cbgc_12nye_203.awsui_status-stopped_1cbgc_12nye_224:not(#\9) {
  color: var(--color-text-status-inactive-tg9r8q, #656871);
}
.awsui_root_1cbgc_12nye_203.awsui_status-pending_1cbgc_12nye_227:not(#\9) {
  color: var(--color-text-status-inactive-tg9r8q, #656871);
}
.awsui_root_1cbgc_12nye_203.awsui_status-in-progress_1cbgc_12nye_230:not(#\9) {
  color: var(--color-text-status-inactive-tg9r8q, #656871);
}
.awsui_root_1cbgc_12nye_203.awsui_status-loading_1cbgc_12nye_233:not(#\9) {
  color: var(--color-text-status-inactive-tg9r8q, #656871);
}
.awsui_root_1cbgc_12nye_203.awsui_status-not-started_1cbgc_12nye_236:not(#\9) {
  color: var(--color-text-status-inactive-tg9r8q, #656871);
}
.awsui_root_1cbgc_12nye_203.awsui_status-log_1cbgc_12nye_239:not(#\9) {
  color: var(--color-text-status-inactive-tg9r8q, #656871);
}
.awsui_root_1cbgc_12nye_203.awsui_color-override-red_1cbgc_12nye_242:not(#\9) {
  color: var(--color-text-status-error-ak9yp5, #db0000);
}
.awsui_root_1cbgc_12nye_203.awsui_color-override-grey_1cbgc_12nye_245:not(#\9) {
  color: var(--color-text-status-inactive-tg9r8q, #656871);
}
.awsui_root_1cbgc_12nye_203.awsui_color-override-blue_1cbgc_12nye_248:not(#\9) {
  color: var(--color-text-status-info-c3q8b6, #006ce0);
}
.awsui_root_1cbgc_12nye_203.awsui_color-override-green_1cbgc_12nye_251:not(#\9) {
  color: var(--color-text-status-success-9wcobb, #00802f);
}
.awsui_root_1cbgc_12nye_203.awsui_color-override-yellow_1cbgc_12nye_254:not(#\9) {
  color: var(--color-text-status-warning-avkj4w, #855900);
}
.awsui_root_1cbgc_12nye_203.awsui_status-error_1cbgc_12nye_212 > .awsui_container_1cbgc_12nye_181:not(#\9) {
  background: var(--color-background-status-indicator-error-txnmnb, transparent);
}
.awsui_root_1cbgc_12nye_203.awsui_status-warning_1cbgc_12nye_215 > .awsui_container_1cbgc_12nye_181:not(#\9) {
  background: var(--color-background-status-indicator-warning-xf3dw4, transparent);
}
.awsui_root_1cbgc_12nye_203.awsui_status-success_1cbgc_12nye_218 > .awsui_container_1cbgc_12nye_181:not(#\9) {
  background: var(--color-background-status-indicator-success-o8ig5c, transparent);
}
.awsui_root_1cbgc_12nye_203.awsui_status-info_1cbgc_12nye_221 > .awsui_container_1cbgc_12nye_181:not(#\9) {
  background: var(--color-background-status-indicator-info-nqw7od, transparent);
}
.awsui_root_1cbgc_12nye_203.awsui_status-stopped_1cbgc_12nye_224 > .awsui_container_1cbgc_12nye_181:not(#\9) {
  background: var(--color-background-status-indicator-neutral-psqqh7, transparent);
}
.awsui_root_1cbgc_12nye_203.awsui_status-pending_1cbgc_12nye_227 > .awsui_container_1cbgc_12nye_181:not(#\9) {
  background: var(--color-background-status-indicator-neutral-psqqh7, transparent);
}
.awsui_root_1cbgc_12nye_203.awsui_status-in-progress_1cbgc_12nye_230 > .awsui_container_1cbgc_12nye_181:not(#\9) {
  background: var(--color-background-status-indicator-neutral-psqqh7, transparent);
}
.awsui_root_1cbgc_12nye_203.awsui_status-loading_1cbgc_12nye_233 > .awsui_container_1cbgc_12nye_181:not(#\9) {
  background: var(--color-background-status-indicator-neutral-psqqh7, transparent);
}
.awsui_root_1cbgc_12nye_203.awsui_status-not-started_1cbgc_12nye_236 > .awsui_container_1cbgc_12nye_181:not(#\9) {
  background: var(--color-background-status-indicator-neutral-psqqh7, transparent);
}
.awsui_root_1cbgc_12nye_203.awsui_status-log_1cbgc_12nye_239 > .awsui_container_1cbgc_12nye_181:not(#\9) {
  background: var(--color-background-status-indicator-neutral-psqqh7, transparent);
}
.awsui_root_1cbgc_12nye_203.awsui_color-override-red_1cbgc_12nye_242 > .awsui_container_1cbgc_12nye_181:not(#\9) {
  background: var(--color-background-status-indicator-error-txnmnb, transparent);
}
.awsui_root_1cbgc_12nye_203.awsui_color-override-grey_1cbgc_12nye_245 > .awsui_container_1cbgc_12nye_181:not(#\9) {
  background: var(--color-background-status-indicator-neutral-psqqh7, transparent);
}
.awsui_root_1cbgc_12nye_203.awsui_color-override-blue_1cbgc_12nye_248 > .awsui_container_1cbgc_12nye_181:not(#\9) {
  background: var(--color-background-status-indicator-info-nqw7od, transparent);
}
.awsui_root_1cbgc_12nye_203.awsui_color-override-green_1cbgc_12nye_251 > .awsui_container_1cbgc_12nye_181:not(#\9) {
  background: var(--color-background-status-indicator-success-o8ig5c, transparent);
}
.awsui_root_1cbgc_12nye_203.awsui_color-override-yellow_1cbgc_12nye_254 > .awsui_container_1cbgc_12nye_181:not(#\9) {
  background: var(--color-background-status-indicator-warning-xf3dw4, transparent);
}

.awsui_container_1cbgc_12nye_181:not(#\9) {
  padding-inline: var(--space-status-indicator-padding-horizontal-xv70fu, 0px);
  border-start-start-radius: var(--border-radius-status-indicator-fkcvdq, 4px);
  border-start-end-radius: var(--border-radius-status-indicator-fkcvdq, 4px);
  border-end-start-radius: var(--border-radius-status-indicator-fkcvdq, 4px);
  border-end-end-radius: var(--border-radius-status-indicator-fkcvdq, 4px);
}
.awsui-one-theme .awsui_root_1cbgc_12nye_203.awsui_status-loading_1cbgc_12nye_233 > .awsui_container_1cbgc_12nye_181:not(#\9) {
  background: transparent;
  align-items: center;
  color: var(--color-text-body-secondary-y6dr4d, #424650);
}
.awsui_container_1cbgc_12nye_181.awsui_display-inline_1cbgc_12nye_315:not(#\9) {
  min-inline-size: 0;
  word-break: break-word;
  display: inline;
}
.awsui_container_1cbgc_12nye_181.awsui_display-inline_1cbgc_12nye_315 > .awsui_icon_1cbgc_12nye_153:not(#\9) {
  white-space: nowrap;
}
.awsui-one-theme .awsui_container_1cbgc_12nye_181.awsui_display-inline_1cbgc_12nye_315 > .awsui_icon_1cbgc_12nye_153:not(#\9) {
  vertical-align: middle;
}
.awsui_container_1cbgc_12nye_181.awsui_display-inline-block_1cbgc_12nye_326:not(#\9) {
  display: inline-block;
  word-wrap: break-word;
  word-break: break-all;
}
.awsui-one-theme .awsui_container_1cbgc_12nye_181.awsui_display-inline-block_1cbgc_12nye_326:not(#\9) {
  display: inline-flex;
  vertical-align: top;
}
.awsui_container_1cbgc_12nye_181.awsui_display-inline-block_1cbgc_12nye_326 > .awsui_icon_1cbgc_12nye_153:not(#\9) {
  padding-inline-end: var(--space-xxs-hwfkai, 4px);
}
.awsui-one-theme .awsui_container_1cbgc_12nye_181.awsui_display-inline-block_1cbgc_12nye_326 > .awsui_icon_1cbgc_12nye_153:not(#\9) {
  display: inline-flex;
  align-items: center;
  block-size: var(--line-height-body-m-2mh3ke, 20px);
}

.awsui_overflow-ellipsis_1cbgc_12nye_344:not(#\9) {
  max-inline-size: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: text-bottom;
}
.awsui-one-theme .awsui_overflow-ellipsis_1cbgc_12nye_344:not(#\9) {
  text-overflow: unset;
}
.awsui-one-theme .awsui_overflow-ellipsis_1cbgc_12nye_344 > span:not(#\9):last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_items-loader_115pt_16l07_5:not(#\9) {
  display: inline;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_1qprf_160mh_5:not(#\9) {
  /* used in tests */
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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
*/
@keyframes awsui_drag-handle-entry_155yk_v2ko5_1 {
  from {
    transform: translate(var(--awsui-drag-handle-animation-inline-offset-esndbs), var(--awsui-drag-handle-animation-block-offset-esndbs));
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes awsui_drag-handle-exit_155yk_v2ko5_1 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(var(--awsui-drag-handle-animation-inline-offset-esndbs), var(--awsui-drag-handle-animation-block-offset-esndbs));
  }
}
.awsui_direction-button-wrapper_155yk_v2ko5_169:not(#\9) {
  --awsui-drag-handle-animation-inline-offset-esndbs: 0;
  --awsui-drag-handle-animation-block-offset-esndbs: 0;
}
@keyframes awsui_awsui-motion-fade-in_155yk_v2ko5_1 {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@keyframes awsui_awsui-motion-fade-out-0_155yk_v2ko5_1 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.awsui_direction-button-wrapper-motion-enter_155yk_v2ko5_189:not(#\9), .awsui_direction-button-wrapper-motion-entering_155yk_v2ko5_189:not(#\9), .awsui_direction-button-wrapper-motion-exit_155yk_v2ko5_189:not(#\9), .awsui_direction-button-wrapper-motion-exiting_155yk_v2ko5_189:not(#\9) {
  pointer-events: none;
}
.awsui_direction-button-wrapper-motion-entering_155yk_v2ko5_189:not(#\9) {
  animation: awsui_drag-handle-entry_155yk_v2ko5_1 var(--motion-duration-complex-tbdo30, 250ms) var(--motion-easing-responsive-hjj3ai, cubic-bezier(0, 0, 0, 1)), awsui_awsui-motion-fade-in_155yk_v2ko5_1 var(--motion-duration-complex-tbdo30, 250ms) var(--motion-easing-responsive-hjj3ai, cubic-bezier(0, 0, 0, 1));
}
@media (prefers-reduced-motion: reduce) {
  .awsui_direction-button-wrapper-motion-entering_155yk_v2ko5_189:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_direction-button-wrapper-motion-entering_155yk_v2ko5_189:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper-motion-entering_155yk_v2ko5_189:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_direction-button-wrapper-motion-exiting_155yk_v2ko5_189:not(#\9) {
  animation: awsui_drag-handle-exit_155yk_v2ko5_1 var(--motion-duration-complex-tbdo30, 250ms) var(--motion-easing-responsive-hjj3ai, cubic-bezier(0, 0, 0, 1)) forwards, awsui_awsui-motion-fade-out-0_155yk_v2ko5_1 var(--motion-duration-complex-tbdo30, 250ms) var(--motion-easing-responsive-hjj3ai, cubic-bezier(0, 0, 0, 1)) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .awsui_direction-button-wrapper-motion-exiting_155yk_v2ko5_189:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_direction-button-wrapper-motion-exiting_155yk_v2ko5_189:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper-motion-exiting_155yk_v2ko5_189:not(#\9) {
  animation: none;
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .awsui_direction-button-wrapper_155yk_v2ko5_169:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_direction-button-wrapper_155yk_v2ko5_169:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper_155yk_v2ko5_169:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_direction-button-wrapper-block-start_155yk_v2ko5_229:not(#\9) {
  --awsui-drag-handle-animation-block-offset-esndbs: 20px;
}

.awsui_direction-button-wrapper-block-end_155yk_v2ko5_233:not(#\9) {
  --awsui-drag-handle-animation-block-offset-esndbs: -20px;
}

.awsui_direction-button-wrapper-inline-start_155yk_v2ko5_237:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
}
.awsui_direction-button-wrapper-inline-start_155yk_v2ko5_237:not(#\9):dir(ltr) {
  --awsui-drag-handle-animation-inline-offset-esndbs: 20px;
}
.awsui_direction-button-wrapper-inline-start_155yk_v2ko5_237:not(#\9):dir(rtl) {
  --awsui-drag-handle-animation-inline-offset-esndbs: -20px;
}

.awsui_direction-button-wrapper-inline-end_155yk_v2ko5_248:not(#\9) {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
}
.awsui_direction-button-wrapper-inline-end_155yk_v2ko5_248:not(#\9):dir(ltr) {
  --awsui-drag-handle-animation-inline-offset-esndbs: -20px;
}
.awsui_direction-button-wrapper-inline-end_155yk_v2ko5_248:not(#\9):dir(rtl) {
  --awsui-drag-handle-animation-inline-offset-esndbs: 20px;
}

.awsui_contents_155yk_v2ko5_259:not(#\9) {
  display: contents;
}

.awsui_portal-overlay_155yk_v2ko5_263:not(#\9) {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  pointer-events: none;
  z-index: 7000;
}

.awsui_portal-overlay-disabled_155yk_v2ko5_271:not(#\9) {
  display: none;
}

.awsui_portal-overlay-contents_155yk_v2ko5_275:not(#\9) {
  pointer-events: auto;
}

.awsui_drag-handle_155yk_v2ko5_279:not(#\9) {
  position: relative;
  display: inline-flex;
}

.awsui_direction-button-wrapper_155yk_v2ko5_169:not(#\9) {
  position: absolute;
  block-size: var(--space-static-xl-4tedi6, 24px);
  inline-size: var(--space-static-xl-4tedi6, 24px);
  padding-block: var(--space-static-xxs-ns94dp, 4px);
  padding-inline: var(--space-static-xxs-ns94dp, 4px);
}

.awsui_direction-button-wrapper-hidden_155yk_v2ko5_292:not(#\9) {
  display: none;
}

.awsui_direction-button-wrapper-block-start_155yk_v2ko5_229:not(#\9) {
  inset-block-start: calc(-1 * (var(--space-static-xl-4tedi6, 24px) + 2 * var(--space-static-xxs-ns94dp, 4px)));
  inset-inline-start: calc(50% - (var(--space-static-xl-4tedi6, 24px) + 2 * var(--space-static-xxs-ns94dp, 4px)) / 2);
}

.awsui_direction-button-wrapper-block-end_155yk_v2ko5_233:not(#\9) {
  inset-block-end: calc(-1 * (var(--space-static-xl-4tedi6, 24px) + 2 * var(--space-static-xxs-ns94dp, 4px)));
  inset-inline-start: calc(50% - (var(--space-static-xl-4tedi6, 24px) + 2 * var(--space-static-xxs-ns94dp, 4px)) / 2);
}

.awsui_direction-button-wrapper-inline-start_155yk_v2ko5_237:not(#\9) {
  inset-inline-start: calc(-1 * (var(--space-static-xl-4tedi6, 24px) + 2 * var(--space-static-xxs-ns94dp, 4px)));
  inset-block-start: calc(50% - (var(--space-static-xl-4tedi6, 24px) + 2 * var(--space-static-xxs-ns94dp, 4px)) / 2);
}

.awsui_direction-button-wrapper-inline-end_155yk_v2ko5_248:not(#\9) {
  inset-inline-end: calc(-1 * (var(--space-static-xl-4tedi6, 24px) + 2 * var(--space-static-xxs-ns94dp, 4px)));
  inset-block-start: calc(50% - (var(--space-static-xl-4tedi6, 24px) + 2 * var(--space-static-xxs-ns94dp, 4px)) / 2);
}

.awsui_direction-button-wrapper-forced_155yk_v2ko5_316:not(#\9) {
  inset-inline-start: calc(50% - (var(--space-static-xl-4tedi6, 24px) + 2 * var(--space-static-xxs-ns94dp, 4px)) / 2);
}

.awsui_direction-button-wrapper-forced-top-0_155yk_v2ko5_320:not(#\9) {
  inset-block-start: calc(-1 * (var(--space-static-xl-4tedi6, 24px) + 2 * var(--space-static-xxs-ns94dp, 4px)));
}

.awsui_direction-button-wrapper-forced-top-1_155yk_v2ko5_324:not(#\9) {
  inset-block-start: calc(-2 * (var(--space-static-xl-4tedi6, 24px) + 2 * var(--space-static-xxs-ns94dp, 4px)));
}

.awsui_direction-button-wrapper-forced-top-2_155yk_v2ko5_328:not(#\9) {
  inset-block-start: calc(-3 * (var(--space-static-xl-4tedi6, 24px) + 2 * var(--space-static-xxs-ns94dp, 4px)));
}

.awsui_direction-button-wrapper-forced-top-3_155yk_v2ko5_332:not(#\9) {
  inset-block-start: calc(-4 * (var(--space-static-xl-4tedi6, 24px) + 2 * var(--space-static-xxs-ns94dp, 4px)));
}

.awsui_direction-button-wrapper-forced-bottom-0_155yk_v2ko5_336:not(#\9) {
  inset-block-start: calc(1 * (var(--space-static-xl-4tedi6, 24px) + 2 * var(--space-static-xxs-ns94dp, 4px)));
}

.awsui_direction-button-wrapper-forced-bottom-1_155yk_v2ko5_340:not(#\9) {
  inset-block-start: calc(2 * (var(--space-static-xl-4tedi6, 24px) + 2 * var(--space-static-xxs-ns94dp, 4px)));
}

.awsui_direction-button-wrapper-forced-bottom-2_155yk_v2ko5_344:not(#\9) {
  inset-block-start: calc(3 * (var(--space-static-xl-4tedi6, 24px) + 2 * var(--space-static-xxs-ns94dp, 4px)));
}

.awsui_direction-button-wrapper-forced-bottom-3_155yk_v2ko5_348:not(#\9) {
  inset-block-start: calc(4 * (var(--space-static-xl-4tedi6, 24px) + 2 * var(--space-static-xxs-ns94dp, 4px)));
}

.awsui_direction-button_155yk_v2ko5_169:not(#\9) {
  position: absolute;
  border-width: 0;
  cursor: pointer;
  display: inline-block;
  box-sizing: border-box;
  touch-action: manipulation;
  inline-size: var(--space-static-xl-4tedi6, 24px);
  block-size: var(--space-static-xl-4tedi6, 24px);
  padding-block: var(--space-xxs-hwfkai, 4px);
  padding-inline: var(--space-xxs-hwfkai, 4px);
  border-start-start-radius: 50%;
  border-start-end-radius: 50%;
  border-end-start-radius: 50%;
  border-end-end-radius: 50%;
  background-color: var(--color-background-direction-button-default-bvhbsn, #424650);
  color: var(--color-text-direction-button-default-p88lvb, #ffffff);
  box-shadow: var(--shadow-dropdown-isf0w4, 0px 4px 20px 1px rgba(0, 7, 22, 0.1));
}
.awsui_direction-button_155yk_v2ko5_169:not(#\9):not(.awsui_direction-button-disabled_155yk_v2ko5_371):hover {
  background-color: var(--color-background-direction-button-hover-74n5o1, #333843);
}
.awsui_direction-button_155yk_v2ko5_169:not(#\9):not(.awsui_direction-button-disabled_155yk_v2ko5_371):active {
  background-color: var(--color-background-direction-button-active-lvo0dy, #232b37);
}

.awsui_direction-button-disabled_155yk_v2ko5_371:not(#\9) {
  cursor: default;
  background-color: var(--color-background-direction-button-disabled-uad4xk, #ebebf0);
  color: var(--color-text-direction-button-disabled-t86kvg, #b4b4bb);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_8k1rt_1i1h9_5:not(#\9) {
  /* used in test-utils */
}

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

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

.awsui_direction-button-block-start_8k1rt_1i1h9_17:not(#\9) {
  /* used in test-utils */
}

.awsui_direction-button-block-end_8k1rt_1i1h9_21:not(#\9) {
  /* used in test-utils */
}

.awsui_direction-button-inline-start_8k1rt_1i1h9_25:not(#\9) {
  /* used in test-utils */
}

.awsui_direction-button-inline-end_8k1rt_1i1h9_29: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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_resize-active_x7peu_2jhxl_145:not(#\9):not(.awsui_resize-active-with-focus_x7peu_2jhxl_145) * {
  cursor: col-resize;
  -webkit-user-select: none;
          user-select: none;
}

.awsui_resizer-wrapper_x7peu_2jhxl_150:not(#\9) {
  inset-block: 0;
  position: absolute;
  inset-inline-end: calc(-1 * var(--space-xl-jfy3x4, 24px) / 2);
  inline-size: var(--space-xl-jfy3x4, 24px);
  overflow: hidden;
  z-index: 10;
}
th:not(#\9):last-child > .awsui_resizer-wrapper_x7peu_2jhxl_150:has(.awsui_divider-interactive_x7peu_2jhxl_158).awsui_is-borderless_x7peu_2jhxl_158 {
  inset-inline-end: 0;
}

.awsui_resizer-button-wrapper_x7peu_2jhxl_162:not(#\9) {
  block-size: 100%;
}

th:not(#\9):not([data-rightmost]) > .awsui_divider_x7peu_2jhxl_158,
.awsui_divider-interactive_x7peu_2jhxl_158:not(#\9) {
  position: absolute;
  outline: none;
  pointer-events: none;
  inset-inline-end: 0;
  inset-block-end: 0;
  inset-block-start: 0;
  min-block-size: var(--line-height-heading-xs-q9j004, 18px);
  max-block-size: calc(100% - calc(2 * var(--space-xs-ymlm0b, 8px) + var(--space-xxxs-pajhad, 2px)));
  margin-block: auto;
  margin-inline: auto;
  border-inline-start: var(--border-divider-list-width-tdfx1x, 1px) solid var(--color-border-divider-default-0de9c8, #c6c6cd);
  box-sizing: border-box;
}
th:not(#\9):not([data-rightmost]) > .awsui_divider_x7peu_2jhxl_158.awsui_divider-interactive_x7peu_2jhxl_158,
.awsui_divider-interactive_x7peu_2jhxl_158.awsui_divider-interactive_x7peu_2jhxl_158:not(#\9) {
  border-inline-start: var(--border-divider-list-width-tdfx1x, 1px) solid var(--color-border-divider-interactive-default-8k07mh, #8c8c94);
}
th:not(#\9):not([data-rightmost]) > .awsui_divider_x7peu_2jhxl_158.awsui_divider-grouped_x7peu_2jhxl_185,
.awsui_divider-interactive_x7peu_2jhxl_158.awsui_divider-grouped_x7peu_2jhxl_185:not(#\9) {
  border-inline-start-color: var(--color-border-divider-table-group-tut0l3, #8c8c94);
}
th:not(#\9):not([data-rightmost]) > .awsui_divider_x7peu_2jhxl_158.awsui_divider-position-top_x7peu_2jhxl_189,
.awsui_divider-interactive_x7peu_2jhxl_158.awsui_divider-position-top_x7peu_2jhxl_189:not(#\9) {
  margin-block-start: 0;
  margin-block-end: auto;
  max-block-size: calc(100% - calc(2 * var(--space-xs-ymlm0b, 8px) + var(--space-xxxs-pajhad, 2px)) / 2);
}
th:not(#\9):not([data-rightmost]) > .awsui_divider_x7peu_2jhxl_158.awsui_divider-position-bottom_x7peu_2jhxl_195,
.awsui_divider-interactive_x7peu_2jhxl_158.awsui_divider-position-bottom_x7peu_2jhxl_195:not(#\9) {
  margin-block-start: auto;
  margin-block-end: 0;
  max-block-size: calc(100% - calc(2 * var(--space-xs-ymlm0b, 8px) + var(--space-xxxs-pajhad, 2px)) / 2);
}
th:not(#\9):not([data-rightmost]) > .awsui_divider_x7peu_2jhxl_158.awsui_divider-position-full_x7peu_2jhxl_201,
.awsui_divider-interactive_x7peu_2jhxl_158.awsui_divider-position-full_x7peu_2jhxl_201:not(#\9) {
  margin-block: 0;
  max-block-size: 100%;
}

.awsui_divider-interactive_x7peu_2jhxl_158:not(#\9) {
  inset-inline-end: calc(var(--space-xl-jfy3x4, 24px) / 2);
}

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

.awsui_resizer-wrapper_x7peu_2jhxl_150.awsui_visual-refresh_x7peu_2jhxl_215.awsui_is-borderless_x7peu_2jhxl_158.awsui_is-last_x7peu_2jhxl_215 > .awsui_divider-interactive_x7peu_2jhxl_158:not(#\9) {
  inset-inline-end: 0;
}

.awsui_resizer_x7peu_2jhxl_150:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  border-block: none;
  border-inline: none;
  background: none;
  inset-block: 0;
  cursor: col-resize;
  block-size: 100%;
  inline-size: var(--space-xl-jfy3x4, 24px);
}
.awsui_resizer_x7peu_2jhxl_150:not(#\9):focus {
  outline: none;
  text-decoration: none;
}
.awsui_resize-active_x7peu_2jhxl_145 .awsui_resizer_x7peu_2jhxl_150:not(#\9) {
  pointer-events: none;
}
body[data-awsui-focus-visible=true] .awsui_resizer_x7peu_2jhxl_150.awsui_has-focus_x7peu_2jhxl_264:not(#\9) {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_resizer_x7peu_2jhxl_150.awsui_has-focus_x7peu_2jhxl_264:not(#\9) {
  outline: 2px dotted transparent;
  outline-offset: calc(calc(var(--space-table-header-focus-outline-gutter-ymwujm, 0px) - 2px) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_resizer_x7peu_2jhxl_150.awsui_has-focus_x7peu_2jhxl_264:not(#\9)::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * calc(var(--space-table-header-focus-outline-gutter-ymwujm, 0px) - 2px));
  inset-block-start: calc(-1 * calc(var(--space-table-header-focus-outline-gutter-ymwujm, 0px) - 2px));
  inline-size: calc(100% + calc(var(--space-table-header-focus-outline-gutter-ymwujm, 0px) - 2px) + calc(var(--space-table-header-focus-outline-gutter-ymwujm, 0px) - 2px));
  block-size: calc(100% + calc(var(--space-table-header-focus-outline-gutter-ymwujm, 0px) - 2px) + calc(var(--space-table-header-focus-outline-gutter-ymwujm, 0px) - 2px));
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}

.awsui_tracker_x7peu_2jhxl_286:not(#\9) {
  display: none;
  position: absolute;
  border-inline-start: var(--border-divider-list-width-tdfx1x, 1px) dashed var(--color-border-divider-active-ypkld8, #0f141a);
  inline-size: 0;
  inset-block: 0;
}
.awsui_resize-active_x7peu_2jhxl_145 .awsui_tracker_x7peu_2jhxl_286:not(#\9) {
  display: block;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_label_13tpe_9w8pd_5:not(#\9),
.awsui_native-input_13tpe_9w8pd_6:not(#\9) {
  /* used in analytics metadata */
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_content_1wepg_ykyec_145:not(#\9),
.awsui_description_1wepg_ykyec_146:not(#\9),
.awsui_label_1wepg_ykyec_147:not(#\9) {
  display: block;
}

.awsui_label_1wepg_ykyec_147:not(#\9) {
  color: var(--color-text-form-default-jsw02x, #0f141a);
}

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

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

.awsui_wrapper_1wepg_ykyec_166:not(#\9) {
  min-inline-size: 0;
  word-break: break-word;
  display: flex;
}

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

.awsui_content_1wepg_ykyec_145:not(#\9) {
  min-inline-size: 0;
  word-break: break-word;
}

.awsui_empty-content_1wepg_ykyec_183:not(#\9) {
  inline-size: 0px;
}

.awsui_description_1wepg_ykyec_146:not(#\9) {
  color: var(--color-text-form-secondary-t0glp7, #656871);
  font-size: var(--font-size-body-s-smc8cv, 12px);
  line-height: var(--line-height-body-s-nu5hx1, 16px);
  letter-spacing: var(--letter-spacing-body-s-gq78ok, 0.005em);
}
.awsui_description-bottom-padding_1wepg_ykyec_193:not(#\9) {
  padding-block-end: var(--space-scaled-xxs-pfm1nx, 4px);
}

.awsui_label_1wepg_ykyec_147:not(#\9),
.awsui_description_1wepg_ykyec_146:not(#\9) {
  padding-inline-start: var(--space-xs-ymlm0b, 8px);
}
.awsui_label-disabled_1wepg_ykyec_201:not(#\9),
.awsui_description-disabled_1wepg_ykyec_202:not(#\9) {
  color: var(--color-text-control-disabled-vh7v3o, #b4b4bb);
}

.awsui_control_1wepg_ykyec_206:not(#\9) {
  position: relative;
  /* stylelint-disable selector-max-type */
  /* stylelint-enable selector-max-type */
}
.awsui_control_1wepg_ykyec_206 > input:not(#\9), .awsui_control_1wepg_ykyec_206 > svg:not(#\9), .awsui_control_1wepg_ykyec_206 > .awsui_outline_1wepg_ykyec_155:not(#\9) {
  position: absolute;
  inline-size: 100%;
  block-size: 100%;
  inset-block-start: 0;
  inset-inline-start: 0;
}
.awsui_control_1wepg_ykyec_206 > input:not(#\9) {
  opacity: 0;
  z-index: 1;
  -webkit-user-select: none;
          user-select: none;
  cursor: default;
  margin-block: 0;
  margin-inline: 0;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_root_1fn7j_99qaw_145:not(#\9) {
  position: absolute;
  inline-size: 100%;
  block-size: 100%;
  inset-block-start: 0;
  inset-inline-start: 0;
}
.awsui_root_1fn7j_99qaw_145 > .awsui_styled-box_1fn7j_99qaw_152:not(#\9) {
  fill: var(--color-background-control-default-nub6gm, #ffffff);
  stroke: var(--color-border-control-default-sh3548, #8c8c94);
  stroke-width: var(--border-width-field-2xc78x, 1px);
  transition: fill var(--motion-duration-transition-quick-mcm2y0, 90ms) var(--motion-easing-transition-quick-qxak3i, linear), stroke var(--motion-duration-transition-quick-mcm2y0, 90ms) var(--motion-easing-transition-quick-qxak3i, linear);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_root_1fn7j_99qaw_145 > .awsui_styled-box_1fn7j_99qaw_152:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_root_1fn7j_99qaw_145 > .awsui_styled-box_1fn7j_99qaw_152:not(#\9), .awsui-mode-entering .awsui_root_1fn7j_99qaw_145 > .awsui_styled-box_1fn7j_99qaw_152:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_root_1fn7j_99qaw_145 > .awsui_styled-box-checked_1fn7j_99qaw_168:not(#\9), .awsui_root_1fn7j_99qaw_145 > .awsui_styled-box-indeterminate_1fn7j_99qaw_168:not(#\9) {
  fill: var(--color-background-control-checked-jwoxtj, #006ce0);
  stroke: var(--color-border-control-checked-o1zph2, #006ce0);
}
.awsui_root_1fn7j_99qaw_145 > .awsui_styled-box-disabled_1fn7j_99qaw_172:not(#\9), .awsui_root_1fn7j_99qaw_145 > .awsui_styled-box-readonly_1fn7j_99qaw_172:not(#\9) {
  fill: var(--color-background-control-disabled-cb50zl, #dedee3);
  stroke: var(--color-border-control-disabled-dqtwtk, #dedee3);
}
.awsui_root_1fn7j_99qaw_145 > .awsui_styled-line_1fn7j_99qaw_176:not(#\9) {
  stroke: var(--color-foreground-control-default-z8tr7i, #ffffff);
  stroke-width: 2;
  fill: none;
}
.awsui_root_1fn7j_99qaw_145 > .awsui_styled-line-disabled_1fn7j_99qaw_181:not(#\9) {
  stroke: var(--color-foreground-control-disabled-6vf647, #ffffff);
}
.awsui_root_1fn7j_99qaw_145 > .awsui_styled-line-readonly_1fn7j_99qaw_184:not(#\9) {
  stroke: var(--color-foreground-control-read-only-dtlpre, #656871);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_root_k2y2q_gkdv2_145.awsui_root_k2y2q_gkdv2_145:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  display: flex;
}

.awsui_checkbox-control_k2y2q_gkdv2_178:not(#\9) {
  margin-block-start: calc((var(--line-height-body-m-2mh3ke, 20px) - var(--size-control-adm93y, 16px)) / 2);
  min-block-size: var(--size-control-adm93y, 16px);
  min-inline-size: var(--size-control-adm93y, 16px);
  block-size: var(--size-control-adm93y, 16px);
  inline-size: var(--size-control-adm93y, 16px);
}

.awsui_outline_k2y2q_gkdv2_186:not(#\9) {
  --awsui-style-focus-ring-box-shadow-esndbs: 0 0 0 var(--awsui-style-focus-ring-border-width-esndbs, 2px) var(--awsui-style-focus-ring-border-color-esndbs, var(--color-border-item-focused-ditkrb, #006ce0));
  position: relative;
}
.awsui_outline_k2y2q_gkdv2_186:not(#\9) {
  outline: 2px dotted transparent;
  outline-offset: calc(2px - 1px);
}
.awsui_outline_k2y2q_gkdv2_186:not(#\9)::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * 2px);
  inset-block-start: calc(-1 * 2px);
  inline-size: calc(100% + 2px + 2px);
  block-size: calc(100% + 2px + 2px);
  border-start-start-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  border-start-end-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  border-end-start-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  border-end-end-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  box-shadow: var(--awsui-style-focus-ring-box-shadow-esndbs);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_radio-control_1v1hk_op7uj_145:not(#\9) {
  margin-block-start: calc((var(--line-height-body-m-2mh3ke, 20px) - var(--size-control-adm93y, 16px)) / 2);
  min-block-size: var(--size-control-adm93y, 16px);
  min-inline-size: var(--size-control-adm93y, 16px);
  block-size: var(--size-control-adm93y, 16px);
  inline-size: var(--size-control-adm93y, 16px);
}

.awsui_outline_1v1hk_op7uj_153:not(#\9) {
  --awsui-style-focus-ring-box-shadow-esndbs: 0 0 0 var(--awsui-style-focus-ring-border-width-esndbs, 2px) var(--awsui-style-focus-ring-border-color-esndbs, var(--color-border-item-focused-ditkrb, #006ce0));
  position: relative;
}
.awsui_outline_1v1hk_op7uj_153:not(#\9) {
  outline: 2px dotted transparent;
  outline-offset: calc(2px - 1px);
}
.awsui_outline_1v1hk_op7uj_153:not(#\9)::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * 2px);
  inset-block-start: calc(-1 * 2px);
  inline-size: calc(100% + 2px + 2px);
  block-size: calc(100% + 2px + 2px);
  border-start-start-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-circular-focus-ring-yjhscw, 4px));
  border-start-end-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-circular-focus-ring-yjhscw, 4px));
  border-end-start-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-circular-focus-ring-yjhscw, 4px));
  border-end-end-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-circular-focus-ring-yjhscw, 4px));
  box-shadow: var(--awsui-style-focus-ring-box-shadow-esndbs);
}

.awsui_styled-circle-border_1v1hk_op7uj_176:not(#\9) {
  stroke: var(--color-border-control-default-sh3548, #8c8c94);
  fill: var(--color-background-control-default-nub6gm, #ffffff);
}
.awsui_styled-circle-border_1v1hk_op7uj_176.awsui_styled-circle-disabled_1v1hk_op7uj_180:not(#\9), .awsui_styled-circle-border_1v1hk_op7uj_176.awsui_styled-circle-readonly_1v1hk_op7uj_180:not(#\9) {
  fill: var(--color-background-control-disabled-cb50zl, #dedee3);
  stroke: var(--color-background-control-disabled-cb50zl, #dedee3);
}

.awsui_styled-circle-fill_1v1hk_op7uj_185:not(#\9) {
  stroke: var(--color-background-control-checked-jwoxtj, #006ce0);
  fill: var(--color-foreground-control-default-z8tr7i, #ffffff);
  opacity: 0;
  transition: opacity var(--motion-duration-transition-quick-mcm2y0, 90ms) var(--motion-easing-transition-quick-qxak3i, linear);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_styled-circle-fill_1v1hk_op7uj_185:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_styled-circle-fill_1v1hk_op7uj_185:not(#\9), .awsui-mode-entering .awsui_styled-circle-fill_1v1hk_op7uj_185:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_styled-circle-fill_1v1hk_op7uj_185.awsui_styled-circle-checked_1v1hk_op7uj_201:not(#\9) {
  opacity: 1;
}
.awsui_styled-circle-fill_1v1hk_op7uj_185.awsui_styled-circle-disabled_1v1hk_op7uj_180:not(#\9) {
  fill: var(--color-foreground-control-disabled-6vf647, #ffffff);
  stroke: var(--color-background-control-disabled-cb50zl, #dedee3);
}
.awsui_styled-circle-fill_1v1hk_op7uj_185.awsui_styled-circle-readonly_1v1hk_op7uj_180:not(#\9) {
  fill: var(--color-foreground-control-read-only-dtlpre, #656871);
  stroke: var(--color-background-control-disabled-cb50zl, #dedee3);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_root_15oj2_1q93l_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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_root_1s55x_14pps_145:not(#\9) {
  /* used in test-utils and in the use-selection hook */
}

.awsui_label_1s55x_14pps_149:not(#\9) {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  padding-block-end: var(--space-xxs-hwfkai, 4px);
  block-size: 100%;
  inset-block-start: 0;
  inline-size: 100%;
  inset-inline-start: 0;
  box-sizing: border-box;
  border-inline-end: 1px solid transparent;
}

.awsui_label-top_1s55x_14pps_163:not(#\9) {
  align-items: baseline;
  padding-block-start: var(--space-xs-ymlm0b, 8px);
}

.awsui_stud_1s55x_14pps_168:not(#\9) {
  visibility: hidden;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_header-cell_1spae_kqiqr_149:not(#\9) {
  position: relative;
  text-align: start;
  box-sizing: border-box;
  border-block-end: var(--border-divider-list-width-tdfx1x, 1px) solid var(--color-border-divider-default-0de9c8, #c6c6cd);
  background: var(--color-background-table-header-unjmda, #ffffff);
  color: var(--color-text-column-header-wyzs6v, #424650);
  font-weight: var(--font-weight-heading-s-lcx0ai, 700);
  -webkit-font-smoothing: var(--font-smoothing-webkit-oemolo, antialiased);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-hbm0aq, grayscale);
  padding-block: var(--space-scaled-xxs-pfm1nx, 4px);
  padding-inline: var(--space-scaled-xs-xwoogq, 8px);
}
body[data-awsui-focus-visible=true] .awsui_header-cell_1spae_kqiqr_149:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_header-cell_1spae_kqiqr_149:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_header-cell_1spae_kqiqr_149:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  inset-block-start: calc(-1 * calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  inline-size: calc(100% + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)) + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  block-size: calc(100% + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)) + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}
body[data-awsui-focus-visible=true] .awsui_header-cell_1spae_kqiqr_149.awsui_header-cell-fake-focus_1spae_kqiqr_183:not(#\9) {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_header-cell_1spae_kqiqr_149.awsui_header-cell-fake-focus_1spae_kqiqr_183:not(#\9) {
  outline: 2px dotted transparent;
  outline-offset: calc(calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_header-cell_1spae_kqiqr_149.awsui_header-cell-fake-focus_1spae_kqiqr_183:not(#\9)::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  inset-block-start: calc(-1 * calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  inline-size: calc(100% + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)) + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  block-size: calc(100% + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)) + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}
.awsui_header-cell_1spae_kqiqr_149.awsui_header-cell-group_1spae_kqiqr_204:not(#\9), .awsui_header-cell_1spae_kqiqr_149.awsui_header-cell-grouped_1spae_kqiqr_204:not(#\9), .awsui_header-cell_1spae_kqiqr_149.awsui_header-cell-spans-rows_1spae_kqiqr_204:not(#\9) {
  padding-block: var(--space-xxxs-pajhad, 2px);
  padding-inline: var(--space-scaled-xs-xwoogq, 8px);
  border-block-end-color: var(--color-border-divider-table-group-tut0l3, #8c8c94);
}
.awsui_header-cell_1spae_kqiqr_149.awsui_header-cell-group_1spae_kqiqr_204 > .awsui_resize-divider_1spae_kqiqr_209.awsui_resize-divider_1spae_kqiqr_209:not(#\9), .awsui_header-cell_1spae_kqiqr_149.awsui_header-cell-grouped_1spae_kqiqr_204 > .awsui_resize-divider_1spae_kqiqr_209.awsui_resize-divider_1spae_kqiqr_209:not(#\9), .awsui_header-cell_1spae_kqiqr_149.awsui_header-cell-spans-rows_1spae_kqiqr_204 > .awsui_resize-divider_1spae_kqiqr_209.awsui_resize-divider_1spae_kqiqr_209:not(#\9) {
  border-inline-start-color: var(--color-border-divider-table-group-tut0l3, #8c8c94);
}
.awsui_header-cell-sticky_1spae_kqiqr_212:not(#\9) {
  border-block-end: var(--border-table-sticky-width-ai31mi, 1px) solid var(--color-border-divider-default-0de9c8, #c6c6cd);
}
.awsui_header-cell-sticky_1spae_kqiqr_212.awsui_header-cell-group_1spae_kqiqr_204:not(#\9), .awsui_header-cell-sticky_1spae_kqiqr_212.awsui_header-cell-grouped_1spae_kqiqr_204:not(#\9), .awsui_header-cell-sticky_1spae_kqiqr_212.awsui_header-cell-spans-rows_1spae_kqiqr_204:not(#\9) {
  border-block-end-color: var(--color-border-divider-table-group-tut0l3, #8c8c94);
}
.awsui_header-cell-stuck_1spae_kqiqr_218:not(#\9):not(.awsui_header-cell-variant-full-page_1spae_kqiqr_218) {
  border-block-end-color: transparent;
}
.awsui_header-cell-variant-full-page_1spae_kqiqr_218:not(#\9) {
  background: var(--color-background-layout-main-7z8vaj, #ffffff);
}
.awsui_header-cell-variant-full-page_1spae_kqiqr_218.awsui_header-cell-hidden_1spae_kqiqr_224:not(#\9) {
  border-block-end-color: transparent;
}
.awsui_header-cell-variant-embedded_1spae_kqiqr_227.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):not(:is(.awsui_header-cell-sticky_1spae_kqiqr_212, .awsui_sticky-cell_1spae_kqiqr_227)), .awsui_header-cell-variant-borderless_1spae_kqiqr_227.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):not(:is(.awsui_header-cell-sticky_1spae_kqiqr_212, .awsui_sticky-cell_1spae_kqiqr_227)) {
  background: none;
}
.awsui_header-cell_1spae_kqiqr_149:not(#\9):last-child, .awsui_header-cell_1spae_kqiqr_149[data-rightmost]:not(#\9), .awsui_header-cell_1spae_kqiqr_149.awsui_header-cell-sortable_1spae_kqiqr_230:not(#\9) {
  padding-inline-end: var(--space-xs-ymlm0b, 8px);
}
.awsui_header-cell_1spae_kqiqr_149.awsui_sticky-cell_1spae_kqiqr_227:not(#\9) {
  position: sticky;
  background: var(--color-background-table-header-unjmda, #ffffff);
  z-index: 798;
  transition-property: padding;
  transition-duration: var(--motion-duration-transition-show-quick-5jnnjz, 90ms);
  transition-timing-function: var(--motion-easing-sticky-tn072u, cubic-bezier(1, 0, 0.83, 1));
}
@media (prefers-reduced-motion: reduce) {
  .awsui_header-cell_1spae_kqiqr_149.awsui_sticky-cell_1spae_kqiqr_227:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_header-cell_1spae_kqiqr_149.awsui_sticky-cell_1spae_kqiqr_227:not(#\9), .awsui-mode-entering .awsui_header-cell_1spae_kqiqr_149.awsui_sticky-cell_1spae_kqiqr_227:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_header-cell_1spae_kqiqr_149.awsui_sticky-cell_1spae_kqiqr_227.awsui_table-variant-full-page_1spae_kqiqr_251:not(#\9) {
  background: var(--color-background-layout-main-7z8vaj, #ffffff);
}
.awsui_header-cell_1spae_kqiqr_149.awsui_sticky-cell-pad-left_1spae_kqiqr_254:not(#\9):not(.awsui_has-selection_1spae_kqiqr_254) {
  padding-inline-start: var(--space-table-horizontal-suurzj, 20px);
}
.awsui_header-cell_1spae_kqiqr_149.awsui_sticky-cell-last-inline-start_1spae_kqiqr_257:not(#\9) {
  box-shadow: var(--shadow-sticky-column-first-trcd2o, 4px 0px 8px 1px rgba(0, 7, 22, 0.1));
  clip-path: inset(0px -24px 0px 0px);
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
}
.awsui_header-cell_1spae_kqiqr_149.awsui_sticky-cell-last-inline-start_1spae_kqiqr_257 > .awsui_resize-divider_1spae_kqiqr_209:not(#\9) {
  display: none;
}
.awsui_header-cell_1spae_kqiqr_149.awsui_sticky-cell-last-inline-start_1spae_kqiqr_257:not(#\9):dir(rtl) {
  box-shadow: var(--shadow-sticky-column-last-qgh697, -4px 0 8px 1px rgba(0, 28, 36, 0.1));
  clip-path: inset(0 0 0 -24px);
}
.awsui_header-cell_1spae_kqiqr_149.awsui_sticky-cell-last-inline-end_1spae_kqiqr_269:not(#\9) {
  box-shadow: var(--shadow-sticky-column-last-qgh697, -4px 0 8px 1px rgba(0, 28, 36, 0.1));
  clip-path: inset(0 0 0 -24px);
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
}
.awsui_header-cell_1spae_kqiqr_149.awsui_sticky-cell-last-inline-end_1spae_kqiqr_269:not(#\9):dir(rtl) {
  box-shadow: var(--shadow-sticky-column-first-trcd2o, 4px 0px 8px 1px rgba(0, 7, 22, 0.1));
  clip-path: inset(0 -24px 0 0);
}

.awsui_sorting-icon_1spae_kqiqr_279:not(#\9) {
  position: absolute;
  inset-block-start: 50%;
  transform: translateY(-50%);
  inset-inline-end: var(--space-xxs-hwfkai, 4px);
  color: var(--color-text-column-sorting-icon-iazyfo, #424650);
}

.awsui_header-cell-main_1spae_kqiqr_287:not(#\9) {
  /* When the wrapper is present without a sort menu, behave as if it weren't there. */
  display: contents;
}

.awsui_sort-priority-badge_1spae_kqiqr_292:not(#\9) {
  margin-inline-end: var(--space-xxs-hwfkai, 4px);
}

.awsui_edit-icon_1spae_kqiqr_296:not(#\9) {
  margin-inline-start: var(--space-xxs-hwfkai, 4px);
  margin-block-start: var(--space-scaled-xxs-pfm1nx, 4px);
  color: inherit;
}

.awsui_header-cell-content_1spae_kqiqr_302:not(#\9) {
  position: relative;
  padding-block: var(--space-scaled-xxs-pfm1nx, 4px);
  padding-inline-end: var(--space-s-tvghoh, 12px);
  padding-inline-start: var(--space-s-tvghoh, 12px);
}
.awsui_header-cell-content_1spae_kqiqr_302.awsui_header-cell-content-expandable_1spae_kqiqr_308:not(#\9) {
  padding-inline-start: calc(var(--space-s-tvghoh, 12px) + var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px));
}
.awsui_header-cell-group_1spae_kqiqr_204 > .awsui_header-cell-content_1spae_kqiqr_302:not(#\9) {
  padding-block: var(--space-xxxs-pajhad, 2px);
}
.awsui_header-cell-content_1spae_kqiqr_302:not(#\9):focus {
  outline: none;
  text-decoration: none;
}
body[data-awsui-focus-visible=true] .awsui_header-cell-content_1spae_kqiqr_302:not(#\9):focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_header-cell-content_1spae_kqiqr_302:not(#\9):focus {
  outline: 2px dotted transparent;
  outline-offset: calc(calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_header-cell-content_1spae_kqiqr_302:not(#\9):focus::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)));
  inset-block-start: calc(-1 * calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)));
  inline-size: calc(100% + calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)) + calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)));
  block-size: calc(100% + calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)) + calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)));
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}
body[data-awsui-focus-visible=true] .awsui_header-cell-content_1spae_kqiqr_302.awsui_header-cell-fake-focus_1spae_kqiqr_183:not(#\9) {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_header-cell-content_1spae_kqiqr_302.awsui_header-cell-fake-focus_1spae_kqiqr_183:not(#\9) {
  outline: 2px dotted transparent;
  outline-offset: calc(calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_header-cell-content_1spae_kqiqr_302.awsui_header-cell-fake-focus_1spae_kqiqr_183:not(#\9)::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)));
  inset-block-start: calc(-1 * calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)));
  inline-size: calc(100% + calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)) + calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)));
  block-size: calc(100% + calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)) + calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)));
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}
.awsui_header-cell-grouped_1spae_kqiqr_204 > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302:not(#\9), .awsui_header-cell-spans-rows_1spae_kqiqr_204 > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302:not(#\9) {
  padding-block: var(--space-xxxs-pajhad, 2px);
}
.awsui_header-cell-sortable_1spae_kqiqr_230 > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302:not(#\9) {
  padding-inline-end: calc(var(--space-xl-jfy3x4, 24px) + var(--space-xxs-hwfkai, 4px));
}
.awsui_header-cell-sortable_1spae_kqiqr_230 > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302.awsui_header-cell-content-multi-sorted_1spae_kqiqr_366:not(#\9) {
  padding-inline-end: calc(var(--space-xl-jfy3x4, 24px) + var(--space-xxs-hwfkai, 4px) + var(--space-m-dsumyt, 16px));
}
.awsui_header-cell-disabled_1spae_kqiqr_369.awsui_header-cell-sorted_1spae_kqiqr_369 > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302 > .awsui_sorting-icon_1spae_kqiqr_279:not(#\9) {
  color: var(--color-text-interactive-disabled-bhh1zo, #b4b4bb);
}

.awsui_header-cell-main-with-menu_1spae_kqiqr_373:not(#\9) {
  display: flex;
  align-items: center;
}

.awsui_header-cell-content-with-menu_1spae_kqiqr_378:not(#\9) {
  flex-grow: 1;
  min-inline-size: 0;
}

.awsui_header-cell-spans-rows_1spae_kqiqr_204:not(#\9) {
  block-size: 100%;
  vertical-align: bottom;
}
.awsui_header-cell-spans-rows_1spae_kqiqr_204 > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302:not(#\9) {
  block-size: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.awsui_header-cell-spans-rows_1spae_kqiqr_204 > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302 > .awsui_sorting-icon_1spae_kqiqr_279:not(#\9) {
  inset-block-start: auto;
  inset-block-end: var(--space-scaled-xxs-pfm1nx, 4px);
  transform: none;
}

.awsui_header-cell-sortable_1spae_kqiqr_230:not(#\9):not(.awsui_header-cell-disabled_1spae_kqiqr_369) {
  cursor: pointer;
}
.awsui_header-cell-sortable_1spae_kqiqr_230:not(#\9):not(.awsui_header-cell-disabled_1spae_kqiqr_369) > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302:hover, .awsui_header-cell-sortable_1spae_kqiqr_230:not(#\9):not(.awsui_header-cell-disabled_1spae_kqiqr_369).awsui_header-cell-sorted_1spae_kqiqr_369 > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302 {
  color: var(--color-text-interactive-active-fedaa8, #0f141a);
}
.awsui_header-cell-sortable_1spae_kqiqr_230:not(#\9):not(.awsui_header-cell-disabled_1spae_kqiqr_369) > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302:hover > .awsui_sorting-icon_1spae_kqiqr_279, .awsui_header-cell-sortable_1spae_kqiqr_230:not(#\9):not(.awsui_header-cell-disabled_1spae_kqiqr_369).awsui_header-cell-sorted_1spae_kqiqr_369 > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302 > .awsui_sorting-icon_1spae_kqiqr_279 {
  color: var(--color-text-interactive-active-fedaa8, #0f141a);
}

.awsui_header-cell-text_1spae_kqiqr_410:not(#\9) {
  line-height: var(--line-height-heading-xs-q9j004, 18px);
  padding-block: calc(var(--space-xxxs-pajhad, 2px) / 2);
}
.awsui_header-cell-text_1spae_kqiqr_410:not(#\9):not(.awsui_header-cell-text-wrap_1spae_kqiqr_414) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.awsui_header-cell-ascending_1spae_kqiqr_420:not(#\9),
.awsui_header-cell-descending_1spae_kqiqr_421:not(#\9) {
  /* used in test-utils */
}

/*
In Visual Refresh the first cell in the header should align
with the left edge of the table as closely as possible. If the
last header cell is sortable the sort icon should align with the
settings icon in the pagination slot.
*/
.awsui_header-cell_1spae_kqiqr_149:not(#\9):not(.awsui_is-visual-refresh_1spae_kqiqr_227):first-child {
  padding-inline-start: var(--space-xs-ymlm0b, 8px);
}
.awsui_header-cell_1spae_kqiqr_149:not(#\9):not(.awsui_is-visual-refresh_1spae_kqiqr_227):first-child.awsui_header-cell-content-expandable_1spae_kqiqr_308 {
  padding-inline-start: calc(var(--space-xs-ymlm0b, 8px) + var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px));
}

.awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9) {
  /*
    Striped rows requires additional left padding because the
    shaded background makes the child content appear too close
    to the table edge.
  */
}
body[data-awsui-focus-visible=true] .awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):first-child:focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):first-child:focus {
  outline: 2px dotted transparent;
  outline-offset: calc(calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px) + var(--space-scaled-xxs-pfm1nx, 4px)) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):first-child:focus::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px) + var(--space-scaled-xxs-pfm1nx, 4px)));
  inset-block-start: calc(-1 * calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  inline-size: calc(100% + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px) + var(--space-scaled-xxs-pfm1nx, 4px)) + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  block-size: calc(100% + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)) + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}
body[data-awsui-focus-visible=true] .awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):first-child.awsui_header-cell-fake-focus_1spae_kqiqr_183 {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):first-child.awsui_header-cell-fake-focus_1spae_kqiqr_183 {
  outline: 2px dotted transparent;
  outline-offset: calc(calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px) + var(--space-scaled-xxs-pfm1nx, 4px)) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):first-child.awsui_header-cell-fake-focus_1spae_kqiqr_183::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px) + var(--space-scaled-xxs-pfm1nx, 4px)));
  inset-block-start: calc(-1 * calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  inline-size: calc(100% + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px) + var(--space-scaled-xxs-pfm1nx, 4px)) + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  block-size: calc(100% + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)) + calc(-1 * var(--space-scaled-xxs-pfm1nx, 4px)));
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}
.awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):first-child:not(.awsui_header-cell-grouped_1spae_kqiqr_204):not(.awsui_header-cell-group_1spae_kqiqr_204) > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302 {
  padding-inline-start: 0px;
}
.awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):first-child:not(.awsui_header-cell-grouped_1spae_kqiqr_204):not(.awsui_header-cell-group_1spae_kqiqr_204) > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302.awsui_header-cell-content-expandable_1spae_kqiqr_308 {
  padding-inline-start: calc(0px + var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px));
}
body[data-awsui-focus-visible=true] .awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):first-child:not(.awsui_header-cell-grouped_1spae_kqiqr_204):not(.awsui_header-cell-group_1spae_kqiqr_204) > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302:focus {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):first-child:not(.awsui_header-cell-grouped_1spae_kqiqr_204):not(.awsui_header-cell-group_1spae_kqiqr_204) > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302:focus {
  outline: 2px dotted transparent;
  outline-offset: calc(calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px) + var(--space-scaled-xxs-pfm1nx, 4px)) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):first-child:not(.awsui_header-cell-grouped_1spae_kqiqr_204):not(.awsui_header-cell-group_1spae_kqiqr_204) > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302:focus::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px) + var(--space-scaled-xxs-pfm1nx, 4px)));
  inset-block-start: calc(-1 * calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)));
  inline-size: calc(100% + calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px) + var(--space-scaled-xxs-pfm1nx, 4px)) + calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)));
  block-size: calc(100% + calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)) + calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)));
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}
body[data-awsui-focus-visible=true] .awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):first-child:not(.awsui_header-cell-grouped_1spae_kqiqr_204):not(.awsui_header-cell-group_1spae_kqiqr_204) > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302.awsui_header-cell-fake-focus_1spae_kqiqr_183 {
  position: relative;
}
body[data-awsui-focus-visible=true] .awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):first-child:not(.awsui_header-cell-grouped_1spae_kqiqr_204):not(.awsui_header-cell-group_1spae_kqiqr_204) > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302.awsui_header-cell-fake-focus_1spae_kqiqr_183 {
  outline: 2px dotted transparent;
  outline-offset: calc(calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px) + var(--space-scaled-xxs-pfm1nx, 4px)) - 1px);
}
body[data-awsui-focus-visible=true] .awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):first-child:not(.awsui_header-cell-grouped_1spae_kqiqr_204):not(.awsui_header-cell-group_1spae_kqiqr_204) > .awsui_header-cell-main_1spae_kqiqr_287 > .awsui_header-cell-content_1spae_kqiqr_302.awsui_header-cell-fake-focus_1spae_kqiqr_183::before {
  content: " ";
  display: block;
  position: absolute;
  inset-inline-start: calc(-1 * calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px) + var(--space-scaled-xxs-pfm1nx, 4px)));
  inset-block-start: calc(-1 * calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)));
  inline-size: calc(100% + calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px) + var(--space-scaled-xxs-pfm1nx, 4px)) + calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)));
  block-size: calc(100% + calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)) + calc(-1 * var(--space-table-header-focus-outline-gutter-ymwujm, 0px)));
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 2px var(--color-border-item-focused-ditkrb, #006ce0);
}
.awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):first-child:not(.awsui_has-striped-rows_1spae_kqiqr_535):not(.awsui_sticky-cell-pad-inline-start_1spae_kqiqr_535):not(.awsui_header-cell-group_1spae_kqiqr_204):not(.awsui_header-cell-grouped_1spae_kqiqr_204) {
  padding-inline-start: var(--space-xxxs-pajhad, 2px);
}
.awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):first-child:not(.awsui_has-striped-rows_1spae_kqiqr_535):not(.awsui_sticky-cell-pad-inline-start_1spae_kqiqr_535):not(.awsui_header-cell-group_1spae_kqiqr_204):not(.awsui_header-cell-grouped_1spae_kqiqr_204).awsui_header-cell-content-expandable_1spae_kqiqr_308 {
  padding-inline-start: calc(var(--space-xxxs-pajhad, 2px) + var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px));
}
.awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):first-child.awsui_has-striped-rows_1spae_kqiqr_535:not(.awsui_sticky-cell-pad-inline-start_1spae_kqiqr_535):not(.awsui_header-cell-group_1spae_kqiqr_204):not(.awsui_header-cell-grouped_1spae_kqiqr_204) {
  padding-inline-start: var(--space-xxs-hwfkai, 4px);
}
.awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):first-child.awsui_has-striped-rows_1spae_kqiqr_535:not(.awsui_sticky-cell-pad-inline-start_1spae_kqiqr_535):not(.awsui_header-cell-group_1spae_kqiqr_204):not(.awsui_header-cell-grouped_1spae_kqiqr_204).awsui_header-cell-content-expandable_1spae_kqiqr_308 {
  padding-inline-start: calc(var(--space-xxs-hwfkai, 4px) + var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px));
}
.awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227:not(#\9):last-child.awsui_header-cell-sortable_1spae_kqiqr_230:not(.awsui_header-cell-resizable_1spae_kqiqr_547), .awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227[data-rightmost].awsui_header-cell-sortable_1spae_kqiqr_230:not(#\9):not(.awsui_header-cell-resizable_1spae_kqiqr_547) {
  padding-inline-end: var(--space-xxxs-pajhad, 2px);
}
.awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227.awsui_sticky-cell-pad-inline-start_1spae_kqiqr_535:not(#\9) {
  padding-inline-start: var(--space-scaled-l-sej05l, 20px);
}
.awsui_header-cell_1spae_kqiqr_149.awsui_is-visual-refresh_1spae_kqiqr_227.awsui_sticky-cell-pad-inline-start_1spae_kqiqr_535.awsui_header-cell-content-expandable_1spae_kqiqr_308:not(#\9) {
  padding-inline-start: calc(var(--space-scaled-l-sej05l, 20px) + var(--space-m-dsumyt, 16px) + var(--space-xs-ymlm0b, 8px));
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
@keyframes awsui_skeleton-wave_1qq5l_4siy4_1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes awsui_skeleton-wave-rtl_1qq5l_4siy4_1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.awsui_root_1qq5l_4siy4_161:not(#\9) {
  inline-size: 100%;
}
.awsui_root_1qq5l_4siy4_161 > .awsui_inner_1qq5l_4siy4_164:not(#\9) {
  block-size: 1em;
  inline-size: 100%;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: var(--color-background-skeleton-wytrx7, #8c8c94);
  border-start-start-radius: var(--border-radius-skeleton-9lkvfi, 8px);
  border-start-end-radius: var(--border-radius-skeleton-9lkvfi, 8px);
  border-end-start-radius: var(--border-radius-skeleton-9lkvfi, 8px);
  border-end-end-radius: var(--border-radius-skeleton-9lkvfi, 8px);
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
}
.awsui_root_1qq5l_4siy4_161 > .awsui_inner_1qq5l_4siy4_164:not(#\9)::after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;
  inset-block-end: 0;
  inset-inline-start: 0;
  background: linear-gradient(90deg, transparent, var(--color-background-skeleton-wave-2q57ya, #f6f6f9), transparent);
  animation: awsui_skeleton-wave_1qq5l_4siy4_1 1.25s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .awsui_root_1qq5l_4siy4_161 > .awsui_inner_1qq5l_4siy4_164:not(#\9)::after {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_root_1qq5l_4siy4_161 > .awsui_inner_1qq5l_4siy4_164:not(#\9)::after, .awsui-mode-entering .awsui_root_1qq5l_4siy4_161 > .awsui_inner_1qq5l_4siy4_164:not(#\9)::after {
  animation: none;
  transition: none;
}
.awsui_root_1qq5l_4siy4_161 > .awsui_inner_1qq5l_4siy4_164:not(#\9):dir(rtl)::after {
  animation: awsui_skeleton-wave-rtl_1qq5l_4siy4_1 1.25s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .awsui_root_1qq5l_4siy4_161 > .awsui_inner_1qq5l_4siy4_164:not(#\9):dir(rtl)::after {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_root_1qq5l_4siy4_161 > .awsui_inner_1qq5l_4siy4_164:not(#\9):dir(rtl)::after, .awsui-mode-entering .awsui_root_1qq5l_4siy4_161 > .awsui_inner_1qq5l_4siy4_164:not(#\9):dir(rtl)::after {
  animation: none;
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .awsui_root_1qq5l_4siy4_161 > .awsui_inner_1qq5l_4siy4_164:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_root_1qq5l_4siy4_161 > .awsui_inner_1qq5l_4siy4_164:not(#\9), .awsui-mode-entering .awsui_root_1qq5l_4siy4_161 > .awsui_inner_1qq5l_4siy4_164:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_display-block_1qq5l_4siy4_222:not(#\9) {
  display: block;
}

.awsui_display-inline-block_1qq5l_4siy4_226:not(#\9) {
  display: inline-block;
  vertical-align: middle;
}

.awsui_display-inline_1qq5l_4siy4_226:not(#\9) {
  display: inline;
}

.awsui_variant-text-body-s_1qq5l_4siy4_235:not(#\9) {
  font-size: var(--font-size-body-s-smc8cv, 12px);
  line-height: var(--line-height-body-s-nu5hx1, 16px);
}

.awsui_variant-text-body-m_1qq5l_4siy4_240:not(#\9) {
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
}

.awsui_variant-text-heading-xs_1qq5l_4siy4_245:not(#\9) {
  font-size: var(--font-size-heading-xs-j8yzxv, 14px);
  line-height: var(--line-height-heading-xs-q9j004, 18px);
}

.awsui_variant-text-heading-s_1qq5l_4siy4_250:not(#\9) {
  font-size: var(--font-size-heading-s-zp08en, 16px);
  line-height: var(--line-height-heading-s-hmi4vc, 20px);
}

.awsui_variant-text-heading-m_1qq5l_4siy4_255:not(#\9) {
  font-size: var(--font-size-heading-m-170yiy, 18px);
  line-height: var(--line-height-heading-m-uoaqdh, 22px);
}

.awsui_variant-text-heading-l_1qq5l_4siy4_260:not(#\9) {
  font-size: var(--font-size-heading-l-vnacx6, 20px);
  line-height: var(--line-height-heading-l-mg5bx6, 24px);
}

.awsui_variant-text-heading-xl_1qq5l_4siy4_265:not(#\9) {
  font-size: var(--font-size-heading-xl-wvkbur, 24px);
  line-height: var(--line-height-heading-xl-hko6p0, 30px);
}

.awsui_variant-text-display-l_1qq5l_4siy4_270:not(#\9) {
  font-size: var(--font-size-display-l-wa6woo, 42px);
  line-height: var(--line-height-display-l-vwanzp, 48px);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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_9duf6_1hgyr_153:not(#\9) {
  animation: awsui_awsui-motion-fade-in-dropdown_9duf6_1hgyr_1 var(--motion-duration-show-quick-tyvnyw, 135ms) var(--motion-easing-show-quick-9hlj8q, ease-out);
}
@keyframes awsui_awsui-motion-fade-in-dropdown_9duf6_1hgyr_1 {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_dropdown-content-wrapper_9duf6_1hgyr_153:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_dropdown-content-wrapper_9duf6_1hgyr_153:not(#\9), .awsui-mode-entering .awsui_dropdown-content-wrapper_9duf6_1hgyr_153:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_dropdown-content-wrapper_9duf6_1hgyr_153.awsui_refresh_9duf6_1hgyr_174:not(#\9) {
  transform-origin: top;
  animation-name: awsui_awsui-motion-fade-in-0_9duf6_1hgyr_1;
  animation-duration: var(--motion-duration-show-quick-tyvnyw, 135ms);
  animation-timing-function: var(--motion-easing-show-quick-9hlj8q, ease-out);
}
@keyframes awsui_awsui-motion-fade-in-0_9duf6_1hgyr_1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .awsui_dropdown-content-wrapper_9duf6_1hgyr_153.awsui_refresh_9duf6_1hgyr_174:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_dropdown-content-wrapper_9duf6_1hgyr_153.awsui_refresh_9duf6_1hgyr_174:not(#\9), .awsui-mode-entering .awsui_dropdown-content-wrapper_9duf6_1hgyr_153.awsui_refresh_9duf6_1hgyr_174:not(#\9) {
  animation: none;
  transition: none;
}

.awsui_root_9duf6_1hgyr_199:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  position: relative;
  white-space: inherit;
}
.awsui_root_9duf6_1hgyr_199.awsui_interior_9duf6_1hgyr_232:not(#\9) {
  position: static;
}

.awsui_dropdown_9duf6_1hgyr_153:not(#\9) {
  position: absolute;
  display: none;
  z-index: 2000;
  transform-origin: top;
}
.awsui_dropdown_9duf6_1hgyr_153.awsui_use-portal_9duf6_1hgyr_242:not(#\9) {
  z-index: 7000;
}
.awsui_dropdown_9duf6_1hgyr_153:not(#\9):not(.awsui_interior_9duf6_1hgyr_232) {
  transform: translateY(0px);
  transition: transform var(--motion-duration-show-quick-tyvnyw, 135ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_dropdown_9duf6_1hgyr_153:not(#\9):not(.awsui_interior_9duf6_1hgyr_232) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_dropdown_9duf6_1hgyr_153:not(#\9):not(.awsui_interior_9duf6_1hgyr_232), .awsui-mode-entering .awsui_dropdown_9duf6_1hgyr_153:not(#\9):not(.awsui_interior_9duf6_1hgyr_232) {
  animation: none;
  transition: none;
}
.awsui_dropdown-content-wrapper_9duf6_1hgyr_153:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  white-space: inherit;
  position: relative;
  background-color: var(--color-background-dropdown-item-default-lzrka9, #ffffff);
  outline: none;
  box-shadow: var(--shadow-dropdown-isf0w4, 0px 4px 20px 1px rgba(0, 7, 22, 0.1));
  border-start-start-radius: var(--awsui-dropdown-content-border-radius-esndbs, var(--border-radius-dropdown-fgc2a1, 8px));
  border-start-end-radius: var(--awsui-dropdown-content-border-radius-esndbs, var(--border-radius-dropdown-fgc2a1, 8px));
  border-end-start-radius: var(--awsui-dropdown-content-border-radius-esndbs, var(--border-radius-dropdown-fgc2a1, 8px));
  border-end-end-radius: var(--awsui-dropdown-content-border-radius-esndbs, var(--border-radius-dropdown-fgc2a1, 8px));
  border-block: var(--border-divider-list-width-tdfx1x, 1px) solid var(--color-border-container-top-k3vmoz, transparent);
  box-sizing: border-box;
}
.awsui_dropdown-content-wrapper_9duf6_1hgyr_153:not(#\9)::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset-block-start: -1px;
  inset-block-end: -1px;
  inset-inline-start: 0px;
  inset-inline-end: 0px;
  background-color: transparent;
  border-block: var(--awsui-dropdown-content-border-width-esndbs, var(--border-width-popover-nflirh, 2px)) solid var(--awsui-dropdown-content-border-color-esndbs, var(--color-border-dropdown-container-gb937i, #b4b4bb));
  border-inline: var(--awsui-dropdown-content-border-width-esndbs, var(--border-width-popover-nflirh, 2px)) solid var(--awsui-dropdown-content-border-color-esndbs, var(--color-border-dropdown-container-gb937i, #b4b4bb));
  border-start-start-radius: var(--awsui-dropdown-content-border-radius-esndbs, var(--border-radius-dropdown-fgc2a1, 8px));
  border-start-end-radius: var(--awsui-dropdown-content-border-radius-esndbs, var(--border-radius-dropdown-fgc2a1, 8px));
  border-end-start-radius: var(--awsui-dropdown-content-border-radius-esndbs, var(--border-radius-dropdown-fgc2a1, 8px));
  border-end-end-radius: var(--awsui-dropdown-content-border-radius-esndbs, var(--border-radius-dropdown-fgc2a1, 8px));
  pointer-events: none;
}
.awsui_dropdown-content-wrapper_9duf6_1hgyr_153.awsui_is-empty_9duf6_1hgyr_318:not(#\9)::after {
  display: none;
}
.awsui_dropdown_9duf6_1hgyr_153 > .awsui_dropdown-content-wrapper_9duf6_1hgyr_153:not(#\9) {
  border-block-start: var(--border-divider-list-width-tdfx1x, 1px) solid var(--color-border-container-top-k3vmoz, transparent);
  border-block-end: var(--border-divider-list-width-tdfx1x, 1px) solid var(--color-border-dropdown-group-0ocu9j, #c6c6cd);
}
.awsui_dropdown-drop-up_9duf6_1hgyr_325 > .awsui_dropdown-content-wrapper_9duf6_1hgyr_153:not(#\9) {
  transform-origin: bottom;
  box-shadow: var(--shadow-dropup-2r02r5, 0px 4px 20px 1px rgba(0, 7, 22, 0.1));
}
.awsui_dropdown-drop-up_9duf6_1hgyr_325.awsui_with-limited-width_9duf6_1hgyr_329 > .awsui_dropdown-content-wrapper_9duf6_1hgyr_153:not(#\9) {
  border-block-start: none;
}
.awsui_dropdown-drop-left_9duf6_1hgyr_332:not(#\9) {
  inset-inline-end: 0;
}
.awsui_dropdown-drop-right_9duf6_1hgyr_335:not(#\9) {
  inset-inline-start: 0;
}
.awsui_dropdown_9duf6_1hgyr_153.awsui_occupy-entire-width_9duf6_1hgyr_338:not(#\9) {
  min-inline-size: 100%;
}
.awsui_dropdown_9duf6_1hgyr_153.awsui_use-flexible-width_9duf6_1hgyr_341:not(#\9) {
  inline-size: max-content;
  max-inline-size: var(--awsui-dropdown-default-max-width-esndbs, none);
  min-inline-size: var(--awsui-dropdown-default-min-width-esndbs, auto);
}
.awsui_dropdown_9duf6_1hgyr_153.awsui_interior_9duf6_1hgyr_232 > .awsui_dropdown-content-wrapper_9duf6_1hgyr_153:not(#\9) {
  margin-block-start: -1px;
}
.awsui_dropdown_9duf6_1hgyr_153.awsui_hide-block-border_9duf6_1hgyr_349 > .awsui_dropdown-content-wrapper_9duf6_1hgyr_153:not(#\9) {
  border-block-start: none;
}
.awsui_dropdown_9duf6_1hgyr_153.awsui_hide-block-border_9duf6_1hgyr_349:not(#\9):not(.awsui_dropdown-drop-up_9duf6_1hgyr_325) > .awsui_dropdown-content-wrapper_9duf6_1hgyr_153 {
  border-block-end: none;
}
.awsui_dropdown_9duf6_1hgyr_153.awsui_hide-block-border_9duf6_1hgyr_349.awsui_refresh_9duf6_1hgyr_174 > .awsui_dropdown-content-wrapper_9duf6_1hgyr_153:not(#\9) {
  border-block-end: none;
}
.awsui_dropdown_9duf6_1hgyr_153.awsui_open_9duf6_1hgyr_358:not(#\9) {
  display: block;
}
.awsui_dropdown_9duf6_1hgyr_153.awsui_open_9duf6_1hgyr_358:not(#\9):not(.awsui_interior_9duf6_1hgyr_232).awsui_refresh_9duf6_1hgyr_174[data-animating=true] {
  transform: translateY(4px);
}
.awsui_dropdown_9duf6_1hgyr_153.awsui_open_9duf6_1hgyr_358:not(#\9):not(.awsui_interior_9duf6_1hgyr_232).awsui_refresh_9duf6_1hgyr_174[data-animating=true].awsui_dropdown-drop-up_9duf6_1hgyr_325 {
  transform: translateY(-4px);
}
.awsui_dropdown_9duf6_1hgyr_153.awsui_open_9duf6_1hgyr_358.awsui_nowrap_9duf6_1hgyr_367:not(#\9) {
  white-space: nowrap;
  overflow: scroll;
}

.awsui_dropdown-content_9duf6_1hgyr_153:not(#\9) {
  display: flex;
  flex-direction: column;
  inline-size: 100%;
}

.awsui_stretch-trigger-height_9duf6_1hgyr_378:not(#\9) {
  block-size: 100%;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_trigger_1hezk_1wraf_5:not(#\9) {
  /* used in test-utils */
}

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

.awsui_footer_1hezk_1wraf_13: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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_link_4c84z_13skl_145:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  display: inline;
  white-space: inherit;
  --awsui-style-focus-ring-box-shadow-esndbs: 0 0 0 var(--awsui-style-focus-ring-border-width-esndbs, var(--border-link-focus-ring-shadow-spread-39uvxr, 2px)) var(--awsui-style-focus-ring-border-color-esndbs, var(--color-border-item-focused-ditkrb, #006ce0));
  text-underline-offset: 0.25em;
  text-decoration-thickness: var(--font-decoration-thickness-link-uesuo7, 1px);
  text-decoration-style: var(--font-decoration-style-link-pk2xmp, solid);
  color: var(--awsui-style-color-default-esndbs, var(--color-text-link-secondary-default-6ui3do, #006ce0));
  font-weight: var(--font-weight-link-secondary-2yfxrh, inherit);
  letter-spacing: normal;
  text-decoration-line: var(--font-decoration-line-link-secondary-yegojw, none);
  text-decoration-color: var(--color-text-link-secondary-decoration-default-icj4nn, 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-5rbn3k, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_link_4c84z_13skl_145:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_link_4c84z_13skl_145:not(#\9), .awsui-mode-entering .awsui_link_4c84z_13skl_145:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_link_4c84z_13skl_145:not(#\9):hover {
  cursor: pointer;
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-link-secondary-hover-oy8eob, #002b66));
}
.awsui_link_4c84z_13skl_145:not(#\9):focus {
  outline: none;
}
.awsui_link_4c84z_13skl_145:not(#\9):active {
  color: var(--awsui-style-color-active-esndbs, var(--color-text-link-secondary-hover-oy8eob, #002b66));
}
.awsui_link_4c84z_13skl_145:not(#\9):active, .awsui_link_4c84z_13skl_145:not(#\9):focus, .awsui_link_4c84z_13skl_145:not(#\9):hover {
  text-decoration-line: underline;
  text-decoration-color: var(--color-text-link-decoration-hover-kui2t9, currentColor);
}
.awsui_link_4c84z_13skl_145.awsui_variant-recovery_4c84z_13skl_213:not(#\9) {
  color: var(--awsui-style-color-default-esndbs, var(--color-text-link-default-rhby5q, #006ce0));
  font-weight: var(--font-link-button-weight-vslyg9, 700);
  letter-spacing: var(--font-link-button-letter-spacing-imtxwq, 0.005em);
  text-decoration-line: underline;
  text-decoration-color: var(--color-text-link-button-underline-z4wjnv, 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-5rbn3k, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_link_4c84z_13skl_145.awsui_variant-recovery_4c84z_13skl_213:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_link_4c84z_13skl_145.awsui_variant-recovery_4c84z_13skl_213:not(#\9), .awsui-mode-entering .awsui_link_4c84z_13skl_145.awsui_variant-recovery_4c84z_13skl_213:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_link_4c84z_13skl_145.awsui_variant-recovery_4c84z_13skl_213:not(#\9):hover {
  cursor: pointer;
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-link-hover-br6snu, #002b66));
}
.awsui_link_4c84z_13skl_145.awsui_variant-recovery_4c84z_13skl_213:not(#\9):focus {
  outline: none;
}
.awsui_link_4c84z_13skl_145.awsui_variant-recovery_4c84z_13skl_213:not(#\9):active {
  color: var(--awsui-style-color-active-esndbs, var(--color-text-link-hover-br6snu, #002b66));
}
.awsui_link_4c84z_13skl_145.awsui_variant-recovery_4c84z_13skl_213:not(#\9):active, .awsui_link_4c84z_13skl_145.awsui_variant-recovery_4c84z_13skl_213:not(#\9):focus, .awsui_link_4c84z_13skl_145.awsui_variant-recovery_4c84z_13skl_213:not(#\9):hover {
  text-decoration-line: underline;
  text-decoration-color: var(--color-text-link-button-underline-hover-cn3mqh, transparent);
}
.awsui_link_4c84z_13skl_145.awsui_variant-secondary_4c84z_13skl_246:not(#\9) {
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  color: var(--awsui-style-color-default-esndbs, var(--color-text-link-secondary-default-6ui3do, #006ce0));
  font-weight: var(--font-weight-link-secondary-2yfxrh, inherit);
  letter-spacing: normal;
  text-decoration-line: var(--font-decoration-line-link-secondary-yegojw, none);
  text-decoration-color: var(--color-text-link-secondary-decoration-default-icj4nn, 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-5rbn3k, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_link_4c84z_13skl_145.awsui_variant-secondary_4c84z_13skl_246:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_link_4c84z_13skl_145.awsui_variant-secondary_4c84z_13skl_246:not(#\9), .awsui-mode-entering .awsui_link_4c84z_13skl_145.awsui_variant-secondary_4c84z_13skl_246:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_link_4c84z_13skl_145.awsui_variant-secondary_4c84z_13skl_246:not(#\9):hover {
  cursor: pointer;
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-link-secondary-hover-oy8eob, #002b66));
}
.awsui_link_4c84z_13skl_145.awsui_variant-secondary_4c84z_13skl_246:not(#\9):focus {
  outline: none;
}
.awsui_link_4c84z_13skl_145.awsui_variant-secondary_4c84z_13skl_246:not(#\9):active {
  color: var(--awsui-style-color-active-esndbs, var(--color-text-link-secondary-hover-oy8eob, #002b66));
}
.awsui_link_4c84z_13skl_145.awsui_variant-secondary_4c84z_13skl_246:not(#\9):active, .awsui_link_4c84z_13skl_145.awsui_variant-secondary_4c84z_13skl_246:not(#\9):focus, .awsui_link_4c84z_13skl_145.awsui_variant-secondary_4c84z_13skl_246:not(#\9):hover {
  text-decoration-line: underline;
  text-decoration-color: var(--color-text-link-decoration-hover-kui2t9, currentColor);
}
.awsui_link_4c84z_13skl_145.awsui_variant-primary_4c84z_13skl_281:not(#\9) {
  color: var(--awsui-style-color-default-esndbs, var(--color-text-link-default-rhby5q, #006ce0));
  font-weight: inherit;
  letter-spacing: normal;
  text-decoration-line: underline;
  text-decoration-color: var(--color-text-link-decoration-default-0x8fhu, 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-5rbn3k, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_link_4c84z_13skl_145.awsui_variant-primary_4c84z_13skl_281:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_link_4c84z_13skl_145.awsui_variant-primary_4c84z_13skl_281:not(#\9), .awsui-mode-entering .awsui_link_4c84z_13skl_145.awsui_variant-primary_4c84z_13skl_281:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_link_4c84z_13skl_145.awsui_variant-primary_4c84z_13skl_281:not(#\9):hover {
  cursor: pointer;
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-link-hover-br6snu, #002b66));
}
.awsui_link_4c84z_13skl_145.awsui_variant-primary_4c84z_13skl_281:not(#\9):focus {
  outline: none;
}
.awsui_link_4c84z_13skl_145.awsui_variant-primary_4c84z_13skl_281:not(#\9):active {
  color: var(--awsui-style-color-active-esndbs, var(--color-text-link-hover-br6snu, #002b66));
}
.awsui_link_4c84z_13skl_145.awsui_variant-primary_4c84z_13skl_281:not(#\9):active, .awsui_link_4c84z_13skl_145.awsui_variant-primary_4c84z_13skl_281:not(#\9):focus, .awsui_link_4c84z_13skl_145.awsui_variant-primary_4c84z_13skl_281:not(#\9):hover {
  text-decoration-line: underline;
  text-decoration-color: var(--color-text-link-decoration-hover-kui2t9, currentColor);
}
.awsui_link_4c84z_13skl_145.awsui_variant-info_4c84z_13skl_314:not(#\9) {
  -webkit-font-smoothing: var(--font-smoothing-webkit-oemolo, antialiased);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-hbm0aq, grayscale);
  color: var(--awsui-style-color-default-esndbs, var(--color-text-link-info-default-mgpk1w, #006ce0));
  font-weight: var(--font-weight-bold-fo1afg, 700);
  letter-spacing: 0.005em;
  text-decoration-line: none;
  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-5rbn3k, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_link_4c84z_13skl_145.awsui_variant-info_4c84z_13skl_314:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_link_4c84z_13skl_145.awsui_variant-info_4c84z_13skl_314:not(#\9), .awsui-mode-entering .awsui_link_4c84z_13skl_145.awsui_variant-info_4c84z_13skl_314:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_link_4c84z_13skl_145.awsui_variant-info_4c84z_13skl_314:not(#\9):hover {
  cursor: pointer;
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-link-info-hover-os951m, #002b66));
}
.awsui_link_4c84z_13skl_145.awsui_variant-info_4c84z_13skl_314:not(#\9):focus {
  outline: none;
}
.awsui_link_4c84z_13skl_145.awsui_variant-info_4c84z_13skl_314:not(#\9):active {
  color: var(--awsui-style-color-active-esndbs, var(--color-text-link-info-hover-os951m, #002b66));
}
.awsui_link_4c84z_13skl_145.awsui_variant-info_4c84z_13skl_314:not(#\9):active, .awsui_link_4c84z_13skl_145.awsui_variant-info_4c84z_13skl_314:not(#\9):focus, .awsui_link_4c84z_13skl_145.awsui_variant-info_4c84z_13skl_314:not(#\9):hover {
  text-decoration-line: underline;
  text-decoration-color: var(--color-text-link-button-underline-hover-cn3mqh, transparent);
}
.awsui_link_4c84z_13skl_145.awsui_variant-value-large_4c84z_13skl_349:not(#\9) {
  color: var(--awsui-style-color-default-esndbs, var(--color-text-link-default-rhby5q, #006ce0));
  font-weight: var(--font-weight-display-l-h5zsi8, 700);
  text-decoration-line: underline;
  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-5rbn3k, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_link_4c84z_13skl_145.awsui_variant-value-large_4c84z_13skl_349:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_link_4c84z_13skl_145.awsui_variant-value-large_4c84z_13skl_349:not(#\9), .awsui-mode-entering .awsui_link_4c84z_13skl_145.awsui_variant-value-large_4c84z_13skl_349:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_link_4c84z_13skl_145.awsui_variant-value-large_4c84z_13skl_349:not(#\9):hover {
  cursor: pointer;
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-link-hover-br6snu, #002b66));
}
.awsui_link_4c84z_13skl_145.awsui_variant-value-large_4c84z_13skl_349:not(#\9):focus {
  outline: none;
}
.awsui_link_4c84z_13skl_145.awsui_variant-value-large_4c84z_13skl_349:not(#\9):active {
  color: var(--awsui-style-color-active-esndbs, var(--color-text-link-hover-br6snu, #002b66));
}
.awsui_link_4c84z_13skl_145.awsui_variant-value-large_4c84z_13skl_349:not(#\9):active, .awsui_link_4c84z_13skl_145.awsui_variant-value-large_4c84z_13skl_349:not(#\9):focus, .awsui_link_4c84z_13skl_145.awsui_variant-value-large_4c84z_13skl_349:not(#\9):hover {
  text-decoration-line: underline;
  text-decoration-color: currentColor;
}
.awsui_link_4c84z_13skl_145.awsui_variant-top-navigation_4c84z_13skl_381:not(#\9) {
  -webkit-font-smoothing: var(--font-smoothing-webkit-oemolo, antialiased);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-hbm0aq, grayscale);
  color: var(--awsui-style-color-default-esndbs, var(--color-text-interactive-default-1o1pl2, #424650));
  font-weight: var(--font-weight-bold-fo1afg, 700);
  letter-spacing: 0.005em;
  text-decoration-line: none;
  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-5rbn3k, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_link_4c84z_13skl_145.awsui_variant-top-navigation_4c84z_13skl_381:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_link_4c84z_13skl_145.awsui_variant-top-navigation_4c84z_13skl_381:not(#\9), .awsui-mode-entering .awsui_link_4c84z_13skl_145.awsui_variant-top-navigation_4c84z_13skl_381:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_link_4c84z_13skl_145.awsui_variant-top-navigation_4c84z_13skl_381:not(#\9):hover {
  cursor: pointer;
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-interactive-hover-j5y3wx, #0f141a));
}
.awsui_link_4c84z_13skl_145.awsui_variant-top-navigation_4c84z_13skl_381:not(#\9):focus {
  outline: none;
}
.awsui_link_4c84z_13skl_145.awsui_variant-top-navigation_4c84z_13skl_381:not(#\9):active {
  color: var(--awsui-style-color-active-esndbs, var(--color-text-interactive-active-fedaa8, #0f141a));
}
.awsui_link_4c84z_13skl_145.awsui_variant-top-navigation_4c84z_13skl_381:not(#\9):active, .awsui_link_4c84z_13skl_145.awsui_variant-top-navigation_4c84z_13skl_381:not(#\9):focus, .awsui_link_4c84z_13skl_145.awsui_variant-top-navigation_4c84z_13skl_381:not(#\9):hover {
  text-decoration-line: underline;
  text-decoration-color: transparent;
}
.awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9) {
  -webkit-font-smoothing: var(--font-smoothing-webkit-oemolo, antialiased);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-hbm0aq, grayscale);
  color: var(--awsui-style-color-default-esndbs, var(--color-text-link-button-normal-default-vc8ids, #006ce0));
  font-weight: var(--font-weight-bold-fo1afg, 700);
  letter-spacing: var(--font-button-letter-spacing-ufowe3, 0.005em);
  text-decoration-line: none;
  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-5rbn3k, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9), .awsui-mode-entering .awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9):hover {
  cursor: pointer;
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-link-button-normal-hover-xk6kwz, #002b66));
}
.awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9):focus {
  outline: none;
}
.awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9):active {
  color: var(--awsui-style-color-active-esndbs, var(--color-text-link-button-normal-active-f0yaqx, #002b66));
}
.awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9):active, .awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9):focus, .awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9):hover {
  text-decoration-line: underline;
  text-decoration-color: transparent;
}
.awsui-one-theme .awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9) {
  color: var(--awsui-style-color-default-esndbs, var(--color-text-link-default-rhby5q, #006ce0));
  font-weight: inherit;
  letter-spacing: normal;
  text-decoration-line: underline;
  text-decoration-color: var(--color-text-link-decoration-default-0x8fhu, 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-5rbn3k, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui-one-theme .awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui-one-theme .awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9), .awsui-mode-entering .awsui-one-theme .awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9) {
  animation: none;
  transition: none;
}
.awsui-one-theme .awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9):hover {
  cursor: pointer;
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-link-hover-br6snu, #002b66));
}
.awsui-one-theme .awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9):focus {
  outline: none;
}
.awsui-one-theme .awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9):active {
  color: var(--awsui-style-color-active-esndbs, var(--color-text-link-hover-br6snu, #002b66));
}
.awsui-one-theme .awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9):active, .awsui-one-theme .awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9):focus, .awsui-one-theme .awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9):hover {
  text-decoration-line: underline;
  text-decoration-color: var(--color-text-link-decoration-hover-kui2t9, currentColor);
}
.awsui-one-theme .awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416:not(#\9) {
  font-weight: inherit;
  letter-spacing: normal;
}
.awsui-one-theme .awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416.awsui_color-inverted_4c84z_13skl_488:not(#\9) {
  color: var(--color-text-link-inverted-default-n9ytl0, #f9f9fa);
  text-decoration-color: currentColor;
}
.awsui-one-theme .awsui_link_4c84z_13skl_145.awsui_button_4c84z_13skl_416.awsui_color-inverted_4c84z_13skl_488:not(#\9):hover {
  color: var(--color-text-link-inverted-hover-b4wg6a, #ffffff);
}
.awsui_link_4c84z_13skl_145.awsui_color-inverted_4c84z_13skl_488:not(#\9) {
  color: var(--color-text-link-inverted-default-n9ytl0, #f9f9fa);
}
.awsui-one-theme .awsui_link_4c84z_13skl_145.awsui_color-inverted_4c84z_13skl_488:not(#\9) {
  --awsui-style-focus-ring-box-shadow-esndbs: 0 0 0 var(--awsui-style-focus-ring-border-width-esndbs, var(--border-link-focus-ring-shadow-spread-39uvxr, 2px)) var(--awsui-style-focus-ring-border-color-esndbs, currentColor);
}
.awsui_link_4c84z_13skl_145.awsui_color-inverted_4c84z_13skl_488:not(#\9):not(.awsui_button_4c84z_13skl_416) {
  text-decoration-line: underline;
  text-decoration-color: currentColor;
}
.awsui_link_4c84z_13skl_145.awsui_color-inverted_4c84z_13skl_488:not(#\9):hover {
  color: var(--color-text-link-inverted-hover-b4wg6a, #ffffff);
}
body[data-awsui-focus-visible=true] .awsui_link_4c84z_13skl_145:not(#\9):focus {
  outline: thin dotted;
  outline: var(--border-link-focus-ring-outline-1p0hnu, 0);
  outline-offset: 2px;
  outline-color: var(--awsui-style-focus-ring-border-color-esndbs, var(--color-border-item-focused-ditkrb, #006ce0));
  border-start-start-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  border-start-end-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  border-end-start-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  border-end-end-radius: var(--awsui-style-focus-ring-border-radius-esndbs, var(--border-radius-control-default-focus-ring-1uabki, 4px));
  box-shadow: var(--awsui-style-focus-ring-box-shadow-esndbs);
}
.awsui_link_4c84z_13skl_145.awsui_font-size-body-s_4c84z_13skl_519:not(#\9) {
  font-size: var(--font-size-body-s-smc8cv, 12px);
  line-height: var(--line-height-body-s-nu5hx1, 16px);
  letter-spacing: var(--letter-spacing-body-s-gq78ok, 0.005em);
  text-underline-offset: 0.3em;
  text-decoration-thickness: var(--font-decoration-thickness-link-uesuo7, 1px);
  text-decoration-style: var(--font-decoration-style-link-pk2xmp, solid);
}
.awsui_link_4c84z_13skl_145.awsui_font-size-body-m_4c84z_13skl_527:not(#\9) {
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  text-underline-offset: 0.25em;
  text-decoration-thickness: var(--font-decoration-thickness-link-uesuo7, 1px);
  text-decoration-style: var(--font-decoration-style-link-pk2xmp, solid);
}
.awsui_link_4c84z_13skl_145.awsui_font-size-heading-xs_4c84z_13skl_534:not(#\9) {
  font-size: var(--font-size-heading-xs-j8yzxv, 14px);
  line-height: var(--line-height-heading-xs-q9j004, 18px);
  letter-spacing: var(--letter-spacing-heading-xs-fgog7a, normal);
  text-underline-offset: 0.25em;
  text-decoration-thickness: var(--font-decoration-thickness-link-uesuo7, 1px);
  text-decoration-style: var(--font-decoration-style-link-pk2xmp, solid);
}
.awsui_link_4c84z_13skl_145.awsui_font-size-heading-s_4c84z_13skl_542:not(#\9) {
  font-size: var(--font-size-heading-s-zp08en, 16px);
  line-height: var(--line-height-heading-s-hmi4vc, 20px);
  letter-spacing: var(--letter-spacing-heading-s-4st9ep, -0.005em);
  text-underline-offset: 0.3em;
  text-decoration-thickness: var(--font-decoration-thickness-link-uesuo7, 1px);
  text-decoration-style: var(--font-decoration-style-link-pk2xmp, solid);
}
.awsui_link_4c84z_13skl_145.awsui_font-size-heading-m_4c84z_13skl_550:not(#\9) {
  font-size: var(--font-size-heading-m-170yiy, 18px);
  line-height: var(--line-height-heading-m-uoaqdh, 22px);
  letter-spacing: var(--letter-spacing-heading-m-29ewnk, -0.01em);
  text-underline-offset: 0.25em;
  text-decoration-thickness: var(--font-decoration-thickness-link-uesuo7, 1px);
  text-decoration-style: var(--font-decoration-style-link-pk2xmp, solid);
}
.awsui_link_4c84z_13skl_145.awsui_font-size-heading-l_4c84z_13skl_558:not(#\9) {
  font-size: var(--font-size-heading-l-vnacx6, 20px);
  line-height: var(--line-height-heading-l-mg5bx6, 24px);
  letter-spacing: var(--letter-spacing-heading-l-5v6ibv, -0.015em);
  text-underline-offset: 0.25em;
  text-decoration-thickness: var(--font-decoration-thickness-link-uesuo7, 1px);
  text-decoration-style: var(--font-decoration-style-link-pk2xmp, solid);
}
.awsui_link_4c84z_13skl_145.awsui_font-size-heading-xl_4c84z_13skl_566:not(#\9) {
  font-size: var(--font-size-heading-xl-wvkbur, 24px);
  line-height: var(--line-height-heading-xl-hko6p0, 30px);
  letter-spacing: var(--letter-spacing-heading-xl-ckkb6u, -0.02em);
  text-underline-offset: 0.25em;
  text-decoration-thickness: var(--font-decoration-thickness-link-uesuo7, 1px);
  text-decoration-style: var(--font-decoration-style-link-pk2xmp, solid);
}
.awsui_link_4c84z_13skl_145.awsui_font-size-display-l_4c84z_13skl_574:not(#\9) {
  font-size: var(--font-size-display-l-wa6woo, 42px);
  line-height: var(--line-height-display-l-vwanzp, 48px);
  letter-spacing: var(--letter-spacing-display-l-elyyxk, -0.03em);
  text-underline-offset: 0.25em;
  text-decoration-thickness: var(--font-decoration-thickness-link-display-l-6g5fyl, 2px);
  text-decoration-style: var(--font-decoration-style-link-pk2xmp, solid);
}
.awsui_link_4c84z_13skl_145.awsui_font-size-inherit_4c84z_13skl_582:not(#\9) {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-underline-offset: 0.25em;
  text-decoration-thickness: var(--font-decoration-thickness-link-uesuo7, 1px);
  text-decoration-style: var(--font-decoration-style-link-pk2xmp, solid);
}
.awsui_link_4c84z_13skl_145.awsui_in-inline-token_4c84z_13skl_590:not(#\9) {
  text-underline-offset: 0.15em;
}

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

.awsui_icon_4c84z_13skl_594: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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_root_vrgzu_14y7j_145:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  padding-block-start: var(--space-option-padding-vertical-d2srv9, 4px);
  padding-block-end: calc(var(--space-option-padding-vertical-d2srv9, 4px) + var(--space-xxxs-pajhad, 2px));
  padding-inline: var(--space-field-horizontal-0aq2ch, 12px);
  color: var(--color-text-dropdown-footer-ks7c04, #656871);
}
.awsui_root_vrgzu_14y7j_145 > .awsui_recovery_vrgzu_14y7j_180: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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_root_1afi9_1htgw_145:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
.awsui_root_1afi9_1htgw_145:not(#\9):not(.awsui_hidden_1afi9_1htgw_176) {
  border-block-start: var(--border-divider-list-width-tdfx1x, 1px) solid var(--color-border-dropdown-item-default-22wwob, #c6c6cd);
}
.awsui_root_1afi9_1htgw_145:not(#\9):not(.awsui_hidden_1afi9_1htgw_176).awsui_no-items_1afi9_1htgw_179 {
  border-block-start: var(--border-divider-list-width-tdfx1x, 1px) solid var(--color-border-dropdown-item-top-gp2d1p, transparent);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_options-list_19gcf_136n9_145:not(#\9) {
  padding-block: 0;
  padding-inline: 0;
  margin-block: 0;
  margin-inline: 0;
  outline: none;
  border-block: none;
  border-inline: none;
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open 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-block-size: 0;
  border-start-start-radius: var(--border-radius-dropdown-fgc2a1, 8px);
  border-start-end-radius: var(--border-radius-dropdown-fgc2a1, 8px);
  border-end-start-radius: var(--border-radius-dropdown-fgc2a1, 8px);
  border-end-end-radius: var(--border-radius-dropdown-fgc2a1, 8px);
  -webkit-user-select: none;
          user-select: none;
}
.awsui_options-list-embedded_19gcf_136n9_192:not(#\9) {
  border-start-start-radius: 0px;
  border-start-end-radius: 0px;
  border-end-start-radius: 0px;
  border-end-end-radius: 0px;
}

.awsui_decrease-block-margin_19gcf_136n9_199:not(#\9) {
  margin-block: -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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_input-adorned-container_2rhyz_mjr1b_145:not(#\9), .awsui_input_2rhyz_mjr1b_145:not(#\9) {
  background-color: var(--awsui-style-background-default-esndbs, var(--color-background-input-default-bz9w07, #ffffff));
  border-block: var(--border-width-field-2xc78x, 1px) solid var(--awsui-style-border-color-default-esndbs, var(--color-border-input-default-f3bzwh, #8c8c94));
  border-inline: var(--border-width-field-2xc78x, 1px) solid var(--awsui-style-border-color-default-esndbs, var(--color-border-input-default-f3bzwh, #8c8c94));
  box-shadow: var(--awsui-style-box-shadow-default-esndbs);
}

.awsui_input-adorned-container_2rhyz_mjr1b_145:not(#\9):hover, .awsui_input_2rhyz_mjr1b_145:not(#\9):hover {
  border-color: var(--awsui-style-border-color-hover-esndbs, var(--awsui-style-border-color-default-esndbs, var(--color-border-input-default-f3bzwh, #8c8c94)));
  background-color: var(--awsui-style-background-hover-esndbs, var(--awsui-style-background-default-esndbs, var(--color-background-input-default-bz9w07, #ffffff)));
  box-shadow: var(--awsui-style-box-shadow-hover-esndbs, --awsui-style-box-shadow-default-esndbs);
}

.awsui_input-adorned-container_2rhyz_mjr1b_145.awsui_input-adorned-container-readonly_2rhyz_mjr1b_158:not(#\9), .awsui_input_2rhyz_mjr1b_145.awsui_input-readonly_2rhyz_mjr1b_158:not(#\9) {
  background-color: var(--awsui-style-background-readonly-esndbs, var(--awsui-style-background-default-esndbs, var(--color-background-input-default-bz9w07, #ffffff)));
  border-block: var(--border-width-field-2xc78x, 1px) solid var(--awsui-style-border-color-readonly-esndbs, var(--awsui-style-border-color-default-esndbs, var(--color-border-input-disabled-k518xl, #ebebf0)));
  border-inline: var(--border-width-field-2xc78x, 1px) solid var(--awsui-style-border-color-readonly-esndbs, var(--awsui-style-border-color-default-esndbs, var(--color-border-input-disabled-k518xl, #ebebf0)));
}

.awsui_input-adorned-container_2rhyz_mjr1b_145:not(#\9):focus-within, .awsui_input_2rhyz_mjr1b_145:not(#\9):focus {
  outline: 2px dotted transparent;
  border-block: var(--border-width-field-2xc78x, 1px) solid var(--awsui-style-border-color-focus-esndbs, var(--color-border-input-focused-9bkrxq, #006ce0));
  border-inline: var(--border-width-field-2xc78x, 1px) solid var(--awsui-style-border-color-focus-esndbs, var(--color-border-input-focused-9bkrxq, #006ce0));
  border-start-start-radius: var(--border-radius-input-7q0str, 8px);
  border-start-end-radius: var(--border-radius-input-7q0str, 8px);
  border-end-start-radius: var(--border-radius-input-7q0str, 8px);
  border-end-end-radius: var(--border-radius-input-7q0str, 8px);
  box-shadow: var(--awsui-style-box-shadow-focus-esndbs, 0 0 0 var(--border-control-focus-ring-shadow-spread-9mjajk, 1px) var(--color-border-item-focused-ditkrb, #006ce0));
}

.awsui_root_2rhyz_mjr1b_175:not(#\9) {
  /* used in test-utils for component to distinguish input from other input-like components, for example autosuggest */
}

.awsui_input_2rhyz_mjr1b_145:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  padding-block: var(--space-field-vertical-vm99qz, 5px);
  padding-inline: var(--space-field-horizontal-0aq2ch, 12px);
  color: var(--awsui-style-color-default-esndbs, var(--color-text-body-default-gtm97i, #0f141a));
  inline-size: 100%;
  cursor: text;
  box-sizing: border-box;
  border-start-start-radius: var(--border-radius-input-7q0str, 8px);
  border-start-end-radius: var(--border-radius-input-7q0str, 8px);
  border-end-start-radius: var(--border-radius-input-7q0str, 8px);
  border-end-end-radius: var(--border-radius-input-7q0str, 8px);
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  min-block-size: var(--size-vertical-input-p1d7xx, 32px);
}
.awsui_input_2rhyz_mjr1b_145:not(#\9):hover {
  color: var(--awsui-style-color-hover-esndbs, var(--awsui-style-border-color-default-esndbs, var(--color-text-body-default-gtm97i, #0f141a)));
}
.awsui_input_2rhyz_mjr1b_145.awsui_input-readonly_2rhyz_mjr1b_158:not(#\9) {
  color: var(--awsui-style-color-readonly-esndbs, var(--awsui-style-color-default-esndbs, var(--color-text-body-default-gtm97i, #0f141a)));
  box-shadow: var(--awsui-style-box-shadow-readonly-esndbs);
}
.awsui_input_2rhyz_mjr1b_145:not(#\9)::-webkit-input-placeholder {
  color: var(--awsui-style-placeholder-color-esndbs, var(--color-text-input-placeholder-i4i8dv, #656871));
  font-size: var(--awsui-style-placeholder-font-size-esndbs);
  font-style: var(--awsui-style-placeholder-font-style-esndbs, italic);
  font-weight: var(--awsui-style-placeholder-font-weight-esndbs);
  -webkit-user-select: none;
          user-select: none;
}
.awsui_input_2rhyz_mjr1b_145:not(#\9)::-moz-placeholder {
  color: var(--awsui-style-placeholder-color-esndbs, var(--color-text-input-placeholder-i4i8dv, #656871));
  font-size: var(--awsui-style-placeholder-font-size-esndbs);
  font-style: var(--awsui-style-placeholder-font-style-esndbs, italic);
  font-weight: var(--awsui-style-placeholder-font-weight-esndbs);
  opacity: 1;
}
.awsui_input_2rhyz_mjr1b_145:not(#\9):-moz-placeholder {
  color: var(--awsui-style-placeholder-color-esndbs, var(--color-text-input-placeholder-i4i8dv, #656871));
  font-size: var(--awsui-style-placeholder-font-size-esndbs);
  font-style: var(--awsui-style-placeholder-font-style-esndbs, italic);
  font-weight: var(--awsui-style-placeholder-font-weight-esndbs);
  opacity: 1;
}
.awsui_input_2rhyz_mjr1b_145:not(#\9):focus {
  color: var(--awsui-style-color-focus-esndbs, var(--color-text-body-default-gtm97i, #0f141a));
  background-color: var(--awsui-style-background-focus-esndbs, var(--color-background-input-default-bz9w07, #ffffff));
}
.awsui_input_2rhyz_mjr1b_145:not(#\9):disabled {
  background-color: var(--awsui-style-background-disabled-esndbs, var(--color-background-input-disabled-cecgeg, #ebebf0));
  border-block: var(--border-width-field-2xc78x, 1px) solid var(--awsui-style-border-color-disabled-esndbs, var(--color-border-input-disabled-k518xl, #ebebf0));
  border-inline: var(--border-width-field-2xc78x, 1px) solid var(--awsui-style-border-color-disabled-esndbs, var(--color-border-input-disabled-k518xl, #ebebf0));
  color: var(--awsui-style-color-disabled-esndbs, var(--color-text-input-disabled-as3mmb, #b4b4bb));
  cursor: default;
  box-shadow: var(--awsui-style-box-shadow-disabled-esndbs);
}
.awsui_input_2rhyz_mjr1b_145:not(#\9):disabled::-webkit-input-placeholder {
  color: var(--awsui-style-placeholder-color-esndbs, var(--color-text-input-placeholder-disabled-9zawsz, #b4b4bb));
  -webkit-user-select: none;
          user-select: none;
}
.awsui_input_2rhyz_mjr1b_145:not(#\9):disabled::-moz-placeholder {
  color: var(--awsui-style-placeholder-color-esndbs, var(--color-text-input-placeholder-disabled-9zawsz, #b4b4bb));
  opacity: 1;
}
.awsui_input_2rhyz_mjr1b_145:not(#\9):disabled:-moz-placeholder {
  color: var(--awsui-style-placeholder-color-esndbs, var(--color-text-input-placeholder-disabled-9zawsz, #b4b4bb));
  opacity: 1;
}
.awsui_input_2rhyz_mjr1b_145:not(#\9):invalid {
  box-shadow: none;
}
.awsui_input_2rhyz_mjr1b_145.awsui_input-invalid_2rhyz_mjr1b_278:not(#\9) {
  color: var(--awsui-style-color-default-esndbs, var(--color-text-status-error-ak9yp5, #db0000));
  border-color: var(--awsui-style-border-color-default-esndbs, var(--color-text-status-error-ak9yp5, #db0000));
  padding-inline-start: calc(var(--space-field-horizontal-0aq2ch, 12px) - (var(--border-invalid-width-3xd6e1, 8px) - var(--border-width-field-2xc78x, 1px)));
  border-inline-start-width: var(--border-invalid-width-3xd6e1, 8px);
}
.awsui_input_2rhyz_mjr1b_145.awsui_input-invalid_2rhyz_mjr1b_278:not(#\9):focus {
  box-shadow: var(--awsui-style-box-shadow-focus-esndbs, 0 0 0 var(--border-control-invalid-focus-ring-shadow-spread-9jjf96, 2px) var(--color-border-item-focused-ditkrb, #006ce0));
}
.awsui_input_2rhyz_mjr1b_145.awsui_input-invalid_2rhyz_mjr1b_278.awsui_input-has-icon-start_2rhyz_mjr1b_287:not(#\9) {
  padding-inline-start: calc(var(--space-field-icon-offset-ikwzwx, 36px) - (var(--border-invalid-width-3xd6e1, 8px) - var(--border-width-field-2xc78x, 1px)));
}
.awsui_input_2rhyz_mjr1b_145.awsui_input-warning_2rhyz_mjr1b_290:not(#\9) {
  color: var(--awsui-style-color-default-esndbs, var(--color-text-status-warning-avkj4w, #855900));
  border-color: var(--awsui-style-border-color-default-esndbs, var(--color-text-status-warning-avkj4w, #855900));
  padding-inline-start: calc(var(--space-field-horizontal-0aq2ch, 12px) - (var(--border-invalid-width-3xd6e1, 8px) - var(--border-width-field-2xc78x, 1px)));
  border-inline-start-width: var(--border-invalid-width-3xd6e1, 8px);
}
.awsui_input_2rhyz_mjr1b_145.awsui_input-warning_2rhyz_mjr1b_290:not(#\9):focus {
  box-shadow: var(--awsui-style-box-shadow-focus-esndbs, 0 0 0 var(--border-control-invalid-focus-ring-shadow-spread-9jjf96, 2px) var(--color-border-item-focused-ditkrb, #006ce0));
}
.awsui_input_2rhyz_mjr1b_145.awsui_input-warning_2rhyz_mjr1b_290.awsui_input-has-icon-start_2rhyz_mjr1b_287:not(#\9) {
  padding-inline-start: calc(var(--space-field-icon-offset-ikwzwx, 36px) - (var(--border-invalid-width-3xd6e1, 8px) - var(--border-width-field-2xc78x, 1px)));
}
.awsui_input_2rhyz_mjr1b_145.awsui_input-type-search_2rhyz_mjr1b_302:not(#\9) {
  box-sizing: border-box;
  -webkit-appearance: none;
}
.awsui_input_2rhyz_mjr1b_145.awsui_input-type-search_2rhyz_mjr1b_302:not(#\9)::-webkit-search-decoration {
  -webkit-appearance: none;
}
.awsui_input_2rhyz_mjr1b_145.awsui_input-type-search_2rhyz_mjr1b_302:not(#\9)::-webkit-search-cancel-button {
  display: none;
}
.awsui_input_2rhyz_mjr1b_145.awsui_input-has-icon-start_2rhyz_mjr1b_287:not(#\9) {
  padding-inline-start: var(--space-field-icon-offset-ikwzwx, 36px);
}
.awsui_input_2rhyz_mjr1b_145.awsui_input-has-icon-end_2rhyz_mjr1b_315:not(#\9) {
  padding-inline-end: var(--space-field-icon-offset-ikwzwx, 36px);
}
.awsui_input_2rhyz_mjr1b_145.awsui_input-has-no-border-radius_2rhyz_mjr1b_318:not(#\9) {
  border-start-start-radius: var(--border-radius-dropdown-fgc2a1, 8px);
  border-start-end-radius: var(--border-radius-dropdown-fgc2a1, 8px);
  border-end-start-radius: var(--border-radius-dropdown-fgc2a1, 8px);
  border-end-end-radius: var(--border-radius-dropdown-fgc2a1, 8px);
}

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

.awsui_input-icon-start_2rhyz_mjr1b_330:not(#\9) {
  position: absolute;
  pointer-events: none;
  inset-inline-start: var(--space-field-horizontal-0aq2ch, 12px);
  inset-block-start: calc(50% - var(--line-height-body-m-2mh3ke, 20px) / 2);
}

.awsui_input-icon-end_2rhyz_mjr1b_337:not(#\9) {
  position: absolute;
  inset-block-start: calc(calc(50% - var(--line-height-body-m-2mh3ke, 20px) / 2) - var(--space-xxxs-pajhad, 2px));
  inset-inline-end: calc(var(--space-field-horizontal-0aq2ch, 12px) - var(--space-xxs-hwfkai, 4px));
}

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

.awsui_inline-label-trigger-wrapper_2rhyz_mjr1b_347:not(#\9) {
  margin-block-start: -7px;
}
.awsui_inline-label-trigger-wrapper-full-width_2rhyz_mjr1b_350:not(#\9) {
  inline-size: 100%;
}

.awsui_inline-label-wrapper_2rhyz_mjr1b_354:not(#\9) {
  margin-block-start: calc(var(--space-scaled-xs-xwoogq, 8px) * -1);
}
.awsui_inline-label-wrapper-full-width_2rhyz_mjr1b_357:not(#\9) {
  inline-size: 100%;
}

.awsui_inline-label_2rhyz_mjr1b_347:not(#\9) {
  background: linear-gradient(to bottom, var(--color-background-layout-main-7z8vaj, #ffffff), var(--color-background-input-default-bz9w07, #ffffff));
  border-start-start-radius: 2px;
  border-start-end-radius: 2px;
  border-end-start-radius: 2px;
  border-end-end-radius: 2px;
  box-sizing: border-box;
  display: inline-block;
  color: var(--color-text-form-label-84uan1, #0f141a);
  font-weight: var(--font-display-label-weight-zavpeo, 700);
  font-size: var(--font-size-body-s-smc8cv, 12px);
  line-height: 14px;
  letter-spacing: var(--letter-spacing-body-s-gq78ok, 0.005em);
  position: relative;
  inset-inline-start: calc(var(--border-width-field-2xc78x, 1px) + var(--space-field-horizontal-0aq2ch, 12px) - var(--space-scaled-xxs-pfm1nx, 4px));
  margin-block-start: var(--space-scaled-xs-xwoogq, 8px);
  padding-block-end: 2px;
  padding-inline: var(--space-scaled-xxs-pfm1nx, 4px);
  max-inline-size: calc(100% - 2 * var(--space-field-horizontal-0aq2ch, 12px));
  z-index: 1;
}

.awsui_input-adorned-container_2rhyz_mjr1b_145:not(#\9) {
  display: flex;
  align-items: stretch;
  inline-size: 100%;
  box-sizing: border-box;
  color: var(--awsui-style-color-default-esndbs, var(--color-text-form-secondary-t0glp7, #656871));
  border-start-start-radius: var(--border-radius-input-7q0str, 8px);
  border-start-end-radius: var(--border-radius-input-7q0str, 8px);
  border-end-start-radius: var(--border-radius-input-7q0str, 8px);
  border-end-end-radius: var(--border-radius-input-7q0str, 8px);
  min-block-size: var(--size-vertical-input-p1d7xx, 32px);
}
.awsui_input-adorned-container_2rhyz_mjr1b_145:not(#\9):hover {
  color: var(--awsui-style-color-hover-esndbs, var(--awsui-style-color-default-esndbs, var(--color-text-form-secondary-t0glp7, #656871)));
}
.awsui_input-adorned-container_2rhyz_mjr1b_145.awsui_input-adorned-container-readonly_2rhyz_mjr1b_158:not(#\9) {
  color: var(--awsui-style-color-readonly-esndbs, var(--awsui-style-color-default-esndbs, var(--color-text-form-secondary-t0glp7, #656871)));
}
.awsui_input-adorned-container_2rhyz_mjr1b_145:not(#\9):focus-within {
  color: var(--awsui-style-color-focus-esndbs, var(--awsui-style-color-default-esndbs, var(--color-text-form-secondary-t0glp7, #656871)));
}
.awsui_input-adorned-container_2rhyz_mjr1b_145.awsui_input-adorned-container-invalid_2rhyz_mjr1b_404:not(#\9) {
  color: var(--awsui-style-color-default-esndbs, var(--color-text-status-error-ak9yp5, #db0000));
  border-color: var(--awsui-style-border-color-default-esndbs, var(--color-text-status-error-ak9yp5, #db0000));
  padding-inline-start: calc(var(--space-field-horizontal-0aq2ch, 12px) - (var(--border-invalid-width-3xd6e1, 8px) - var(--border-width-field-2xc78x, 1px)));
  border-inline-start-width: var(--border-invalid-width-3xd6e1, 8px);
  padding-inline-start: 0;
}
.awsui_input-adorned-container_2rhyz_mjr1b_145.awsui_input-adorned-container-invalid_2rhyz_mjr1b_404:not(#\9):focus {
  box-shadow: var(--awsui-style-box-shadow-focus-esndbs, 0 0 0 var(--border-control-invalid-focus-ring-shadow-spread-9jjf96, 2px) var(--color-border-item-focused-ditkrb, #006ce0));
}
.awsui_input-adorned-container_2rhyz_mjr1b_145.awsui_input-adorned-container-invalid_2rhyz_mjr1b_404:not(#\9):focus-within {
  box-shadow: var(--awsui-style-box-shadow-focus-esndbs, 0 0 0 var(--border-control-invalid-focus-ring-shadow-spread-9jjf96, 2px) var(--color-border-item-focused-ditkrb, #006ce0));
}
.awsui_input-adorned-container_2rhyz_mjr1b_145.awsui_input-adorned-container-warning_2rhyz_mjr1b_417:not(#\9) {
  color: var(--awsui-style-color-default-esndbs, var(--color-text-status-warning-avkj4w, #855900));
  border-color: var(--awsui-style-border-color-default-esndbs, var(--color-text-status-warning-avkj4w, #855900));
  padding-inline-start: calc(var(--space-field-horizontal-0aq2ch, 12px) - (var(--border-invalid-width-3xd6e1, 8px) - var(--border-width-field-2xc78x, 1px)));
  border-inline-start-width: var(--border-invalid-width-3xd6e1, 8px);
  padding-inline-start: 0;
}
.awsui_input-adorned-container_2rhyz_mjr1b_145.awsui_input-adorned-container-warning_2rhyz_mjr1b_417:not(#\9):focus {
  box-shadow: var(--awsui-style-box-shadow-focus-esndbs, 0 0 0 var(--border-control-invalid-focus-ring-shadow-spread-9jjf96, 2px) var(--color-border-item-focused-ditkrb, #006ce0));
}
.awsui_input-adorned-container_2rhyz_mjr1b_145.awsui_input-adorned-container-warning_2rhyz_mjr1b_417:not(#\9):focus-within {
  box-shadow: var(--awsui-style-box-shadow-focus-esndbs, 0 0 0 var(--border-control-invalid-focus-ring-shadow-spread-9jjf96, 2px) var(--color-border-item-focused-ditkrb, #006ce0));
}
.awsui_input-adorned-container_2rhyz_mjr1b_145.awsui_input-adorned-container-disabled_2rhyz_mjr1b_430:not(#\9) {
  background-color: var(--awsui-style-background-disabled-esndbs, var(--color-background-input-disabled-cecgeg, #ebebf0));
  border-block: var(--border-width-field-2xc78x, 1px) solid var(--awsui-style-border-color-disabled-esndbs, var(--color-border-input-disabled-k518xl, #ebebf0));
  border-inline: var(--border-width-field-2xc78x, 1px) solid var(--awsui-style-border-color-disabled-esndbs, var(--color-border-input-disabled-k518xl, #ebebf0));
  color: var(--awsui-style-color-disabled-esndbs, var(--color-text-input-disabled-as3mmb, #b4b4bb));
  cursor: default;
  box-shadow: var(--awsui-style-box-shadow-disabled-esndbs);
}

.awsui_input-prefix_2rhyz_mjr1b_439:not(#\9),
.awsui_input-suffix_2rhyz_mjr1b_440:not(#\9) {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  max-inline-size: calc(50% - 6rem);
  min-inline-size: 0;
  padding-block: var(--space-field-vertical-vm99qz, 5px);
  padding-inline: var(--space-field-horizontal-0aq2ch, 12px);
  color: inherit;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
}

.awsui_input-adornment-content_2rhyz_mjr1b_453:not(#\9) {
  display: block;
  flex: 1;
  min-inline-size: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.awsui_input-adornment-divider_2rhyz_mjr1b_462:not(#\9) {
  display: block;
  flex-shrink: 0;
  inline-size: var(--border-width-field-2xc78x, 1px);
  background-color: var(--color-border-divider-default-0de9c8, #c6c6cd);
  align-self: stretch;
}

.awsui_input-adorned_2rhyz_mjr1b_145:not(#\9) {
  flex: 1;
  min-inline-size: 0;
  border-block: none;
  border-inline: none;
  border-start-start-radius: 0;
  border-start-end-radius: 0;
  border-end-start-radius: 0;
  border-end-end-radius: 0;
  background-color: transparent;
  box-shadow: none;
  min-block-size: unset;
}
.awsui_input-adorned_2rhyz_mjr1b_145.awsui_input_2rhyz_mjr1b_145:not(#\9):focus {
  border-block: 0;
  border-inline: 0;
  box-shadow: none;
  outline: none;
}
.awsui_input-adorned_2rhyz_mjr1b_145:not(#\9):hover {
  border-color: transparent;
  background-color: transparent;
}
.awsui_input-adorned_2rhyz_mjr1b_145:not(#\9):disabled {
  background-color: transparent;
  border-color: transparent;
  border-block: 0;
  border-inline: 0;
}
.awsui_input-adorned_2rhyz_mjr1b_145.awsui_input-readonly_2rhyz_mjr1b_158:not(#\9) {
  background-color: transparent;
  border-color: transparent;
  border-block: 0;
  border-inline: 0;
}
.awsui_input-adorned_2rhyz_mjr1b_145.awsui_input-invalid_2rhyz_mjr1b_278:not(#\9), .awsui_input-adorned_2rhyz_mjr1b_145.awsui_input-warning_2rhyz_mjr1b_290:not(#\9) {
  padding-inline-start: var(--space-field-horizontal-0aq2ch, 12px);
  border-block: 0;
  border-inline: 0;
  border-inline-start-width: 0;
  box-shadow: none;
}
.awsui_input-adorned_2rhyz_mjr1b_145.awsui_input-invalid_2rhyz_mjr1b_278:not(#\9):focus, .awsui_input-adorned_2rhyz_mjr1b_145.awsui_input-warning_2rhyz_mjr1b_290:not(#\9):focus {
  border-block: 0;
  border-inline: 0;
  box-shadow: none;
  outline: none;
}

.awsui_input-adorned-container-invalid_2rhyz_mjr1b_404 > .awsui_input-prefix_2rhyz_mjr1b_439:not(#\9),
.awsui_input-adorned-container-invalid_2rhyz_mjr1b_404 > .awsui_input-adorned_2rhyz_mjr1b_145:not(#\9):first-child,
.awsui_input-adorned-container-warning_2rhyz_mjr1b_417 > .awsui_input-prefix_2rhyz_mjr1b_439:not(#\9),
.awsui_input-adorned-container-warning_2rhyz_mjr1b_417 > .awsui_input-adorned_2rhyz_mjr1b_145:not(#\9):first-child {
  padding-inline-start: calc(var(--space-field-horizontal-0aq2ch, 12px) - (var(--border-invalid-width-3xd6e1, 8px) - var(--border-width-field-2xc78x, 1px)));
}
.awsui_input-adorned-container-invalid_2rhyz_mjr1b_404 > .awsui_input-prefix_2rhyz_mjr1b_439:not(#\9),
.awsui_input-adorned-container-invalid_2rhyz_mjr1b_404 > .awsui_input-suffix_2rhyz_mjr1b_440:not(#\9),
.awsui_input-adorned-container-warning_2rhyz_mjr1b_417 > .awsui_input-prefix_2rhyz_mjr1b_439:not(#\9),
.awsui_input-adorned-container-warning_2rhyz_mjr1b_417 > .awsui_input-suffix_2rhyz_mjr1b_440:not(#\9) {
  max-inline-size: calc(50% - 6rem + (var(--border-invalid-width-3xd6e1, 8px) - var(--border-width-field-2xc78x, 1px)) / 2);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_button-dropdown_sne0l_1ihln_145:not(#\9) {
  display: inline-block;
}
.awsui_button-dropdown_sne0l_1ihln_145.awsui_full-width_sne0l_1ihln_148:not(#\9) {
  inline-size: 100%;
  display: block;
}

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

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

.awsui_header_sne0l_1ihln_190:not(#\9) {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding-block: var(--space-s-tvghoh, 12px);
  padding-inline: var(--space-l-2ud1p3, 20px);
  border-block-start: var(--border-width-dropdown-youcay, 2px) solid transparent;
  border-block-end: var(--border-width-dropdown-youcay, 2px) solid var(--color-border-dropdown-group-0ocu9j, #c6c6cd);
  border-inline: var(--border-width-dropdown-youcay, 2px) solid transparent;
}

.awsui_title_sne0l_1ihln_201:not(#\9),
.awsui_description_sne0l_1ihln_202:not(#\9) {
  color: var(--color-text-top-navigation-title-kiop92, #0f141a);
}

.awsui-one-theme .awsui_trigger-button_sne0l_1ihln_206:not(#\9) {
  display: flex;
  align-items: center;
}
.awsui_trigger-button_sne0l_1ihln_206.awsui_full-width_sne0l_1ihln_148:not(#\9) {
  display: grid;
  grid-template-columns: 1fr auto;
}
.awsui_trigger-button_sne0l_1ihln_206.awsui_full-width_sne0l_1ihln_148.awsui_loading_sne0l_1ihln_214:not(#\9) {
  grid-template-columns: auto 1fr auto;
}

.awsui_split-trigger-wrapper_sne0l_1ihln_218:not(#\9) {
  display: flex;
}
.awsui_split-trigger-wrapper_sne0l_1ihln_218 > .awsui_trigger-item_sne0l_1ihln_221 > .awsui_trigger-button_sne0l_1ihln_206:not(#\9):focus, .awsui_split-trigger-wrapper_sne0l_1ihln_218 > .awsui_trigger-item_sne0l_1ihln_221 > .awsui_trigger-button_sne0l_1ihln_206:not(#\9):hover {
  z-index: 1;
}
.awsui_split-trigger-wrapper_sne0l_1ihln_218 > .awsui_trigger-item_sne0l_1ihln_221:not(#\9):not(:last-child) > .awsui_trigger-button_sne0l_1ihln_206 {
  border-start-end-radius: 0;
  border-end-end-radius: 0;
  padding-inline-end: var(--space-m-dsumyt, 16px);
  margin-inline-end: var(--space-xxxs-pajhad, 2px);
}
.awsui_split-trigger-wrapper_sne0l_1ihln_218 > .awsui_trigger-item_sne0l_1ihln_221:not(#\9):not(:last-child) > .awsui_trigger-button_sne0l_1ihln_206.awsui_has-no-text_sne0l_1ihln_230 {
  padding-inline: var(--space-button-icon-only-horizontal-i85hxi, 6px);
}
.awsui_split-trigger-wrapper_sne0l_1ihln_218 > .awsui_trigger-item_sne0l_1ihln_221:not(#\9):not(:last-child) > .awsui_trigger-button_sne0l_1ihln_206.awsui_has-no-text_sne0l_1ihln_230.awsui_visual-refresh_sne0l_1ihln_233 {
  padding-inline-start: calc(var(--space-s-tvghoh, 12px) - 2px);
}
.awsui_split-trigger-wrapper_sne0l_1ihln_218 > .awsui_trigger-item_sne0l_1ihln_221:not(#\9):not(:first-child) > .awsui_trigger-button_sne0l_1ihln_206 {
  border-start-start-radius: 0;
  border-end-start-radius: 0;
  padding-inline: calc(var(--space-xs-ymlm0b, 8px) - 2px);
}
.awsui_split-trigger-wrapper_sne0l_1ihln_218 > .awsui_trigger-item_sne0l_1ihln_221:not(#\9):not(:first-child).awsui_visual-refresh_sne0l_1ihln_233 > .awsui_trigger-button_sne0l_1ihln_206 {
  padding-inline-end: calc(var(--space-s-tvghoh, 12px) - 2px);
}
.awsui-one-theme .awsui_split-trigger-wrapper_sne0l_1ihln_218 > .awsui_trigger-item_sne0l_1ihln_221:not(#\9):not(:first-child) > .awsui_trigger-button_sne0l_1ihln_206 {
  padding-inline: calc(var(--space-xs-ymlm0b, 8px) - 2px);
}
.awsui-one-theme .awsui_split-trigger-wrapper_sne0l_1ihln_218 > .awsui_trigger-item_sne0l_1ihln_221:not(#\9):not(:first-child).awsui_has-trigger-text_sne0l_1ihln_247 > .awsui_trigger-button_sne0l_1ihln_206 {
  padding-inline: calc(var(--space-xs-ymlm0b, 8px) + 2px);
}
.awsui_split-trigger-wrapper_sne0l_1ihln_218 > .awsui_trigger-item_sne0l_1ihln_221.awsui_variant-normal_sne0l_1ihln_250:not(#\9):not(:last-child) > .awsui_trigger-button_sne0l_1ihln_206 {
  margin-inline-end: 0;
}
.awsui_split-trigger-wrapper_sne0l_1ihln_218 > .awsui_trigger-item_sne0l_1ihln_221.awsui_variant-normal_sne0l_1ihln_250:not(#\9):not(:first-child) > .awsui_trigger-button_sne0l_1ihln_206 {
  margin-inline-start: calc(var(--border-width-button-jm0qg7, 2px) * -1);
}

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

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

.awsui_main-action-full-width_sne0l_1ihln_265:not(#\9) {
  flex: 1 1 0;
}

.awsui_main-action-trigger-full-width_sne0l_1ihln_269:not(#\9) {
  flex: 0 0 auto;
}

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

.awsui_test-utils-button-trigger_sne0l_1ihln_279: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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_header_16mm3_pjyjv_145:not(#\9) {
  position: relative;
  margin-block: 0;
  margin-inline: 0;
  color: var(--color-text-dropdown-group-label-8vygj0, #424650);
  border-block: var(--border-divider-list-width-tdfx1x, 1px) solid transparent;
  border-inline: var(--border-divider-list-width-tdfx1x, 1px) solid transparent;
  border-inline-width: 0;
  font-weight: var(--font-weight-bold-fo1afg, 700);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: calc(var(--space-option-padding-vertical-d2srv9, 4px) + var(--border-item-width-miijiw, 2px) - var(--border-divider-list-width-tdfx1x, 1px));
  padding-inline: calc(var(--space-button-horizontal-k0c786, 20px) + var(--border-item-width-miijiw, 2px));
  z-index: 1;
}
.awsui_header_16mm3_pjyjv_145.awsui_disabled_16mm3_pjyjv_161:not(#\9) {
  color: var(--color-text-dropdown-item-disabled-pl4fy2, #b4b4bb);
  cursor: default;
}
.awsui_header_16mm3_pjyjv_145.awsui_no-content-styling_16mm3_pjyjv_165:not(#\9) {
  padding-block: calc(var(--border-item-width-miijiw, 2px) - var(--border-divider-list-width-tdfx1x, 1px));
  padding-inline: var(--border-item-width-miijiw, 2px);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  color: inherit;
}
.awsui_header_16mm3_pjyjv_145.awsui_expandable-header_16mm3_pjyjv_171:not(#\9) {
  border-block-start-color: var(--color-border-dropdown-group-0ocu9j, #c6c6cd);
  border-block-end-color: var(--color-border-dropdown-group-0ocu9j, #c6c6cd);
  cursor: pointer;
}
.awsui_header_16mm3_pjyjv_145.awsui_expandable-header_16mm3_pjyjv_171.awsui_disabled_16mm3_pjyjv_161:not(#\9) {
  cursor: default;
}
.awsui_header_16mm3_pjyjv_145.awsui_expandable-header_16mm3_pjyjv_171:not(#\9):focus {
  outline: none;
}
.awsui_header_16mm3_pjyjv_145.awsui_expandable-header_16mm3_pjyjv_171.awsui_rolled-down_16mm3_pjyjv_182:not(#\9) {
  border-block-end-color: transparent;
}
.awsui_header_16mm3_pjyjv_145.awsui_expandable-header_16mm3_pjyjv_171.awsui_highlighted_16mm3_pjyjv_185:not(#\9) {
  background-color: var(--color-background-dropdown-item-hover-wyujnt, #f3f3f7);
  color: var(--color-text-dropdown-item-highlighted-q6vxih, #0f141a);
  padding-block: var(--space-option-padding-vertical-d2srv9, 4px);
  padding-inline: var(--space-button-horizontal-k0c786, 20px);
  border-block: var(--border-item-width-miijiw, 2px) solid var(--color-border-dropdown-item-hover-07ng6s, #8c8c94);
  border-inline: var(--border-item-width-miijiw, 2px) solid var(--color-border-dropdown-item-hover-07ng6s, #8c8c94);
  border-start-start-radius: var(--border-radius-item-iwaia5, 8px);
  border-start-end-radius: var(--border-radius-item-iwaia5, 8px);
  border-end-start-radius: var(--border-radius-item-iwaia5, 8px);
  border-end-end-radius: var(--border-radius-item-iwaia5, 8px);
  z-index: 2;
}
.awsui_header_16mm3_pjyjv_145.awsui_expandable-header_16mm3_pjyjv_171.awsui_highlighted_16mm3_pjyjv_185.awsui_no-content-styling_16mm3_pjyjv_165:not(#\9) {
  padding-block: 0;
  padding-inline: 0;
  color: inherit;
}
.awsui_header_16mm3_pjyjv_145.awsui_expandable-header_16mm3_pjyjv_171.awsui_highlighted_16mm3_pjyjv_185.awsui_disabled_16mm3_pjyjv_161:not(#\9) {
  background-color: var(--color-background-dropdown-item-dimmed-dhho03, transparent);
  border-color: var(--color-border-dropdown-item-dimmed-hover-ga9sch, #8c8c94);
  color: var(--color-text-dropdown-item-dimmed-iy2k20, #b4b4bb);
}
.awsui_header_16mm3_pjyjv_145.awsui_expandable-header_16mm3_pjyjv_171.awsui_highlighted_16mm3_pjyjv_185.awsui_is-focused_16mm3_pjyjv_208:not(#\9) {
  border-color: var(--color-border-dropdown-item-focused-k9miqq, #424650);
}
.awsui_header_16mm3_pjyjv_145.awsui_expandable-header_16mm3_pjyjv_171.awsui_highlighted_16mm3_pjyjv_185.awsui_is-focused_16mm3_pjyjv_208:not(#\9):not(.awsui_visual-refresh_16mm3_pjyjv_211) {
  box-shadow: inset 0 0 0 var(--border-control-focus-ring-shadow-spread-9mjajk, 1px) var(--color-border-item-focused-ditkrb, #006ce0);
}

.awsui_category_16mm3_pjyjv_215:not(#\9) {
  list-style: none;
  margin-block-start: calc(-1 * var(--border-divider-list-width-tdfx1x, 1px));
  padding-block: 0;
  padding-inline: 0;
}
.awsui_category_16mm3_pjyjv_215:not(#\9):first-child {
  margin-block-start: 0;
}
.awsui_category_16mm3_pjyjv_215.awsui_expandable_16mm3_pjyjv_171:not(#\9) {
  border-block-start: 0;
}
.awsui_category_16mm3_pjyjv_215:not(#\9):last-child {
  border-block-end: none;
}
.awsui_category_16mm3_pjyjv_215.awsui_variant-navigation_16mm3_pjyjv_230:not(#\9) {
  padding-block-start: var(--space-xxs-hwfkai, 4px);
}
.awsui_category_16mm3_pjyjv_215.awsui_variant-navigation_16mm3_pjyjv_230.awsui_expandable_16mm3_pjyjv_171:not(#\9) {
  padding-block-start: 0;
}

.awsui_expand-icon_16mm3_pjyjv_237:not(#\9) {
  position: relative;
  inset-inline-end: calc(-1 * var(--space-s-tvghoh, 12px));
  inline-size: var(--space-m-dsumyt, 16px);
  display: inline-block;
  margin-inline-start: auto;
  transition: transform var(--motion-duration-rotate-180-cxi9g7, 135ms) var(--motion-easing-rotate-180-7a58rc, cubic-bezier(0.165, 0.84, 0.44, 1));
}
.awsui-one-theme .awsui_expand-icon_16mm3_pjyjv_237:not(#\9) {
  inset-inline-end: calc(-1 * var(--space-xs-ymlm0b, 8px));
  inline-size: var(--space-s-tvghoh, 12px);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_expand-icon_16mm3_pjyjv_237:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_expand-icon_16mm3_pjyjv_237:not(#\9), .awsui-mode-entering .awsui_expand-icon_16mm3_pjyjv_237:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_expand-icon-up_16mm3_pjyjv_259:not(#\9) {
  transform: rotate(-180deg);
}
.awsui_expand-icon-right_16mm3_pjyjv_262:not(#\9) {
  transform: rotate(-90deg);
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
}
.awsui_expand-icon-right_16mm3_pjyjv_262:not(#\9):dir(rtl) {
  transform: rotate(90deg);
}

.awsui_items-list-container_16mm3_pjyjv_270:not(#\9) {
  padding-block: 0;
  padding-inline: 0;
  margin-block-start: -1px;
  margin-block-end: 0;
  margin-inline: 0;
  overflow-y: auto;
}

.awsui_in-dropdown_16mm3_pjyjv_279:not(#\9) {
  margin-block-end: -1px;
}

.awsui_icon-wrapper_16mm3_pjyjv_283:not(#\9) {
  margin-inline-end: var(--space-xxs-hwfkai, 4px);
}

.awsui_header-content_16mm3_pjyjv_287:not(#\9) {
  display: flex;
  align-items: 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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_root_14cnr_pct0y_145:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open 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_pct0y_145 > .awsui_trigger_14cnr_pct0y_179:not(#\9) {
  display: inline;
}
.awsui_root_14cnr_pct0y_145 > .awsui_dropdown_14cnr_pct0y_182:not(#\9) {
  position: static;
  -webkit-user-select: none;
          user-select: none;
  background-color: var(--color-background-dropdown-item-default-lzrka9, #ffffff);
  outline: none;
  border-block-start: none;
  border-block-end: none;
  display: flex;
  flex-direction: column;
  inline-size: 100%;
}
.awsui_root_14cnr_pct0y_145 > .awsui_dropdown_14cnr_pct0y_182.awsui_nowrap_14cnr_pct0y_193:not(#\9) {
  white-space: nowrap;
}
.awsui_root_14cnr_pct0y_145 > .awsui_dropdown_14cnr_pct0y_182.awsui_open_14cnr_pct0y_196: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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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_option_1p2cx_1lj30_153:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  display: flex;
  align-items: flex-start;
  inline-size: 100%;
  min-inline-size: 0;
  box-sizing: border-box;
  color: inherit;
}
.awsui_option_1p2cx_1lj30_153:not(#\9):not(.awsui_disabled_1p2cx_1lj30_190) {
  cursor: inherit;
}
.awsui_option_1p2cx_1lj30_153.awsui_parent_1p2cx_1lj30_193:not(#\9) {
  font-weight: var(--font-weight-bold-fo1afg, 700);
}
.awsui_option_1p2cx_1lj30_153.awsui_parent_1p2cx_1lj30_193:not(#\9):not(.awsui_disabled_1p2cx_1lj30_190):not(.awsui_highlighted_1p2cx_1lj30_196) {
  color: var(--color-text-dropdown-group-label-8vygj0, #424650);
}

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

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

.awsui_label_1p2cx_1lj30_207:not(#\9),
.awsui_tag_1p2cx_1lj30_214:not(#\9),
.awsui_label-tag_1p2cx_1lj30_215:not(#\9) {
  min-inline-size: 0;
  word-break: break-word;
}

.awsui_label_1p2cx_1lj30_207:not(#\9),
.awsui_tag_1p2cx_1lj30_214:not(#\9) {
  flex-wrap: wrap;
}

.awsui_label-prefix_1p2cx_1lj30_225:not(#\9) {
  font-weight: var(--font-weight-bold-fo1afg, 700);
}

.awsui_label-tag_1p2cx_1lj30_215:not(#\9) {
  padding-inline-start: var(--space-s-tvghoh, 12px);
  flex: auto;
  text-align: end;
}
.awsui_label-tag_1p2cx_1lj30_215:not(#\9):empty {
  display: none;
}

.awsui_tags_1p2cx_1lj30_238:not(#\9),
.awsui_description_1p2cx_1lj30_239:not(#\9) {
  font-size: var(--font-size-body-s-smc8cv, 12px);
  line-height: var(--line-height-body-s-nu5hx1, 16px);
  letter-spacing: var(--letter-spacing-body-s-gq78ok, 0.005em);
  color: var(--color-text-dropdown-item-secondary-77b2z6, #656871);
  flex-wrap: wrap;
}
.awsui_tags_1p2cx_1lj30_238.awsui_highlighted_1p2cx_1lj30_196:not(#\9),
.awsui_description_1p2cx_1lj30_239.awsui_highlighted_1p2cx_1lj30_196:not(#\9) {
  color: var(--color-text-dropdown-item-secondary-hover-rwb7km, #656871);
}
.awsui_tags_1p2cx_1lj30_238.awsui_selected_1p2cx_1lj30_250:not(#\9),
.awsui_description_1p2cx_1lj30_239.awsui_selected_1p2cx_1lj30_250:not(#\9) {
  color: var(--color-text-dropdown-item-secondary-77b2z6, #656871);
}

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

.awsui_tag_1p2cx_1lj30_214:not(#\9):not(:last-child) {
  padding-inline-end: var(--space-m-dsumyt, 16px);
}

.awsui_icon_1p2cx_1lj30_264:not(#\9) {
  padding-inline-end: var(--space-xs-ymlm0b, 8px);
  align-content: center;
  display: flex;
  flex-shrink: 0;
}

.awsui_filtering-match-highlight_1p2cx_1lj30_271:not(#\9) {
  background-color: var(--awsui-option-filter-match-background-esndbs, var(--color-background-dropdown-item-filter-match-8fnvh3, #f0fbff));
  color: var(--awsui-option-filter-match-color-esndbs, var(--color-text-dropdown-item-filter-match-73jeqe, #006ce0));
  font-weight: var(--font-weight-bold-fo1afg, 700);
}

.awsui_disabled_1p2cx_1lj30_190:not(#\9) {
  color: var(--color-text-dropdown-item-disabled-pl4fy2, #b4b4bb);
  pointer-events: none;
}
.awsui_disabled_1p2cx_1lj30_190 > .awsui_content_1p2cx_1lj30_200 > .awsui_tags_1p2cx_1lj30_238:not(#\9),
.awsui_disabled_1p2cx_1lj30_190 > .awsui_content_1p2cx_1lj30_200 > .awsui_description_1p2cx_1lj30_239:not(#\9) {
  color: currentColor;
}

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

.awsui_custom-content_1p2cx_1lj30_292:not(#\9) {
  inline-size: 100%;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_trigger-label_q2oen_w271r_5:not(#\9),
.awsui_menu-item_q2oen_w271r_6:not(#\9),
.awsui_main-action-label_q2oen_w271r_7:not(#\9) {
  /* used in analytics metadata */
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_item-element_93a1u_zo6fy_145:not(#\9) {
  position: relative;
  z-index: 1;
  border-block: var(--border-item-width-miijiw, 2px) solid transparent;
  border-inline: var(--border-item-width-miijiw, 2px) solid transparent;
  list-style: none;
  padding-block: 0;
  padding-inline: 0;
  color: var(--color-text-dropdown-item-default-zani00, #0f141a);
  margin-block-start: calc(-1 * var(--border-width-dropdown-youcay, 2px));
  cursor: pointer;
}
.awsui_item-element_93a1u_zo6fy_145.awsui_no-content-styling_93a1u_zo6fy_157:not(#\9) {
  padding-block: 0;
  padding-inline: 0;
  color: var(--color-text-dropdown-item-default-zani00, #0f141a);
}
.awsui_item-element_93a1u_zo6fy_145.awsui_disabled_93a1u_zo6fy_162:not(#\9) {
  cursor: default;
  color: var(--color-text-dropdown-item-disabled-pl4fy2, #b4b4bb);
}
.awsui_item-element_93a1u_zo6fy_145:not(#\9):first-child {
  margin-block-start: 0;
}
.awsui_item-element_93a1u_zo6fy_145.awsui_show-divider_93a1u_zo6fy_169:not(#\9) {
  border-block-end: var(--border-item-width-miijiw, 2px) solid var(--color-border-dropdown-group-0ocu9j, #c6c6cd);
}
.awsui_item-element_93a1u_zo6fy_145.awsui_highlighted_93a1u_zo6fy_172:not(#\9) {
  color: var(--color-text-dropdown-item-highlighted-q6vxih, #0f141a);
  z-index: 2;
  background-color: var(--color-background-dropdown-item-hover-wyujnt, #f3f3f7);
  border-color: var(--color-border-dropdown-item-hover-07ng6s, #8c8c94);
  border-start-start-radius: var(--border-radius-item-iwaia5, 8px);
  border-start-end-radius: var(--border-radius-item-iwaia5, 8px);
  border-end-start-radius: var(--border-radius-item-iwaia5, 8px);
  border-end-end-radius: var(--border-radius-item-iwaia5, 8px);
}
.awsui_item-element_93a1u_zo6fy_145.awsui_highlighted_93a1u_zo6fy_172.awsui_disabled_93a1u_zo6fy_162:not(#\9) {
  color: var(--color-text-dropdown-item-dimmed-iy2k20, #b4b4bb);
  border-color: var(--color-border-dropdown-item-dimmed-hover-ga9sch, #8c8c94);
  background-color: var(--color-background-dropdown-item-dimmed-dhho03, transparent);
}
.awsui_item-element_93a1u_zo6fy_145.awsui_highlighted_93a1u_zo6fy_172.awsui_is-focused_93a1u_zo6fy_187:not(#\9) {
  border-color: var(--color-border-dropdown-item-focused-k9miqq, #424650);
}
.awsui_item-element_93a1u_zo6fy_145.awsui_highlighted_93a1u_zo6fy_172.awsui_is-focused_93a1u_zo6fy_187:not(#\9):not(.awsui_visual-refresh_93a1u_zo6fy_190) {
  box-shadow: inset 0 0 0 var(--border-control-focus-ring-shadow-spread-9mjajk, 1px) var(--color-border-item-focused-ditkrb, #006ce0);
}

.awsui_menu-item_93a1u_zo6fy_194:not(#\9) {
  min-inline-size: 0;
  word-break: break-word;
  display: flex;
  align-items: flex-start;
  padding-block: var(--space-option-padding-vertical-d2srv9, 4px);
  padding-inline: var(--space-option-padding-horizontal-4taa4b, 20px);
  color: inherit;
  text-decoration: none;
  /* stylelint-disable selector-max-type */
  /* stylelint-enable selector-max-type */
}
.awsui_menu-item_93a1u_zo6fy_194.awsui_no-content-styling_93a1u_zo6fy_157:not(#\9) {
  padding-block: 0;
  padding-inline: 0;
  color: var(--color-text-dropdown-item-default-zani00, #0f141a);
}
.awsui_menu-item_93a1u_zo6fy_194.awsui_link-style_93a1u_zo6fy_211:not(#\9) {
  padding-block-end: calc(var(--space-option-padding-vertical-d2srv9, 4px) + var(--space-xxxs-pajhad, 2px));
  text-underline-offset: 0.25em;
  text-decoration-thickness: var(--font-decoration-thickness-link-uesuo7, 1px);
  text-decoration-style: var(--font-decoration-style-link-pk2xmp, solid);
  color: var(--awsui-style-color-default-esndbs, var(--color-text-link-default-rhby5q, #006ce0));
  font-weight: inherit;
  letter-spacing: normal;
  text-decoration-line: underline;
  text-decoration-color: var(--color-text-link-decoration-default-0x8fhu, 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-5rbn3k, 165ms);
}
@media (prefers-reduced-motion: reduce) {
  .awsui_menu-item_93a1u_zo6fy_194.awsui_link-style_93a1u_zo6fy_211:not(#\9) {
    animation: none;
    transition: none;
  }
}
.awsui-motion-disabled .awsui_menu-item_93a1u_zo6fy_194.awsui_link-style_93a1u_zo6fy_211:not(#\9), .awsui-mode-entering .awsui_menu-item_93a1u_zo6fy_194.awsui_link-style_93a1u_zo6fy_211:not(#\9) {
  animation: none;
  transition: none;
}
.awsui_menu-item_93a1u_zo6fy_194.awsui_link-style_93a1u_zo6fy_211:not(#\9):hover {
  cursor: pointer;
  color: var(--awsui-style-color-hover-esndbs, var(--color-text-link-hover-br6snu, #002b66));
}
.awsui_menu-item_93a1u_zo6fy_194.awsui_link-style_93a1u_zo6fy_211:not(#\9):focus {
  outline: none;
}
.awsui_menu-item_93a1u_zo6fy_194.awsui_link-style_93a1u_zo6fy_211:not(#\9):active {
  color: var(--awsui-style-color-active-esndbs, var(--color-text-link-hover-br6snu, #002b66));
}
.awsui_menu-item_93a1u_zo6fy_194.awsui_link-style_93a1u_zo6fy_211:not(#\9):active, .awsui_menu-item_93a1u_zo6fy_194.awsui_link-style_93a1u_zo6fy_211:not(#\9):focus, .awsui_menu-item_93a1u_zo6fy_194.awsui_link-style_93a1u_zo6fy_211:not(#\9):hover {
  text-decoration-line: underline;
  text-decoration-color: var(--color-text-link-decoration-hover-kui2t9, currentColor);
}
.awsui_menu-item_93a1u_zo6fy_194.awsui_link-style_93a1u_zo6fy_211.awsui_current-breadcrumb_93a1u_zo6fy_248:not(#\9) {
  font-weight: var(--font-weight-button-0eg20c, 700);
  -webkit-font-smoothing: var(--font-smoothing-webkit-oemolo, antialiased);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-hbm0aq, grayscale);
  color: var(--color-text-breadcrumb-current-mmrid5, #656871);
  font-weight: var(--font-weight-bold-fo1afg, 700);
  text-decoration: none;
}
.awsui_menu-item_93a1u_zo6fy_194.awsui_link-style_93a1u_zo6fy_211.awsui_link-style-highlighted_93a1u_zo6fy_256:not(#\9) {
  color: var(--color-text-link-hover-br6snu, #002b66);
}
.awsui_menu-item_93a1u_zo6fy_194:not(#\9):focus {
  outline: none;
}
.awsui_has-category-header_93a1u_zo6fy_262 > .awsui_menu-item_93a1u_zo6fy_194:not(#\9), .awsui_has-category-header_93a1u_zo6fy_262 > .awsui_item-tooltip-wrapper_93a1u_zo6fy_262 > .awsui_menu-item_93a1u_zo6fy_194:not(#\9), .awsui_has-category-header_93a1u_zo6fy_262:not(#\9):not(.awsui_has-checkmark_93a1u_zo6fy_262) > span > .awsui_menu-item_93a1u_zo6fy_194 {
  padding-inline-start: calc(var(--space-xs-ymlm0b, 8px) + var(--space-option-padding-horizontal-4taa4b, 20px));
}
.awsui_has-category-header_93a1u_zo6fy_262 > .awsui_menu-item_93a1u_zo6fy_194.awsui_no-content-styling_93a1u_zo6fy_157:not(#\9), .awsui_has-category-header_93a1u_zo6fy_262 > .awsui_item-tooltip-wrapper_93a1u_zo6fy_262 > .awsui_menu-item_93a1u_zo6fy_194.awsui_no-content-styling_93a1u_zo6fy_157:not(#\9), .awsui_has-category-header_93a1u_zo6fy_262:not(#\9):not(.awsui_has-checkmark_93a1u_zo6fy_262) > span > .awsui_menu-item_93a1u_zo6fy_194.awsui_no-content-styling_93a1u_zo6fy_157 {
  padding-inline-start: 0;
}

.awsui_icon_93a1u_zo6fy_269:not(#\9) {
  padding-inline-end: var(--space-xxs-hwfkai, 4px);
  flex-shrink: 0;
}
.awsui_icon_93a1u_zo6fy_269.awsui_checkmark_93a1u_zo6fy_273:not(#\9) {
  color: var(--color-item-selected-rz6ktw, #006ce0);
}
.awsui_icon_93a1u_zo6fy_269.awsui_disabled_93a1u_zo6fy_162:not(#\9) {
  color: var(--color-text-interactive-disabled-bhh1zo, #b4b4bb);
}

.awsui_external-icon_93a1u_zo6fy_280:not(#\9) {
  margin-inline-start: var(--space-xxs-hwfkai, 4px);
}

.awsui_content-wrapper_93a1u_zo6fy_284:not(#\9) {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.awsui_main-row_93a1u_zo6fy_290:not(#\9) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-s-tvghoh, 12px);
}

.awsui_label-tag_93a1u_zo6fy_297:not(#\9) {
  color: var(--color-text-body-default-gtm97i, #0f141a);
}
.awsui_label-tag_93a1u_zo6fy_297.awsui_disabled_93a1u_zo6fy_162:not(#\9) {
  color: var(--color-text-interactive-disabled-bhh1zo, #b4b4bb);
}

.awsui_secondary-text_93a1u_zo6fy_304:not(#\9) {
  font-size: var(--font-size-body-s-smc8cv, 12px);
  line-height: var(--line-height-body-s-nu5hx1, 16px);
  letter-spacing: var(--letter-spacing-body-s-gq78ok, 0.005em);
  color: var(--color-text-dropdown-item-secondary-77b2z6, #656871);
}
.awsui_secondary-text_93a1u_zo6fy_304.awsui_highlighted_93a1u_zo6fy_172:not(#\9) {
  color: var(--color-text-dropdown-item-highlighted-q6vxih, #0f141a);
}
.awsui_secondary-text_93a1u_zo6fy_304.awsui_disabled_93a1u_zo6fy_162:not(#\9) {
  color: var(--color-text-interactive-disabled-bhh1zo, #b4b4bb);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 */
.awsui_sticky-scrollbar_faqt8_1w2yb_181:not(#\9) {
  block-size: 15px;
  position: sticky;
  display: none;
  overflow-x: auto;
  overflow-y: hidden;
  inset-block-end: 0;
  inline-size: 100%;
}
.awsui_sticky-scrollbar_faqt8_1w2yb_181[data-stuck=false]:not(#\9) {
  clip-path: inset(-9999px 0 0 0 round var(--border-radius-container-nsfwmm, 16px));
}
.awsui_sticky-scrollbar-content_faqt8_1w2yb_193:not(#\9) {
  block-size: 15px;
}
.awsui_sticky-scrollbar-visible_faqt8_1w2yb_196:not(#\9) {
  display: block;
}
.awsui_sticky-scrollbar-native-invisible_faqt8_1w2yb_199:not(#\9) {
  margin-block-start: -15px;
}
.awsui_sticky-scrollbar-offset_faqt8_1w2yb_202:not(#\9) {
  z-index: 799;
}
.awsui_sticky-scrollbar-offset_faqt8_1w2yb_202:not(#\9):not(.awsui_is-visual-refresh_faqt8_1w2yb_205) {
  background-color: var(--color-background-container-content-78ljyf, #ffffff);
  block-size: 15px;
  margin-block-start: calc(-1 * var(--border-divider-section-width-uwo8my, 1px));
  border-block-start: var(--border-divider-section-width-uwo8my, 1px) solid var(--color-border-divider-default-0de9c8, #c6c6cd);
}
.awsui_sticky-scrollbar-offset_faqt8_1w2yb_202.awsui_is-visual-refresh_faqt8_1w2yb_205:not(#\9) {
  margin-block-start: -5px;
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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 @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
/* stylelint-enable @cloudscape-design/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
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
/*
 Copyright Amazon.com, Inc. or its affiliates. All 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_xgp22_189:not(#\9) {
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
  caption-side: top;
  cursor: auto;
  direction: inherit;
  empty-cells: show;
  font-family: serif;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  hyphens: none;
  letter-spacing: normal;
  list-style: disc outside none;
  tab-size: 8;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
  color: var(--color-text-body-default-gtm97i, #0f141a);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
  font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  cursor: inherit;
  display: flex;
  inline-size: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.awsui_root_2qdw9_xgp22_189.awsui_refresh_2qdw9_xgp22_225:not(#\9), .awsui_root_2qdw9_xgp22_189:not(#\9):not(.awsui_root-no-actions_2qdw9_xgp22_225) {
  row-gap: var(--space-scaled-xxs-pfm1nx, 4px);
}
.awsui_root-no-actions_2qdw9_xgp22_225.awsui_root-variant-h2_2qdw9_xgp22_228:not(#\9):not(.awsui_refresh_2qdw9_xgp22_225), .awsui_root-no-actions_2qdw9_xgp22_225.awsui_root-variant-h3_2qdw9_xgp22_228:not(#\9):not(.awsui_refresh_2qdw9_xgp22_225), .awsui_root-has-description_2qdw9_xgp22_228.awsui_root-variant-h2_2qdw9_xgp22_228:not(#\9):not(.awsui_refresh_2qdw9_xgp22_225), .awsui_root-has-description_2qdw9_xgp22_228.awsui_root-variant-h3_2qdw9_xgp22_228:not(#\9):not(.awsui_refresh_2qdw9_xgp22_225) {
  padding-block-end: var(--space-scaled-xxs-pfm1nx, 4px);
}
.awsui_root-no-actions_2qdw9_xgp22_225:not(#\9):not(.awsui_root-has-description_2qdw9_xgp22_228):not(.awsui_refresh_2qdw9_xgp22_225) {
  padding-block-end: calc(var(--space-scaled-xs-xwoogq, 8px) + var(--space-xxxs-pajhad, 2px));
}
.awsui_root-no-actions_2qdw9_xgp22_225.awsui_refresh_2qdw9_xgp22_225.awsui_root-variant-h2_2qdw9_xgp22_228:not(#\9), .awsui_root-no-actions_2qdw9_xgp22_225.awsui_refresh_2qdw9_xgp22_225.awsui_root-variant-h3_2qdw9_xgp22_228:not(#\9) {
  row-gap: var(--space-scaled-xxxs-oo06c7, 2px);
}
.awsui_root_2qdw9_xgp22_189.awsui_root-variant-h1_2qdw9_xgp22_237:not(#\9):not(.awsui_refresh_2qdw9_xgp22_225) {
  row-gap: var(--space-scaled-xxs-pfm1nx, 4px);
}
.awsui_root-no-actions_2qdw9_xgp22_225:not(#\9):not(.awsui_root-has-description_2qdw9_xgp22_228).awsui_refresh_2qdw9_xgp22_225.awsui_root-variant-h3_2qdw9_xgp22_228 {
  padding-block-end: var(--space-scaled-xs-xwoogq, 8px);
}
.awsui_root_2qdw9_xgp22_189.awsui_root-variant-h1_2qdw9_xgp22_237.awsui_root-has-description_2qdw9_xgp22_228:not(#\9):not(.awsui_refresh_2qdw9_xgp22_225) {
  padding-block-end: var(--space-scaled-2x-xxs-e79hr1, 4px);
}

.awsui_main_2qdw9_xgp22_247:not(#\9) {
  word-wrap: break-word;
  max-inline-size: 100%;
  display: flex;
  justify-content: space-between;
  inline-size: 100%;
  flex-wrap: wrap;
  column-gap: var(--space-xs-ymlm0b, 8px);
  row-gap: calc(var(--space-scaled-xxs-pfm1nx, 4px) + var(--space-scaled-xxxs-oo06c7, 2px));
}
.awsui_main_2qdw9_xgp22_247.awsui_no-wrap_2qdw9_xgp22_257:not(#\9) {
  flex-wrap: nowrap;
}
.awsui_main_2qdw9_xgp22_247.awsui_refresh_2qdw9_xgp22_225:not(#\9) {
  row-gap: var(--space-xxs-hwfkai, 4px);
}
.awsui_main-variant-h1_2qdw9_xgp22_263:not(#\9) {
  row-gap: var(--space-scaled-2x-xxs-e79hr1, 4px);
}

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

.awsui_actions_2qdw9_xgp22_271:not(#\9) {
  display: flex;
  align-items: flex-start;
  min-block-size: var(--size-vertical-input-p1d7xx, 32px);
}
.awsui_actions-centered_2qdw9_xgp22_276:not(#\9) {
  align-items: center;
}
.awsui_actions-variant-h1_2qdw9_xgp22_279.awsui_refresh_2qdw9_xgp22_225:not(#\9) {
  padding-block: calc((var(--line-height-heading-xl-hko6p0, 30px) - var(--size-vertical-input-p1d7xx, 32px)) / 2);
  padding-inline: 0;
}
.awsui_actions-variant-h2_2qdw9_xgp22_283.awsui_refresh_2qdw9_xgp22_225:not(#\9) {
  padding-block: calc((var(--line-height-heading-l-mg5bx6, 24px) - var(--size-vertical-input-p1d7xx, 32px)) / 2);
  padding-inline: 0;
}
.awsui_actions-variant-h3_2qdw9_xgp22_287.awsui_refresh_2qdw9_xgp22_225:not(#\9) {
  padding-block: calc((var(--line-height-heading-m-uoaqdh, 22px) - var(--size-vertical-input-p1d7xx, 32px)) / 2);
  padding-inline: 0;
}
.awsui_actions-variant-h1_2qdw9_xgp22_279:not(#\9):not(.awsui_refresh_2qdw9_xgp22_225) {
  padding-block: var(--space-scaled-xs-xwoogq, 8px);
  padding-inline: 0;
}
.awsui_actions-variant-h2_2qdw9_xgp22_283:not(#\9):not(.awsui_refresh_2qdw9_xgp22_225), .awsui_actions-variant-h3_2qdw9_xgp22_287:not(#\9):not(.awsui_refresh_2qdw9_xgp22_225) {
  padding-block: var(--space-scaled-xxs-pfm1nx, 4px);
  padding-inline: 0;
}
.awsui_root-has-description_2qdw9_xgp22_228 > .awsui_main_2qdw9_xgp22_247 > .awsui_actions_2qdw9_xgp22_271:not(#\9) {
  padding-block-end: 0;
}

.awsui_title_2qdw9_xgp22_303:not(#\9) {
  min-inline-size: 0;
  word-break: break-word;
  color: var(--color-text-heading-default-pn83b8, #0f141a);
}
.awsui_title-variant-h1_2qdw9_xgp22_308:not(#\9) {
  font-size: var(--font-size-heading-xl-wvkbur, 24px);
  padding-block-start: var(--space-scaled-2x-xxs-e79hr1, 4px);
}
.awsui_title-variant-h1_2qdw9_xgp22_308.awsui_refresh_2qdw9_xgp22_225:not(#\9) {
  padding-block-start: calc((var(--size-vertical-input-p1d7xx, 32px) - var(--line-height-heading-xl-hko6p0, 30px)) / 2);
}
.awsui_title-variant-h2_2qdw9_xgp22_315:not(#\9) {
  font-size: var(--font-size-heading-l-vnacx6, 20px);
}
.awsui_title-variant-h2_2qdw9_xgp22_315.awsui_refresh_2qdw9_xgp22_225:not(#\9) {
  padding-block-start: calc((var(--size-vertical-input-p1d7xx, 32px) - var(--line-height-heading-l-mg5bx6, 24px)) / 2);
}
.awsui_title-variant-h3_2qdw9_xgp22_321:not(#\9) {
  font-size: var(--font-size-heading-m-170yiy, 18px);
}
.awsui_title-variant-h3_2qdw9_xgp22_321.awsui_refresh_2qdw9_xgp22_225:not(#\9) {
  padding-block-start: calc((var(--size-vertical-input-p1d7xx, 32px) - var(--line-height-heading-m-uoaqdh, 22px)) / 2);
}
.awsui_title-variant-h2_2qdw9_xgp22_315:not(#\9):not(.awsui_refresh_2qdw9_xgp22_225), .awsui_title-variant-h3_2qdw9_xgp22_321:not(#\9):not(.awsui_refresh_2qdw9_xgp22_225) {
  padding-block-start: var(--space-scaled-xs-xwoogq, 8px);
}
.awsui_no-wrap_2qdw9_xgp22_257 > .awsui_title_2qdw9_xgp22_303:not(#\9):not(.awsui_refresh_2qdw9_xgp22_225) {
  padding-block-end: calc(var(--space-scaled-xxs-pfm1nx, 4px) + var(--space-scaled-xxxs-oo06c7, 2px));
}

.awsui-one-theme .awsui_title-variant-h2_2qdw9_xgp22_315.awsui_title-in-expandable-section_2qdw9_xgp22_334:not(#\9) {
  padding-block-start: calc(calc((var(--size-vertical-input-p1d7xx, 32px) - var(--line-height-heading-l-mg5bx6, 24px)) / 2) - 2 * var(--border-width-button-jm0qg7, 2px));
}

.awsui_root-no-actions_2qdw9_xgp22_225.awsui_root-has-description_2qdw9_xgp22_228 > .awsui_main_2qdw9_xgp22_247 > :not(#\9):not(.awsui_refresh_2qdw9_xgp22_225).awsui_title-variant-h2_2qdw9_xgp22_315, .awsui_root-no-actions_2qdw9_xgp22_225.awsui_root-has-description_2qdw9_xgp22_228 > .awsui_main_2qdw9_xgp22_247 > :not(#\9):not(.awsui_refresh_2qdw9_xgp22_225).awsui_title-variant-h3_2qdw9_xgp22_321 {
  padding-block-end: var(--space-scaled-xxs-pfm1nx, 4px);
}

.awsui_root-variant-h1_2qdw9_xgp22_237.awsui_root-no-actions_2qdw9_xgp22_225:not(#\9):not(.awsui_root-has-description_2qdw9_xgp22_228):not(.awsui_refresh_2qdw9_xgp22_225) {
  padding-block-end: var(--space-scaled-2x-xxs-e79hr1, 4px);
}

.awsui_virtual-space_2qdw9_xgp22_346:not(#\9) {
  position: absolute !important;
  inset-block-start: -9999px !important;
  inset-inline-start: -9999px !important;
}

.awsui_info_2qdw9_xgp22_352:not(#\9) {
  padding-inline-end: var(--space-s-tvghoh, 12px);
}

.awsui_description_2qdw9_xgp22_356:not(#\9) {
  margin-block: 0;
  margin-inline: 0;
  padding-block: 0;
  padding-inline: 0;
  color: var(--color-text-heading-secondary-su1acg, #424650);
}
.awsui_description-variant-h1_2qdw9_xgp22_363:not(#\9) {
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
}
.awsui_description-variant-h2_2qdw9_xgp22_367:not(#\9) {
  font-size: var(--font-header-h2-description-size-g2wws3, 14px);
  line-height: var(--font-header-h2-description-line-height-ts2s6o, 20px);
}
.awsui_description-variant-h2_2qdw9_xgp22_367:not(#\9):not(.awsui_refresh_2qdw9_xgp22_225) {
  padding-block-end: var(--space-scaled-xxs-pfm1nx, 4px);
}
.awsui_description-variant-h3_2qdw9_xgp22_374:not(#\9) {
  font-size: var(--font-size-body-m-a7nh2n, 14px);
  line-height: var(--line-height-body-m-2mh3ke, 20px);
}
.awsui_description-variant-h3_2qdw9_xgp22_374:not(#\9):not(.awsui_refresh_2qdw9_xgp22_225) {
  font-size: var(--font-size-body-s-smc8cv, 12px);
  line-height: var(--line-height-body-s-nu5hx1, 16px);
  letter-spacing: var(--letter-spacing-body-s-gq78ok, 0.005em);
  padding-block-end: var(--space-scaled-xxs-pfm1nx, 4px);
}

.awsui_heading_2qdw9_xgp22_385:not(#\9) {
  margin-block: 0;
  margin-inline: 0;
  display: inline;
  font-size: inherit;
  margin-inline-end: var(--space-xs-ymlm0b, 8px);
}
.awsui_heading_2qdw9_xgp22_385:not(#\9):only-child {
  margin-block: 0;
  margin-inline: 0;
}
.awsui_heading_2qdw9_xgp22_385:not(#\9):focus {
  outline: none;
}
body[data-awsui-focus-visible=true] .awsui_heading_2qdw9_xgp22_385:not(#\9):focus {
  outline: thin dotted;
  outline: var(--border-link-focus-ring-outline-1p0hnu, 0);
  outline-offset: 2px;
  outline-color: var(--color-border-item-focused-ditkrb, #006ce0);
  border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
  box-shadow: 0 0 0 var(--border-link-focus-ring-shadow-spread-39uvxr, 2px) var(--color-border-item-focused-ditkrb, #006ce0);
}
.awsui_heading-variant-h1_2qdw9_xgp22_410:not(#\9) {
  font-size: var(--font-size-heading-xl-wvkbur, 24px);
  line-height: var(--line-height-heading-xl-hko6p0, 30px);
  letter-spacing: var(--letter-spacing-heading-xl-ckkb6u, -0.02em);
}
.awsui_heading-variant-h2_2qdw9_xgp22_415:not(#\9) {
  font-size: var(--font-size-heading-l-vnacx6, 20px);
  line-height: var(--line-height-heading-l-mg5bx6, 24px);
  letter-spacing: var(--letter-spacing-heading-l-5v6ibv, -0.015em);
}
.awsui_heading-variant-h3_2qdw9_xgp22_420:not(#\9) {
  font-size: var(--font-size-heading-m-170yiy, 18px);
  line-height: var(--line-height-heading-m-uoaqdh, 22px);
  letter-spacing: var(--letter-spacing-heading-m-29ewnk, -0.01em);
}

.awsui_heading-text_2qdw9_xgp22_426:not(#\9) {
  /* used in test-utils */
}
.awsui_heading-text-variant-h1_2qdw9_xgp22_429:not(#\9) {
  font-family: var(--font-family-heading-ugphat, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  font-size: var(--font-size-heading-xl-wvkbur, 24px);
  line-height: var(--line-height-heading-xl-hko6p0, 30px);
  letter-spacing: var(--letter-spacing-heading-xl-ckkb6u, -0.02em);
  font-weight: var(--font-weight-heading-xl-u3m4we, 700);
  -webkit-font-smoothing: var(--font-smoothing-webkit-oemolo, antialiased);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-hbm0aq, grayscale);
}
.awsui_heading-text-variant-h2_2qdw9_xgp22_438:not(#\9) {
  font-family: var(--font-family-heading-ugphat, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  font-size: var(--font-size-heading-l-vnacx6, 20px);
  line-height: var(--line-height-heading-l-mg5bx6, 24px);
  letter-spacing: var(--letter-spacing-heading-l-5v6ibv, -0.015em);
  font-weight: var(--font-weight-heading-l-0t6dwc, 700);
  -webkit-font-smoothing: var(--font-smoothing-webkit-oemolo, antialiased);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-hbm0aq, grayscale);
}
.awsui_heading-text-variant-h3_2qdw9_xgp22_447:not(#\9) {
  font-family: var(--font-family-heading-ugphat, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
  font-size: var(--font-size-heading-m-170yiy, 18px);
  line-height: var(--line-height-heading-m-uoaqdh, 22px);
  letter-spacing: var(--letter-spacing-heading-m-29ewnk, -0.01em);
  font-weight: var(--font-weight-heading-m-zf82dr, 700);
  -webkit-font-smoothing: var(--font-smoothing-webkit-oemolo, antialiased);
  -moz-osx-font-smoothing: var(--font-smoothing-moz-osx-hbm0aq, grayscale);
}

.awsui_counter_2qdw9_xgp22_457:not(#\9) {
  color: var(--color-text-counter-q4zq3v, #656871);
  font-weight: var(--font-weight-normal-cxw1m3, 400);
}/*
 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 SPDX-License-Identifier: Apache-2.0
*/
.awsui_heading-text_105ke_268sp_5:not(#\9) {
  /* used in analytics metadata */
}