
.el_btnSectionDbook,
.el_btnSectionWeb {
  position: relative;
  cursor: pointer;
}
.el_btnSectionDbook::after,
.el_btnSectionWeb::after {
  position: absolute;
  right: 15px;
  top:calc(50% - .5em);
  content: '';
  display: inline-block;
  width: .75em;
  height: .75em;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
}
.el_btnSectionDbook.js_open::after,
.el_btnSectionWeb.js_open::after {
  top:calc(50%);
  transform: rotate(-135deg);
}

.el_btnSectionDbook.js_close + .bl_sideMenu,
.el_btnSectionWeb.js_close + .bl_sideMenu {
  display: none;
}

.post-password-form label {
  display: inline-block;
  text-align: left;
}

.bl_index_author {
  display: inline;
  padding-left: 1em;
}

.bl_qa_q {
  position: relative;
  padding-left: 1.5em;
  border-bottom: 1px dashed #ccc;
  font-size: 1rem !important;
  padding-top: .5em;
  padding-bottom: .5em;
  margin-bottom: .5em;
  font-weight: normal !important;
  background-color: #fafafa;
}
.bl_qa_q_icon {
  font-weight: bold;
  position: absolute;
  left: 0;
}
ol.el_ol_circle {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}
ol.el_ol_circle li {
  position: relative;
  padding-left: 1.5em;
}
ol.el_ol_circle li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  border: 1px solid #777;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.5em;
  width: 1.5em;
  font-size: 85%;
  line-height: 1;
  position: absolute;
  top: .3em;
  left: 0;
}