/* Common  */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    position: relative;
    font-size: 14px;
    background-color: #16151d;
    font-family: 'Poppins', sans-serif;
    color: #f5f5f5;
}
p {
    line-height: 1.9;
    margin-bottom: 10px;
}
a {
    display: block;
    color: #000;
    text-decoration: none;
    text-align: center;
}
ul {
    list-style: none;
}
li {
    padding: 0;
    margin: 0;
}
.wrapper {
    width: 1150px;
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}
.flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
/* CSS bread-crumb */
.bread-crumb {
    text-transform: capitalize;
    margin-bottom: 20px;
    padding: 0 10px;
    font-size: 13px;
}
.bread-crumb span{
    color: #8224e3;
}
.bread-crumb span::before {
    content: "/";
    padding: 0 3px;
    color: #888;
}
.bread-crumb a {
    color: #888;
}

/* Css-pagination */
.pagination {
    margin: 20px 0;
}
#pagination ul {
    justify-content: right;
}
#pagination .active a {
    border: 2px solid #8224e3;
    color: #8224e3;
}
#pagination .disabled{
    cursor: not-allowed;
}
#pagination a,
#pagination span {
    font-size: 15px;
    display: inline-block;
    padding: 5px 15px;
    margin-right: 5px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    color: #f5f5f5;
    border: 2px solid #222;
}
#pagination a:hover,
#pagination span:hover {
    background: linear-gradient(-45deg, #7303c0, #03001e) !important;
    color: #f5f5f5;
    border: 2px solid #8224e3;
}
#pagination li:last-child a{
    margin-right: 0px;
}
/* End Css-pagination */

/*CSS header + search */
/* Css-search */
.icon-mb {
    float: right;
    line-height: 70px;
}
.search {
    display: none;
    margin: 38px auto;
    width: 780px;
    max-width: 95%;
}
.search-btn-mb {
    display: inline-block;
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    float: right;
}
.search-btn-close {
    display: none;
}
.open-btn {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
}
form {
    position: relative;
}
.search form {
    width: 100%;
}
form button[class=submit-s] {
    position: absolute;
    font-size: 14px;
    font-weight: 600;
    border: none;
    color: #f5f5f5;
    background: linear-gradient(-45deg, #7303c0, #03001e) !important;
    cursor: pointer;
    width: 100px;
    height: 50px;
    text-transform: uppercase;
    border-radius: 0 10px 10px 0;
}
form input[class=main-s] {
    width: calc(100% - 100px);
    height: 50px;
    font-size: 16px;
    padding: 0 10px;
    background-color: #ebebeb;
    border: 1px solid #d7d7d7;
    border-radius: 10px 0 0 10px;
}
form input:focus-visible {
    outline: none;
    background-color: #d7d7d7;
}
/* End css Search  */

/* Css header top  */
#header{
    width: 100%;
    height: 70px;
}
.header-top {
    background: linear-gradient(-45deg, #7303c0, #03001e) !important;
    height: 70px;
}
.header-top .wrapper {
    justify-content: center;
}
/* logo  */
.logo {
    float: left;
    line-height: 70px;
}
.img-logo {
    height: 25px;
    vertical-align: middle;
}
/* main nav  */
.nav-pc-main {
    margin-left: 30px;
    float: left;
    line-height: 70px;
}
.nav-pc li {
    display: inline-block;
}
.nav-pc-main .item-nav {
    text-transform: uppercase;
    color: #f5f5f5;
}
/* End css header top  */
/* Css header bot  */
/* css header bot pc  */
.header-bot {
    border-bottom: 1px solid #383838;
}
.header-bot a {
    color: white;
}
.header-bot .wrapper {
    padding: 0 10px;
    position: relative;
}
.nav-pc-list li:hover>.hide-list {
    display: block;
}
.nav-pc-list li:hover .item-nav,
.hide-list a:hover {
    color: #02aab0;
}
/* css nav pc  */
.item-nav {
    font-size: 15px;
    font-weight: 500;
    padding: 15px;
    line-height: 1;
}
.nav-pc li:nth-child(1) {
    margin-left: 0;
}
.hide-list {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background-color: #d9d9d9;
    border-bottom: 3px solid #02aab0;
    z-index: 3;
}
.hide-list a {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    overflow: hidden;
    padding: 10px;
    margin: 3px;
    text-align: start;
}
.header-bot .wrapper {
    justify-content: space-between;
}
/* Css nav mobile */
.sidepanel {
    width: 0;
    position: fixed;
    z-index: 3;
    height: 100vh;
    top: 0;
    left: 0;
    background: linear-gradient(-45deg, #7303c0, #03001e) !important;
    overflow-x: hidden;
    transition: 0.5s;
}
.sidepanel a {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 17px;
    color: #f5f5f5;
    display: block;
    padding: 15px;
    text-align: start;
    border-bottom: 1px solid #333;
}
.item-nav-mb {
    padding: 8px;
    margin: 5px 0;
    color: #ccc;
}
.sidepanel a:hover {
    color: #f1f1f1;
}
.sidepanel .closebtn {
    width: 50px;
    float: right;
    font-size: 36px;
    padding: 3px 0px;
    border-bottom: none;
    text-align: right;
}
.genre-list-mb {
    display: none;
}
.genre-list-mb a {
    padding: 3px;
    margin: 10px 0 10px 20px;
}
/* End Css header bot  */
/*-CSS body*/
.title-big {
    margin-bottom: 15px;
    background: linear-gradient(-45deg, #7303c0, #03001e) !important;
    color: white;
    padding: 15px 10px;
    line-height: 1;
    text-transform: uppercase;
}
.title-big h1, h2, h3, h4 {
    font-size: 15px;
    color: #f5f5f5;
    font-weight: 500;
}
.box {
    background-color: #222;
    box-shadow: 1px 3px 8px rgba(49, 49, 49, .1);
}
.box-wrapper{
    margin-bottom: 20px;
    padding: 0px 10px;
}
.hide-text {
    word-break: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.title-smaller {
    color: #f5f5f5;
    -webkit-line-clamp: 2;
    font-size: 15px;
    text-transform: capitalize;
}
.title-smaller:hover {
    color: #8224e3;
}
#button-scroll i {
    border: 1px solid #8224e3;
    font-size: 26px;
    position: fixed;
    bottom: 62px;
    right: 13px;
    color: #8224e3;
    padding: 6px;
    border-radius: 50%;
    cursor: pointer;
}

/* Css body  */
#body {
    padding: 20px 0;
}
.item-move:hover .title-smaller {
    color: #8224e3;
}
.item-move .entry{
    width: 100%;
    float: left;
    margin: 10px 0px;
}
.img-move {
    height: 250px;
    object-fit: cover;
}
.move .entry h3 {
    color: #f5f5f5;
    font-weight: 500;
    font-size: 14px;
}
.item-move .cas-thumbnail{
    position: relative;
}
.item-move .newest-chapter {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.39) 34%, #000 87%);
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}
/* End CSS body */
/* Css body container  */
.container {
    align-items: start;
}
.left {
    width: calc(75% - 15px);
    margin-right: 15px;
    min-height: calc(100vh - 250px);
}
.right {
    flex: 1;
}
/* Css body latest  */
.latest-list {
    margin: 0 -8px;
}
.latest-item {
    width: calc(25% - 14px);
    margin: 0 7px;
    float: left;
    margin-bottom: 10px;
}
.latest-item .entry {
    width: 100%;
    float: left;
    height: 130px;
    margin-top: 10px;
}
.latest-item .entry h3{
    height: 45px;
}
.latest-item .entry a {
    text-align: center;
}
.latest-item .entry .newest-chapter {
    margin: 10px 0;
    line-height: 2;
}
.latest-item .entry .newest-chapter div {
    justify-content: space-between;
    background: #333;
    width: 100%;
    float: left;
    margin-bottom: 5px;
    border-radius: 5px;
    padding: 2px 10px;
}
.latest-item .entry .newest-chapter div:hover{
    background: #8224e3;
}
.latest-item .entry .newest-chapter a,
.sidebar-entry .newest-chapter a {
    color: #f5f5f5;
    font-weight: 500;
}
.latest-item .entry .newest-chapter span.chname{
    font-size: 12px;
    font-weight: 500;
}
.latest-item .entry .newest-chapter span {
    font-size: 10px;
}
.latest-item .entry .newest-chapter span img{
    height: 14px;
    vertical-align: middle;
    border-radius: 5px;
}
.img-latest {
    width: 100%;
    height: 225px;
    object-fit: cover;
    vertical-align:middle;
}

/* Css side-bar  */
.sidebar-list ul.genres{
    padding-bottom: 10px;
}
.sidebar-list li {
    width: 50%;
    float: left;
    padding: 5px 0px;
}
.sidebar-list li a{
    color: #f5f5f5;
    font-size: 14px;
}
.sidebar-list li a:hover{
    color: #8224e3;
}
/* End Css Side bar  */
/* ------------------Css footer ------------- */
#footer {
    background: linear-gradient(-45deg, #7303c0, #03001e) !important;
    padding: 10px;
    width: 100%;
    display: inline-block;
    margin-top: 50px;
}
#footer .wrapper {
    justify-content: space-between;
}
.bottom-menu{
    margin: auto;
    text-align: center;
}
.bottom-menu a {
    color: #f5f5f5;
    padding: 4px;
    margin: 5px;
    font-weight: 500;
    display: inline-block;
}
.footer-note {
    max-width: 80%;
    margin: 15px auto;
}
.footer-note p {
    text-align: center;
    color: #fff;
    font-size: 13px;
}

/*----------------- Css page Detail ------------------ */
/* Css main info  */
.main-info {
    background: #222;
    margin-bottom: 15px;
    padding: 10px;
}
.main-info-left {
    margin-right: 15px;
    text-align: center;
    color: #fff;
}
.count-comment{
    padding: 0 15px;
    border-right: 2px solid #222;
}
.add-bookmark{
    padding: 0 15px;
}
.main-info-right {
    flex: 1;
    text-transform: capitalize;
    line-height: 1.5;
}
.main-info-right .box{
    margin:10px;
}
.main-info-right .alt p {
    font-weight: 500;
    font-size: 13px;
    color: #A2A2A2;
}
.main-info-right .star-rate{
    display: inline-block;
}
.main-info-title {
    display: inline-block;
    font-size: 21px;
    color: #f5f5f5;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
}
.main-info-list{
    align-items: baseline;
}
.main-info-list-left{
    width: 60%;
}
.main-info-list-right{
    flex: 1;
}
.main-info-list strong {
    margin-right: 5px;
    color: #A2A2A2;
    font-weight: 500;
}
.main-info-list a {
    display: inline-block;
    font-size: 14px;
    color: #f5f5f5;
}
.main-info-list a:hover {
    color: #8224e3;
}
.main-info-list a+a:before {
    content: "/";
    padding: 0 2px;
    color: #999;
}
.main-info-list li {
    display: flex;
    padding: 2px 0;
    align-items: baseline;
}
.main-info-list li h5 {
    margin-right: 10px;
    font-size: 14px;
    float: left;
}
.main-info-list li span {
    font-size: 13px;
    color: #f5f5f5;
}
/* End Css main-info  */
/* Css short desc  */
.left .section-title {
    border-bottom: 1px solid #d4d4d4;
}
.left strong {
    text-transform: capitalize;
    font-size: 20px;
    background: -webkit-gradient(linear, left top, right top, from(#ff8a00), to(#da1b60));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
}
.short-desc-content{
    margin-bottom: 15px;
    padding: 0 10px 10px 10px;
}
.short-desc-content h2{
    font-size: 17px;
    margin-bottom: 10px;
    color: #8224e3;
}
.short-desc-content p {
    margin-top: 0px;
    line-height: 1.4;
    color: #f5f5f5;
    font-size: 14px;
}
/* Css chapter list  */
.chapter-list {
    margin-top: 10px;
    margin-bottom: 15px;
    padding: 0 10px;
    max-height: 315px;
    overflow: auto;
}
.chapter-list::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 4px #222;
    background-color: #222;
}

.chapter-list::-webkit-scrollbar {
    width: 4px;
    background-color: #222;
}

.chapter-list::-webkit-scrollbar-thumb {
    background-color: #8224e3;
}
.chapter-item {
    width: calc(25% - 10px);
    margin: 5px;
    text-align: center;
    padding: 5px;
    border: 1px solid #333;
}
.chapter-item:hover {
    background-color: #8224e3;
    border: 1px solid #8224e3;
}
.chapter-item span.name {
    font-weight: 500;
    width: 100%;
    float: left;
    color: #f5f5f5;
    font-size: 14px;
}
.chapter-item span.update {
    font-size: 12px;
    color: #868686;
    margin: 0;
}

/*--------------- End Css page info ---------------- */
/* -------------- Css page chapter ----------------- */

.reading-chapter .wrapper {
    width: 100%;
    max-width: 1142px;
}
.reading-chapter-top {
    text-align: center;
}
.headpost-chapter{
    padding: 0px 10px;
}
.intro-chapter {
    text-align: center;
    padding: 15px 0px;
}
.intro-chapter span{
    font-weight: 600;
    color: #f5f5f5;
}
.intro-chapter p {
    font-size: 13px;
    color: #A2A2A2;
    margin-bottom: 0;
    line-height: 1.9 !important;
}
.choose-chapter {
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 0px 10px;
}
.choose-chapter .change-chapter{
    float: left;
    width: 150px;
    line-height: 34px;
    border-radius: 10px;
    background: #222;
    color: #f5f5f5;
    position: relative;
}
.choose-chapter .change-page{
    text-align: center;
}
.choose-chapter .change-page:hover{
    cursor: pointer;
}
.choose-chapter .change-chapter ul{
    max-height: 200px;
    position: absolute;
    z-index: 999;
    width: 100%;
    background: #222;
    border-radius: 10px;
    overflow-y: scroll;
    display: none;
}
.choose-chapter .change-chapter ul li a{
    color: #f5f5f5;
}
.choose-chapter .change-chapter ul li a:hover{
    color: #8224e3;
}
.choose-chapter .change-chapter ul.top{
    margin-top: 5px;
}
.choose-chapter .change-chapter ul.bottom{
    bottom: 43px;
}
.choose-chapter .change-chapter ul::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
    /*background-color: #F5F5F5;*/
    display: none;
}
.choose-chapter .change-chapter ul::-webkit-scrollbar {
    /*width: 10px;*/
    /*background-color: #F5F5F5;*/
    display: none;
}
.choose-chapter .change-chapter ul::-webkit-scrollbar-thumb {
    /*background-color: #000000;*/
    /*border: 2px solid #555555;*/
    display: none;
}
.next-pre-btn {
    text-transform: capitalize;
    display: inline-block;
    color: #fff;
    padding: 6px 12px;
    margin: 3px;
    background: #8224e3;
    border-radius: 10px;
}
.next-pre .next-pre-btn:last-child{
    margin-right: 0px;
}
.reading-content{
    width: 100%;
    float: left;
    padding: 0px 10px;
    margin: 20px 0 30px 0;
}
.reading-content p {
    text-align: center;
    margin-bottom: 0;
    line-height: 0;
}
.reading-content img {
    width: 100%;
    max-width: 720px;
    margin: 0 auto
}
.related ul{
    margin: 0 -8px;
}
.related .sidebar-list li {
    width: calc(25% - 16px);
    margin: 8px;
    align-items: start;
}
/* End css page chapter */
/* Css page search + filter  */
.page-list h1{
    font-size: 16px;
    margin-left: 10px;
}
.search-list .latest-item {
    width: calc(16.66667% - 16px);
    margin: 8px;
}

/* -----------------Css page info--------------- */
.info-page {
    margin: 50px 0;
}
.info-page .title {
    border-bottom: 1px solid #d6d6d6;
    margin-bottom: 10px;
}
.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: #fff;
    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{
    min-height: calc(100vh - 220px);
    color: #f5f5f5;
    margin-bottom: 20px;
}
.onepage h1{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}
.onepage b{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 20px;
    display: inline-block;
}
.onepage ol{
    margin-left: 50px;
    list-style: disc;
}
.copyright{
    color: #f5f5f5;
    text-align: center;
    padding: 15px;
}
.copyright p{
    margin-bottom: 0;
}
/*Rating*/
.rating-icon {
    display: inline-block;
    line-height: 1;
}
.rating-index{
    padding-top: 5px;
}
.rating-content{
    color: #999;
    font-weight: 500;
    font-size: 12px;
}
.rate-title{
    display: none;
}
.jq-stars {
    display: inline-block;
    float: left;
    padding-right: 5px;
}
.jq-star {
    width: 100px;
    height: 100px;
    display: inline-block;
    cursor: pointer;
}
.jq-star-svg {
    padding-left: 3px;
    width: 100%;
    height: 100%;
}
.rating-icon .avgrate {
    font-size: 14px;
    color: #d1d1d1;
    font-weight: 500;
    float: left;
    margin-top: 3px;
    margin-left: 5px;
}
.rating-icon .avgrate-detail{
    font-size: 20px;
}
/*End Rating*/

/*Sidebar items manga*/
.sidebar-items{
    width: 100%;
}
.sitem{
    padding: 10px;
    border-bottom: 1px solid #333;
}
.relation-items .sitem{
    width: 33.333%;
    float: left;
    padding: 10px !important;
    border-bottom: none;
}
.sitem a{
    text-align: left;
}
.sidebar-items .sitem:first-child{
    padding-top: 0px;
}
.sitem .img-sidebar{
    width: 60px;
    height: 80px;
}
.sitem .sidebar-entry{
    padding-left: 10px;
    float: left;
    width: calc(100% - 60px);
}
.sitem h4{
    color: #f5f5f5;
    font-weight: 500;
    font-size: 14px;
}
.sitem .newest-chapter{
    margin-top: 5px;
}
.sitem .newest-chapter a{
    color: #868686;
    font-size: 13px;
}
.sitem .newest-chapter a:hover{
    color: #8224e3;
}
.sitem .chapter-above{
    margin-bottom: 5px;
}
/*End sidebar items manga*/

/*User Block*/
.user-block{
    float: right;
    margin-left: 15px;
}
.user-block a{
    font-size: 15px;
    font-weight: 500;
    color: #f5f5f5;
    padding: 10px 15px;
    cursor: pointer;
    background-color: rgba(34, 1, 75, 0.5);
    border-radius: 10px;
    display: inline;
}
.user-info-mb-login{
    display: none;
}
/*End User Block*/

.bookmark-notice{
    color: #eb3349;
}

/*Error Page*/
.error-404{
    text-align: center;
    height: 100vh;
    position: relative;
}
.error-404_content{
    position: absolute;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}
.error-404 .entry-header{
    margin-bottom: 30px;
}
.error-404 img{
    max-width: 100%;
    height: auto;
}
.error-404 h3.heading{
    color: #f5f5f5;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
}
.error-404 a{
    padding: 12px 25px;
    border: 2px solid #f5f5f5;
    border-radius: 25px;
    font-weight: 600;
    color: #f5f5f5;
    display: inline-block;
}
/*End Error Page*/

/*Manga Info*/
.manga-info{
    width: 100%;
    float: left;
}
.manga-info-left{
    float: left;
    width: 235px;
    margin-right: 15px;
}
.manga-info-left .thumb{
    width: 100%;
    float: left;
    margin-bottom: 10px;
}
.manga-info-left .thumb img{
    width: 100%;
    height: auto;
    min-height: 300px;
}
.manga-info-left .manga-action{
    width: 100%;
    float: left;
    margin-bottom: 15px;
    text-align: center;
}
.manga-info-left .manga-action i{
    color: #f5f5f5;
    font-size: 22px;
    cursor: pointer;
    float: left;
    padding-right: 5px;
}
.manga-info-left .manga-action span{
    color: #999;
}
.manga-info-left .manga-action .bmk-btn{
    background: #8224e3;
    padding: 5px;
    margin-bottom: 5px;
}
.manga-info-left .manga-action .bmk-btn:hover{
    cursor: pointer;
}
.manga-info-left .manga-action .bmk-btn .inn{
    display: inline-block;
    font-weight: 500;
}
.manga-info-left .manga-rate{
    width: 100%;
    float: left;
    margin-bottom: 15px;
    background: #222;
    padding: 10px;
    text-align: center;
}
.manga-info-left .manga-tsinfo{
    width: 100%;
    float: left;
    background: #222;
    padding: 10px;
    margin-bottom: 15px;
}
.manga-tsinfo .imptdt{
    padding: 7px 10px;
    overflow: hidden;
    font-size: 13px;
    color: #999;
}
.manga-tsinfo .imptdt:last-child{
    padding-bottom: 0px;
}
.manga-tsinfo .imptdt i{
    float: right;
}

.manga-info-right{
    width: calc(100% - 250px);
    float: left;
}
.manga-info-right .alt{
    color: #999;
    font-size: 12px;
}
.manga-info-right .manga-genre{
    width: calc(100% + 10px);
    float: left;
    margin-bottom: 10px;
    margin-left: -5px;
}
.manga-info-right .manga-genre a{
    display: inline-block;
    background: #343434;
    color: #f5f5f5;
    padding: 5px 7px;
    margin: 5px;
    border-radius: 5px;
}
.manga-info-right .manga-genre a:hover{
    background: #8224e3;
}
.manga-info-right .info-block{
    width: 100%;
    float: left;
    margin-bottom: 15px;
    background: #222;
    border-radius: 5px;
}
.manga-info-right .sinopsis-block{
    padding: 10px;
}
.recomend-box{
    width: 100%;
    float: left;
    margin-bottom: 15px;
}

.socialts{
    width: 100%;
    float: left;
    margin-bottom: 15px;
    text-align: center;
}
.socialts a {
    display: inline-block;
    background: #222;
    color: #FFF !important;
    padding: 0 10px;
    line-height: 25px;
    font-size: 13px;
    border-radius: 5px;
    margin: 5px;
}
.socialts a.fb {
    background: #1877f2;
}
.socialts a.fb:hover {
    background: #2f477b;
}
.socialts a.twt {
    background: #1DA1F2;
}
.socialts a.twt:hover {
    background: #1781c3;
}
.socialts a.wa {
    background: #01ba6d;
}
.socialts a.wa:hover {
    background: #008f54;
}
.socialts a.pntrs {
    background: #e81737;
}
.socialts a.pntrs:hover {
    background: #b2132c;
}
.socialts a.tlg {
    background: #27a5e5;
}
.socialts a.tlg:hover {
    background: #1e7eaf;
}
/*End Manga Info*/

.lectormoo{
    width: 100%;
    float: left;
    padding: 10px 0px;
    text-align: center;
}
.exo-native-widget-item-content {
    height: 70px  !important;
}
.exo-native-widget-item-title, .exo-native-widget-item-text, .exo-native-widget-item-brand {
    font-family: 'Poppins', sans-serif !important;
    color: white !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
}
.lectormoo .lectormoo-item{
    width: 50%;
    float: left;
}
.lectormoo .lectormoo-item:first-child{
    padding-right: 10px;
}
.lectormoo .lectormoo-item:last-child{
    padding-left: 10px;
}