/* Wysiwyg editor
 **************************************** */
.mceContentBody {
  text-align: justify;
  text-justify: inter-ideograph;
  -ms-text-justify: inter-ideograph;
}
.mceContentBody.wp-editor {
  background-color: #ECE4D8 !important;
}
.mceContentBody ul,
.mceContentBody ol {
  margin: 1em 0;
} 
.mceContentBody ul {
  list-style: disc;
}
.mceContentBody ul li,
.mceContentBody ol li {
  position: relative;
  margin: 0;
  border-bottom: none;
  padding: 0;
  margin-left: 2em;
  padding-top: 8px;
  line-height: 1.65;
}
.mceContentBody ul li::marker {
  color: #E30015;
  font-size: 125%;
}
.mceContentBody ol li {
  list-style-type: decimal;
}
.mceContentBody img {
  margin: 20px 0;
  max-width: 100%;
  height: auto;
}
.mceContentBody hr {
  border-top: 3px double #ccc;
  background: transparent;
}
.mceContentBody .alignleft {
  float: left;
  clear: left;
  margin: 0 30px 30px 0;
}
.mceContentBody .alignright {
  float: right;
  clear: right;
  margin: 0 0 30px 30px;
}
.mceContentBody .aligncenter {
  display: block;
  margin: 30px auto;
}
.mceContentBody table {
  border: 2px solid #ccc;
  margin: 20px 0;
  line-height: 1.6;
}
.mceContentBody a,
.text-link {
  text-decoration: underline;
  color: #d00a23;
}
.mceContentBody table th,
.mceContentBody table td {
  padding: 8px 16px;
  border: 1px solid #ccc;
  font-size: 93%;
  vertical-align: middle;
}
.mceContentBody table th {
  white-space: nowrap;
}
.mceContentBody h1:not(:first-child),
.mceContentBody h2:not(:first-child),
.mceContentBody h3:not(:first-child),
.mceContentBody h4:not(:first-child),
.mceContentBody h5:not(:first-child) {
  margin-top: 1em;
}
.mceContentBody h1:not(:last-child),
.mceContentBody h2:not(:last-child),
.mceContentBody h3:not(:last-child),
.mceContentBody h4:not(:last-child),
.mceContentBody h5:not(:last-child) {
  margin-bottom: 1em;
}
.mceContentBody h1 {
  font-size: 172%;
}
.mceContentBody h2 {
  font-size: 171%; /* 24px */
  padding-bottom: .5em;
  border-bottom: 1px solid #E30015;
}
.mceContentBody h3 {
  font-size: 157%; /* 20px */
  padding-left: .5em;
  border-left: 3px solid #E30015;
}
.mceContentBody h4 {
  font-size: 129%; /* 18px */
  padding-bottom: .5em;
  border-bottom: 1px dashed #E30015;
}

.mceContentBody p {
  margin-bottom: 1em;
  letter-spacing: 0.1em;
}
.mceContentBody blockquote{
  margin: 1em 0;
  padding: 15px 40px;
  border-radius: 3px;
  position: relative;
  display: inline-block;
  font-style: oblique;
  color: #666;
}
.mceContentBody blockquote p {margin-bottom: 0;}
.mceContentBody blockquote:before,
.mceContentBody blockquote:after {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 100%;
  position: absolute;
  width: 1em;
  height: 1em;
}
.mceContentBody blockquote:before {
  content: "\f10d";
  top: 13px;
  left: 10px;
}
.mceContentBody blockquote:after {
  content: "\f10e";
  bottom: 13px;
  right: 10px;
}
/*table scroll*/
.scroll {
  overflow-x: scroll;
  margin: 0 0 24px;
}
.scroll table {
  margin: 0;
}
.scroll--cap {
  text-align: right;
  margin: 24px 0 0 !important;
  opacity: 0.25;
  font-size: 93%;
}

@media (max-width: 767px) {
  .mceContentBody {
    font-size: 100%;
  }
  .mceContentBody .alignright,
  .mceContentBody .alignleft  {
    float: none;
    margin: 20px auto;
    display: block;
  }
  .mceContentBody blockquote {
    padding: 15px;
  }
  .mceContentBody blockquote:before {
    top: 0;
    left: 0;
  }
  .mceContentBody blockquote:after {
    bottom: 0;
    right: 0;
  }
  .mceContentBody ol li {
    margin-left: 1em;
  }
}

/* AddQuicktag
*************************************************** */
.box {
  border: 2px solid #E30015;
  padding: 2em;
  border-radius: 10px;
}
.box:not(:first-child) {
  margin-top: 2em;
}
.box:not(:last-child) {
  margin-bottom: 2em;
}
.box.bg-wh {
  border: 0;
  background-color: #fff;
}
.box p {
  font-size: 100% !important;
}
.blog_marker {
  display: inline-block;
  padding: 0 0.125em;
  background: linear-gradient( rgba(255,255,255,0) 0%, rgba(255, 255, 255, 0) 50%, #FFF1AA 50%, #FFF1AA 90%, rgba(255,255,255,0) 90%, rgba(255,255,255,0) 100%);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .blog_marker,
  .mce-content-body .blog_marker {
    display: inline;
  }
}