.rm-UserAvatar{--UserAvatar-color: var(--color-primary-inverse, rgba($blue, 0.09));--UserAvatar-background: linear-gradient(
    180deg,
    var(--color-primary-darken-10, $blue-40) 0%,
    var(--color-primary, $blue) 100%
  );color:var(--UserAvatar-color)}

/* BASICS */

.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
  direction: ltr;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker { color: black; }
.CodeMirror-guttermarker-subtle { color: #999; }

/* CURSOR */

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-fat-cursor-mark {
  background-color: rgba(20, 255, 20, 0.5);
  -webkit-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
}
.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-webkit-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}

/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror-overwrite .CodeMirror-cursor {}

.cm-tab { display: inline-block; text-decoration: inherit; }

.CodeMirror-rulers {
  position: absolute;
  left: 0; right: 0; top: -50px; bottom: 0;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0; bottom: 0;
  position: absolute;
}

/* DEFAULT THEME */

.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}
.cm-strikethrough {text-decoration: line-through;}

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}

.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}

.CodeMirror-composing { border-bottom: 2px solid; }

/* Default styles for common addons */

div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
.CodeMirror-activeline-background {background: #e8f2ff;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}

.CodeMirror-scroll {
  overflow: scroll !important; /* Things will break if this is overridden */
  /* 50px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -50px; margin-right: -50px;
  padding-bottom: 50px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 50px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -50px;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }

.CodeMirror-lines {
  cursor: text;
  min-height: 1px; /* prevents collapsing before first draw */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  /* Reset some styles that the rest of the page might have set */ border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}
.CodeMirror-wrap pre.CodeMirror-line,
.CodeMirror-wrap pre.CodeMirror-line-like {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: 0.1px; /* Force widget margins to stay inside of the container */
}

.CodeMirror-widget {}

.CodeMirror-rtl pre { direction: rtl; }

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre { position: static; }

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
.CodeMirror-crosshair { cursor: crosshair; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }

.cm-searching {
  background-color: #ffa;
  background-color: rgba(255, 255, 0, .4);
}

/* Used to force a border model for a node */
.cm-force-border { padding-right: .1px; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}

/* See issue #2901 */
.cm-tab-wrap-hack:after { content: ''; }

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }

/* neo theme for codemirror */

/* Color scheme */

.cm-s-neo.CodeMirror {
  background-color:#ffffff;
  color:#2e383c;
  line-height:1.4375;
}
.cm-s-neo .cm-comment { color:#75787b; }
.cm-s-neo .cm-keyword, .cm-s-neo .cm-property { color:#1d75b3; }
.cm-s-neo .cm-atom,.cm-s-neo .cm-number { color:#75438a; }
.cm-s-neo .cm-node,.cm-s-neo .cm-tag { color:#9c3328; }
.cm-s-neo .cm-string { color:#b35e14; }
.cm-s-neo .cm-variable,.cm-s-neo .cm-qualifier { color:#047d65; }


/* Editor styling */

.cm-s-neo pre {
  padding:0;
}

.cm-s-neo .CodeMirror-gutters {
  border:none;
  border-right:10px solid transparent;
  background-color:transparent;
}

.cm-s-neo .CodeMirror-linenumber {
  padding:0;
  color:#e0e2e5;
}

.cm-s-neo .CodeMirror-guttermarker { color: #1d75b3; }
.cm-s-neo .CodeMirror-guttermarker-subtle { color: #e0e2e5; }

.cm-s-neo .CodeMirror-cursor {
  width: auto;
  border: 0;
  background: rgba(155,157,162,0.37);
  z-index: 1;
}

.Param303b1K9x3eQa{color:var(--slate);display:-webkit-box;display:-ms-flexbox;display:flex;padding:10px}.Param-input3M1ROSL-LfXK{width:100%}

.Param-select20BmhSCbUeSU{width:100%}.Param-fileInputN1GxjIJd_zlm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.Param-fileInput-button34iQmBpPEIYB{-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;max-width:30px}.Param-fileInput-input34Lu-bf9YwtC{opacity:0;pointer-events:none;position:absolute}.Param-fileInfoXZn9HFgdlrO4{margin:5px 0 0 0}.Param-fileInfo-nameTLLvANVnlCpI{font-weight:var(--font-weight-bold)}.Param-fileInfo-description324gsOdaUHzm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;font-size:14px;line-height:1.1;text-align:right}.InputDropdownU-U2OOFn1HmK{width:100%}.InputTooltip3Qbo55N1dPEw[role='tooltip']{min-width:200px}.InputTooltip-description3EQ4RgBH8ruj{color:var(--color-text-minimum);font-size:12px;font-weight:var(--font-weight-normal)}.InputTooltip-validation-icon1ajOrKgv-3vl{font-size:16px;margin-right:5px}.InputTooltip-validation-keyLsZ4piqKnwJD{-webkit-box-flex:0;-ms-flex:0 0;flex:0 0;font-size:13px;margin-right:5px;white-space:nowrap}.InputTooltip-validation-value1uQlBmMbKKXu{font-size:13px}

.rm-InputTooltip .icon-help-circle{color:var(--gray70)}[data-color-mode='dark'] .rm-InputTooltip .icon-help-circle{color:var(--gray50)}@media (prefers-color-scheme: dark){[data-color-mode='system'] .rm-InputTooltip .icon-help-circle{color:var(--gray50)}}.rm-InputTooltip .icon-x-circle{color:#e95f6a}.rm-InputTooltip .icon-check-circle{color:#12ca93}

.GraphContainer3yiktdSqpRRy button[tag='button']{border-bottom-left-radius:0;border-bottom-right-radius:0}

.PlaygroundC7DInM9NFvBg{-webkit-box-shadow:calc(var(--border-width) * -1) 0 0 var(--color-border-default),var(--border-width) 0 0 var(--color-border-default);box-shadow:calc(var(--border-width) * -1) 0 0 var(--color-border-default),var(--border-width) 0 0 var(--color-border-default);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 var(--hub-playground-width);flex:0 0 var(--hub-playground-width);-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:var(--hub-playground-width);position:relative}@media (max-width: 1112px){.PlaygroundC7DInM9NFvBg{-webkit-box-flex:0;-ms-flex:0 0 calc(var(--hub-playground-width) - 80px);flex:0 0 calc(var(--hub-playground-width) - 80px)}}@media (max-width: 768px){.PlaygroundC7DInM9NFvBg{-webkit-box-shadow:0 -1px 0 var(--color-border-default);box-shadow:0 -1px 0 var(--color-border-default);-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100vw;padding:20px 10px}}.Playground-section3VTXuaYZivJK{padding-left:20px;padding-right:20px}.Playground-section3VTXuaYZivJK+.Playground-section3VTXuaYZivJK{margin-top:10px}.Playground-section3VTXuaYZivJK+.Playground-section3VTXuaYZivJK.Playground-section_sticky_fBLN0qIkmEd{margin-top:0}.Playground-section3VTXuaYZivJK:empty{display:none}.Playground-section_sticky_fBLN0qIkmEd{-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-height:100vh;padding-bottom:20px;padding-top:20px;position:sticky;top:0}@media (max-width: 768px){.Playground-section_sticky_fBLN0qIkmEd{height:auto}}

.RecipeContainer2weP2UWHlgsf{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:-5px}.RecipeContainer-item1gos8kezE0rA{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:0 1 calc(50% - 10px);flex:0 1 calc(50% - 10px);margin:5px}@media (max-width: 1300px) and (min-width: 1113px), (max-width: 1011px) and (min-width: 769px), (max-width: 531px){.RecipeContainer-item1gos8kezE0rA{-webkit-box-flex:0;-ms-flex:0 1 100%;flex:0 1 100%}}

.TableContainer-body38QERFCqhvNE{text-align:center}.TableContainer-title2IV0I9o_P29E{margin:var(--sm) 0}.TableContainer-text1qyrmmFP3LXz{line-height:1.6;margin:0}

.YourAPIKeys2MvhV90G2H5w{margin-bottom:var(--md);padding-top:var(--sm)}.YourAPIKeys2MvhV90G2H5w .Table tbody:not(.Table_spinner) td,.YourAPIKeys2MvhV90G2H5w .YourAPIKeys-ObfuscatedAPIKey2XFQ0QXywHm_ span{font-size:13px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.YourAPIKeys-boxI574yDGuGQUN{padding:0}.YourAPIKeys-tableIh_7vOCXblKB{width:100%}.YourAPIKeys-tableIh_7vOCXblKB thead th.time{width:18%}.YourAPIKeys-tableIh_7vOCXblKB tr:hover .YourAPIKeys-buttonpXEZK6uiCXHn{opacity:1}.YourAPIKeys-tableIh_7vOCXblKB td:last-child,.YourAPIKeys-tableIh_7vOCXblKB th:last-child{text-align:center;width:22px}.YourAPIKeys-buttonpXEZK6uiCXHn{opacity:0}.YourAPIKeys-empty-button2oUtzY_Ah393{--button-gap: 6px;margin-top:var(--xs)}.YourAPIKeys-empty-prompt1Ho5bWFQIQLn{color:var(--color-text-minimum);font-size:14px;padding:var(--sm)}.YourAPIKeys-empty-prompt-icon37ag88Jrt4B-{color:var(--color-text-minimum-icon)}.YourAPIKeys-empty-prompt1Ho5bWFQIQLn a{color:var(--color-text-minimum);text-decoration:underline}.YourAPIKeys-empty-prompt1Ho5bWFQIQLn a:hover{color:var(--color-text-minimum-hover)}.YourAPIKeys-lastSeen3wVBvjqymquZ{overflow:hidden;position:relative;text-overflow:ellipsis;white-space:nowrap;width:150px}.YourAPIKeys-lastSeen-date2TSGmiBfFE79{-webkit-box-flex:1;-ms-flex:1;flex:1}.YourAPIKeys-lastSeen-sparkline1XlUOZzGfnYu{width:83px}.YourAPIKeys-iconCheck1sioFDrnKvBq{color:var(--green)}.YourAPIKeys-overflowIfZIF3A8-jXh{margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

.GettingStarted-Header1XIB_KpLpRsz{margin-bottom:10px}.GettingStarted-Playground3qmZm1mU_j6J{-webkit-box-shadow:none;box-shadow:none;-webkit-box-flex:0;-ms-flex:0 0 var(--hub-main-max-width);flex:0 0 var(--hub-main-max-width);max-width:var(--hub-main-max-width)}@media (max-width: 1112px){.GettingStarted-Playground3qmZm1mU_j6J{-webkit-box-flex:0;-ms-flex:0 0 calc(var(--hub-main-max-width) - 80px);flex:0 0 calc(var(--hub-main-max-width) - 80px)}}@media (max-width: 768px){.GettingStarted-Playground3qmZm1mU_j6J{padding:0}}.GettingStarted-Playground-SectionolgqW8_YpNuU{margin-bottom:20px;padding:0 0 10px}.GettingStarted-Playground3qmZm1mU_j6J .rm-PlaygroundRequest .CodeSnippet{overflow:auto}.GettingStarted-WrapperWo8zdKsyenVk{display:grid;-webkit-box-flex:1;-ms-flex:1;flex:1;grid-template-areas:'main sidebar' 'footer sidebar';grid-template-columns:1fr var(--hub-playground-width)}.GettingStarted-WrapperWo8zdKsyenVk .rm-Article.rm-Article{grid-area:main;padding-bottom:0;width:100%}.GettingStarted-WrapperWo8zdKsyenVk .GettingStarted-Footer2I4WmwDQXqoS{grid-area:footer;padding:0 30px}@media (max-width: 768px){.GettingStarted-WrapperWo8zdKsyenVk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.GettingStarted-Sidebar3W_dhhazkf-v{-webkit-box-shadow:calc(var(--border-width) * -1) 0 0 var(--color-border-default);box-shadow:calc(var(--border-width) * -1) 0 0 var(--color-border-default);-webkit-box-sizing:border-box;box-sizing:border-box;grid-area:sidebar;padding:var(--md)}.GettingStarted-Sidebar3W_dhhazkf-v .rm-PlaygroundResponse{margin-top:0}@media (max-width: 768px){.GettingStarted-Sidebar3W_dhhazkf-v{-webkit-box-shadow:none;box-shadow:none;grid-area:main;max-width:100%;padding:0 30px}}.SectionHeading-stepnumber1-_9UobMRKIZ{color:var(--gray60)}.SectionHeading-title1O-A-UzFkXD3{padding-left:10px;padding-right:10px}.SectionHeading3I9QZ3d-4y6L i{color:var(--gray60)}.rightColumnauflTGP0iy8T{-webkit-box-shadow:calc(var(--border-width) * -1) 0 0 var(--color-border-default);box-shadow:calc(var(--border-width) * -1) 0 0 var(--color-border-default);-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:0 0 var(--hub-playground-width);flex:0 0 var(--hub-playground-width);max-width:var(--hub-playground-width);padding:var(--md)}.rightColumnauflTGP0iy8T .rm-PlaygroundResponse{margin-top:0}@media (max-width: 768px){.rightColumnauflTGP0iy8T{display:none}}.MyRequests3EgiqRBo9n_y{padding:var(--sm) var(--md) var(--md);width:100%}.MyRequests-contentOZFWf8ARrzjB{display:grid;gap:2rem;grid-template-columns:250px 1fr}.MyRequests-content_min-heightimwZVaR1gEW_{min-height:930px}

.UpdatedAt{padding-top:20px}.UpdatedAt p{font-weight:500;font-size:13px}.rm-ReferenceMainEndpoint,.rm-ReferenceMainPlayground{-webkit-transition:0.3s;transition:0.3s}.rm-ReferenceMainEndpoint>*,.rm-ReferenceMainPlayground>*{-webkit-transition:inherit;transition:inherit}@media (max-width: 768px){.rm-ReferenceMain{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}@media (max-width: 768px){.rm-ReferenceMain.rm-basic-page .markdown-body{margin:0 !important}.rm-ReferenceMain.rm-basic-page .markdown-body:last-child{margin:0 !important}.rm-ReferenceMain.rm-basic-page .markdown-body:first-child{margin:0 !important}}.rm-ReferenceMainSidebar{-ms-flex-item-align:start;align-self:start;color:var(--color-text-muted);font-family:var(--font-family);max-height:100vh;overflow:auto;position:sticky;top:0;width:var(--hub-sidebar-width)}.rm-ReferenceMainSidebar #hub-sidebar-content{padding-right:0}.rm-ReferenceMainPlayground{height:100%;min-height:100vh}.rm-ReferenceMain .field-description a{word-break:break-word}.rm-ReferenceMain .rm-Article{max-width:var(--hub-main-max-width)}@media (max-width: 1112px) and (min-width: 769px){.rm-ReferenceMain .rm-Article{margin-left:auto;margin-right:auto}}.rm-ReferenceMain .rm-Article .rm-APISectionHeader{margin-top:10px}.Reference-section{margin-bottom:1em}.rm-Article,.rm-Playground{-webkit-transition:opacity var(--transition-fast) var(--transition-timing);transition:opacity var(--transition-fast) var(--transition-timing)}.loading .rm-Article{--Spinner-ring: var(--gray80);--Spinner-element: var(--gray90);position:relative}[data-color-mode='dark'] .loading .rm-Article{--Spinner-ring: var(--gray20);--Spinner-element: var(--gray30)}@media (prefers-color-scheme: dark){[data-color-mode='system'] .loading .rm-Article{--Spinner-ring: var(--gray20);--Spinner-element: var(--gray30)}}@-webkit-keyframes spinner{0%{-webkit-transform:rotate(0deg) scale(1);transform:rotate(0deg) scale(1)}100%{-webkit-transform:rotate(360deg) scale(1);transform:rotate(360deg) scale(1)}}@keyframes spinner{0%{-webkit-transform:rotate(0deg) scale(1);transform:rotate(0deg) scale(1)}100%{-webkit-transform:rotate(360deg) scale(1);transform:rotate(360deg) scale(1)}}.loading .rm-Article::before{background:rgba(var(--color-bg-page-rgb), 0.75);content:'';height:100%;left:0;position:absolute;top:0;width:100%;z-index:99}.loading .rm-Article::after{-webkit-animation:spinner 1s infinite linear;animation:spinner 1s infinite linear;border:0.25rem solid var(--Spinner-element);border-radius:50%;border-top-color:var(--Spinner-ring);content:'';height:40px;left:50%;pointer-events:none;position:fixed;top:50%;width:40px;z-index:99}.loading .rm-Article::after{position:absolute;top:30vh}.loading .rm-Playground{opacity:0.5;pointer-events:none}

.InfoTable23-dvsQrDudH{margin-top:var(--md)}.InfoTable-header3S44kW9YxZVV{border-top:1px solid var(--color-border-default);padding-top:var(--sm);width:100%}.InfoTable-box-wrapper24OmpoQ6gUT8{padding:0}.InfoTable-table3TGDWQ2lNMT_ td{font-size:12px}

.EmptyStatePromptQhAfTGAFyhPz{color:var(--color-text-minimum);margin-top:var(--sm)}.EmptyStatePrompt-label3uUz2IMZc0nv{font-size:12px;font-weight:var(--font-weight)}.EmptyStatePromptQhAfTGAFyhPz a{color:var(--color-text-minimum);text-decoration:underline}.EmptyStatePrompt-icon3vffq3X781Gb{color:var(--color-text-minimum-icon)}

.RealtimeTable-filter2QIDNN4ZsSww{font-family:var(--font-family);font-size:12px;font-weight:var(--font-weight-bold)}.RealtimeTable-table-wrapperOwrS1liyEzgA{padding:0}.RealtimeTable-table1tliCohYx8jS{width:100%}.RealtimeTable-table1tliCohYx8jS tbody:not(.Table_spinner3TLl89i7WVTo) td{color:var(--color-text-default);font-size:12px;font-weight:var(--font-weight);line-height:1}.RealtimeTable-table1tliCohYx8jS tbody:not(.Table_spinner3TLl89i7WVTo) td:only-child{text-align:center}.RealtimeTable-table1tliCohYx8jS tr td:first-child{padding-left:10px}.RealtimeTable-table-timeELYFhnt-nKzF{color:var(--color-text-minimum)}.RealtimeTable-table-method30q_NxA2SPu1{margin-right:5px}.RealtimeTable-table-graph3SFm6YkAV_Af{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;min-width:100px;width:100%}.RealtimeTable-table-graph3SFm6YkAV_Af canvas{max-height:25px;max-width:100px}.RealtimeTable_topEndpointskZR1XBYC38oB:not(.RealtimeTable_emptyYEaAJ746ftu7) tr:hover td,.RealtimeTable_topEndpointskZR1XBYC38oB:not(.RealtimeTable_emptyYEaAJ746ftu7) tr:active td,.RealtimeTable_topEndpointskZR1XBYC38oB:not(.RealtimeTable_emptyYEaAJ746ftu7) tr:focus td{background:rgba(0,0,0,0.05);cursor:pointer}[data-color-mode='dark'] .RealtimeTable_topEndpointskZR1XBYC38oB:not(.RealtimeTable_emptyYEaAJ746ftu7) tr:hover td,[data-color-mode='dark'] .RealtimeTable_topEndpointskZR1XBYC38oB:not(.RealtimeTable_emptyYEaAJ746ftu7) tr:active td,[data-color-mode='dark'] .RealtimeTable_topEndpointskZR1XBYC38oB:not(.RealtimeTable_emptyYEaAJ746ftu7) tr:focus td{background:rgba(255,255,255,0.05)}@media (prefers-color-scheme: dark){[data-color-mode='system'] .RealtimeTable_topEndpointskZR1XBYC38oB:not(.RealtimeTable_emptyYEaAJ746ftu7) tr:hover td,[data-color-mode='system'] .RealtimeTable_topEndpointskZR1XBYC38oB:not(.RealtimeTable_emptyYEaAJ746ftu7) tr:active td,[data-color-mode='system'] .RealtimeTable_topEndpointskZR1XBYC38oB:not(.RealtimeTable_emptyYEaAJ746ftu7) tr:focus td{background:rgba(255,255,255,0.05)}}.RealtimeTable_topEndpointskZR1XBYC38oB:not(.RealtimeTable_emptyYEaAJ746ftu7) tr td:nth-child(1){max-width:0;overflow:hidden;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:100%}.RealtimeTable_recentRequests2GwGN8bk4wZU:not(.RealtimeTable_emptyYEaAJ746ftu7) tr:hover td,.RealtimeTable_recentRequests2GwGN8bk4wZU:not(.RealtimeTable_emptyYEaAJ746ftu7) tr:active td,.RealtimeTable_recentRequests2GwGN8bk4wZU:not(.RealtimeTable_emptyYEaAJ746ftu7) tr:focus td{background:rgba(0,0,0,0.05);cursor:pointer}[data-color-mode='dark'] .RealtimeTable_recentRequests2GwGN8bk4wZU:not(.RealtimeTable_emptyYEaAJ746ftu7) tr:hover td,[data-color-mode='dark'] .RealtimeTable_recentRequests2GwGN8bk4wZU:not(.RealtimeTable_emptyYEaAJ746ftu7) tr:active td,[data-color-mode='dark'] .RealtimeTable_recentRequests2GwGN8bk4wZU:not(.RealtimeTable_emptyYEaAJ746ftu7) tr:focus td{background:rgba(255,255,255,0.05)}@media (prefers-color-scheme: dark){[data-color-mode='system'] .RealtimeTable_recentRequests2GwGN8bk4wZU:not(.RealtimeTable_emptyYEaAJ746ftu7) tr:hover td,[data-color-mode='system'] .RealtimeTable_recentRequests2GwGN8bk4wZU:not(.RealtimeTable_emptyYEaAJ746ftu7) tr:active td,[data-color-mode='system'] .RealtimeTable_recentRequests2GwGN8bk4wZU:not(.RealtimeTable_emptyYEaAJ746ftu7) tr:focus td{background:rgba(255,255,255,0.05)}}.RealtimeTable_recentRequests2GwGN8bk4wZU:not(.RealtimeTable_emptyYEaAJ746ftu7) tr td:first-child{min-width:42px}.RealtimeTable_recentRequests2GwGN8bk4wZU:not(.RealtimeTable_emptyYEaAJ746ftu7) tr td:nth-child(2){max-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.RealtimeTable_recentRequests2GwGN8bk4wZU:not(.RealtimeTable_emptyYEaAJ746ftu7) tr td:last-child{min-width:130px;padding-right:10px}.RealtimeTable_emptyYEaAJ746ftu7 tr td{min-width:80px}.RealtimeTable_emptyYEaAJ746ftu7 tr td:first-child{max-width:0;width:100%}.RealtimeTable-emptyStateSparkline3iQYlt86BUS0{margin-top:5px}.RealtimeTable-emptyPrompt2CeEJh8NkQBI{color:var(--color-text-minimum);margin-top:var(--sm)}.RealtimeTable-emptyPrompt-label20j0ujxdQtWR{font-size:12px;font-weight:var(--font-weight)}.RealtimeTable-emptyPrompt2CeEJh8NkQBI a{color:var(--color-text-minimum);text-decoration:underline}.RealtimeTable-emptyPrompt-icon3OH4H5QPCnu-{color:var(--color-text-minimum-icon)}.RealtimeTable1tFDrwIj5Jm3 .HTTPStatus{padding:0}







.RequestsGraph-filter2gj84IATAWuy{font-family:var(--font-family);font-size:12px;font-weight:var(--font-weight-bold)}.RequestsGraph-container39eSDzlyge64{padding:10px}.RequestsGraph-container_loadingjzMLqnpgemqD{-ms-flex-item-align:center;align-self:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-height:215px}.RequestsGraph-graphWrapper1CY16xlcm7zV{padding:0}.RequestsGraph-graphzhfHuTvs9A1p{--MetricsGraph-padding: 0}.RequestsGraph-graphHeading1Qyyf7TsH7X6{color:var(--color-text-minimum);font-size:12px;font-weight:var(--font-weight);margin:0 0 var(--sm)}.RequestsGraph-totals3ExZ20afgkan{display:grid;font-size:14px;gap:var(--xs);grid-template-columns:1fr -webkit-max-content;grid-template-columns:1fr max-content;margin:var(--sm) 0 0}.RequestsGraph-totals3ExZ20afgkan dt{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:var(--color-text-minimum);display:-webkit-box;display:-ms-flexbox;display:flex;gap:var(--xs)}.RequestsGraph-totals3ExZ20afgkan dd{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.RequestsGraph_empty8trHftzhvwgx dd{font-size:12px;width:80px}

.MyRequestsHeader3yaelUXFPLiT{-webkit-backdrop-filter:blur(var(--md));backdrop-filter:blur(var(--md));background:rgba(var(--color-bg-page-rgb), 0.75);border-bottom:1px solid var(--color-border-default);color:var(--color-text-minimum);font-size:12px;font-weight:var(--font-weight);margin-bottom:var(--sm);padding:var(--sm) 0;position:sticky;top:0;width:100%;z-index:3}.MyRequestsHeader-insights-requests45jGrC3hwBgg{padding-left:var(--sm)}.MyRequestsHeader-timeRangeFq34_QtcLPLM{color:var(--color-text-minimum);font-size:14px;margin-left:auto}.MyRequestsTable3TFCHOy6J3w5{overflow:auto}

.Main-QuickNav-container1OiLvjSDusO6{-webkit-box-sizing:border-box;box-sizing:border-box;padding:15px 20px 10px;width:100%}@media (max-width: 768px){.Footer-desktop1Hf-2fUBeoe2{display:none}}.Footer-mobileOGO_ewpg_gOk{display:none}@media (max-width: 768px){.Footer-mobileOGO_ewpg_gOk{display:block;padding:0 30px}}hr.NextStepsDivider2wROhuxj973D{margin-left:0 !important}


/*# sourceMappingURL=routes-Reference.54541fde55ccb4d497f7.css.map*/