[contentEditable=true]:empty:not(:focus):before{
    content:attr(data-text)
}

.full-width-container {
  margin: 0px auto;
  display: flex;
  max-width: 1200px;
  align-items: center;
  /*justify-content: center;*/
  flex-direction: column;
  line-height: 1.8;
}

#editor {
  color: #333;
  border-radius: 5px;
  font-size: 14pt;
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  outline: none;
  border: none;
}
#editor:focus{
  border-radius: 5px;
  border:  1px solid #525f9933;
}

#count-container {
  width: 100%;
  font-size: 10px;
  text-align: right;
  margin: 5px;
  font-weight: 600;
}

h2 {
  margin-top: 2.5em;
}

/* accordion */

.accordion .card-header {
  border-bottom: 0;
  background-color: #eee;
}
.accordion h2 {
  margin-top: -0.1em;
  padding-top: 0;
}
.accordion h2 button, .accordion h2 button:focus {
  display: block;
  width: 100%;
  height: 100%;
  text-align: left;
  color: #000;
  font-weight: 550;
  text-decoration: none;
}
.accordion .card-body {
  margin: 0 1em;
  font-size: 10pt;
}

/* lists */

.hl-list-group .list-group-item {
  background-color: #eef;
}

/* flags */
.us-flag {
  display: inline-block; width: 16px; height: 11px; margin-right: 0.5em;
  background-image: url("/static/img/flags/us.png");
}
.gb-flag {
  display: inline-block; width: 16px; height: 11px; margin-right: 0.5em;
  background-image: url("/static/img/flags/gb.png");
}
.ca-flag {
  display: inline-block; width: 16px; height: 11px; margin-right: 0.5em;
  background-image: url("/static/img/flags/ca.png");
}
.au-flag {
  display: inline-block; width: 16px; height: 11px; margin-right: 0.5em;
  background-image: url("/static/img/flags/au.png");
}

.ProseMirror {
  padding: 8px 8px 8px 14px;
  min-height: 350px;
}

#ctrl-buttons .btn {
  font-size: 9pt;
}

