:root {
  --vh: 100vh;
}

.rich-text ul,
.rich-text h2,
.rich-text h3,
.rich-text h4,
.rich-text p {
  margin-bottom: 20px;
}
@media screen and (max-width: 780px) {
  .rich-text ul,
.rich-text h2,
.rich-text h3,
.rich-text h4,
.rich-text p {
    margin-bottom: 10px;
  }
}
.rich-text h2,
.rich-text h3,
.rich-text h4 {
  font-size: 26px;
  font-weight: bold;
  text-transform: none;
}
@media screen and (max-width: 780px) {
  .rich-text h2,
.rich-text h3,
.rich-text h4 {
    font-size: 20px;
  }
}
.rich-text h3 {
  font-size: 22px;
}
@media screen and (max-width: 780px) {
  .rich-text h3 {
    font-size: 18px;
  }
}
.rich-text h4 {
  font-size: 18px;
}
@media screen and (max-width: 780px) {
  .rich-text h4 {
    font-size: 16px;
  }
}
.rich-text ul,
.rich-text p {
  font-size: 16px;
}
.rich-text ul .with-opacity,
.rich-text p .with-opacity {
  opacity: 0.9;
}
@media screen and (max-width: 780px) {
  .rich-text ul,
.rich-text p {
    font-size: 14px;
  }
}
.rich-text b,
.rich-text strong {
  font-weight: bold;
}
.rich-text i {
  font-style: italic;
}
.rich-text ul {
  list-style: circle;
  margin-left: 20px;
}
.rich-text ul li {
  margin-bottom: 5px;
}
.rich-text ol {
  list-style: decimal;
  margin-left: 20px;
}
.rich-text ol li {
  margin-bottom: 5px;
}
.rich-text a:not(.no-link):not(.button) {
  color: #49BA56;
}
.rich-text a:not(.no-link):not(.button):hover {
  text-decoration: underline;
}
.rich-text .code {
  font-family: monospace;
  color: #49BA56;
}
.rich-text .table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: auto;
}
.rich-text table.table {
  width: 100%;
}
.rich-text table.table tr td, .rich-text table.table tr th {
  padding: 3px 5px;
  border: none;
  border-bottom: 1px solid #49BA56;
  vertical-align: top;
  text-align: left;
}
.rich-text table.table tr th {
  background: #49BA56;
  color: white;
  font-weight: bold;
}
.rich-text table.table.striped tr:nth-child(2n) td {
  background: rgba(11, 212, 227, 0.07);
}
.rich-text pre {
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
  clear: both;
  color: #fff;
  background: #1b1b1b;
  padding: 0;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -ms-word-break: normal;
  word-break: normal;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.rich-text pre code {
  scrollbar-color: #666 #201c29;
  background: none;
  white-space: pre;
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
  display: block;
  max-width: 100%;
  min-width: 100px;
  padding: 15px 20px 12px 22px;
  line-height: 1.75;
}
.rich-text .table-of-contents {
  border: 1px solid #49BA56;
  padding: 20px;
  display: inline-block;
}
@media screen and (max-width: 780px) {
  .rich-text .table-of-contents {
    padding: 10px;
  }
}
.rich-text .table-of-contents .title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 0.3em;
}
.rich-text .table-of-contents a {
  color: #221E20;
  opacity: 0.75;
  display: block;
  font-weight: 500;
}
.rich-text .table-of-contents a:hover {
  opacity: 1;
  color: #49BA56;
  text-decoration: none;
}