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

/* PADDING */
.CodeMirror-lines {
  padding: 4px 0;
  /* Vertical padding around content */ }

.CodeMirror pre {
  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-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-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7; }

@-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% { } }

/* Can style cursor different in overwrite (non-insert) mode */
.cm-tab {
  display: inline-block;
  text-decoration: inherit; }

.CodeMirror-rulers {
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  bottom: -20px;
  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-2 {
  color: #05a; }

.cm-s-default .cm-variable-3 {
  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: #0f0; }

div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #f22; }

.CodeMirror-matchingtag {
  background: rgba(255, 150, 0, 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 */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px;
  margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none;
  /* Prevent dragging from highlighting the element */
  position: relative; }

.CodeMirror-sizer {
  position: relative;
  border-right: 30px 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: -30px; }

.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;
  /* prevents collapsing before first draw */ }

.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -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 {
  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;
  overflow: auto; }

.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 {
  -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: #ffa;
  background: rgba(255, 255, 0, 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; }

.responsiveTable {
  width: 100%; }
  .responsiveTable thead th {
    text-align: left; }
  .responsiveTable thead {
    background: rgba(100, 100, 100, 0.1); }

.responsiveTable td .tdBefore {
  display: none; }

@media screen and (max-width: 47.9375em) {
  .responsiveTable table, .responsiveTable thead, .responsiveTable tbody, .responsiveTable th, .responsiveTable td, .responsiveTable tr {
    display: block; }
  .responsiveTable thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
    border-bottom: 2px solid #333; }
  .responsiveTable tbody tr {
    border: 1px solid #eee;
    padding-top: 1em; }
  .responsiveTable td.pivoted {
    border: none !important;
    border-bottom: 10px solid #eee;
    position: relative;
    padding-left: 50% !important;
    text-align: left !important; }
  .responsiveTable td .tdBefore {
    position: absolute;
    display: block;
    left: 1rem;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left !important;
    font-weight: 600; } }

.responsiveTable td.pivoted {
  border-bottom: 1px dotted #ddd;
  padding: 5px 0; }

.sidemenu__button__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -12px 0 0 -12px; }

.megadraft-modal {
  position: relative;
  width: 528px;
  height: 394px;
  text-align: left;
  z-index: 10; }

.megadraft-modal--open {
  overflow-y: hidden; }

.megadraft-modal--close {
  overflow-y: auto; }

.megadraft-modal__button {
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 0;
  padding: 0;
  transition: all 0.5s ease;
  position: relative;
  background: none;
  width: 64px;
  height: 64px;
  margin-left: 32px; }

.megadraft-modal__button .sidemenu__button__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -16px 0 0 -16px;
  width: 32px;
  height: 32px; }

.megadraft-modal__button:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100%;
  display: inline-block;
  background-color: #181818; }

.megadraft-modal__button__label {
  margin: 0;
  font-family: Open Sans, sans-serif;
  width: 129px;
  height: 40px;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.14;
  color: #3c3c3c;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  padding-top: 9px; }

.megadraft-modal__items {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: -24px; }

.megadraft-modal__items .megadraft-modal__button {
  background: none; }

.megadraft-modal__items .megadraft-modal__button:before {
  transition: all 0.1s ease-in-out;
  background-color: #181818; }

.megadraft-modal__item {
  line-height: 0px;
  height: 58px;
  margin: 0 71px 78px 17px;
  padding-top: 31px;
  cursor: pointer;
  width: 82px; }

.megadraft-modal__item:hover .megadraft-modal__button__label {
  color: #0669de; }

.megadraft-modal__item:hover .megadraft-modal__button:before {
  background-color: #0669de; }

.megadraft-editor {
  position: relative;
  /*
 * Copyright (c) 2016, Globo.com (https://github.com/globocom)
 *
 * License: MIT
 */
  /* Sorry, not using BEM here, we are using drafjs structure */
  /*
 * Copyright (c) 2016, Globo.com (https://github.com/globocom)
 *
 * License: MIT
 */
  /*
 * Copyright (c) 2016, Globo.com (https://github.com/globocom)
 *
 * License: MIT
 */
  /*
 * Copyright (c) 2016, Globo.com (https://github.com/globocom)
 *
 * License: MIT
 */
  /*
 * Copyright (c) 2016, Globo.com (https://github.com/globocom)
 *
 * License: MIT
 */
  /*
 * Copyright (c) 2016, Globo.com (https://github.com/globocom)
 *
 * License: MIT
 */ }

.megadraft-editor .DraftEditor-root, .megadraft-editor .toolbar {
  font-family: Open Sans, sans-serif;
  color: #181818;
  font-size: 1.125rem;
  letter-spacing: -0.037rem;
  line-height: 1.75rem;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.megadraft-editor .DraftEditor-editorContainer {
  position: relative;
  z-index: 1; }

.megadraft-editor .paragraph + .paragraph {
  margin-top: 40px; }

.megadraft-editor .public-DraftEditor-content figure {
  margin: 40px 0; }

.megadraft-editor .public-DraftStyleDefault-ul {
  list-style-type: disc; }

.megadraft-editor .public-DraftStyleDefault-ol {
  list-style-type: decimal; }

.megadraft-editor .public-DraftStyleDefault-ol,
.megadraft-editor .public-DraftStyleDefault-ul {
  line-height: 2;
  margin: 24px 0 40px 0;
  padding-left: 40px; }

.megadraft-editor .public-DraftStyleDefault-ol li,
.megadraft-editor .public-DraftStyleDefault-ul li {
  padding-left: 10px; }

.megadraft-editor .public-DraftEditorPlaceholder-root {
  color: #999;
  position: absolute;
  z-index: 0; }

.megadraft-editor blockquote {
  border-left: 2px solid #ddd;
  color: #999;
  font-style: italic;
  margin: 12px 0 40px 0;
  padding: 6px 0 5px 18px; }

.megadraft-editor .paragraph + blockquote {
  margin-top: 40px; }

.megadraft-editor h2 {
  font-family: Open Sans, Sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.056rem;
  line-height: 2rem;
  margin: 64px 0 24px 0; }

.megadraft-editor h2:first-child {
  margin-top: 0; }

.megadraft-editor .editor__link {
  color: #3192e7;
  text-decoration: none;
  cursor: pointer; }

.megadraft-editor .sidebar {
  position: relative; }

.megadraft-editor .sidebar__menu {
  float: left;
  left: -57px;
  position: absolute; }

.megadraft-editor .sidebar__sidemenu-wrapper {
  padding: 0;
  list-style: none;
  margin: 0; }

.megadraft-editor .sidemenu {
  position: relative;
  width: 36px;
  text-align: center; }

.megadraft-editor .sidemenu__button {
  border: 0;
  color: #fff;
  cursor: pointer;
  height: 32px;
  font-size: 0;
  padding: 0;
  width: 32px;
  transition: all 0.5s ease;
  position: relative;
  background: none; }

.megadraft-editor .sidemenu__button:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100%;
  display: inline-block;
  background-color: #181818; }

.megadraft-editor .sidemenu__button:before:hover {
  background-color: #333333; }

.megadraft-editor .sidemenu__button--open {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.megadraft-editor .sidemenu__button--open:before {
  background-color: #0669de; }

.megadraft-editor .sidemenu__button__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -12px 0 0 -12px; }

.megadraft-editor .sidemenu__items {
  list-style: none;
  padding: 0;
  margin-top: 8px;
  padding-top: 2px;
  transition: max-height 0.5s ease;
  overflow: hidden;
  max-height: 0;
  width: 36px;
  text-align: center; }

.megadraft-editor .sidemenu__items .sidemenu__button {
  background: none; }

.megadraft-editor .sidemenu__items .sidemenu__button:before {
  transition: all 0.1s ease-in-out;
  background-color: #181818; }

.megadraft-editor .sidemenu__items .sidemenu__button:hover:before {
  -webkit-transform: scale(1.125);
  transform: scale(1.125); }

.megadraft-editor .sidemenu__item {
  height: 40px; }

.megadraft-editor .toolbar {
  background: yellow;
  height: 0;
  position: absolute;
  display: none;
  z-index: 10; }

.megadraft-editor .toolbar--open {
  display: block; }

.megadraft-editor .toolbar__error-msg {
  margin: 0;
  height: 0;
  height: 0;
  transition: height 0.2s ease-in-out; }

.megadraft-editor .toolbar--error .toolbar__wrapper {
  background-color: #E83F26; }

.megadraft-editor .toolbar--error .toolbar__arrow {
  border-color: #E83F26 transparent transparent; }

.megadraft-editor .toolbar--error .toolbar__error-msg {
  color: #FFF;
  margin: -8px 0 0 20px;
  padding-bottom: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  height: 28px; }

.megadraft-editor .toolbar--error .toolbar__button {
  color: #FFF; }

.megadraft-editor .toolbar__wrapper {
  background-color: #181818;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
  left: -50%;
  position: relative;
  transition: background-color 0.2s ease-in-out; }

.megadraft-editor .toolbar__list {
  padding: 0 8px;
  margin: 0;
  white-space: nowrap; }

.megadraft-editor .toolbar__arrow {
  display: inline-block;
  top: 100%;
  left: 50%;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-width: 8px;
  border-style: solid;
  border-color: #181818 transparent transparent;
  margin-left: -8px;
  transition: border-color 0.2s ease-in-out; }

.megadraft-editor .toolbar__item {
  display: inline-block;
  color: #ccc; }

.megadraft-editor .toolbar__item:hover {
  color: #fff; }

.megadraft-editor .toolbar__item--active {
  color: #3192e7; }

.megadraft-editor .toolbar__item--active:hover {
  color: #3192e7; }

.megadraft-editor .toolbar__item--separator {
  border-right: 1px solid #333;
  height: 20px;
  margin: 0 8px; }

.megadraft-editor .toolbar__button {
  padding: 0;
  color: inherit;
  cursor: pointer;
  border: 0;
  height: 56px;
  width: 40px;
  background: transparent; }

.megadraft-editor .toolbar__input {
  background-color: transparent;
  border: none;
  color: #fafafa;
  font-size: 0.875rem;
  height: auto;
  line-height: 1.2rem;
  margin: 0;
  padding: 20px;
  width: 250px; }

.megadraft-editor .toolbar__input:focus {
  outline: none; }

.megadraft-editor .toolbar__input-button {
  padding-right: 16px; }

.megadraft-editor .block__hover {
  padding: 8px;
  margin: -8px; }

.megadraft-editor .block__hover:hover {
  background-color: #eee;
  border-radius: 4px; }

.megadraft-editor .block__wrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  border-radius: 3px;
  border: solid 1px #ddd;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); }

.megadraft-editor .block__controls {
  overflow: auto;
  padding: 8px; }

.megadraft-editor .block__action-group {
  color: #999;
  float: right;
  list-style: none;
  margin: 0;
  padding: 0; }

.megadraft-editor .block__action {
  display: inline-block;
  padding: 0 8px;
  line-height: 40px;
  cursor: pointer;
  text-align: center;
  font-size: 0; }

.megadraft-editor .block__action:hover {
  color: #000; }

.megadraft-editor .block__action__icon {
  vertical-align: middle; }

.megadraft-editor .block__content {
  background-color: #eee;
  line-height: 100px;
  text-align: center;
  position: relative; }

.megadraft-editor .block__content--with-padding {
  padding: 16px; }

.megadraft-editor .block__content:before, .megadraft-editor .block__content:after {
  position: absolute;
  width: 100%;
  height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  content: "";
  left: 0; }

.megadraft-editor .block__content:before {
  top: 0; }

.megadraft-editor .block__content:after {
  bottom: 0; }

.megadraft-editor .block__notfound__icon {
  color: #999;
  vertical-align: middle;
  width: 64px;
  height: 64px;
  margin: 104px; }

.megadraft-editor .block__data {
  padding: 16px;
  padding-top: 8px;
  background-color: #fff; }

.megadraft-editor .block__input {
  border: 0;
  border-bottom: 1px dashed transparent;
  color: #333;
  display: block;
  padding: 8px 0;
  width: 100%;
  font-size: 0.75rem; }

.megadraft-editor .block__input--small-padding {
  padding: 8px 0 5px 0; }

.megadraft-editor .block__input--big-text {
  font-size: 1rem;
  font-weight: bold; }

.megadraft-editor .block__input__row {
  line-height: 1rem; }

.megadraft-editor .block__input__wrapper {
  position: relative; }

.megadraft-editor .block__input__icon {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 0;
  width: 16px;
  height: 16px;
  display: none;
  pointer-events: none; }

.megadraft-editor .block__input:hover {
  border-color: #999; }

.megadraft-editor .block__input:hover + svg.block__input__icon {
  display: inline-block; }

.megadraft-editor .block__input:focus {
  border-color: #0072de;
  border-style: solid; }

.megadraft-editor .block__input:focus + svg.block__input__icon {
  display: inline-block; }

.megadraft-editor .block__input:placeholder {
  color: #999; }

.megadraft-editor .block__input--empty {
  border-color: #ccc; }

.megadraft-editor .block__input--empty :hover {
  border-color: #999; }

.megadraft-editor .block__input--empty + svg.block__input__icon {
  color: #999;
  display: inline-block; }

.megadraft-editor .block__input--error, .megadraft-editor .block__input--error.block__input--empty, .megadraft-editor .block__input--error:hover {
  border-color: #ff351e;
  border-style: solid; }

.megadraft-editor .block__input--error + svg.block__input__icon {
  color: #ff351e;
  display: inline-block; }

.megadraft-editor .block__input__error-text {
  color: #ff351e;
  margin-top: 6px;
  font-size: 0.75rem; }

.megadraft-editor .dropdown__wrapper {
  border-radius: 2px;
  position: absolute;
  background: #fff;
  color: #999;
  cursor: pointer;
  font-weight: bold;
  z-index: 10; }

.megadraft-editor .dropdown__wrapper--open {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  color: #333; }

.megadraft-editor .dropdown {
  display: none;
  list-style: none;
  margin: 0;
  border-top: 1px solid #ddd;
  padding: 8px 0; }

.megadraft-editor .dropdown--open {
  display: block; }

.megadraft-editor .dropdown__arrow {
  margin-left: 5px;
  vertical-align: middle; }

.megadraft-editor .dropdown__arrow--open {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }

.megadraft-editor .dropdown__option {
  color: #999; }

.megadraft-editor .dropdown__option:hover {
  background-color: #0669de;
  color: #fff; }

.megadraft-editor .dropdown__item {
  padding: 0 8px;
  line-height: 40px;
  font-size: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.megadraft-editor .dropdown__item--selected:hover {
  color: #333; }

.megadraft-editor .dropdown__item__text {
  vertical-align: middle;
  margin-left: 8px;
  font-size: 0.75rem; }

.megadraft-editor .dropdown__item__icon {
  vertical-align: middle; }

.megadraft-editor .media__message--error {
  background-color: #e83f26;
  color: #fff; }

.megadraft-editor .media__message--warning {
  background-color: #fff7d8;
  color: #b59223;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

.megadraft-editor .media__message-text {
  text-align: left;
  padding: 8px;
  font-size: 12px;
  line-height: 16px;
  font-weight: bold; }

.shadow {
  -webkit-box-shadow: 11px 11px 15px 0px rgba(50, 50, 50, 0.75);
  -moz-box-shadow: 11px 11px 15px 0px rgba(50, 50, 50, 0.75);
  box-shadow: 11px 11px 15px 0px rgba(50, 50, 50, 0.75); }

.Select-clear {
  display: none; }

.Select-control {
  z-index: 999; }

.Select-menu-outer {
  z-index: 1002 !important; }

.ant-layout {
  min-height: 100vh; }

.admin-editor .rdw-option-wrapper {
  border: 1px solid #F1F1F1;
  padding: 5px;
  min-width: 25px;
  height: 20px;
  border-radius: 2px;
  margin: 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  background: white;
  text-transform: capitalize; }

.admin-editor .rdw-option-wrapper:hover {
  box-shadow: 1px 1px 0px #BFBDBD; }

.admin-editor .rdw-option-wrapper:active {
  box-shadow: 1px 1px 0px #BFBDBD inset; }

.admin-editor .rdw-option-active {
  box-shadow: 1px 1px 0px #BFBDBD inset; }

.admin-editor .rdw-option-disabled {
  opacity: 0.3;
  cursor: default; }

.admin-editor .rdw-dropdown-wrapper {
  height: 30px;
  background: white;
  cursor: pointer;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  margin: 0 3px;
  text-transform: capitalize;
  background: white; }

.admin-editor .rdw-dropdown-wrapper:focus {
  outline: none; }

.admin-editor .rdw-dropdown-wrapper:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
  background-color: #FFFFFF; }

.admin-editor .rdw-dropdown-wrapper:active {
  box-shadow: 1px 1px 0px #BFBDBD inset; }

.admin-editor .rdw-dropdown-carettoopen {
  height: 0px;
  width: 0px;
  position: absolute;
  top: 35%;
  right: 10%;
  border-top: 6px solid black;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent; }

.admin-editor .rdw-dropdown-carettoclose {
  height: 0px;
  width: 0px;
  position: absolute;
  top: 35%;
  right: 10%;
  border-bottom: 6px solid black;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent; }

.admin-editor .rdw-dropdown-selectedtext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 5px; }

.admin-editor .rdw-dropdown-optionwrapper {
  z-index: 100;
  position: relative;
  border: 1px solid #F1F1F1;
  width: 98%;
  background: white;
  border-radius: 2px;
  margin: 0;
  padding: 0;
  max-height: 250px;
  overflow-y: scroll; }

.admin-editor .rdw-dropdown-optionwrapper:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
  background-color: #FFFFFF; }

.admin-editor .rdw-dropdownoption-default {
  min-height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 5px; }

.admin-editor .rdw-dropdownoption-highlighted {
  background: #F1F1F1; }

.admin-editor .rdw-dropdownoption-active {
  background: #f5f5f5; }

.admin-editor .rdw-dropdownoption-disabled {
  opacity: 0.3;
  cursor: default; }

.admin-editor .rdw-inline-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 6px; }

.admin-editor .rdw-inline-dropdown {
  width: 50px; }

.admin-editor .rdw-inline-dropdownoption {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.admin-editor .rdw-block-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px; }

.admin-editor .rdw-block-dropdown {
  width: 110px; }

.admin-editor .rdw-fontsize-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px; }

.admin-editor .rdw-fontsize-dropdown {
  min-width: 40px; }

.admin-editor .rdw-fontsize-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.admin-editor .rdw-fontfamily-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px; }

.admin-editor .rdw-fontfamily-dropdown {
  width: 115px; }

.admin-editor .rdw-fontfamily-placeholder {
  white-space: nowrap;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis; }

.admin-editor .rdw-fontfamily-optionwrapper {
  width: 140px; }

.admin-editor .rdw-list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px; }

.admin-editor .rdw-list-dropdown {
  width: 50px;
  z-index: 90; }

.admin-editor .rdw-list-dropdownOption {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.admin-editor .rdw-text-align-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px; }

.admin-editor .rdw-text-align-dropdown {
  width: 50px;
  z-index: 90; }

.admin-editor .rdw-text-align-dropdownOption {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.admin-editor .rdw-right-aligned-block {
  text-align: right; }

.admin-editor .rdw-left-aligned-block {
  text-align: left; }

.admin-editor .rdw-center-aligned-block {
  text-align: center; }

.admin-editor .rdw-justify-aligned-block {
  text-align: justify; }

.admin-editor .rdw-right-aligned-block > div {
  display: inline; }

.admin-editor .rdw-left-aligned-block > div {
  display: inline; }

.admin-editor .rdw-center-aligned-block > div {
  display: inline; }

.admin-editor .rdw-justify-aligned-block > div {
  display: inline; }

.admin-editor .rdw-colorpicker-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px;
  position: relative; }

.admin-editor .rdw-colorpicker-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 175px;
  height: 175px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD; }

.admin-editor .rdw-colorpicker-modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 5px; }

.admin-editor .rdw-colorpicker-modal-style-label {
  font-size: 15px;
  width: 50%;
  text-align: center;
  cursor: pointer;
  padding: 0 10px 5px; }

.admin-editor .rdw-colorpicker-modal-style-label-active {
  border-bottom: 2px solid #0a66b7; }

.admin-editor .rdw-colorpicker-modal-options {
  margin: 5px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 170px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.admin-editor .rdw-colorpicker-cube {
  width: 22px;
  height: 22px;
  border: 1px solid #F1F1F1; }

.admin-editor .rdw-colorpicker-option {
  margin: 3px;
  padding: 0;
  min-height: 20px;
  border: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  box-shadow: 1px 2px 1px #BFBDBD inset; }

.admin-editor .rdw-colorpicker-option:hover {
  box-shadow: 1px 2px 1px #BFBDBD; }

.admin-editor .rdw-colorpicker-option:active {
  box-shadow: -1px -2px 1px #BFBDBD; }

.admin-editor .rdw-colorpicker-option-active {
  box-shadow: 0px 0px 2px 2px #BFBDBD; }

.admin-editor .rdw-link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px;
  position: relative; }

.admin-editor .rdw-link-dropdown {
  width: 50px; }

.admin-editor .rdw-link-dropdownOption {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.admin-editor .rdw-link-dropdownPlaceholder {
  margin-left: 8px; }

.admin-editor .rdw-link-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 235px;
  height: 180px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD; }

.admin-editor .rdw-link-modal-label {
  font-size: 15px; }

.admin-editor .rdw-link-modal-input {
  margin-top: 5px;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  height: 25px;
  margin-bottom: 15px;
  padding: 0 5px; }

.admin-editor .rdw-link-modal-input:focus {
  outline: none; }

.admin-editor .rdw-link-modal-buttonsection {
  margin: 0 auto; }

.admin-editor .rdw-link-modal-btn {
  margin-left: 10px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize; }

.admin-editor .rdw-link-modal-btn:hover {
  box-shadow: 1px 1px 0px #BFBDBD; }

.admin-editor .rdw-link-modal-btn:active {
  box-shadow: 1px 1px 0px #BFBDBD inset; }

.admin-editor .rdw-link-modal-btn:focus {
  outline: none !important; }

.admin-editor .rdw-link-modal-btn:disabled {
  background: #ece9e9; }

.admin-editor .rdw-link-dropdownoption {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.admin-editor .rdw-history-dropdown {
  width: 50px; }

.admin-editor .rdw-embedded-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px;
  position: relative; }

.admin-editor .rdw-embedded-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 235px;
  height: 180px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  box-shadow: 3px 3px 5px #BFBDBD; }

.admin-editor .rdw-embedded-modal-header {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.admin-editor .rdw-embedded-modal-header-option {
  width: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.admin-editor .rdw-embedded-modal-header-label {
  width: 95px;
  border: 1px solid #f1f1f1;
  margin-top: 5px;
  background: #6EB8D4;
  border-bottom: 2px solid #0a66b7; }

.admin-editor .rdw-embedded-modal-link-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.admin-editor .rdw-embedded-modal-link-input {
  width: 95%;
  height: 35px;
  margin: 10px 0;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 15px;
  padding: 0 5px; }

.admin-editor .rdw-embedded-modal-link-input:focus {
  outline: none; }

.admin-editor .rdw-embedded-modal-btn-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.admin-editor .rdw-embedded-modal-btn {
  margin: 0 3px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize; }

.admin-editor .rdw-embedded-modal-btn:hover {
  box-shadow: 1px 1px 0px #BFBDBD; }

.admin-editor .rdw-embedded-modal-btn:active {
  box-shadow: 1px 1px 0px #BFBDBD inset; }

.admin-editor .rdw-embedded-modal-btn:focus {
  outline: none !important; }

.admin-editor .rdw-embedded-modal-btn:disabled {
  background: #ece9e9; }

.admin-editor .rdw-embedded-modal-size {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 8px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.admin-editor .rdw-embedded-modal-size-input {
  width: 45%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px; }

.admin-editor .rdw-embedded-modal-size-input:focus {
  outline: none; }

.admin-editor .rdw-emoji-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px;
  position: relative; }

.admin-editor .rdw-emoji-modal {
  overflow: auto;
  position: absolute;
  top: 35px;
  left: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 235px;
  height: 180px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD; }

.admin-editor .rdw-emoji-icon {
  margin: 2.5px;
  height: 24px;
  width: 24px;
  cursor: pointer;
  font-size: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.admin-editor .rdw-spinner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  width: 100%; }

.admin-editor .rdw-spinner > div {
  width: 12px;
  height: 12px;
  background-color: #333;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both; }

.admin-editor .rdw-spinner .rdw-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s; }

.admin-editor .rdw-spinner .rdw-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s; }

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0); }
  40% {
    -webkit-transform: scale(1); } }

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.admin-editor .rdw-image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px;
  position: relative; }

.admin-editor .rdw-image-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 235px;
  height: 200px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD; }

.admin-editor .rdw-image-modal-header {
  font-size: 15px;
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.admin-editor .rdw-image-modal-header-option {
  width: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.admin-editor .rdw-image-modal-header-label {
  width: 80px;
  background: #f1f1f1;
  border: 1px solid #f1f1f1;
  margin-top: 5px; }

.admin-editor .rdw-image-modal-header-label-highlighted {
  background: #6EB8D4;
  border-bottom: 2px solid #0a66b7; }

.admin-editor .rdw-image-modal-upload-option {
  height: 65px;
  width: 100%;
  color: gray;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  font-size: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f1f1f1;
  outline: 2px dashed gray;
  outline-offset: -10px;
  margin: 10px 0; }

.admin-editor .rdw-image-modal-upload-option-highlighted {
  outline: 2px dashed #0a66b7; }

.admin-editor .rdw-image-modal-upload-option-label {
  cursor: pointer;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px; }

.admin-editor .rdw-image-modal-upload-option-label span {
  padding: 0 20px; }

.admin-editor .rdw-image-modal-upload-option-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1; }

.admin-editor .rdw-image-modal-url-section {
  display: block; }

.admin-editor .rdw-image-modal-url-input {
  width: 95%;
  height: 35px;
  margin: 30px 0 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 15px;
  padding: 0 5px; }

.admin-editor .rdw-image-modal-btn-section {
  margin: 10px auto 0; }

.admin-editor .rdw-image-modal-url-input:focus {
  outline: none; }

.admin-editor .rdw-image-modal-btn {
  margin: 0 5px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize; }

.admin-editor .rdw-image-modal-btn:hover {
  box-shadow: 1px 1px 0px #BFBDBD; }

.admin-editor .rdw-image-modal-btn:active {
  box-shadow: 1px 1px 0px #BFBDBD inset; }

.admin-editor .rdw-image-modal-btn:focus {
  outline: none !important; }

.admin-editor .rdw-image-modal-btn:disabled {
  background: #ece9e9; }

.admin-editor .rdw-image-modal-spinner {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5; }

.admin-editor .rdw-remove-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px;
  position: relative; }

.admin-editor .rdw-history-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px; }

.admin-editor .rdw-history-dropdownoption {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.admin-editor .rdw-history-dropdown {
  width: 50px; }

.admin-editor .rdw-link-decorator-wrapper {
  position: relative; }

.admin-editor .rdw-link-decorator-icon {
  position: absolute;
  left: 40%;
  top: 0;
  cursor: pointer;
  background-color: white; }

.admin-editor .rdw-mention-link {
  text-decoration: none;
  color: #1236ff;
  background-color: #f0fbff;
  padding: 1px 2px;
  border-radius: 2px; }

.admin-editor .rdw-suggestion-wrapper {
  position: relative; }

.admin-editor .rdw-suggestion-dropdown {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid #F1F1F1;
  min-width: 100px;
  max-height: 150px;
  overflow: auto;
  background: white;
  z-index: 100; }

.admin-editor .rdw-suggestion-option {
  padding: 7px 5px;
  border-bottom: 1px solid #f1f1f1; }

.admin-editor .rdw-suggestion-option-active {
  background-color: #F1F1F1; }

.admin-editor .rdw-hashtag-link {
  text-decoration: none;
  color: #1236ff;
  background-color: #f0fbff;
  padding: 1px 2px;
  border-radius: 2px; }

.admin-editor .rdw-image-alignment-options-popup {
  position: absolute;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 2px;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  width: 105px;
  cursor: pointer;
  z-index: 100; }

.admin-editor .rdw-alignment-option-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.admin-editor .rdw-image-alignment-option {
  height: 15px;
  width: 15px;
  min-width: 15px; }

.admin-editor .rdw-image-alignment {
  position: relative; }

.admin-editor .rdw-image-imagewrapper {
  position: relative; }

.admin-editor .rdw-image-center {
  float: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.admin-editor .rdw-image-left {
  float: left; }

.admin-editor .rdw-image-right {
  float: right; }

.admin-editor .rdw-editor-main {
  height: 100%;
  width: 100%;
  overflow: auto;
  box-sizing: content-box; }

.admin-editor .rdw-editor-toolbar {
  padding: 6px 5px 0;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  background: white;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 15px;
  margin-bottom: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 11 !important; }

.admin-editor .public-DraftStyleDefault-block {
  margin: 1em 0; }

.admin-editor .rdw-editor-wrapper:focus {
  outline: none; }

.admin-editor .rdw-image-modal {
  transform: translate(-50%, 0); }

.admin-editor .public-DraftEditor-content {
  z-index: 10;
  min-height: 200px;
  padding-bottom: 50px; }

.admin-editor .demo-color-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative; }

.admin-editor .demo-icon-wrapper {
  border: 1px solid #F1F1F1;
  padding: 3px 5px; }

.admin-editor .demo-icon {
  width: 20px; }

.admin-editor .demo-color-modal {
  position: absolute;
  right: -70px;
  top: 135%;
  z-index: 10; }

.ant-layout-sider-zero-width-trigger {
  top: 5px !important;
  color: black !important;
  background: white !important;
  height: 42px !important; }

.admin-topSlide {
  height: 47px !important;
  line-height: 47px;
  font-size: 24px;
  color: #999;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #ddd; }

.admin-toggle-button {
  width: 47px !important;
  height: 47px !important;
  line-height: 47px !important;
  text-align: center !important;
  font-size: 18px !important;
  cursor: pointer !important; }

.padding-5 {
  padding: 5px !important; }

.margin-5 {
  margin: 5px !important; }

.imgWr {
  border: 1px solid #ddd;
  position: relative;
  background: transparent !important;
  height: 0;
  padding-top: 56.25%;
  cursor: pointer;
  -webkit-box-shadow: inset 0px 0px 90px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0px 0px 90px 0px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0px 0px 90px 0px rgba(0, 0, 0, 0.2); }
  .imgWr img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    -webkit-transition: all 2s ease-out;
    transition: all 2s ease-out;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }

.selectImage .ant-modal-footer {
  display: none !important; }

.public-DraftStyleDefault-block {
  margin: 5px 0 !important; }

.ant-menu-item, .ant-menu-submenu-title {
  padding: 0 16px !important; }

.img-responsive {
  max-width: 100%;
  display: block;
  height: auto;
  margin: 0 auto; }

.fr-wrapper img {
  max-width: 100% !important;
  display: block;
  height: auto !important;
  margin: 0 auto; }

#toolbarLocation {
  z-index: 11 !important; }

canvas {
  max-width: 100%;
  height: auto; }
