/* Make TinyMCE inline content use your site’s typography */
.mce-content-body {
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
  /* outline: 2px solid rgba(0,0,0,0.08); */
  /* outline-offset: 2px; */
  border-radius: 0px;
  padding-top:20px!important;
  /* margin-top: 60px; */
}

/* Lists look like your theme */
.mce-content-body ul {
  list-style: disc;
  padding-left: 1.25em;
  margin: 0.5em 0;
}
.mce-content-body ol {
  list-style: decimal;
  padding-left: 1.25em;
  margin: 0.5em 0;
}

/* Keep links styled by theme */
.mce-content-body a {
  color: inherit;
  text-decoration: underline;
}

/* When editing, give a subtle outline so users know it's active */
#lesson_content_container.mce-edit-focus,
#lesson_content_container.mce-content-body.mce-edit-focus {
  outline: 0px solid rgba(0,0,0,0.08);
  outline-offset: 0px;
  /* border: 2px solid #eee; */
  border-radius: 0px;
}

/* Avoid toolbar clipping near edges on small screens */
.tox.tox-tinymce-inline {
  /* z-index: 9999;  */
}

.tox.tox-tinymce-inline .tox-editor-header {
  border-radius: 0px!important;
}

/* sticky toolbar wrapper under the tabs */
#mytoolbar {
  position: sticky;
  /* top: 100px; */
  top: var(--lg-toolbar-top, 100px); /* set from JS */
  z-index: 1001;
  min-height:43px;
}

