.blog-detail-container .postBodyWrapper {
  width: 100%;
}
.blog-detail-container .postBodyWrapper * {
  font-size: 16px;
}
.blog-detail-container .postBodyWrapper p {
  color: var(--black, #202020);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.blog-detail-container .postBodyWrapper h2,
.blog-detail-container .postBodyWrapper h2 span {
  color: var(--main, #00b395);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
}
.blog-detail-container .postBodyWrapper h2 {
  padding: 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #00b395;
  margin-bottom: 20px;
}
.blog-detail-container .postBodyWrapper h2,
.blog-detail-container .postBodyWrapper h2 span {
  color: var(--black, #202020);
  font-size: 20px;
  font-weight: 700;
}
.blog-detail-container .postBodyWrapper h3 {
  padding-left: 16px;
  border-left: 4px solid #00b395;
  margin-bottom: 20px;
}
.blog-detail-container .postBodyWrapper h4,
.blog-detail-container .postBodyWrapper h4 span {
  color: var(--black, #202020);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}
.blog-detail-container .postBodyWrapper h4 {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}
.blog-detail-container .postBodyWrapper h4:before {
  content: '';
  display: block;
  position: absolute;
  width: 24px;
  left: 0;
  height: 4px;
  top: 50%;
  background: var(--main, #00b395);
}
.blog-detail-container .postBodyWrapper h5,
.blog-detail-container .postBodyWrapper h5 span {
  color: var(--black, #202020);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
.blog-detail-container .postBodyWrapper h5 {
  margin-bottom: 20px;
}
.blog-detail-container .postBodyWrapper a,
.blog-detail-container .postBodyWrapper a span {
  color: var(--main, #00b395);
  font-size: 16px;
  text-decoration: underline;
}
.blog-detail-container .postBodyWrapper > ol {
  list-style: none;
  counter-reset: number;
  padding: 0;
}
.blog-detail-container .postBodyWrapper > ol > li {
  position: relative;
  padding-bottom: 20px;
  padding-left: 40px;
}
.blog-detail-container .postBodyWrapper > ol > li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0;
  color: #fff;
  font-weight: bold;
  border-radius: 100px;
  background: var(--main, #00b395);
  text-align: center;
  line-height: 28px;
}
.blog-detail-container .postBodyWrapper table {
  display: block !important;
  overflow-x: auto !important;
  height: auto !important;
  border-spacing: 10px 5px;
  border: none !important;
}
.blog-detail-container .postBodyWrapper table tbody {
  display: table !important;
  width: 100% !important;
}
.blog-detail-container .postBodyWrapper th,
.blog-detail-container .postBodyWrapper td {
  border: 1px solid #c5c5c5;
}
@media (max-width: 768px) {
  .blog-detail-container .postBodyWrapper table tbody {
    display: table !important;
    width: 768px !important;
  }
}
