/*Grid*/
* {
  box-sizing: border-box;
}
:root {
  --container-width: 1440px;
}
.container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
  max-width: var(--container-width);
}
@media (max-width: 576px) {
  :root {
    --container-width: 100%;
  }
}
@media (max-width: 768px){
  :root {
    --container-width: 100%;
  }
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  :root {
    --container-width: 100%;
    font-size: 14px;
  }
  .container {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  :root {
    --container-width: 960px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px){
  :root {
    --container-width: 1140px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  :root {
    --container-width: 1230px;
  }
}
/* === Row === */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}
/* === Column Base === */
[class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
}
/* === Col-12 === */
.col-12 { flex: 0 0 100%; max-width: 100%; }
/* === Col-6 === */
.col-6 { flex: 0 0 50%; max-width: 50%; }
/* === Col-4 === */
.col-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
/* === Col-3 === */
.col-3 { flex: 0 0 25%; max-width: 25%; }
/* === Col-2 === */
.col-2 { flex: 0 0 16.6667%; max-width: 16.6667%; }
/* === Responsive Columns === */
/* Small (≥576px) */
@media (min-width: 576px) {
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
  .col-sm-2 { flex: 0 0 16.6667%; max-width: 16.6667%; }
}
/* Medium (≥768px) */
@media (min-width: 768px) {
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-2 { flex: 0 0 16.6667%; max-width: 16.6667%; }
}
/* Large (≥992px) */
@media (min-width: 992px) {
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-2 { flex: 0 0 16.6667%; max-width: 16.6667%; }
}
/* Extra large (≥1200px) */
@media (min-width: 1200px) {
  .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
  .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
  .col-xl-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
  .col-xl-2 { flex: 0 0 16.6667%; max-width: 16.6667%; }
}
/*End Grid*/
/*Global*/
html, body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
html, body.text-ui-dark {
    background: #262626;
    color: #fff;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #e9e9e9;
}
::-webkit-scrollbar-thumb {
  background: var(--adt-primary-color);
  border-radius: 8px;
}
img {
  max-width: 100%;
  object-fit: contain;
  height: auto;
}
a {
  text-decoration: none;
  color: #1a2954;
}
h1, h2, h3, h4, h5, h6 {
  color: #222;
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: 10px;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555;
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }
  h5 { font-size: 1.1rem; }
  h6 { font-size: 0.95rem; }
}
ul, ol {
  margin: 1em 0;
  padding-left: 1.5em;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
li {
  margin-bottom: 0.5em;
}
figure {
    margin: 0;
}
ol {
  list-style-type: decimal;
}
ul {
  list-style-type: disc;
}
ul ul,
ol ol,
ul ol,
ol ul {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  padding-left: 1.5em;
  font-size: 0.95em;
}
/*End Global*/

/* Item ranking */
@media (max-width: 576px) {

}
@media (max-width: 768px){

}
@media (min-width: 769px) and (max-width: 991px) {

}
@media (min-width: 992px) and (max-width: 1199px) {

}
@media (min-width: 1200px) and (max-width: 1399px){

}
@media (min-width: 1400px) and (max-width: 1599px) {

}
/* End Item ranking */

/* Item new - sub ranking */


@media (min-width: 1400px) and (max-width: 1599px) {

}
@media (min-width: 1200px) and (max-width: 1399px){

}
@media (min-width: 992px) and (max-width: 1199px) {

}
@media (min-width: 769px) and (max-width: 991px) {

}
@media (max-width: 768px){

}
@media (max-width: 576px) {

}

/* End Item new */

/* Item Genre */


@media (max-width: 576px) {

}
@media (max-width: 768px){

}
@media (min-width: 769px) and (max-width: 991px) {

}
@media (min-width: 992px) and (max-width: 1199px) {

}
@media (min-width: 1200px) and (max-width: 1399px){

}
@media (min-width: 1400px) and (max-width: 1599px) {

}

/* End Item Genre */



/* Footer */
.entry-content p {
  color: #dfdfdf;
}
footer.site-footer {
  text-align: center;
  padding: 2rem 0;
  background: -webkit-linear-gradient(left, #fab20d 40%,#fab20d);
  background: -o-linear-gradient(right, #fab20d 40%,#fab20d);
  background: -moz-linear-gradient(right, #fab20d 40%,#fab20d);
  background: linear-gradient(to right, #fab20d 40%,#fab20d);
}
.copyright {
  font-size: 14px;
  padding: 10px 0;
  border-top: 1px solid #5f5f5f;
  color: #333;
}
.footer_desc {
  color: #333;
}


.tags {
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  margin-top: 1rem;
}
    .tags li {
      float: left; 
    }
    .tag {
      background: #eee;
      border-radius: 3px 0 0 3px;
      display: inline-block;
      height: 26px;
      line-height: 24px;
      padding: 0 20px 0 20px;
      position: relative;
      margin: 0 10px 10px 0;
      text-decoration: none;
      -webkit-transition: color 0.2s;
      border: none;
      border-bottom: 1px solid #262626;
    }
    .tag::before {
      background: #fff;
      border-radius: 10px;
      box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
      content: '';
      height: 6px;
      left: 10px;
      position: absolute;
      width: 6px;
      top: 10px;
    }
    .tag::after {
  background: #fff;
  border-bottom: 13px solid #262626;
  border-left: 10px solid #eee;
  border-top: 13px solid #262626;
  content: '';
  position: absolute;
  right: 0;
  top: 0;
}
    .tag:hover {
  background-color: #fab20d;
  color: white;
}
    .tag:hover::after {
  border-left-color: #fab20d;
}
.latest .mg_post__item {
  margin-top: 1rem;
}
.entry-content h2 {
  color: #fff;
}
/*End Footer */

/*  breadcrumb */
.c-breadcrumb {
  margin: 0 -15px;
}
.c-breadcrumb .breadcrumb {
  margin-bottom: 0;
  background-color: transparent;
  list-style: none;
  display: flex;
}
.c-breadcrumb .breadcrumb li {
  font-size: 12px;
}
.c-breadcrumb .breadcrumb li a {
  color: #888888;
}
.c-breadcrumb .breadcrumb li a:hover {
  color: var(--primary-color);
}
.c-breadcrumb .breadcrumb li + li:before {
  content: "/";
  padding: 0 2px;
}
.c-breadcrumb-wrapper {
  padding-top: 16px;
}
@media (max-width: 480px) {
  .c-breadcrumb-wrapper {
    padding-top: 10px;
  }
  .c-search-header__wrapper {
    padding-bottom: 5px;
  }
}
.reading-content-wrap .entry-header,
.reading-content-wrap .c-select-bottom {
  margin-bottom: 50px;
}
.reading-content-wrap .entry-header:after,
.reading-content-wrap .c-select-bottom:after {
  display: table;
  content: "";
  clear: both;
}
.reading-content-wrap .entry-header .entry-header_wrap,
.reading-content-wrap .c-select-bottom .entry-header_wrap {
  margin-bottom: 14px;
}
.reading-content-wrap .entry-header .entry-header_wrap .action-icon,
.reading-content-wrap .c-select-bottom .entry-header_wrap .action-icon {
  float: right;
}
.reading-content-wrap .entry-header .entry-header_wrap .action-icon ul,
.reading-content-wrap .c-select-bottom .entry-header_wrap .action-icon ul {
  margin-bottom: 0;
  margin-top: 3px;
}
.reading-content-wrap .entry-header .entry-header_wrap .action-icon ul li a,
.reading-content-wrap .c-select-bottom .entry-header_wrap .action-icon ul li a {
  width: 30px;
  height: 30px;
  display: block;
  text-align: center;
  background-color: #ebebeb;
  position: relative;
  border-radius: 50%;
  color: var(--primary-color);
  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
.reading-content-wrap .entry-header .entry-header_wrap .action-icon ul li a i,
.reading-content-wrap .c-select-bottom .entry-header_wrap .action-icon ul li a i {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 18px;
  display: inline-block;
}
.reading-content-wrap .entry-header .entry-header_wrap .action-icon ul li:hover a,
.reading-content-wrap .c-select-bottom .entry-header_wrap .action-icon ul li:hover a {
  background-color: var(--primary-color);
  color: #ffffff;
}
.reading-content-wrap .entry-header .entry-header_wrap .action-icon,
.reading-content-wrap .c-select-bottom .entry-header_wrap .action-icon,
.reading-content-wrap .entry-header .entry-header_wrap .c-breadcrumb,
.reading-content-wrap .c-select-bottom .entry-header_wrap .c-breadcrumb {
  display: inline-block;
}
.reading-content-wrap .entry-header .c-selectpicker,
.reading-content-wrap .c-select-bottom .c-selectpicker {
  max-width: 450px;
}
.reading-content-wrap .entry-header .c-selectpicker .selectpicker,
.reading-content-wrap .c-select-bottom .c-selectpicker .selectpicker {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.reading-content-wrap .entry-header .c-selectpicker label,
.reading-content-wrap .c-select-bottom .c-selectpicker label {
  margin-bottom: 0;
  position: relative;
}
.reading-content-wrap .entry-header .c-selectpicker label:after,
.reading-content-wrap .c-select-bottom .c-selectpicker label:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "\f0dc";
  font-family: Font Awesome\ 5 Free; font-display: optional;
  font-style: normal;
  font-weight: 900;
  text-decoration: inherit;
  background: transparent;
  width: 17px;
  top: 50%;
  transform: translateY(-50%);
}
.reading-content-wrap .entry-header .c-selectpicker select.selectpicker,
.reading-content-wrap .c-select-bottom .c-selectpicker select.selectpicker {
  padding: 10px 30px 10px 16px;
  border: none;
  background-color: #ebebeb;
  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.reading-content-wrap .entry-header .c-selectpicker select.selectpicker:focus,
.reading-content-wrap .c-select-bottom .c-selectpicker select.selectpicker:focus {
  outline: none;
}
.reading-content-wrap .entry-header .c-selectpicker select.selectpicker option,
.reading-content-wrap .c-select-bottom .c-selectpicker select.selectpicker option {
  background-color: #fff;
  color: #333;
}
.reading-content-wrap .entry-header .c-selectpicker select.selectpicker:hover,
.reading-content-wrap .c-select-bottom .c-selectpicker select.selectpicker:hover {
  cursor: pointer;
  background-color: #f3f3f3;
}
.reading-content-wrap .entry-header .select-view,
.reading-content-wrap .c-select-bottom .select-view {
  float: left;
  margin: 0 -3.5px;
}
.reading-content-wrap .entry-header .select-view > *,
.reading-content-wrap .c-select-bottom .select-view > * {
  display: inline-block;
  padding: 0 3.5px;
}
.reading-content-wrap .entry-header .select-pagination,
.reading-content-wrap .c-select-bottom .select-pagination {
  float: right;
  margin: 0 -5px;
}
.reading-content-wrap .entry-header .select-pagination > *,
.reading-content-wrap .c-select-bottom .select-pagination > * {
  padding: 0 5px;
  display: inline-block;
  vertical-align: middle;
}
.reading-content-wrap .entry-header .select-pagination .nav-links,
.reading-content-wrap .c-select-bottom .select-pagination .nav-links {
  margin: 0 -1px;
  font-size: 0;
}
.reading-content-wrap .entry-header .select-pagination .nav-links .mobile-nav-btn,
.reading-content-wrap .c-select-bottom .select-pagination .nav-links .mobile-nav-btn {
  display: none;
}
.reading-content-wrap .entry-header .select-pagination .nav-links > *,
.reading-content-wrap .c-select-bottom .select-pagination .nav-links > * {
  display: inline-block;
  padding: 0 1px;
  font-size: 14px;
}
.reading-content-wrap .entry-header .select-pagination .nav-links > * a,
.reading-content-wrap .c-select-bottom .select-pagination .nav-links > * a {
  padding: 9px 17px;
  background-color: var(--primary-color);
  color: #fff;
  position: relative;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.reading-content-wrap .entry-header .select-pagination .nav-links > * a:before,
.reading-content-wrap .c-select-bottom .select-pagination .nav-links > * a:before {
  position: absolute;
  display: inline-block;
  font-family: "Ionicons";
font-display: optional;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  top: 50%;
  transform: translateY(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  font-size: 21px;
}
.reading-content-wrap .entry-header .select-pagination .nav-links > * a:hover,
.reading-content-wrap .c-select-bottom .select-pagination .nav-links > * a:hover {
  background-color: #0f0f0f;
  color: #fff;
}

.reading-content-wrap .entry-header .select-pagination .nav-links .btn-primary,
.reading-content-wrap .c-select-bottom .select-pagination .nav-links .btn-primary{background:none}
.reading-content-wrap .entry-header .select-pagination .nav-links .nav-previous a,
.reading-content-wrap .c-select-bottom .select-pagination .nav-links .nav-previous a {
  padding-left: 30px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.reading-content-wrap .entry-header .select-pagination .nav-links .nav-previous a:before,
.reading-content-wrap .c-select-bottom .select-pagination .nav-links .nav-previous a:before {
  left: 13px;
  content: "❮";
}
.reading-content-wrap .entry-header .select-pagination .nav-links .nav-next a,
.reading-content-wrap .c-select-bottom .select-pagination .nav-links .nav-next a,
.reading-content-wrap .entry-header .select-pagination .nav-links .btn-primary a,
.reading-content-wrap .c-select-bottom .select-pagination .nav-links .btn-primary a {
  padding-right: 30px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.reading-content-wrap .entry-header .select-pagination .nav-links .nav-next a:before,
.reading-content-wrap .c-select-bottom .select-pagination .nav-links .nav-next a:before
 {
  right: 13px;
  content: "❮"; 
  transform: rotate(-180deg);
  top: 25%;
}

.reading-content-wrap .entry-header .select-pagination .nav-links a.back:before,
.reading-content-wrap .c-select-bottom .select-pagination .nav-links a.back:before{
  content: "ⓘ";
  font-size: 20px;
}
@media (max-width: 1200px) {
  .reading-content-wrap .entry-header .select-view,
  .reading-content-wrap .c-select-bottom .select-view,
  .reading-content-wrap .entry-header .select-pagination,
  .reading-content-wrap .c-select-bottom .select-pagination {
    float: none;
  }
  .reading-content-wrap .entry-header .select-view .c-selectpicker,
  .reading-content-wrap .c-select-bottom .select-view .c-selectpicker,
  .reading-content-wrap .entry-header .select-pagination .c-selectpicker,
  .reading-content-wrap .c-select-bottom .select-pagination .c-selectpicker {
    padding: 5px 0;
  }
}
@media (max-width: 480px) {
  .reading-content-wrap .entry-header .select-view,
  .reading-content-wrap .c-select-bottom .select-view,
  .reading-content-wrap .entry-header .select-pagination,
  .reading-content-wrap .c-select-bottom .select-pagination {
    float: none;
  }
  .reading-content-wrap .entry-header .select-view .c-selectpicker,
  .reading-content-wrap .c-select-bottom .select-view .c-selectpicker,
  .reading-content-wrap .entry-header .select-pagination .c-selectpicker,
  .reading-content-wrap .c-select-bottom .select-pagination .c-selectpicker {
    max-width: 100%;
  }
  .reading-content-wrap .entry-header .select-view .c-selectpicker .selectpicker,
  .reading-content-wrap .c-select-bottom .select-view .c-selectpicker .selectpicker,
  .reading-content-wrap .entry-header .select-pagination .c-selectpicker .selectpicker,
  .reading-content-wrap .c-select-bottom .select-pagination .c-selectpicker .selectpicker {
    width: 100%;
  }
}

.reading-content-wrap .tips {
  background-color: #363636;
  padding: 30px;
  margin-bottom: 30px;
}
.reading-content-wrap .tips span {
  font-weight: 600;
  color: #fff;
}
.reading-content-wrap #comments.comments-area .comments-title,
.reading-content-wrap #comments.comments-area h4.comment-reply-title {
  margin-bottom: 10px;
}
.reading-content-wrap #comments.comments-area #respond.comment-respond {
  margin-top: 0;
}

.reading-content-wrap .page-break {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  background-color: #f0f0f0;
  overflow: hidden;
}

.reading-content-wrap .wp-manga-chapter-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.reading-content-wrap .wp-manga-chapter-img.loaded {
  opacity: 1;
}