/* stylelint-disable */
/**
 * Pulled from 'easymde/src/css/easymde.css' and
 * modified by wrapping all selectors to only affect the
 * CodeMirror used in the MarkdownEditor.
 *
 * easymde v2.6.0
 * Copyright Jeroen Akkerman
 * @link
 * @license MIT
 */

.markdown-editor .CodeMirror {
  box-sizing: border-box;
  height: auto;
  border: 1px solid #ddd;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 10px;
  font: inherit;
  z-index: 1;
  word-wrap: break-word;
}

.markdown-editor .CodeMirror-scroll {
  cursor: text;
}

.markdown-editor .CodeMirror-fullscreen {
  background: #fff;
  position: fixed !important;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  z-index: 9;
  /*
    border-right and border-bottom-right-radius have been moved to .CodeMirror-sided
    The intention was to remove the right border and radius when in fullscreen
    and with the live preview visible
    */
}

.markdown-editor .CodeMirror-sided {
  width: 50% !important;
  border-right: 0;
  border-bottom-right-radius: 0;
}

.markdown-editor .CodeMirror-placeholder {
  opacity: 0.5;
}

.markdown-editor .CodeMirror-focused .CodeMirror-selected {
  background: #d9d9d9;
}

.markdown-editor .editor-toolbar {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  padding: 0 10px;
  border-top: 1px solid #bbb;
  border-left: 1px solid #bbb;
  border-right: 1px solid #bbb;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.markdown-editor .editor-toolbar:after,
.markdown-editor .editor-toolbar:before {
  display: block;
  content: ' ';
  height: 1px;
}

.markdown-editor .editor-toolbar:before {
  margin-bottom: 8px;
}

.markdown-editor .editor-toolbar:after {
  margin-top: 8px;
}

.markdown-editor .editor-toolbar.fullscreen {
  width: 100%;
  height: 50px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding-top: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
  background: #fff;
  border: 0;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 9;
}

.markdown-editor .editor-toolbar.fullscreen::before {
  width: 20px;
  height: 50px;
  background: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0%, rgba(255, 255, 255, 1)),
    color-stop(100%, rgba(255, 255, 255, 0))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -ms-linear-gradient(
    left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}

.markdown-editor .editor-toolbar.fullscreen::after {
  width: 20px;
  height: 50px;
  background: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0%, rgba(255, 255, 255, 0)),
    color-stop(100%, rgba(255, 255, 255, 1))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -ms-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  position: fixed;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
}

.markdown-editor .editor-toolbar button {
  background: transparent;
  display: inline-block;
  text-align: center;
  text-decoration: none !important;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
}

.markdown-editor .editor-toolbar button.active,
.markdown-editor .editor-toolbar button:hover {
  background: #fcfcfc;
  border-color: #95a5a6;
}

.markdown-editor .editor-toolbar i.separator {
  display: inline-block;
  width: 0;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #fff;
  color: transparent;
  text-indent: -10px;
  margin: 0 6px;
}

.markdown-editor .editor-toolbar button:after {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 65%;
  vertical-align: text-bottom;
  position: relative;
  top: 2px;
}

.markdown-editor .editor-toolbar button.heading-1:after {
  content: '1';
}

.markdown-editor .editor-toolbar button.heading-2:after {
  content: '2';
}

.markdown-editor .editor-toolbar button.heading-3:after {
  content: '3';
}

.markdown-editor .editor-toolbar button.heading-bigger:after {
  content: '▲';
}

.markdown-editor .editor-toolbar button.heading-smaller:after {
  content: '▼';
}

.markdown-editor .editor-toolbar.disabled-for-preview button:not(.no-disable) {
  opacity: 0.6;
  pointer-events: none;
}

@media only screen and (max-width: 700px) {
  .markdown-editor .editor-toolbar i.no-mobile {
    display: none;
  }
}

.markdown-editor .editor-statusbar {
  padding: 8px 10px;
  font-size: 12px;
  color: #959694;
  text-align: right;
}

.markdown-editor .editor-statusbar span {
  display: inline-block;
  min-width: 4em;
  margin-left: 1em;
}

.markdown-editor .editor-statusbar .lines:before {
  content: 'lines: ';
}

.markdown-editor .editor-statusbar .words:before {
  content: 'words: ';
}

.markdown-editor .editor-statusbar .characters:before {
  content: 'characters: ';
}

.markdown-editor .editor-preview {
  padding: 10px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fafafa;
  z-index: 7;
  overflow: auto;
  display: none;
  box-sizing: border-box;
}

.markdown-editor .editor-preview-side {
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 50%;
  top: 50px;
  right: 0;
  background: #fafafa;
  z-index: 9;
  overflow: auto;
  display: none;
  box-sizing: border-box;
  border: 1px solid #ddd;
  word-wrap: break-word;
}

.markdown-editor .editor-preview-active-side {
  display: block;
}

.markdown-editor .editor-preview-active {
  display: block;
}

.markdown-editor .editor-preview > p,
.markdown-editor .editor-preview-side > p {
  margin-top: 0;
}

.markdown-editor .editor-preview pre,
.markdown-editor .editor-preview-side pre {
  background: #eee;
  margin-bottom: 10px;
}

.markdown-editor .editor-preview table td,
.markdown-editor .editor-preview table th,
.markdown-editor .editor-preview-side table td,
.markdown-editor .editor-preview-side table th {
  border: 1px solid #ddd;
  padding: 5px;
}

.markdown-editor .cm-s-easymde .cm-tag {
  color: #63a35c;
}

.markdown-editor .cm-s-easymde .cm-attribute {
  color: #795da3;
}

.markdown-editor .cm-s-easymde .cm-string {
  color: #183691;
}

.markdown-editor .cm-s-easymde .cm-header-1 {
  font-size: 200%;
  line-height: 200%;
}

.markdown-editor .cm-s-easymde .cm-header-2 {
  font-size: 160%;
  line-height: 160%;
}

.markdown-editor .cm-s-easymde .cm-header-3 {
  font-size: 125%;
  line-height: 125%;
}

.markdown-editor .cm-s-easymde .cm-header-4 {
  font-size: 110%;
  line-height: 110%;
}

.markdown-editor .cm-s-easymde .cm-comment {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
}

.markdown-editor .cm-s-easymde .cm-link {
  color: #7f8c8d;
}

.markdown-editor .cm-s-easymde .cm-url {
  color: #aab2b3;
}

.markdown-editor .cm-s-easymde .cm-quote {
  color: #7f8c8d;
  font-style: italic;
}
