.heading {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .heading {
    height: auto;
    min-height: 122px;
    padding: 30px 0;
  }
}
.heading h1 {
  margin-bottom: 16px;
}
.heading h1:first-child {
  margin-top: 0;
}
.heading h1:last-child {
  margin-bottom: 0;
}

.text-description {
  color: #999;
}
.article-page {
  width: 100%;
  line-height: 24px;
}
.article-page__title {
  margin-bottom: 30px;
}
.article-page__description {
  margin-top: -20px;
}
.article-card {
  display: block;
  background: #fff;
  padding: 30px 40px;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}
.article-card,
.article-card:focus,
.article-card:focus:hover,
.article-card:hover {
  cursor: pointer;
  text-decoration: none;
}
.article-card:hover {
  border-color: red;
}
.article-card__title {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.article-card__description {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .article-card {
    padding: 30px 20px;
  }
}

.content {
  background-color: var(--background-content-color);
}

.content-container {
  overflow: hidden;
}
.content-container.article-card {
  margin-top: 20px;
}
.content-container img,
.content-container iframe {
  max-width: 100%;
}
.content-container img {
  height: auto;
}
.content-container blockquote:first-child,
.content-container h1:first-child,
.content-container h2:first-child,
.content-container hr:first-child,
.content-container ol:first-child,
.content-container p:first-child,
.content-container table:first-child,
.content-container ul:first-child {
  margin-top: 0;
}
.content-container blockquote:last-child,
.content-container h1:last-child,
.content-container h2:last-child,
.content-container hr:last-child,
.content-container ol:last-child,
.content-container p:last-child,
.content-container table:last-child,
.content-container ul:last-child {
  margin-bottom: 0;
}
.content-container h1 {
  margin: 45px 0 30px;
}
.content-container h2 {
  margin: 30px 0 15px;
  font-weight: 700;
}
.content-container a {
  text-decoration: underline;
}
.content-container b,
.content-container strong {
  font-weight: 700;
}
.content-container em,
.content-container i {
  font-style: italic;
}
.content-container ol,
.content-container p,
.content-container ul {
  margin: 15px 0;
}
.content-container img {
  cursor: pointer;
}
.content-container img.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}
.content-container img.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}
.content-container img.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}
.content-container img.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - 10px);
}
.content-container img.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}
.content-container img.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}
.content-container table.fr-alternate-rows tbody tr:nth-child(2n) {
  background: #f5f5f5;
}
.content-container table th {
  font-weight: 700;
  background: #e6e6e6;
  text-align: left;
}
.content-container table td,
.content-container table th {
  border: 1px solid #ddd;
}
.content-container code {
  padding: 2px 4px;
  font-size: 13px;
  font-family: monospace;
  color: #c7254e;
  background-color: #f9f2f4;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
}
.content-container pre:not(.CodeMirror-line) {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre-wrap;
  font-family: monospace;
  color: #777;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 3px;
  overflow: visible;
}
.CodeMirror-panel .info-panel .language {
	visibility: hidden;
}
.content-container .table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
  word-break: normal;
}
