@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/spacegrotesk/v22/V8mDoQDjQSkFtoMM3T6r8E7mPb54C-s0.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/spacegrotesk/v22/V8mDoQDjQSkFtoMM3T6r8E7mPb94C-s0.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/spacegrotesk/v22/V8mDoQDjQSkFtoMM3T6r8E7mPbF4Cw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    background-color: #16151D;
    color: #eee;
}

p {
    line-height: 1.9;
    margin-bottom: 10px;
}

a {
    display: block;
    color: #eee;
    text-decoration: none;
    text-align: center;
}

ul {
    list-style: none;
}

li {
    padding: 0;
    margin: 0;
}

.wrapper {
    width: 1200px;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.wleft{
    width: 100%;
    float: left;
}
.tleft{
    text-align: left;
}
.tcenter{
    text-align: center;
}
.tright{
    text-align: right;
}

.title-bigger {
    text-transform: capitalize;
    line-height: 1.5;
    margin-bottom: 15px;
}

/*Breadcrumb*/
.c-breadcrumb-wrapper {
    padding: 15px 0;
}
.c-breadcrumb{
    text-align: center;
}
.c-breadcrumb .breadcrumb {
    margin-bottom: 0;
    background-color: transparent;
    display: inline-block;
    padding: 0;
}
.c-breadcrumb .breadcrumb li {
    display: inline-block;
    font-size: 12px;
}
.c-breadcrumb .breadcrumb li a {
    display: inline;
    color: #eee;
    font-weight: 400;
}
.c-breadcrumb .breadcrumb li a:hover{
    color: #d632b3;
}
.c-breadcrumb .breadcrumb li + li:before {
    content: "/";
    padding: 0 2px;
}
/*End Breadcrumb*/


/* Css-pagination */

.pagination {
    margin: 20px 0;
}
#pagination{
    text-align: center;
}
#pagination ul {
    justify-content: center;
}
#pagination ul li{
    display: inline-block;
}
#pagination ul li.disabled{
    display: none;
}

#pagination .active a {
    color: #eee;
    background: #222222;
}

#pagination a,
#pagination span {
    font-size: 15px;
    padding: 5px 10px;
    border: 1px solid #222222;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 400;
}

#pagination a:hover,
#pagination span:hover {
    color: #eee;
    background-color: #4A5361;
}

/* Css switch  */
.switch{
    text-align: -webkit-right;
    padding: 10px 13px;
}
.checkbox {
    opacity: 0;
    position: absolute;
}

.label {
    width: 33px;
    height: 17px;
    background-color: #14425d;
    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 2px;
    position: relative;
    transform: scale(1.5);
    cursor: pointer;
}

.ball {
    width: 16px;
    height: 17px;
    background-color: #eee;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    transition: transform 0.2s linear;
}

.icofont-moon {
    color: pink;
}

.icofont-sun {
    color: yellow;
}

/*  target the elemenent after the label*/
.checkbox:checked+.label .ball {
    transform: translateX(19px);
}

/* ----------------------End CSS chung----------------- */


/*------------------ CSS header + search ---------------- */


/* Css-search */
.icon-mb {
    display: inline-block;
    text-align: right;
}

.search {
    display: none;
    margin: 38px auto;
    width: 780px;
    max-width: 95%;
}

.search-btn-mb {
    display: inline-block;
    font-size: 27px;
    font-weight: 900;
    color: #eee;
    padding: 5px;
    margin-right: 8px;
    cursor: pointer;
}

.search-btn-close {
    display: none;
}

.open-btn {
    display: none;
    background: transparent;
    border: none;
    color: #eee;
    font-size: 28px;
}

form {
    position: relative;
}

.search form {
    width: 100%;
}

form button[class=submit-search] {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 20px;
    font-weight: bold;
    padding: 0 28px;
    border: none;
    color: #eee;
    background: #d632b3;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    width: 75px;
}

form input[class=main-search] {
    width: calc(100% - 75px);
    max-width: 100%;
    height: 45px;
    font-size: 18px;
    padding: 10px;
    background-color: #383838 !important;
    border: 1px solid #383838;
    border-radius: 5px 0 0 5px;
    outline: none !important;
    color: #eee;
}

form input:focus-visible {
    outline: none;
    background-color: #d7d7d7;
}


/* End css Search  */


/* Css header top  */

.header-top {
    background: black;
    padding: 10px 0;
}

.header-top .wrapper {
    justify-content: center;
}


/* logo  */
.logo {
    display: inline-block;
}

.img-logo {
    width: auto;
    height: 25px;
    vertical-align: middle;
}


/* main nav  */

.nav-pc-main{
    display: inline-block;
    margin-left: 30px;
}
.nav-pc li {
    margin: 0 20px;
}
.nav-pc li a{
    font-weight: 500;
    text-transform: uppercase;
}
.nav-pc-main .item-nav{
    text-transform: uppercase;
    color: #f5f5f5;
}

.icon-mb{
    display: inline-block;
    text-align: right;
    flex: 1;
}



/* End css header top  */


/* Css header bot  */


/* css header bot pc  */
.header-bot{
    background-color: #06121e;
    padding: 0;
}
.header-bot a{
    color: #d1d1d1;
}
.header-bot .wrapper {
    position: relative;
}
.nav-pc-list li:hover>.hide-list{
    display: block;
}
.nav-pc-list li:hover .item-nav,
.hide-list a:hover{
    color: #d632b3;
}


/* css nav pc  */

.item-nav {
    color: #666;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    padding: 15px;
    line-height: 2;
}

.nav-pc li:nth-child(1) {
    margin-left: 0;
}
.hide-list {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background-color: #041629;
    border-bottom: 3px solid #02aab0;
    z-index: 3;
    padding-bottom: 5px;
}

.hide-list a {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
    overflow: hidden;
    padding: 10px 10px 0 10px;
    text-align: start;
    font-size: 14px;
}

.header-bot .wrapper {
    justify-content: space-between;
}
.header-bot ul li:first-child a{
    padding-left: 0;
}

/* Css nav mobile */

.sidepanel {
    width: 0;
    position: fixed;
    z-index: 3;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: black;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidepanel a {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    color: #eee;
    display: block;
    padding: 15px;
    text-align: start;
    border-bottom: 1px solid #16151D;
}

.item-nav-mb {
    padding: 8px;
    margin: 5px 0;
    color: #ccc;
}
.show-1{
    display: none;
}

.sidepanel a:hover {
    color: #f1f1f1;
}

.sidepanel .closebtn {
    position: absolute;
    top: 0;
    right: 9px;
    font-size: 36px;
    padding: 3px 20px;
    width: 100%;
    float: left;
    text-align: center;
    border-bottom: none;
}

.genre-list-mb {
    display: none;
}

.genre-list-mb a {
    padding: 3px;
    margin: 10px 0 10px 20px;
}



/* End Css header bot  */


/* --------------------End CSS header + Search--------------------  */


/* ---------------------------CSS body ---------------------------*/


/* Css chung body */

.title-big {
    width: 100%;
    float: left;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: 2px solid #383838;
}
.title-big h1 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    position: relative;
    text-transform: uppercase;
    color: #eee;
    float: left;
    padding-right: 20px;
}
.title-big h2 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 7px;
}
.title-big h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 7px;
}
.title-big i{
    background: #d632b3;
    font-size: 18px;
    width: 30px;
    height: 30px;
    color: #eee;
    position: relative;
    margin-right: 10px;
    margin-bottom: -2px;
    vertical-align: middle;
    display: inline-block;
}
.title-big i:before{
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.title-big i:after{
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #d632b3;
    position: absolute;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.order-nav-tabs {
    display: inline-block;
    float: right;
    line-height: 25px;
}
.order-nav-tabs span {
    float: left;
    padding-right: 15px;
    font-size: 14px;
}
.order-nav-tabs ul {
    padding: 0;
    margin: 0;
    float: left;
    list-style: none;
}
.order-nav-tabs ul li {
    display: inline-block;
    padding-left: 15px;
}
.order-nav-tabs ul li a {
    color: #888888;
    font-size: 14px;
}
.order-nav-tabs ul li a.active{
    color: #eee;
}

.box {
    background-color: #222222;
    padding: 10px;
    margin: 20px 0;
    border-radius: 4px;
    box-shadow: 1px 3px 8px rgba(49, 49, 49, .1);
}

.hide-text {
    word-break: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.entry {
    position: absolute;
    bottom: 0;
    width: 100%;
    float: left;
    background: rgba(22, 21, 29, 0.8);
    padding: 10px;
    text-align: center;
    text-transform: capitalize;
}

.title-smaller {
    -webkit-line-clamp: 2;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
}

.item-move a:hover {
    color: #d632b3;
}

.pthumbnail{
    position: relative;
    width: 100%;
    padding-bottom: 140%;
    overflow: hidden;
}
.pthumbnail img{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

#button-scroll i {
    border: 2px solid #d632b3;
    font-size: 25px;
    position: fixed;
    bottom: 30px;
    right: 15px;
    color: #d632b3;
    padding: 5px;
    cursor: pointer;
    border-radius: 10px;
}


/* End Css chung body  */
#body{
    padding: 20px 0;
    min-height: calc(100vh - 195px);
}

/* Css body container  */

.container {
    align-items: start;
    width: 100%;
}

.left {
    width: 100%;
}

.right {
    flex: 1;
}

/* Css body popular  */
.popular-list {
    margin: 0 -7px;
}

.popular-item {
    width: calc(20% - 20px);
    margin: 0 10px;
}

.popular-item:hover .title-smaller {
    color: #d632b3;
}

.img-popular {
    width: 100%;
    height: 219px;
    object-fit: cover;
}


/* Css body latest  */

.latest-list {
    margin-bottom: 15px;
    width: calc(100% + 20px);
    margin-left: -10px;
}

.latest-item {
    align-items: start;
    width: 16.6667%;
    padding: 15px 10px;
}
.latest-item .latest-left{
    width: 100%;
    float: left;
}
.latest-item .latest-left a{
    line-height: 1;
}
.latest-item .latest-left .img-latest {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.latest-item .latest-right {
    width: 100%;
    float: left;
    padding-top: 10px;
    height: 170px;
}
.latest-item .latest-right a:hover{
    color: #d632b3;
}

.latest-right h3 {
    line-height: 1.3;
    text-align: start;
    -webkit-line-clamp: 2;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.latest-right ul {
    width: 100%;
    float: left;
}

.latest-right li {
    margin: 10px 0 0 0;
    width: 100%;
    float: left;
}

.latest-right li a {
    font-size: 13px;
    font-weight: 500;
    color: #eee;
    float: left;
    background: #222222;
    padding: 1px 10px;
    border-radius: 5px;
}

.latest-right li a:hover {
    color: #d632b3;
}

.latest-right li span {
    float: right;
    color: #999;
    font-size: 12px;
    margin-top: 1px;
}
.latest-right li span img{
    margin-top: 2.5px;
    border-radius: 2px;
}

    /* Css side-bar  */

/* Css rank  */

.tab-buttons {
    justify-content: space-between;
    background-color: #f1f1f1;
    margin-bottom: 15px;
}

.tab-button {
    width: 33.33333333%;
    padding: 7px 8px;
    border: none;
    background: none;
    text-transform: capitalize;
    cursor: pointer;
}

.tab-button:hover {
    background-color: #ccc;
}

.tab-button.active {
    color: #eee;
    background-color: #0c70de;
}

.tab-content {
    display: none;

}

.tab-content.active {
    display: block;
}

.tab-content li {
    padding: 20px 0;
    border-bottom: 1px solid #f1f1f1;
    line-height: 1.5;
}

.num {
    color: #00a5f0;
    font-size: 13px;
    font-weight: 400;
    margin-right: 11px;
}

.img-rank {
    width: 58px;
    height: 84px;
    object-fit: cover;
}

.side-entry {
    flex: 1;
    padding-left: 10px;
}

.side-entry a {
    text-align: start;
    text-transform: capitalize;
}

.side-genres {
    text-transform: capitalize;
}

.side-genres span {
    font-weight: 500;
    color: #999;
}

.side-genres a {
    margin: 2px 0 2px 5px;
}

.side-genres a:hover {
    color: #0c70de;
}

.new-series-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    line-height: 1.5;
}

.release {
    color: orange;
}

.profile-manga {
    margin-bottom: 20px;
}
.profile-manga .post-title h1 {
    margin-top: 14px;
    font-size: 20px;
    font-weight: 600;
    color: #eee;
}
.profile-manga .post-title h1 span {
    background: #BA231F;
    color: #eee;
    padding: 5px;
    font-size: 11px;
    font-weight: 500;
    float: left;
    margin-right: 10px;
}
.site-body{
    width: 100%;
    float: left;
}
.tab-summary{
    padding: 15px 0 50px;
    display: table;
    width: 100%;
}
.tab-summary .summary_image{
    width: 195px;
    display: table-cell;
    vertical-align: middle;
}
.tab-summary .summary_image img{
    width: 100%;
}
.tab-summary .summary_content_wrap{
    overflow: hidden;
    display: table-cell;
    vertical-align: middle;
}
.tab-summary .summary_content{
    top: 0;
    bottom: 0;
    right: 0;
    padding: 20px 20px 20px;
    display: table;
}
.tab-summary .post-content{
    float: left;
}
.tab-summary .post-content .post-content_item{
    margin-bottom: 10px;
}
.tab-summary .post-content_item .summary-heading{
    width: 106px;
    float: left;
}
.tab-summary .post-content_item .summary-heading h5{
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 400;
    color: #eee;
}
.tab-summary .post-content_item .summary-content{
    width: calc(100% - 106px);
    word-break: break-word;
    float: left;
    font-size: 15px;
}
.tab-summary .post-content_item .summary-content a{
    display: inline-block;
}
.tab-summary .post-content_item .summary-content a:hover{
    color: #d632b3;
}
.tab-summary .post-content_item .summary-content a + a:before {
    content: "/";
    padding: 0 2px;
}
.tab-summary .post-status{
    width: 200px;
    padding-left: 10px;
    display: table-cell;
    vertical-align: middle;
}
.tab-summary .post-status .post-content_item{
    margin-bottom: 10px;
}
.tab-summary .post-status .summary-heading{
    width: 50% !important;
    float: left;
}
.tab-summary .post-status .summary-content{
    width: 50% !important;
    float: left;
}
.story-rating{
    margin-bottom: 15px;
}
.story-rating span.avgrate{
    margin-left: 20px;
    font-size: 15px;
    font-weight: 500;
    color: #eee;
    float: left;
    margin-top: 4px;
}
.story-rating b{
    float: left;
}
.story-rating .my-rating{
    float: left;
}
.jq-star {
    width: 100px;
    height: 100px;
    display: inline-block;
    cursor: pointer;
}
.jq-star-svg {
    padding-left: 3px;
    width: 100%;
    height: 100%;
}
.is_rate{
    display: block;
    font-size: 13px;
    font-style: italic;
    margin-bottom: 10px;
    color: #d632b3;
}
.rate-title{
    display: none;
}
.bookmark-btn{
    width: 100%;
    font-size: 15px;
    margin-top: 10px;
}
.bookmark-btn .book-mark{
    color: #eee;
    padding: 5px 10px;
    background: #d632b3;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
}
.sumbmrk{
    margin-top: 5px;
    color: #888888;
    font-size: 13px;
}
.bookmark-btn .book-mark i{
    font-size: 14px;
}
.bookmark-btn .book-mark span{
    color: #888888;
    font-size: 13px;
    font-weight: normal;
    text-transform: none;
}
.nbk:hover{
    cursor: pointer;
}
.bknotice{
    font-size: 13px;
    color: #d632b3;
}

.manga-panel-title {
    border-bottom: 2px solid #383838;
    font-size: 17px;
    font-weight: 500;
    margin: 0;
    position: relative;
    text-transform: uppercase;
    color: #eee;
    margin-bottom: 15px;
    padding-bottom: 5px;
}
.manga-panel-title i{
    background: #d632b3;
    font-size: 18px;
    width: 30px;
    height: 30px;
    color: #eee;
    position: relative;
    margin-right: 16px;
    margin-bottom: -1px;
    vertical-align: middle;
    display: inline-block;
}
.manga-panel-title i:before{
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.manga-panel-title i:after{
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #d632b3 !important;
    position: absolute;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.panel-story-description .dsct {
    line-height: 1.5;
}
.panel-story-description span{
    color: #d632b3;
    font-weight: 500;
}
.panel-manga-chapter{
    margin-top: 30px;
}
.panel-manga-chapter ul{
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 500px;
    display: block;
    overflow: hidden;
    word-break: break-word;
    word-wrap: break-word;
    overflow-y: scroll;
}
.panel-manga-chapter ul::-webkit-scrollbar {
    width: 5px;
}
.panel-manga-chapter ul::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #06121e;
    border-radius: 7px;
}

.panel-manga-chapter ul li{
    padding: 10px 0;
    border-bottom: 1px solid #383838;
}
.panel-manga-chapter ul li img{
    float: right;
    border-radius: 2px;
}
.panel-manga-chapter ul li a{
    color: #eee;
    font-size: 14px;
    font-weight: 500;
    float: left;
}
.panel-manga-chapter ul li a:hover{
    color: #d632b3;
}
.panel-manga-chapter ul li span{
    float: right;
    font-size: 14px;
    color: #999;
}
.comment-box{
    margin-top: 40px;
}


.manga-body {
    margin: 30px 0;
    padding-bottom: 50px;
}
/*Read Chapter*/
.chapchange h1{
    font-size: 20px;
    color: #eee;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 25px;
}
.chapchange .change-chapter{
    display: inline-block;
    width: 150px;
    height: 30px;
    line-height: 30px;
    border-radius: 5px;
    background: #222;
    color: #f5f5f5;
    position: relative;
    font-size: 15px;
    margin-right: 20px;
}
.chapchange .change-page{
    text-align: center;
}
.chapchange .change-page:hover{
    cursor: pointer;
}
.chapchange .change-chapter ul{
    max-height: 210px;
    position: absolute;
    z-index: 999;
    width: 100%;
    background: #222;
    border-radius: 5px;
    overflow-y: scroll;
    display: none;
}
.chapchange .change-chapter ul li a{
    color: #f5f5f5;
}
.chapchange .change-chapter ul li a:hover{
    color: #d632b3;
}
.chapchange .change-chapter ul.top{
    margin-top: 5px;
}
.chapchange .change-chapter ul.bottom{
    bottom: 43px;
}
.chapchange .change-chapter ul::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
    /*background-color: #F5F5F5;*/
    display: none;
}
.chapchange .change-chapter ul::-webkit-scrollbar {
    /*width: 10px;*/
    /*background-color: #F5F5F5;*/
    display: none;
}
.chapchange .change-chapter ul::-webkit-scrollbar-thumb {
    /*background-color: #000000;*/
    /*border: 2px solid #555555;*/
    display: none;
}
.chap-navigation .navi-change-chapter-btn{
    display: inline-block;
    line-height: 30px;
}
.chap-navigation .navi-change-chapter-btn a{
    background: #d632b3;
    color: #eee;
    padding: 0 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    border-radius: 5px;
    height: 30px;
}
.chap-navigation .navi-change-chapter-btn a:first-child{
    margin-right: 20px;
}
.read-content{
    margin: 20px 0;
    min-height: calc(100vh - 350px);
}
.read-content img{
    height: auto;
    width: 100%;
    max-width: 720px;
    margin-bottom: -6px;
}
.chapter-sumary{
    padding: 15px 0;
    margin-bottom: 20px;
}
.chapter-sumary h2{
    font-size: 16px;
    font-weight: 500;
}
.chapter-sumary a{
    color: #d632b3;
    font-weight: 500;
}
.chapter-sumary a:hover{
    text-decoration: underline;
}
.chapter-sumary p{
    margin-bottom: 0;
    line-height: 1.5;
}
/*End Read Chapter*/


/* End Css Side bar  */
/* ------------------Css footer ------------- */
#footer {
    width: 100%;
    float: left;
    background-color: #06121e;
    padding: 20px 0;
}

#footer .wrapper {
    justify-content: space-between;
}

.img-logo-bottom {
    width: auto;
    max-width: 240px;
    height: 22px;
    float: left;
}

.bottom-right a {
    color: #eee;
    padding: 5px 10px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
}

.bottom-right a:hover {
    color: #eee;
}

/*----------------- Css page Detail ------------------ */
/* Css main info  */
.main-info {
    align-items: start;
}

.main-info-left {
    margin-right: 20px;
    text-align: center;
}

.img-cover {
    width: 250px;
    max-height: 350px;
}

.main-info-bookmark {
    text-transform: capitalize;
    text-align: center;
    margin: 10px 0;
    line-height: 1.5;

}

.main-info-bookmark button {
    text-transform: capitalize;
    color: #eee;
    font-weight: 600;
    padding: 5px 8px;
    margin-bottom: 5px;
    background-color: #0c70de;
    border: 1px solid #222;
    cursor: pointer;
}

.main-info-right {
    flex: 1;
    text-transform: capitalize;
    line-height: 1.5;
}

.main-info-title {
    -webkit-line-clamp: 2;
}
.main-info-list li {
    display: flex;
    padding: 2px 0;
}

.main-info-list li h5 {
    margin-right: 10px;
    font-size: 14px;
    float: left;
}

.main-info-list li a {
    display: inline-block;
    color: #666666;
    margin: 3px;
}

.main-info-list li a:hover {
    color: #00a5f0;
}

.main-info-list li span {
    display: inline-block;
    color: #666666;
    margin-top: 3px;
}

.read-btn a {
    color: #eee;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 15px;
    margin-right: 20px;
    margin-top: 20px;
    background-color: #0c70de;
}

.read-btn a:hover {
    color: #222;
    background-color: #ccc;
}

/* End Css main-info  */
/* Css short desc  */

.short-desc-content p {
    margin-top: 10px;
    font-size: 12px;
}

#more {
    display: none;
}

#moreBtn {
    margin-top: 10px;
    padding: 4px 5px;
    border: none;
    background-color: #ccc;
    cursor: pointer;
}

#moreBtn:hover {
    background-color: #666666;
}

/* Css chapter list  */
.chapter-list {
    margin-top: 10px;
    max-height: 390px;
    overflow-y: scroll;
}
.chapter-list li {
    border: 1px solid #ebebeb;
    margin: 8px;
}

.chapter-list li:hover {
    background-color: #ebebeb;
}

.chapter-list li:hover span {
    color: #0c70de;
}

.chapter-list li a {
    display: flex;
    justify-content: space-between;
    text-transform: capitalize;

    padding: 8px;
}

.chapter-name {
    font-weight: 500;
}

.chapter-update {
    font-size: 11px;
    font-weight: 300;

}

/*--------------- End Css page info ---------------- */
/* -------------- Css page chapter ----------------- */

.reading-chapter .wrapper {
    width: 100%;
    max-width: 1142px;
}

.reading-chapter-top {
    text-align: center;
}

.intro-chapter {
    width: 100%;
    float: left;
    margin: 20px 0;
    text-align: center;
}
.intro-chapter span{
    color: #d632b3;
    font-weight: 500;
}
.intro-chapter a {
    color: #d632b3;
    display: inline-block;
    font-weight: 500;
}

.choose-chapter {
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.choose-chapter select {
    background-color: #ebebeb;
    height: 30px;
    text-transform: capitalize;
    font-size: 14px;
    padding-left: 4px;
}

.next-pre-btn {
    text-transform: capitalize;
    display: inline-block;
    color: #eee;
    padding: 6px 12px;
    margin: 3px;
    background-color: #0c70de;
}

.reading-content p {
    text-align: center;
    margin-bottom: 0;
    line-height: 0;
}

.reading-content img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto
}

.tag strong {
    text-transform: capitalize;
}

/* -------------End css page chapter -------------- */
/* -----------------Css page info--------------- */
.info-page {
    margin: 50px 0;
}

.info-page-content {
    padding: 0 30px;
}

.info-page-content a {
    display: inline-block;
    color: #0c70de;
    font-weight: 500;
}

.img-error {
    margin: 30px 0;
    text-align: center;
}

.img-error img {
    width: 100%;
    max-width: 720px;
    height: auto;
}

.back-home {
    text-align: center;
}

.back-home a {
    text-transform: capitalize;
    font-size: 17px;
    color: #eee;
    padding: 8px 20px;
    background-color: #0c70de;
    border-radius: 10px;
}

.back-home a:hover {
    background-color: #222;
}

.mrg li {
    margin-bottom: 10px;
}

.mrg li strong {
    display: block;
    margin: 15px;
}

.onepage{
    width: 100%;
    float: left;
    margin: 15px 0 50px 0;
}
.onepage h1{
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 50px;
}
.onepage h2{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #d632b3;
}
.onepage h3{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #d632b3;
}
.onepage b{
    font-size: 18px;
    font-weight: 500;
    padding-top: 25px;
    padding-bottom: 5px;
    display: block;
}
.onepage ul{
    margin-left: 40px;
    list-style: disc;
}

.header-bot .authblock{
    width: 300px;
    float: left;
    text-align: right;
}
.header-bot .authblock .user-options{
    display: inline-block;
    line-height: 60px;
}
.header-bot .authblock .user-options a{
    display: inline-block;
    padding: 8px 15px;
    line-height: 1;
    background: rgba(255,255,255,.1);
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
}
.header-bot .authblock .user-options a:hover{
    background: #d632b3;
    color: #eee;
}
.header-bot .authblock .user-options a:first-child{
    margin-right: 15px;
}
.authblock .c-user_item{
    width: 100%;
    float: left;
}
.authblock .c-user_item .displayname{
    width: calc(100% - 50px);
    float: left;
}
.authblock .c-user_item span.name{
    color: #eee;
    line-height: 60px;
    padding-right: 15px;
    width: calc(100% - 50px);
    float: left;
    font-weight: 500;
}
.authblock .c-user_item span.notification{
    color: #eee;
    line-height: 60px;
    font-weight: 500;
    background: #8224e3;
    padding: 5px 5px;
    border-radius: 10px;
    display: none;
}
.authblock .c-user_avatar{
    width: 50px;
    float: right;
    position: relative;
}
.authblock .c-user_avatar img{
    width: 40px;
    height: 40px;
    margin-top: 10px;
    border-radius: 10px;
}
.authblock .c-user_avatar img:hover{
    cursor: pointer;
}
.c-user_menu{
    display: none;
    position: absolute;
    width: 190px;
    right: 0;
    background: #041629;
    border-top: 2px solid rgba(255,255,255,.1);
    border-bottom: 2px solid #8224e3;
    top: 60px;
    padding: 14px 10px;
    z-index: 999;
}
.c-user_menu a{
    line-height: 1;
    font-weight: 400;
    padding: 7px 0;
    text-align: left;
}
.c-user_menu li:first-child a{
    padding-top: 0;
}
.c-user_menu li:last-child a{
    padding-bottom: 0;
}
.c-user_menu a:hover{
    color: #d632b3;
}

/*User Content*/
.user-content{
    min-height: 72vh;
}
.signup-form{
    width: 100%;
    float: left;
    min-height: 500px;
    text-align: center;
    padding: 50px 0;
    text-transform: uppercase;
}
.signup-form h1{
    font-size: 20px;
    font-weight: 500;
    color: #eee;
    margin-bottom: 20px;
}
.signup-form form{
    width: 400px;
    margin: auto;
}
.signup-form .field-panel{
    width: 100%;
    float: left;
    margin-bottom: 15px;
}
.signup-form .field-panel i{
    width: 50px;
    height: 50px;
    background: #dddee0;
    padding: 10px;
    float: left;
    line-height: 31px;
}
.field-panel input[type=text], .field-panel input[type=password], .field-panel input[type=email] {
    width: calc(100% - 50px);
    float: left;
    height: 50px;
    border: 1px solid #dddee0;
    padding: 0 10px;
}
.signup-form form input[type=submit] {
    width: 400px;
    background: #8224e3;
    color: #eee;
    border: none;
    padding: 12px;
    font-weight: 700;
}
.signup-form form input[type=submit]:hover{
    cursor: pointer;
}

.user-setting{
    width: 100%;
    float: left;
}
.user-setting .left{
    width: calc(100% - 250px);
    float: left;
    padding-right: 15px;
    min-height: 500px;
}
.user-setting .left li {
    width: 100%;
    position: relative;
}
.user-setting .left li a{
    display: block;
    line-height: 1.42857143;
    background-color: #041629;
    color: #ddd;
    font-weight: 500;
    padding: 10px 15px 8px;
    border: none;
    border-radius: 0;
    margin-right: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    text-align: left;
}
.user-setting .left li.active a{
    background: #8224e3;
}
.user-setting .left li:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #8224e3;
    position: absolute;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
}
.user-setting .left li.active:after {
    opacity: 1;
    visibility: visible;
    border-left-color: #8224e3;
}
.bookmark-items{
    margin-bottom: 50px;
}
.bookmark-item{
    padding: 10px 10px 10px 0;
}
.bookmark-item img{
    width: 60px;
    height: 80px;
    margin-right: 10px;
    float: left;
    vertical-align: top;
}
.bookmark-item .item-right{
    width: calc(100% - 70px);
    float: left;
}
.bookmark-item .item-row-one{
    width: 100%;
    height: 30px;
    margin-bottom: 0;
}
.bookmark_remove{
    float: right;
    font-size: 14px;
}
.bookmark_remove:hover{
    cursor: pointer;
}
.bookmark_remove i{
    color: #8224e3;
}
.bookmark-item .item-story-name{
    float: left;
    color: #eee;
    font-weight: 500;
    font-size: 14px;
    text-align: left;
}
.bookmark-item .item-right span.item-title{
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
}
.bookmark-item .item-right span.item-title a{
    color: #8224e3;
    display: inline-block;
    padding-left: 10px;
}
.bookmark-item .item-right span.item-title:last-child{
    margin-bottom: 0;
}
.user-setting .right{
    width: 250px;
    float: left;
}
.user-setting .setting-choose{
    width: 100%;
    float: left;
    background: #383838;
    padding: 15px;
    margin-bottom: 20px;
}
.user-setting .right ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.user-setting .right ul li{
    padding: 5px 0;
}
.user-setting .right ul li a{
    font-weight: 400;
    text-align: left;
}
.user-setting .right ul li a:hover{
    color: #d632b3;
    text-decoration: none;
}
.user-setting .right ul li a.active{
    color: #d632b3;
}
.user-settings{
    margin-bottom: 50px;
}
.settings-title h3{
    font-size: 17px;
    font-weight: 500;
    color: #8224e3;
    margin: 10px 0;
}
.form-items{
    margin-bottom: 10px;
}
.form-items .form-label{
    width: 180px;
    float: left;
    height: 40px;
    line-height: 40px;
}
.form-items .form-input{
    width: calc(100% - 180px);
    float: left;
    line-height: 40px;
}
.form-items .form-input input{
    width: 100%;
    float: left;
    height: 40px;
    padding: 0 10px;
    outline: none !important;
    border-radius: 5px;
    border: none !important;
}
.form-items .form-input input[type='submit']{
    width: 100%;
    background: #8224e3;
    color: #eee;
    border: none;
    text-transform: uppercase;
}
.form-items .form-input input[type='submit']:hover{
    cursor: pointer;
}
.form-items .form-input .message{
    line-height: 1;
    padding-top: 10px;
}
.form-items .form-input .message p{
    margin-bottom: 0;
    font-size: 11px;
    color: #8224e3;
}
.exo-native-widget-item-title, .exo-native-widget-item-text, .exo-native-widget-item-brand {
    color: #eee !important;
}
.top20{
    margin-top: 25px;
}
.bottom20{
    margin-bottom: 25px;
}
.mogfun{
    width: 100%;
    float: left;
    text-align: center;
}
.funitem{
    width: 50%;
    float: left;
    text-align: center;
    padding: 10px;
}

/*Comment*/
.commentForm{
    width: 100%;
    float: left;
    margin-bottom: 20px;
}
.commentForm p{
    line-height: 1;
    font-size: 12px;
}
.comment-notes{
    color: #888;
}
textarea#content{
    width: 100%;
    padding: 10px;
    outline: none;
    background: #383838 !important;
    border: none;
    border-radius: 5px;
    color: #eee;
}
.comment-form-author{
    float: left;
    width: calc(50% - 10px);
}
.comment-form-email{
    float: left;
    width: calc(50% - 10px);
    margin-left: 20px;
}
.comment-form-input label{
    display: block;
    color: #888;
}
.comment-form-input input{
    width: 100%;
    border: none;
    outline: none;
    background: #383838 !important;
    padding: 10px;
    border-radius: 5px;
    color: #eee;
}
.form-submit input{
    background: #d632b3;
    border: none;
    padding: 10px 20px;
    color: #eee;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.form-submit input:hover{
    cursor: pointer;
}
.comment-result{
    display: inline-block;
}
.comment-result p{
    color: #d632b3;
    font-style: italic;
    margin-bottom: 0;
    line-height: 1;
    font-size: 13px;
}
.list-comments{
    width: 100%;
    float: left;
    margin-bottom: 20px;
}
.list-comments h4{
    color: #eee;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}
.list-comments h5{
    color: #eee;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
    display: inline-block;
}
.list-comments article{
    margin-bottom: 20px;
    width: 100%;
    float: left;
    color: #eee;
}
.list-comments article .block-left{
    width: 60px;
    float: left;
}
.list-comments article .block-left img{
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
}
.list-comments article .block-right{
    width: calc(100% - 60px);
    float: left;
    padding-left: 20px;
}
.list-comments article .block-right h6{
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
}
.list-comments article .block-right .reply{
    display: inline-block;
}
.list-comments article .block-right .reply a{
    margin-left: 20px;
    color: #888;
    font-size: 13px;
    text-transform: uppercase;
}
.list-comments article .block-right .comment-metadata{
    font-size: 12px;
    color: #888;
}
.cancel-reply{
    color: #888;
    font-size: 13px;
    margin-left: 50px;
}
.cancel-reply:hover{
    cursor: pointer;
}
/*End Comment*/

.item-rate .my-rating{
    float: left;
    padding-right: 10px;
}
.item-rate span{
    font-size: 13px;
    font-weight: 500;
    float: left;
    margin-top: 1px;
}

/*Detail Hentai*/
.chapter-preview{
    margin-top: 30px;
}
.chapter-preview-image {
    width: calc(100% + 10px);
    margin-left: -5px;
}

.chapter-preview-image span {
    width: calc(16.666% - 10px);
    margin: 5px;
    float: left;
    height: 260px;
    object-fit: cover;
    object-position: top;
}

.chapter-preview-image span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.chapter-preview-image span img:hover {
    opacity: 0.5;
}
.read-now{
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}
.read-now a{
    color: #d632b3;
    font-weight: 500;
}
/*End Hentai*/

/* Relation Block */
.relation-item{
    padding: 10px;
}
.relation-item .latest-left a{
    position: relative;
    display: flex;
}
.relation-item .smeta{
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    float: left;
    text-align: center;
    padding: 5px;
}
.smeta h3{
    line-height: 1.3;
    text-align: start;
    -webkit-line-clamp: 2;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}
/* End Relation Block */