:root {
  --md-primary-fg-color: #003b94;
  --md-primary-fg-color--light: #5f9ef5;
  --md-primary-fg-color--dark: #1d5f9c;
}

[data-md-color-scheme="slate"] {
  --md-primary-fg-color: var(--md-primary-fg-color--dark);
  --md-default-bg-color: rgb(46, 52, 64); /* <- taken from the nord theme */
  --md-typeset-a-color: var(--md-primary-fg-color--light);
  --md-accent-fg-color: var(--md-primary-fg-color--dark);
  --md-default-fg-color--light: var(--md-primary-fg-color--light);
}

[data-md-color-scheme="default"] {
  --md-accent-fg-color: var(--md-primary-fg-color--light);
  --md-default-fg-color--light: var(--md-primary-fg-color);
}

html {
  scroll-behavior: smooth;
}

/* Override inline font awesome icon height for Stoplight Elements */
.svg-inline--fa {
  height: 1em !important;
}

.announcement-banner {
  color: var(--md-primary-bg-color);
  background-color: #4051b5;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-left: 0%;
  margin-right: 0%;
  padding: 20px 5%;
  font-size: 16px;
}

.mdx-hero__teaser {
  margin-top: 3.5rem;
  max-width: 30rem;
  padding-bottom: 3.5rem;
  padding-left: 2vw;
}
.mdx-hero__image {
  display: flex;
  order: 1;
  max-width: 30rem;
  justify-content: left;
  align-items: center;
  transform: translateX(2rem);
}
.mdx-hero__teaser .span-gradient {
  z-index: 1111;
  display: block;
  padding-bottom: 5px;
  background-image: linear-gradient(87deg, #409aed, #a8fea1);
  white-space: pre-wrap;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -o-object-fit: contain;
  object-fit: contain;
  line-height: 4rem;
}

.banner-text {
  font-weight: 700;
  font-size: 1.5em;
}

.cards .md-button {
  margin: 0.5em 0;
}

.md-header .md-social__link {
  height: unset;
  margin-left: .6rem;
}

.md-header .md-social__link svg {
  max-height: unset;
  height: 1.3rem;
}

@media screen and (min-width: 60em) {
  [dir=ltr] .md-header__source {
      margin-left: 0;
  }

  [dir=rtl] .md-header__source {
      margin-right: 0;
  }

  .md-header__source {
      display: block;
      max-width: 11.7rem;
      width: 11.7rem
  }
}

@media screen and (min-width: 76.25em) {
  [dir=ltr] .md-header__source {
      margin-left: 0;
  }

  [dir=rtl] .md-header__source {
      margin-right: 0;
  }
}

.md-typeset .github {
  color: #6e5494;
}

.center-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}

.md-typeset__table {
  width: 100%;
}

.md-typeset table:not([class]) {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12),
    0 3px 1px -2px rgba(0, 0, 0, 0.2);
  display: inline-block;
  border-radius: 0.5rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.md-typeset table:not([class]) + * {
  margin-top: 1.5em;
}
.md-typeset table:not([class]) th:not([align]),
.md-typeset table:not([class]) td:not([align]) {
  text-align: left;
}
[dir="rtl"] .md-typeset table:not([class]) th:not([align]),
[dir="rtl"] .md-typeset table:not([class]) td:not([align]) {
  text-align: right;
}
.md-typeset table:not([class]) th {
  min-width: 10rem;
  background-color: rgba(0, 0, 0, 0.54);
  color: white;
  vertical-align: top;
}

.md-typeset table:not([class]) th:nth-last-child(1) {
  width: 100%;
}

.md-typeset table:not([class]) td {
  border-top: 0.1rem solid rgba(0, 0, 0, 0.07);
  vertical-align: top;
}
.md-typeset table:not([class]) tr:first-child td {
  border-top: 1;
}
.md-typeset table:not([class]) a {
  word-break: normal;
}

.md-consent__overlay {
  height: 0px;
}

.md-content {
  max-width: 960px;
}

@media screen and (max-width: 1220px) {
  .md-content {
    margin: 0 auto;
  }
}

.force-select-all {
  -webkit-user-select: all; /* Chrome all / Safari all */
  -moz-user-select: all; /* Firefox all */
  -ms-user-select: all; /* IE 10+ */
  user-select: all;
}

.footer-email-list {
  width: auto;
  padding: 0.4rem 0;
  margin: auto 0.6rem;
  font-size: 0.64rem;
  color: var(--md-footer-fg-color--light);
}

.email-list-form {
  display: -ms-grid;
  display: grid;
  overflow: hidden;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 0.25fr;
  grid-template-columns: 1fr 0.25fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  position: relative;
  margin: 5px auto 5px 11px;
  width: 500px;
  height: 50px;
  border-radius: 5px;
}

.email-input {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  border: 0;
  border-radius: 4px;
  background: #065cb7;
  outline: 0;
  padding: 2em 1em 1em 1em;
  color: var(--md-footer-bg-color--light);
  font-size: 0.8em;
  transition: background 0.35s ease-out;
}
.email-input::-webkit-input-placeholder {
  color: var(--md-footer-bg-color--light);
  text-transform: capitalize;
}
.email-input:-moz-placeholder {
  color: var(--md-footer-bg-color--light);
  text-transform: capitalize;
}
.email-input::-moz-placeholder {
  color: var(--md-footer-bg-color--light);
  text-transform: capitalize;
}
.email-input:-ms-input-placeholder {
  color: var(--md-footer-bg-color--light);
  text-transform: capitalize;
}
.email-input:focus {
  background: #044f9e;
}
.email-input:focus + label {
  transform: translateY(-10px) scale(0.8);
  color: #6da6df;
}
.email-input:focus + label + button {
  opacity: 1;
}

.email-label {
  position: absolute;
  left: 1em;
  top: 50%;
  margin-top: -10px;
  font-size: 0.8em;
  color: var(--md-footer-bg-color--light);
  text-transform: capitalize;
  transform-origin: left center;
  transition: transform 0.25s ease-out, color 0.25s ease-out;
}

.email-button {
  position: absolute;
  right: 0;
  width: 60px;
  height: 100%;
  border: 0;
  border-radius: 4px;
  font-size: 1em;
  background: #065cb7;
  color: #044f9e;
  cursor: pointer;
  opacity: 0;
  outline: none;
  transition: opacity 0.35s ease-out, width 0.5s ease-out,
    background 0.25s ease-out;
}

.email-button.is-active {
  background: #5c94cd;
  color: #fff;
}

.email-button.is-done {
  width: 100%;
  opacity: 1;
}

.email-text {
  color: var(--md-footer-bg-color--light);
}

.email-go {
  background-color: var(--md-primary-fg-color--dark);
}

.email-go:hover {
  background-color: var(--md-primary-fg-color--light);
}

.process-icon-wrapper {
  display: inline-block;
  width: 50px;
  height: 50px;
  padding-top: 7px;
  margin-right: 10px;
  border-radius: 8px;
  align-items: center;
  text-align: center;
  color: var(--md-primary-bg-color);
  background-color: #abd7ff;
}

.process-icon-wrapper.icon1 {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#3f9aec),
    color-stop(51%, #38b3e9),
    to(#6ed4ec)
  );
  background-image: linear-gradient(180deg, #3f9aec, #38b3e9 51%, #6ed4ec);
}

.process-icon-wrapper.icon2 {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#9682ff),
    to(#2d55e4)
  );
  background-image: linear-gradient(180deg, #9682ff, #2d55e4);
}

.process-icon-wrapper.icon3 {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#d676d7),
    to(#856dec)
  );
  background-image: linear-gradient(180deg, #d676d7, #856dec);
}

.process-icon-wrapper.icon4 {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#eb6fcf),
    to(#f84877)
  );
  background-image: linear-gradient(180deg, #eb6fcf, #f84877);
}

.md-typeset code {
  font-size: 1em;
}

.event-center {
  display: block;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  min-height: 240px;
  max-height: 240px;
}

.video-wrapper {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
}
.video-wrapper > iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sl-px-24 {
  padding-left: 10px !important;
  padding-right: 0px !important;
}

.md-logo img {
  border-style: none;
  height: 24px;
  max-width: none;
}

.container {
  overflow: visible;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5%;
  padding-left: 5%;
  font-size: 16px;
  line-height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}

.md-footer-nav {
  background-color: #1e609d;
}

.footer {
  overflow: hidden;
  padding: 0px 5% 40px;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#1e609d),
    to(#003b94)
  );
  background-image: linear-gradient(180deg, #1e609d, #003b94);
}

.footer img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

.footer-columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-items: center;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.footer-list {
  margin-right: 20px;
  margin-left: 20px;
  padding-left: 0px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #fff;
}

.footer-list-item {
  margin-bottom: 5px;
  color: #fff;
  padding-left: 0;
  list-style: none;
}

.h3-footer {
  margin-top: 0px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 20px;
}

.footer-link {
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.footer-link:hover {
  color: #6ed4ec;
}

.footer-link.margin-right-20px {
  margin-right: 20px;
}

.footer-social-links {
  display: none;
  margin-top: 60px;
  margin-bottom: 60px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer-social-link {
  margin-right: 16px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.footer-social-link:hover {
  color: #6ed4ec;
}

.footer-legal-grid {
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 60px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.copyright-text {
  color: rgba(253, 254, 254, 0.5);
  font-size: 16px;
  font-weight: 400;
}

.footer-logo-link {
  max-width: 160px;
}

.footer-logo-link.w--current {
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

.footer-logo-link.w--current:hover {
  opacity: 0.6;
}

@media screen and (max-width: 991px) {
  .footer-list {
    margin-right: 10px;
    margin-bottom: 20px;
    margin-left: 10px;
  }

  .footer-list-2 {
    margin-right: 10px;
    margin-bottom: 20px;
    margin-left: 10px;
  }

  .footer-list-2.footer-extra {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0%;
  }

  .footer-2 {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer-columns {
    display: -ms-grid;
    display: grid;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-auto-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }

  .footer-list {
    margin-right: 0px;
    margin-left: 0px;
  }

  .footer-social-links {
    margin-top: 40px;
    margin-bottom: 40px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-legal-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .copyright-text {
    margin-top: 40px;
  }
}

@media screen and (max-width: 479px) {
  .footer-columns {
    grid-template-areas:
      ". ."
      ". ."
      ". Area";
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .footer-list {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    font-size: 16px;
  }

  .footer-link {
    font-size: 18px;
  }

  .footer-social-links {
    display: -ms-grid;
    display: grid;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-auto-columns: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .footer-social-link {
    font-size: 18px;
  }

  .copyright-text {
    font-size: 14px;
  }

  .footer-flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-heading {
    margin-top: 20px;
  }
}

.md-typeset .grid {
  grid-gap: 0.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  margin: 1em 0;
}

.md-typeset .grid.cards > :-webkit-any(ul, ol) {
  display: contents;
}

.md-typeset .grid.cards > :-moz-any(ul, ol) {
  display: contents;
}

.md-typeset .grid.cards > :is(ul, ol) {
  display: contents;
}

.md-typeset .grid.cards > :-webkit-any(ul, ol) > li,
.md-typeset .grid > .card {
  border: 0.05rem solid var(--md-default-fg-color--lightest);
  border-radius: 0.1rem;
  display: block;
  margin: 0;
  padding: 0.8rem;
  -webkit-transition: border 0.25s, box-shadow 0.25s;
  transition: border 0.25s, box-shadow 0.25s;
}

.md-typeset .grid.cards > :-moz-any(ul, ol) > li,
.md-typeset .grid > .card {
  border: 0.05rem solid var(--md-default-fg-color--lightest);
  border-radius: 0.1rem;
  display: block;
  margin: 0;
  padding: 0.8rem;
  -moz-transition: border 0.25s, box-shadow 0.25s;
  transition: border 0.25s, box-shadow 0.25s;
}

.md-typeset .grid.cards > :is(ul, ol) > li,
.md-typeset .grid > .card {
  border: 0.05rem solid var(--md-default-fg-color--lightest);
  border-radius: 0.1rem;
  display: block;
  margin: 0;
  padding: 0.8rem;
  transition: border 0.25s, box-shadow 0.25s;
}

.md-typeset
  .grid.cards
  > :-webkit-any(ul, ol)
  > li:-webkit-any(:focus-within, :hover),
.md-typeset .grid > .card:-webkit-any(:focus-within, :hover) {
  border-color: #0000;
  box-shadow: var(--md-shadow-z2);
}

.md-typeset
  .grid.cards
  > :-moz-any(ul, ol)
  > li:-moz-any(:focus-within, :hover),
.md-typeset .grid > .card:-moz-any(:focus-within, :hover) {
  border-color: #0000;
  box-shadow: var(--md-shadow-z2);
}

.md-typeset .grid.cards > :is(ul, ol) > li:is(:focus-within, :hover),
.md-typeset .grid > .card:is(:focus-within, :hover) {
  border-color: #0000;
  box-shadow: var(--md-shadow-z2);
}

.md-typeset .grid.cards > :-webkit-any(ul, ol) > li > hr,
.md-typeset .grid > .card > hr {
  margin-bottom: 1em;
  margin-top: 1em;
}

.md-typeset .grid.cards > :-moz-any(ul, ol) > li > hr,
.md-typeset .grid > .card > hr {
  margin-bottom: 1em;
  margin-top: 1em;
}

.md-typeset .grid.cards > :is(ul, ol) > li > hr,
.md-typeset .grid > .card > hr {
  margin-bottom: 1em;
  margin-top: 1em;
}

.md-typeset .grid.cards > :-webkit-any(ul, ol) > li > :first-child,
.md-typeset .grid > .card > :first-child {
  margin-top: 0;
}

.md-typeset .grid.cards > :-moz-any(ul, ol) > li > :first-child,
.md-typeset .grid > .card > :first-child {
  margin-top: 0;
}

.md-typeset .grid.cards > :is(ul, ol) > li > :first-child,
.md-typeset .grid > .card > :first-child {
  margin-top: 0;
}

.md-typeset .grid.cards > :-webkit-any(ul, ol) > li > :last-child,
.md-typeset .grid > .card > :last-child {
  margin-bottom: 0;
}

.md-typeset .grid.cards > :-moz-any(ul, ol) > li > :last-child,
.md-typeset .grid > .card > :last-child {
  margin-bottom: 0;
}

.md-typeset .grid.cards > :is(ul, ol) > li > :last-child,
.md-typeset .grid > .card > :last-child {
  margin-bottom: 0;
}

.md-typeset .grid > * {
  margin-bottom: 0;
  margin-top: 0;
}

.md-typeset .grid > :-webkit-any(.admonition, details) {
  margin-bottom: 0;
  margin-top: 0;
}

.md-typeset .grid > :-moz-any(.admonition, details) {
  margin-bottom: 0;
  margin-top: 0;
}

.md-typeset .grid > :is(.admonition, details) {
  margin-bottom: 0;
  margin-top: 0;
}

.md-typeset .grid > .highlight > *,
.md-typeset .grid > .highlighttable,
.md-typeset .grid > pre {
  margin-bottom: 0;
  margin-top: 0;
}

.md-typeset .grid > .highlight > pre:only-child,
.md-typeset .grid > .highlight > pre > code,
.md-typeset .grid > .highlighttable,
.md-typeset .grid > .highlighttable > tbody,
.md-typeset .grid > .highlighttable > tbody > tr,
.md-typeset .grid > .highlighttable > tbody > tr > .code,
.md-typeset .grid > .highlighttable > tbody > tr > .code > .highlight,
.md-typeset .grid > .highlighttable > tbody > tr > .code > .highlight > pre,
.md-typeset
  .grid
  > .highlighttable
  > tbody
  > tr
  > .code
  > .highlight
  > pre
  > code {
  height: 100%;
}

.md-typeset .grid > .tabbed-set {
  margin-bottom: 0;
  margin-top: 0;
}

.md-typeset .md-author img {
  border-radius: 100%;
  display: block;
}

.md-typeset .md-author--more {
  background: var(--md-default-fg-color--lightest);
  color: var(--md-default-fg-color--lighter);
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1.6rem;
  text-align: center;
}

.md-typeset .md-author--long {
  height: 2.4rem;
  width: 2.4rem;
}

.md-typeset a.md-author {
  transform: scale(1);
  margin-right: 0.3rem;
}

.md-typeset a.md-author img {
  filter: grayscale(100%) opacity(75%);
  transition: filter 125ms;
}

.md-typeset a.md-author:focus,
.md-typeset a.md-author:hover {
  transform: scale(1.1);
  z-index: 1;
}

.md-typeset a.md-author:focus img,
.md-typeset a.md-author:hover img {
  filter: grayscale(0);
}

.highlighttable pre {
  white-space: pre-wrap;
}

.sl-text-heading {
  color: var(--color-text-heading) !important;
  font-weight: 600 !important;
}



/* Footer partials center alignment */
.md-footer-meta__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between;
  flex-wrap: wrap !important;
}

/* Enterprise callout styling in copyright.html */

  .md-enterprise-callout__inner {

    margin: 0px; 
    padding: 13.5px 10px; 
    background-color: var(--md-primary-fg-color); 
    border-radius: 5px; 
    border: none;

  }

.md-enterprise-callout {
  padding: 0 !important;
} 