/* node_modules/codemirror/lib/codemirror.css */
.CodeMirror {
  font-family: monospace;
  height: 300px;
  color: black;
  direction: ltr;
}
.CodeMirror-lines {
  padding: 4px 0;
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  padding: 0 4px;
}
.CodeMirror-scrollbar-filler,
.CodeMirror-gutter-filler {
  background-color: white;
}
.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;
}
.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
.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 .CodeMirror-line::selection,
.cm-fat-cursor .CodeMirror-line > span::selection,
.cm-fat-cursor .CodeMirror-line > span > span::selection {
  background: transparent;
}
.cm-fat-cursor .CodeMirror-line::-moz-selection,
.cm-fat-cursor .CodeMirror-line > span::-moz-selection,
.cm-fat-cursor .CodeMirror-line > span > span::-moz-selection {
  background: transparent;
}
.cm-fat-cursor {
  caret-color: transparent;
}
@-moz-keyframes blink {
  0% {
  }
  50% {
    background-color: transparent;
  }
  100% {
  }
}
@-webkit-keyframes blink {
  0% {
  }
  50% {
    background-color: transparent;
  }
  100% {
  }
}
@keyframes blink {
  0% {
  }
  50% {
    background-color: transparent;
  }
  100% {
  }
}
.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;
}
.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;
}
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;
}
.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}
.CodeMirror-scroll {
  overflow: scroll !important;
  margin-bottom: -50px;
  margin-right: -50px;
  padding-bottom: 50px;
  height: 100%;
  outline: none;
  position: relative;
  z-index: 0;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 50px solid transparent;
}
.CodeMirror-vscrollbar,
.CodeMirror-hscrollbar,
.CodeMirror-scrollbar-filler,
.CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
  outline: 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 ::selection {
  background-color: transparent;
}
.CodeMirror-gutter-wrapper ::-moz-selection {
  background-color: transparent;
}
.CodeMirror-lines {
  cursor: text;
  min-height: 1px;
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  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;
}
.CodeMirror-widget {
}
.CodeMirror-rtl pre {
  direction: rtl;
}
.CodeMirror-code {
  outline: none;
}
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-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::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);
}
.cm-force-border {
  padding-right: .1px;
}
@media print {
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}
.cm-tab-wrap-hack:after {
  content: "";
}
span.CodeMirror-selectedtext {
  background: none;
}

/* node_modules/codemirror/theme/eclipse.css */
.cm-s-eclipse span.cm-meta {
  color: #FF1717;
}
.cm-s-eclipse span.cm-keyword {
  line-height: 1em;
  font-weight: bold;
  color: #7F0055;
}
.cm-s-eclipse span.cm-atom {
  color: #219;
}
.cm-s-eclipse span.cm-number {
  color: #164;
}
.cm-s-eclipse span.cm-def {
  color: #00f;
}
.cm-s-eclipse span.cm-variable {
  color: black;
}
.cm-s-eclipse span.cm-variable-2 {
  color: #0000C0;
}
.cm-s-eclipse span.cm-variable-3,
.cm-s-eclipse span.cm-type {
  color: #0000C0;
}
.cm-s-eclipse span.cm-property {
  color: black;
}
.cm-s-eclipse span.cm-operator {
  color: black;
}
.cm-s-eclipse span.cm-comment {
  color: #3F7F5F;
}
.cm-s-eclipse span.cm-string {
  color: #2A00FF;
}
.cm-s-eclipse span.cm-string-2 {
  color: #f50;
}
.cm-s-eclipse span.cm-qualifier {
  color: #555;
}
.cm-s-eclipse span.cm-builtin {
  color: #30a;
}
.cm-s-eclipse span.cm-bracket {
  color: #cc7;
}
.cm-s-eclipse span.cm-tag {
  color: #170;
}
.cm-s-eclipse span.cm-attribute {
  color: #00c;
}
.cm-s-eclipse span.cm-link {
  color: #219;
}
.cm-s-eclipse span.cm-error {
  color: #f00;
}
.cm-s-eclipse .CodeMirror-activeline-background {
  background: #e8f2ff;
}
.cm-s-eclipse .CodeMirror-matchingbracket {
  outline: 1px solid grey;
  color: black !important;
}

/* node_modules/codemirror/theme/mbo.css */
.cm-s-mbo.CodeMirror {
  background: #2c2c2c;
  color: #ffffec;
}
.cm-s-mbo div.CodeMirror-selected {
  background: #716C62;
}
.cm-s-mbo .CodeMirror-line::selection,
.cm-s-mbo .CodeMirror-line > span::selection,
.cm-s-mbo .CodeMirror-line > span > span::selection {
  background: rgba(113, 108, 98, .99);
}
.cm-s-mbo .CodeMirror-line::-moz-selection,
.cm-s-mbo .CodeMirror-line > span::-moz-selection,
.cm-s-mbo .CodeMirror-line > span > span::-moz-selection {
  background: rgba(113, 108, 98, .99);
}
.cm-s-mbo .CodeMirror-gutters {
  background: #4e4e4e;
  border-right: 0px;
}
.cm-s-mbo .CodeMirror-guttermarker {
  color: white;
}
.cm-s-mbo .CodeMirror-guttermarker-subtle {
  color: grey;
}
.cm-s-mbo .CodeMirror-linenumber {
  color: #dadada;
}
.cm-s-mbo .CodeMirror-cursor {
  border-left: 1px solid #ffffec;
}
.cm-s-mbo span.cm-comment {
  color: #95958a;
}
.cm-s-mbo span.cm-atom {
  color: #00a8c6;
}
.cm-s-mbo span.cm-number {
  color: #00a8c6;
}
.cm-s-mbo span.cm-property,
.cm-s-mbo span.cm-attribute {
  color: #9ddfe9;
}
.cm-s-mbo span.cm-keyword {
  color: #ffb928;
}
.cm-s-mbo span.cm-string {
  color: #ffcf6c;
}
.cm-s-mbo span.cm-string.cm-property {
  color: #ffffec;
}
.cm-s-mbo span.cm-variable {
  color: #ffffec;
}
.cm-s-mbo span.cm-variable-2 {
  color: #00a8c6;
}
.cm-s-mbo span.cm-def {
  color: #ffffec;
}
.cm-s-mbo span.cm-bracket {
  color: #fffffc;
  font-weight: bold;
}
.cm-s-mbo span.cm-tag {
  color: #9ddfe9;
}
.cm-s-mbo span.cm-link {
  color: #f54b07;
}
.cm-s-mbo span.cm-error {
  border-bottom: #636363;
  color: #ffffec;
}
.cm-s-mbo span.cm-qualifier {
  color: #ffffec;
}
.cm-s-mbo .CodeMirror-activeline-background {
  background: #494b41;
}
.cm-s-mbo .CodeMirror-matchingbracket {
  color: #ffb928 !important;
}
.cm-s-mbo .CodeMirror-matchingtag {
  background: rgba(255, 255, 255, .37);
}

/* node_modules/codemirror/theme/material.css */
.cm-s-material.CodeMirror {
  background-color: #263238;
  color: #EEFFFF;
}
.cm-s-material .CodeMirror-gutters {
  background: #263238;
  color: #546E7A;
  border: none;
}
.cm-s-material .CodeMirror-guttermarker,
.cm-s-material .CodeMirror-guttermarker-subtle,
.cm-s-material .CodeMirror-linenumber {
  color: #546E7A;
}
.cm-s-material .CodeMirror-cursor {
  border-left: 1px solid #FFCC00;
}
.cm-s-material.cm-fat-cursor .CodeMirror-cursor {
  background-color: #5d6d5c80 !important;
}
.cm-s-material .cm-animate-fat-cursor {
  background-color: #5d6d5c80 !important;
}
.cm-s-material div.CodeMirror-selected {
  background: rgba(128, 203, 196, 0.2);
}
.cm-s-material.CodeMirror-focused div.CodeMirror-selected {
  background: rgba(128, 203, 196, 0.2);
}
.cm-s-material .CodeMirror-line::selection,
.cm-s-material .CodeMirror-line > span::selection,
.cm-s-material .CodeMirror-line > span > span::selection {
  background: rgba(128, 203, 196, 0.2);
}
.cm-s-material .CodeMirror-line::-moz-selection,
.cm-s-material .CodeMirror-line > span::-moz-selection,
.cm-s-material .CodeMirror-line > span > span::-moz-selection {
  background: rgba(128, 203, 196, 0.2);
}
.cm-s-material .CodeMirror-activeline-background {
  background: rgba(0, 0, 0, 0.5);
}
.cm-s-material .cm-keyword {
  color: #C792EA;
}
.cm-s-material .cm-operator {
  color: #89DDFF;
}
.cm-s-material .cm-variable-2 {
  color: #EEFFFF;
}
.cm-s-material .cm-variable-3,
.cm-s-material .cm-type {
  color: #f07178;
}
.cm-s-material .cm-builtin {
  color: #FFCB6B;
}
.cm-s-material .cm-atom {
  color: #F78C6C;
}
.cm-s-material .cm-number {
  color: #FF5370;
}
.cm-s-material .cm-def {
  color: #82AAFF;
}
.cm-s-material .cm-string {
  color: #C3E88D;
}
.cm-s-material .cm-string-2 {
  color: #f07178;
}
.cm-s-material .cm-comment {
  color: #546E7A;
}
.cm-s-material .cm-variable {
  color: #f07178;
}
.cm-s-material .cm-tag {
  color: #FF5370;
}
.cm-s-material .cm-meta {
  color: #FFCB6B;
}
.cm-s-material .cm-attribute {
  color: #C792EA;
}
.cm-s-material .cm-property {
  color: #C792EA;
}
.cm-s-material .cm-qualifier {
  color: #DECB6B;
}
.cm-s-material .cm-variable-3,
.cm-s-material .cm-type {
  color: #DECB6B;
}
.cm-s-material .cm-error {
  color: rgba(255, 255, 255, 1.0);
  background-color: #FF5370;
}
.cm-s-material .CodeMirror-matchingbracket {
  text-decoration: underline;
  color: white !important;
}

/* node_modules/@ng-select/ng-select/themes/material.theme.css */
.ng-select {
  padding-bottom: 1.25em;
}
.ng-select.ng-select-disabled .ng-select-container:after {
  border-bottom-color: rgba(0, 0, 0, 0);
  background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.42) 33%,
      transparent 0%);
  background-size: 4px 1px;
  background-repeat: repeat-x;
}
.ng-select.ng-select-disabled .ng-select-container .ng-value-container .ng-value {
  color: rgba(0, 0, 0, .38);
}
.ng-select.ng-select-disabled .ng-select-container .ng-value-container .ng-placeholder {
  color: rgba(0, 0, 0, .38);
}
.ng-select.ng-select-disabled .ng-arrow-wrapper .ng-arrow,
.ng-select.ng-select-disabled .ng-clear-wrapper {
  color: rgba(0, 0, 0, .38);
}
.ng-select.ng-select-focused .ng-select-container:after {
  border-color: #3f51b5;
  border-width: 2px;
}
.ng-select.ng-select-focused .ng-select-container.ng-appearance-outline:after,
.ng-select.ng-select-focused .ng-select-container.ng-appearance-outline:hover:after {
  border-color: #3f51b5;
  border-width: 2px;
}
.ng-select.ng-select-focused .ng-select-container .ng-value-container .ng-placeholder {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);
  color: #3f51b5;
}
.ng-select.ng-select-focused .ng-select-container .ng-arrow-wrapper .ng-arrow {
  color: #3f51b5;
}
.ng-select .ng-has-value .ng-placeholder,
.ng-select.ng-select-filtered .ng-select-container .ng-placeholder {
  display: initial;
}
.ng-select .ng-has-value .ng-placeholder,
.ng-select.ng-select-opened .ng-placeholder {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);
}
.ng-select .ng-select-container {
  color: rgba(0, 0, 0, .87);
  align-items: baseline;
  min-height: 51.5px;
}
.ng-select .ng-select-container:after {
  border-bottom: thin solid rgba(0, 0, 0, .42);
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  transition: border-color .3s cubic-bezier(0.55, 0, 0.55, 0.2);
}
.ng-select .ng-select-container.ng-appearance-outline {
  padding: 0 .5em;
  min-height: 60px;
}
.ng-select .ng-select-container.ng-appearance-outline:after {
  border: solid 1px rgba(0, 0, 0, .12);
  border-radius: 5px;
  height: calc(100% - .5em);
  pointer-events: none;
  transition: border-color .3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ng-select .ng-select-container.ng-appearance-outline:hover:after {
  border-color: rgba(0, 0, 0, .87);
  border-width: 2px;
}
.ng-select .ng-select-container.ng-appearance-outline .ng-placeholder {
  padding: 0 .25em;
  background-color: #fff;
  z-index: 1;
}
.ng-select .ng-select-container.ng-appearance-outline .ng-value {
  padding-left: .25em;
}
.ng-select .ng-select-container .ng-value-container {
  align-items: stretch;
  padding: .4375em 0;
  border-top: .84375em solid rgba(0, 0, 0, 0);
}
.ng-select .ng-select-container .ng-value-container .ng-placeholder {
  position: absolute;
  color: rgba(0, 0, 0, .54);
  transform-origin: left 0;
  transition:
    transform .4s cubic-bezier(0.25, 0.8, 0.25, 1),
    color .4s cubic-bezier(0.25, 0.8, 0.25, 1),
    width .4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
[dir=rtl] .ng-select .ng-select-container .ng-value-container .ng-placeholder {
  transform-origin: right 0;
}
.ng-select .ng-select-container .ng-value-container .ng-input {
  bottom: .4375em;
}
.ng-select.ng-select-single .ng-select-container.ng-appearance-outline .ng-arrow-wrapper {
  bottom: 17px;
}
.ng-select.ng-select-single .ng-select-container.ng-appearance-outline .ng-clear-wrapper {
  bottom: 14px;
}
.ng-select.ng-select-single .ng-select-container .ng-arrow-wrapper {
  align-self: flex-end;
  bottom: 9px;
}
.ng-select.ng-select-single .ng-select-container .ng-clear-wrapper {
  align-self: flex-end;
  bottom: 7px;
}
.ng-select.ng-select-multiple.ng-select-disabled .ng-select-container .ng-value-container .ng-value {
  background-color: rgba(0, 0, 0, .12);
  color: rgba(0, 0, 0, .26);
}
.ng-select.ng-select-multiple.ng-select-disabled .ng-appearance-outline:after,
.ng-select.ng-select-multiple.ng-select-disabled .ng-appearance-outline:hover:after {
  background-image: none;
  border: dotted 1px rgba(0, 0, 0, .12);
}
.ng-select.ng-select-multiple .ng-select-container.ng-appearance-outline.ng-has-value .ng-arrow-wrapper,
.ng-select.ng-select-multiple .ng-select-container.ng-appearance-outline.ng-has-value .ng-clear-wrapper {
  border-top: none;
}
.ng-select.ng-select-multiple .ng-select-container.ng-appearance-outline .ng-arrow-wrapper {
  top: 0;
}
.ng-select.ng-select-multiple .ng-select-container.ng-appearance-outline .ng-clear-wrapper {
  top: 4px;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value {
  background-color: #3f51b5;
  border-radius: 2px;
  color: #fff;
  padding: 2px 5px;
  margin: 0 .4375em .4375em 0;
}
[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value {
  margin: 0 0 .4375em .4375em;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled {
  background-color: rgba(0, 0, 0, .12);
  color: rgba(0, 0, 0, .26);
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-label {
  font-size: 14px;
  font-weight: 500;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon {
  color: hsla(0, 0%, 100%, .54);
  padding-right: 5px;
}
[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon {
  padding-left: 5px;
  padding-right: 0;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon:hover {
  color: hsla(0, 0%, 100%, .87);
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input {
  line-height: 1.375em;
}
.ng-select.ng-select-multiple .ng-select-container.ng-has-value {
  align-items: center;
}
.ng-select.ng-select-multiple .ng-select-container.ng-has-value .ng-value-container {
  padding-bottom: 0;
  padding-top: .1875em;
}
.ng-select.ng-select-multiple .ng-select-container.ng-has-value .ng-clear-wrapper,
.ng-select.ng-select-multiple .ng-select-container.ng-has-value .ng-arrow-wrapper {
  border-top: .84375em solid rgba(0, 0, 0, 0);
}
.ng-select .ng-clear-wrapper {
  color: rgba(0, 0, 0, .54);
}
.ng-select .ng-clear-wrapper:hover {
  color: rgba(0, 0, 0, .87);
}
.ng-select .ng-clear-wrapper:focus {
  color: rgba(0, 0, 0, .87);
  outline: none;
}
.ng-select .ng-arrow-wrapper {
  bottom: 2px;
}
.ng-select .ng-arrow-wrapper .ng-arrow {
  border-left: 5px solid rgba(0, 0, 0, 0);
  border-right: 5px solid rgba(0, 0, 0, 0);
  border-top: 5px solid;
  margin: 0 4px;
  color: rgba(0, 0, 0, .54);
}
.ng-select .ng-spinner-zone {
  top: 3px;
}
.ng-dropdown-panel {
  background: #fff;
  left: 0;
}
.ng-dropdown-panel.ng-select-top {
  bottom: calc(100% - .84375em);
  box-shadow:
    0 -5px 5px -3px rgba(0, 0, 0, .2),
    0 -8px 10px 1px rgba(0, 0, 0, .14),
    0 -3px 14px 2px rgba(0, 0, 0, .12);
}
.ng-dropdown-panel.ng-select-right {
  left: 100%;
  top: calc(0% + .84375em);
  box-shadow:
    0 -5px 5px -3px rgba(0, 0, 0, .2),
    0 -8px 10px 1px rgba(0, 0, 0, .14),
    0 -3px 14px 2px rgba(0, 0, 0, .12);
  margin-left: 4px;
}
.ng-dropdown-panel.ng-select-bottom {
  top: calc(100% - 1.25em);
  box-shadow:
    0 5px 5px -3px rgba(0, 0, 0, .2),
    0 8px 10px 1px rgba(0, 0, 0, .14),
    0 3px 14px 2px rgba(0, 0, 0, .12);
}
.ng-dropdown-panel.ng-select-left {
  left: calc(-100% - 4px);
  top: calc(0% + .84375em);
  box-shadow:
    0 -5px 5px -3px rgba(0, 0, 0, .2),
    0 -8px 10px 1px rgba(0, 0, 0, .14),
    0 -3px 14px 2px rgba(0, 0, 0, .12);
}
.ng-dropdown-panel.multiple .ng-option.selected {
  background: #fff;
}
.ng-dropdown-panel.multiple .ng-option.marked {
  background: rgba(0, 0, 0, .04);
}
.ng-dropdown-panel .ng-dropdown-header {
  border-bottom: 1px solid rgba(0, 0, 0, .12);
  padding: 0 16px;
  line-height: 3em;
  min-height: 3em;
}
.ng-dropdown-panel .ng-dropdown-footer {
  border-top: 1px solid rgba(0, 0, 0, .12);
  padding: 0 16px;
  line-height: 3em;
  min-height: 3em;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  line-height: 3em;
  height: 3em;
  padding: 0 16px;
  color: rgba(0, 0, 0, .54);
  font-weight: 500;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-marked {
  background: rgba(0, 0, 0, .04);
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-disabled {
  cursor: default;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected {
  background: rgba(0, 0, 0, .12);
  color: #3f51b5;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
  line-height: 3em;
  min-height: 3em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 16px;
  text-decoration: none;
  position: relative;
  color: rgba(0, 0, 0, .87);
  text-align: left;
}
[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
  text-align: right;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked {
  background: rgba(0, 0, 0, .04);
  color: rgba(0, 0, 0, .87);
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected {
  background: rgba(0, 0, 0, .12);
  color: #3f51b5;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-disabled {
  color: rgba(0, 0, 0, .38);
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child {
  padding-left: 32px;
}
[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child {
  padding-right: 32px;
  padding-left: 0;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label {
  padding-right: 5px;
  font-size: 80%;
  font-weight: 400;
  color: rgba(0, 0, 0, .38);
}
[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label {
  padding-left: 5px;
  padding-right: 0;
}

/* src/assets/styles/highlightjs-atelier-cave-light.css */
.hljs-comment,
.hljs-quote {
  color: #655f6d;
}
.hljs-variable,
.hljs-template-variable,
.hljs-attribute,
.hljs-tag,
.hljs-name,
.hljs-regexp,
.hljs-link,
.hljs-name,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class {
  color: #be4678;
}
.hljs-number,
.hljs-meta,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params {
  color: #aa573c;
}
.hljs-string,
.hljs-symbol,
.hljs-bullet {
  color: #2a9292;
}
.hljs-title,
.hljs-section {
  color: #576ddb;
}
.hljs-keyword,
.hljs-selector-tag {
  color: #955ae7;
}
.hljs-deletion,
.hljs-addition {
  color: #19171c;
  display: inline-block;
  width: 100%;
}
.hljs-deletion {
  background-color: #be4678;
}
.hljs-addition {
  background-color: #2a9292;
}
.hljs {
  display: block;
  overflow-x: auto;
  background: #efecf4;
  color: #585260;
  padding: 0.5em;
}
.hljs-emphasis {
  font-style: italic;
}
.hljs-strong {
  font-weight: bold;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles-QOF5DDMZ.css.map */
