/**
 * One Light theme for prism.js
 * Based on Atom's One Light theme: https://github.com/atom/atom/tree/master/packages/one-light-syntax
 */
/**
 * One Light colours (accurate as of commit eb064bf on 19 Feb 2021)
 * From colors.less
 * --mono-1: hsl(230, 8%, 24%);
 * --mono-2: hsl(230, 6%, 44%);
 * --mono-3: hsl(230, 4%, 64%)
 * --hue-1: hsl(198, 99%, 37%);
 * --hue-2: hsl(221, 87%, 60%);
 * --hue-3: hsl(301, 63%, 40%);
 * --hue-4: hsl(119, 34%, 47%);
 * --hue-5: hsl(5, 74%, 59%);
 * --hue-5-2: hsl(344, 84%, 43%);
 * --hue-6: hsl(35, 99%, 36%);
 * --hue-6-2: hsl(35, 99%, 40%);
 * --syntax-fg: hsl(230, 8%, 24%);
 * --syntax-bg: hsl(230, 1%, 98%);
 * --syntax-gutter: hsl(230, 1%, 62%);
 * --syntax-guide: hsla(230, 8%, 24%, 0.2);
 * --syntax-accent: hsl(230, 100%, 66%);
 * From syntax-variables.less
 * --syntax-selection-color: hsl(230, 1%, 90%);
 * --syntax-gutter-background-color-selected: hsl(230, 1%, 90%);
 * --syntax-cursor-line: hsla(230, 8%, 24%, 0.05);
 */
code[class*=language-],
pre[class*=language-] {
  background: hsl(230, 1%, 98%);
  color: hsl(230, 8%, 24%);
  font-family: "Fira Code", "Fira Mono", Menlo, Consolas, "DejaVu Sans Mono", monospace;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  line-height: 1.5;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

/* Selection */
code[class*=language-]::-moz-selection,
code[class*=language-] *::-moz-selection,
pre[class*=language-] *::-moz-selection {
  background: hsl(230, 1%, 90%);
  color: inherit;
}

code[class*=language-]::selection,
code[class*=language-] *::selection,
pre[class*=language-] *::selection {
  background: hsl(230, 1%, 90%);
  color: inherit;
}

/* Code blocks */
pre[class*=language-] {
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
  border-radius: 0.3em;
}

/* Inline code */
:not(pre) > code[class*=language-] {
  padding: 0.2em 0.3em;
  border-radius: 0.3em;
  white-space: normal;
}

.token.comment,
.token.prolog,
.token.cdata {
  color: hsl(230, 4%, 64%);
}

.token.doctype,
.token.punctuation,
.token.entity {
  color: hsl(230, 8%, 24%);
}

.token.attr-name,
.token.class-name,
.token.boolean,
.token.constant,
.token.number,
.token.atrule {
  color: hsl(35, 99%, 36%);
}

.token.keyword {
  color: hsl(301, 63%, 40%);
}

.token.property,
.token.tag,
.token.symbol,
.token.deleted,
.token.important {
  color: hsl(5, 74%, 59%);
}

.token.selector,
.token.string,
.token.char,
.token.builtin,
.token.inserted,
.token.regex,
.token.attr-value,
.token.attr-value > .token.punctuation {
  color: hsl(119, 34%, 47%);
}

.token.variable,
.token.operator,
.token.function {
  color: hsl(221, 87%, 60%);
}

.token.url {
  color: hsl(198, 99%, 37%);
}

/* HTML overrides */
.token.attr-value > .token.punctuation.attr-equals,
.token.special-attr > .token.attr-value > .token.value.css {
  color: hsl(230, 8%, 24%);
}

/* CSS overrides */
.language-css .token.selector {
  color: hsl(5, 74%, 59%);
}

.language-css .token.property {
  color: hsl(230, 8%, 24%);
}

.language-css .token.function,
.language-css .token.url > .token.function {
  color: hsl(198, 99%, 37%);
}

.language-css .token.url > .token.string.url {
  color: hsl(119, 34%, 47%);
}

.language-css .token.important,
.language-css .token.atrule .token.rule {
  color: hsl(301, 63%, 40%);
}

/* JS overrides */
.language-javascript .token.operator {
  color: hsl(301, 63%, 40%);
}

.language-javascript .token.template-string > .token.interpolation > .token.interpolation-punctuation.punctuation {
  color: hsl(344, 84%, 43%);
}

/* JSON overrides */
.language-json .token.operator {
  color: hsl(230, 8%, 24%);
}

.language-json .token.null.keyword {
  color: hsl(35, 99%, 36%);
}

/* MD overrides */
.language-markdown .token.url,
.language-markdown .token.url > .token.operator,
.language-markdown .token.url-reference.url > .token.string {
  color: hsl(230, 8%, 24%);
}

.language-markdown .token.url > .token.content {
  color: hsl(221, 87%, 60%);
}

.language-markdown .token.url > .token.url,
.language-markdown .token.url-reference.url {
  color: hsl(198, 99%, 37%);
}

.language-markdown .token.blockquote.punctuation,
.language-markdown .token.hr.punctuation {
  color: hsl(230, 4%, 64%);
  font-style: italic;
}

.language-markdown .token.code-snippet {
  color: hsl(119, 34%, 47%);
}

.language-markdown .token.bold .token.content {
  color: hsl(35, 99%, 36%);
}

.language-markdown .token.italic .token.content {
  color: hsl(301, 63%, 40%);
}

.language-markdown .token.strike .token.content,
.language-markdown .token.strike .token.punctuation,
.language-markdown .token.list.punctuation,
.language-markdown .token.title.important > .token.punctuation {
  color: hsl(5, 74%, 59%);
}

/* General */
.token.bold {
  font-weight: bold;
}

.token.comment,
.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}

.token.namespace {
  opacity: 0.8;
}

/* Plugin overrides */
/* Selectors should have higher specificity than those in the plugins' default stylesheets */
/* Show Invisibles plugin overrides */
.token.token.tab:not(:empty):before,
.token.token.cr:before,
.token.token.lf:before,
.token.token.space:before {
  color: hsla(230, 8%, 24%, 0.2);
}

/* Toolbar plugin overrides */
/* Space out all buttons and move them away from the right edge of the code block */
div.code-toolbar > .toolbar.toolbar > .toolbar-item {
  margin-right: 0.4em;
}

/* Styling the buttons */
div.code-toolbar > .toolbar.toolbar > .toolbar-item > button,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > a,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > span {
  background: hsl(230, 1%, 90%);
  color: hsl(230, 6%, 44%);
  padding: 0.1em 0.4em;
  border-radius: 0.3em;
}

div.code-toolbar > .toolbar.toolbar > .toolbar-item > button:hover,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > button:focus,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > a:hover,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > a:focus,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > span:hover,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > span:focus {
  background: hsl(230, 1%, 78%); /* custom: darken(--syntax-bg, 20%) */
  color: hsl(230, 8%, 24%);
}

/* Line Highlight plugin overrides */
/* The highlighted line itself */
.line-highlight.line-highlight {
  background: hsla(230, 8%, 24%, 0.05);
}

/* Default line numbers in Line Highlight plugin */
.line-highlight.line-highlight:before,
.line-highlight.line-highlight[data-end]:after {
  background: hsl(230, 1%, 90%);
  color: hsl(230, 8%, 24%);
  padding: 0.1em 0.6em;
  border-radius: 0.3em;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2); /* same as Toolbar plugin default */
}

/* Hovering over a linkable line number (in the gutter area) */
/* Requires Line Numbers plugin as well */
pre[id].linkable-line-numbers.linkable-line-numbers span.line-numbers-rows > span:hover:before {
  background-color: hsla(230, 8%, 24%, 0.05);
}

/* Line Numbers and Command Line plugins overrides */
/* Line separating gutter from coding area */
.line-numbers.line-numbers .line-numbers-rows,
.command-line .command-line-prompt {
  border-right-color: hsla(230, 8%, 24%, 0.2);
}

/* Stuff in the gutter */
.line-numbers .line-numbers-rows > span:before,
.command-line .command-line-prompt > span:before {
  color: hsl(230, 1%, 62%);
}

/* Match Braces plugin overrides */
/* Note: Outline colour is inherited from the braces */
.rainbow-braces .token.token.punctuation.brace-level-1,
.rainbow-braces .token.token.punctuation.brace-level-5,
.rainbow-braces .token.token.punctuation.brace-level-9 {
  color: hsl(5, 74%, 59%);
}

.rainbow-braces .token.token.punctuation.brace-level-2,
.rainbow-braces .token.token.punctuation.brace-level-6,
.rainbow-braces .token.token.punctuation.brace-level-10 {
  color: hsl(119, 34%, 47%);
}

.rainbow-braces .token.token.punctuation.brace-level-3,
.rainbow-braces .token.token.punctuation.brace-level-7,
.rainbow-braces .token.token.punctuation.brace-level-11 {
  color: hsl(221, 87%, 60%);
}

.rainbow-braces .token.token.punctuation.brace-level-4,
.rainbow-braces .token.token.punctuation.brace-level-8,
.rainbow-braces .token.token.punctuation.brace-level-12 {
  color: hsl(301, 63%, 40%);
}

/* Diff Highlight plugin overrides */
/* Taken from https://github.com/atom/github/blob/master/styles/variables.less */
pre.diff-highlight > code .token.token.deleted:not(.prefix),
pre > code.diff-highlight .token.token.deleted:not(.prefix) {
  background-color: hsla(353, 100%, 66%, 0.15);
}

pre.diff-highlight > code .token.token.deleted:not(.prefix)::-moz-selection,
pre.diff-highlight > code .token.token.deleted:not(.prefix) *::-moz-selection,
pre > code.diff-highlight .token.token.deleted:not(.prefix)::-moz-selection,
pre > code.diff-highlight .token.token.deleted:not(.prefix) *::-moz-selection {
  background-color: hsla(353, 95%, 66%, 0.25);
}

pre.diff-highlight > code .token.token.deleted:not(.prefix)::selection,
pre.diff-highlight > code .token.token.deleted:not(.prefix) *::selection,
pre > code.diff-highlight .token.token.deleted:not(.prefix)::selection,
pre > code.diff-highlight .token.token.deleted:not(.prefix) *::selection {
  background-color: hsla(353, 95%, 66%, 0.25);
}

pre.diff-highlight > code .token.token.inserted:not(.prefix),
pre > code.diff-highlight .token.token.inserted:not(.prefix) {
  background-color: hsla(137, 100%, 55%, 0.15);
}

pre.diff-highlight > code .token.token.inserted:not(.prefix)::-moz-selection,
pre.diff-highlight > code .token.token.inserted:not(.prefix) *::-moz-selection,
pre > code.diff-highlight .token.token.inserted:not(.prefix)::-moz-selection,
pre > code.diff-highlight .token.token.inserted:not(.prefix) *::-moz-selection {
  background-color: hsla(135, 73%, 55%, 0.25);
}

pre.diff-highlight > code .token.token.inserted:not(.prefix)::selection,
pre.diff-highlight > code .token.token.inserted:not(.prefix) *::selection,
pre > code.diff-highlight .token.token.inserted:not(.prefix)::selection,
pre > code.diff-highlight .token.token.inserted:not(.prefix) *::selection {
  background-color: hsla(135, 73%, 55%, 0.25);
}

/* Previewers plugin overrides */
/* Based on https://github.com/atom-community/atom-ide-datatip/blob/master/styles/atom-ide-datatips.less and https://github.com/atom/atom/blob/master/packages/one-light-ui */
/* Border around popup */
.prism-previewer.prism-previewer:before,
.prism-previewer-gradient.prism-previewer-gradient div {
  border-color: hsl(0, 0, 95%);
}

/* Angle and time should remain as circles and are hence not included */
.prism-previewer-color.prism-previewer-color:before,
.prism-previewer-gradient.prism-previewer-gradient div,
.prism-previewer-easing.prism-previewer-easing:before {
  border-radius: 0.3em;
}

/* Triangles pointing to the code */
.prism-previewer.prism-previewer:after {
  border-top-color: hsl(0, 0, 95%);
}

.prism-previewer-flipped.prism-previewer-flipped.after {
  border-bottom-color: hsl(0, 0, 95%);
}

/* Background colour within the popup */
.prism-previewer-angle.prism-previewer-angle:before,
.prism-previewer-time.prism-previewer-time:before,
.prism-previewer-easing.prism-previewer-easing {
  background: hsl(0, 0%, 100%);
}

/* For angle, this is the positive area (eg. 90deg will display one quadrant in this colour) */
/* For time, this is the alternate colour */
.prism-previewer-angle.prism-previewer-angle circle,
.prism-previewer-time.prism-previewer-time circle {
  stroke: hsl(230, 8%, 24%);
  stroke-opacity: 1;
}

/* Stroke colours of the handle, direction point, and vector itself */
.prism-previewer-easing.prism-previewer-easing circle,
.prism-previewer-easing.prism-previewer-easing path,
.prism-previewer-easing.prism-previewer-easing line {
  stroke: hsl(230, 8%, 24%);
}

/* Fill colour of the handle */
.prism-previewer-easing.prism-previewer-easing circle {
  fill: transparent;
}

html,
body, .app-sidebar .nav-menu {
  /* scrollbar height and width */
  /* Track background color */
  /* Handle */
}
html::-webkit-scrollbar,
body::-webkit-scrollbar, .app-sidebar .nav-menu::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track, .app-sidebar .nav-menu::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb, .app-sidebar .nav-menu::-webkit-scrollbar-thumb {
  visibility: hidden;
  border: 2px solid transparent;
  border-radius: 5px;
}
html:hover::-webkit-scrollbar-thumb,
body:hover::-webkit-scrollbar-thumb, .app-sidebar .nav-menu:hover::-webkit-scrollbar-thumb {
  visibility: visible;
}

.loading {
  overflow: hidden;
}
.loading .loader-wrapper {
  display: block;
}
.loading .right-content {
  opacity: 0;
  visibility: hidden;
}

.loader-wrapper {
  display: none;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 40vh;
  color: #867e7e;
  transform: translatex(-50%);
}

.ft-loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #3E74DE;
  top: 50%;
  animation: loader 2s infinite ease;
}
.ft-loader .loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #3E74DE;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader-inner {
  0% {
    height: 0%;
  }
  25% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
.search-wrapper {
  flex-grow: 1;
  padding-right: 35px;
  text-align: center;
  width: 100%;
}

.count-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  right: 50px;
}
.count-wrapper .search-result-count {
  background: #3E74DE;
  padding: 0 6px;
  border-radius: 20px;
  color: #fff;
  font-size: 13px;
}

.search {
  position: relative;
  display: inline-block;
  width: 600px;
  max-width: 100%;
}
.search input {
  width: 100%;
  height: 50px;
  background: #eeeff2;
  border: 1px solid #ebedf5;
  border-radius: 5px;
  padding: 0 45px 0 15px;
}
.search .app-btn-search {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 10px;
  border: none;
  background-color: transparent;
}

.search-commands {
  padding: 6px 10px;
  font-size: 13px;
}

.search-command-key {
  padding-left: 1px;
  font-size: 0.875rem;
  background-color: rgba(0, 0, 0, 0.1);
  background-image: none;
  box-shadow: none;
  display: inline-block;
}

.no-search-results {
  padding: 30px 15px;
  text-align: center;
}

.search-title {
  padding: 10px 15px 0;
  font-size: 16px;
}

.search-open .search-result {
  display: block;
}

.empty-result .search-commands {
  display: none;
}

.search-result {
  display: none;
  position: absolute;
  top: 100%;
  background: #fff;
  left: 0;
  width: 100%;
  text-align: left;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.search-result .search-result-list {
  max-height: 300px;
  overflow: auto;
}
.search-result ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.search-result ul li {
  border-bottom: 1px solid #f7f5f5;
}
.search-result ul li.active a {
  background-color: #3E74DE;
  color: #fff;
}
.search-result ul li:not(.active) .enter-icon {
  display: none;
}
.search-result ul li:not(.active):hover a {
  background-color: #e4ebfa;
}
.search-result ul li a {
  display: flex;
  padding: 12px 15px;
  text-decoration: none;
  color: #133270;
  font-size: 14px;
  justify-content: space-around;
}
.search-result ul li a span {
  flex-grow: 1;
  padding: 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-result ul li a svg {
  opacity: 0;
  visibility: hidden;
}
.search-result ul li a:hover svg {
  opacity: 1;
  visibility: visible;
}

/* Menu open Style */
.menu-open .app-sidebar {
  left: 0;
}
.menu-open .app-main-outer {
  padding-left: 280px;
}
.menu-open .app-main-outer .top-bar {
  left: 280px;
}

/* App sidebar */
.app-sidebar {
  width: 280px;
  z-index: 11;
  overflow: hidden;
  min-width: 280px;
  padding: 0 1.5rem 1.5rem;
  position: fixed;
  height: 100vh;
  left: -280px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px rgba(166, 175, 195, 0.25);
  box-shadow: 0 1px 2px rgba(166, 175, 195, 0.25);
}
.app-sidebar .nav-menu {
  max-height: calc(100vh - 130px);
  overflow: auto;
  margin-top: 30px;
}
.app-sidebar .nav-menu::-webkit-scrollbar-thumb {
  background: #bcc0c4;
}
.app-sidebar .nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.app-sidebar .nav-menu > ul {
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
}
.app-sidebar .nav-menu > ul li a {
  text-decoration: none;
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.app-sidebar .nav-menu > ul li a[href="#"] {
  pointer-events: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.app-sidebar .nav-menu > ul li a:not([href="#"]) {
  cursor: pointer;
}
.app-sidebar .nav-menu > ul li a .bi {
  text-align: center;
  width: 34px;
  height: 34px;
  line-height: 34px;
  font-size: 1.2rem;
  transition: color 300ms;
  color: #3E74DE;
}
.app-sidebar .nav-menu > ul ul {
  padding: 0 0 0 2rem;
  position: relative;
}
.app-sidebar .nav-menu > ul ul::before {
  content: "";
  height: 100%;
  opacity: 1;
  width: 2px;
  background: #e8e8e8;
  position: absolute;
  left: 20px;
  top: 0;
  border-radius: 15px;
}
.app-sidebar .nav-menu > ul ul li a {
  color: #5e6770;
  padding: 0 0 0 5px;
  margin: 0.25rem 0;
  line-height: 2rem;
  font-size: 0.88rem;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.app-sidebar .nav-menu > ul ul li a.active {
  color: #3E74DE;
  background: #e0f3ff;
  font-weight: 700;
  pointer-events: none;
}
.app-sidebar .nav-menu > ul > li > a {
  line-height: 2.4rem;
  height: 2.4rem;
  padding: 0 0 0 5px;
  position: relative;
  border-radius: 0.25rem;
  color: #343a40;
  white-space: nowrap;
  margin: 0.1rem 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
}

.app-logo {
  height: 70px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f4f5f7;
}
.app-logo a {
  display: inline-block;
  margin-left: 12px;
}
.app-logo svg {
  width: 110px;
}

.ft-ds-get-code {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ffffff;
  z-index: 999;
  color: #3e74de;
  height: 50px;
  width: 50px;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ft-ds-get-code svg {
  width: 24px;
  fill: #3E74DE;
}

.ftds-get-code-modal h5 {
  margin-bottom: 0;
}
.ftds-get-code-modal .ftds-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ftds-btn-copy-to-clipboard {
  border: none;
  font-size: 18px;
  background-color: transparent;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  z-index: 1;
}

.ftds-pre-wrapper {
  position: relative;
}

.ftds-code-wrapper pre[class*=language-] {
  margin: 0;
}

.modal-header {
  border-bottom: none;
}

html,
body {
  font-size: 16px;
}
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: #bcc0c4;
}

.app {
  display: flex;
}

body {
  background: #F4F5F7;
}

.app-main-outer {
  flex: 1;
  padding-left: 0;
}
.app-main-outer .top-bar {
  height: 70px;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 9;
  background: #fff;
}
.app-main-outer .top-bar + * {
  margin-top: 70px;
}
.app-main-outer .top-bar .inner-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
.app-main-outer .top-bar .inner-wrapper .sidebar-toggler {
  border: none;
  background: initial;
  font-size: 25px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-main-outer .top-bar .inner-wrapper .sidebar-toggler:hover {
  background-color: rgba(62, 116, 222, 0.1);
}
.app-main-outer .right-container {
  flex: 1;
  position: relative;
}

/*# sourceMappingURL=ftds-frame.css.map */