.ql-container.ql-snow{
  border: none;
}

.ql-container.ql-snow {
  border: none;
  padding: 1em 1em;
  color: #333;
  line-height: 170%;
  font-family: var(--main-font);
  font-weight: normal;
}
.ql-editor {
  padding: 0 1em 0 1em;
}
.ql-editor p {
  font-size: 16px;
  line-height: 170%;
  font-family: var(--main-font);
  margin-bottom: 0.75em;
}
.ql-editor h1,
.ql-editor h2,
.ql-editor h3 {
  line-height: 300%;
}
.ql-editor a {
  color: var(--text-color);
}
.ql-editor a:hover {
  background-color: var(--text-color);
  color: white;
  text-decoration: none;
}
.ql-editor ul, .ql-editor ol {
  padding-left: 2em;
  margin-top: 1em;
  font-size: 16px;
}
.ql-editor li {
  line-height: 200%;
}
.ql-editor pre.ql-syntax {
  border-left: 8px solid var(--text-color);
  border-radius: 0;
  padding: 1em 1em 1em 2em;
  background-color: #f0f0f0 !important;
  color: black !important;
  margin: 2em 0;
}
.ql-editor .ql-font-monospace {
  font-family: monospace;
  font-size: 90%;
}
.ql-editor blockquote {
  border-left: 8px solid var(--text-color) !important;
  background-color: #eff9f9 !important;
  font-size: 16px !important;
  padding: 1em 1em 1em 2em !important;
  margin: 2em 0 !important;
  line-height: 200%;
}

.ql-toolbar{
  border-radius: 8px;
  border: none;
  position: sticky;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  top: 70px;
  margin-left: -35px;
  background-color: #FFF;
  z-index: 2;
  height: 50px;
  width: 820px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:  0px 0px 5px rgba(74, 77, 92, 0.5);
  transition: opacity 0.25s ease-in-out;
  opacity: 0.9;
}

.ql-toolbar.hidden {
  display: none;
}
